@charset "UTF-8";

/* ========================================
   XenoX — index.css
   Theme: Midnight Precision
   ======================================== */

:root {
  --ink:        #0b0f1a;
  --ink-mid:    #141928;
  --ink-panel:  #1a2035;
  --cyan:       #00c8e0;
  --cyan-dim:   rgba(0, 200, 224, 0.15);
  --cyan-glow:  rgba(0, 200, 224, 0.06);
  --gold:       #c49a3c;
  --gold-light: #e8b84b;
  --white:      #ffffff;
  --off-white:  #f8f7f4;
  --soft-white: #fdfcf9;
  --text:       #1c1c1e;
  --text-mid:   #4a4a52;
  --text-light: #8a8a96;
  --border:     #e2e0da;
  --border-dark: rgba(255,255,255,0.08);
  --radius:     10px;
}

/* ========== RESET ========== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Noto Sans JP', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.8;
  font-size: 15px;
}

.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ========== SHARED LABELS ========== */
.section-label {
  display: block;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.28em;
  color: var(--cyan);
  margin-bottom: 18px;
}

.section-title {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(28px, 4.5vw, 42px);
  font-weight: 700;
  color: var(--text);
  line-height: 1.4;
  margin-bottom: 48px;
}

/* ========================================
   HERO
   ======================================== */
.hero {
  position: relative;
  background: var(--ink);
  padding: 120px 0 100px;
  overflow: hidden;
}

/* Subtle grid lines */
.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg,   transparent, transparent 79px, rgba(255,255,255,0.025) 80px),
    repeating-linear-gradient(90deg,  transparent, transparent 79px, rgba(255,255,255,0.025) 80px);
  pointer-events: none;
}

/* Cyan glow emanating from top-right */
.hero-bg-glow {
  position: absolute;
  top: -120px; right: -80px;
  width: 600px; height: 600px;
  background: radial-gradient(ellipse, rgba(0,200,224,0.12) 0%, transparent 65%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
}

.award-trophy { font-size: 16px; }

.award-label {
  font-size: 12px;
  font-weight: 500;
  color: var(--cyan);
  letter-spacing: 0.06em;
}

.award-label strong {
  font-weight: 900;
  letter-spacing: 0.1em;
}

/* Headline */
.hero-title {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(30px, 5.5vw, 52px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.45;
  letter-spacing: -0.01em;
  margin-bottom: 24px;
  animation: fadeSlideDown 0.6s 0.1s ease both;
}

.hero-title em {
  font-style: normal;
  color: var(--cyan);
}

.hero-desc {
  font-size: 16px;
  color: rgba(255,255,255,0.6);
  line-height: 1.9;
  max-width: 520px;
  margin-bottom: 44px;
  animation: fadeSlideDown 0.6s 0.2s ease both;
}

/* CTA Buttons */
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
  animation: fadeSlideDown 0.6s 0.3s ease both;
}

.btn-cyan {
  display: inline-block;
  background: var(--cyan);
  color: var(--ink);
  padding: 15px 36px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
  letter-spacing: 0.06em;
  transition: all 0.2s;
}

.btn-cyan:hover {
  background: #1ad8f0;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0,200,224,0.3);
}

.btn-ghost {
  display: inline-block;
  color: rgba(255,255,255,0.75);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 15px 32px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: all 0.2s;
}

.btn-ghost:hover {
  border-color: var(--cyan);
  color: var(--cyan);
}

/* ========================================
   AWARD STRIP
   ======================================== */
.award-strip {
  background: var(--ink-panel);
  border-top: 1px solid var(--border-dark);
  border-bottom: 1px solid var(--border-dark);
}

.award-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 28px 28px;
}

.strip-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 40px;
}

.strip-num {
  font-family: 'Noto Serif JP', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--cyan);
  white-space: nowrap;
}

.strip-text {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
}

.strip-text strong {
  display: block;
  color: rgba(255,255,255,0.85);
  font-size: 13px;
}

.strip-divider {
  width: 1px;
  height: 40px;
  background: var(--border-dark);
  flex-shrink: 0;
}

/* ========================================
   ABOUT（ミッション / ビジョン）
   ======================================== */
.about {
  padding: 96px 0;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

/* 背景に薄いグリッド線（HEROと呼応） */
.about::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg,  transparent, transparent 79px, rgba(11,15,26,0.025) 80px),
    repeating-linear-gradient(90deg, transparent, transparent 79px, rgba(11,15,26,0.025) 80px);
  pointer-events: none;
}

.about > .container { position: relative; z-index: 1; }

.about-header { margin-bottom: 56px; }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.about-card {
  padding: 48px 40px;
  position: relative;
}

