/* =========================================================
  Lurstan Mailer Landing — production-grade stylesheet
  - No external dependencies
  - Accessible navigation + focus styles
  - Theme variables via [data-theme]
  - Reduced-motion support
========================================================= */

/* ---------- Design tokens ---------- */
:root{
  --max: 1180px;
  --pad: 18px;
  --headerH: 76px;

  --radius-2xl: 30px;
  --radius-xl: 24px;
  --radius-lg: 18px;
  --radius-md: 14px;
  --radius-sm: 12px;

  --shadow-1: 0 10px 24px rgba(2,6,23,.12);
  --shadow-2: 0 18px 48px rgba(2,6,23,.16);
  --shadow-3: 0 30px 80px rgba(2,6,23,.18);

  --font: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  --mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;

  /* Light tokens (overridden by [data-theme="dark"]) */
  --bg0: #f6f8ff;
  --bg1: #eef2ff;
  --surface0: rgba(255,255,255,.80);
  --surface1: rgba(255,255,255,.62);
  --surface2: rgba(255,255,255,.72);

  --text: #0b1020;
  --muted: rgba(51,65,85,.92);
  --muted2: rgba(100,116,139,.92);
  --border: rgba(15,23,42,.12);

  --brand1: #2f6cf6;
  --brand2: #244db0;
  --brand3: #7c3aed;
  --teal: #14b8a6;
  --green: #22c55e;
  --amber: #f59e0b;
  --red: #ef4444;

  --ring: 0 0 0 4px rgba(47,108,246,.18);
}

html[data-theme="dark"]{
  --bg0: #070a17;
  --bg1: #0b122a;
  --surface0: rgba(16,26,53,.86);
  --surface1: rgba(10,14,30,.62);
  --surface2: rgba(255,255,255,.06);

  --text: #eef2ff;
  --muted: rgba(226,232,240,.92);
  --muted2: rgba(203,213,225,.82);
  --border: rgba(148,163,184,.18);

  --shadow-1: 0 12px 28px rgba(2,6,23,.55);
  --shadow-2: 0 18px 56px rgba(2,6,23,.65);
  --shadow-3: 0 34px 96px rgba(2,6,23,.68);

  --ring: 0 0 0 4px rgba(59,130,246,.22);
}

/* ---------- Base reset ---------- */
*{ box-sizing: border-box; }
html, body { height: 100%; }
body{
  margin:0;
  font-family: var(--font);
  color: var(--text);
  background:
    radial-gradient(1100px 560px at 16% 0%, rgba(47,108,246,.16), transparent 60%),
    radial-gradient(1000px 560px at 86% 6%, rgba(124,58,237,.12), transparent 62%),
    radial-gradient(900px 520px at 76% 96%, rgba(20,184,166,.10), transparent 64%),
    linear-gradient(180deg, var(--bg0) 0%, var(--bg1) 100%);
  overflow-x:hidden;
}
img{ max-width: 100%; display:block; }
a{ color: inherit; text-decoration: none; }
button, input { font: inherit; }
::selection{ background: rgba(47,108,246,.22); }

/* ---------- Accessibility helpers ---------- */
.skip-link{
  position:absolute;
  left:-999px;
  top: 8px;
  background: #fff;
  color: #0b1020;
  padding: 10px 12px;
  border-radius: 12px;
  z-index: 9999;
  box-shadow: var(--shadow-2);
}
.skip-link:focus{ left: 10px; outline: none; }

:focus-visible{ outline: none; box-shadow: var(--ring); border-radius: 14px; }

.sr-only{
  position:absolute !important;
  width:1px;height:1px;
  padding:0;margin:-1px;
  overflow:hidden;clip:rect(0,0,0,0);
  border:0;
  white-space:nowrap;
}

@media (prefers-reduced-motion: reduce){
  *{ scroll-behavior: auto !important; }
  .reveal{ opacity: 1 !important; transform: none !important; transition: none !important; }
  .floaty{ animation: none !important; }
}

