:root {
  --ink: #0f1c17;
  --muted: #5a6b64;
  --paper: #f2eee4;
  --sand: #e4dbcc;
  --leaf: #1f6b4a;
  --leaf-mid: #2a8f62;
  --leaf-deep: #0c3325;
  --accent: #c45c26;
  --accent-soft: #e8a57a;
  --line: rgba(15, 28, 23, 0.1);
  --glow: rgba(31, 107, 74, 0.22);
  --radius: 20px;
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Sora", system-ui, sans-serif;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --max: 1120px;
  --nav-h: 64px;
}
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(900px 480px at 8% -5%, rgba(196, 92, 38, 0.1), transparent 55%),
    radial-gradient(800px 500px at 95% 8%, var(--glow), transparent 50%),
    linear-gradient(180deg, #f8f4eb 0%, var(--paper) 35%, #eae2d4 100%);
  line-height: 1.55;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--leaf-deep); text-decoration: none; }
a:hover { text-decoration: underline; }
.eyebrow {
  letter-spacing: .14em; text-transform: uppercase; font-size: .72rem;
  font-weight: 600; margin: 0 0 .85rem; opacity: .85;
}
.eyebrow.dark { color: var(--leaf); opacity: 1; }
.eyebrow.light { color: rgba(247, 243, 235, .75); }

