/* =========================================================
   padmation. — design system
   ========================================================= */

:root {
  /* Color tokens */
  --ink: #0A1F1B;
  --forest: #0E5A4F;
  --forest-deep: #084037;
  --mint: #B7F0DD;
  --mint-soft: #E0F5EC;
  --lime: #C7F25E;
  --sun: #FFC857;
  --cream: #FAF7F0;
  --cream-warm: #F4EFE2;
  --stone: #6B7672;
  --stone-light: #A8AFAC;
  --pearl: #FFFFFF;
  --line: rgba(10, 31, 27, 0.08);
  --line-strong: rgba(10, 31, 27, 0.16);

  /* Type */
  --font-display: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-serif: 'Instrument Serif', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Layout */
  --maxw: 1200px;
  --maxw-narrow: 880px;
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 28px;

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }

/* =========================================================
   Typography
   ========================================================= */

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.05;
  color: var(--ink);
}

.h-display {
  font-size: clamp(44px, 7vw, 88px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
}

h1 { font-size: clamp(40px, 5.5vw, 68px); letter-spacing: -0.035em; }
h2 { font-size: clamp(32px, 4.2vw, 52px); letter-spacing: -0.03em; }
h3 { font-size: clamp(22px, 2.4vw, 30px); letter-spacing: -0.02em; }
h4 { font-size: 19px; letter-spacing: -0.01em; }

.serif {
  font-family: var(--font-serif);
  font-weight: 400;
  font-style: italic;
  letter-spacing: -0.005em;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--forest);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--lime);
  border-radius: 50%;
  display: inline-block;
}

.lede {
  font-size: clamp(18px, 1.5vw, 22px);
  line-height: 1.55;
  color: var(--stone);
  max-width: 640px;
}

.muted { color: var(--stone); }
.tabular { font-variant-numeric: tabular-nums; }

/* =========================================================
   Layout
   ========================================================= */

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

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

section {
  padding: clamp(64px, 9vw, 120px) 0;
  position: relative;
}

section + section { padding-top: clamp(40px, 6vw, 80px); }

.section-dark {
  background: var(--ink);
  color: var(--cream);
}
.section-dark h1, .section-dark h2, .section-dark h3, .section-dark h4 { color: var(--cream); }
.section-dark .muted { color: rgba(250, 247, 240, 0.65); }
.section-dark .lede { color: rgba(250, 247, 240, 0.75); }
.section-dark .eyebrow { color: var(--lime); }

.section-mint { background: var(--mint-soft); }
.section-cream-warm { background: var(--cream-warm); }

/* =========================================================
   Navigation
   ========================================================= */

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 247, 240, 0.85);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  border-bottom: 1px solid var(--line);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 28px;
}

.logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.04em;
  color: var(--ink);
  display: inline-flex;
  align-items: baseline;
}
.logo-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  background: var(--lime);
  border-radius: 50%;
  margin-left: 2px;
  transform: translateY(0);
  box-shadow: 0 0 0 0 rgba(199, 242, 94, 0.6);
  animation: dot-pulse 2.4s var(--ease) infinite;
}

@keyframes dot-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(199, 242, 94, 0.6); }
  50% { box-shadow: 0 0 0 10px rgba(199, 242, 94, 0); }
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  opacity: 0.78;
  transition: opacity .2s var(--ease);
}
.nav-links a:hover { opacity: 1; }
.nav-links a.active { opacity: 1; color: var(--forest); }

.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-toggle {
  display: none;
  width: 40px; height: 40px;
  align-items: center; justify-content: center;
  border-radius: 10px;
  border: 1px solid var(--line-strong);
}

@media (max-width: 880px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-cta .btn-ghost { display: none; }
}