/* 各カードに左ラインのアクセント */
.about-card::before {
  content: '';
  position: absolute;
  top: 48px;
  bottom: 48px;
  left: 0;
  width: 3px;
}

.about-card--mission::before { background: var(--cyan); }
.about-card--vision::before  { background: var(--gold); }

.about-tag {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.3em;
  margin-bottom: 24px;
}

.about-card--mission .about-tag { color: var(--cyan); }
.about-card--vision  .about-tag { color: var(--gold); }

.about-statement {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 700;
  color: var(--text);
  line-height: 1.55;
  letter-spacing: -0.005em;
  margin-bottom: 24px;
}

.about-desc {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.95;
}

.about-footer {
  margin-top: 40px;
  text-align: center;
}

.about-more {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 700;
  background: var(--white);
  color: var(--text);
  text-decoration: none;
  letter-spacing: 0.04em;
  padding: 14px 28px;
  border: 1px solid var(--border);
  border-radius: 8px;
  transition: border-color 0.2s, color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.about-more:hover {
  border-color: var(--cyan);
  color: var(--cyan);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,200,224,0.12);
}

/* ========================================
   TWO PILLARS
   ======================================== */
.pillars {
  padding: 96px 0;
  background: var(--white);
}

.pillars-header {
  margin-bottom: 48px;
}

.pillars-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.pillar-card {
  background: var(--soft-white);
  border-radius: 12px;
  padding: 44px 40px;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.25s, transform 0.25s;
}

.pillar-card:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,0.09);
  transform: translateY(-3px);
}

/* Subtle top accent stripe */
.pillar-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
}

.pillar-card--plugin::before   { background: var(--cyan); }
.pillar-card--consult::before  { background: var(--gold); }

.pillar-tag {
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.2em;
  color: var(--text-light);
  margin-bottom: 16px;
}

.pillar-card--plugin  .pillar-tag { color: var(--cyan); }
.pillar-card--consult .pillar-tag { color: var(--gold); }

.pillar-title {
  font-family: 'Noto Serif JP', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 16px;
  line-height: 1.4;
}

.pillar-body {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.9;
  margin-bottom: 24px;
}

.pillar-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 32px;
}

.pillar-list li {
  font-size: 13px;
  color: var(--text-mid);
  display: flex;
  align-items: center;
  gap: 8px;
}

.pillar-list li::before {
  content: '✓';
  font-weight: 700;
  flex-shrink: 0;
}

.pillar-card--plugin  .pillar-list li::before { color: var(--cyan); }
.pillar-card--consult .pillar-list li::before { color: var(--gold); }

.pillar-cta {
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: gap 0.2s;
}

.pillar-card--plugin  .pillar-cta { color: var(--cyan); }
.pillar-card--consult .pillar-cta { color: var(--gold); }

.pillar-cta:hover { opacity: 0.75; }

/* ========================================
   POPULAR PLUGINS（横スクロールカルーセル）
   ======================================== */
.popular {
  padding: 96px 0 80px;
  background: var(--off-white);
  overflow: hidden; /* marqueeのはみ出しを隠す */
}

.popular-header { margin-bottom: 40px; }

/* marquee本体: トラックを2セット分の長さでスライド */
.marquee {
  position: relative;
  overflow: hidden;
  /* 左右にフェードマスクをかけて切れ目をぼかす */
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
}

.marquee-track {
  display: flex;
  gap: 20px;
  width: max-content;
  padding: 12px 0;
  animation: marquee-scroll 36s linear infinite;
}

/* ホバー中は停止 */
.marquee:hover .marquee-track {
  animation-play-state: paused;
}

@keyframes marquee-scroll {
  from { transform: translateX(0); }
  /* 2セット並んでいるので-50%で1周相当 */
  to   { transform: translateX(-50%); }
}

/* モーション制限ユーザーは止める */
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
  .marquee {
    overflow-x: auto;
    -webkit-mask-image: none;
            mask-image: none;
  }
}

/* プラグインカード */
.plg-card {
  flex-shrink: 0;
  width: 280px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px 22px;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: box-shadow 0.25s, transform 0.25s, border-color 0.25s;
}

.plg-card:hover {
  border-color: var(--cyan);
  box-shadow: 0 10px 28px rgba(0,0,0,0.08);
  transform: translateY(-3px);
}

.plg-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 10px;
  background: var(--off-white);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.plg-card-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.plg-card-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.plg-card-name {
  font-family: 'Noto Serif JP', serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.45;
}

.plg-card-catch {
  font-size: 12.5px;
  color: var(--text-mid);
  line-height: 1.7;
  flex: 1;
}

