/* =====================================================
   DIAL — Landing Page Stylesheet
   Aesthetic: Editorial political publication × Linear minimalism
   Palette: Cream / deep ink / amber accent
   ===================================================== */

:root {
  /* Palette */
  --cream:        #faf7f2;
  --cream-dim:    #f3ede2;
  --paper:        #ffffff;
  --ink:          #111012;
  --ink-soft:     #2b2a2e;
  --ink-mute:     #565459;
  --ink-faint:    #8a878d;
  --rule:         #d9d3c6;
  --rule-soft:    #e6e1d5;
  --amber:        #b8541a;
  --amber-warm:   #c97b2d;
  --amber-bg:     #f9ecd9;
  --amber-deep:   #6b2f0a;

  /* Type */
  --font-serif:   "Fraunces", "Iowan Old Style", "Georgia", serif;
  --font-sans:    "Inter", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  --font-mono:    "JetBrains Mono", "SF Mono", Menlo, Consolas, monospace;

  /* Scale */
  --max-w:        1180px;
  --max-w-narrow: 760px;
  --radius:       4px;
  --radius-lg:    10px;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-sans);
  background: var(--cream);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "ss01", "cv11";
}

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

img { max-width: 100%; height: auto; display: block; }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 28px;
}

.container-narrow {
  max-width: var(--max-w-narrow);
  margin: 0 auto;
  padding: 0 28px;
}

/* =====================================================
   NAV
   ===================================================== */

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 247, 242, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--rule-soft);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.logo-mark {
  display: inline-block;
  width: 22px;
  height: 22px;
  background: var(--ink);
  border-radius: 5px;
  position: relative;
  flex-shrink: 0;
}

.logo-mark::after {
  content: "";
  position: absolute;
  top: 6px;
  left: 6px;
  width: 10px;
  height: 10px;
  border: 1.8px solid var(--cream);
  border-radius: 50%;
  border-top-color: transparent;
  border-right-color: transparent;
  transform: rotate(-45deg);
}

.logo-word { font-family: var(--font-serif); }

.nav-links {
  display: flex;
  gap: 28px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-soft);
}

.nav-links a:hover { color: var(--amber); }

/* =====================================================
   BUTTONS
   ===================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 20px;
  font-family: var(--font-sans);
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: -0.005em;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.15s ease;
  text-align: center;
  white-space: nowrap;
}

.btn-sm { padding: 8px 15px; font-size: 13.5px; }
.btn-lg { padding: 15px 28px; font-size: 16px; }
.btn-block { width: 100%; }

.btn-primary {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}

.btn-primary:hover {
  background: var(--amber);
  border-color: var(--amber);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--rule);
}

.btn-ghost:hover {
  border-color: var(--ink);
  background: var(--paper);
}

/* =====================================================
   HERO
   ===================================================== */

.hero {
  padding: 80px 0 0;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 15% 20%, rgba(184, 84, 26, 0.04) 0%, transparent 40%),
    radial-gradient(circle at 85% 70%, rgba(184, 84, 26, 0.03) 0%, transparent 40%);
  pointer-events: none;
}

.hero > .container { position: relative; }

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--amber-bg);
  color: var(--amber-deep);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 32px;
  border: 1px solid rgba(184, 84, 26, 0.15);
}

.tag-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--amber);
  display: inline-block;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero-title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(42px, 6vw, 78px);
  line-height: 1.02;
  letter-spacing: -0.035em;
  color: var(--ink);
  margin-bottom: 28px;
  font-feature-settings: "ss01";
  max-width: 920px;
}

.hero-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--amber);
  font-feature-settings: "ss01";
}

.hero-sub {
  font-size: 19px;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 620px;
  margin-bottom: 36px;
  font-weight: 400;
}

.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.hero-credibility {
  font-family: var(--font-mono);
  font-size: 12.5px;
  color: var(--ink-faint);
  letter-spacing: 0.01em;
  max-width: 520px;
  padding-left: 14px;
  border-left: 2px solid var(--amber);
  line-height: 1.5;
}

/* Hero visual — the two call sheets */
.hero-visual {
  margin-top: 72px;
  padding: 0 28px;
  position: relative;
}

.hero-visual-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  position: relative;
  perspective: 1500px;
}