/* =========================================================
   Buttons
   ========================================================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 22px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.005em;
  transition: transform .2s var(--ease), box-shadow .25s var(--ease), background .2s var(--ease);
  white-space: nowrap;
}

.btn-primary {
  background: var(--ink);
  color: var(--cream);
  box-shadow: 0 1px 0 0 rgba(255,255,255,.06) inset, 0 8px 24px -12px rgba(10, 31, 27, 0.5);
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 1px 0 0 rgba(255,255,255,.06) inset, 0 18px 32px -14px rgba(10, 31, 27, 0.55); }

.btn-lime {
  background: var(--lime);
  color: var(--ink);
}
.btn-lime:hover { background: #bee84a; transform: translateY(-1px); }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line-strong);
}
.btn-ghost:hover { background: var(--pearl); }

.btn-light {
  background: var(--pearl);
  color: var(--ink);
}
.btn-light:hover { transform: translateY(-1px); box-shadow: 0 12px 28px -14px rgba(0,0,0,.2); }

.btn-arrow::after {
  content: "→";
  font-size: 17px;
  transition: transform .25s var(--ease);
}
.btn-arrow:hover::after { transform: translateX(4px); }

.btn-sm { padding: 9px 16px; font-size: 14px; }

/* =========================================================
   Pills, badges, tags
   ========================================================= */

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px 6px 8px;
  background: var(--pearl);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
}
.pill-dot {
  width: 8px; height: 8px;
  background: var(--lime); border-radius: 50%;
}

.tag {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: var(--mint);
  color: var(--forest-deep);
}

/* =========================================================
   Cards
   ========================================================= */

.card {
  background: var(--pearl);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 48px -28px rgba(10, 31, 27, 0.18);
}

.card-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--mint);
  display: inline-flex;
  align-items: center; justify-content: center;
  margin-bottom: 18px;
  color: var(--forest-deep);
}

.grid {
  display: grid;
  gap: 20px;
}

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

@media (max-width: 880px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}
@media (min-width: 881px) and (max-width: 1080px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

/* =========================================================
   Hero
   ========================================================= */

.hero {
  position: relative;
  padding: clamp(64px, 8vw, 100px) 0 clamp(48px, 6vw, 80px);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
}

.hero h1 {
  font-size: clamp(44px, 6vw, 76px);
  letter-spacing: -0.04em;
  line-height: 1;
}

.hero .lede {
  margin-top: 22px;
  font-size: clamp(18px, 1.5vw, 21px);
}

.hero-cta-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.hero-meta {
  display: flex;
  gap: 24px;
  margin-top: 28px;
  flex-wrap: wrap;
  font-size: 14px;
  color: var(--stone);
}
.hero-meta span { display: inline-flex; align-items: center; gap: 6px; }
.hero-meta .check {
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--lime);
  color: var(--ink);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 800;
}

/* Hero device mock */
.device-stack {
  position: relative;
  height: 560px;
}
@media (max-width: 980px) { .device-stack { height: 480px; } }

.phone {
  position: absolute;
  width: 290px;
  border-radius: 36px;
  background: var(--ink);
  padding: 12px;
  box-shadow: 0 40px 80px -30px rgba(10, 31, 27, 0.5), 0 1px 0 0 rgba(255,255,255,.04) inset;
}
.phone-screen {
  background: var(--pearl);
  border-radius: 26px;
  overflow: hidden;
  aspect-ratio: 9 / 19;
  position: relative;
}

.phone-1 {
  top: 40px;
  right: 0;
  z-index: 2;
  transform: rotate(3deg);
}
.phone-2 {
  bottom: 0;
  left: 0;
  z-index: 1;
  transform: rotate(-5deg);
  width: 250px;
  opacity: 0.95;
}

.phone-notch {
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 80px; height: 22px;
  background: var(--ink);
  border-radius: 0 0 14px 14px;
  z-index: 2;
}

.phone-content {
  padding: 36px 16px 16px;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mini-card {
  background: var(--cream);
  border-radius: 12px;
  padding: 12px;
  font-size: 11px;
}
.mini-card-tag {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--forest);
  font-weight: 700;
  margin-bottom: 4px;
}
.mini-card-title { font-weight: 700; font-size: 12px; line-height: 1.2; margin-bottom: 4px; }
.mini-card-meta { color: var(--stone); font-size: 10px; }

