:root {
  color-scheme: dark;
  /* ── Backgrounds ─────────────────────────────────── */
  --bg: #181512;                        /* deeper charcoal (was #2d2926) */
  --bg-surface: #2d2926;                /* mid-surface for reference */
  --panel: rgba(255, 255, 255, 0.047);
  --panel-strong: rgba(255, 255, 255, 0.082);
  --line: rgba(255, 255, 255, 0.10);    /* refined border (was 0.16) */
  /* ── Text ────────────────────────────────────────── */
  --text: #f0f4f1;                      /* warm white (was #fbfff7) */
  --muted: #f0f4f1;
  --soft: rgba(240, 244, 241, 0.78);
  /* ── Emerald (Jamaica green #009639 base) ────────── */
  --mint: #009639;
  --mint-2: #00a844;
  --green: #005c25;                     /* deep forest (was #006b2d) */
  /* ── Champagne gold (muted from Jamaica #FFD100) ─── */
  --blue: #c8a020;                      /* was #ffd100 — now muted champagne */
  --yellow: #c8a020;                    /* was #ffd100 */
  --coral: #c8a020;                     /* was #ffd100 */
  --danger: #e05c5c;
  --max: 1048px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 50% 20%, rgba(0, 150, 57, 0.15), transparent 30rem),
    radial-gradient(circle at 80% 46%, rgba(200, 160, 32, 0.07), transparent 22rem),
    radial-gradient(circle at 20% 72%, rgba(0, 150, 57, 0.07), transparent 18rem),
    linear-gradient(rgba(200, 160, 32, 0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 150, 57, 0.028) 1px, transparent 1px),
    var(--bg);
  background-size: auto, auto, auto, 28px 28px, 28px 28px, auto;
  color: var(--text);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: min(84vw, 1060px) 100%, 100% 590px;
  background-position: center top, center 72px;
  mask-image: linear-gradient(to bottom, black, black 70%, transparent);
}

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

button,
input {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: min(var(--max), calc(100% - 40px));
  margin: 16px auto 0;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  transition: 180ms ease;
}

.site-header.scrolled {
  border-color: rgba(255, 255, 255, 0.09);
  background: rgba(8, 10, 9, 0.88);
  backdrop-filter: blur(22px);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.42), inset 0 1px 0 rgba(255,255,255,0.06);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  font-size: clamp(1rem, 2vw, 1.28rem);
  font-weight: 800;
}

.brand-mark {
  width: 24px;
  height: 22px;
  position: relative;
  display: inline-block;
}

.brand-mark::before,
.brand-mark::after {
  content: "";
  position: absolute;
  width: 13px;
  height: 13px;
  border-left: 4px solid var(--mint);
  border-top: 4px solid var(--mint);
  transform: rotate(45deg);
  border-radius: 3px 0 0 0;
}

.brand-mark::before {
  left: 1px;
  top: 5px;
}

.brand-mark::after {
  left: 9px;
  top: 5px;
  border-left-color: var(--yellow);
  border-top-color: var(--yellow);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  font-size: 0.94rem;
  color: var(--text);
}

.nav a {
  transition: color 160ms ease;
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--mint);
}

.login-button,
.nav-toggle {
  justify-self: end;
}

.login-button {
  padding: 10px 26px;
  border: 1px solid rgba(200, 160, 32, 0.26);
  border-radius: 999px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.04));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.14), 0 8px 24px rgba(0,0,0,0.30);
  transition: border-color 160ms ease, background 160ms ease;
}

.login-button:hover {
  border-color: rgba(200, 160, 32, 0.44);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.07));
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
}