/* ---------- Utilities ---------- */
.container{
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
}
.stack{ display:flex; flex-direction:column; gap: 12px; }
.row{ display:flex; align-items:center; gap: 12px; flex-wrap: wrap; }
.row-between{ justify-content: space-between; }
.row-gap-10{ gap: 10px; }
.grid{ display:grid; gap: 14px; }
.grid-1{ grid-template-columns: 1fr; }
.gap-10{ gap: 10px; }

.mt-auto{ margin-top: auto; }
.mt-10{ margin-top: 10px; }
.mt-12{ margin-top: 12px; }
.mt-14{ margin-top: 14px; }

.muted{ color: var(--muted2); }
.tight{ margin: 0; }
.mono{ font-family: var(--mono); }

/* ---------- Components ---------- */
.card{
  border: 1px solid var(--border);
  background: var(--surface0);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-2);
  position: relative;
  overflow: hidden;
}
.card::after{
  content:"";
  position:absolute; inset:-1px;
  pointer-events:none;
  opacity:.78;
  background:
    radial-gradient(820px 320px at 0% 0%, rgba(255,255,255,.16), transparent 62%),
    radial-gradient(780px 340px at 100% 0%, rgba(47,108,246,.14), transparent 62%),
    radial-gradient(780px 360px at 82% 100%, rgba(20,184,166,.10), transparent 65%);
}
html[data-theme="dark"] .card::after{
  opacity:.90;
  background:
    radial-gradient(820px 320px at 0% 0%, rgba(59,130,246,.18), transparent 62%),
    radial-gradient(760px 320px at 100% 0%, rgba(124,58,237,.18), transparent 62%),
    radial-gradient(760px 360px at 82% 100%, rgba(20,184,166,.12), transparent 65%);
}
.card > *{ position: relative; z-index: 1; }

.pill{
  display:inline-flex;
  align-items:center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(47,108,246,.22);
  background: rgba(47,108,246,.10);
  color: var(--muted);
  font-weight: 900;
  font-size: 12px;
  letter-spacing: .2px;
  white-space: nowrap;
}
html[data-theme="dark"] .pill{ color: rgba(226,232,240,.92); }

.badge{
  display:inline-flex;
  align-items:center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.70);
  font-weight: 950;
  font-size: 12px;
  letter-spacing: .2px;
  white-space: nowrap;
}
html[data-theme="dark"] .badge{ background: rgba(255,255,255,.06); }

.btn{
  border: 1px solid transparent;
  cursor: pointer;
  user-select: none;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 16px;
  font-weight: 950;
  font-size: 12px;
  letter-spacing: .25px;
  transition: transform .12s ease, box-shadow .14s ease, filter .12s ease, background .14s ease, border-color .14s ease;
  white-space: nowrap;
}
.btn:hover{ transform: translateY(-1px); box-shadow: var(--shadow-1); }
.btn:active{ transform: translateY(1px); box-shadow: none; }
.btn.primary{
  color:#fff;
  background: linear-gradient(90deg, var(--brand1), var(--brand2));
  box-shadow: 0 16px 30px rgba(47,108,246,.22);
}
html[data-theme="dark"] .btn.primary{ box-shadow: 0 16px 30px rgba(59,130,246,.18); }
.btn.ghost{
  background: rgba(255,255,255,.70);
  border-color: var(--border);
  color: rgba(15,23,42,.88);
}
html[data-theme="dark"] .btn.ghost{
  background: rgba(255,255,255,.06);
  border-color: rgba(148,163,184,.18);
  color: rgba(226,232,240,.92);
}
.btn.link{
  border-color: transparent;
  background: transparent;
  padding: 10px 8px;
  border-radius: 14px;
  color: var(--muted);
}
.btn.link:hover{ box-shadow: none; transform:none; filter: brightness(1.02); }