.phone-bg-mint { background: var(--mint-soft) !important; }
.phone-row { display: flex; gap: 8px; }
.phone-pill {
  display: inline-block;
  padding: 4px 8px;
  background: var(--mint);
  color: var(--forest-deep);
  font-size: 9px;
  font-weight: 700;
  border-radius: 999px;
  letter-spacing: 0.04em;
}

/* =========================================================
   Floating revenue badge
   ========================================================= */
.float-badge {
  position: absolute;
  background: var(--pearl);
  border-radius: 14px;
  padding: 12px 16px;
  box-shadow: 0 24px 60px -20px rgba(10, 31, 27, 0.3);
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 3;
  animation: float 6s ease-in-out infinite;
}
.float-badge-icon {
  width: 32px; height: 32px;
  background: var(--lime);
  border-radius: 10px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 16px;
}
.float-badge-amount { font-weight: 800; font-size: 16px; letter-spacing: -0.02em; }
.float-badge-label { color: var(--stone); font-size: 11px; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.float-1 { top: 100px; left: -30px; }
.float-2 { bottom: 80px; right: -10px; animation-delay: -3s; }

/* =========================================================
   Stats / numbers row
   ========================================================= */

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  padding: 40px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
@media (max-width: 880px) { .stats { grid-template-columns: repeat(2, 1fr); } }

.stat-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(34px, 4vw, 52px);
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--ink);
  margin-bottom: 6px;
}
.stat-num .serif { font-weight: 400; }
.stat-label {
  font-size: 13px;
  color: var(--stone);
  letter-spacing: 0.02em;
  line-height: 1.4;
}

/* =========================================================
   Pillar / feature row
   ========================================================= */

.pillar {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: clamp(40px, 6vw, 80px) 0;
}
.pillar:nth-child(even) .pillar-visual { order: -1; }
@media (max-width: 980px) {
  .pillar { grid-template-columns: 1fr; gap: 32px; }
  .pillar:nth-child(even) .pillar-visual { order: 0; }
}

.pillar-visual {
  background: var(--pearl);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  padding: 36px;
  min-height: 380px;
  position: relative;
  overflow: hidden;
}

.pillar h2 .serif {
  color: var(--forest);
  display: inline;
}

.pillar-bullets {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.pillar-bullet {
  display: flex;
  gap: 12px;
  font-size: 16px;
  color: var(--ink);
}
.pillar-bullet::before {
  content: "";
  flex-shrink: 0;
  width: 22px; height: 22px;
  background: var(--mint);
  color: var(--forest-deep);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M2.5 6.5L4.5 8.5L9.5 3.5' stroke='%23084037' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

/* =========================================================
   Logo cloud / proof bar
   ========================================================= */

.proof-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 4vw, 56px);
  flex-wrap: wrap;
  padding: 28px 0;
  opacity: 0.6;
}
.proof-bar span {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.02em;
  color: var(--ink);
}

/* =========================================================
   Pricing cards
   ========================================================= */

.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}
@media (max-width: 980px) { .price-grid { grid-template-columns: 1fr; } }

.price-card {
  background: var(--pearl);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform .25s var(--ease), box-shadow .3s var(--ease);
}

.price-card-featured {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
  transform: scale(1.02);
}
.price-card-featured h3 { color: var(--cream); }
.price-card-featured .price-feat-list { color: rgba(250,247,240,.85); }

.price-card-featured::before {
  content: "Most popular";
  position: absolute;
  top: -14px; left: 30px;
  background: var(--lime);
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
}

.price-name {
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--forest);
  margin-bottom: 8px;
}
.price-card-featured .price-name { color: var(--lime); }

