:root{
  --cream:        #F3F0E8;
  --cream-soft:   #EDE9DE;
  --sage-light:   #D6D8C7;
  --sage:         #A9B29A;
  --olive:        #8FA184;
  --coral:        #A54450;
  --coral-hover:  #8C3843;
  --coral-bright: #D98E96;
  --forest-black: #14261C;
  --forest-mid:   #1E3327;
  --forest-card:  #24392C;
  --text-dark:    #1C1F1B;
  --text-dim:     #6B7566;
  --text-cream:   #F3F0E8;
  --text-cream-dim: #9CB0A3;
  --border-soft:  rgba(28,31,27,0.10);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--text-dark);
  font-family: 'Inter', sans-serif;
  line-height: 1.5;
}

h1, h2, h3, .serif {
  font-family: 'Newsreader', serif;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 32px;
}

a { color: inherit; text-decoration: none; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease;
}
.btn:hover { transform: translateY(-1px); }

.btn-coral { background: var(--coral); color: var(--cream); }
.btn-coral:hover { background: var(--coral-hover); }

.btn-outline {
  background: transparent;
  color: var(--text-dark);
  border: 1px solid var(--border-soft);
}

.btn-dark { background: var(--text-dark); color: var(--cream); }

.eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 14px;
  display: block;
}

/* ============================= NAV ============================= */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(243,240,232,0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-soft);
}
.nav-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 18px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-left { display: flex; align-items: baseline; gap: 6px; }
.logo { font-family: 'Newsreader', serif; font-size: 20px; font-weight: 600; }
.logo-creative {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 400;
  color: var(--text-dim);
  letter-spacing: 0.02em;
  text-transform: lowercase;
}
.nav-links { display: flex; gap: 36px; font-size: 14px; font-weight: 500; }
.nav-links a { color: var(--text-dim); transition: color 0.15s ease; }
.nav-links a.active, .nav-links a:hover { color: var(--text-dark); }
.nav-right { display: flex; align-items: center; gap: 20px; }
.nav-right .login { font-size: 14px; font-weight: 500; color: var(--text-dim); }
.nav-cta { background: var(--text-dark); color: var(--cream); padding: 10px 20px; border-radius: 999px; font-size: 14px; font-weight: 600; }

/* Hamburger button — hidden on desktop, shown on mobile */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile dropdown menu */
.nav-mobile {
  display: none;
  flex-direction: column;
  padding: 0 32px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: rgba(243,240,232,0.98);
  backdrop-filter: blur(10px);
}
.nav-mobile a {
  padding: 14px 0;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-dim);
  border-bottom: 1px solid var(--border-soft);
  transition: color 0.15s ease;
}
.nav-mobile a:last-child { border-bottom: none; }
.nav-mobile a.active, .nav-mobile a:hover { color: var(--text-dark); }
.nav-mobile .nav-mobile-login { color: var(--text-dim); }
.nav-mobile .nav-mobile-cta {
  margin-top: 8px;
  text-align: center;
  background: var(--text-dark);
  color: var(--cream);
  border-radius: 999px;
  border: none;
  padding: 14px 0;
}
.nav-mobile.open { max-height: 420px; padding-bottom: 16px; }

@media (max-width: 860px) {
  .nav-links, .nav-right { display: none; }
  .nav-hamburger { display: flex; }
  .nav-mobile { display: flex; }
}

/* ============================= GENERIC PAGE HERO ============================= */
.page-hero {
  padding: 90px 0 80px;
  text-align: center;
  background: var(--cream);
}
.page-hero h1 {
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1.18;
  max-width: 760px;
  margin: 0 auto 22px;
}
.page-hero .lede {
  max-width: 600px;
  margin: 0 auto;
  color: var(--text-dim);
  font-size: 17px;
  line-height: 1.65;
}
.page-hero.left {
  text-align: left;
}
.page-hero.left h1,
.page-hero.left .lede { margin: 0 0 22px; }

/* ============================= HOMEPAGE HERO ============================= */
.hero {
  padding: 110px 0 90px;
  text-align: center;
  background: var(--cream);
}
.hero h1 {
  font-size: clamp(34px, 5.4vw, 58px);
  line-height: 1.15;
  max-width: 780px;
  margin: 0 auto 26px;
}
.hero p {
  max-width: 560px;
  margin: 0 auto 40px;
  color: var(--text-dim);
  font-size: 17px;
  line-height: 1.6;
}

/* ============================= DARK / CREAM SECTION UTILITIES ============================= */
.section-dark { background: var(--forest-black); color: var(--text-cream); }
.section-dark-mid { background: var(--forest-mid); color: var(--text-cream); }
.section-soft { background: var(--cream-soft); }
.section-pad { padding: 110px 0; }
.text-center { text-align: center; }

.section-dark h2, .section-dark-mid h2 { color: var(--text-cream); }
.section-dark p, .section-dark-mid p { color: var(--text-cream-dim); }

/* ============================= SECTION 2: JOURNEY (RING ANIMATION) ============================= */
.drytis-journey {
  position: relative;
  background: var(--forest-black);
  padding: 80px 0;
}
.journey-sticky {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 700px;
}
.orbit-stage { position: relative; width: min(74vw, 640px); height: min(74vw, 640px); }
.orbit-svg { position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible; pointer-events: none; }
.orbit-ring { fill: none; stroke-width: 1.4; transform-origin: center; transform-box: fill-box; }
.orbit-spin-wrap { position: absolute; top: 50%; left: 50%; border-radius: 50%; pointer-events: none; }
.orbit-spin-dot { position: absolute; top: -3px; left: 50%; width: 6px; height: 6px; border-radius: 50%; transform: translateX(-50%); }
.orbit-pill {
  position: absolute; top: 50%; left: 50%;
  display: flex; align-items: center; gap: 8px;
  padding: 9px 16px 9px 10px; border-radius: 999px; white-space: nowrap;
  opacity: 0.85; transform: translate(-50%, -50%) scale(1);
  transition: opacity 0.25s ease;
}
.orbit-pill-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.orbit-pill-label { font-family: 'Inter', sans-serif; font-size: 14px; font-weight: 500; color: var(--forest-black); letter-spacing: 0.01em; }
.journey-center { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: min(70vw, 440px); text-align: center; z-index: 4; }
.journey-eyebrow { font-family: 'Inter', sans-serif; font-size: 13px; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; color: var(--sage); margin: 0 0 10px; }
.journey-final-a { font-family: 'Newsreader', serif; font-weight: 400; font-size: clamp(22px, 3.2vw, 29px); color: var(--cream); margin: 0; }
.journey-final-b { font-family: 'Newsreader', serif; font-weight: 600; font-style: italic; font-size: clamp(26px, 3.8vw, 35px); color: var(--coral-bright); margin: 8px 0 0; }

@media (prefers-reduced-motion: reduce) {
  .orbit-ring, .orbit-pill, .journey-eyebrow, .journey-final-a, .journey-final-b { transition: opacity 0.3s ease; }
  .orbit-spin-wrap { display: none; }
}

/* ============================= GAP / STAT SECTION ============================= */
.gap-section { padding: 130px 0; text-align: center; }
.gap-section h2 { font-size: clamp(28px, 4.2vw, 44px); line-height: 1.25; max-width: 640px; margin: 0 auto 30px; }
.gap-section .lede { max-width: 560px; margin: 0 auto 64px; font-size: 16px; }
.gap-stat {
  max-width: 720px; margin: 0 auto 40px; padding-top: 44px;
  border-top: 1px solid rgba(243,240,232,0.14);
  font-family: 'Newsreader', serif; font-size: clamp(22px, 3vw, 30px); line-height: 1.4;
  color: var(--text-cream-dim);
}
.gap-stat strong { color: var(--coral-bright); font-style: italic; font-weight: 600; }
.gap-section .closing { font-size: 15px; color: var(--text-cream-dim); }

/* ============================= SIMPLE STATEMENT SECTION ============================= */
.what-section { padding: 130px 0; text-align: center; }
.what-section h2 { font-size: clamp(28px, 4vw, 40px); line-height: 1.3; max-width: 620px; margin: 0 auto 20px; }
.what-section p { color: var(--text-dim); font-size: 16px; }