.reveal{
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .55s ease, transform .55s ease;
}
.reveal.show{
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Header ---------- */
.site-header{
  position: sticky;
  top: 0;
  z-index: 80;
  height: var(--headerH);
  display:flex;
  align-items:center;
  backdrop-filter: blur(14px);
  background: var(--surface1);
  border-bottom: 1px solid rgba(15,23,42,.08);
}
html[data-theme="dark"] .site-header{
  border-bottom-color: rgba(148,163,184,.12);
}
.nav-wrap{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 12px;
}
.brand{
  display:flex;
  align-items:center;
  gap: 10px;
  min-width: 0;
}
.logo{
  width: 44px;
  height: 44px;
  border-radius: 16px;
  display:grid;
  place-items:center;
  overflow:hidden;
  border: 1px solid rgba(255,255,255,.20);
  background: rgba(255,255,255,.12);
  box-shadow: 0 12px 26px rgba(0,0,0,.18);
  flex: 0 0 auto;
}
html[data-theme="dark"] .logo{
  border-color: rgba(148,163,184,.18);
  background: rgba(255,255,255,.06);
}
.logo img{
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 7px;
}
.logo.logo-fallback{
  font-weight: 1000;
  font-size: 14px;
  letter-spacing: .2px;
}
.brand-text{ min-width:0; }
.brand-title{
  font-weight: 1000;
  font-size: 13px;
  letter-spacing: .2px;
  white-space: nowrap;
  overflow:hidden;
  text-overflow: ellipsis;
}
.brand-sub{
  margin-top: 2px;
  display:block;
  font-size: 12px;
  font-weight: 850;
  color: var(--muted2);
  white-space: nowrap;
  overflow:hidden;
  text-overflow: ellipsis;
}

.nav{
  display:flex;
  align-items:center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content:flex-end;
}
.nav a.navlink{
  font-size: 12px;
  font-weight: 950;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.70);
  transition: transform .14s ease, box-shadow .14s ease, background .14s ease;
  white-space: nowrap;
}
html[data-theme="dark"] .nav a.navlink{
  background: rgba(255,255,255,.06);
}
.nav a.navlink:hover{ transform: translateY(-1px); box-shadow: var(--shadow-1); }

.menu-btn{
  display:none;
  width: 44px;
  height: 44px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.70);
  align-items:center;
  justify-content:center;
  font-weight: 1000;
}
html[data-theme="dark"] .menu-btn{ background: rgba(255,255,255,.06); color: rgba(226,232,240,.92); }

@media (max-width: 900px){
  .nav{ display:none; }
  .menu-btn{ display:inline-flex; }
}

/* ---------- Mobile drawer ---------- */
.drawer{
  display:none;
  position: fixed;
  inset: 0;
  z-index: 999;
}
.drawer[aria-hidden="false"]{ display:block; }

.drawer-backdrop{
  position:absolute;
  inset: 0;
  background: rgba(2,6,23,.58);
  backdrop-filter: blur(8px);
}
.drawer-panel{
  position:absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: min(420px, 92vw);
  background: rgba(255,255,255,.94);
  border-left: 1px solid var(--border);
  box-shadow: var(--shadow-3);
  padding: 16px;
  display:flex;
  flex-direction: column;
  gap: 12px;
}
html[data-theme="dark"] .drawer-panel{
  background: rgba(10,14,30,.92);
  border-left-color: rgba(148,163,184,.14);
}
.drawer-title{ font-weight: 1000; }
.drawer-panel a{
  padding: 12px 12px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.75);
  font-weight: 950;
  font-size: 12px;
}
html[data-theme="dark"] .drawer-panel a{
  background: rgba(255,255,255,.06);
}
.drawer-panel a.btn.primary,
.drawer-panel button#themeToggleMobile{
  width: 100%;
  justify-content: center;
}
.drawer-footer{
  color: var(--muted2);
  font-weight: 850;
  font-size: 12px;
}

