:root {
  --bg: #050605;
  --surface: #0a0c0a;
  --surface-2: #101310;
  --line: rgba(255,255,255,.11);
  --line-strong: rgba(153,255,25,.28);
  --text: #f3f5f1;
  --muted: #a4aaa0;
  --green: #99ff19;
  --green-2: #70d900;
  --danger: #ff4e4e;
  --shadow: 0 26px 80px rgba(0,0,0,.42);
  --radius: 22px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background:
    radial-gradient(circle at 75% 9%, rgba(112,217,0,.08), transparent 28%),
    linear-gradient(180deg, #050605 0%, #070807 60%, #050605 100%);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}
body.modal-open { overflow: hidden; }
button, input, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section-pad { padding: 92px 0; }
.page-glow {
  position: fixed; inset: 0; pointer-events: none; z-index: -1;
  background: radial-gradient(520px circle at var(--mouse-x, 76%) var(--mouse-y, 18%), rgba(153,255,25,.075), transparent 45%);
}

.site-header {
  position: sticky; top: 0; z-index: 50;
  border-bottom: 1px solid transparent;
  background: rgba(5,6,5,.68);
  backdrop-filter: blur(18px);
  transition: border-color .25s ease, background .25s ease;
}
.site-header.scrolled { border-color: var(--line); background: rgba(5,6,5,.9); }
.nav-shell { min-height: 74px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 11px; font-size: 1.05rem; font-weight: 680; letter-spacing: -.02em; }
.brand strong { color: var(--green); font-weight: 680; }
.site-nav { display: flex; align-items: center; gap: 30px; color: #dfe3dc; font-size: .92rem; }
.site-nav a { position: relative; }
.site-nav a::after { content:""; position:absolute; left:0; right:100%; bottom:-8px; height:1px; background:var(--green); transition:right .22s ease; }
.site-nav a:hover::after, .site-nav a:focus-visible::after { right:0; }
.nav-cta { justify-self: end; }
.menu-toggle { display:none; background:none; border:0; color:white; width:44px; height:44px; }
.menu-toggle span:not(.sr-only) { display:block; width:22px; height:1px; background:currentColor; margin:6px auto; transition:transform .2s ease; }

.button {
  appearance: none; border: 0; border-radius: 13px; cursor: pointer;
  min-height: 52px; padding: 0 24px; display: inline-flex; align-items: center; justify-content: center; gap: 22px;
  color: #071000; background: var(--green); font-weight: 720; box-shadow: 0 0 0 1px rgba(153,255,25,.6), 0 0 34px rgba(153,255,25,.2);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); background: #adff45; box-shadow: 0 0 0 1px rgba(153,255,25,.8), 0 14px 40px rgba(153,255,25,.22); }
.button:active { transform: translateY(0); }
.button:focus-visible, a:focus-visible, input:focus-visible, select:focus-visible { outline: 2px solid var(--green); outline-offset: 3px; }
.button-small { min-height: 40px; padding: 0 18px; border-radius: 11px; font-size: .88rem; gap: 14px; }
.button-ghost { color: var(--text); background: rgba(255,255,255,.025); border: 1px solid rgba(255,255,255,.25); box-shadow:none; }
.button-ghost:hover { background:rgba(255,255,255,.06); box-shadow:none; }
.play-icon { width:26px; height:26px; display:grid; place-items:center; border:1px solid rgba(255,255,255,.38); border-radius:50%; font-size:.64rem; }

.hero { padding-top: 66px; }
.hero-grid { display: grid; grid-template-columns: .92fr 1.35fr; gap: 58px; align-items: center; }
.hero-copy { max-width: 560px; }
.eyebrow, .kicker { text-transform: uppercase; letter-spacing: .12em; font-size: .73rem; font-weight: 750; color: var(--green); }
.eyebrow { display:inline-flex; align-items:center; gap:10px; border:1px solid var(--line-strong); padding:9px 14px; border-radius:999px; background:rgba(153,255,25,.025); }
.eyebrow span { width:6px; height:6px; border-radius:50%; background:var(--green); box-shadow:0 0 12px var(--green); }
h1, h2, h3, p { margin-top: 0; }
h1 { margin: 25px 0 24px; font-size: clamp(3rem, 5.4vw, 6.15rem); line-height: .96; letter-spacing: -.068em; font-weight: 740; }
h1 em { display:block; color:var(--green); font-style:normal; text-shadow: 0 0 28px rgba(153,255,25,.14); }
.hero-lede { color: var(--muted); font-size: clamp(1rem, 1.4vw, 1.16rem); max-width: 52ch; }
.hero-actions { display:flex; flex-wrap:wrap; gap:16px; margin-top:31px; }
.trust-row { display:flex; flex-wrap:wrap; gap:24px; margin-top:21px; color:#aeb4aa; font-size:.82rem; }
.trust-row span { display:flex; align-items:center; gap:8px; }
.trust-row i { display:grid; place-items:center; width:18px; height:18px; border:1px solid rgba(153,255,25,.66); color:var(--green); border-radius:50%; font-style:normal; font-size:.7rem; }

.product-stage { min-height: 620px; position: relative; display:flex; align-items:center; justify-content:flex-start; }
.orbit { position:absolute; border:1px solid rgba(153,255,25,.09); border-radius:50%; transform:rotate(-24deg); pointer-events:none; }
.orbit-one { width:610px; height:240px; top:66px; left:80px; }
.orbit-two { width:760px; height:340px; bottom:15px; left:-80px; }
.dashboard-card { width:min(680px, 86%); min-height:490px; border:1px solid rgba(255,255,255,.16); border-radius:22px; background:linear-gradient(145deg, rgba(17,20,17,.96), rgba(7,8,7,.98)); box-shadow:var(--shadow), inset 0 1px rgba(255,255,255,.035); display:grid; grid-template-columns:58px 1fr; overflow:hidden; position:relative; z-index:2; }
.dashboard-card::after { content:""; position:absolute; inset:0; pointer-events:none; background:linear-gradient(130deg, rgba(153,255,25,.06), transparent 18%); }
.dashboard-sidebar { border-right:1px solid var(--line); display:flex; flex-direction:column; align-items:center; gap:14px; padding:18px 0; position:relative; z-index:2; }
.dashboard-sidebar img { margin-bottom:8px; }
.dash-nav { width:36px; height:36px; border:0; border-radius:10px; background:transparent; color:#8d938a; cursor:pointer; }
.dash-nav.active { background:rgba(153,255,25,.12); color:var(--green); }
.dashboard-main { padding:24px; position:relative; z-index:2; }
.dashboard-head { display:flex; align-items:center; justify-content:space-between; margin-bottom:18px; }
.dashboard-head h2 { font-size:1.12rem; margin:2px 0 0; letter-spacing:-.03em; }
.micro-label { margin-bottom:0; color:#777e75; font-size:.68rem; text-transform:uppercase; letter-spacing:.13em; }
.date-chip, .live-pill { border:1px solid var(--line); border-radius:999px; color:#aab0a7; background:#0c0f0c; font-size:.72rem; padding:7px 10px; }
.metric-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:10px; }
.metric-grid article { border:1px solid var(--line); background:rgba(255,255,255,.018); border-radius:13px; padding:15px; }
.metric-grid span { display:block; color:#90968d; font-size:.69rem; }
.metric-grid strong { display:block; margin:7px 0 1px; font-size:1.58rem; letter-spacing:-.05em; }
.metric-grid small { color:var(--green); font-size:.62rem; }
.chart-panel { margin-top:14px; border:1px solid var(--line); border-radius:15px; padding:17px 17px 12px; background:linear-gradient(180deg, rgba(255,255,255,.018), transparent); }
.chart-heading { display:flex; align-items:flex-start; justify-content:space-between; }
.chart-heading span { display:block; color:#a3aaa0; font-size:.76rem; }
.chart-heading strong { display:block; font-size:1.35rem; margin-top:3px; }
.live-pill { display:flex!important; align-items:center; gap:7px; padding:5px 9px; }
.live-pill i { width:6px; height:6px; border-radius:50%; background:var(--green); box-shadow:0 0 12px var(--green); }
.chart { width:100%; margin-top:8px; overflow:visible; }
.grid-lines line { stroke:rgba(255,255,255,.07); stroke-width:1; }
.chart-area { fill:url(#chartFill); opacity:0; transition:opacity 1.1s ease .25s; }
.chart-line { fill:none; stroke:var(--green); stroke-width:4; stroke-linecap:round; stroke-linejoin:round; filter:url(#chartGlow); stroke-dasharray:1; stroke-dashoffset:1; transition:stroke-dashoffset 1.7s cubic-bezier(.2,.7,.2,1); }
.chart-points circle { fill:var(--green); opacity:0; transform-box:fill-box; transform-origin:center; transform:scale(.2); transition:opacity .3s ease, transform .35s ease; }
.product-stage.animate .chart-line { stroke-dashoffset:0; }
.product-stage.animate .chart-area { opacity:1; }
.product-stage.animate .chart-points circle { opacity:1; transform:scale(1); }
.product-stage.animate .chart-points circle:nth-child(1){transition-delay:.28s}.product-stage.animate .chart-points circle:nth-child(2){transition-delay:.48s}.product-stage.animate .chart-points circle:nth-child(3){transition-delay:.68s}.product-stage.animate .chart-points circle:nth-child(4){transition-delay:.88s}.product-stage.animate .chart-points circle:nth-child(5){transition-delay:1.08s}.product-stage.animate .chart-points circle:nth-child(6){transition-delay:1.28s}.product-stage.animate .chart-points circle:nth-child(7){transition-delay:1.48s}
.chart-labels { display:flex; justify-content:space-between; color:#6f756c; font-size:.6rem; padding:0 2px; }

.phone { position:absolute; right:-13px; top:54px; z-index:4; width:252px; min-height:490px; padding:54px 16px 18px; border:1px solid rgba(153,255,25,.54); border-radius:38px; background:linear-gradient(180deg,#111411,#080a08); box-shadow:0 0 0 5px rgba(255,255,255,.035), 0 30px 70px rgba(0,0,0,.54), 0 0 42px rgba(153,255,25,.11); overflow:hidden; }
.phone-top { position:absolute; top:17px; left:20px; right:20px; display:flex; justify-content:space-between; color:#d8ddd5; font-size:.67rem; }
.phone-notch { position:absolute; width:84px; height:24px; border-radius:999px; background:#020302; top:12px; left:50%; transform:translateX(-50%); }
.workflow-line { position:absolute; top:89px; bottom:55px; left:32px; width:1px; background:linear-gradient(var(--green), rgba(153,255,25,.08)); }
.phone-step { position:relative; min-height:95px; display:grid; grid-template-columns:38px 1fr; gap:10px; align-items:start; padding:10px 8px 10px 0; opacity:.38; transform:translateX(4px); transition:opacity .35s ease, transform .35s ease, background .35s ease; border-radius:15px; }
.phone-step.active { opacity:1; transform:translateX(0); background:rgba(255,255,255,.025); }
.step-icon { width:30px; height:30px; display:grid; place-items:center; border-radius:50%; border:1px solid rgba(153,255,25,.5); background:#16220d; color:var(--green); box-shadow:0 0 15px rgba(153,255,25,.08); z-index:2; font-size:.68rem; }
.step-icon.missed { color:#ff6464; background:#251010; border-color:rgba(255,78,78,.48); }
.step-icon.reply { color:white; border-color:rgba(255,255,255,.22); background:#1a1c1a; }
.step-icon.success { background:var(--green); color:#071000; font-weight:800; }
.phone-step small { color:#c4c9c1; font-size:.66rem; }
.phone-step strong { display:block; margin-top:3px; font-size:.78rem; }
.phone-step p { color:#8f958c; font-size:.65rem; line-height:1.45; margin:4px 0 0; }

.stats-section { padding:0 0 30px; }
.stats-strip { border:1px solid var(--line); background:rgba(255,255,255,.018); border-radius:20px; display:grid; grid-template-columns:repeat(3,1fr); box-shadow:inset 0 1px rgba(255,255,255,.025); }
.stats-strip article { min-height:128px; display:flex; align-items:center; justify-content:center; gap:22px; padding:24px; }
.stats-strip article + article { border-left:1px solid var(--line); }
.stat-icon { width:57px; height:57px; border:1px solid rgba(153,255,25,.55); border-radius:50%; display:grid; place-items:center; color:var(--green); font-size:1.25rem; box-shadow:0 0 24px rgba(153,255,25,.08); }
.stats-strip strong { display:block; font-size:1.62rem; letter-spacing:-.04em; }
.stats-strip span { display:block; color:#9aa097; font-size:.8rem; }

.section-heading { max-width:720px; margin:0 auto 48px; text-align:center; }
.section-heading h2, .final-card h2 { margin:8px 0 15px; font-size:clamp(2rem,4vw,4.5rem); line-height:1; letter-spacing:-.055em; }
.section-heading > p:last-child, .final-card > p { color:var(--muted); max-width:620px; margin-inline:auto; }
.steps-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:16px; }
.step-card { position:relative; min-height:290px; padding:28px; border:1px solid var(--line); border-radius:var(--radius); background:linear-gradient(145deg, rgba(255,255,255,.025), transparent); overflow:hidden; transition:transform .25s ease, border-color .25s ease; }
.step-card:hover { transform:translateY(-6px); border-color:rgba(153,255,25,.25); }
.step-card::before { content:""; position:absolute; width:180px; height:180px; border-radius:50%; background:rgba(153,255,25,.06); filter:blur(35px); top:-100px; right:-90px; }
.step-number { color:#697066; font-size:.72rem; letter-spacing:.14em; }
.step-card-icon { width:58px; height:58px; margin:46px 0 22px; display:grid; place-items:center; border:1px solid rgba(153,255,25,.4); border-radius:17px; color:var(--green); background:rgba(153,255,25,.05); font-weight:800; }
.step-card h3 { margin-bottom:11px; font-size:1.12rem; }
.step-card p { color:var(--muted); font-size:.92rem; }

.proof { padding-top:30px; }
.proof-card { border:1px solid var(--line); border-radius:28px; min-height:290px; padding:42px; display:grid; grid-template-columns:auto 1fr auto; align-items:center; gap:30px; background:linear-gradient(120deg, rgba(153,255,25,.04), rgba(255,255,255,.015)); }
.quote-mark { color:var(--green); font-size:8rem; line-height:.5; font-family:Georgia,serif; }
blockquote { margin:0; }
blockquote > p { font-size:clamp(1.22rem,2.3vw,2rem); line-height:1.3; letter-spacing:-.03em; max-width:760px; }
blockquote footer { display:flex; align-items:center; gap:13px; margin-top:26px; }
blockquote footer img { border-radius:50%; border:1px solid rgba(153,255,25,.3); }
blockquote footer strong, blockquote footer span { display:block; }
blockquote footer span { color:var(--muted); font-size:.84rem; }
.proof-metric { min-width:195px; padding-left:26px; border-left:1px solid var(--line); }
.proof-metric strong { display:block; color:var(--green); font-size:2rem; letter-spacing:-.04em; }
.proof-metric span { color:var(--muted); font-size:.8rem; }

.final-cta { padding-top:55px; }
.final-card { position:relative; overflow:hidden; border:1px solid rgba(153,255,25,.18); border-radius:30px; text-align:center; padding:90px 28px; background:radial-gradient(circle at 50% 115%, rgba(153,255,25,.12), transparent 42%), #090b09; }
.final-card::before, .final-card::after { content:""; position:absolute; width:440px; height:160px; border:1px solid rgba(153,255,25,.09); border-radius:50%; bottom:-110px; }
.final-card::before { left:-100px; transform:rotate(15deg); }
.final-card::after { right:-100px; transform:rotate(-15deg); }
.final-card .button { margin-top:27px; }
.trust-row.centered { justify-content:center; }

.site-footer { border-top:1px solid var(--line); padding:27px 0 34px; color:#838a80; font-size:.78rem; }
.footer-row { display:grid; grid-template-columns:1fr auto 1fr; align-items:center; gap:20px; }
.footer-row p { margin:0; }
.footer-row p:last-child { justify-self:end; }

.demo-modal { width:min(570px, calc(100% - 30px)); color:var(--text); border:1px solid rgba(153,255,25,.22); border-radius:24px; background:#0a0c0a; padding:34px; box-shadow:0 30px 100px rgba(0,0,0,.7); }
.demo-modal::backdrop { background:rgba(0,0,0,.78); backdrop-filter:blur(7px); }
.modal-close { position:absolute; top:16px; right:16px; border:0; background:#151815; color:#cbd0c8; width:34px; height:34px; border-radius:50%; cursor:pointer; font-size:1.4rem; }
.modal-copy h2 { margin:7px 0 13px; font-size:clamp(2rem,5vw,3.1rem); line-height:1; letter-spacing:-.05em; }
.modal-copy > p:last-child { color:var(--muted); }
.demo-form { display:grid; gap:15px; margin-top:26px; }
.demo-form label { display:grid; gap:7px; color:#d9ddd7; font-size:.8rem; }
.demo-form input, .demo-form select { width:100%; border:1px solid var(--line); border-radius:11px; padding:14px 15px; background:#0e110e; color:var(--text); }
.form-note { min-height:20px; margin:0; color:var(--green); font-size:.82rem; }

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

@media (max-width: 1040px) {
  .hero-grid { grid-template-columns:1fr; }
  .hero-copy { max-width:760px; }
  .product-stage { max-width:850px; width:100%; margin:0 auto; }
  .dashboard-card { width:82%; }
  .phone { right:0; }
}

@media (max-width: 780px) {
  .section-pad { padding:70px 0; }
  .container { width:min(calc(100% - 28px), var(--container)); }
  .nav-shell { grid-template-columns:1fr auto; }
  .menu-toggle { display:block; justify-self:end; }
  .nav-cta { display:none; }
  .site-nav { position:absolute; top:74px; left:14px; right:14px; display:grid; gap:0; padding:12px; border:1px solid var(--line); border-radius:16px; background:#090b09; opacity:0; pointer-events:none; transform:translateY(-8px); transition:.2s ease; box-shadow:var(--shadow); }
  .site-nav.open { opacity:1; pointer-events:auto; transform:translateY(0); }
  .site-nav a { padding:13px 10px; }
  .site-nav a::after { display:none; }
  .hero { padding-top:38px; }
  h1 { font-size:clamp(3.1rem,14vw,5.3rem); }
  .product-stage { min-height:760px; align-items:flex-start; padding-top:20px; }
  .dashboard-card { width:100%; min-height:475px; grid-template-columns:48px 1fr; }
  .dashboard-main { padding:17px; }
  .metric-grid { gap:7px; }
  .metric-grid article { padding:11px; }
  .metric-grid strong { font-size:1.2rem; }
  .phone { width:230px; right:17px; top:390px; min-height:445px; }
  .stats-strip, .steps-grid { grid-template-columns:1fr; }
  .stats-strip article + article { border-left:0; border-top:1px solid var(--line); }
  .proof-card { grid-template-columns:1fr; padding:29px; }
  .quote-mark { font-size:6rem; }
  .proof-metric { border-left:0; border-top:1px solid var(--line); padding:22px 0 0; }
  .footer-row { grid-template-columns:1fr; text-align:center; justify-items:center; }
  .footer-row p:last-child { justify-self:center; }
}

@media (max-width: 520px) {
  .hero-actions { display:grid; }
  .hero-actions .button { width:100%; }
  .trust-row { gap:12px; }
  .product-stage { min-height:720px; }
  .dashboard-sidebar { display:none; }
  .dashboard-card { grid-template-columns:1fr; min-height:405px; }
  .dashboard-main { padding:14px; }
  .dashboard-head { margin-bottom:11px; }
  .metric-grid span, .metric-grid small { font-size:.55rem; }
  .metric-grid strong { font-size:1.05rem; }
  .chart-panel { padding:12px; }
  .phone { width:218px; right:10px; top:340px; transform:scale(.92); transform-origin:top right; }
  .stats-strip article { justify-content:flex-start; }
  .demo-modal { padding:28px 20px 22px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior:auto; }
  *, *::before, *::after { animation-duration:.01ms!important; animation-iteration-count:1!important; transition-duration:.01ms!important; }
  .reveal { opacity:1; transform:none; }
  .chart-line { stroke-dashoffset:0; }
  .chart-area, .chart-points circle { opacity:1; transform:none; }
}

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

#pricing {
  scroll-margin-top: 96px;
}

.pricing {
  position: relative;
  overflow: hidden;
}

.pricing::before {
  content: "";
  position: absolute;
  width: 720px;
  height: 720px;
  left: 50%;
  top: 45%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: rgba(153, 255, 25, 0.045);
  filter: blur(110px);
  pointer-events: none;
}

.pricing .container {
  position: relative;
  z-index: 1;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  max-width: 980px;
  margin: 0 auto;
  align-items: stretch;
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 650px;
  padding: 38px;
  overflow: hidden;

  border: 1px solid var(--line);
  border-radius: 26px;

  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.035),
      rgba(255, 255, 255, 0.008)
    ),
    #080a08;

  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.3),
    inset 0 1px rgba(255, 255, 255, 0.035);

  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.price-card:hover {
  transform: translateY(-6px);
  border-color: rgba(153, 255, 25, 0.3);
}

.price-card-featured {
  border-color: rgba(153, 255, 25, 0.48);

  background:
    radial-gradient(
      circle at 90% 0%,
      rgba(153, 255, 25, 0.14),
      transparent 34%
    ),
    linear-gradient(
      145deg,
      rgba(153, 255, 25, 0.055),
      rgba(255, 255, 255, 0.012)
    ),
    #090c08;

  box-shadow:
    0 28px 90px rgba(0, 0, 0, 0.4),
    0 0 48px rgba(153, 255, 25, 0.08),
    inset 0 1px rgba(255, 255, 255, 0.045);
}

.price-card-featured::before {
  content: "MOST POPULAR";
  position: absolute;
  top: 0;
  right: 34px;

  padding: 8px 13px;

  color: #071000;
  background: var(--green);

  border-radius: 0 0 10px 10px;

  font-size: 0.63rem;
  font-weight: 800;
  letter-spacing: 0.11em;
}

.plan-topline {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;

  color: var(--muted);
  font-size: 0.75rem;
}

.plan-badge {
  display: inline-flex;
  align-items: center;

  padding: 7px 11px;

  border: 1px solid rgba(153, 255, 25, 0.4);
  border-radius: 999px;

  color: var(--green);
  background: rgba(153, 255, 25, 0.06);

  font-size: 0.67rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.plan-badge-muted {
  color: #b4bab1;
  border-color: rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.025);
}

.price-card h3 {
  margin: 0 0 13px;

  font-size: clamp(1.7rem, 3vw, 2.35rem);
  line-height: 1;
  letter-spacing: -0.045em;
}

.plan-copy {
  min-height: 72px;
  margin-bottom: 26px;

  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.65;
}

.price {
  display: flex;
  align-items: flex-end;
  gap: 9px;

  margin: 4px 0 4px;
}

.price span {
  color: var(--text);

  font-size: clamp(3.6rem, 6vw, 5.2rem);
  font-weight: 760;
  line-height: 0.9;
  letter-spacing: -0.075em;
}

.price-card-featured .price span {
  color: var(--green);
  text-shadow: 0 0 34px rgba(153, 255, 25, 0.14);
}

.price small {
  margin-bottom: 8px;

  color: var(--muted);
  font-size: 0.86rem;
}

.setup-price {
  margin: 13px 0 27px;

  color: var(--muted);
  font-size: 0.84rem;
}

.setup-price strong {
  color: var(--text);
}

.price-card-featured .setup-price strong {
  color: var(--green);
}

.feature-list {
  display: grid;
  gap: 14px;

  margin: 0 0 32px;
  padding: 27px 0 0;

  border-top: 1px solid var(--line);

  list-style: none;
}

.feature-list li {
  position: relative;

  padding-left: 29px;

  color: #d5dad2;
  font-size: 0.88rem;
  line-height: 1.45;
}

.feature-list li::before {
  content: "✓";

  position: absolute;
  left: 0;
  top: 0;

  display: grid;
  place-items: center;

  width: 19px;
  height: 19px;

  border: 1px solid rgba(153, 255, 25, 0.5);
  border-radius: 50%;

  color: var(--green);

  font-size: 0.66rem;
  font-weight: 800;
}

.price-button {
  width: 100%;
  margin-top: auto;
}

.price-card:not(.price-card-featured) .price-button {
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.22);
}

.plan-note {
  min-height: 20px;
  margin: 15px 0 0;

  color: #777e75;
  text-align: center;
  font-size: 0.72rem;
}

/* Pricing responsive layout */

@media (max-width: 780px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 580px;
  }

  .price-card {
    min-height: auto;
    padding: 30px;
  }

  .plan-copy {
    min-height: 0;
  }
}

@media (max-width: 520px) {
  .price-card {
    padding: 25px 21px;
    border-radius: 21px;
  }

  .price-card-featured::before {
    right: 20px;
  }

  .plan-topline {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 23px;
  }

  .price span {
    font-size: 3.7rem;
  }
}