.price-amt {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  margin: 8px 0 4px;
}
.price-amt small { font-size: 17px; font-weight: 500; color: var(--stone); }
.price-card-featured .price-amt small { color: rgba(250,247,240,.6); }

.price-tagline {
  color: var(--stone);
  font-size: 14px;
  margin-bottom: 24px;
  min-height: 40px;
}
.price-card-featured .price-tagline { color: rgba(250,247,240,.7); }

.price-feat-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 14px;
  margin: 24px 0;
  color: var(--ink);
  flex-grow: 1;
}
.price-feat-list li {
  display: flex; gap: 10px; align-items: flex-start;
  list-style: none;
}
.price-feat-list li::before {
  content: "✓";
  color: var(--forest);
  font-weight: 800;
}
.price-card-featured .price-feat-list li::before { color: var(--lime); }

.price-card .btn { width: 100%; }

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

.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 20px 0;
}
.faq-item:first-child { border-top: 1px solid var(--line); }

.faq-q {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 4px 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 19px;
  color: var(--ink);
  text-align: left;
  letter-spacing: -0.015em;
}
.faq-q::after {
  content: "+";
  font-size: 26px;
  color: var(--forest);
  font-weight: 400;
  transition: transform .3s var(--ease);
}
.faq-item.open .faq-q::after { content: "−"; }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s var(--ease), margin .35s var(--ease);
  color: var(--stone);
  font-size: 16px;
}
.faq-item.open .faq-a { max-height: 400px; margin-top: 14px; }

/* =========================================================
   CTA band
   ========================================================= */

.cta-band {
  background: var(--ink);
  color: var(--cream);
  border-radius: var(--radius-lg);
  padding: clamp(48px, 7vw, 80px) clamp(32px, 5vw, 64px);
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
@media (max-width: 880px) { .cta-band { grid-template-columns: 1fr; } }

.cta-band::after {
  content: "";
  position: absolute;
  bottom: -120px; right: -120px;
  width: 360px; height: 360px;
  background: radial-gradient(circle, var(--forest) 0%, transparent 70%);
  opacity: 0.6;
  pointer-events: none;
}

.cta-band h2 {
  color: var(--cream);
  font-size: clamp(34px, 4.5vw, 54px);
}
.cta-band .serif { color: var(--lime); }

.cta-band-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  z-index: 2;
  position: relative;
}

/* =========================================================
   Footer
   ========================================================= */

footer {
  background: var(--ink);
  color: rgba(250, 247, 240, 0.7);
  padding: 80px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
@media (max-width: 880px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
}

.footer-grid h5 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 16px;
}

.footer-grid ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-grid a {
  font-size: 14px;
  color: rgba(250, 247, 240, 0.65);
  transition: color .2s var(--ease);
}
.footer-grid a:hover { color: var(--lime); }

.footer-logo .logo { color: var(--cream); margin-bottom: 16px; }
.footer-logo p { font-size: 14px; max-width: 280px; }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
  color: rgba(250, 247, 240, 0.5);
}

/* =========================================================
   Quote / testimonial
   ========================================================= */

.quote {
  background: var(--pearl);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  padding: clamp(32px, 4vw, 56px);
}
.quote-text {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.3;
  color: var(--ink);
  margin-bottom: 24px;
}
.quote-text .serif { color: var(--forest); }

.quote-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.quote-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--mint), var(--lime));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--forest-deep);
}
.quote-name { font-weight: 700; font-size: 15px; }
.quote-role { font-size: 13px; color: var(--stone); }

/* =========================================================
   Calculator (for-hosts)
   ========================================================= */