/* ---------- Hero ---------- */
.hero{
  position: relative;
  padding: 46px 0 24px;
}
.orbs{
  position:absolute;
  inset: -140px -140px auto -140px;
  height: 560px;
  pointer-events:none;
  filter: blur(28px);
  opacity: .95;
}
.orb{
  position:absolute;
  width: 430px;
  height: 430px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, rgba(47,108,246,.55), transparent 62%);
  animation: floaty 8s ease-in-out infinite;
}
.orb.o2{
  right: 40px;
  top: 10px;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle at 30% 30%, rgba(124,58,237,.44), transparent 62%);
  animation-duration: 10.2s;
}
.orb.o3{
  left: 260px;
  top: 190px;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle at 40% 40%, rgba(20,184,166,.30), transparent 64%);
  animation-duration: 11.4s;
}
@keyframes floaty{
  0%,100%{ transform: translate3d(0,0,0) scale(1); }
  50%{ transform: translate3d(0,-18px,0) scale(1.02); }
}

.hero-grid{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 14px;
  align-items: stretch;
  position: relative;
  z-index: 1;
}
@media (max-width: 980px){
  .hero-grid{ grid-template-columns: 1fr; }
}
.hero-left{ padding: 26px; }
.hero-right{ padding: 18px; display:flex; flex-direction:column; gap: 12px; }

.h1{
  margin: 10px 0 0;
  font-size: clamp(32px, 4.2vw, 46px);
  line-height: 1.04;
  letter-spacing: -0.8px;
  font-weight: 1000;
}
.lead{
  margin: 12px 0 0;
  font-size: 14px;
  line-height: 1.75;
  font-weight: 850;
  color: var(--muted2);
  max-width: 66ch;
}
.hero-actions{
  margin-top: 16px;
  display:flex;
  align-items:center;
  gap: 10px;
  flex-wrap: wrap;
}
.hint{
  font-size: 12px;
  font-weight: 850;
  color: var(--muted2);
}
.trustline{
  margin-top: 18px;
  display:flex;
  align-items:center;
  gap: 10px;
  flex-wrap: wrap;
  font-size: 12px;
  font-weight: 850;
  color: var(--muted2);
}
.trustdot{
  width: 7px; height: 7px; border-radius: 999px;
  background: rgba(34,197,94,.95);
  box-shadow: 0 0 0 4px rgba(34,197,94,.16);
}

/* ---------- Preview console ---------- */
.preview{
  border-radius: var(--radius-xl);
  border: 1px solid rgba(15,23,42,.10);
  background: rgba(255,255,255,.72);
  overflow:hidden;
  flex: 1;
}
html[data-theme="dark"] .preview{
  border-color: rgba(148,163,184,.18);
  background: rgba(255,255,255,.06);
}
.preview-top{
  padding: 12px;
  border-bottom: 1px solid rgba(15,23,42,.08);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 10px;
  flex-wrap: wrap;
}
html[data-theme="dark"] .preview-top{ border-bottom-color: rgba(148,163,184,.12); }
.dots{ display:flex; gap: 7px; align-items:center; }
.dotc{ width: 10px; height: 10px; border-radius: 999px; background: rgba(15,23,42,.12); }
html[data-theme="dark"] .dotc{ background: rgba(226,232,240,.14); }
.dotc.r{ background: rgba(239,68,68,.55); }
.dotc.y{ background: rgba(245,158,11,.55); }
.dotc.g{ background: rgba(34,197,94,.55); }
.preview-title{
  font-size: 12px;
  font-weight: 950;
  color: rgba(15,23,42,.84);
  letter-spacing: .2px;
}
html[data-theme="dark"] .preview-title{ color: rgba(226,232,240,.92); }