/* ============================= HOW IT WORKS / NUMBERED STEP LIST ============================= */
.how-section { padding: 120px 0; text-align: center; }
.how-section h2 { font-size: clamp(28px, 3.8vw, 38px); margin: 0 auto 60px; }
.how-steps { max-width: 640px; margin: 0 auto 48px; display: flex; flex-direction: column; gap: 14px; text-align: left; }
.how-step { background: #FAF8F2; border: 1px solid var(--border-soft); border-radius: 16px; padding: 22px 26px; display: flex; gap: 18px; }
.how-step.final { background: var(--forest-black); color: var(--cream); border-color: transparent; }
.how-step .num {
  font-family: 'Newsreader', serif; font-style: italic; color: var(--coral); font-size: 17px; flex-shrink: 0; width: 22px;
}

.how-step.final .num { color: var(--coral-bright); }
.how-step h3 { font-family: 'Inter', sans-serif; font-size: 16px; font-weight: 600; margin-bottom: 4px; }
.how-step p { font-size: 14px; color: var(--text-dim); line-height: 1.55; }
.how-step.final p { color: var(--text-cream-dim); }

/* four-step variant used on the pricing page (2x2 grid, dark bg) */
.how-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
  max-width: 800px; margin: 0 auto; text-align: left;
}
.how-grid .how-card {
  background: rgba(243,240,232,0.06);
  border: 1px solid rgba(243,240,232,0.12);
  border-radius: 16px;
  padding: 26px 28px;
}
.how-grid .how-card .num {
  color: var(--coral-bright); font-family: 'Newsreader', serif; font-style: italic; font-size: 15px; margin-bottom: 8px; display: block; }

.how-grid .how-card h3 { font-size: 16px; font-weight: 600; margin-bottom: 8px; color: var(--cream); font-family: 'Inter', sans-serif; }
.how-grid .how-card p { font-size: 14px; color: var(--text-cream-dim); line-height: 1.6; }
@media (max-width: 640px) { .how-grid { grid-template-columns: 1fr; } }

/* ============================= PRICING TIER CARDS ============================= */
.tiers-section { padding: 120px 0; text-align: center; }
.tiers-section h2 { font-size: clamp(28px, 3.8vw, 38px); margin-bottom: 60px; }
.tiers-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  max-width: 960px; margin: 0 auto 48px; align-items: stretch;
}
.tier-card {
  background: #FAF8F2; border: 1px solid var(--border-soft); border-radius: 20px;
  padding: 34px 28px; text-align: left; display: flex; flex-direction: column;
}
.tier-card.featured {
  background: var(--forest-black); color: var(--cream); border-color: transparent;
  transform: translateY(-14px); box-shadow: 0 24px 50px rgba(20,38,28,0.18);
}
.tier-badge {
  align-self: flex-start; background: var(--coral); color: var(--cream);
  font-size: 11px; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 999px; margin-bottom: 16px;
}
.tier-card h3 { font-family: 'Newsreader', serif; font-size: 24px; margin-bottom: 10px; }
.tier-card .tier-desc { font-size: 14px; color: var(--text-dim); margin-bottom: 28px; line-height: 1.6; }
.tier-card.featured .tier-desc { color: var(--text-cream-dim); }
.tier-price { font-family: 'Newsreader', serif; font-size: 30px; margin-bottom: 4px; }
.tier-price span { font-family: 'Inter', sans-serif; font-size: 13px; color: var(--text-dim); font-weight: 400; }
.tier-card.featured .tier-price span { color: var(--text-cream-dim); }
.tier-sub { font-size: 13px; color: var(--text-dim); margin-bottom: 26px; }
.tier-card.featured .tier-sub { color: var(--text-cream-dim); }
.tier-card .btn { margin-top: auto; justify-content: center; width: 100%; }

@media (max-width: 860px) {
  .tiers-grid { grid-template-columns: 1fr; }
  .tier-card.featured { transform: none; }
}

/* ============================= CODE PATCH (hover code-gen) ============================= */
.patch-section { padding: 130px 0; text-align: center; background: var(--cream); }
.patch-section .eyebrow { display: inline-block; }
.patch-section h2 { font-size: clamp(26px, 3.6vw, 38px); margin: 0 auto 14px; max-width: 620px; }
.patch-section .lede { max-width: 460px; margin: 0 auto 56px; color: var(--text-dim); font-size: 15px; }

.code-patch-wrap {
  position: relative;
  max-width: 640px;
  margin: 0 auto;
}

.code-patch-glow {
  position: absolute;
  inset: -30px;
  border-radius: 32px;
  background: conic-gradient(from 0deg, var(--coral), var(--olive), var(--sage), var(--coral-bright), var(--coral));
  filter: blur(38px);
  opacity: 0;
  transition: opacity 0.6s ease;
  z-index: 0;
  animation: patchspin 8s linear infinite;
  pointer-events: none;
}
.code-patch-wrap:hover .code-patch-glow { opacity: 0.5; }

@keyframes patchspin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.code-patch {
  position: relative;
  z-index: 1;
  background: #101913;
  border-radius: 18px;
  overflow: hidden;
  text-align: left;
  box-shadow: 0 24px 60px rgba(20,38,28,0.28);
  transition: transform 0.35s ease;
}
.code-patch-wrap:hover .code-patch { transform: translateY(-4px); }

.code-patch-topbar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 18px;
  background: rgba(255,255,255,0.03);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.code-patch-dot { width: 11px; height: 11px; border-radius: 50%; }
