:root {
  --brand-50:  #f6f2ff;
  --brand-100: #eadfff;
  --brand-200: #d2bcff;
  --brand-300: #b18cff;
  --brand-400: #9260ff;
  --brand-500: #7a34ff;
  --brand-600: #662be0;
  --brand-700: #4f20b4;
  --brand-800: #3c188f;
  --brand-900: #27105d;

  --accent: #662be0;
  --accent-soft: #f4eeff;
  --accent-ring: rgba(102, 43, 224, 0.22);

  --bg: #ffffff;
  --bg-subtle: #f9f7fc;
  --bg-muted: #f3eefb;
  --bg-card: #ffffff;
  --bg-inset: #f8f5ff;
  --bg-code: #f3eefb;

  --surface-border: #e9e2f5;
  --surface-border-strong: #d7caea;
  --hairline: #efeaff;

  --ink: #0f172a;
  --ink-2: #1e293b;
  --ink-3: #475569;
  --ink-4: #64748b;
  --ink-5: #94a3b8;

  --shadow-xs: 0 1px 2px rgba(30, 16, 67, 0.05);
  --shadow-sm: 0 2px 8px rgba(30, 16, 67, 0.06);
  --shadow-md: 0 10px 24px rgba(30, 16, 67, 0.08);
  --shadow-lg: 0 18px 42px rgba(30, 16, 67, 0.10);
  --shadow-glow: 0 18px 40px -24px rgba(40, 28, 74, 0.26);

  --radius-xs: 6px;
  --radius-sm: 8px;
  --radius-md: 10px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-pill: 999px;

  --gradient-brand: linear-gradient(135deg, #662be0 0%, #7a34ff 100%);
  --gradient-soft: linear-gradient(180deg, #f9f7fc 0%, #f3eefb 100%);
  --gradient-hero: linear-gradient(180deg, #f8f5ff 0%, #f4f0fb 100%);

  --container: 1120px;
  --container-narrow: 840px;

  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;

  --transition: 180ms cubic-bezier(0.2, 0.7, 0.3, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: var(--brand-600); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--brand-700); }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { margin: 0; line-height: 1.18; letter-spacing: -0.01em; color: var(--ink); font-weight: 700; }
h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); font-weight: 800; }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.4rem); }
h3 { font-size: 1.15rem; font-weight: 600; }
p  { margin: 0 0 1rem; }
h1, h2, h3 { text-wrap: balance; }
p { text-wrap: pretty; }

:focus-visible { outline: 3px solid var(--accent-ring); outline-offset: 2px; border-radius: 4px; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.container.narrow { max-width: var(--container-narrow); }
.section { padding: 64px 0; }
.section.tight { padding: 42px 0; }
.section-flush-top { padding-top: 0; }
.section.alt { background: var(--bg-subtle); }
.section.tinted { background: var(--gradient-soft); }
.section-head { max-width: 680px; margin: 0 auto 34px; text-align: center; }
.section-head .eyebrow { display: inline-block; font-size: 0.76rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--brand-700); background: var(--bg); border: 1px solid var(--brand-200); padding: 5px 12px; border-radius: var(--radius-pill); margin-bottom: 16px; }
.section-head h2 { max-width: 13ch; margin: 0 auto 12px; line-height: 1.06; letter-spacing: -0.03em; }
.section-head p { color: var(--ink-3); font-size: 0.99rem; margin: 0 auto; max-width: 620px; line-height: 1.62; }
.section-head.left { text-align: left; margin-left: 0; }
.section-head.left p { margin-left: 0; }
.section-head.offset-top { margin-top: 28px; }
.eyebrow-soft { display: inline-flex; align-items: center; gap: 8px; font-size: 0.76rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--brand-700); background: var(--accent-soft); border: 1px solid var(--brand-200); padding: 6px 14px; border-radius: var(--radius-pill); margin-bottom: 18px; }
.grad { color: var(--brand-600) !important; background: none !important; -webkit-text-fill-color: currentColor !important; }

.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: saturate(160%) blur(10px);
  -webkit-backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid var(--hairline);
}
.header-inner { display: flex; align-items: center; gap: 30px; height: 72px; }

.brand { display: flex; align-items: center; flex: 0 0 auto; }
.brand img { height: 34px; width: auto; display: block; }
.brand:hover { opacity: 0.85; }