.hero-sheet {
  width: 100%;
  border-radius: 8px;
  box-shadow:
    0 1px 2px rgba(0, 0, 0, 0.03),
    0 8px 24px rgba(17, 16, 18, 0.08),
    0 40px 80px rgba(17, 16, 18, 0.12);
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  background: white;
}

.sheet-left {
  transform: rotate(-2deg) translateY(12px);
}

.sheet-right {
  transform: rotate(2deg);
  margin-top: 24px;
}

.hero-sheet:hover {
  transform: rotate(0) translateY(-6px) scale(1.02);
  z-index: 2;
}

/* =====================================================
   SECTIONS
   ===================================================== */

section { padding: 96px 0; }

.section-label {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--amber);
  margin-bottom: 18px;
}

.section-label.centered { text-align: center; }

.section-title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(28px, 3.8vw, 44px);
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 28px;
  max-width: 880px;
}

.section-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--amber);
}

.section-title.centered {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 60px;
}

.prose {
  font-size: 18px;
  line-height: 1.65;
  color: var(--ink-soft);
  margin-bottom: 20px;
  max-width: 680px;
}

.prose:last-child { margin-bottom: 0; }

.prose strong { color: var(--ink); font-weight: 600; }

/* =====================================================
   PROBLEM
   ===================================================== */

.problem {
  background: var(--cream);
  border-top: 1px solid var(--rule-soft);
  border-bottom: 1px solid var(--rule-soft);
}

/* =====================================================
   HOW IT WORKS
   ===================================================== */

.how {
  background: var(--paper);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 20px;
}

.step {
  padding-top: 28px;
  border-top: 1px solid var(--ink);
  position: relative;
}

.step::before {
  content: "";
  position: absolute;
  top: -3px;
  left: 0;
  width: 40px;
  height: 5px;
  background: var(--amber);
}

.step-number {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ink-faint);
  letter-spacing: 0.15em;
  margin-bottom: 16px;
}

.step-title {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 24px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
  color: var(--ink);
}

.step-desc {
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-soft);
}

/* =====================================================
   TIME SAVINGS CHART
   ===================================================== */

.chart-section {
  background: var(--paper);
  border-top: 1px solid var(--rule-soft);
}

.chart-header {
  max-width: 780px;
  margin: 0 auto 56px;
  text-align: center;
}

.chart-header .section-label { text-align: center; }

.chart-header .section-title {
  margin-left: auto;
  margin-right: auto;
}

.chart-header .prose {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.chart-wrap {
  max-width: 900px;
  margin: 0 auto 56px;
  padding: 24px;
  background: var(--cream);
  border-radius: var(--radius-lg);
  border: 1px solid var(--rule-soft);
}

.chart-wrap svg {
  width: 100%;
  height: auto;
  display: block;
}

.chart-wrap .bar-label {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 600;
  fill: var(--ink);
  letter-spacing: -0.02em;
}

.chart-wrap .bar-sublabel {
  font-family: var(--font-sans);
  font-size: 13px;
  fill: var(--ink-faint);
  letter-spacing: 0;
}

.chart-wrap .bar-time {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 700;
  fill: var(--cream);
  text-anchor: end;
  letter-spacing: -0.02em;
}

.chart-wrap .dial-time {
  fill: var(--amber);
  text-anchor: start;
}

.chart-wrap .bar-time-sub {
  font-family: var(--font-mono);
  font-size: 10px;
  fill: rgba(250, 247, 242, 0.65);
  text-anchor: end;
  letter-spacing: 0.05em;
}

.chart-wrap .dial-sub {
  fill: var(--ink-faint);
  text-anchor: start;
}

.chart-wrap .bar-fill {
  transform-origin: left center;
  animation: barGrow 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.chart-wrap .bar-fill.manual { animation-delay: 0.15s; }
.chart-wrap .bar-fill.dial   { animation-delay: 0.55s; }

@keyframes barGrow {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}

.chart-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  max-width: 900px;
  margin: 0 auto;
  border: 1px solid var(--rule-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--rule-soft);
}

.chart-stat {
  background: var(--paper);
  padding: 28px 20px;
  text-align: center;
}

.chart-stat-num {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 36px;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--amber);
  margin-bottom: 8px;
  font-feature-settings: "ss01";
}

.chart-stat-num .pct,
.chart-stat-num .unit {
  font-size: 18px;
  color: var(--ink-soft);
  font-weight: 500;
  margin-left: 1px;
}