.nav-toggle span {
  display: block;
  width: 16px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.section-shell {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
  column-gap: clamp(28px, 5vw, 62px);
  min-height: calc(100vh - 80px);
  padding: 86px 0 108px;
  align-items: center;
  overflow: hidden;
}

.hero-art {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.orbit {
  position: absolute;
  border: 1px solid rgba(0, 90, 35, 0.48);
  background: radial-gradient(circle at 70% 35%, rgba(0, 72, 28, 0.62), rgba(0, 50, 20, 0.38) 44%, rgba(4, 18, 12, 0.72) 72%);
  box-shadow: inset 0 0 52px rgba(255, 255, 255, 0.05), 0 0 70px rgba(0, 100, 40, 0.14);
}

.orbit-a {
  width: min(72vw, 780px);
  aspect-ratio: 1.9 / 1;
  left: 6%;
  top: 18%;
  border-radius: 999px 120px 999px 80px;
  transform: rotate(31deg);
}

.orbit-b {
  width: min(38vw, 430px);
  aspect-ratio: 1 / 1;
  right: 5%;
  top: 8%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 100, 40, 0.18), transparent 64%);
}

.orbit-c {
  width: min(54vw, 600px);
  height: 68px;
  left: 22%;
  top: 34%;
  transform: rotate(42deg);
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.10), transparent);
  border-color: rgba(255, 255, 255, 0.12);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 700px;
  text-align: left;
}

.pill,
.eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 30px;
  padding: 5px 18px;
  border: 1px solid rgba(0, 150, 57, 0.32);
  border-radius: 999px;
  background: rgba(4, 18, 12, 0.84);
  color: var(--text);
  font-size: 0.86rem;
  font-weight: 750;
  box-shadow: 0 0 18px rgba(0, 150, 57, 0.12);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 700px;
  margin: 26px 0 16px;
  font-size: clamp(3.45rem, 7.2vw, 5.05rem);
  line-height: 1.12;
  letter-spacing: 0;
}

h1 span {
  display: block;
  min-height: 1.12em;
  opacity: 1;
  transition: opacity 180ms ease, transform 180ms ease;
}

h1 span.changing {
  opacity: 0;
  transform: translateY(10px);
}

.hero-content p {
  max-width: 690px;
  margin-bottom: 26px;
  color: var(--text);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  line-height: 1.42;
}

.hero-actions {
  display: flex;
  justify-content: flex-start;
  gap: 12px;
  flex-wrap: wrap;
}

.cta,
.secondary-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 28px;
  border: 1px solid transparent;
  border-radius: 8px;
  color: #041a0d;
  background: linear-gradient(145deg, #00a842, #007830);
  font-weight: 850;
  box-shadow: 0 10px 30px rgba(0, 150, 57, 0.24), inset 0 1px 0 rgba(255,255,255,0.14);
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.cta:hover,
.secondary-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 44px rgba(0, 150, 57, 0.30), inset 0 1px 0 rgba(255,255,255,0.18);
  background: linear-gradient(145deg, #00b848, #009639);
}

.secondary-cta {
  background: transparent;
  border-color: rgba(0, 150, 57, 0.36);
  color: var(--text);
  box-shadow: none;
}

.secondary-cta:hover {
  background: rgba(0, 150, 57, 0.07);
  border-color: rgba(0, 150, 57, 0.54);
  box-shadow: none;
}

.compact-cta {
  min-height: 46px;
  padding-inline: 20px;
}

.hero-dashboard {
  position: relative;
  right: auto;
  bottom: auto;
  z-index: 2;
  justify-self: end;
  width: min(380px, 100%);
  padding: 16px;
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.10), rgba(255,255,255,0.038)),
    rgba(4, 11, 8, 0.84);
  box-shadow:
    0 28px 80px rgba(0,0,0,0.50),
    0 0 0 1px rgba(200,160,32,0.06),
    inset 0 1px 0 rgba(255,255,255,0.12);
  backdrop-filter: blur(18px);
}

.dashboard-topline,
.panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  color: var(--text);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
}

.dashboard-topline strong,
.panel-header strong {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 9px;
  border-radius: 999px;
  background: rgba(0, 150, 57, 0.14);
  color: var(--mint);
  text-transform: none;
}

.dashboard-topline strong::before {
  content: "";
  width: 7px;
  height: 7px;
  margin-right: 7px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 10px var(--mint);
}