.plg-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
  border-top: 1px solid var(--border);
}

.plg-card-price {
  font-size: 12px;
  font-weight: 700;
  color: var(--cyan);
  letter-spacing: 0.02em;
}

.plg-card-arrow {
  font-size: 14px;
  color: var(--cyan);
  transition: transform 0.2s;
}

.plg-card:hover .plg-card-arrow { transform: translateX(4px); }

/* 「すべてを見る」リンク */
.popular-footer {
  margin-top: 32px;
  text-align: center;
}

.popular-all {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 700;
  background: var(--white);
  color: var(--text);
  text-decoration: none;
  letter-spacing: 0.04em;
  padding: 14px 28px;
  border: 1px solid var(--border);
  border-radius: 8px;
  transition: border-color 0.2s, color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.popular-all:hover {
  border-color: var(--cyan);
  color: var(--cyan);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,200,224,0.12);
}

/* ========================================
   PLANS-TOP（お得なセットプラン）
   ======================================== */
.plans-top {
  padding: 110px 0;
  background: var(--white);
}

.plans-top-header {
  margin-bottom: 56px;
}

.plans-top-sub {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.85;
  margin-top: -28px; /* section-title の margin-bottom 48px を圧縮 */
}

.plans-top-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.plan-top-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 44px 40px 36px;
  background:
    linear-gradient(var(--cyan), var(--cyan)) top / 100% 4px no-repeat,
    var(--soft-white);
  border: 1px solid var(--border);
  border-radius: 14px;
  text-decoration: none;
  color: inherit;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}

.plan-top-card--premium {
  background:
    linear-gradient(var(--gold), var(--gold)) top / 100% 4px no-repeat,
    var(--soft-white);
  border-color: var(--gold);
  box-shadow: 0 8px 30px rgba(196, 154, 60, 0.10);
}

.plan-top-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 40px rgba(0,0,0,0.08);
}

.plan-top-card--premium:hover {
  border-color: var(--gold);
  box-shadow: 0 18px 48px rgba(196, 154, 60, 0.18);
}

/* おすすめバッジ */
.plan-top-badge {
  position: absolute;
  top: -12px;
  right: 24px;
  background: var(--gold);
  color: var(--white);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  padding: 6px 14px;
  border-radius: 999px;
  box-shadow: 0 4px 12px rgba(196, 154, 60, 0.3);
}

.plan-top-tag {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.25em;
  color: var(--text-light);
  margin-bottom: 10px;
}

.plan-top-card--standard .plan-top-tag { color: var(--cyan); }
.plan-top-card--premium  .plan-top-tag { color: var(--gold); }

.plan-top-name {
  font-family: 'Noto Serif JP', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 24px;
  line-height: 1.4;
}

.plan-top-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 14px;
}

.plan-top-price-num {
  font-family: 'Noto Serif JP', serif;
  font-size: 44px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
  line-height: 1;
}

.plan-top-price-unit {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-mid);
}

.plan-top-price-unit small {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-light);
}

/* お得額の強調表示 */
.plan-top-saving {
  display: inline-block;
  font-size: 13px;
  color: var(--text-mid);
  background: var(--cyan-glow);
  padding: 8px 14px;
  border-radius: 6px;
  margin-bottom: 18px;
}

.plan-top-card--premium .plan-top-saving {
  background: rgba(196, 154, 60, 0.08);
}

.plan-top-saving strong {
  font-family: 'Noto Serif JP', serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--cyan);
}

.plan-top-card--premium .plan-top-saving strong {
  color: var(--gold);
}

.plan-top-count {
  font-size: 13px;
  color: var(--text-mid);
  padding: 12px 0;
  border-top: 1px solid var(--border);
  margin-bottom: 24px;
}

.plan-top-cta {
  font-size: 13px;
  font-weight: 700;
  color: var(--cyan);
  letter-spacing: 0.04em;
  margin-top: auto;
  transition: gap 0.2s;
}

.plan-top-card--premium .plan-top-cta { color: var(--gold); }

.plans-top-footer {
  margin-top: 40px;
  text-align: center;
}

.plans-top-all {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
  letter-spacing: 0.04em;
  padding: 14px 28px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--white);
  transition: border-color 0.2s, color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.plans-top-all:hover {
  border-color: var(--cyan);
  color: var(--cyan);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,200,224,0.12);
}

/* ========================================
   VALUES（編集物スタイル / 大きな番号）
   ======================================== */
.values {
  padding: 110px 0;
  background: var(--off-white);
}