.nav { display: flex; align-items: center; gap: 2px; }
.nav-item { position: relative; }
.nav-link {
  position: relative;
  display: inline-flex; align-items: center; gap: 7px;
  padding: 8px 13px; border-radius: var(--radius-sm);
  font-size: 0.92rem; font-weight: 500; color: var(--ink-2);
  transition: background var(--transition), color var(--transition);
  background: transparent;
}
.nav-link:hover { background: var(--bg-muted); color: var(--ink); }
.nav-link.active { color: var(--brand-700); }
.nav-link.active::after { content: ""; position: absolute; left: 50%; bottom: -22px; width: 24px; height: 2px; background: var(--brand-600); border-radius: 2px; transform: translateX(-50%); }
.nav-link .caret { font-size: 0.62rem; opacity: 0.55; transition: transform var(--transition); }
.nav-item.open .caret { transform: rotate(180deg); }
.nav-link .nav-ic { font-size: 0.78rem; opacity: 0.6; }

.mega {
  position: absolute; top: calc(100% + 14px); left: -8px;
  min-width: 300px; padding: 8px;
  background: var(--bg-card); border: 1px solid var(--surface-border);
  border-radius: var(--radius-md); box-shadow: var(--shadow-lg);
  opacity: 0; visibility: hidden; transform: translateY(6px);
  transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
  z-index: 50;
}
.mega::before { content: ""; position: absolute; top: -6px; left: 20px; width: 12px; height: 12px; background: var(--bg-card); border-top: 1px solid var(--surface-border); border-left: 1px solid var(--surface-border); transform: rotate(45deg); }
.nav-item.open .mega { opacity: 1; visibility: visible; transform: translateY(0); }
.mega-link {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 10px 12px; border-radius: var(--radius-sm);
  color: var(--ink-2); transition: background var(--transition);
}
.mega-link:hover { background: var(--bg-muted); color: var(--brand-700); }
.mega-link .ic { width: 32px; height: 32px; flex: 0 0 auto; display: grid; place-items: center; background: var(--accent-soft); color: var(--brand-600); border-radius: 8px; font-size: 0.85rem; }
.mega-link strong { display: block; font-size: 0.9rem; font-weight: 600; color: var(--ink); }
.mega-link:hover strong { color: var(--brand-700); }
.mega-link small { display: block; color: var(--ink-4); font-size: 0.78rem; margin-top: 1px; }