.dashboard-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 14px 0;
}

.dashboard-metrics article {
  min-width: 0;
  padding: 12px 10px;
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 8px;
  background: rgba(255,255,255,0.042);
}

.dashboard-metrics span,
.lead-feed small {
  display: block;
  color: var(--text);
  font-size: 0.72rem;
  font-weight: 750;
}

.dashboard-metrics strong {
  display: block;
  margin-top: 4px;
  color: var(--text);
  font-size: 1.3rem;
}

.lead-feed {
  display: grid;
  gap: 8px;
}

.lead-feed div {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 9px;
  min-width: 0;
  padding: 10px;
  border-radius: 8px;
  background: rgba(0,0,0,0.22);
}

.lead-feed p {
  margin: 0;
  color: var(--text);
  font-size: 0.82rem;
}

.status {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 10px currentColor;
}

.status.hot {
  background: var(--mint);
}

.status.warm {
  background: var(--yellow);
}

.status.calm {
  background: var(--blue);
}

.hero-content small {
  margin-top: 12px;
  color: var(--text);
  font-weight: 700;
}

.social-proof {
  position: absolute;
  bottom: 34px;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  width: 100%;
  color: var(--text);
}

.social-proof p {
  margin: 0;
  font-weight: 700;
}

.avatar-stack {
  display: flex;
}

.avatar-stack span,
.avatar {
  display: block;
  width: 32px;
  height: 32px;
  margin-left: -9px;
  border: 2px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 35%, rgba(255,255,255,0.9) 0 16%, transparent 17%),
    radial-gradient(circle at 50% 105%, #243c36 0 36%, transparent 37%),
    linear-gradient(135deg, #f2c1a9, #4ba785);
}

.avatar-stack span:first-child {
  margin-left: 0;
}

.avatar-stack span:nth-child(2) { background-color: #285072; }
.avatar-stack span:nth-child(3) { background-color: #c17f5a; }
.avatar-stack span:nth-child(4) { background-color: #486a46; }
.avatar-stack span:nth-child(5) { background-color: #235966; }

.logo-band {
  display: grid;
  gap: 20px;
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto 86px;
  padding: 26px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--text);
  text-align: center;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: -34px;
  margin-bottom: 86px;
}

.proof-strip article {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255,255,255,0.038);
}

.proof-strip strong {
  display: block;
  margin-bottom: 6px;
  color: var(--mint);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  line-height: 1;
}

.proof-strip span {
  color: var(--muted);
  font-weight: 750;
}

.logo-band p {
  margin: 0;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.logo-row {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 5vw, 54px);
  flex-wrap: wrap;
  color: var(--text);
  font-weight: 800;
}

.split-section,
.features,
.pricing,
.faq,
.integration,
.calculator,
.testimonial,
.booking,
.product-demo,
.operating-system,
.operator-edge,
.revenue-os,
.templates {
  padding: 80px 0;
}

.section-heading {
  display: grid;
  gap: 18px;
  max-width: 720px;
  margin-bottom: 42px;
}

.section-heading h2,
.calculator h2,
.integration h2 {
  margin: 0;
  font-size: clamp(2.2rem, 5vw, 3.65rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.section-heading p,
.integration p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.6;
}

.comparison-grid,
.feature-grid,
.pricing-grid,
.results-panel,
.demo-grid,
.timeline,
.booking-grid,
.edge-grid,
.template-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.metric-card,
.feature-card,
.price-card,
.quote-card,
.conversation-card,
.calculator-panel,
.results-panel article,
.faq details,
.demo-panel,
.timeline article,
.booking-card,
.edge-card,
.template-card,
.revenue-board,
.final-cta {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.025));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06), 0 4px 20px rgba(0,0,0,0.16);
}

.metric-card,
.feature-card,
.price-card,
.quote-card,
.conversation-card,
.calculator-panel,
.results-panel article,
.demo-panel,
.timeline article,
.booking-card,
.edge-card,
.template-card,
.revenue-board {
  padding: 24px;
}

.operator-edge {
  position: relative;
}

.operator-edge::before {
  content: "";
  position: absolute;
  inset: 8% auto auto -120px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 160, 32, 0.07), transparent 68%);
  pointer-events: none;
}

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