.code-patch-dot.red { background: #E5645B; }
.code-patch-dot.yellow { background: #E5B85B; }
.code-patch-dot.green { background: #6BBF7A; }
.code-patch-filename {
  margin-left: 10px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: #7C8A80;
}

.code-patch-body {
  padding: 26px 28px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  line-height: 1.75;
  color: #D4D8D3;
  min-height: 380px;
  white-space: pre-wrap;
  word-break: break-word;
}

.code-patch-hint {
  padding: 10px 28px 18px;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: #5C6A61;
  border-top: 1px solid rgba(255,255,255,0.04);
}

.hl-kw  { color: #C792EA; }
.hl-str { color: #C3E88D; }
.hl-cm  { color: #5C6A61; font-style: italic; }
.hl-fn  { color: #82AAFF; }

.code-cursor {
  display: inline-block;
  width: 7px;
  background: var(--coral-bright);
  animation: blink 0.9s steps(1) infinite;
}
@keyframes blink { 50% { opacity: 0; } }

@media (prefers-reduced-motion: reduce) {
  .code-patch-glow, .code-cursor { animation: none; }
}

/* ============================= CLOSE / CTA SECTION ============================= */
.close-section { padding: 140px 0; text-align: center; }
.close-section h2 {
  font-family: 'Newsreader', serif; font-style: italic; font-weight: 500;
  font-size: clamp(28px, 4.4vw, 42px); line-height: 1.4; max-width: 640px; margin: 0 auto 22px;
}
.close-section p { font-size: 16px; margin-bottom: 40px; }
.close-section h2 .coral-line { color: var(--coral-bright); display: block; }

/* ============================= NEW HOMEPAGE SECTIONS ============================= */

/* Hero CTAs */
.hero-ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero h1 strong { color: var(--coral); }
.hero-light { color: var(--text-dim); }

/* What section */
.what-section { padding: 100px 0; text-align: center; }
.what-section h2 { font-size: clamp(28px, 4vw, 42px); line-height: 1.25; max-width: 640px; margin: 0 auto 24px; color: var(--forest-black); }
.what-section p { color: var(--text-dim); font-size: 17px; line-height: 1.7; max-width: 620px; margin: 0 auto 16px; }
.what-strike {
  font-size: 20px; color: var(--text-dim);
  margin-bottom: 8px !important; opacity: 0.7;
}
.what-reveal {
  font-size: clamp(22px, 3vw, 30px) !important; color: var(--forest-black) !important;
  font-weight: 600; margin-bottom: 28px !important;
}
.what-reveal strong { color: var(--coral); }

/* Why section */
.why-section { padding: 100px 0; text-align: center; }
.why-section h2 { font-size: clamp(28px, 3.8vw, 40px); line-height: 1.3; max-width: 680px; margin: 0 auto 28px; color: var(--forest-black); }
.why-section p { color: var(--text-dim); font-size: 17px; line-height: 1.7; max-width: 680px; margin: 0 auto 20px; }
.why-calls { margin: 36px auto; max-width: 480px; }
.why-calls p { font-size: 16px; color: var(--text-dim); font-style: italic; margin: 4px 0; opacity: 0.8; }
.why-punch { font-size: 19px !important; color: var(--forest-black) !important; line-height: 1.6; max-width: 620px; margin: 32px auto 0; }
.why-punch strong { color: var(--coral); }

/* How section */
.how-section { padding: 100px 0; text-align: center; }
.how-section h2 { font-size: clamp(28px, 3.8vw, 40px); line-height: 1.3; max-width: 640px; margin: 0 auto 48px; color: var(--forest-black); }
.how-viz-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; max-width: 1100px; margin: 0 auto 40px; }
.how-viz-card { display: flex; flex-direction: column; align-items: center; }
.how-viz-visual { width: 100%; min-height: 180px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; margin-bottom: 16px; }
.how-viz-num { font-family: 'Newsreader', serif; font-size: 24px; font-weight: 500; color: var(--coral); margin-bottom: 6px; }
.how-viz-card h3 { font-size: 18px; font-weight: 600; color: var(--forest-black); line-height: 1.4; max-width: 220px; text-align: center; }

/* Visual 1: Context window (AI chat mockup) */
.how-viz-chat { padding: 0; }
.ctx-window { width: 100%; max-width: 260px; background: #fff; border: 1px solid rgba(0,0,0,0.08); border-radius: 12px; box-shadow: 0 4px 24px rgba(20,38,28,0.08); overflow: hidden; }
.ctx-header { display: flex; gap: 5px; padding: 10px 14px; border-bottom: 1px solid rgba(0,0,0,0.06); }
.ctx-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(0,0,0,0.12); }
.ctx-body { padding: 12px 14px; display: flex; flex-direction: column; gap: 10px; }
.ctx-msg { display: flex; gap: 8px; align-items: flex-start; }
.ctx-avatar { flex-shrink: 0; width: 22px; height: 22px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 10px; font-weight: 700; color: #fff; }
.ctx-avatar-user { background: var(--sage); }
.ctx-avatar-ai { background: var(--coral); }
.ctx-text { font-size: 11px; line-height: 1.5; color: var(--forest-black); }
.ctx-typing { display: flex; gap: 4px; padding-left: 30px; }
.ctx-typing-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--coral); opacity: 0.4; }
.ctx-typing-dot:nth-child(2) { opacity: 0.6; }
.ctx-typing-dot:nth-child(3) { opacity: 0.8; }

/* Visual 2: Voice mode bars */
.voice-bars { display: flex; align-items: center; gap: 6px; height: 50px; }
.voice-bars .vb { width: 5px; height: 20px; background: var(--sage); border-radius: 3px; }
.voice-bars .vb.tall { height: 42px; background: var(--coral); }

/* Visual 3: Code snippet (raw, no box) */
.how-viz-code { font-family: 'JetBrains Mono', monospace; font-size: 13px; line-height: 2; text-align: left; padding: 0 12px; }
.how-viz-code .code-line { display: block; color: var(--text-dim); }
.how-viz-code .code-line .ck { color: var(--coral); }
.how-viz-code .code-line .cf { color: var(--forest-black); font-weight: 500; }
.how-viz-code .code-line .cs { color: var(--sage); }
.how-viz-code .code-dim { opacity: 0.5; font-style: italic; }

/* Visual 4: Engineer at desk */
.how-viz-engineer svg { max-width: 140px; height: auto; }

/* Label under visuals */
.how-viz-label { font-size: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-dim); opacity: 0.6; }

.how-detail { color: var(--text-dim); font-size: 16px; line-height: 1.7; max-width: 620px; margin: 0 auto; }

/* Legacy how-steps (unused now but kept for compat) */
.how-steps { max-width: 640px; margin: 0 auto 40px; text-align: left; }
.how-step { display: flex; gap: 20px; padding: 16px 0; border-bottom: 1px solid rgba(20,38,28,0.06); }
.how-step .num { font-family: 'Newsreader', serif; font-size: 28px; font-weight: 500; color: var(--coral); flex-shrink: 0; width: 36px; }
.how-step h3 { font-size: 17px; font-weight: 500; color: var(--forest-black); line-height: 1.5; margin: 4px 0 0; }
.how-step.final { border-bottom: none; }

/* Product strip */
.strip-section { padding: 80px 0; text-align: center; }
.strip-section h2 { font-size: clamp(26px, 3.5vw, 36px); margin-bottom: 40px; color: var(--cream); }
.strip-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 900px; margin: 0 auto; }
.strip-item { font-size: 16px; color: var(--text-cream-dim); padding: 16px; border: 1px solid rgba(243,240,232,0.1); border-radius: 12px; }
.strip-label { display: block; font-weight: 700; font-size: 18px; margin-bottom: 4px; }
.strip-item:nth-child(odd) .strip-label { color: var(--coral-bright); }
.strip-item:nth-child(even) .strip-label { color: var(--sage); }

/* Credibility section uses .what-section styles */

/* Close section updates */
.close-section p { font-size: 17px; line-height: 1.7; color: var(--text-cream-dim); }

/* Mobile */
@media (max-width: 768px) {
  .strip-grid { grid-template-columns: 1fr; }
  .how-viz-grid { grid-template-columns: repeat(2, 1fr); }
  .hero { padding: 70px 0 60px; }
  .what-section, .why-section, .how-section { padding: 60px 0; }
  .strip-section { padding: 60px 0; }
}

/* ============================= FOOTER ============================= */
.footer { background: var(--forest-black); color: var(--text-cream-dim); padding: 60px 0 30px; border-top: 1px solid rgba(243,240,232,0.08); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 50px; }
.footer .logo { color: var(--cream); margin-bottom: 12px; }
.footer-tagline { font-size: 14px; line-height: 1.6; max-width: 240px; }
.footer-col h4 { font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-cream-dim); margin-bottom: 16px; }
.footer-col a { display: block; font-size: 14px; color: var(--cream); margin-bottom: 12px; opacity: 0.85; }
.footer-bottom { font-size: 13px; padding-top: 24px; border-top: 1px solid rgba(243,240,232,0.08); display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; opacity: 0.8; }
.footer-social { display: flex; gap: 16px; }
.footer-social a { display: flex; align-items: center; opacity: 0.6; transition: opacity 0.15s ease; }
.footer-social a:hover { opacity: 1; }
.footer-social svg { width: 18px; height: 18px; fill: var(--text-cream-dim); }
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; } }

/* ============================= FEATURES PAGE ============================= */
.feat-env-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  max-width: 800px; margin: 0 auto;
}
.feat-env-item {
  background: rgba(243,240,232,0.05);
  border: 1px solid rgba(243,240,232,0.12);
  border-radius: 14px; padding: 22px;
  text-align: left;
}
.feat-env-icon { font-size: 22px; margin-bottom: 10px; }
.feat-env-label { font-family: 'Inter', sans-serif; font-size: 14px; font-weight: 600; color: var(--cream); }
.feat-env-desc { font-size: 13px; color: var(--text-cream-dim); margin-top: 4px; line-height: 1.5; }
@media (max-width: 640px) { .feat-env-grid { grid-template-columns: 1fr 1fr; } }

.feat-list-pills {
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: center;
  max-width: 680px; margin: 0 auto;
}
.feat-list-pills .pill {
  background: var(--cream); color: var(--text-dark);
  padding: 10px 18px; border-radius: 999px;
  font-size: 14px; font-weight: 500;
}

.feat-clone-block {
  max-width: 560px; margin: 0 auto; text-align: left;
  background: #101913; border-radius: 14px; padding: 22px 26px;
  font-family: 'JetBrains Mono', monospace; font-size: 13px; line-height: 1.75;
  color: #D4D8D3; box-shadow: 0 18px 44px rgba(20,38,28,0.22);
}
.feat-clone-block .hl-cm { color: #5C6A61; font-style: italic; }

.feat-team-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  max-width: 900px; margin: 0 auto;
}
.feat-team-card {
  background: #FAF8F2; border: 1px solid var(--border-soft);
  border-radius: 16px; padding: 28px 24px; text-align: left;
}
.feat-team-card h4 { font-family: 'Newsreader', serif; font-size: 18px; margin-bottom: 8px; }
.feat-team-card p { font-size: 14px; color: var(--text-dim); line-height: 1.6; }
@media (max-width: 860px) { .feat-team-grid { grid-template-columns: 1fr; } }

.feat-vs-section {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
  max-width: 760px; margin: 0 auto; text-align: left;
}
.feat-vs-card {
  border-radius: 16px; padding: 32px 28px;
}
.feat-vs-card.old { background: #FAF8F2; border: 1px solid var(--border-soft); }
.feat-vs-card.new { background: var(--forest-black); color: var(--cream); }
.feat-vs-card h4 { font-family: 'Newsreader', serif; font-size: 20px; margin-bottom: 16px; }
.feat-vs-card ul { list-style: none; }
.feat-vs-card li { font-size: 14px; padding: 6px 0; line-height: 1.5; }
.feat-vs-card.old li { color: var(--text-dim); }
.feat-vs-card.new li { color: var(--text-cream-dim); }
@media (max-width: 640px) { .feat-vs-section { grid-template-columns: 1fr; } }

/* ============================= PRICING PAGE (NEW) ============================= */
.pricing-hero { padding: 80px 0 60px; text-align: center; }
.pricing-hero h1 {
  font-size: clamp(34px, 5.4vw, 54px); line-height: 1.15;
  max-width: 700px; margin: 0 auto 22px;
}
.pricing-hero .explainer {
  max-width: 620px; margin: 0 auto 14px;
  font-size: 17px; color: var(--text-dim); line-height: 1.65;
}
.pricing-hero .key-line {
  max-width: 620px; margin: 0 auto 34px;
  font-family: 'Newsreader', serif; font-size: 18px; font-style: italic;
  color: var(--coral);
}
.pricing-cta-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ============================= PRICING TOGGLE ============================= */
.pricing-toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  background: rgba(28,31,27,0.06);
  border: 1px solid rgba(28,31,27,0.08);
  border-radius: 999px;
  padding: 4px;
  margin: 28px 0 0;
  user-select: none;
}
.pricing-toggle-indicator {
  position: absolute;
  top: 4px;
  left: 4px;
  height: calc(100% - 8px);
  width: calc(50% - 4px);
  background: var(--text-dark);
  border-radius: 999px;
  transform: translateX(0%);
  transition: transform 0.34s cubic-bezier(0.4, 0.0, 0.2, 1);
  box-shadow: 0 1px 3px rgba(28,31,27,0.18), 0 1px 2px rgba(28,31,27,0.10);
  z-index: 1;
}
.pricing-toggle.pricing-toggle-right .pricing-toggle-indicator {
  transform: translateX(100%);
}
.pricing-toggle-btn {
  position: relative;
  z-index: 2;
  flex: 1 1 auto;
  border: none;
  background: transparent;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--text-dim);
  padding: 11px 32px;
  border-radius: 999px;
  cursor: pointer;
  white-space: nowrap;
  transition: color 0.34s cubic-bezier(0.4, 0.0, 0.2, 1);
}
.pricing-toggle-btn.active {
  color: var(--cream);
}
.pricing-toggle-btn:focus-visible {
  outline: 2px solid var(--coral);
  outline-offset: 2px;
}