.preview-body{
  padding: 12px;
  display:flex;
  flex-direction: column;
  gap: 10px;
}
.preview-kpis{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
@media (max-width: 980px){ .preview-kpis{ grid-template-columns: 1fr; } }

.kpi{
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(2,6,23,.04);
  padding: 14px;
}
html[data-theme="dark"] .kpi{
  background: rgba(255,255,255,.05);
  border-color: rgba(148,163,184,.14);
}
.kpi.kpi-xl{ border-radius: var(--radius-xl); }

.kpi .k{
  font-size: 12px;
  font-weight: 950;
  color: var(--muted2);
  letter-spacing: .6px;
  text-transform: uppercase;
}
.kpi .v{
  margin-top: 8px;
  font-size: 22px;
  font-weight: 1000;
  letter-spacing: -0.4px;
}
.kpi .s{
  margin-top: 6px;
  font-size: 12px;
  font-weight: 850;
  color: var(--muted2);
  line-height: 1.6;
}

.bar{
  height: 10px;
  border-radius: 999px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: rgba(15,23,42,.06);
  margin-top: 10px;
}
html[data-theme="dark"] .bar{ background: rgba(148,163,184,.10); }
.bar > div{
  height: 100%;
  width: var(--w, 70%);
  background: linear-gradient(90deg, var(--brand1), var(--brand2));
  border-radius: 999px;
}
.bar-74{ --w: 74%; }
.bar-82{ --w: 82%; }

.terminal{
  border-radius: var(--radius-lg);
  border: 1px solid rgba(15,23,42,.10);
  background: #0b1220;
  color: #c7d2fe;
  font-family: var(--mono);
  font-size: 12px;
  line-height: 1.55;
  padding: 12px;
  height: 170px;
  overflow:auto;
}
html[data-theme="dark"] .terminal{ border-color: rgba(255,255,255,.10); }
.terminal .ok{ color:#86efac; }
.terminal .warn{ color:#fde68a; }
.terminal .bad{ color:#fca5a5; }
.terminal .dim{ color:#a5b4fc; }

/* ---------- Sections ---------- */
.section{ padding: 32px 0; }
.section-head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.h2{
  margin: 0;
  font-size: 18px;
  font-weight: 1000;
  letter-spacing: -0.2px;
}
.sub{
  margin-top: 8px;
  font-size: 12px;
  font-weight: 850;
  color: var(--muted2);
  line-height: 1.7;
  max-width: 78ch;
}

/* ---------- Logos strip ---------- */
.logos{ padding: 18px 0 6px; }
.logo-strip{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items:center;
  justify-content:center;
  color: var(--muted2);
  font-size: 12px;
  font-weight: 850;
}
.logo-chip{
  border: 1px dashed rgba(148,163,184,.34);
  border-radius: 999px;
  padding: 10px 12px;
  background: rgba(255,255,255,.45);
}
html[data-theme="dark"] .logo-chip{ background: rgba(255,255,255,.05); }

/* ---------- Feature cards ---------- */
.features-grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 12px;
}
@media (max-width: 980px){ .features-grid{ grid-template-columns: 1fr; } }

.feature{
  border: 1px solid var(--border);
  background: rgba(255,255,255,.78);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-1);
  padding: 16px;
  position: relative;
  overflow:hidden;
}
html[data-theme="dark"] .feature{ background: rgba(255,255,255,.06); }
.feature::after{
  content:"";
  position:absolute; inset:-1px;
  pointer-events:none;
  opacity:.55;
  background:
    radial-gradient(540px 260px at 0% 0%, rgba(255,255,255,.16), transparent 62%),
    radial-gradient(520px 260px at 100% 0%, rgba(47,108,246,.12), transparent 62%);
}
html[data-theme="dark"] .feature::after{
  opacity:.62;
  background:
    radial-gradient(540px 260px at 0% 0%, rgba(59,130,246,.14), transparent 62%),
    radial-gradient(520px 260px at 100% 0%, rgba(124,58,237,.14), transparent 62%);
}
.feature > *{ position: relative; z-index:1; }

.ico{
  width: 46px;
  height: 46px;
  border-radius: 16px;
  display:grid;
  place-items:center;
  border: 1px solid rgba(15,23,42,.10);
  background: rgba(255,255,255,.72);
  box-shadow: 0 10px 22px rgba(2,6,23,.10);
}
html[data-theme="dark"] .ico{
  border-color: rgba(148,163,184,.18);
  background: rgba(255,255,255,.06);
  box-shadow: 0 10px 22px rgba(2,6,23,.45);
}
.ftitle{
  margin-top: 10px;
  font-size: 14px;
  font-weight: 1000;
  letter-spacing: -0.2px;
}
.fdesc{
  margin-top: 8px;
  font-size: 12px;
  font-weight: 850;
  color: var(--muted2);
  line-height: 1.7;
}
.bullets{
  margin: 10px 0 0;
  padding: 0 0 0 16px;
  font-size: 12px;
  font-weight: 850;
  color: var(--muted2);
  line-height: 1.8;
}
.bullets li{ margin: 4px 0; }

/* ---------- Split sections ---------- */
.split{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  align-items: stretch;
}
@media (max-width: 980px){ .split{ grid-template-columns: 1fr; } }

.panel{
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  background: rgba(255,255,255,.78);
  box-shadow: var(--shadow-1);
  padding: 16px;
}
html[data-theme="dark"] .panel{ background: rgba(255,255,255,.06); }

.steps{ display:flex; flex-direction: column; gap: 10px; margin-top: 10px; }
.step{
  display:flex;
  gap: 10px;
  align-items:flex-start;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(15,23,42,.08);
  background: rgba(2,6,23,.02);
  padding: 12px;
}
html[data-theme="dark"] .step{
  border-color: rgba(148,163,184,.14);
  background: rgba(255,255,255,.05);
}
.num{
  width: 34px;
  height: 34px;
  border-radius: 14px;
  display:grid;
  place-items:center;
  background: linear-gradient(90deg, var(--brand1), var(--brand2));
  color:#fff;
  font-weight: 1000;
  font-size: 12px;
  flex: 0 0 auto;
  box-shadow: 0 10px 22px rgba(47,108,246,.18);
}
.step b{ font-weight: 1000; font-size: 13px; }
.step p{
  margin: 6px 0 0;
  font-size: 12px;
  font-weight: 850;
  color: var(--muted2);
  line-height: 1.7;
}

/* ---------- Pricing ---------- */
.pricing-grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 12px;
  align-items: stretch;
}
@media (max-width: 980px){ .pricing-grid{ grid-template-columns: 1fr; } }

.price-card{
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  background: rgba(255,255,255,.82);
  box-shadow: var(--shadow-1);
  padding: 16px;
  position: relative;
  overflow:hidden;
}
html[data-theme="dark"] .price-card{ background: rgba(255,255,255,.06); }
.price-top{ display:flex; align-items:center; justify-content:space-between; gap: 10px; flex-wrap: wrap; }
.plan{ font-weight: 1000; letter-spacing: -0.2px; }

.price{
  margin-top: 10px;
  display:flex;
  align-items: baseline;
  gap: 8px;
}
.price .amount{
  font-size: 28px;
  font-weight: 1000;
  letter-spacing: -0.6px;
}
.price .per{
  font-size: 12px;
  font-weight: 850;
  color: var(--muted2);
}
.price-note{
  margin-top: 8px;
  font-size: 12px;
  font-weight: 850;
  color: var(--muted2);
  line-height: 1.6;
}
.price-feats{
  margin: 12px 0 0;
  padding: 0 0 0 16px;
  font-size: 12px;
  font-weight: 850;
  color: var(--muted2);
  line-height: 1.9;
}
.price-feats li{ margin: 4px 0; }

.highlight{
  border-color: rgba(47,108,246,.34);
  box-shadow: 0 18px 46px rgba(47,108,246,.18);
}
html[data-theme="dark"] .highlight{
  border-color: rgba(59,130,246,.32);
  box-shadow: 0 18px 46px rgba(2,6,23,.65);
}
.tag{
  display:inline-flex;
  align-items:center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 950;
  background: rgba(34,197,94,.12);
  border: 1px solid rgba(34,197,94,.22);
  color: var(--muted);
  white-space: nowrap;
}
html[data-theme="dark"] .tag{ color: rgba(226,232,240,.92); }

.billing-toggle{
  display:flex;
  align-items:center;
  gap: 10px;
  flex-wrap: wrap;
}
.switch{
  position: relative;
  width: 54px;
  height: 30px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.65);
  cursor: pointer;
  display:inline-flex;
  align-items:center;
  padding: 3px;
  transition: background .14s ease, border-color .14s ease;
}
html[data-theme="dark"] .switch{ background: rgba(255,255,255,.06); }
.switch .knob{
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--brand1), var(--brand2));
  box-shadow: 0 10px 22px rgba(47,108,246,.20);
  transform: translateX(0);
  transition: transform .18s ease;
}
.switch[aria-checked="true"] .knob{ transform: translateX(24px); }