.site-header {
  position: sticky; top: 0; z-index: 50;
  padding: 0 1.25rem;
  transition: background .25s ease, box-shadow .25s ease, border-color .25s ease, backdrop-filter .25s ease;
  background: rgba(242, 238, 228, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  position: relative;
  max-width: var(--max); margin: 0 auto;
  padding: .85rem 0;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; min-height: var(--nav-h);
}
body.has-hero-nav .site-header {
  position: fixed; left: 0; right: 0; width: 100%;
  background: transparent; border-bottom-color: transparent;
  backdrop-filter: none; box-shadow: none;
}
body.has-hero-nav .site-header.is-solid {
  background: rgba(242, 238, 228, 0.96);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
  box-shadow: 0 4px 20px rgba(15, 28, 23, 0.08);
}
body.has-hero-nav .site-header:not(.is-solid) .brand,
body.has-hero-nav .site-header:not(.is-solid) .brand-text { color: #f7f3eb; }
body.has-hero-nav .site-header:not(.is-solid) .brand-text em { color: #9fd4b8; }
body.has-hero-nav .site-header:not(.is-solid) .site-nav a {
  color: rgba(247, 243, 235, 0.88);
}
body.has-hero-nav .site-header:not(.is-solid) .site-nav a:hover { color: #fff; }
body.has-hero-nav .site-header:not(.is-solid) .nav-toggle {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(247, 243, 235, 0.35);
  color: #f7f3eb;
}
.brand {
  font-family: var(--font-display); font-weight: 700; font-size: 1.28rem;
  color: var(--ink); text-decoration: none;
  display: inline-flex; align-items: center; gap: .55rem;
}
.brand-logo { display: block; border-radius: 8px; flex-shrink: 0; }
.brand-text em { font-style: normal; color: var(--leaf); }
.brand span { color: var(--leaf); }
.footer-brand .brand { margin-bottom: .5rem; }
.footer-tag { margin: 0 0 .5rem; font-size: .9rem; }

.btn-google {
  width: 100%; margin-bottom: .75rem; gap: .65rem;
  background: #fff; color: #1f1f1f; border: 1px solid var(--line);
}
.btn-google:hover { background: #f8f8f8; }
.google-icon { display: block; flex-shrink: 0; }
.login-or {
  text-align: center; color: var(--muted); font-size: .85rem;
  margin: 0 0 1rem; position: relative;
}

.pricing-grid-eq { align-items: stretch; }
.price-plan {
  position: relative;
  height: 100%;
  min-height: 420px;
}
.pricing-grid-eq .price-plan {
  display: flex; flex-direction: column;
}
.plan-features {
  list-style: none; padding: 0; margin: .25rem 0 1rem; flex: 1;
  display: grid; gap: .45rem;
}
.plan-features li {
  font-size: .88rem; padding-left: 1.2rem; position: relative; color: var(--ink);
}
.plan-features li::before {
  content: ""; position: absolute; left: 0; top: .45rem;
  width: .55rem; height: .55rem; border-radius: 50%; background: var(--leaf);
}
.plan-foot { margin-top: auto; display: grid; gap: .65rem; }
.plan-badge {
  position: absolute; top: .85rem; right: .85rem;
  font-size: .7rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
  background: var(--accent); color: #fff; border-radius: 999px; padding: .25rem .55rem;
}
.price-plan-featured {
  border-color: rgba(31,107,74,.45);
  box-shadow: 0 16px 40px rgba(15, 61, 44, .12);
  background: rgba(255,255,255,.72);
}
.site-nav { display: flex; align-items: center; gap: .85rem; flex-wrap: wrap; }
.site-nav a { font-size: .9rem; color: var(--ink); text-decoration: none; font-weight: 500; }
.nav-toggle { display: none; background: #fff; border: 1px solid var(--line); border-radius: 10px; padding: .4rem .6rem; }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 999px; padding: .72rem 1.2rem; font-weight: 600; border: 0; cursor: pointer;
  font-family: inherit; text-decoration: none !important; transition: transform .2s var(--ease), background .2s;
}
.btn:hover { transform: translateY(-1px); }
.btn-solid { background: var(--leaf); color: #f7f3eb; }
.btn-solid:hover { background: var(--leaf-deep); color: #f7f3eb; }
.btn-ghost { background: transparent; border: 1px solid var(--line); color: var(--ink); }
.btn-ghost-light { background: transparent; border: 1px solid rgba(247, 243, 235, .4); color: #f7f3eb; }
.btn-accent { background: var(--accent); color: #f7f3eb; }
.btn-accent:hover { background: #a84a1c; color: #f7f3eb; }

/* Header CTAs: off-white labels on green when solid */
.site-header.is-solid .btn-ghost,
body:not(.has-hero-nav) .site-header .btn-ghost {
  background: var(--leaf-deep);
  border-color: transparent;
  color: #f7f3eb;
}
.site-header.is-solid .btn-ghost:hover,
body:not(.has-hero-nav) .site-header .btn-ghost:hover {
  background: #08241a;
  color: #f7f3eb;
}
body.has-hero-nav .site-header:not(.is-solid) .btn-ghost {
  background: transparent;
  border-color: rgba(247, 243, 235, 0.4);
  color: #f7f3eb;
}
body.has-hero-nav .site-header:not(.is-solid) .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}
.site-header .btn-solid {
  color: #f7f3eb;
}

/* Hero */
.hero {
  position: relative; min-height: min(100vh, 920px);
  padding: 3.5rem 1.25rem 3.5rem; overflow: hidden;
}
body.has-hero-nav .hero {
  padding-top: calc(var(--nav-h) + 2.5rem);
}
.hero-bg { position: absolute; inset: 0; z-index: 0; background: linear-gradient(145deg, #0c3325 0%, #154a36 42%, #1a2e28 100%); }
.hero-mesh {
  position: absolute; inset: 0; opacity: .35;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse at 40% 40%, #000 20%, transparent 75%);
}
.hero-orb {
  position: absolute; border-radius: 50%; filter: blur(40px); opacity: .55;
  animation: orbFloat 10s ease-in-out infinite;
}
.hero-orb-a { width: 280px; height: 280px; background: #2a8f62; top: 12%; right: 8%; }
.hero-orb-b { width: 200px; height: 200px; background: #c45c26; bottom: 10%; left: 5%; animation-delay: -4s; opacity: .35; }
@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(12px, -18px) scale(1.05); }
}
.hero-grid {
  position: relative; z-index: 1; max-width: var(--max); margin: 0 auto;
  display: grid; gap: 2.5rem; align-items: center;
}
@media (min-width: 960px) {
  .hero-grid { grid-template-columns: 1.05fr .95fr; gap: 2.75rem; min-height: 70vh; }
}
.hero-content { color: #f7f3eb; }
.hero h1 {
  font-family: var(--font-display); font-size: clamp(2.35rem, 6.5vw, 3.85rem);
  line-height: 1.05; margin: 0 0 1rem; letter-spacing: -0.03em;
}
.hero-lede { font-size: 1.08rem; max-width: 34rem; opacity: .92; margin: 0 0 1.5rem; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: .7rem; margin-bottom: 1.5rem; }
.hero-proof {
  display: flex; flex-wrap: wrap; gap: .55rem; list-style: none; padding: 0; margin: 0;
}
.hero-proof li {
  font-size: .78rem; padding: .35rem .7rem; border-radius: 999px;
  border: 1px solid rgba(255,255,255,.2); opacity: .9;
}

.hero-terminal {
  background: rgba(8, 20, 16, .72); border: 1px solid rgba(255,255,255,.1);
  border-radius: 18px; padding: 1rem; color: #e8efe9;
  box-shadow: 0 40px 80px rgba(0,0,0,.35); backdrop-filter: blur(8px);
  animation: terminalIn 1s var(--ease) both;
}
@keyframes terminalIn {
  from { opacity: 0; transform: translateY(24px) scale(.98); }
  to { opacity: 1; transform: none; }
}
.term-bar { display: flex; align-items: center; gap: .4rem; margin-bottom: 1rem; font-size: .75rem; opacity: .7; }
.term-bar span { width: 9px; height: 9px; border-radius: 50%; background: #3d5248; }
.term-bar span:nth-child(1) { background: #e07a5f; }
.term-bar span:nth-child(2) { background: #e9c46a; }
.term-bar span:nth-child(3) { background: #2a9d8f; }
.term-bar em { margin-left: .5rem; font-style: normal; }
.term-stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: .6rem; margin-bottom: 1rem;
}
.term-stats div {
  background: rgba(42, 143, 98, .15); border-radius: 12px; padding: .65rem .7rem;
}
.term-stats small { display: block; font-size: .68rem; opacity: .7; }
.term-stats strong { font-size: 1.25rem; font-family: var(--font-display); }
.term-feed { display: grid; gap: .45rem; min-height: 160px; }
.term-line {
  font-size: .82rem; padding: .55rem .7rem; border-radius: 10px;
  background: rgba(255,255,255,.04);
  opacity: 0; transform: translateX(8px);
  animation: feedIn .6s var(--ease) forwards;
}
.term-line.ok { background: rgba(42, 157, 143, .12); }
.term-line.call { background: rgba(233, 196, 106, .1); }
@keyframes feedIn { to { opacity: 1; transform: none; } }

.section { padding: 4.5rem 1.25rem; max-width: var(--max); margin: 0 auto; }
.section-head { margin-bottom: 2rem; }
.section h2 {
  font-family: var(--font-display); font-size: clamp(1.85rem, 4vw, 2.75rem);
  margin: 0 0 .75rem; letter-spacing: -0.025em;
}
.section .lede { color: var(--muted); max-width: 40rem; margin: 0; font-size: 1.02rem; }

/* Why */
.why-grid { display: grid; gap: 1rem; }
@media (min-width: 800px) { .why-grid { grid-template-columns: repeat(3, 1fr); } }
.why-card {
  background: rgba(255,255,255,.5); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.4rem 1.25rem;
  transition: transform .35s var(--ease), box-shadow .35s;
}
.why-card:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(15, 61, 44, .1); }
.why-metric {
  display: inline-block; font-family: var(--font-display); font-size: 1.5rem;
  color: var(--leaf); margin-bottom: .5rem;
}
.why-card h3 { font-family: var(--font-display); font-size: 1.2rem; margin: 0 0 .45rem; }
.why-card p { margin: 0; color: var(--muted); font-size: .95rem; }

/* Demo */
.demo-stage {
  border-radius: calc(var(--radius) + 4px); overflow: hidden;
  background: #101a16; color: #e8efe9; padding: 1.15rem 1.15rem 1.35rem;
  box-shadow: 0 30px 60px rgba(15, 61, 44, 0.18);
}
.demo-chrome { display: flex; align-items: center; gap: .4rem; margin-bottom: .9rem; }
.demo-chrome span { width: 10px; height: 10px; border-radius: 50%; background: #3d5248; }
.demo-chrome em { margin-left: .5rem; font-size: .75rem; opacity: .55; font-style: normal; }
.demo-tabs { display: flex; flex-wrap: wrap; gap: .4rem; margin-bottom: 1rem; }
.demo-tabs button {
  border: 1px solid rgba(255,255,255,.12); background: transparent; color: #c5d4cc;
  border-radius: 999px; padding: .4rem .85rem; font: inherit; font-size: .82rem; cursor: pointer;
}
.demo-tabs button.is-active { background: var(--leaf-mid); color: #fff; border-color: transparent; }
.demo-panel { display: none; min-height: 220px; animation: panelFade .45s var(--ease); }
.demo-panel.is-active { display: block; }
@keyframes panelFade { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }
.lead-pill {
  display: flex; justify-content: space-between; gap: .5rem; align-items: center;
  padding: .6rem .75rem; margin-bottom: .5rem; border-radius: 12px;
  background: rgba(47, 143, 102, 0.14); animation: rise 4.8s ease-in-out infinite;
}
.lead-pill:nth-child(2) { animation-delay: .5s; }
.lead-pill:nth-child(3) { animation-delay: 1s; }
.lead-pill:nth-child(4) { animation-delay: 1.5s; }
@keyframes rise {
  0%, 100% { transform: translateY(0); opacity: .75; }
  45% { transform: translateY(-3px); opacity: 1; }
}
.stage-q { color: #7dcea0; }
.stage-c { color: #85c1e9; }
.stage-p { color: #f5b041; }
.stage-n { color: #aeb6bf; }
.wa-bubble {
  max-width: 88%; padding: .6rem .8rem; border-radius: 14px; margin: .45rem 0;
  background: #1f6b4a; animation: pop .85s var(--ease) both; font-size: .92rem;
}
.wa-bubble.in { background: #24352e; margin-left: auto; }
@keyframes pop { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.flow-nodes { display: flex; flex-wrap: wrap; gap: .45rem; align-items: center; padding: 1rem 0; }
.flow-node {
  padding: .5rem .8rem; border-radius: 999px; border: 1px solid rgba(255,255,255,.15);
  animation: pulseNode 2.6s ease-in-out infinite; font-size: .85rem;
}
.flow-node:nth-child(3) { animation-delay: .35s; }
.flow-node:nth-child(5) { animation-delay: .7s; }
.flow-node:nth-child(7) { animation-delay: 1.05s; }
.flow-node:nth-child(9) { animation-delay: 1.4s; }
.flow-arrow { opacity: .45; }
@keyframes pulseNode {
  0%, 100% { background: transparent; }
  50% { background: rgba(196, 92, 38, 0.35); }
}
.dial-wrap { display: flex; gap: 1rem; align-items: center; padding: 1.25rem 0; }
.dial {
  width: 84px; height: 84px; border-radius: 50%; flex-shrink: 0;
  border: 2px solid rgba(255,255,255,.28); display: grid; place-items: center;
  font-weight: 700; animation: dialPulse 1.8s ease-in-out infinite;
}
@keyframes dialPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(47,143,102,.45); }
  70% { box-shadow: 0 0 0 16px rgba(47,143,102,0); }
}
.dial-meta { display: grid; gap: .25rem; font-size: .9rem; }
.pulse-dot { color: #7dcea0; }
.demo-caption { margin: 1rem 0 0; font-size: .85rem; opacity: .65; }

/* Deep features */
.feature-row {
  display: grid; gap: 1.75rem; align-items: center;
  padding: 2rem 0; border-top: 1px solid var(--line);
}
@media (min-width: 860px) {
  .feature-row { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .feature-row.reverse .feature-copy { order: 2; }
  .feature-row.reverse .feature-visual { order: 1; }
}
.feature-copy h3 { font-family: var(--font-display); font-size: 1.55rem; margin: 0 0 .6rem; }
.feature-copy > p { color: var(--muted); margin: 0 0 1rem; }
.check-list { list-style: none; padding: 0; margin: 0; display: grid; gap: .45rem; }
.check-list li {
  padding-left: 1.4rem; position: relative; font-size: .95rem;
}
.check-list li::before {
  content: ""; position: absolute; left: 0; top: .45rem;
  width: .7rem; height: .7rem; border-radius: 50%;
  background: var(--leaf); box-shadow: 0 0 0 3px rgba(31,107,74,.18);
}
.feature-visual {
  min-height: 200px; border-radius: var(--radius);
  background: linear-gradient(160deg, #123528, #0f1c17);
  color: #e8efe9; display: grid; place-items: center; padding: 1.5rem;
  position: relative; overflow: hidden;
}
.chip-stream { display: flex; flex-wrap: wrap; gap: .5rem; justify-content: center; margin-bottom: 1rem; }
.chip {
  padding: .4rem .75rem; border-radius: 999px; font-size: .8rem;
  background: rgba(255,255,255,.08); animation: chipDrop 3.2s ease-in-out infinite;
}
.chip.c2 { animation-delay: .4s; }
.chip.c3 { animation-delay: .8s; }
.chip.c4 { animation-delay: 1.2s; }
@keyframes chipDrop {
  0%, 100% { transform: translateY(0); opacity: .7; }
  50% { transform: translateY(6px); opacity: 1; }
}
.funnel-sink {
  padding: .75rem 1.1rem; border-radius: 12px; background: rgba(42,143,98,.25);
  border: 1px solid rgba(125,206,160,.3); font-weight: 600;
}
.pipe-steps { display: flex; flex-wrap: wrap; gap: .4rem; justify-content: center; }
.pipe-steps span {
  padding: .45rem .7rem; border-radius: 10px; background: rgba(255,255,255,.06);
  font-size: .8rem; opacity: .7;
}
.pipe-steps .on {
  background: var(--leaf-mid); opacity: 1; animation: pipeGlow 2s ease-in-out infinite;
}
@keyframes pipeGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(42,143,98,.4); }
  50% { box-shadow: 0 0 0 10px rgba(42,143,98,0); }
}
.mini-wa { width: min(100%, 260px); }
.mini-wa .mb {
  padding: .55rem .7rem; border-radius: 12px; margin: .4rem 0; background: #1f6b4a; font-size: .85rem;
}
.mini-wa .mb.in { background: #24352e; margin-left: 1.5rem; }
.fv-call { position: relative; }
.ring {
  position: absolute; width: 120px; height: 120px; border-radius: 50%;
  border: 2px solid rgba(42,143,98,.35); animation: rings 2.4s ease-out infinite;
}
.ring.delay { animation-delay: 1.2s; }
@keyframes rings {
  from { transform: scale(.4); opacity: .9; }
  to { transform: scale(1.4); opacity: 0; }
}
.call-center {
  position: relative; z-index: 1; width: 72px; height: 72px; border-radius: 50%;
  background: var(--leaf); display: grid; place-items: center; font-weight: 700;
}
.auto-orbit {
  display: grid; grid-template-columns: 1fr 1fr; gap: .6rem; width: 100%; max-width: 240px;
}
.auto-orbit span {
  text-align: center; padding: .7rem; border-radius: 12px;
  background: rgba(255,255,255,.06); font-size: .85rem;
  animation: orbitPulse 2.8s ease-in-out infinite;
}
.auto-orbit span:nth-child(2) { animation-delay: .4s; }
.auto-orbit span:nth-child(3) { animation-delay: .8s; }
.auto-orbit span:nth-child(4) { animation-delay: 1.2s; }
@keyframes orbitPulse {
  0%, 100% { background: rgba(255,255,255,.06); }
  50% { background: rgba(196, 92, 38, .3); }
}
.avatars { display: flex; justify-content: center; }
.avatars i {
  width: 42px; height: 42px; border-radius: 50%; margin-left: -10px;
  border: 2px solid #123528; background: linear-gradient(135deg, #2a8f62, #0c3325);
  animation: avBounce 2.5s ease-in-out infinite;
}
.avatars i:nth-child(2) { animation-delay: .2s; background: linear-gradient(135deg, #c45c26, #7a3514); }
.avatars i:nth-child(3) { animation-delay: .4s; background: linear-gradient(135deg, #3d7ea6, #1a3a4d); }
.avatars i:nth-child(4) { animation-delay: .6s; background: linear-gradient(135deg, #d4a373, #7a5530); }
@keyframes avBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}
.team-label { margin-top: 1rem; font-size: .9rem; opacity: .8; text-align: center; }

.outcomes {
  display: grid; gap: 1.5rem;
  background: linear-gradient(135deg, var(--leaf-deep), #1a4d38 55%, #245c44);
  color: #f3efe6; border-radius: calc(var(--radius) + 6px); padding: 2.25rem 1.5rem;
}
@media (min-width: 800px) { .outcomes { grid-template-columns: 1.2fr 1fr; align-items: center; } }
.outcomes h2 { color: #fff; margin: 0 0 .75rem; font-family: var(--font-display); font-size: clamp(1.7rem, 3vw, 2.3rem); }
.outcomes p { margin: 0; opacity: .9; }
.outcome-stats { display: grid; gap: .85rem; }
.outcome-stats div {
  background: rgba(255,255,255,.08); border-radius: 14px; padding: .9rem 1rem;
}
.outcome-stats strong { display: block; font-family: var(--font-display); font-size: 1.2rem; }
.outcome-stats span { font-size: .85rem; opacity: .75; }

.how-steps {
  list-style: none; padding: 0; margin: 0; display: grid; gap: 1rem;
}
@media (min-width: 800px) { .how-steps { grid-template-columns: repeat(3, 1fr); } }
.how-steps li {
  background: rgba(255,255,255,.48); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.25rem;
}
.how-steps strong { display: block; font-family: var(--font-display); font-size: 1.15rem; margin-bottom: .4rem; }
.how-steps p { margin: 0; color: var(--muted); font-size: .95rem; }

.tenure-form { margin-bottom: 1.25rem; display: flex; gap: .6rem; align-items: center; flex-wrap: wrap; }
.tenure-form .form-control { max-width: 12rem; display: inline-block; }
.pricing-save-banner {
  margin: 0;
  font-weight: 600;
  font-size: .95rem;
  color: var(--leaf);
}
.price-was {
  text-decoration: line-through;
  color: var(--muted);
  font-weight: 500;
  margin-right: .25rem;
}
.price-now { color: var(--leaf); }
.pricing-grid { display: grid; gap: 1rem; }
@media (min-width: 720px) { .pricing-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1050px) { .pricing-grid { grid-template-columns: repeat(4, 1fr); } }
.price-plan {
  border: 1px solid var(--line); border-radius: var(--radius); padding: 1.3rem;
  background: rgba(255,255,255,0.52); display: flex; flex-direction: column; gap: .55rem;
  transition: transform .3s var(--ease), border-color .3s;
}
.price-plan:hover { transform: translateY(-3px); border-color: rgba(31,107,74,.35); }
.price-plan h3 { font-family: var(--font-display); margin: 0; font-size: 1.2rem; }
.price-plan .amount { font-size: 1.75rem; font-weight: 700; }
.price-plan .amount .price-was {
  font-size: 1.05rem;
  font-weight: 600;
  margin-right: .35rem;
}
.price-plan .amount .price-now { font-size: 1.75rem; font-weight: 700; }
.price-plan .amount span { font-size: .85rem; font-weight: 500; color: var(--muted); }
.buy-price-monthly {
  font-size: 1.35rem;
  font-weight: 700;
  margin: 0 0 .5rem;
}
.buy-price-monthly .price-was { font-size: 1rem; }
.buy-price-monthly .price-now { font-size: 1.35rem; }
.plan-desc { color: var(--muted); font-size: .88rem; margin: 0; min-height: 2.6em; }
.plan-bits { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: .35rem; }
.plan-bits li {
  font-size: .72rem; padding: .25rem .5rem; border-radius: 999px;
  background: rgba(31,107,74,.1); color: var(--leaf-deep);
}
.plan-total { font-size: .88rem; margin: 0; }
.pricing-note { margin-top: 1.25rem; color: var(--muted); font-size: .9rem; }

.faq-list { display: grid; gap: .65rem; max-width: 720px; }
.faq-list details {
  background: rgba(255,255,255,.5); border: 1px solid var(--line);
  border-radius: 14px; padding: .9rem 1.1rem;
}
.faq-list summary { cursor: pointer; font-weight: 600; font-family: var(--font-display); }
.faq-list p { margin: .65rem 0 0; color: var(--muted); font-size: .95rem; }

.reseller-strip {
  margin: 1rem auto 0; max-width: var(--max); padding: 1.5rem 1.35rem;
  border-radius: var(--radius); background: var(--sand);
  display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; justify-content: space-between;
}
.reseller-strip strong { font-family: var(--font-display); font-size: 1.3rem; display: block; }
.reseller-strip p { margin: .35rem 0 0; color: var(--muted); max-width: 36rem; }
.reseller-ctas { display: flex; flex-wrap: wrap; gap: .5rem; }

.cta-final { text-align: center; padding-bottom: 5rem; }
.cta-final h2 {
  font-family: var(--font-display); font-size: clamp(1.9rem, 4vw, 2.8rem); margin: 0 0 .75rem;
}
.cta-final p { color: var(--muted); max-width: 32rem; margin: 0 auto 1.25rem; }

.site-footer {
  margin-top: 2rem; padding: 2rem 1.25rem; border-top: 1px solid var(--line);
  display: flex; flex-wrap: wrap; gap: 1.5rem; justify-content: space-between;
  color: var(--muted); font-size: .92rem;
}
.footer-links { display: flex; flex-wrap: wrap; gap: .85rem; }
.flash { padding: .75rem 1.25rem; text-align: center; }
.flash-success { background: #d8f0e3; }
.flash-error { background: #f8d9d0; }
.panel {
  max-width: 560px; margin: 2rem auto; padding: 1.5rem;
  background: rgba(255,255,255,.55); border: 1px solid var(--line); border-radius: var(--radius);
}
.form-group { margin-bottom: 1rem; }
.form-group label { display: block; font-size: .85rem; margin-bottom: .3rem; font-weight: 600; }
.form-control {
  width: 100%; padding: .7rem .8rem; border-radius: 12px; border: 1px solid var(--line);
  background: #fff; font: inherit;
}
.table { width: 100%; border-collapse: collapse; font-size: .92rem; }
.table th, .table td { text-align: left; padding: .55rem .4rem; border-bottom: 1px solid var(--line); }

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

@media (max-width: 820px) {
  .nav-toggle { display: inline-flex; }
  .site-nav {
    display: none; position: absolute; right: 0; top: calc(100% - .35rem);
    flex-direction: column; align-items: stretch; background: var(--paper);
    border: 1px solid var(--line); border-radius: 14px; padding: .75rem; min-width: 210px;
    box-shadow: 0 16px 40px rgba(0,0,0,.08);
  }
  .site-nav.open { display: flex; }
  body.has-hero-nav .site-header:not(.is-solid) .site-nav.open {
    background: rgba(12, 51, 37, 0.96);
    border-color: rgba(255, 255, 255, 0.12);
  }
  body.has-hero-nav .site-header:not(.is-solid) .site-nav.open a { color: #f7f3eb; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}