.edge-card {
  min-height: 244px;
  position: relative;
  overflow: hidden;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.edge-card::after,
.template-card::after {
  content: "";
  position: absolute;
  inset: auto -25% -48% 30%;
  height: 130px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(200, 160, 32, 0.06), transparent 70%);
  pointer-events: none;
}

.edge-card span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(0, 150, 57, 0.28);
  border-radius: 50%;
  color: var(--mint);
  font-size: 0.82rem;
  font-weight: 950;
  box-shadow: 0 0 10px rgba(0, 150, 57, 0.08);
}

.edge-card h3,
.template-card strong {
  margin: 18px 0 10px;
  display: block;
}

.edge-card p,
.template-card span,
.revenue-copy p,
.recovery-list p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.revenue-os {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 16px;
  align-items: stretch;
}

.revenue-copy {
  display: grid;
  gap: 18px;
  align-content: center;
}

.revenue-copy h2 {
  margin: 0;
  font-size: clamp(2.2rem, 5vw, 3.65rem);
  line-height: 1.08;
}

.revenue-board {
  min-height: 420px;
  display: grid;
  gap: 18px;
  align-content: center;
  background:
    radial-gradient(circle at 72% 30%, rgba(0, 150, 57, 0.10), transparent 17rem),
    linear-gradient(180deg, rgba(255,255,255,0.075), rgba(255,255,255,0.025));
}

.board-header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  color: var(--text);
  font-weight: 850;
}

.board-header strong {
  color: var(--mint);
  text-align: right;
}

.board-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.board-metrics article {
  padding: 16px;
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 8px;
  background: rgba(0,0,0,0.20);
}

.board-metrics span {
  display: block;
  margin-bottom: 8px;
  color: var(--text);
  font-size: 0.78rem;
  font-weight: 800;
}

.board-metrics strong {
  color: var(--text);
  font-size: clamp(1.7rem, 4vw, 2.5rem);
  line-height: 1;
}

.recovery-list {
  display: grid;
  gap: 10px;
}

.recovery-list div {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 11px;
  align-items: center;
  padding: 13px 14px;
  border-radius: 8px;
  background: rgba(255,255,255,0.042);
}

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

.template-card {
  min-height: 154px;
  position: relative;
  overflow: hidden;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.template-card strong {
  margin-top: 0;
  color: var(--text);
  font-size: 1.05rem;
}

.booking {
  display: grid;
  gap: 24px;
  position: relative;
}

.booking::before {
  content: "";
  position: absolute;
  inset: 20% auto auto 58%;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 160, 32, 0.07), transparent 68%);
  pointer-events: none;
}

.booking-copy {
  display: grid;
  gap: 18px;
  max-width: 720px;
}

.booking-copy h2 {
  margin: 0;
  font-size: clamp(2.2rem, 5vw, 3.65rem);
  line-height: 1.08;
}

.booking-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.booking-card {
  min-height: 190px;
  position: relative;
  overflow: hidden;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.booking-card::after {
  content: "";
  position: absolute;
  inset: auto -20% -50% 28%;
  height: 130px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(200, 160, 32, 0.07), transparent 70%);
  pointer-events: none;
}

.booking-card h3 {
  margin: 18px 0 10px;
}

.booking-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.product-demo {
  position: relative;
}

.product-demo::before {
  content: "";
  position: absolute;
  inset: 42px -30px auto auto;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 160, 32, 0.08), transparent 68%);
  pointer-events: none;
}

.demo-grid {
  grid-template-columns: 1.3fr 0.85fr 0.85fr;
  align-items: stretch;
}

.demo-panel {
  position: relative;
  overflow: hidden;
  min-height: 280px;
}