/* ---------- Testimonials / FAQ ---------- */
.quote{
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  background: rgba(255,255,255,.78);
  box-shadow: var(--shadow-1);
  padding: 16px;
  display:flex;
  flex-direction: column;
  gap: 10px;
}
html[data-theme="dark"] .quote{ background: rgba(255,255,255,.06); }
.quote p{
  margin: 0;
  font-weight: 850;
  line-height: 1.75;
  color: rgba(15,23,42,.86);
}
html[data-theme="dark"] .quote p{ color: rgba(226,232,240,.92); }
.who{ display:flex; align-items:center; justify-content:space-between; gap: 10px; flex-wrap: wrap; }
.who .name{ font-weight: 1000; font-size: 12px; }
.who .role{ font-weight: 850; font-size: 12px; color: var(--muted2); }

.faq{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
@media (max-width: 980px){ .faq{ grid-template-columns: 1fr; } }

details{
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: rgba(255,255,255,.78);
  box-shadow: var(--shadow-1);
  padding: 12px;
}
html[data-theme="dark"] details{ background: rgba(255,255,255,.06); }
summary{
  cursor: pointer;
  list-style: none;
  font-weight: 1000;
  font-size: 12px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 10px;
}
summary::-webkit-details-marker{ display:none; }
details p{
  margin: 10px 0 0;
  font-size: 12px;
  font-weight: 850;
  color: var(--muted2);
  line-height: 1.75;
}

/* ---------- Final CTA + Footer ---------- */
.cta{ padding: 28px 0 46px; }
.cta-inner{
  padding: 22px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 14px;
  flex-wrap: wrap;
}
.cta-inner h3{
  margin:0;
  font-size: 18px;
  font-weight: 1000;
  letter-spacing: -0.2px;
}
.cta-inner p{
  margin: 8px 0 0;
  font-size: 12px;
  font-weight: 850;
  color: var(--muted2);
  line-height: 1.75;
  max-width: 78ch;
}

.footer{
  padding: 18px 0 28px;
  color: var(--muted2);
  font-size: 12px;
  font-weight: 850;
}
.footer .line{
  border-top: 1px solid rgba(15,23,42,.08);
  padding-top: 14px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 10px;
  flex-wrap: wrap;
}
html[data-theme="dark"] .footer .line{ border-top-color: rgba(148,163,184,.12); }
.footer-links{ gap: 10px; }

/* ---------- NoScript banner ---------- */
.noscript-banner{
  max-width: 980px;
  margin: 12px auto;
  padding: 12px 16px;
  border-radius: 16px;
  border: 1px solid rgba(148,163,184,.25);
  background: rgba(255,255,255,.65);
  font-family: var(--font);
  font-weight: 850;
  color: rgba(15,23,42,.86);
}
html[data-theme="dark"] .noscript-banner{
  background: rgba(255,255,255,.06);
  color: rgba(226,232,240,.92);
}

/* ===== Mobile layout enhancements ===== */
@media (max-width: 900px){
  .header-inner{
    gap:10px;
    padding: 8px 12px;
  }
  .header-right{
    width:100%;
    justify-content:flex-start;
    flex-wrap:wrap;
  }
  .pill{
    padding:7px 10px;
    font-size:11px;
  }
  .nav-inner{
    flex-direction:column;
    align-items:flex-start;
    gap:8px;
  }
  .nav-links{
    flex-wrap:wrap;
  }
  .nav-link{
    padding:8px 10px;
    font-size:11px;
  }
  .container{
    padding: 12px 12px 22px;
  }
  .table-wrap{
    -webkit-overflow-scrolling: touch;
  }
  table{
    min-width: 760px;
  }
}

@media (max-width: 600px){
  .brand-title{ font-size:14px; }
  .brand-sub{ font-size:11px; }
  .btn{ padding:8px 10px; font-size:11px; }
  input, select{ padding:9px 10px; font-size:12px; }
}