/* Toggle subtext (below toggle buttons) */
.toggle-subtext {
  margin-top: 18px; font-size: 16px; color: var(--text-dim); line-height: 1.6;
  transition: opacity 0.25s;
}
.toggle-subtext.hidden { opacity: 0; pointer-events: none; }

/* Toggle content views */
.toggle-view {
  display: none;
}
.toggle-view.active {
  display: block;
}

/* Pricing blocks — always visible */
.pricing-block {
  padding: 20px 0 40px;
  scroll-margin-top: 80px;
}
.pricing-block + .pricing-block {
  padding-top: 40px;
  border-top: 1px solid var(--border-soft);
}

/* Studio view */
.studio-card-section { padding: 60px 0; }

/* Team mode switcher */
.team-mode-switcher {
  max-width: 760px;
  margin: 0 auto;
  background: #FAF8F2;
  border: 1px solid var(--border-soft);
  border-radius: 20px;
  overflow: hidden;
}
.team-mode-switcher .mode-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px 28px;
  border-bottom: 1px solid var(--border-soft);
  transition: background 0.15s ease;
}
.team-mode-switcher .mode-row:last-child { border-bottom: none; }
.team-mode-switcher .mode-row:hover { background: rgba(28,31,27,0.02); }

/* ============================= RESTORED MOCKUP (top of page) ============================= */
.pricing-mockup-top { padding: 30px 0 0; }
.mockup-layout {
  max-width: 460px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}
.mockup-frame {
  position: relative;
  flex: 0 0 460px;
  max-width: 460px;
  width: 100%;
  background: #1a2e23;
  border: 1px solid rgba(243,240,232,0.14);
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.28);
}
.mockup-composer { padding: 18px 22px 14px; }
.mockup-prompt {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: #D4D8D3;
  line-height: 1.6;
  min-height: 60px;
  padding: 4px 0 10px;
}
.mockup-prompt .cursor-blink {
  display: inline-block;
  width: 2px; height: 17px;
  background: var(--coral-bright);
  vertical-align: text-bottom;
  margin-left: 2px;
  animation: mockup-blink 1s steps(1) infinite;
}
@keyframes mockup-blink { 50% { opacity: 0; } }
.mockup-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
  border-top: 1px solid rgba(243,240,232,0.08);
  margin-top: 4px;
}
.mockup-mode-trigger {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(243,240,232,0.08);
  border: 1px solid rgba(243,240,232,0.12);
  border-radius: 999px;
  padding: 7px 14px 7px 12px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #D4D8D3;
  cursor: pointer;
  transition: background 0.15s ease;
}
.mockup-mode-trigger:hover { background: rgba(243,240,232,0.14); }
.mockup-mode-trigger .trigger-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--coral-bright);
  flex-shrink: 0;
}
.mockup-mode-trigger .trigger-chev { font-size: 10px; color: var(--text-cream-dim); margin-left: 2px; transition: transform 0.25s ease; display: inline-block; }
.mockup-mode-trigger.open { background: rgba(165,68,80,0.2); }
.mockup-mode-trigger:not(.open) {
  animation: cta-pulse 1.5s ease-in-out infinite;
}
@keyframes cta-pulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(217,142,150,0.5);
    background: rgba(243,240,232,0.08);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(217,142,150,0.15);
    background: rgba(217,142,150,0.18);
  }
}
.mockup-mode-trigger:not(.open) .trigger-dot {
  animation: dot-blink 1.5s ease-in-out infinite;
}
@keyframes dot-blink {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}
.mockup-send-btn {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--coral);
  display: flex; align-items: center; justify-content: center;
  color: var(--cream); font-size: 14px; flex-shrink: 0;
}
.mockup-dropdown {
  position: absolute;
  top: 100%;
  left: 22px;
  margin-top: 8px;
  width: max-content;
  max-width: 265px;
  background: #213429;
  border: 1px solid rgba(243,240,232,0.18);
  border-radius: 14px;
  z-index: 10;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0,0,0,0.35);
}
.mockup-dropdown-header {
  padding: 12px 16px 8px;
  font-family: 'Inter', sans-serif;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--text-cream-dim);
}
.mockup-dropdown-item {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 16px;
  cursor: pointer;
  transition: background 0.15s ease;
  border-left: 2px solid transparent;
}
.mockup-dropdown-item:hover { background: rgba(243,240,232,0.05); }
.mockup-dropdown-item.selected {
  background: rgba(165,68,80,0.12);
  border-left-color: var(--coral-bright);
}
.mockup-dropdown-item .dd-icon {
  width: 30px; height: 30px; border-radius: 8px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 600;
}
.dd-icon.studio { background: var(--sage-light); color: var(--forest-black); }
.dd-icon.drytis5 { background: var(--sage); color: var(--cream); }
.dd-icon.edge { background: var(--olive); color: var(--cream); }
.dd-icon.albert { background: var(--coral); color: var(--cream); }
.mockup-dropdown-item .dd-body { flex: 1; min-width: 0; }
.dd-name { font-family: 'Inter', sans-serif; font-size: 14px; font-weight: 600; color: #E8EDE6; }
.dd-desc { font-size: 12px; color: var(--text-cream-dim); margin-top: 1px; line-height: 1.4; }
.dd-check { width: 16px; height: 16px; flex-shrink: 0; color: var(--coral-bright); font-size: 13px; opacity: 0; }
.mockup-dropdown-item.selected .dd-check { opacity: 1; }
.mockup-dropdown-footer {
  padding: 10px 16px 12px;
  border-top: 1px solid rgba(243,240,232,0.08);
  font-size: 11px; color: var(--text-cream-dim); line-height: 1.5;
}
.mockup-annotation {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
  padding: 40px 20px 40px;
}
.mockup-annotation p {
  font-size: 15px;
  color: var(--text-dim);
  line-height: 1.7;
  margin: 0;
}
.mockup-annotation strong {
  color: var(--text-dark);
  font-weight: 600;
  display: block;
  margin-bottom: 4px;
}
@media (max-width: 768px) {
  .mockup-layout { flex-direction: column; align-items: center; }
  .mockup-frame { flex: 0 0 auto; max-width: 100%; }
  .mockup-annotation { text-align: center; }
}
@media (prefers-reduced-motion: reduce) {
  .mockup-prompt .cursor-blink { animation: none; }
  .pricing-toggle-indicator { transition: none !important; }
}
@media (max-width: 640px) {
  .pricing-toggle-btn { font-size: 13px; padding: 10px 24px; }
}

/* Pricing cards section — Studio and Team share this position */
.pricing-cards-section { padding: 80px 0; }

/* Studio subscription card */
.studio-card-section { padding: 60px 0; }
.studio-card .plan-name { font-family: 'Newsreader', serif; font-size: 26px; margin-bottom: 8px; }
.studio-card .plan-price { font-family: 'Newsreader', serif; font-size: 40px; margin-bottom: 6px; }
.studio-card .plan-price span { font-family: 'Inter', sans-serif; font-size: 15px; color: var(--text-cream-dim); font-weight: 400; }
.studio-card .plan-desc { font-size: 15px; color: var(--text-cream-dim); margin-bottom: 28px; line-height: 1.6; }
.studio-card ul { list-style: none; text-align: left; margin-bottom: 28px; }
.studio-card li {
  font-size: 14px; color: var(--text-cream-dim); padding: 7px 0;
  display: flex; align-items: flex-start; gap: 10px; line-height: 1.5;
}
.studio-card li::before {
  content: '✓'; color: var(--coral-bright); font-weight: 700; flex-shrink: 0;
}
.studio-card .fine-print {
  font-size: 12px; color: var(--text-cream-dim); opacity: 0.7;
  padding-top: 18px; border-top: 1px solid rgba(243,240,232,0.1);
  margin-top: 24px; line-height: 1.5;
}
.studio-cta-btn {
  width: auto !important;
  padding: 12px 32px !important;
  font-size: 14px !important;
  margin: 0 auto;
}

/* Team plan cards */
.team-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}
.team-card {
  background: var(--forest-black);
  color: var(--cream);
  border-radius: 22px;
  padding: 36px 28px;
  text-align: center;
  border: 1px solid rgba(243,240,232,0.1);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.team-card-featured {
  border-color: var(--coral-bright);
  box-shadow: 0 0 0 1px var(--coral-bright), 0 28px 60px rgba(20,38,28,0.2);
}
.team-card-badge {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--coral);
  color: var(--cream);
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.04em;
  padding: 5px 16px;
  border-radius: 999px;
  white-space: nowrap;
}
.team-card-icon {
  width: 48px; height: 48px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; font-weight: 700; margin-bottom: 16px;
}
.team-card-icon.drytis5 { background: var(--sage); color: var(--cream); }
.team-card-icon.studio { background: var(--sage-light); color: var(--forest-black); }
.team-cards-single {
  max-width: 360px;
  grid-template-columns: 1fr;
}
.team-card-icon.edge { background: var(--olive); color: var(--cream); }
.team-card-icon.albert { background: var(--coral); color: var(--cream); }
.team-card-name {
  font-family: 'Newsreader', serif; font-size: 22px; margin-bottom: 4px;
}
.team-card-engineer {
  font-size: 13px; color: var(--coral-bright); font-weight: 500; margin-bottom: 12px;
}
.team-card-desc {
  font-size: 14px; color: var(--text-cream-dim); line-height: 1.6; margin-bottom: 24px;
}
.team-card-pricing {
  width: 100%; margin-bottom: 20px;
  padding-top: 8px;
  text-align: left;
}
.team-card-price-row {
  display: flex;
  font-size: 13px; color: var(--text-cream-dim);
  padding: 5px 0;
}
.team-card-price-row::before {
  content: '✓';
  color: var(--coral-bright);
  font-weight: 700;
  margin-right: 8px;
  flex-shrink: 0;
}
.team-card-token-pricing {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 16px;
  font-size: 13px; color: var(--text-cream-dim); opacity: 0.85;
  margin-bottom: 20px;
  padding-top: 12px;
  border-top: 1px solid rgba(243,240,232,0.08);
}
.team-card-token-pricing .cached { color: var(--sage); font-weight: 600; }
@media (max-width: 768px) {
  .team-cards-grid { grid-template-columns: 1fr; gap: 20px; }
}