.calc {
  background: var(--ink);
  color: var(--cream);
  border-radius: var(--radius-lg);
  padding: clamp(32px, 4vw, 56px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
@media (max-width: 880px) { .calc { grid-template-columns: 1fr; } }

.calc h2 { color: var(--cream); }
.calc .serif { color: var(--lime); }

.calc-input {
  margin: 20px 0;
}
.calc-input label {
  display: block;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(250, 247, 240, 0.6);
  margin-bottom: 8px;
}
.calc-input input[type=range] {
  width: 100%;
  -webkit-appearance: none;
  background: transparent;
  margin-top: 8px;
}
.calc-input input[type=range]::-webkit-slider-runnable-track {
  height: 6px;
  background: rgba(255,255,255,.12);
  border-radius: 999px;
}
.calc-input input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px; height: 22px;
  background: var(--lime);
  border-radius: 50%;
  margin-top: -8px;
  cursor: pointer;
  border: 3px solid var(--ink);
  box-shadow: 0 0 0 1px var(--lime);
}
.calc-value {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 32px;
  letter-spacing: -0.03em;
  color: var(--cream);
}

.calc-output {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 28px;
}
.calc-output-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  font-size: 15px;
  color: rgba(250, 247, 240, 0.7);
}
.calc-output-row + .calc-output-row { border-top: 1px solid rgba(255,255,255,0.06); }
.calc-output-row strong { color: var(--cream); font-weight: 700; }
.calc-output-total {
  margin-top: 16px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.12);
  display: flex; justify-content: space-between; align-items: baseline;
}
.calc-output-total span { font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--lime); font-weight: 700; }
.calc-output-total strong {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 44px;
  letter-spacing: -0.04em;
  color: var(--cream);
}

/* =========================================================
   Forms
   ========================================================= */

.form {
  background: var(--pearl);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 3.5vw, 48px);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }

.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.01em;
}
.form-group input,
.form-group select,
.form-group textarea {
  font: inherit;
  padding: 13px 16px;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  background: var(--cream);
  color: var(--ink);
  outline: none;
  transition: border .2s var(--ease), box-shadow .2s var(--ease);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--forest);
  box-shadow: 0 0 0 3px rgba(14, 90, 79, 0.12);
}
.form-group textarea { min-height: 110px; resize: vertical; }

/* =========================================================
   Animations on scroll
   ========================================================= */

.reveal { opacity: 0; transform: translateY(20px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: translateY(0); }

.reveal-stagger > * { opacity: 0; transform: translateY(20px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal-stagger.in > * { opacity: 1; transform: translateY(0); }
.reveal-stagger.in > *:nth-child(1) { transition-delay: 0ms; }
.reveal-stagger.in > *:nth-child(2) { transition-delay: 80ms; }
.reveal-stagger.in > *:nth-child(3) { transition-delay: 160ms; }
.reveal-stagger.in > *:nth-child(4) { transition-delay: 240ms; }
.reveal-stagger.in > *:nth-child(5) { transition-delay: 320ms; }
.reveal-stagger.in > *:nth-child(6) { transition-delay: 400ms; }

/* =========================================================
   Misc
   ========================================================= */

.kicker {
  display: inline-block;
  background: var(--lime);
  color: var(--ink);
  padding: 4px 10px;
  border-radius: 6px;
  font-weight: 700;
  font-size: inherit;
  letter-spacing: -0.02em;
}

.divider-dot {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--stone);
  font-size: 13px;
}
.divider-dot::before, .divider-dot::after {
  content: "";
  height: 1px;
  background: var(--line);
  flex: 1;
}

.split-headline {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.05;
}

.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 28px; }
.mt-4 { margin-top: 44px; }
.mt-5 { margin-top: 64px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 28px; }
.mb-4 { margin-bottom: 44px; }

/* ----- Long-form text (privacy) ----- */
.prose h3 { font-size: 22px; margin: 36px 0 10px; }
.prose p { margin: 0 0 14px; line-height: 1.65; }
.prose a { color: var(--forest); text-decoration: underline; }

/* ----- Demo form error ----- */
.form-error { display: none; margin-top: 12px; padding: 12px 14px; border-radius: 12px; background: #FFF1E6; color: var(--ink); font-size: 14px; }
.form-error a { color: var(--forest); font-weight: 600; text-decoration: underline; }
