:root {
  --bg: #05070a;
  --bg-2: #080b11;
  --surface: rgba(255,255,255,0.045);
  --surface-2: rgba(255,255,255,0.075);
  --line: rgba(255,255,255,0.09);
  --line-soft: rgba(255,255,255,0.055);
  --text: #f5f7fb;
  --muted: #9aa7b8;
  --soft: #d7dde8;
  --green: #25d366;
  --green-2: #12a852;
  --green-soft: rgba(37, 211, 102, 0.12);
  --red: #f05b63;
  --shadow: 0 24px 80px rgba(0,0,0,0.45);
  --radius: 18px;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scrollbar-color: rgba(37,211,102,.35) #05070a; }
html::-webkit-scrollbar, body::-webkit-scrollbar { width: 8px; }
html::-webkit-scrollbar-track, body::-webkit-scrollbar-track { background: #05070a; }
html::-webkit-scrollbar-thumb, body::-webkit-scrollbar-thumb { background: rgba(37,211,102,.32); border-radius: 999px; }
body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 10%, rgba(37,211,102,0.16), transparent 32%),
    radial-gradient(circle at 92% 4%, rgba(37,211,102,0.10), transparent 26%),
    linear-gradient(180deg, #06080d 0%, #05070a 42%, #070a0f 100%);
  min-height: 100vh;
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 18% 22%, rgba(37,211,102,.10), transparent 30%),
    radial-gradient(circle at 76% 14%, rgba(63,130,255,.075), transparent 28%),
    radial-gradient(circle at 1px 1px, rgba(225,255,236,.105) 1.15px, transparent 1.9px);
  background-size: auto, auto, 26px 26px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.92), rgba(0,0,0,0.18));
  z-index: -1;
  opacity: .9;
}
body::after {
  content: "";
  position: fixed;
  inset: -18% -18%;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 22% 18%, rgba(37,211,102,.16), rgba(37,211,102,.06) 34%, transparent 66%),
    radial-gradient(ellipse at 84% 10%, rgba(63,130,255,.08), transparent 58%);
  opacity: .58;
  z-index: -1;
  animation: auroraDrift 18s ease-in-out infinite;
}
.ambient-orbs {
  position: fixed;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: -2;
}
.ambient-orbs span {
  position: absolute;
  width: clamp(220px, 32vw, 460px);
  aspect-ratio: 1;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(37,211,102,.2), rgba(37,211,102,.06) 38%, transparent 68%);
  filter: blur(8px);
  opacity: .72;
  animation: orbFloat 18s ease-in-out infinite;
}
.ambient-orbs span:first-child { left: -120px; top: 12%; }
.ambient-orbs span:nth-child(2) { right: -160px; top: 36%; animation-delay: -6s; animation-duration: 22s; }
.ambient-orbs span:nth-child(3) { left: 28%; bottom: -190px; animation-delay: -11s; animation-duration: 25s; }
@keyframes auroraDrift { 0%, 100% { transform: translate3d(-2%, 0, 0) scale(1); opacity: .42; } 50% { transform: translate3d(2%, -1%, 0) scale(1.04); opacity: .64; } }
@keyframes orbFloat { 0%, 100% { transform: translate3d(0,0,0) scale(1); } 45% { transform: translate3d(42px,-38px,0) scale(1.08); } 72% { transform: translate3d(-24px,28px,0) scale(.94); } }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }

.page-shell { min-height: 100vh; }
.section-pad { padding: 92px max(22px, calc((100vw - 1180px) / 2)); scroll-margin-top: 92px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 16px max(22px, calc((100vw - 1180px) / 2));
  backdrop-filter: blur(22px);
  background: rgba(5,7,10,0.76);
  border-bottom: 1px solid var(--line-soft);
}
.brand { display: inline-flex; align-items: center; gap: 11px; font-weight: 900; letter-spacing: -0.04em; font-size: 20px; }
.brand span span { color: var(--green); }
.brand-mark {
  width: 38px; height: 38px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 0 14px rgba(37,211,102,0.25));
}
.desktop-nav { display: flex; justify-content: center; gap: 24px; color: #c7d1df; font-size: 14px; font-weight: 800; }
.desktop-nav a:hover { color: var(--text); }
.header-actions, .hero-actions { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.hero-actions.center { justify-content: center; }

.btn {
  position: relative;
  overflow: hidden;
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 42px; padding: 0 18px;
  border-radius: 999px; border: 1px solid var(--line);
  font-weight: 850; font-size: 14px;
  transition: transform .18s ease, background .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0 35%, rgba(255,255,255,.28) 48%, transparent 62% 100%);
  transform: translateX(-130%);
  transition: transform .65s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:hover::after { transform: translateX(130%); }
.btn-primary { background: linear-gradient(135deg, var(--green), #16b85b); color: #031006; border-color: rgba(37,211,102,.65); box-shadow: 0 12px 35px rgba(37,211,102,.23); }
.btn-primary:hover { box-shadow: 0 16px 48px rgba(37,211,102,.34); }
.btn-ghost { background: rgba(255,255,255,0.035); color: var(--soft); }
.btn-lg { min-height: 52px; padding: 0 24px; font-size: 15px; }

.hero {
  min-height: calc(100vh - 118px);
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(420px, .97fr);
  align-items: center;
  gap: 48px;
  padding-top: 68px;
}
.eyebrow, .label {
  display: inline-flex; align-items: center; gap: 9px;
  color: var(--green); font-size: 12px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase;
}
.eyebrow span { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 18px var(--green); }
h1, h2, h3, p { margin-top: 0; }
h1 {
  margin: 18px 0 20px;
  font-size: clamp(38px, 5.45vw, 66px);
  line-height: .95;
  letter-spacing: -0.07em;
  max-width: 820px;
}
.hero-copy > p, .section-head p, .final-cta p {
  color: var(--muted);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.55;
  max-width: 720px;
}
.hero-offer {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 2px 0 18px;
  padding: 10px 14px;
  border: 1px solid rgba(37,211,102,.26);
  border-radius: 999px;
  color: #dfffe9;
  background: rgba(37,211,102,.09);
  font-size: 13px;
  font-weight: 850;
}
.hero-offer::before {
  content: "✓";
  color: var(--green);
  font-weight: 950;
}
.hero-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.hero-badges span {
  padding: 10px 13px; border: 1px solid var(--line); border-radius: 999px;
  background: rgba(255,255,255,0.035); color: var(--soft); font-size: 13px; font-weight: 750;
}
.hero-badges span:nth-child(2) { border-color: rgba(37,211,102,.35); background: var(--green-soft); color: #dfffe9; }

.hero-visual { position: relative; }
.hero-visual::before {
  content: ""; position: absolute; inset: 9% -4% -6% 12%;
  background: radial-gradient(circle, rgba(37,211,102,.28), transparent 62%);
  filter: blur(35px); z-index: -1;
}
.browser-card {
  position: relative;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(16,21,30,.92), rgba(7,10,15,.94));
  border-radius: 24px;
  box-shadow: var(--shadow), inset 0 1px rgba(255,255,255,.08);
  overflow: hidden;
  animation: previewFloat 7s ease-in-out infinite;
}
.browser-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0 24%, rgba(37,211,102,.12) 42%, transparent 60% 100%);
  transform: translateX(-100%);
  animation: previewScan 6.5s ease-in-out infinite;
  pointer-events: none;
}
@keyframes previewFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@keyframes previewScan { 0%, 45%, 100% { transform: translateX(-110%); opacity: 0; } 62% { opacity: .9; } 84% { transform: translateX(110%); opacity: 0; } }
@keyframes flowPulse { 0%, 100% { box-shadow: inset 0 0 0 rgba(37,211,102,0); } 50% { box-shadow: inset 0 0 26px rgba(37,211,102,.12); } }
.browser-top { height: 46px; display: flex; align-items: center; gap: 8px; padding: 0 16px; border-bottom: 1px solid var(--line-soft); color: var(--muted); font-size: 12px; }
.browser-top span { width: 10px; height: 10px; border-radius: 50%; background: #27313e; }
.browser-top span:first-child { background: #f05b63; } .browser-top span:nth-child(2) { background: #f4b740; } .browser-top span:nth-child(3) { background: var(--green); }
.browser-top strong { margin-left: auto; font-weight: 700; color: #aeb8c7; }
.dashboard-preview { display: grid; grid-template-columns: 130px 1fr; min-height: 530px; }
.dashboard-preview aside { border-right: 1px solid var(--line-soft); padding: 18px 14px; display: grid; align-content: start; gap: 12px; color: #aeb8c7; font-size: 12px; }
.dashboard-preview aside b { padding: 10px; border-radius: 10px; background: rgba(255,255,255,.035); }
.dashboard-preview aside b:nth-child(2) { color: var(--green); background: var(--green-soft); }
.mini-logo { width: 34px; height: 34px; object-fit: contain; display: block; margin-bottom: 8px; filter: drop-shadow(0 0 12px rgba(37,211,102,.25)); }
.dash-main { padding: 18px; display: grid; gap: 16px; align-content: start; }
.dash-head { display: flex; justify-content: space-between; gap: 14px; align-items: start; }
.dash-head small, .stat-grid small { color: var(--muted); font-weight: 700; }
.dash-head strong { display: block; font-size: 24px; margin-top: 4px; letter-spacing: -.04em; }
.online-pill { padding: 8px 10px; border-radius: 999px; background: var(--green-soft); color: var(--green); font-size: 12px; font-weight: 900; border: 1px solid rgba(37,211,102,.28); }
.stat-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; }
.stat-grid article, .flow-card, .client-list { border: 1px solid var(--line-soft); background: rgba(255,255,255,.035); border-radius: 16px; padding: 14px; min-width: 0; }
.stat-grid strong {
  display: block;
  margin: 8px 0;
  font-size: clamp(18px, 2.2vw, 22px);
  letter-spacing: -0.055em;
  line-height: 1.05;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
  transform-origin: left center;
}
.stat-grid strong.counter-tick {
  animation: counterSoftTick .52s cubic-bezier(.2,.8,.2,1);
}
@keyframes counterSoftTick {
  0% { opacity: .42; transform: translateY(8px) scale(.985); filter: blur(1.6px); }
  48% { opacity: 1; transform: translateY(-1px) scale(1.018); filter: blur(0); color: #ffffff; text-shadow: 0 0 16px rgba(37,211,102,.22); }
  100% { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); text-shadow: none; }
}
.stat-grid span { color: var(--green); font-size: 12px; font-weight: 800; }
.flow-card { display: grid; gap: 10px; }
.flow-step { padding: 12px; border-radius: 12px; background: rgba(255,255,255,.035); color: var(--muted); font-weight: 800; font-size: 13px; }
.flow-step.active { background: var(--green-soft); color: #dfffe9; border: 1px solid rgba(37,211,102,.22); animation: flowPulse 2.7s ease-in-out infinite; }
.flow-step.active:nth-child(2) { animation-delay: .45s; }
.flow-step.active:nth-child(3) { animation-delay: .9s; }
.client-list { display: grid; gap: 10px; }
.client-list div { display: grid; grid-template-columns: 10px 1fr auto; gap: 10px; align-items: center; padding: 9px; border-radius: 10px; background: rgba(5,7,10,.5); }
.client-list span { width: 9px; height: 9px; border-radius: 50%; background: var(--green); } .client-list em { color: var(--muted); font-style: normal; font-size: 12px; }

.section-head { text-align: center; max-width: 860px; margin: 0 auto 38px; }
.section-head.narrow { max-width: 720px; }
.section-head h2, .trust-card h2, .final-cta h2 { font-size: clamp(32px, 4.4vw, 54px); line-height: 1.02; letter-spacing: -0.06em; margin: 12px 0 14px; }
.section-head p { margin-left: auto; margin-right: auto; font-size: 18px; }
.pain-section { padding-top: 36px; }
.pain-grid, .features-grid, .help-grid, .faq-grid { display: grid; gap: 14px; }
.pain-grid { grid-template-columns: repeat(3, 1fr); }
.pain-grid article, .help-grid article {
  border: 1px solid var(--line); border-radius: 16px; padding: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,.052), rgba(255,255,255,.025));
  color: var(--soft); font-weight: 850;
}
.pain-grid article::before { content: "•"; color: var(--green); margin-right: 8px; }
.features-grid { grid-template-columns: repeat(3, 1fr); }
.feature-card {
  position: relative;
  overflow: hidden;
  min-height: 238px;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.025));
  box-shadow: inset 0 1px rgba(255,255,255,.06);
  transition: transform .24s ease, border-color .24s ease, background .24s ease, box-shadow .24s ease;
}
.feature-card::before, .screen-card::before, .trust-card::before, .pricing-card::before, .plan-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(360px circle at var(--mx, 50%) var(--my, 0%), rgba(37,211,102,.16), transparent 44%);
  opacity: 0;
  transition: opacity .24s ease;
  pointer-events: none;
}
.feature-card:hover, .screen-card:hover, .trust-card:hover, .pricing-card:hover, .plan-card:hover {
  transform: translateY(-4px);
  border-color: rgba(37,211,102,.28);
  box-shadow: 0 18px 55px rgba(0,0,0,.28), inset 0 1px rgba(255,255,255,.08);
}
.feature-card:hover::before, .screen-card:hover::before, .trust-card:hover::before, .pricing-card:hover::before, .plan-card:hover::before { opacity: 1; }
.feature-card span { color: var(--green); font-weight: 950; font-size: 12px; letter-spacing: .12em; }
.feature-card h3 { font-size: 24px; letter-spacing: -.04em; margin: 20px 0 12px; }
.feature-card p { color: var(--muted); line-height: 1.55; margin: 0; }
.feature-card.featured { border-color: rgba(37,211,102,.36); background: linear-gradient(180deg, rgba(37,211,102,.14), rgba(255,255,255,.028)); }

.showcase { padding-bottom: 54px; background: linear-gradient(180deg, rgba(255,255,255,.025), rgba(37,211,102,.035), rgba(255,255,255,.01)); }
.showcase-grid { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); gap: 18px; }
.showcase-grid-real { align-items: stretch; }
.screen-card { position: relative; overflow: hidden; border: 1px solid var(--line); border-radius: 22px; padding: 12px; background: rgba(255,255,255,.04); transition: transform .24s ease, border-color .24s ease, box-shadow .24s ease; }
.showcase-dashboard { grid-column: 1 / -1; }
.showcase-mobile { grid-column: span 7; }
.showcase-payments { grid-column: span 5; }
.showcase-messaging { grid-column: span 5; }
.showcase-history { grid-column: span 7; }
.screen-card h3 { margin: 14px 8px 5px; font-size: 19px; }
.screen-card p { margin: 0 8px 6px; color: var(--muted); line-height: 1.4; font-size: 14px; }
.demo-frame {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 16 / 9;
  min-height: 0;
  border: 1px solid var(--line-soft);
  background:
    radial-gradient(circle at 16% 10%, rgba(37,211,102,.16), transparent 32%),
    linear-gradient(180deg, #121823, #070a0f);
  box-shadow: inset 0 1px rgba(255,255,255,.08), 0 18px 46px rgba(0,0,0,.22);
}
.showcase-dashboard .demo-frame {
  display: block;
  aspect-ratio: auto;
}
.showcase-dashboard .demo-frame img {
  width: 100%;
  height: auto;
}
.showcase-history .demo-frame {
  display: block;
  aspect-ratio: auto;
}
.showcase-history .demo-frame img {
  width: 100%;
  height: auto;
}
.demo-frame img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: contain;
}
.mac-frame { border-radius: 17px; padding-top: 38px; }
.mac-frame img { min-height: 0; }
.media-frame { border-radius: 17px; padding: 0; }
.media-frame img { object-fit: cover; min-height: 0; }
.portrait-frame {
  aspect-ratio: 4 / 3;
  background:
    radial-gradient(circle at 50% 24%, rgba(37,211,102,.16), transparent 38%),
    linear-gradient(145deg, #101722, #070a0f 68%);
}
.portrait-frame img {
  width: auto;
  max-width: 100%;
  height: 100%;
  margin: 0 auto;
  object-fit: contain;
}
.safari-bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0;
  height: 38px;
  padding: 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
  background: linear-gradient(180deg, rgba(28,34,44,.96), rgba(18,23,32,.96));
  color: #aeb8c7;
  font-size: 11px;
  font-weight: 800;
}
.safari-lights { display: flex; align-items: center; gap: 7px; height: 100%; padding: 0 12px; }
.safari-bar-dashboard .safari-lights {
  flex: 0 0 12.6%;
  border-right: 1px solid rgba(255,255,255,.08);
  justify-content: center;
  padding: 0;
}
.safari-bar span { width: 9px; height: 9px; border-radius: 999px; background: #27313e; flex: 0 0 auto; }
.safari-bar span:first-child { background: #f05b63; }
.safari-bar span:nth-child(2) { background: #f4b740; }
.safari-bar span:nth-child(3) { background: var(--green); }
.safari-bar strong {
  min-width: 0;
  margin-left: auto;
  padding: 0 12px;
  overflow: hidden;
  color: #b9c4d2;
  font-size: 10px;
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.phone-frame {
  max-width: 180px;
  min-height: 300px;
  margin: 0 auto;
  padding: 12px 8px;
  border-radius: 34px;
  border-color: rgba(255,255,255,.16);
  background: linear-gradient(180deg, #1b222d, #070a0f);
  box-shadow: inset 0 0 0 5px rgba(255,255,255,.045), 0 18px 46px rgba(0,0,0,.28);
}
.phone-frame::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 50%;
  z-index: 2;
  width: 54px;
  height: 6px;
  border-radius: 999px;
  background: rgba(255,255,255,.18);
  transform: translateX(-50%);
}
.phone-frame img { border-radius: 24px; object-fit: cover; }

.steps { display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; }
.steps article { border: 1px solid var(--line); border-radius: 18px; padding: 18px; background: rgba(255,255,255,.035); }
.steps b { display: grid; place-items: center; width: 34px; height: 34px; border-radius: 12px; background: var(--green-soft); color: var(--green); }
.steps h3 { margin: 18px 0 8px; font-size: 17px; } .steps p { color: var(--muted); line-height: 1.45; margin: 0; font-size: 14px; }

.trust-card, .pricing-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(37,211,102,.28); border-radius: 28px;
  background: linear-gradient(135deg, rgba(37,211,102,.14), rgba(255,255,255,.035));
  padding: clamp(24px, 4vw, 44px); box-shadow: var(--shadow);
  transition: transform .24s ease, border-color .24s ease, box-shadow .24s ease;
}
.trust-card { display: grid; grid-template-columns: 1.1fr .9fr; gap: 28px; align-items: center; }
.trust-card ul, .pricing-card ul { margin: 0; padding: 0; list-style: none; display: grid; gap: 12px; }
.trust-card li, .pricing-card li { color: var(--soft); font-weight: 750; }
.trust-card li::before, .pricing-card li::before { content: "✓"; color: var(--green); margin-right: 10px; }

.pricing-card { max-width: 860px; margin: 0 auto; display: grid; gap: 24px; }
.pricing-main span { color: var(--green); font-size: 12px; font-weight: 950; letter-spacing: .14em; }
.pricing-main h3 { font-size: 34px; margin: 10px 0; letter-spacing: -.05em; }
.pricing-main p { color: var(--muted); line-height: 1.55; }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}
.plan-card {
  position: relative;
  overflow: hidden;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 28px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.062), rgba(255,255,255,.025)),
    radial-gradient(460px circle at 50% 0%, rgba(37,211,102,.08), transparent 58%);
  box-shadow: inset 0 1px rgba(255,255,255,.06), 0 18px 60px rgba(0,0,0,.24);
  transition: transform .24s ease, border-color .24s ease, box-shadow .24s ease;
}
.plan-card.plan-popular {
  border-color: rgba(37,211,102,.58);
  background:
    linear-gradient(180deg, rgba(37,211,102,.18), rgba(255,255,255,.032)),
    radial-gradient(520px circle at 50% 0%, rgba(37,211,102,.24), transparent 60%);
  box-shadow: 0 24px 80px rgba(37,211,102,.16), inset 0 1px rgba(255,255,255,.08);
  transform: translateY(-10px);
}
.plan-card.plan-popular:hover { transform: translateY(-14px); }
.popular-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 7px 11px;
  border-radius: 999px;
  background: var(--green);
  color: #031006;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .04em;
  text-transform: uppercase;
  box-shadow: 0 10px 26px rgba(37,211,102,.28);
}
.plan-kicker {
  color: var(--green);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.plan-card h3 {
  margin: 0;
  font-size: clamp(25px, 2.7vw, 34px);
  letter-spacing: -.055em;
}
.plan-copy {
  min-height: 68px;
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}
.plan-price {
  display: flex;
  align-items: flex-start;
  gap: 4px;
  color: var(--text);
  font-size: clamp(43px, 5vw, 58px);
  font-weight: 950;
  letter-spacing: -.07em;
  line-height: .9;
  white-space: nowrap;
}
.plan-price small {
  margin-top: 7px;
  font-size: .36em;
  letter-spacing: 0;
  color: var(--green);
}
.plan-price span {
  align-self: flex-end;
  margin-bottom: 5px;
  font-size: .38em;
  letter-spacing: -.03em;
  color: var(--soft);
}
.plan-note {
  margin: -8px 0 0;
  min-height: 22px;
  color: var(--muted);
  font-weight: 800;
}
.plan-note del { color: #7f8b99; margin-right: 4px; }
.plan-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 11px;
}
.plan-card li {
  color: var(--soft);
  font-weight: 760;
  line-height: 1.35;
}
.plan-card li::before {
  content: "✓";
  color: var(--green);
  margin-right: 9px;
}
.plan-card .btn {
  width: 100%;
  margin-top: auto;
}
.help-grid { grid-template-columns: repeat(3, 1fr); }
.faq-grid {
  grid-template-columns: repeat(2, 1fr);
  align-items: start;
}
.faq-head {
  margin-bottom: 30px;
}
.label.faq-title {
  display: flex;
  justify-content: center;
  width: 100%;
  font-size: clamp(30px, 4.5vw, 54px);
  line-height: 1.02;
  letter-spacing: -0.055em;
  text-transform: none;
}
details {
  align-self: start;
  height: fit-content;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,.035);
  padding: 18px;
}
summary { cursor: pointer; font-weight: 850; }
details p { color: var(--muted); line-height: 1.5; margin: 12px 0 0; }
.reveal-ready {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .65s ease, transform .65s ease;
  transition-delay: var(--reveal-delay, 0ms);
}
.reveal-ready.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.final-cta { text-align: center; }
.final-cta p { margin-left: auto; margin-right: auto; }
.site-footer { padding: 34px max(22px, calc((100vw - 1180px) / 2)); border-top: 1px solid var(--line-soft); display: grid; grid-template-columns: auto 1fr auto; gap: 22px; align-items: center; color: var(--muted); }
.site-footer nav { display: flex; gap: 16px; font-size: 14px; font-weight: 750; color: var(--soft); }
.site-footer p { margin: 0; text-align: center; }
.mobile-topic-nav { display: none; }
.back-to-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 45;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(37,211,102,.28);
  background: rgba(5, 12, 8, .72);
  color: var(--green);
  display: grid;
  place-items: center;
  font-size: 18px;
  font-weight: 900;
  opacity: .78;
  box-shadow: 0 10px 30px rgba(0,0,0,.32);
  backdrop-filter: blur(14px);
  animation: backTopFloat 2.6s ease-in-out infinite;
  transition: opacity .18s ease, transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.back-to-top::after {
  content: "";
  position: absolute;
  inset: -5px;
  border-radius: inherit;
  border: 1px solid rgba(37,211,102,.12);
  opacity: 0;
  transform: scale(.82);
  animation: backTopPulse 2.6s ease-out infinite;
  pointer-events: none;
}
.back-to-top:hover {
  opacity: 1;
  transform: translateY(-4px);
  border-color: rgba(37,211,102,.52);
  box-shadow: 0 12px 28px rgba(37,211,102,.12);
}
@keyframes backTopFloat {
  0%, 100% { transform: translateY(0); }
  45% { transform: translateY(-5px); }
}
@keyframes backTopPulse {
  0%, 100% { opacity: 0; transform: scale(.82); }
  45% { opacity: .7; transform: scale(1); }
  70% { opacity: 0; transform: scale(1.12); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
  .reveal-ready { opacity: 1; transform: none; }
  .stat-grid strong.counter-tick { animation: none !important; }
  .back-to-top, .back-to-top::after, .mobile-topic-toggle { animation: none !important; }
}

@media (max-width: 1024px) {
  .desktop-nav { display: none; }
  .site-header { grid-template-columns: 1fr auto; }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-visual { order: 2; }
  .dashboard-preview { grid-template-columns: 1fr; min-height: auto; }
  .dashboard-preview aside { display: none; }
  .pain-grid, .features-grid, .showcase-grid, .steps, .help-grid, .faq-grid, .pricing-grid { grid-template-columns: 1fr 1fr; }
  .showcase-grid .screen-card { grid-column: auto; }
  .showcase-grid .showcase-dashboard { grid-column: 1 / -1; }
  .trust-card { grid-template-columns: 1fr; }
  .site-footer { grid-template-columns: 1fr; text-align: center; }
  .site-footer .brand, .site-footer nav { justify-content: center; }
}

@media (max-width: 820px) {
  html, body, .page-shell { width: 100%; max-width: 100%; overflow-x: hidden; }
  .section-pad { padding: 58px 18px; }
  .site-header { padding: 12px 16px; gap: 12px; }
  .brand { font-size: 18px; }
  .brand-mark { width: 34px; height: 34px; }
  .header-actions { gap: 8px; flex-wrap: nowrap; }
  .header-actions .btn { min-height: 36px; padding: 0 12px; font-size: 13px; }
  .header-actions .btn-ghost {
    display: inline-flex;
    background: transparent;
    border-color: rgba(255,255,255,.16);
    color: var(--soft);
  }

  .hero {
    padding-top: 38px;
    gap: 30px;
    align-items: stretch;
  }
  .hero-copy,
  .hero-visual,
  .section-head,
  .section-head.narrow {
    width: 100%;
    max-width: none;
  }
  .eyebrow, .label { font-size: 11px; line-height: 1.35; }
  h1 { font-size: clamp(32px, 9.2vw, 48px); line-height: 1.03; letter-spacing: -0.055em; }
  .section-head { text-align: left; margin-bottom: 26px; }
  .section-head h2, .trust-card h2, .final-cta h2 { font-size: clamp(30px, 9vw, 42px); line-height: 1.05; }
  .hero-copy > p, .section-head p, .final-cta p { font-size: 16px; max-width: none; }

  .hero-actions { align-items: stretch; width: 100%; }
  .hero-actions .btn { flex: 1 1 100%; width: 100%; }
  .hero-badges {
    display: none;
  }

  .browser-card { border-radius: 18px; }
  .browser-top strong { display: none; }
  .dash-main { padding: 12px; }
  .dash-head { display: grid; }
  .dash-head strong { font-size: 20px; }
  .stat-grid { grid-template-columns: 1fr; }
  .flow-card { display: none; }
  .client-list div { grid-template-columns: 10px minmax(0, 1fr); }
  .client-list em { grid-column: 2; }

  .pain-grid,
  .features-grid,
  .showcase-grid,
  .steps,
  .help-grid,
  .faq-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
    width: 100%;
  }
  .showcase-grid .screen-card,
  .showcase-grid .showcase-dashboard { grid-column: 1; }
  .pain-grid article,
  .feature-card,
  .screen-card,
  .steps article,
  .help-grid article,
  details {
    width: 100%;
  }
  .feature-card { min-height: auto; padding: 20px; }
  .feature-card h3 { font-size: 22px; margin-top: 14px; }
  .demo-frame { min-height: 0; }
  .mac-frame img { min-height: 0; }
  .media-frame img { min-height: 0; }
  .trust-card, .pricing-card { border-radius: 22px; }
  .plan-card { border-radius: 22px; padding: 22px; }
  .plan-card.plan-popular,
  .plan-card.plan-popular:hover { transform: none; }
  .popular-badge { top: 14px; right: 14px; }
  .plan-copy { min-height: auto; }
  .plan-price { font-size: clamp(42px, 13vw, 56px); }
  .pricing-main h3 { font-size: 28px; }
  .site-footer nav { flex-wrap: wrap; }
  .mobile-topic-nav {
    position: fixed;
    left: max(8px, env(safe-area-inset-left));
    top: max(58px, calc(env(safe-area-inset-top) + 58px));
    z-index: 46;
    display: block;
  }
  .mobile-topic-toggle {
    width: 36px;
    height: 36px;
    min-height: 36px;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    border: 1px solid rgba(37,211,102,.34);
    border-radius: 999px;
    background: rgba(5, 12, 8, .78);
    color: var(--green);
    box-shadow: 0 12px 34px rgba(0,0,0,.34), 0 0 0 1px rgba(255,255,255,.035) inset;
    backdrop-filter: blur(14px);
    cursor: pointer;
    animation: menuFloatSoft 3.1s ease-in-out infinite;
    transition: transform .18s ease, border-color .18s ease, background .18s ease;
  }
  @keyframes menuFloatSoft {
    0%, 100% { transform: translateY(0); }
    45% { transform: translateY(-2px); }
  }
  .mobile-topic-toggle:hover,
  .mobile-topic-nav.is-open .mobile-topic-toggle {
    transform: translateY(-1px);
    border-color: rgba(37,211,102,.58);
    background: rgba(7, 18, 12, .9);
  }
  .mobile-topic-toggle span {
    width: 15px;
    height: 2px;
    display: block;
    border-radius: 999px;
    background: var(--green);
    box-shadow: 0 0 12px rgba(37,211,102,.28);
  }
  .mobile-topic-panel {
    position: absolute;
    left: 0;
    top: 44px;
    width: min(260px, calc(100vw - 28px));
    display: grid;
    gap: 8px;
    padding: 12px;
    border: 1px solid rgba(37,211,102,.24);
    border-radius: 18px;
    background: rgba(5, 12, 8, .94);
    box-shadow: 0 22px 60px rgba(0,0,0,.48);
    backdrop-filter: blur(18px);
    opacity: 0;
    pointer-events: none;
    transform: translateY(8px) scale(.98);
    transition: opacity .18s ease, transform .18s ease;
  }
  .mobile-topic-nav.is-open .mobile-topic-panel {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
  }
  .mobile-topic-panel a {
    display: flex;
    align-items: center;
    min-height: 40px;
    padding: 0 12px;
    border-radius: 12px;
    background: rgba(255,255,255,.045);
    color: var(--soft);
    font-weight: 850;
  }
  .mobile-topic-panel a:hover { background: rgba(37,211,102,.13); color: var(--text); }
  .back-to-top {
    right: max(14px, env(safe-area-inset-right));
    bottom: max(14px, env(safe-area-inset-bottom));
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 420px) {
  .section-pad { padding-left: 14px; padding-right: 14px; }
  .site-header { padding-left: 12px; padding-right: 12px; }
  .header-actions .btn { padding: 0 12px; font-size: 13px; }
  .brand { font-size: 17px; }
  h1 { font-size: 38px; }
  .btn-lg { min-height: 48px; }
  .pain-grid article, .help-grid article, .feature-card, details { border-radius: 14px; }
}

@media (max-width: 360px) {
  .site-header { gap: 8px; }
  .brand > span { display: none; }
  .brand-mark { width: 32px; height: 32px; }
  .header-actions { gap: 6px; }
  .header-actions .btn { min-height: 34px; padding: 0 10px; font-size: 12px; }
}