/* Build mode overview */
.modes-section { padding: 80px 0; text-align: center; }
.modes-section h2 { font-size: clamp(28px, 3.8vw, 38px); margin-bottom: 14px; }
.modes-section .section-lede { max-width: 560px; margin: 0 auto 50px; color: var(--text-dim); font-size: 16px; }

.mode-switcher {
  max-width: 760px; margin: 0 auto;
  background: #FAF8F2; border: 1px solid var(--border-soft);
  border-radius: 20px; overflow: hidden;
}
.mode-row {
  display: flex; align-items: center; gap: 20px;
  padding: 24px 28px; border-bottom: 1px solid var(--border-soft);
  text-align: left; transition: background 0.15s ease;
}
.mode-row:last-child { border-bottom: none; }
.mode-row:hover { background: #F8F5EE; }
.mode-row.active { background: var(--forest-black); color: var(--cream); }
.mode-row.active .mode-label { color: var(--cream); }
.mode-row.active .mode-desc { color: var(--text-cream-dim); }
.mode-row.active .mode-tag { background: var(--coral); color: var(--cream); border-color: transparent; }

.mode-icon { width: 38px; height: 38px; border-radius: 10px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 18px; }
.mode-icon.studio { background: var(--sage-light); color: var(--forest-black); }
.mode-icon.drytis5 { background: var(--sage); color: var(--cream); }
.mode-icon.edge { background: var(--olive); color: var(--cream); }
.mode-icon.albert { background: var(--coral); color: var(--cream); }

.mode-body { flex: 1; }
.mode-label { font-family: 'Newsreader', serif; font-size: 20px; font-weight: 600; margin-bottom: 3px; }
.mode-desc { font-size: 14px; color: var(--text-dim); line-height: 1.55; }
.mode-row.active .mode-desc { color: var(--text-cream-dim); }
.mode-tag {
  font-size: 12px; font-weight: 600; padding: 6px 14px; border-radius: 999px;
  background: transparent; color: var(--text-dim); border: 1px solid var(--border-soft);
  white-space: nowrap;
}


/* ============================= PRICING CARDS (Claude-style) ============================= */
.token-table-section { padding: 80px 0; text-align: center; }
.token-table-section h2 { font-size: clamp(28px, 3.8vw, 38px); margin-bottom: 14px; }
.token-table-section .section-lede { max-width: 560px; margin: 0 auto 44px; color: var(--text-dim); font-size: 16px; }

.pricing-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 940px;
  margin: 0 auto;
  text-align: left;
}
.price-card {
  background: var(--forest-black);
  border: 1px solid rgba(243,240,232,0.10);
  border-radius: 16px;
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  position: relative;
}
.price-card-featured {
  border-color: rgba(217,142,150,0.35);
  box-shadow: 0 0 0 1px rgba(217,142,150,0.15);
}
.price-card-badge {
  position: absolute;
  top: -11px; left: 50%; transform: translateX(-50%);
  background: var(--coral);
  color: var(--cream);
  font-family: "Inter", sans-serif;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.04em;
  padding: 4px 14px;
  border-radius: 999px;
  white-space: nowrap;
}
.price-card-header { margin-bottom: 22px; }
.price-card-model {
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  color: var(--text-cream-dim);
  margin-bottom: 4px;
}
.price-card-engineer {
  font-family: "Newsreader", serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 4px;
}
.price-card-tagline {
  font-size: 14px;
  color: var(--text-cream-dim);
  line-height: 1.5;
}
.price-card-body {
  border-top: 1px solid rgba(243,240,232,0.08);
  padding-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.price-card-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.price-card-label {
  font-size: 13px;
  color: var(--text-cream-dim);
}
.price-card-val {
  font-family: "Newsreader", serif;
  font-size: 16px;
  color: var(--cream);
}
.price-card-val.cached {
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--coral-bright);
}
.price-card-note {
  margin-top: 14px;
  font-size: 12px;
  color: var(--text-cream-dim);
  line-height: 1.5;
  padding-top: 12px;
  border-top: 1px solid rgba(243,240,232,0.08);
}

.token-supporting {
  max-width: 620px; margin: 32px auto 0; text-align: left;
}
.token-supporting li {
  font-size: 14px; color: var(--text-dim); padding: 6px 0; list-style: none;
  display: flex; align-items: flex-start; gap: 10px; line-height: 1.5;
}
.token-supporting li::before { content: "\2022"; color: var(--coral); flex-shrink: 0; }

@media (max-width: 860px) {
  .pricing-cards-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
  }
}

/* ============================= HOW PRICING WORKS + BUILD MODE + CONTEXT WINDOW ============================= */
.how-pricing-section { padding: 90px 0; text-align: center; }
.how-pricing-section h2 { font-size: clamp(28px, 3.8vw, 38px); margin-bottom: 14px; }
.how-pricing-section .section-lede { color: var(--text-cream-dim); font-size: 16px; }
.how-pricing-summary {
  font-family: "Newsreader", serif; font-style: italic; font-size: 22px;
  color: var(--coral); margin-top: 50px;
}

/* Large build mode visual */
.buildmode-large {
  max-width: 720px;
  margin: 48px auto 0;
  background: rgba(243,240,232,0.04);
  border: 1px solid rgba(243,240,232,0.12);
  border-radius: 18px;
  overflow: hidden;
  text-align: left;
}
.buildmode-large-header {
  padding: 20px 28px 16px;
  border-bottom: 1px solid rgba(243,240,232,0.08);
}
.buildmode-large-title {
  font-family: "Inter", sans-serif;
  font-size: 14px; font-weight: 600; color: var(--cream);
}
.buildmode-large-subtitle {
  font-size: 12px; color: var(--text-cream-dim); margin-top: 2px;
}
.buildmode-large-grid {
  padding: 8px;
}
.buildmode-large-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  border-radius: 12px;
  transition: background 0.15s ease;
}
.buildmode-large-item:hover {
  background: rgba(243,240,232,0.04);
}
.buildmode-item-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 600; flex-shrink: 0;
}
.buildmode-item-icon.studio { background: var(--sage-light); color: var(--forest-black); }
.buildmode-item-icon.drytis5 { background: var(--sage); color: var(--cream); }
.buildmode-item-icon.edge { background: var(--olive); color: var(--cream); }
.buildmode-item-icon.albert { background: var(--coral); color: var(--cream); }
.buildmode-item-body { flex: 1; min-width: 0; }
.buildmode-item-name {
  font-family: "Inter", sans-serif;
  font-size: 15px; font-weight: 600; color: var(--cream);
}
.buildmode-item-desc {
  font-size: 13px; color: var(--text-cream-dim); margin-top: 2px;
}
.buildmode-item-tag {
  font-size: 11px; font-weight: 600;
  padding: 4px 10px; border-radius: 999px;
  background: rgba(243,240,232,0.08);
  color: var(--text-cream-dim);
  white-space: nowrap;
  flex-shrink: 0;
}
.buildmode-large-footer {
  padding: 14px 28px;
  border-top: 1px solid rgba(243,240,232,0.08);
  font-size: 12px;
  color: var(--text-cream-dim);
}