.demo-panel::after {
  content: "";
  position: absolute;
  inset: auto -18% -40% 35%;
  height: 150px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(0, 150, 57, 0.12), transparent 68%);
  pointer-events: none;
}

.main-demo {
  min-height: 440px;
  background:
    radial-gradient(circle at 72% 36%, rgba(0, 150, 57, 0.12), transparent 17rem),
    linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.028));
}

.score-ring {
  display: grid;
  place-items: center;
  align-content: center;
  width: 168px;
  aspect-ratio: 1;
  margin: 38px auto 28px;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, rgba(5, 16, 11, 0.97) 0 56%, transparent 57%),
    conic-gradient(var(--mint) 0 92%, rgba(255,255,255,0.10) 92% 100%);
  box-shadow: 0 0 52px rgba(0, 150, 57, 0.24), inset 0 0 28px rgba(0,0,0,0.50);
}

.score-ring span {
  font-size: 3.8rem;
  line-height: 0.95;
  font-weight: 950;
}

.score-ring small,
.mini-label {
  color: var(--text);
  font-weight: 850;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.insight-list {
  display: grid;
  gap: 10px;
}

.insight-list p {
  margin: 0;
  padding: 13px 14px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  background: rgba(0,0,0,0.20);
  color: var(--muted);
}

.route-map {
  display: grid;
  gap: 12px;
  margin-top: 30px;
}

.route-map span {
  display: block;
  padding: 12px 14px;
  border-radius: 8px;
  background: rgba(255,255,255,0.06);
  color: var(--text);
  font-weight: 800;
}

.route-map i {
  width: 2px;
  height: 20px;
  margin-left: 20px;
  background: linear-gradient(var(--mint), transparent);
}

.variant-bars {
  display: grid;
  gap: 9px;
  margin-top: 34px;
}

.variant-bars p {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin: 0;
  color: var(--muted);
}

.variant-bars div {
  height: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
}

.variant-bars i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--blue), var(--mint));
}

.metric-card > span {
  color: var(--mint);
  font-weight: 900;
}

.metric-card h3,
.feature-card h3,
.price-card h3 {
  margin: 16px 0 12px;
  font-size: 1.08rem;
}

.bar-row p,
.capacity p {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin: 14px 0 8px;
  color: var(--muted);
}

.bar {
  height: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.bar i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: rgba(255,255,255,0.36);
}

.bar-row.accent i {
  background: linear-gradient(90deg, var(--mint), var(--green));
}

.cost-compare,
.capacity {
  display: grid;
  gap: 12px;
}

.cost-compare div {
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
}

.cost-compare small,
.results-panel span,
.price-card small {
  display: block;
  color: var(--text);
  font-weight: 700;
}

.cost-compare strong,
.capacity strong,
.results-panel strong {
  color: var(--mint);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
}

.calculator {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 16px;
}

.calculator-panel {
  display: grid;
  gap: 28px;
}

.controls {
  display: grid;
  gap: 18px;
}

.controls label {
  display: grid;
  gap: 10px;
  color: var(--muted);
  font-weight: 700;
}

input[type="range"] {
  width: 100%;
  accent-color: var(--mint);
}

.results-panel {
  grid-template-columns: 1fr;
}

.results-panel article {
  display: grid;
  align-content: center;
  min-height: 116px;
}

.testimonial,
.integration {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 16px;
  align-items: stretch;
}

.quote-card p {
  color: var(--text);
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  line-height: 1.22;
}

.quote-card > div {
  display: flex;
  gap: 14px;
  align-items: center;
  color: var(--muted);
}

.conversation-card {
  display: grid;
  align-content: center;
  gap: 16px;
  min-height: 430px;
  background:
    radial-gradient(circle at 72% 28%, rgba(0, 150, 57, 0.10), transparent 16rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.025));
}

.message,
.calendar-chip {
  width: fit-content;
  max-width: 78%;
  padding: 14px 16px;
  border-radius: 8px;
  color: var(--text);
  background: rgba(255,255,255,0.07);
}