.header-actions { margin-left: auto; display: flex; align-items: center; gap: 10px; }
.mobile-toggle { display: none; width: 42px; height: 42px; border-radius: 10px; border: 1px solid var(--surface-border); background: var(--bg); align-items: center; justify-content: center; }
.mobile-toggle i { font-size: 1.05rem; color: var(--ink-2); }
.site-header.scrolled { box-shadow: 0 1px 8px rgba(20,18,31,0.06); }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 11px 20px; border-radius: var(--radius-sm);
  font-size: 0.93rem; font-weight: 600; line-height: 1;
  border: 1px solid transparent; cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), border-color var(--transition), color var(--transition);
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--brand-700); color: #fff; box-shadow: none; }
.btn-primary:hover { background: var(--brand-800); color: #fff; box-shadow: none; transform: translateY(-1px); }
.btn-outline { background: var(--bg); color: var(--ink); border-color: var(--surface-border-strong); }
.btn-outline:hover { border-color: var(--brand-300); color: var(--brand-700); background: var(--accent-soft); }
.btn-ghost { background: transparent; color: var(--ink-2); }
.btn-ghost:hover { background: var(--bg-muted); color: var(--brand-700); }
.btn-sm { padding: 8px 14px; font-size: 0.85rem; }
.btn-lg { padding: 14px 26px; font-size: 1rem; }
.btn-block { width: 100%; }

.pill { display: inline-flex; align-items: center; gap: 8px; padding: 6px 12px; border-radius: var(--radius-pill); font-size: 0.76rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; background: var(--bg); color: var(--ink-3); border: 1px solid var(--surface-border-strong); }
.pill.ghost { background: var(--bg); border-color: var(--surface-border-strong); color: var(--ink-3); }
.pill .dot { width: 7px; height: 7px; border-radius: 50%; background: #16a34a; box-shadow: none; }

.tag { display: inline-flex; align-items: center; gap: 6px; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 5px 9px; border-radius: 999px; border: 1px solid var(--surface-border-strong); background: var(--bg); color: var(--ink-3); }
.tag.popular { background: #fff7ed; border-color: #fdba74; color: #9a3412; }
.tag.new { background: #ecfdf5; border-color: #86efac; color: #166534; }
.tag.featured { background: #f4eeff; border-color: #c7a4ff; color: #4f20b4; }

.hero { position: relative; padding: 60px 0 68px; background: var(--bg); overflow: hidden; }
.hero::before { content: ""; position: absolute; inset: 0; background: var(--gradient-hero); pointer-events: none; }
.hero-grid { position: relative; display: grid; grid-template-columns: minmax(0, 1fr) minmax(420px, 0.94fr); gap: 44px; align-items: center; }
.hero-copy { max-width: 540px; }
.hero h1 { margin-bottom: 18px; max-width: 10.5ch; line-height: 1.01; letter-spacing: -0.045em; }
.hero h1 .grad { color: var(--brand-600); background: none; -webkit-text-fill-color: currentColor; }
.hero-lead { font-size: 1rem; color: var(--ink-3); margin-bottom: 24px; max-width: 31rem; line-height: 1.62; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 26px; }
.hero-stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)); justify-content: center; align-items: stretch; gap: 16px; max-width: 920px; padding: 0; background: transparent; border: 0; box-shadow: none; }
.hero-stat { display: flex; flex-direction: column; justify-content: center; min-height: 122px; text-align: center; padding: 22px 16px 18px; border-radius: 14px; background: var(--bg-card); border: 1px solid var(--surface-border); box-shadow: var(--shadow-xs); }
.hero-stat .v { display: block; font-size: 1.38rem; font-weight: 800; color: var(--ink); letter-spacing: -0.02em; line-height: 1.05; }
.hero-stat .l { display: block; font-size: 0.88rem; color: var(--ink-4); margin-top: 8px; line-height: 1.3; }

.home-hero-stats {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: 640px;
  padding: 0;
  gap: 14px;
  background: transparent;
  border: 0;
  box-shadow: none;
}
.home-hero-stats .hero-stat {
  min-height: 108px;
  padding: 18px 14px;
  background: #fff;
  border: 1px solid var(--surface-border);
  box-shadow: var(--shadow-xs);
}
.home-hero-stats .hero-stat .v { font-size: 1.55rem; }
.home-hero-stats .hero-stat .l { font-size: 0.82rem; }

.hero-home .hero-grid {
  grid-template-columns: minmax(0, 560px) minmax(420px, 1fr);
  justify-content: space-between;
  gap: 56px;
}
.hero-home .hero-copy {
  max-width: 560px;
}
.hero-home .pill {
  margin-bottom: 18px;
}
.hero-home-title {
  max-width: 12.5ch;
  margin-top: 0;
  margin-bottom: 20px;
  font-size: clamp(2.7rem, 4.8vw, 3.85rem);
  line-height: 1;
  letter-spacing: -0.045em;
  text-wrap: balance;
}
.hero-home-title .grad {
  display: inline;
  margin-top: 0;
}
.hero-home .hero-lead {
  max-width: 31rem;
  font-size: 1.08rem;
  line-height: 1.55;
  margin-bottom: 30px;
}
.hero-home .hero-cta {
  margin-bottom: 32px;
}
.home-hero-stats {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: 580px;
  gap: 14px;
}
.home-hero-stats .hero-stat {
  display: grid;
  grid-template-rows: minmax(38px, auto) minmax(40px, auto);
  align-content: center;
  justify-items: center;
  min-height: 136px;
  padding: 22px 14px 18px;
  border-radius: 14px;
}
.home-hero-stats .hero-stat .v {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  font-size: 1.3rem;
  line-height: 1;
}
.home-hero-stats .hero-stat .l {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
  max-width: 11ch;
  margin-top: 8px;
  font-size: 0.94rem;
  line-height: 1.25;
  text-align: center;
}
.hero-home .hero-visual {
  max-width: 600px;
}
.hero-home .hero-card {
  border-radius: 18px;
}

.hero-visual { position: relative; width: 100%; max-width: 520px; margin-left: auto; }
.hero-card {
  background: var(--bg-card); border: 1px solid var(--surface-border);
  border-radius: var(--radius-xl); box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.hero-card img { width: 100%; display: block; }
.hero-card.floating { transform: none; }
.hero-glyph { display: none; }

.logos { padding: 36px 0; border-top: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline); background: #f8f5ff; text-align: center; }
.logos-title { font-size: 0.74rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-4); margin: 0 0 28px; }
.logos-row { display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap; }
.logos-row .logo-item { display: inline-flex; align-items: center; justify-content: center; width: 110px; height: 40px; opacity: 0.62; filter: grayscale(1); transition: opacity 200ms ease, filter 200ms ease; }
.logos-row .logo-item:hover { opacity: 0.82; filter: grayscale(0.55); }
.logos-row .logo-item img { max-width: 100%; max-height: 100%; width: auto; height: auto; object-fit: contain; display: block; }
.logos-row .logo-item.wordmark { font-weight: 700; font-size: 1.1rem; color: var(--ink-3); letter-spacing: -0.01em; }

.product-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 280px)); justify-content: center; align-items: stretch; gap: 20px; }
.product-grid.cols-3 { grid-template-columns: repeat(3, minmax(250px, 280px)); justify-content: center; }
.product-grid.cols-2 { grid-template-columns: repeat(2, minmax(280px, 360px)); justify-content: center; }
.home-product-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: 1080px;
  gap: 22px;
}
.home-product-grid.home-product-grid-two {
  grid-template-columns: repeat(2, minmax(320px, 420px));
  max-width: 860px;
}
.card {
  position: relative; display: flex; flex-direction: column;
  background: var(--bg-card); border: 1px solid var(--surface-border);
  border-radius: 14px; padding: 24px;
  min-height: 100%;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.card:hover { transform: none; box-shadow: var(--shadow-xs); border-color: var(--surface-border-strong); }
.card:is(a) { color: inherit; text-decoration: none; }
.card.featured { border-color: var(--brand-300); box-shadow: var(--shadow-sm); }
.card .tag { position: absolute; top: 18px; right: 18px; }
.card-icon { width: 44px; height: 44px; border-radius: 10px; display: grid; place-items: center; background: var(--accent-soft); color: var(--brand-700); font-size: 1.05rem; margin-bottom: 18px; border: 1px solid var(--surface-border); }
.card h3 { font-size: 1.15rem; margin-bottom: 8px; }
.card .desc { color: var(--ink-3); font-size: 0.94rem; margin-bottom: 16px; min-height: 0; line-height: 1.55; }
.card .price { font-size: 0.88rem; color: var(--ink-4); margin-bottom: 18px; }
.card .price strong { font-size: 1.5rem; color: var(--ink); font-weight: 800; letter-spacing: -0.02em; }
.card .price .per { color: var(--ink-4); font-size: 0.85rem; }
.card .btn { margin-top: auto; }
.card > * { position: relative; z-index: 1; }

.feat-list { display: grid; gap: 9px; margin: 0 0 20px; }
.feat-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.88rem; color: var(--ink-3); }
.feat-list li i { color: var(--brand-500); margin-top: 3px; font-size: 0.8rem; }