.chart-stat-label {
  font-size: 13px;
  line-height: 1.4;
  color: var(--ink-soft);
}

/* =====================================================
   SAMPLE SHOWCASE
   ===================================================== */

.sample {
  background: var(--cream);
  border-top: 1px solid var(--rule-soft);
  border-bottom: 1px solid var(--rule-soft);
}

.sample-header { margin-bottom: 56px; max-width: 780px; }

.sample-ctas {
  display: flex;
  gap: 12px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.sample-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.sample-fig {
  background: var(--paper);
  padding: 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--rule-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.sample-fig:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(17, 16, 18, 0.08);
}

.sample-fig img {
  border-radius: 4px;
  border: 1px solid var(--rule-soft);
  margin-bottom: 18px;
}

.sample-fig figcaption {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ink-soft);
}

.sample-fig figcaption strong {
  display: block;
  color: var(--ink);
  font-weight: 600;
  margin-bottom: 4px;
  font-family: var(--font-serif);
  font-size: 16px;
}

/* =====================================================
   PROMISES
   ===================================================== */

.promises {
  background: var(--paper);
}

.promise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--rule-soft);
  border: 1px solid var(--rule-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.promise {
  background: var(--paper);
  padding: 44px 36px;
}

.promise-stat {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 42px;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 6px;
  font-feature-settings: "ss01";
}

.promise-label {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--amber);
  margin-bottom: 20px;
}

.promise-body {
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--ink-soft);
}

/* =====================================================
   PRICING
   ===================================================== */

.pricing {
  background: var(--cream);
  border-top: 1px solid var(--rule-soft);
  border-bottom: 1px solid var(--rule-soft);
}

.pricing-sub {
  text-align: center;
  font-size: 17px;
  color: var(--ink-soft);
  margin-bottom: 56px;
  margin-top: -40px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.price-card {
  background: var(--paper);
  border: 1px solid var(--rule-soft);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  position: relative;
  display: flex;
  flex-direction: column;
}

.price-card.featured {
  border: 1.5px solid var(--ink);
  box-shadow: 0 20px 40px rgba(17, 16, 18, 0.08);
  transform: translateY(-12px);
}

.price-ribbon {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--amber);
  color: var(--cream);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 5px 14px;
  border-radius: 100px;
  white-space: nowrap;
}

.price-tier {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 22px;
  color: var(--ink);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.price-amount {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 54px;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 12px;
}

.price-dollar {
  font-size: 32px;
  vertical-align: top;
  margin-right: 2px;
  font-weight: 500;
  color: var(--ink-mute);
}

.price-period {
  font-size: 18px;
  font-weight: 400;
  color: var(--ink-mute);
  font-family: var(--font-sans);
  letter-spacing: 0;
}

.price-for {
  font-size: 13.5px;
  color: var(--ink-faint);
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--rule-soft);
}

.price-features {
  list-style: none;
  margin-bottom: 32px;
  flex: 1;
}

.price-features li {
  padding: 8px 0;
  font-size: 14.5px;
  color: var(--ink-soft);
  position: relative;
  padding-left: 22px;
  line-height: 1.5;
}

.price-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  width: 11px;
  height: 6px;
  border-left: 1.5px solid var(--amber);
  border-bottom: 1.5px solid var(--amber);
  transform: rotate(-45deg);
}

.price-features li:first-child {
  color: var(--ink);
  font-weight: 500;
}

.pricing-note {
  text-align: center;
  margin-top: 48px;
  padding: 22px;
  background: var(--paper);
  border: 1px dashed var(--rule);
  border-radius: var(--radius);
  font-size: 15px;
  color: var(--ink-soft);
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-note strong { color: var(--ink); font-weight: 600; }

/* =====================================================
   FOUNDERS
   ===================================================== */

.founders {
  background: var(--ink);
  color: var(--cream);
}

.founders .section-label { color: var(--amber-warm); }
.founders .section-title { color: var(--cream); }
.founders .prose { color: rgba(250, 247, 242, 0.78); }
.founders .prose strong { color: var(--cream); }

.founders-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 80px;
  align-items: center;
}