.message.human {
  justify-self: end;
  color: #041a0d;
  background: linear-gradient(135deg, #00a842, #007830);
}

.calendar-chip {
  justify-self: center;
  border: 1px solid rgba(0, 150, 57, 0.34);
  color: var(--mint);
  font-weight: 850;
  background: rgba(0, 150, 57, 0.07);
}

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

.feature-card {
  min-height: 174px;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.feature-card:hover,
.metric-card:hover,
.demo-panel:hover,
.edge-card:hover,
.booking-card:hover,
.template-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 150, 57, 0.28);
  background: linear-gradient(180deg, rgba(255,255,255,0.088), rgba(255,255,255,0.038));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08), 0 10px 36px rgba(0,0,0,0.26);
}

.feature-card p,
.price-card li,
.faq p {
  color: var(--muted);
  line-height: 1.48;
}

.icon {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(0, 150, 57, 0.82), rgba(0, 80, 28, 0.92));
  color: #0a2015;
  font-weight: 950;
  box-shadow: 0 4px 14px rgba(0, 150, 57, 0.20);
}

.integration-copy {
  display: grid;
  gap: 18px;
  align-content: center;
}

.integration-points {
  display: grid;
  gap: 10px;
  margin: 8px 0;
}

.integration-points article {
  padding: 15px 16px;
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 8px;
  background: rgba(255,255,255,0.038);
}

.integration-points strong,
.sync-card strong {
  display: block;
  margin-bottom: 5px;
  color: var(--text);
}

.integration-points span,
.sync-card small {
  color: var(--muted);
  line-height: 1.45;
}

.integration-visual {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 50%, rgba(0, 100, 40, 0.20), transparent 42%),
    repeating-radial-gradient(circle at 50% 50%, transparent 0 48px, rgba(0, 100, 40, 0.16) 49px 50px);
}

.hub,
.integration-visual span {
  position: absolute;
  display: grid;
  place-items: center;
  border-radius: 50%;
  box-shadow: 0 0 36px rgba(0, 150, 57, 0.28);
}

.timeline {
  grid-template-columns: repeat(4, 1fr);
  position: relative;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 48px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 150, 57, 0.36), transparent);
}

.timeline article {
  position: relative;
  min-height: 230px;
}

.timeline article span {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(0, 150, 57, 0.36);
  border-radius: 50%;
  background: #0a1410;
  color: var(--mint);
  font-weight: 950;
  box-shadow: 0 0 24px rgba(0, 150, 57, 0.10), 0 0 0 1px rgba(200, 160, 32, 0.05);
}

.timeline article p {
  color: var(--muted);
  line-height: 1.5;
}

.hub {
  inset: 50% auto auto 50%;
  width: 96px;
  height: 96px;
  transform: translate(-50%, -50%);
  background: linear-gradient(145deg, #008034, #004820);
  font-weight: 950;
  color: #e8f5ee;
  box-shadow: 0 0 48px rgba(0, 150, 57, 0.32), inset 0 1px 0 rgba(255,255,255,0.14);
}

.hub span,
.hub small {
  display: block;
  line-height: 1;
}

.hub span {
  font-size: 1.42rem;
}

.hub small {
  margin-top: -12px;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  opacity: 0.72;
}

.integration-visual span {
  left: var(--x);
  top: var(--y);
  width: 88px;
  height: 58px;
  background: rgba(14, 20, 17, 0.92);
  color: var(--text);
  font-size: 0.78rem;
  font-weight: 950;
  border-radius: 999px;
  text-align: center;
  border: 1px solid rgba(0, 150, 57, 0.28);
  box-shadow: 0 4px 18px rgba(0,0,0,0.38), 0 0 10px rgba(0, 150, 57, 0.08);
}

.sync-card {
  position: absolute;
  left: 50%;
  bottom: 26px;
  width: min(300px, calc(100% - 42px));
  padding: 16px;
  transform: translateX(-50%);
  border: 1px solid rgba(0, 150, 57, 0.22);
  border-radius: 8px;
  background: rgba(6, 18, 13, 0.86);
  box-shadow: 0 20px 46px rgba(0,0,0,0.36);
  backdrop-filter: blur(14px);
  text-align: center;
}

.pricing .section-heading {
  margin-inline: auto;
  text-align: center;
  justify-items: center;
}

.billing-toggle {
  display: flex;
  width: fit-content;
  margin: -16px auto 26px;
  padding: 5px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.042);
}