.values-header { margin-bottom: 64px; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.value-card {
  padding: 8px 40px;
  position: relative;
  border-left: 1px solid var(--border);
  transition: transform 0.3s ease;
}

.value-card:first-child {
  border-left: none;
  padding-left: 0;
}

.value-card:last-child {
  padding-right: 0;
}

.value-card:hover {
  transform: translateY(-4px);
}

/* 大きな番号 */
.value-number {
  font-family: 'Noto Serif JP', serif;
  font-size: 56px;
  font-weight: 700;
  line-height: 1;
  color: var(--cyan);
  letter-spacing: -0.02em;
  margin-bottom: 28px;
  display: inline-block;
  position: relative;
}

/* 番号の下にアクセント線 */
.value-number::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -14px;
  width: 36px;
  height: 2px;
  background: var(--cyan);
  transition: width 0.3s ease;
}

.value-card:hover .value-number::after { width: 64px; }

/* 2番目だけ色を変えて変化を出す */
.value-card:nth-child(2) .value-number {
  color: var(--gold);
}
.value-card:nth-child(2) .value-number::after {
  background: var(--gold);
}

.value-title {
  font-family: 'Noto Serif JP', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 16px;
  margin-top: 28px;
  line-height: 1.55;
  letter-spacing: -0.005em;
}

.value-body {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.95;
}

/* ========================================
   CTA SECTION
   ======================================== */
.cta-section {
  padding: 80px 0 100px;
  background: var(--off-white);
}

.cta-box {
  background: var(--ink);
  border-radius: 16px;
  padding: 60px 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  overflow: hidden;
}

.cta-box::before {
  content: '';
  position: absolute;
  top: -100px; right: -60px;
  width: 400px; height: 400px;
  background: radial-gradient(ellipse, rgba(0,200,224,0.08) 0%, transparent 65%);
  pointer-events: none;
}

.cta-box-left { position: relative; z-index: 1; }

.cta-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--cyan);
  margin-bottom: 14px;
}

.cta-title {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.55;
  margin-bottom: 14px;
}

.cta-body {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  line-height: 1.9;
}

.cta-box-right {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.btn-cta-white {
  display: inline-block;
  background: var(--white);
  color: var(--ink);
  padding: 14px 32px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  letter-spacing: 0.04em;
  white-space: nowrap;
  transition: all 0.2s;
}

.btn-cta-white:hover {
  background: var(--cyan);
  color: var(--ink);
}

.btn-cta-outline {
  display: inline-block;
  background: transparent;
  color: rgba(255,255,255,0.65);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 13px 32px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  text-align: center;
  letter-spacing: 0.04em;
  white-space: nowrap;
  transition: all 0.2s;
}

.btn-cta-outline:hover {
  border-color: var(--cyan);
  color: var(--cyan);
}

/* ========================================
   ANIMATIONS
   ======================================== */
@keyframes fadeSlideDown {
  from { opacity: 0; transform: translateY(-16px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 768px) {
  .hero { padding: 80px 0 72px; }

  .popular { padding: 72px 0 60px; }
  .marquee-track { animation-duration: 28s; }
  .plg-card { width: 240px; padding: 20px 18px; }

  .about { padding: 72px 0; }
  .about-header { margin-bottom: 36px; }
  .about-grid { grid-template-columns: 1fr; }
  .about-card { padding: 36px 28px; }
  .about-card--mission {
    border-bottom: 1px solid var(--border);
  }
  .about-card::before { top: 36px; bottom: 36px; }

  .plans-top { padding: 72px 0; }
  .plans-top-header { margin-bottom: 36px; }
  .plans-top-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .plan-top-card { padding: 36px 28px 32px; }
  .plan-top-price-num { font-size: 38px; }

  .award-strip-inner { flex-direction: column; gap: 20px; }
  .strip-divider {
    width: 220px;
    height: 1px;
  }
  .strip-item {
    display: grid;
    grid-template-columns: 90px 110px;
    padding: 0;
  }

  .pillars-grid { grid-template-columns: 1fr; }

  .values { padding: 80px 0; }
  .values-header { margin-bottom: 40px; }
  .values-grid { grid-template-columns: 1fr; gap: 0; }
  .value-card {
    padding: 36px 0;
    border-left: none;
    border-top: 1px solid var(--border);
  }
  .value-card:first-child {
    border-top: none;
    padding-top: 0;
  }
  .value-card:last-child {
    padding-bottom: 0;
  }
  .value-number { font-size: 44px; }

  .cta-box {
    flex-direction: column;
    padding: 44px 32px;
    text-align: center;
  }
  .cta-box-right { width: 100%; }
  .btn-cta-white, .btn-cta-outline { width: 100%; }
}

@media (max-width: 500px) {
  .btn-cyan,
  .btn-ghost {
    padding: 12px 20px;
  }
}