@media (max-width: 640px) {
  .buildmode-large-item {
    flex-wrap: wrap;
  }
  .buildmode-item-tag {
    order: 3;
    margin-left: 56px;
    width: fit-content;
  }
}

/* Context window block */
.context-window-block {
  max-width: 720px;
  margin: 48px auto 0;
  text-align: left;
}
.context-window-header {
  text-align: center;
  margin-bottom: 32px;
}
.context-window-header h3 {
  font-family: "Newsreader", serif;
  font-size: clamp(22px, 3vw, 28px);
  color: var(--cream);
  margin-top: 8px;
}
.context-window-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.context-window-card {
  background: rgba(243,240,232,0.04);
  border: 1px solid rgba(243,240,232,0.10);
  border-radius: 14px;
  padding: 22px 20px;
}
.context-window-card .cw-label {
  font-family: "Inter", sans-serif;
  font-size: 13px; font-weight: 600;
  color: var(--coral-bright);
  margin-bottom: 8px;
}
.context-window-card .cw-text {
  font-size: 13px;
  color: var(--text-cream-dim);
  line-height: 1.65;
}

@media (max-width: 860px) {
  .context-window-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .pricing-toggle-btn {
    font-size: 13px;
    padding: 10px 18px;
  }
}

/* Use case guidance */
.usecase-section { padding: 80px 0; text-align: center; }
.usecase-section h2 { font-size: clamp(28px, 3.8vw, 38px); margin-bottom: 50px; }
.usecase-grid {
  max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; text-align: left;
}
.usecase-card {
  background: #FAF8F2; border: 1px solid var(--border-soft);
  border-radius: 16px; padding: 24px 28px;
  display: flex; align-items: flex-start; gap: 18px;
}
.usecase-card .uc-mode {
  font-family: 'Newsreader', serif; font-size: 18px; font-weight: 600;
  flex-shrink: 0; min-width: 120px;
}
.usecase-card .uc-text { font-size: 15px; color: var(--text-dim); line-height: 1.55; }

/* How it works — product explainer */
.howitworks-section { padding: 90px 0; text-align: center; }
.howitworks-section h2 { font-size: clamp(28px, 3.8vw, 38px); margin-bottom: 16px; }
.howitworks-subline {
  max-width: 620px; margin: 0 auto 56px;
  font-size: 16px; color: var(--text-dim); line-height: 1.7;
}
.howitworks-subline strong { color: var(--text-dark); font-weight: 600; }
.howitworks-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  align-items: stretch;
  max-width: 900px;
  margin: 0 auto;
}
.howitworks-panel {
  background: var(--cream);
  border: 1px solid var(--border-soft);
  border-radius: 18px;
  padding: 36px 32px;
  text-align: left;
  box-shadow: 0 2px 12px rgba(20,38,28,0.04);
}
.howitworks-panel-icon {
  width: 40px; height: 40px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; font-weight: 700; margin-bottom: 18px;
}
.howitworks-panel-icon.studio { background: var(--sage-light); color: var(--forest-black); }
.howitworks-panel-icon.team { background: var(--coral); color: var(--cream); }
.howitworks-panel h3 {
  font-family: 'Newsreader', serif;
  font-size: 19px; line-height: 1.4; margin-bottom: 14px;
  color: var(--text-dark);
}
.howitworks-panel p {
  font-size: 14px; color: var(--text-dim); line-height: 1.65; margin-bottom: 12px;
}
.howitworks-panel p:last-child { margin-bottom: 0; }
.howitworks-connector {
  display: flex; align-items: center; padding: 0 20px;
}
.howitworks-connector span {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--coral);
  white-space: nowrap;
}
@media (max-width: 768px) {
  .howitworks-grid { grid-template-columns: 1fr; gap: 16px; }
  .howitworks-connector { padding: 8px 0; }
  .howitworks-connector span { writing-mode: horizontal-tb; transform: none; }
}

/* FAQ */
.faq-section { padding: 90px 0; }
.faq-section h2 { font-size: clamp(28px, 3.8vw, 38px); margin-bottom: 50px; text-align: center; }
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border-soft); }
.faq-question {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 0; cursor: pointer; font-family: 'Newsreader', serif;
  font-size: 18px; font-weight: 500; transition: color 0.15s ease;
}
.faq-question:hover { color: var(--coral); }
.faq-question .toggle {
  font-family: 'Inter', sans-serif; font-size: 22px; font-weight: 400;
  color: var(--text-dim); transition: transform 0.2s ease;
}
.faq-item.open .faq-question .toggle { transform: rotate(45deg); }
.faq-answer {
  max-height: 0; overflow: hidden; transition: max-height 0.3s ease;
}
.faq-item.open .faq-answer { max-height: 300px; }
.faq-answer-inner { padding: 0 0 22px 0; font-size: 15px; color: var(--text-dim); line-height: 1.65; }

/* Closing CTA on pricing */
.pricing-cta-close { padding: 100px 0; text-align: center; }
.pricing-cta-close h2 {
  font-family: 'Newsreader', serif; font-size: clamp(28px, 4.4vw, 42px);
  line-height: 1.35; max-width: 600px; margin: 0 auto 16px;
}
.pricing-cta-close p { font-size: 16px; color: var(--text-cream-dim); margin-bottom: 36px; }

/* ============================= ESTIMATOR PAGE ============================= */
.estimator-section { padding: 80px 0 120px; text-align: center; }
.estimator-box {
  max-width: 600px; margin: 40px auto 0;
  background: #FAF8F2; border: 1px solid var(--border-soft);
  border-radius: 20px; padding: 40px 36px; text-align: left;
}
.estimator-box p { font-size: 15px; color: var(--text-dim); line-height: 1.65; margin-bottom: 20px; }
.estimator-disclaimer { font-size: 13px; color: var(--text-dim); margin-top: 16px; line-height: 1.55; }

/* ============================= GENERIC CONTENT PAGE ============================= */
.content-page { padding: 80px 0 120px; }
.content-page h1 { font-size: clamp(30px, 4.5vw, 44px); margin-bottom: 30px; }
.content-page h2 { font-size: clamp(22px, 3vw, 28px); margin: 40px 0 16px; }
.content-page p { font-size: 16px; color: var(--text-dim); line-height: 1.7; margin-bottom: 16px; max-width: 720px; }
.content-page ul { margin: 16px 0 16px 24px; }
.content-page li { font-size: 16px; color: var(--text-dim); line-height: 1.7; margin-bottom: 8px; }
.content-page .last-updated { font-size: 13px; color: var(--text-dim); margin-bottom: 40px; }

/* ============================= ABOUT PAGE ============================= */
.about-section { padding: 60px 0 100px; }
.about-center .container { text-align: center; }
.about-center .container p { margin-left: auto; margin-right: auto; }
.about-center .container strong { display: inline; }
.about-right .container { display: flex; justify-content: flex-end; }
.about-right .container > * { max-width: 680px; }
.about-section h2 { font-size: clamp(26px, 3.5vw, 34px); margin-bottom: 20px; max-width: 680px; }
.about-section h3 { font-size: clamp(22px, 3vw, 28px); margin: 24px 0 16px; max-width: 680px; color: var(--coral); }
.about-section p { font-size: 17px; color: var(--text-dim); line-height: 1.75; margin-bottom: 20px; max-width: 680px; }

/* ============================= FEATURE MATRIX ============================= */
.matrix-section { padding: 64px 0 40px; }
.matrix-section + .matrix-section { padding-top: 0; }
.matrix-heading {
  font-size: clamp(22px, 3vw, 28px); font-weight: 600; color: var(--forest-black);
  margin-bottom: 24px; padding-bottom: 12px;
  border-bottom: 2px solid var(--forest-black);
}
.matrix-table {
  width: 100%; border-collapse: collapse; font-size: 14px; table-layout: fixed;
}
.matrix-table th {
  text-align: left; font-weight: 600; font-size: 12px; text-transform: uppercase;
  letter-spacing: 0.06em; color: var(--text-dim); padding: 10px 12px;
  border-bottom: 1px solid rgba(20,38,28,0.12);
}
.matrix-table th.col-model, .matrix-table td.matrix-check, .matrix-table td.matrix-dash, .matrix-table td.matrix-soon { text-align: center; width: 12%; }
.matrix-table th:first-child, .matrix-table td:first-child { width: 52%; }
.matrix-table td {
  padding: 12px; border-bottom: 1px solid rgba(20,38,28,0.06);
  color: var(--forest-black); vertical-align: middle;
}
.matrix-table tbody tr:hover { background: rgba(20,38,28,0.02); }