.billing-toggle button {
  min-height: 38px;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
}

.billing-toggle button.active {
  color: #041a0d;
  background: linear-gradient(145deg, #00a842, #007830);
  font-weight: 850;
  box-shadow: 0 4px 14px rgba(0, 150, 57, 0.22);
}

.pricing-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.price-card {
  display: grid;
  gap: 18px;
}

.price-card.featured {
  border-color: rgba(0, 150, 57, 0.45);
  background:
    radial-gradient(circle at 50% 0%, rgba(0, 150, 57, 0.07), transparent 70%),
    linear-gradient(180deg, rgba(255,255,255,0.075), rgba(255,255,255,0.025));
  box-shadow:
    0 0 64px rgba(0, 150, 57, 0.12),
    0 0 0 1px rgba(200, 160, 32, 0.09),
    inset 0 1px 0 rgba(255,255,255,0.08);
}

.price-card.starter {
  border-color: rgba(200, 160, 32, 0.28);
  box-shadow: 0 0 0 1px rgba(200, 160, 32, 0.05), inset 0 1px 0 rgba(255,255,255,0.06);
}

.price-card p {
  display: flex;
  align-items: end;
  gap: 7px;
  margin: 0;
}

.price-card p strong {
  font-size: clamp(2.7rem, 7vw, 4.9rem);
  line-height: 0.95;
}

.price-card p span {
  color: var(--text);
  font-weight: 800;
}

.plan-note {
  width: fit-content;
  padding: 7px 11px;
  border: 1px solid rgba(200, 160, 32, 0.22);
  border-radius: 999px;
  background: rgba(200, 160, 32, 0.07);
  color: rgba(230, 200, 120, 0.86);
  font-size: 0.82rem;
  font-weight: 850;
}

.scale-badge {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: center;
  padding: 14px 16px;
  border: 1px solid rgba(0, 150, 57, 0.24);
  border-radius: 8px;
  background:
    radial-gradient(circle at 18% 50%, rgba(0, 150, 57, 0.14), transparent 9rem),
    rgba(255,255,255,0.038);
}

.scale-badge strong {
  color: var(--mint);
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 0.95;
}

.scale-badge span {
  color: var(--text);
  font-weight: 800;
  line-height: 1.3;
}

.price-card ul {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.price-card li::before {
  content: "✓";
  display: inline-grid;
  width: 21px;
  height: 21px;
  margin-right: 10px;
  place-items: center;
  border-radius: 50%;
  color: #041810;
  background: linear-gradient(145deg, var(--mint), var(--green));
  font-size: 0.76rem;
  font-weight: 900;
}

.price-card .cta,
.price-card .secondary-cta {
  margin-top: 8px;
}

.faq .section-heading {
  margin-inline: auto;
  text-align: center;
  justify-items: center;
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 760px;
  margin: 0 auto;
}

.faq details {
  padding: 0;
}

.faq summary {
  min-height: 64px;
  padding: 20px 22px;
  cursor: pointer;
  font-weight: 850;
}

.faq p {
  margin: -4px 22px 22px;
}

.final-cta {
  display: grid;
  justify-items: center;
  gap: 18px;
  margin-top: 40px;
  padding: clamp(34px, 7vw, 72px);
  overflow: hidden;
  position: relative;
  text-align: center;
  background:
    radial-gradient(circle at 18% 12%, rgba(200, 160, 32, 0.07), transparent 22rem),
    radial-gradient(circle at 80% 30%, rgba(0, 150, 57, 0.09), transparent 22rem),
    linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
}

.final-cta::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  pointer-events: none;
  border: 1px solid rgba(0, 150, 57, 0.24);
  box-shadow: inset 0 0 0 1px rgba(200, 160, 32, 0.07);
}

.final-cta h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2.4rem, 6vw, 4.6rem);
  line-height: 1.02;
}