.founders-visual {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.founder-card {
  background: rgba(250, 247, 242, 0.04);
  border: 1px solid rgba(250, 247, 242, 0.12);
  border-radius: var(--radius-lg);
  padding: 22px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: all 0.2s ease;
}

.founder-card:hover {
  background: rgba(250, 247, 242, 0.08);
  border-color: var(--amber);
}

.founder-photo {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid rgba(250, 247, 242, 0.15);
}

.founder-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  font-family: var(--font-serif);
  font-size: 19px;
  font-weight: 600;
  flex-shrink: 0;
  letter-spacing: -0.02em;
}

.founder-name {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 600;
  color: var(--cream);
  letter-spacing: -0.01em;
}

.founder-role {
  font-size: 13px;
  color: rgba(250, 247, 242, 0.6);
  margin-top: 2px;
}

/* =====================================================
   FAQ
   ===================================================== */

.faq {
  background: var(--paper);
}

.faq-item {
  border-bottom: 1px solid var(--rule-soft);
  padding: 22px 0;
}

.faq-item:first-of-type {
  border-top: 1px solid var(--rule-soft);
}

.faq-item summary {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 19px;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  letter-spacing: -0.015em;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: "+";
  font-family: var(--font-sans);
  font-size: 22px;
  font-weight: 300;
  color: var(--amber);
  transition: transform 0.2s ease;
  margin-left: 18px;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-body {
  padding-top: 14px;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 640px;
}

/* =====================================================
   FINAL CTA
   ===================================================== */

.final-cta {
  background: var(--cream);
  text-align: center;
  padding: 120px 0;
  border-top: 1px solid var(--rule-soft);
}

.final-title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(32px, 4.5vw, 56px);
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 22px;
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
}

.final-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--amber);
}

.final-sub {
  font-size: 18px;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 620px;
  margin: 0 auto 36px;
}

.final-sub em {
  font-style: italic;
  color: var(--ink);
  font-weight: 500;
}

.final-reassurance {
  margin-top: 28px;
  font-family: var(--font-mono);
  font-size: 12.5px;
  color: var(--ink-faint);
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  letter-spacing: 0.01em;
  line-height: 1.55;
}

.final-ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* =====================================================
   FOOTER
   ===================================================== */

.footer {
  background: var(--ink);
  color: rgba(250, 247, 242, 0.7);
  padding: 44px 0 36px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 20px;
  color: var(--cream);
}

.footer .logo-mark { background: var(--amber); }

.footer-links {
  display: flex;
  gap: 28px;
  font-size: 14px;
}

.footer-links a { color: rgba(250, 247, 242, 0.7); transition: color 0.15s; }
.footer-links a:hover { color: var(--cream); }

.footer-legal {
  font-family: var(--font-mono);
  font-size: 12px;
  color: rgba(250, 247, 242, 0.45);
}

/* =====================================================
   RESPONSIVE
   ===================================================== */

@media (max-width: 900px) {
  section { padding: 64px 0; }
  .hero { padding: 48px 0 0; }
  .nav-links { display: none; }

  .hero-visual-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .sheet-left, .sheet-right { transform: none; margin-top: 0; }

  .steps, .promise-grid, .sample-grid, .pricing-grid, .founders-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .chart-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .founders-inner { gap: 40px; }

  .price-card.featured { transform: none; }

  .promise-grid {
    border-radius: var(--radius-lg);
    overflow: hidden;
  }
}

@media (max-width: 540px) {
  .container, .container-narrow { padding: 0 20px; }

  .hero-title { font-size: 40px; }
  .hero-sub { font-size: 17px; }
  .section-title { font-size: 26px; }

  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn,
  .final-ctas .btn,
  .sample-ctas .btn { width: 100%; }

  .nav .btn { width: auto; }
  .nav-inner { gap: 12px; }

  .founder-card { flex-direction: row; }

  .price-amount { font-size: 46px; }
}

/* =====================================================
   ENTRANCE ANIMATION
   ===================================================== */

.hero-tag, .hero-title, .hero-sub, .hero-ctas, .hero-credibility {
  opacity: 0;
  animation: rise 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.hero-tag       { animation-delay: 0.05s; }
.hero-title     { animation-delay: 0.15s; }
.hero-sub       { animation-delay: 0.30s; }
.hero-ctas      { animation-delay: 0.45s; }
.hero-credibility { animation-delay: 0.60s; }

.hero-visual {
  opacity: 0;
  animation: rise 1s cubic-bezier(0.2, 0.8, 0.2, 1) 0.7s forwards;
}

@keyframes rise {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}