/* Feature label with optional info-circle hover icon */
.feat-label { display: inline-flex; align-items: center; gap: 5px; }
.feat-info {
  display: inline-flex; align-items: center; justify-content: center;
  width: 14px; height: 14px; border: none; border-radius: 50%;
  font-size: 10px; font-style: italic; font-family: Georgia, serif; font-weight: 700;
  color: #fff; cursor: help; position: relative;
  background: var(--text-dim); opacity: 0.45; transition: opacity 0.15s;
  flex-shrink: 0;
}
.feat-info:hover { opacity: 1; }
.feat-info::after {
  content: attr(data-tip);
  position: absolute; bottom: calc(100% + 8px); left: 50%; transform: translateX(-50%);
  background: var(--forest-black); color: var(--cream);
  font-size: 12px; line-height: 1.5; padding: 8px 12px; border-radius: 8px;
  white-space: normal; width: 220px; text-align: left;
  pointer-events: none; opacity: 0; transition: opacity 0.15s;
  z-index: 50; font-weight: 400; letter-spacing: 0; text-transform: none;
  font-style: normal; font-family: 'Inter', sans-serif;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}
.feat-info::before {
  content: 'i';
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  font-size: 10px; font-style: italic; font-family: Georgia, serif; font-weight: 700;
  color: #fff; pointer-events: none;
}
.feat-info:hover::after { opacity: 1; }

/* Tooltip arrow - needs to be separate so hover detection works */
.feat-info:hover::before {
  content: 'i';
  opacity: 1;
}

/* Checkmarks and dashes in model-level matrix */
.matrix-check { text-align: center; color: var(--coral); font-weight: 700; font-size: 16px; }
.matrix-dash { text-align: center; color: rgba(20,38,28,0.2); }
.matrix-soon { text-align: center; font-size: 11px; color: var(--text-dim); font-style: italic; }

/* Coming soon badge */
.matrix-coming {
  display: inline-block; font-size: 11px; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.05em; color: var(--coral); background: rgba(165,68,80,0.08);
  padding: 3px 8px; border-radius: 4px; margin-left: 8px;
}

/* Mobile: scroll horizontally */
.matrix-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }

/* Mobile matrix: ensure columns stay perfectly aligned across all sections */
@media (max-width: 768px) {
  .matrix-scroll .matrix-table { min-width: 600px; }
  .matrix-table { font-size: 13px; }
  .matrix-table th, .matrix-table td { padding: 8px 6px; }
  .matrix-table th:first-child, .matrix-table td:first-child { width: 52%; }
  .matrix-table th.col-model, .matrix-table td.matrix-check, .matrix-table td.matrix-dash, .matrix-table td.matrix-soon { width: 12%; }
  .matrix-check { font-size: 14px; }
  .matrix-soon { font-size: 10px; }
  .feat-info { width: 13px; height: 13px; font-size: 9px; }
}

/* FAQ on features page */
.features-faq { background: var(--cream); }
.features-faq .faq-list { max-width: 760px; margin: 0 auto; }

/* ============================= HERO ASSEMBLY TOOLTIP ============================= */
.hero-assembly { margin-top: 24px; }
.assembly-trigger {
  font-size: 14px; font-weight: 600; color: var(--coral); cursor: help;
  border-bottom: 1px dashed var(--coral); padding-bottom: 2px;
  position: relative; display: inline-block;
}
.assembly-trigger:hover { color: var(--coral-bright); border-bottom-color: var(--coral-bright); }
.assembly-trigger::after {
  content: 'Everything is ready the moment you log in. No setup or configuration required.';
  position: absolute; top: calc(100% + 10px); left: 50%; transform: translateX(-50%);
  background: var(--forest-black); color: var(--cream);
  font-size: 13px; line-height: 1.5; padding: 10px 16px; border-radius: 8px;
  white-space: normal; width: 280px; text-align: center; font-weight: 400;
  pointer-events: none; opacity: 0; transition: opacity 0.15s;
  z-index: 50; box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}
.assembly-trigger:hover::after { opacity: 1; }

/* ============================= NAV DROPDOWN ============================= */
.nav-item-dropdown { position: relative; }
.nav-dropdown-toggle { cursor: pointer; }
.nav-dropdown {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%);
  background: var(--cream); border: 1px solid rgba(20,38,28,0.1);
  border-radius: 8px; padding: 8px 0; min-width: 180px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1); display: none; z-index: 100;
}
.nav-item-dropdown:hover .nav-dropdown { display: block; }
.nav-dropdown a {
  display: block; padding: 8px 16px; font-size: 14px; color: var(--forest-black);
  text-decoration: none;
}
.nav-dropdown a:hover { background: rgba(20,38,28,0.04); color: var(--coral); }
.nav-dropdown-label { font-size: 11px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-dim); padding: 4px 16px 8px; }

/* ============================= COMMUNITY / REDDIT SECTION ============================= */
.community-divider {
  width: 100%; max-width: 680px; margin: 56px auto 48px;
  height: 1px; background: linear-gradient(to right, transparent, rgba(20,38,28,0.15), transparent);
  border: none;
}
.community-heading { font-size: clamp(24px, 3vw, 32px); font-weight: 600; margin-bottom: 8px; }
.community-subline { font-size: 15px; color: var(--text-dim); margin-bottom: 40px; max-width: 640px; }

/* Thread preview list (Solutions page) */
.thread-preview-list { max-width: 760px; margin: 0 auto 60px; }
.thread-preview {
  display: flex; gap: 14px; padding: 16px 20px;
  border: 1px solid rgba(20,38,28,0.08); border-radius: 12px;
  margin-bottom: 10px; background: #fff; text-decoration: none; color: inherit;
  transition: box-shadow 0.15s, transform 0.1s; align-items: flex-start;
}
.thread-preview:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.06); transform: translateY(-1px); }
.thread-preview-vote {
  display: flex; flex-direction: column; align-items: center; min-width: 36px;
  font-size: 12px; font-weight: 600; color: var(--text-dim); padding-top: 2px;
}
.thread-preview-vote .vote-arrow { font-size: 14px; color: var(--coral); }
.thread-preview-body { flex: 1; min-width: 0; }
.thread-preview-title { font-size: 15px; font-weight: 600; color: var(--forest-black); margin-bottom: 3px; line-height: 1.4; }
.thread-preview-preview { font-size: 13px; color: var(--text-dim); margin-bottom: 6px; line-height: 1.4; }
.thread-preview-meta { display: flex; gap: 10px; align-items: center; font-size: 12px; color: var(--text-dim); flex-wrap: wrap; }
.thread-preview-tag {
  font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em;
  padding: 2px 8px; border-radius: 4px; background: rgba(20,38,28,0.06); color: var(--forest-black);
}
.thread-preview-badge {
  font-size: 11px; font-weight: 600; color: var(--coral); display: inline-flex; align-items: center; gap: 4px;
}
.thread-preview-badge::before { content: '\2713'; font-weight: 700; }

/* Reddit page */
.reddit-page { background: var(--cream); }
.reddit-top-label {
  display: flex; gap: 16px; align-items: center; flex-wrap: wrap; margin-bottom: 32px;
  font-size: 13px; font-weight: 600; color: var(--text-dim);
}
.reddit-top-label .drytis-badge-sm {
  display: inline-flex; align-items: center; gap: 4px; padding: 3px 10px; border-radius: 4px;
  background: var(--forest-black); color: var(--cream); font-size: 12px;
}
.reddit-thread-list { max-width: 760px; margin: 0 auto; }

/* Thread card (full view on /reddit) */
.thread-card {
  background: #fff; border: 1px solid rgba(20,38,28,0.08); border-radius: 12px;
  padding: 24px; margin-bottom: 16px;
  scroll-margin-top: 80px;
}
.thread-card-header { margin-bottom: 16px; }
.thread-card-title { font-size: 20px; font-weight: 600; color: var(--forest-black); margin-bottom: 8px; line-height: 1.3; }
.thread-card-meta { display: flex; gap: 10px; align-items: center; font-size: 13px; color: var(--text-dim); flex-wrap: wrap; }
.thread-card-postedby { font-weight: 500; }
.thread-card-body { font-size: 15px; color: var(--forest-black); line-height: 1.7; margin-bottom: 20px; }
.thread-card-tag {
  font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em;
  padding: 3px 10px; border-radius: 4px; background: rgba(20,38,28,0.06); color: var(--forest-black);
}