.final-cta p {
  max-width: 580px;
  margin: 0;
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.55;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: min(var(--max), calc(100% - 40px));
  margin: 40px auto 0;
  padding: 28px 0 48px;
  border-top: 1px solid var(--line);
  color: var(--text);
}

.footer p {
  margin: 0;
}

.reveal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 600ms ease, transform 600ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 860px) {
  .site-header {
    grid-template-columns: 1fr auto;
    width: calc(100% - 26px);
    margin-top: 12px;
  }

  .nav-toggle {
    display: block;
  }

  .nav,
  .login-button {
    display: none;
  }

  .nav.open {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 10px);
    display: grid;
    gap: 12px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(8, 10, 9, 0.96);
    backdrop-filter: blur(22px);
  }

  .section-shell,
  .logo-band,
  .footer {
    width: calc(100% - 26px);
  }

  .hero {
    display: flex;
    flex-direction: column;
    min-height: auto;
    padding: 80px 0 48px;
  }

  .hero-content {
    align-items: center;
    text-align: center;
  }

  .hero-actions {
    justify-content: center;
  }

  .orbit-a {
    width: 860px;
    left: -260px;
    top: 20%;
  }

  .social-proof {
    position: relative;
    bottom: auto;
    flex-wrap: wrap;
    margin-top: 24px;
    padding: 0 18px;
  }

  .hero-dashboard {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(360px, calc(100% - 24px));
    margin-top: 26px;
    transform: none;
  }

  .proof-strip {
    grid-template-columns: repeat(2, 1fr);
    margin-top: -14px;
  }

  .comparison-grid,
  .feature-grid,
  .pricing-grid,
  .testimonial,
  .integration,
  .calculator,
  .demo-grid,
  .timeline,
  .booking-grid,
  .edge-grid,
  .revenue-os,
  .template-grid {
    grid-template-columns: 1fr;
  }

  .split-section,
  .features,
  .pricing,
  .faq,
  .integration,
  .calculator,
  .testimonial,
  .booking,
  .product-demo,
  .operating-system,
  .operator-edge,
  .revenue-os,
  .templates {
    padding: 58px 0;
  }

  .integration-visual,
  .conversation-card,
  .main-demo {
    min-height: 340px;
  }

  .demo-panel {
    min-height: auto;
  }

  .timeline::before {
    display: none;
  }

  .edge-card,
  .template-card {
    min-height: auto;
  }

  .revenue-board {
    min-height: auto;
  }
}

@media (max-width: 520px) {
  h1 {
    font-size: clamp(3.05rem, 16vw, 4rem);
  }

  .hero-content p {
    font-size: 1rem;
  }

  .hero {
    min-height: auto;
  }

  .hero-dashboard {
    margin-top: 24px;
  }

  .dashboard-metrics {
    grid-template-columns: 1fr;
  }

  .lead-feed div {
    grid-template-columns: auto 1fr;
  }

  .lead-feed small {
    grid-column: 2;
  }

  .proof-strip {
    grid-template-columns: 1fr;
  }

  .cta,
  .secondary-cta {
    width: 100%;
    padding-inline: 18px;
  }

  .metric-card,
  .feature-card,
  .price-card,
  .quote-card,
  .conversation-card,
  .calculator-panel,
  .results-panel article,
  .demo-panel,
  .timeline article,
  .booking-card,
  .edge-card,
  .template-card,
  .revenue-board {
    padding: 18px;
  }

  .board-header,
  .board-metrics {
    grid-template-columns: 1fr;
  }

  .board-header {
    display: grid;
  }

  .board-header strong {
    text-align: left;
  }

  .footer {
    display: grid;
  }
}