.bento { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 320px)); justify-content: center; align-items: stretch; gap: 18px; }
.bento.cols-2 { grid-template-columns: repeat(2, minmax(280px, 360px)); justify-content: center; }
.bento.cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); justify-content: center; max-width: 1120px; }
.bento-box {
  background: var(--bg-card); border: 1px solid var(--surface-border);
  border-radius: 14px; padding: 24px;
  min-height: 100%;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.bento-box:hover { transform: none; box-shadow: var(--shadow-xs); border-color: var(--surface-border-strong); }
.bento-box .ic { width: 42px; height: 42px; border-radius: 10px; display: grid; place-items: center; background: var(--accent-soft); color: var(--brand-700); font-size: 1rem; margin-bottom: 16px; border: 1px solid var(--surface-border); }
.bento-box h3 { margin-bottom: 8px; }
.bento-box p { color: var(--ink-3); font-size: 0.92rem; margin: 0; }
.bento-box > * { position: relative; z-index: 1; }

.plan-table { width: 100%; border-collapse: separate; border-spacing: 0; background: var(--bg-card); border: 1px solid var(--surface-border); border-radius: 16px; overflow: hidden; box-shadow: var(--shadow-xs); }
.plan-table th, .plan-table td { padding: 14px 18px; text-align: left; font-size: 0.9rem; border-bottom: 1px solid var(--hairline); vertical-align: middle; }
.plan-table thead th { background: var(--bg-inset); font-weight: 700; color: var(--ink-2); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.06em; }
.plan-table tbody tr { transition: background var(--transition); }
.plan-table tbody tr:hover { background: var(--bg-subtle); }
.plan-table tbody tr.popular { background: #f4edff; }
.plan-table tbody tr:last-child td { border-bottom: 0; }
.plan-table .name strong { display: block; font-size: 1rem; }
.plan-table .name span { font-size: 0.78rem; color: var(--ink-4); }
.plan-table .price-cell strong { font-size: 1.15rem; font-weight: 800; }
.plan-table .price-cell span { color: var(--ink-4); font-size: 0.82rem; }
.plan-table td .spec { display: inline-flex; align-items: center; gap: 6px; color: var(--ink-3); }
.plan-table td .spec i { color: var(--brand-500); font-size: 0.78rem; }

.cpanel-selector { background: var(--bg-card); border: 1px solid var(--surface-border); border-radius: var(--radius-lg); padding: 22px; margin-bottom: 24px; box-shadow: var(--shadow-sm); }
.cpanel-selector-head { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-bottom: 18px; }
.cpanel-selector-head > div { display: flex; align-items: center; gap: 10px; font-weight: 800; }
.cpanel-selector-head i { color: var(--brand-600); }
.cpanel-selector-head span { border: 1px solid var(--brand-200); border-radius: var(--radius-pill); background: var(--accent-soft); color: var(--brand-700); padding: 5px 12px; font-size: 0.78rem; font-weight: 800; white-space: nowrap; }
.cpanel-tier-row { display: grid; grid-template-columns: 88px 1fr; gap: 14px; align-items: flex-start; margin-top: 14px; }
.cpanel-tier-row > span { padding-top: 9px; color: var(--ink-4); text-transform: uppercase; letter-spacing: 0.08em; font-size: 0.72rem; font-weight: 800; }
.cpanel-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.cpanel-chip { border: 1px solid var(--surface-border-strong); border-radius: var(--radius-sm); background: var(--bg); color: var(--ink-2); padding: 8px 12px; display: flex; flex-direction: column; align-items: center; line-height: 1.2; cursor: pointer; transition: border-color var(--transition), background var(--transition), color var(--transition), box-shadow var(--transition), transform var(--transition); }
.cpanel-chip strong { font-size: 0.85rem; }
.cpanel-chip small { color: var(--ink-4); font-size: 0.68rem; }
.cpanel-chip:hover { transform: translateY(-1px); border-color: var(--brand-400); }
.cpanel-chip.active { border-color: var(--brand-500); background: var(--accent-soft); color: var(--brand-700); box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.12); }
.cpanel-chip.active small { color: var(--brand-600); }

.addon-list { display: grid; gap: 10px; }
.addon-row { display: flex; align-items: center; gap: 16px; padding: 14px 18px; background: var(--bg-card); border: 1px solid var(--hairline); border-radius: var(--radius-sm); }
.addon-row .nm { font-weight: 600; color: var(--ink); }
.addon-row .ds { font-size: 0.84rem; color: var(--ink-4); }
.addon-row .pr { margin-left: auto; font-weight: 700; color: var(--brand-600); white-space: nowrap; }
.addon-row .pr.free { color: #059669; }

.cta-band { position: relative; overflow: hidden; border-radius: var(--radius-xl); padding: 44px; background: #0f172a; color: #fff; text-align: center; box-shadow: var(--shadow-glow); }
.cta-band::before { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(255,255,255,0.04), transparent); pointer-events: none; }
.cta-band h2 { color: #fff; margin-bottom: 12px; }
.cta-band p { color: rgba(255,255,255,0.92); font-size: 1.05rem; max-width: 560px; margin: 0 auto 26px; }
.cta-band .btn-primary { background: #fff; color: var(--ink-2); box-shadow: none; }
.cta-band .btn-primary:hover { background: #f4eeff; color: var(--ink); }
.cta-band .btn-outline { background: transparent; color: #fff; border-color: rgba(255,255,255,0.5); }
.cta-band .btn-outline:hover { background: rgba(255,255,255,0.12); border-color: #fff; color: #fff; }
.cta-band .row { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

.site-footer { background: #14121f; color: #c7c2dc; padding: 72px 0 32px; margin-top: 0; }
.site-footer a { color: #b8b2cf; }
.site-footer a:hover { color: #fff; }
.footer-grid { display: grid; grid-template-columns: minmax(260px, 1.3fr) repeat(3, minmax(160px, 1fr)); gap: 32px; margin-bottom: 40px; align-items: start; }
.footer-brand img { height: 36px; margin-bottom: 16px; filter: brightness(0) invert(1); }
.footer-brand p { color: #9b94b3; font-size: 0.92rem; max-width: 320px; margin-bottom: 14px; }
.footer-brand .co { font-size: 0.82rem; color: #7b7595; line-height: 1.5; }
.footer-brand .co strong { color: #c7c2dc; }
.footer-col { display: grid; align-content: start; gap: 4px; }
.footer-col h4 { color: #fff; font-size: 0.82rem; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 18px; }
.footer-col a { display: block; padding: 6px 0; font-size: 0.92rem; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.08); font-size: 0.85rem; color: #7b7595; }
.socials { display: flex; gap: 10px; }
.socials a { width: 36px; height: 36px; display: grid; place-items: center; border-radius: 9px; background: rgba(255,255,255,0.06); color: #c7c2dc; transition: background var(--transition), color var(--transition); }
.socials a:hover { background: var(--brand-600); color: #fff; }

.page-hero {
  position: relative;
  padding: 52px 0 42px;
  background: linear-gradient(180deg, #fbf9fe 0%, #f6f1fc 100%);
  border-bottom: 1px solid var(--hairline);
  overflow: hidden;
  text-align: center;
}
.page-hero::before { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(255,255,255,0.45), rgba(255,255,255,0)); pointer-events: none; opacity: 1; }
.page-hero .container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.page-hero h1 {
  max-width: 14ch;
  margin: 0 auto 14px;
  font-size: clamp(2.35rem, 4.2vw, 3.35rem);
  line-height: 1.06;
  letter-spacing: -0.04em;
}
.page-hero .lead {
  font-size: 0.99rem;
  color: var(--ink-3);
  max-width: 620px;
  line-height: 1.62;
  margin: 0 auto 22px;
}
.page-hero .cta { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }
.page-hero .grad { display: inline; }
.breadcrumb { display: flex; align-items: center; justify-content: center; gap: 8px; font-size: 0.82rem; color: var(--ink-4); margin: 0 0 18px; }
.breadcrumb a { color: var(--ink-4); }
.breadcrumb a:hover { color: var(--brand-600); }
.breadcrumb .sep { opacity: 0.5; }

.split { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 36px; align-items: center; }
.split.reverse .split-text { order: 2; }
.split-text { max-width: 560px; }
.split-text h2 { margin-bottom: 14px; }
.split-text p { color: var(--ink-3); font-size: 1rem; }
.split-text .eyebrow { margin-bottom: 18px; }
.split-text .feat-list { margin-bottom: 24px; }
.split-media { background: var(--bg-card); border: 1px solid var(--surface-border); border-radius: 16px; padding: 10px; box-shadow: none; max-width: 540px; margin-inline: auto; }
.split-media img { border-radius: var(--radius-lg); width: 100%; }

.product-grid,
.bento,
.steps,
.os-grid,
.price-band,
.hero-stats { margin-inline: auto; }

.os-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; max-width: 1068px; }
.os-card { flex: 0 1 164px; max-width: 164px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; min-height: 136px; padding: 20px 14px; background: var(--bg-card); border: 1px solid var(--surface-border); border-radius: 14px; transition: transform var(--transition), border-color var(--transition); }
.os-card:hover { transform: translateY(-2px); border-color: var(--brand-300); }
.os-card img { width: 40px; height: 40px; object-fit: contain; }
.os-card span { font-size: 0.85rem; font-weight: 500; color: var(--ink-2); }

.price-band { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

.tabs-shell { text-align: center; }
.tabs { display: inline-flex; gap: 6px; padding: 6px; background: #f6f2ff; border: 1px solid var(--surface-border); border-radius: 12px; margin: 0 auto 36px; }
.tab-btn { padding: 9px 16px; border-radius: 10px; font-size: 0.88rem; font-weight: 600; color: var(--ink-3); transition: background var(--transition), color var(--transition); display: inline-flex; align-items: center; gap: 8px; }
.tab-btn:hover { color: var(--ink); }
.tab-btn.active { background: var(--bg); color: var(--ink); box-shadow: var(--shadow-xs); border: 1px solid var(--surface-border); }
.tab-panel { display: none; }
.tab-panel.active { display: block; animation: fadeIn 240ms ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }

.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 280px)); justify-content: center; align-items: stretch; gap: 18px; counter-reset: step; }
.step { position: relative; padding: 22px 18px 20px; min-height: 100%; background: var(--bg-card); border: 1px solid var(--surface-border); border-radius: 14px; }
.step::before { counter-increment: step; content: counter(step); position: absolute; top: 22px; right: 22px; width: 30px; height: 30px; display: grid; place-items: center; border-radius: 50%; background: var(--accent-soft); color: var(--brand-700); font-weight: 800; font-size: 0.9rem; }
.step h3 { margin-bottom: 8px; }
.step p { color: var(--ink-3); font-size: 0.9rem; margin: 0; }

.lead-muted { color: var(--ink-3); }
.kbd { font-family: var(--font-mono); font-size: 0.85em; background: var(--bg-code); border: 1px solid var(--surface-border); border-radius: 6px; padding: 2px 7px; }
.note { background: #faf8ff; border: 1px solid var(--surface-border-strong); border-radius: 14px; padding: 16px 20px; color: var(--ink-2); font-size: 0.92rem; }
.note strong { color: var(--brand-800); }
.note i { color: var(--brand-600); margin-right: 8px; }
.note-spaced { margin-top: 24px; }
.section-subhead { display: flex; align-items: center; gap: 10px; margin: 48px 0 18px; font-size: 1.08rem; }
.section-subhead i { color: var(--brand-600); }
.section-head.compact { margin-bottom: 24px; }
.single-card-grid { max-width: 380px; margin: 0 auto; }
.card-dashed { border-style: dashed; }
.content-narrow { max-width: 680px; }
.demo-link { color: inherit; text-decoration: underline; text-underline-offset: 3px; }
.location-grid { display: grid; grid-template-columns: repeat(3, minmax(220px, 1fr)); gap: 18px; max-width: 940px; margin: 0 auto; }
.location-card { display: flex; align-items: center; gap: 16px; padding: 22px 20px; background: var(--bg-card); border: 1px solid var(--surface-border); border-radius: 14px; box-shadow: var(--shadow-xs); }
.location-card.soon { opacity: 0.9; background: #fcfbff; }
.location-flag { width: 52px; height: 36px; flex: 0 0 auto; object-fit: cover; border-radius: 8px; border: 1px solid var(--surface-border); box-shadow: var(--shadow-xs); }
.location-card h3 { margin: 0 0 4px; font-size: 1.05rem; }
.location-card p { margin: 0; color: var(--ink-3); font-size: 0.92rem; line-height: 1.45; }
.location-meta { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-top: 6px; }
.location-badge { display: inline-flex; align-items: center; justify-content: center; padding: 4px 10px; border-radius: 999px; border: 1px solid var(--surface-border-strong); background: var(--bg); color: var(--ink-3); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; }
.location-badge.live { background: #ecfdf5; border-color: #86efac; color: #166534; }
.location-badge.soon { background: #faf5ff; border-color: var(--brand-200); color: var(--brand-700); }
.steps-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); max-width: 1120px; }
.error-shell { min-height: 60vh; display: flex; align-items: center; text-align: center; }
.error-inner { max-width: 680px; margin: 0 auto; }
.error-code { font-size: clamp(5rem, 18vw, 9rem); line-height: 1; font-weight: 800; margin: 0 0 8px; color: var(--brand-600); }
.error-title { font-size: 1.6rem; margin: 0 0 14px; }
.error-copy { color: var(--ink-3); font-size: 1.05rem; margin: 0 0 32px; }
.error-grid { max-width: 560px; margin: 0 auto 32px; text-align: left; }
.cert-grid { max-width: 520px; margin: 0 auto; }
.cert-grid .hero-stat { justify-content: center; }
.cert-grid img { max-width: 160px; width: 100%; height: auto; }
.divider { height: 1px; background: var(--hairline); margin: 0; border: 0; }

.prose { max-width: 760px; }
.prose h2 { font-size: 1.4rem; margin: 36px 0 14px; }
.prose h3 { font-size: 1.1rem; margin: 24px 0 10px; }
.prose p { color: var(--ink-3); }
.prose ul { list-style: disc; padding-left: 22px; margin: 0 0 16px; }
.prose ul li { margin-bottom: 6px; color: var(--ink-3); }
.prose a { color: var(--brand-600); text-decoration: underline; text-underline-offset: 3px; }
.prose .updated { color: var(--ink-4); font-size: 0.88rem; margin-bottom: 24px; }
.legal-embed-card { margin: 0 0 32px; padding: 20px; background: var(--bg-card); border: 1px solid var(--surface-border); border-radius: 20px; box-shadow: var(--shadow-xs); }
.legal-embed-head { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 16px; flex-wrap: wrap; }
.legal-embed-head h2 { margin: 0; font-size: 1.28rem; }
.legal-embed-head p { margin: 0; color: var(--ink-3); }
.legal-embed-link { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; color: var(--brand-700); text-decoration: none; }
.legal-embed-link:hover { color: var(--brand-800); }
.legal-iframe { width: 100%; min-height: 760px; border: 0; border-radius: 14px; background: #fff; }

@media (max-width: 720px) {
  .legal-embed-card { padding: 16px; }
  .legal-iframe { min-height: 620px; }
}

.skip-link { position: absolute; left: -9999px; top: 0; background: var(--brand-600); color: #fff; padding: 10px 16px; border-radius: 0 0 8px 0; z-index: 200; }
.skip-link:focus { left: 0; color: #fff; }

.mobile-menu { position: fixed; inset: 0; z-index: 200; background: rgba(20,18,31,0.5); backdrop-filter: blur(4px); opacity: 0; visibility: hidden; transition: opacity var(--transition), visibility var(--transition); }
.mobile-menu.open { opacity: 1; visibility: visible; }
.mobile-menu-panel { position: absolute; right: 0; top: 0; height: 100%; width: min(360px, 86vw); background: var(--bg); padding: 24px; overflow-y: auto; transform: translateX(100%); transition: transform 240ms cubic-bezier(0.2,0.7,0.3,1); box-shadow: var(--shadow-lg); }
.mobile-menu.open .mobile-menu-panel { transform: none; }
.mobile-menu-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; }
.mobile-menu-head .brand img { height: 30px; }
.mobile-menu-close { width: 38px; height: 38px; border-radius: 10px; border: 1px solid var(--surface-border); display: grid; place-items: center; }
.mobile-nav { display: grid; gap: 4px; }
.mobile-nav-group { border-top: 1px solid var(--hairline); padding-top: 14px; margin-top: 14px; }
.mobile-nav-group .ttl { font-size: 0.74rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-4); padding: 0 12px 8px; }
.mobile-nav a { display: flex; align-items: center; gap: 12px; padding: 12px; border-radius: var(--radius-sm); color: var(--ink-2); font-weight: 500; }
.mobile-nav a:hover { background: var(--bg-muted); color: var(--brand-700); }
.mobile-nav a i { width: 22px; color: var(--brand-500); text-align: center; }

@media (max-width: 1080px) {
  .hero-home .hero-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .hero-home .hero-copy,
  .hero-home .hero-visual {
    max-width: 100%;
  }

  .hero-home-title {
    max-width: 11ch;
    font-size: clamp(2.65rem, 7vw, 3.7rem);
  }
}

@media (max-width: 760px) {
  .home-hero-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 100%;
  }

  .home-hero-stats .hero-stat {
    min-height: 120px;
  }
}

@media (max-width: 520px) {
  .hero-home-title {
    max-width: none;
    font-size: clamp(2.5rem, 11vw, 3.3rem);
  }

  .hero-home-title .grad {
    margin-top: 4px;
  }

  .home-hero-stats {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1080px) {
  .product-grid { grid-template-columns: repeat(2, minmax(240px, 1fr)); }
  .product-grid.cols-3 { grid-template-columns: repeat(2, minmax(240px, 1fr)); }
  .home-product-grid { grid-template-columns: repeat(2, minmax(260px, 1fr)); max-width: 760px; }
  .home-product-grid.home-product-grid-two { grid-template-columns: repeat(2, minmax(260px, 1fr)); max-width: 760px; }
  .bento { grid-template-columns: repeat(2, minmax(240px, 1fr)); }
  .bento.cols-4 { grid-template-columns: repeat(2, minmax(220px, 1fr)); }
  .location-grid { grid-template-columns: repeat(2, minmax(220px, 1fr)); max-width: 640px; }
  .os-grid { max-width: 720px; }
  .steps { grid-template-columns: repeat(2, minmax(220px, 1fr)); }
  .steps-4 { grid-template-columns: repeat(2, minmax(220px, 1fr)); max-width: 760px; }
  .price-band { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-grid { grid-template-columns: 1fr; gap: 34px; }
  .hero-visual { max-width: 520px; margin-inline: auto; }
  .split { grid-template-columns: 1fr; gap: 32px; }
  .split.reverse .split-text { order: 0; }
  .split-text { max-width: none; }
}
@media (max-width: 860px) {
  .nav, .header-actions .desktop-only { display: none; }
  .mobile-toggle { display: inline-flex; }
  .section { padding: 56px 0; }
  .hero { padding: 46px 0 58px; }
  .page-hero { padding: 46px 0 40px; }
  .hero-stats { grid-template-columns: repeat(2, minmax(140px, 180px)); }
  .home-hero-stats { grid-template-columns: repeat(2, minmax(180px, 1fr)); max-width: 440px; }
  .plan-table { display: block; }
  .plan-table thead { display: none; }
  .plan-table tbody, .plan-table tr, .plan-table td { display: block; width: 100%; }
  .plan-table tr { padding: 14px 0; border-bottom: 1px solid var(--hairline); }
  .plan-table td { border: 0; padding: 6px 18px; display: flex; justify-content: space-between; align-items: center; gap: 12px; }
  .plan-table td::before { content: attr(data-label); font-size: 0.78rem; color: var(--ink-4); font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; }
  .plan-table td.name-cell::before { display: none; }
  .plan-table td.name-cell { padding-bottom: 4px; }
  .cpanel-selector-head { align-items: flex-start; flex-direction: column; }
  .cpanel-tier-row { grid-template-columns: 1fr; gap: 8px; }
  .cpanel-tier-row > span { padding-top: 0; }
}
@media (max-width: 560px) {
  .container { padding: 0 18px; }
  .product-grid { grid-template-columns: 1fr; }
  .product-grid.cols-2, .product-grid.cols-3 { grid-template-columns: 1fr; }
  .home-product-grid,
  .home-product-grid.home-product-grid-two { grid-template-columns: 1fr; max-width: 420px; }
  .bento, .bento.cols-2, .bento.cols-4 { grid-template-columns: 1fr; }
  .location-grid { grid-template-columns: 1fr; max-width: 420px; }
  .os-grid { max-width: 520px; }
  .os-card { flex-basis: calc(50% - 7px); max-width: 220px; }
  .steps { grid-template-columns: 1fr; }
  .steps-4 { grid-template-columns: 1fr; max-width: 420px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .cta-band { padding: 32px 20px; }
  .hero-cta .btn { flex: 1; }
  .page-hero { padding: 38px 0 36px; }
  .page-hero .cta { width: 100%; }
  .page-hero .cta .btn { flex: 1; min-width: 0; }
  .breadcrumb { flex-wrap: wrap; }
  .tabs { width: 100%; overflow-x: auto; justify-content: flex-start; border-radius: var(--radius-lg); }
  .hero-stats { grid-template-columns: 1fr; }
  .home-hero-stats { grid-template-columns: 1fr; max-width: 320px; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}