/* Answers */
.answers-title { font-size: 16px; font-weight: 600; margin-bottom: 16px; color: var(--forest-black); }
.answer-card {
  border-left: 3px solid var(--coral); padding: 16px 20px; margin-bottom: 12px;
  background: rgba(165,68,80,0.03); border-radius: 0 8px 8px 0;
}
.answer-header { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; flex-wrap: wrap; }
.answer-avatar {
  width: 32px; height: 32px; border-radius: 50%; background: var(--forest-black);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 600; color: var(--cream); flex-shrink: 0;
}
.answer-name { font-weight: 600; font-size: 14px; color: var(--forest-black); }
.answer-role { font-size: 12px; color: var(--text-dim); }
.answer-drytis-badge {
  font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em;
  padding: 2px 8px; border-radius: 4px; background: var(--coral); color: #fff;
}
.answer-official {
  font-size: 11px; font-weight: 600; color: var(--coral); padding: 2px 8px;
  border: 1px solid var(--coral); border-radius: 4px;
}
.answer-text { font-size: 14px; line-height: 1.6; color: var(--forest-black); margin-bottom: 8px; }
.answer-meta { font-size: 12px; color: var(--text-dim); display: flex; gap: 10px; }

/* Related threads */
.related-threads { margin-top: 24px; padding-top: 20px; border-top: 1px solid rgba(20,38,28,0.08); }
.related-threads-title { font-size: 14px; font-weight: 600; margin-bottom: 12px; color: var(--forest-black); }
.related-thread-link {
  display: block; padding: 10px 14px; border: 1px solid rgba(20,38,28,0.06); border-radius: 8px;
  margin-bottom: 6px; font-size: 14px; color: var(--forest-black); text-decoration: none; background: #fff;
  transition: border-color 0.15s;
}
.related-thread-link:hover { border-color: var(--coral); color: var(--coral); }

/* Expandable thread on reddit page */
.thread-card.collapsed .thread-card-body,
.thread-card.collapsed .answers-section,
.thread-card.collapsed .related-threads { display: none; }
.thread-expand-btn {
  font-size: 13px; font-weight: 600; color: var(--coral); cursor: pointer;
  background: none; border: none; padding: 4px 0;
}
.thread-expand-btn:hover { text-decoration: underline; }

/* FAQ intro */
.faq-intro-heading { font-size: clamp(24px, 3vw, 32px); font-weight: 600; margin-bottom: 8px; }
.faq-intro-subline { font-size: 15px; color: var(--text-dim); margin-bottom: 40px; max-width: 640px; }

/* Mobile responsive */
@media (max-width: 768px) {
  .thread-preview { padding: 12px 14px; gap: 10px; }
  .thread-preview-title { font-size: 14px; }
  .thread-preview-preview { font-size: 12px; }
  .thread-card { padding: 16px; }
  .thread-card-title { font-size: 18px; }
  .answer-card { padding: 12px 14px; }
}

/* ============================= SOLUTIONS PAGE TOP ============================= */
.sol-hero { padding: 100px 0 60px; background: var(--cream); text-align: center; }
.sol-hero .container { display: flex; flex-direction: column; align-items: center; }
.sol-hero h1 { font-size: clamp(28px, 5vw, 52px); line-height: 1.15; font-weight: 500; color: var(--forest-black); max-width: 800px; margin: 0 auto 24px; text-align: center; }
.sol-hero-lede { font-size: 17px; line-height: 1.7; color: var(--text-dim); max-width: 640px; margin: 0 auto 32px; text-align: center; }
.sol-hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }

.sol-section { padding: 64px 0; scroll-margin-top: 80px; }
.sol-section-dark { padding: 64px 0; background: var(--forest-black); color: var(--cream); }
.sol-eyebrow { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--coral); margin-bottom: 16px; display: block; }
.sol-heading { font-size: clamp(26px, 3.5vw, 36px); font-weight: 500; line-height: 1.25; color: var(--forest-black); margin-bottom: 20px; max-width: 720px; }
.sol-body { font-size: 17px; line-height: 1.75; color: var(--text-dim); max-width: 680px; }
.sol-section-dark .sol-heading { color: var(--cream); }
.sol-section-dark .sol-body { color: rgba(243,240,232,0.7); }

/* Problem cards (3-column) - legacy */
.sol-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
.sol-card { background: #fff; border: 1px solid rgba(20,38,28,0.08); border-radius: 14px; padding: 28px; }
.sol-card h3 { font-size: 18px; font-weight: 600; color: var(--forest-black); margin-bottom: 12px; }
.sol-card p { font-size: 15px; line-height: 1.65; color: var(--text-dim); }

/* Pain point cards (5 main pain points) */
.sol-pain-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 48px;
}
.sol-pain-grid > .sol-pain-card:last-child {
  grid-column: 1 / -1; max-width: calc(50% - 12px);
}
.sol-pain-card {
  background: #fff; border: 1px solid rgba(20,38,28,0.08); border-radius: 14px;
  padding: 32px 28px; position: relative;
}
.pain-number {
  font-size: 13px; font-weight: 700; color: var(--coral); letter-spacing: 0.05em;
  margin-bottom: 12px;
}
.sol-pain-card h3 {
  font-size: 24px; font-weight: 700; color: var(--forest-black);
  margin-bottom: 12px; line-height: 1.25;
}
.sol-pain-card > p {
  font-size: 14px; line-height: 1.65; color: var(--text-dim); margin-bottom: 20px;
}
.sol-pain-card .pain-list {
  list-style: none; padding: 0; margin: 0 0 20px;
}
.sol-pain-card .pain-list li {
  font-size: 14px; line-height: 1.6; color: var(--text-dim);
  padding: 6px 0 6px 20px; position: relative;
}
.sol-pain-card .pain-list li::before {
  content: ''; position: absolute; left: 0; top: 14px;
  width: 6px; height: 6px; border-radius: 50%; background: rgba(165,68,80,0.3);
}
/* Pain point solved badge */
.pain-solved-badge {
  display: inline-block; font-size: 24px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--coral); background: rgba(165,68,80,0.08);
  padding: 8px 28px; border-radius: 999px; margin-top: 4px;
}
.pain-solved-link {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-size: 24px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--forest-black); text-decoration: none;
  padding: 8px 28px; border-radius: 999px; margin: 4px auto 0;
  background: rgba(20,38,28,0.04); transition: background 0.2s;
  width: fit-content;
}
.pain-solved-link:hover { background: rgba(20,38,28,0.08); }
.solved-check-svg { flex-shrink: 0; }

/* Solution blocks */
.sol-solutions-section { padding: 80px 0; background: var(--cream); }
.sol-solutions-section .sol-heading { text-align: center; max-width: 100%; margin-bottom: 56px; }
.sol-block { position: relative; padding: 40px 40px 40px 80px; margin-bottom: 32px;
  background: #fff; border: 1px solid rgba(20,38,28,0.08); border-radius: 16px;
  scroll-margin-top: 80px;
}
.sol-block-num { position: absolute; top: 36px; left: 32px;
  font-family: 'Newsreader', serif; font-size: 32px; font-weight: 500; color: var(--coral);
}
.sol-block h3 { font-size: 22px; font-weight: 700; color: var(--forest-black);
  margin-bottom: 16px; line-height: 1.3;
}
.sol-block-list { list-style: none; padding: 0; margin: 0; }
.sol-block-list li { font-size: 15px; line-height: 1.6; color: var(--text-dim);
  padding: 6px 0 6px 24px; position: relative;
}
.sol-block-list li::before { content: '\2714'; position: absolute; left: 0; top: 6px;
  color: #2ea44f; font-weight: 700;
}
@media (max-width: 768px) {
  .sol-block { padding: 32px 24px 32px 60px; }
  .sol-block-num { left: 20px; top: 28px; font-size: 26px; }
  .sol-block h3 { font-size: 19px; }
}

/* Benefits grid (4 items) */
.sol-benefits { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; margin-top: 40px; }
.sol-benefit { padding: 4px; }
.sol-benefit h3 { font-size: 18px; font-weight: 600; color: var(--forest-black); margin-bottom: 10px; }
.sol-benefit h3::before { content: ''; display: inline-block; width: 24px; height: 2px; background: var(--coral); margin-right: 12px; vertical-align: middle; }
.sol-benefit p { font-size: 15px; line-height: 1.65; color: var(--text-dim); max-width: 440px; }

/* Closing section */
.sol-closing { text-align: center; padding: 80px 0 100px; }
.sol-closing h2 { font-size: clamp(28px, 4vw, 40px); font-weight: 500; color: var(--forest-black); max-width: 700px; margin: 0 auto 20px; line-height: 1.25; }
.sol-closing p { font-size: 17px; line-height: 1.7; color: var(--text-dim); max-width: 600px; margin: 0 auto 32px; }
.sol-closing-ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

@media (max-width: 768px) {
  .sol-cards { grid-template-columns: 1fr; }
  .sol-pain-grid { grid-template-columns: 1fr; }
  .sol-pain-grid > .sol-pain-card:last-child { max-width: 100%; }
  .sol-benefits { grid-template-columns: 1fr; }
  .sol-hero { padding: 60px 0 40px; }
  .sol-section, .sol-section-dark { padding: 48px 0; }
  .sol-closing { padding: 60px 0 80px; }
}
