:root {
  --page: #f5f1fa;
  --page-deep: #eee7f6;
  --surface: #ffffff;
  --surface-muted: #faf8fc;
  --surface-purple: #f5f0fc;
  --text: #251d2d;
  --text-soft: #554b60;
  --muted: #847a8e;
  --muted-light: #a89fae;
  --line: #ebe5ef;
  --line-strong: #ded4e6;
  --purple: #7550c8;
  --purple-dark: #5d39ad;
  --purple-light: #a98ae7;
  --purple-soft: #eee6fa;
  --green: #2e9d68;
  --green-soft: #e7f6ed;
  --red: #cf5268;
  --red-soft: #fff0f2;
  --amber: #b57920;
  --amber-soft: #fff5df;
  --shadow: 0 18px 50px rgba(58, 36, 76, .075);
  --shadow-small: 0 9px 26px rgba(58, 36, 76, .065);
  --shadow-hover: 0 24px 62px rgba(58, 36, 76, .12);
  --radius-xl: 26px;
  --radius-lg: 20px;
  --radius-md: 15px;
  --radius-sm: 12px;
  --container: 1160px;
  --section-pad: clamp(70px, 9vw, 112px);
  --ease: cubic-bezier(.16, 1, .3, 1);
  /* Backwards-compatible names used by other pages/scripts. */
  --bg-deepest: var(--page);
  --bg-card: var(--surface);
  --bg-card-hover: var(--surface);
  --border-subtle: var(--line);
  --border-glow: #d5c5e8;
  --text-primary: var(--text);
  --text-secondary: var(--text-soft);
  --text-muted: var(--muted);
  --accent: var(--purple);
  --accent-light: var(--purple);
  --accent-bright: var(--purple-dark);
  --accent-dim: var(--purple-dark);
  --primary-light: var(--purple);
  --success: var(--green);
  --error: var(--red);
}

*, *::before, *::after { box-sizing: border-box; }
html { min-width: 320px; scroll-behavior: smooth; background: var(--page); }
body { min-width: 320px; min-height: 100vh; margin: 0; overflow-x: hidden; background: radial-gradient(circle at 4% 0%, rgba(117,80,200,.055), transparent 28rem), var(--page); color: var(--text); font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif; line-height: 1.55; -webkit-font-smoothing: antialiased; }
body::before { content: ""; position: fixed; inset: 0; z-index: -2; pointer-events: none; background-image: linear-gradient(rgba(117,80,200,.018) 1px, transparent 1px), linear-gradient(90deg, rgba(117,80,200,.018) 1px, transparent 1px); background-size: 48px 48px; mask-image: linear-gradient(to bottom, #000, transparent 75%); }
button, input, a { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: var(--purple-dark); text-decoration: none; }
svg { display: block; }
.container { width: min(var(--container), calc(100% - 40px)); margin-inline: auto; }
.hidden { display: none !important; }

#pixel-blast { position: fixed; inset: 0; z-index: -1; width: 100%; height: 100%; pointer-events: none; opacity: .16; mix-blend-mode: multiply; }

/* Header */
.site-header { position: relative; z-index: 50; padding: max(16px, env(safe-area-inset-top)) 0 14px; }
.header-inner { min-height: 58px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 12px; min-width: 0; color: var(--text); }
.brand-logo, .footer-logo, .mini-logo { display: grid; place-items: center; color: #fff; background: linear-gradient(145deg, var(--purple), #8e67d8); font-weight: 800; box-shadow: 0 9px 22px rgba(117,80,200,.2); }
.brand-logo { width: 46px; height: 46px; flex: 0 0 auto; border-radius: 15px; font-size: 20px; }
.brand-copy { display: grid; min-width: 0; gap: 2px; }
.brand-copy strong { font-size: 15px; line-height: 1.2; letter-spacing: -.02em; }
.brand-copy span { overflow: hidden; color: var(--muted); font-size: 11px; line-height: 1.35; text-overflow: ellipsis; white-space: nowrap; }
.header-nav { display: flex; align-items: center; gap: 4px; padding: 5px; border: 1px solid rgba(88,58,112,.055); border-radius: 16px; background: rgba(255,255,255,.72); box-shadow: var(--shadow-small); backdrop-filter: blur(18px); }
.header-nav a { padding: 9px 13px; border-radius: 11px; color: var(--text-soft); font-size: 12px; font-weight: 650; transition: background .16s ease, color .16s ease; }
.header-nav a:hover { background: var(--surface-purple); color: var(--purple-dark); }
.header-actions { display: flex; align-items: center; gap: 9px; }
.header-account { min-height: 42px; display: inline-flex; align-items: center; gap: 8px; padding: 0 13px; border: 1px solid rgba(117,80,200,.08); border-radius: 13px; background: rgba(255,255,255,.78); color: var(--purple-dark); font-size: 11px; font-weight: 720; box-shadow: var(--shadow-small); }
.header-account svg { width: 17px; height: 17px; }
.header-cta { min-height: 42px !important; padding-inline: 17px !important; }

/* Dock is a compact mobile navigation. */
.dock { display: none; position: fixed; left: 50%; bottom: max(10px, env(safe-area-inset-bottom)); z-index: 1000; transform: translateX(-50%); }
.dock-container { display: flex; gap: 4px; padding: 7px; border: 1px solid rgba(88,58,112,.1); border-radius: 18px; background: rgba(255,255,255,.9); box-shadow: 0 14px 38px rgba(58,36,76,.16); backdrop-filter: blur(20px); }
.dock-item { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 13px; color: var(--muted); }
.dock-item svg { width: 20px; height: 20px; }
.dock-item.active { background: var(--purple-soft); color: var(--purple); }

/* Base */
.section { position: relative; padding: var(--section-pad) 0; scroll-margin-top: 24px; }
.section-header { max-width: 680px; margin: 0 auto 38px; text-align: center; }
.section-header-split { max-width: none; display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(280px, .65fr); align-items: end; gap: 36px; text-align: left; }
.section-tag, .modal-kicker { display: inline-flex; align-items: center; min-height: 28px; padding: 0 10px; margin-bottom: 12px; border: 1px solid rgba(117,80,200,.1); border-radius: 10px; background: var(--purple-soft); color: var(--purple); font-size: 10px; line-height: 1; font-weight: 800; letter-spacing: .075em; text-transform: uppercase; }
.section-title { margin: 0; color: var(--text); font-size: clamp(30px, 4.6vw, 46px); line-height: 1.06; letter-spacing: -.048em; font-weight: 780; }
.section-desc { max-width: 620px; margin: 12px auto 0; color: var(--muted); font-size: 14px; line-height: 1.65; }
.section-header-split .section-desc { margin: 0 0 4px; }
.gradual-blur-item { opacity: 0; transform: translateY(24px); filter: blur(5px); transition: opacity .7s var(--ease), transform .7s var(--ease), filter .7s var(--ease); }
.gradual-blur-item.visible { opacity: 1; transform: none; filter: none; }
.glow-card { position: relative; --mouse-x: 50%; --mouse-y: 50%; }
.glow-border { position: absolute; inset: -1px; z-index: 0; border-radius: inherit; pointer-events: none; opacity: 0; background: radial-gradient(460px circle at var(--mouse-x) var(--mouse-y), rgba(117,80,200,.18), transparent 52%); transition: opacity .2s ease; }
.glow-card:hover .glow-border { opacity: 1; }
.card-inner { position: relative; z-index: 1; height: 100%; border: 1px solid rgba(88,58,112,.065); border-radius: inherit; background: var(--surface); box-shadow: var(--shadow); }

/* Buttons */
.btn { min-height: 44px; display: inline-flex; align-items: center; justify-content: center; gap: 9px; padding: 0 18px; border: 0; border-radius: 14px; cursor: pointer; font-size: 12px; line-height: 1; font-weight: 760; transition: transform .14s ease, background .16s ease, box-shadow .16s ease, border-color .16s ease; }
.btn svg { width: 17px; height: 17px; flex: 0 0 auto; }
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--purple); color: #fff; box-shadow: 0 10px 22px rgba(117,80,200,.19); }
.btn-primary:hover { background: var(--purple-dark); color: #fff; box-shadow: 0 13px 30px rgba(117,80,200,.23); }
.btn-secondary, .btn-outline { border: 1px solid var(--line); background: var(--surface); color: var(--purple-dark); box-shadow: var(--shadow-small); }
.btn-secondary:hover, .btn-outline:hover { border-color: #d8cae5; background: var(--surface-purple); color: var(--purple-dark); }
.btn-ghost { border: 1px solid transparent; background: transparent; color: var(--muted); }
.btn-ghost:hover { background: var(--surface-muted); color: var(--purple-dark); }
.btn-lg { min-height: 50px; padding-inline: 21px; border-radius: 15px; font-size: 13px; }
.btn-sm { min-height: 36px; }
.btn-full, .btn-wide { width: 100%; }
.btn-icon, .btn-icon-right { width: 17px; height: 17px; }

/* Hero */
.hero { overflow: hidden; min-height: 720px; display: flex; align-items: center; padding-top: clamp(52px, 6vw, 86px); padding-bottom: clamp(76px, 8vw, 108px); }
.hero-grid { display: grid; grid-template-columns: minmax(0, .88fr) minmax(520px, 1.12fr); align-items: center; gap: clamp(42px, 6vw, 78px); }
.hero-content { position: relative; z-index: 2; }
.hero-badge { display: inline-flex; align-items: center; gap: 9px; min-height: 34px; padding: 0 12px; margin-bottom: 20px; border: 1px solid rgba(46,157,104,.12); border-radius: 11px; background: rgba(255,255,255,.72); color: var(--green); box-shadow: var(--shadow-small); font-size: 10.5px; font-weight: 780; }
.badge-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 5px rgba(46,157,104,.1); }
.hero-title { margin: 0; color: var(--text); font-size: clamp(44px, 5.6vw, 68px); line-height: 1.015; letter-spacing: -.061em; font-weight: 790; }
.hero-title .accent { color: var(--purple); }
.hero-subtitle { max-width: 590px; margin: 23px 0 0; color: var(--text-soft); font-size: clamp(15px, 1.5vw, 17px); line-height: 1.7; }
.hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 11px; margin-top: 30px; }
.hero-trust { display: flex; align-items: center; flex-wrap: wrap; gap: 18px; margin-top: 26px; color: var(--muted); font-size: 10.5px; font-weight: 650; }
.hero-trust span { display: inline-flex; align-items: center; gap: 7px; }
.hero-trust svg { width: 16px; height: 16px; color: var(--purple); }
.hero-glow { position: absolute; pointer-events: none; border-radius: 50%; filter: blur(1px); }
.hero-glow-one { width: 580px; height: 580px; top: -170px; right: -200px; background: radial-gradient(circle, rgba(117,80,200,.13), transparent 68%); }
.hero-glow-two { width: 360px; height: 360px; left: -230px; bottom: -110px; background: radial-gradient(circle, rgba(169,138,231,.11), transparent 70%); }

.hero-product { position: relative; perspective: 1200px; }
.product-window { position: relative; overflow: hidden; padding: 16px; border: 1px solid rgba(88,58,112,.075); border-radius: 28px; background: rgba(255,255,255,.9); box-shadow: 0 32px 80px rgba(58,36,76,.14); transform: rotateY(-3deg) rotateX(1.2deg); transform-origin: center; }
.product-window::after { content: ""; position: absolute; inset: 0; pointer-events: none; background: linear-gradient(130deg, rgba(255,255,255,.45), transparent 28%); }
.product-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 5px 4px 14px; }
.product-brand { display: flex; align-items: center; gap: 9px; }
.mini-logo { width: 34px; height: 34px; border-radius: 11px; font-size: 14px; }
.product-brand > span:last-child { display: grid; }
.product-brand strong { font-size: 10px; line-height: 1.2; }
.product-brand small { color: var(--muted); font-size: 7.5px; }
.product-support { padding: 8px 10px; border: 1px solid var(--line); border-radius: 10px; background: #fff; color: var(--purple-dark); font-size: 7.5px; font-weight: 750; }
.product-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 12px; margin: 4px 2px 13px; }
.product-heading > div > span { color: var(--purple); font-size: 7px; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; }
.product-heading h2 { margin: 3px 0 0; font-size: 20px; line-height: 1.05; letter-spacing: -.045em; }
.product-heading p { margin: 5px 0 0; color: var(--muted); font-size: 8px; }
.product-status { display: inline-flex; align-items: center; gap: 6px; padding: 7px 9px; border-radius: 9px; background: #fff; color: var(--green); box-shadow: var(--shadow-small); font-size: 7.5px; font-weight: 760; }
.product-status i { width: 5px; height: 5px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 3px rgba(46,157,104,.1); }
.product-layout { display: grid; grid-template-columns: minmax(0, 1.45fr) minmax(150px, .7fr); gap: 10px; }
.product-main-card, .product-side-card { border: 1px solid rgba(88,58,112,.065); border-radius: 18px; background: #fff; box-shadow: 0 12px 35px rgba(58,36,76,.055); }
.product-main-card { padding: 15px; }
.product-card-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; }
.product-card-head > span { display: grid; gap: 2px; }
.product-card-head strong { font-size: 10px; }
.product-card-head small { color: var(--muted); font-size: 7px; }
.product-card-head b { padding: 6px 7px; border-radius: 8px; background: var(--green-soft); color: var(--green); font-size: 6.5px; }
.product-apps { display: grid; grid-template-columns: 1fr 1fr; gap: 7px; margin-top: 11px; }
.product-app { position: relative; min-width: 0; display: flex; align-items: center; gap: 8px; min-height: 58px; padding: 9px; border: 1px solid var(--line); border-radius: 13px; background: var(--surface-muted); }
.product-app.selected { border-color: #bda8df; background: var(--surface-purple); }
.product-app > span:nth-child(2) { min-width: 0; display: grid; gap: 2px; }
.product-app strong { font-size: 8px; }
.product-app small { overflow: hidden; color: var(--muted); font-size: 6px; text-overflow: ellipsis; white-space: nowrap; }
.product-app em { position: absolute; top: 6px; right: 6px; color: var(--purple); font-size: 5px; font-style: normal; font-weight: 800; text-transform: uppercase; }
.app-logo { width: 29px; height: 29px; display: grid; place-items: center; flex: 0 0 auto; border-radius: 9px; background: var(--purple-soft); color: var(--purple); font-size: 10px; font-weight: 800; }
.app-logo.secondary { background: #edf0fb; color: #6672b9; }
.app-logo.small { width: 27px; height: 27px; }
.product-connect-row { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-top: 8px; padding: 9px; border: 1px solid var(--line); border-radius: 13px; }
.product-connect-row > span { display: flex; align-items: center; gap: 7px; }
.product-connect-row > span > span:last-child { display: grid; }
.product-connect-row small { color: var(--muted-light); font-size: 5.5px; text-transform: uppercase; }
.product-connect-row strong { font-size: 8px; }
.product-connect-row button { min-height: 30px; padding: 0 11px; border: 0; border-radius: 9px; background: var(--purple); color: #fff; font-size: 7px; font-weight: 750; }
.product-utilities { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; margin-top: 7px; }
.product-utilities span { padding: 8px; border: 1px solid var(--line); border-radius: 10px; background: var(--surface-muted); color: var(--purple-dark); font-size: 6.5px; font-weight: 680; text-align: center; }
.product-side-card { padding: 14px; }
.side-card-title { display: flex; align-items: flex-start; justify-content: space-between; gap: 8px; }
.side-card-title > span { display: grid; }
.side-card-title small { color: var(--purple); font-size: 6px; font-weight: 800; text-transform: uppercase; }
.side-card-title strong { margin-top: 2px; font-size: 9px; }
.side-card-title i { width: 25px; height: 25px; display: grid; place-items: center; border-radius: 8px; background: var(--green-soft); color: var(--green); font-size: 9px; font-style: normal; }
.product-side-card dl { margin: 12px 0 0; }
.product-side-card dl div { display: flex; justify-content: space-between; gap: 8px; padding: 7px 0; border-top: 1px solid var(--line); }
.product-side-card dt { color: var(--muted); font-size: 6px; }
.product-side-card dd { margin: 0; font-size: 6px; font-weight: 750; text-align: right; }
.usage-line { margin-top: 8px; }
.usage-line > span { display: block; height: 5px; overflow: hidden; border-radius: 999px; background: #eee9f2; }
.usage-line i { display: block; width: 40%; height: 100%; border-radius: inherit; background: var(--purple); }
.usage-line small { display: block; margin-top: 5px; color: var(--muted); font-size: 5.5px; }
.floating-card { position: absolute; z-index: 4; display: flex; align-items: center; gap: 9px; padding: 10px 12px; border: 1px solid rgba(88,58,112,.07); border-radius: 15px; background: rgba(255,255,255,.94); box-shadow: 0 15px 38px rgba(58,36,76,.13); backdrop-filter: blur(14px); }
.floating-card > span:last-child { display: grid; }
.floating-card strong { font-size: 8px; }
.floating-card small { color: var(--muted); font-size: 6px; }
.floating-icon { width: 28px; height: 28px; display: grid; place-items: center; border-radius: 9px; background: var(--purple-soft); color: var(--purple); font-size: 10px; font-weight: 800; }
.floating-speed { left: -25px; bottom: 48px; }
.floating-devices { right: -24px; top: 84px; }

/* Metrics */
.benefits-strip { position: relative; z-index: 2; }
.hero-stats { display: grid; grid-template-columns: repeat(4, 1fr); overflow: hidden; border: 1px solid rgba(88,58,112,.065); border-radius: 22px; background: rgba(255,255,255,.82); box-shadow: var(--shadow); backdrop-filter: blur(16px); }
.stat { position: relative; min-height: 112px; display: flex; flex-wrap: wrap; align-content: center; justify-content: center; padding: 18px; text-align: center; }
.stat + .stat::before { content: ""; position: absolute; left: 0; top: 24px; bottom: 24px; width: 1px; background: var(--line); }
.stat-value, .stat-suffix { color: var(--purple-dark); font-size: 27px; line-height: 1; font-weight: 790; letter-spacing: -.04em; }
.stat-suffix { font-size: 16px; align-self: center; margin-left: 1px; }
.stat-label { flex-basis: 100%; margin-top: 8px; color: var(--muted); font-size: 9.5px; font-weight: 650; }
.stat-divider { display: none; }

/* Features */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; }
.feature-card { border-radius: var(--radius-xl); }
.feature-card .card-inner { min-height: 230px; padding: 24px; transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease; }
.feature-card:hover .card-inner { transform: translateY(-3px); border-color: #dfd3e8; box-shadow: var(--shadow-hover); }
.feature-card-large { grid-column: span 2; }
.feature-card-wide { grid-column: span 2; }
.feature-icon { width: 45px; height: 45px; display: grid; place-items: center; border-radius: 15px; background: var(--purple-soft); color: var(--purple); }
.feature-icon svg { width: 22px; height: 22px; }
.feature-kicker { display: block; margin-top: 18px; color: var(--purple); font-size: 9px; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; }
.feature-card h3 { max-width: 520px; margin: 7px 0 0; font-size: 18px; line-height: 1.25; letter-spacing: -.025em; }
.feature-card p { max-width: 600px; margin: 9px 0 0; color: var(--muted); font-size: 11.5px; line-height: 1.6; }
.feature-meter { max-width: 460px; margin-top: 24px; }
.feature-meter > span { display: block; height: 7px; overflow: hidden; border-radius: 999px; background: #eee9f2; }
.feature-meter i { display: block; width: 88%; height: 100%; border-radius: inherit; background: linear-gradient(90deg, var(--purple), #a877d3); }
.feature-meter small { display: block; margin-top: 8px; color: var(--muted); font-size: 9px; }
.feature-inline { display: flex; align-items: flex-start; gap: 18px; }
.feature-inline .feature-kicker { margin-top: 0; }

/* Steps */
.steps-section { padding-top: 44px; }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; }
.step-card { position: relative; min-height: 235px; overflow: hidden; padding: 25px; border: 1px solid rgba(88,58,112,.065); border-radius: var(--radius-xl); background: var(--surface); box-shadow: var(--shadow); }
.step-number { position: absolute; right: 18px; top: 10px; color: rgba(117,80,200,.08); font-size: 64px; line-height: 1; font-weight: 800; letter-spacing: -.06em; }
.step-icon { width: 47px; height: 47px; display: grid; place-items: center; border-radius: 15px; background: var(--purple-soft); color: var(--purple); }
.step-icon svg { width: 23px; height: 23px; }
.step-card h3 { position: relative; margin: 38px 0 0; font-size: 17px; letter-spacing: -.025em; }
.step-card p { position: relative; margin: 8px 0 0; color: var(--muted); font-size: 11.5px; line-height: 1.6; }

/* Pricing */
.pricing { overflow: hidden; }
.pricing::before { content: ""; position: absolute; inset: 8% -10% 0; z-index: -1; background: radial-gradient(circle at 50% 36%, rgba(117,80,200,.07), transparent 48%); }
.pricing-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; align-items: stretch; }
.pricing-card { border-radius: var(--radius-xl); }
.pricing-card .card-inner { min-height: 390px; display: flex; flex-direction: column; padding: 23px; transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease; }
.pricing-card:hover .card-inner { transform: translateY(-4px); border-color: #d9cce5; box-shadow: var(--shadow-hover); }
.pricing-card.popular .card-inner { border-color: #c8b5e4; background: linear-gradient(180deg, var(--surface-purple), #fff 34%); box-shadow: 0 22px 60px rgba(82,52,112,.12); }
.popular-badge { align-self: flex-start; display: inline-flex; min-height: 25px; align-items: center; padding: 0 9px; margin-bottom: 14px; border-radius: 8px; background: var(--purple); color: #fff; font-size: 8px; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; }
.plan-header { display: flex; align-items: center; gap: 10px; }
.plan-icon { width: 35px; height: 35px; display: grid; place-items: center; border-radius: 11px; background: var(--purple-soft); color: var(--purple); }
.plan-icon svg { width: 19px; height: 19px; }
.plan-name { margin: 0; font-size: 15px; letter-spacing: -.02em; }
.plan-period { margin-top: 15px; color: var(--muted); font-size: 9.5px; font-weight: 650; }
.plan-price { display: flex; align-items: baseline; gap: 3px; margin-top: 4px; }
.price-value { color: var(--text); font-size: 38px; line-height: 1; font-weight: 790; letter-spacing: -.05em; }
.price-currency { color: var(--purple); font-size: 17px; font-weight: 750; }
.plan-save { align-self: flex-start; margin-top: 8px; padding: 5px 8px; border-radius: 8px; background: var(--green-soft); color: var(--green); font-size: 8px; font-weight: 750; }
.plan-features { display: grid; gap: 11px; margin: 22px 0 24px; padding: 18px 0 0; border-top: 1px solid var(--line); list-style: none; }
.plan-features li { display: flex; align-items: flex-start; gap: 8px; color: var(--text-soft); font-size: 10px; line-height: 1.45; }
.plan-features svg { width: 15px; height: 15px; flex: 0 0 auto; color: var(--purple); }
.buy-btn { width: 100%; margin-top: auto; }
.payment-methods { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 12px; margin-top: 25px; color: var(--muted); font-size: 9.5px; }
.payment-badge { min-height: 34px; display: inline-flex; align-items: center; gap: 7px; padding: 0 11px; border: 1px solid var(--line); border-radius: 11px; background: #fff; color: var(--purple-dark); font-size: 10px; font-weight: 750; box-shadow: var(--shadow-small); }
.payment-badge svg { width: 16px; height: 16px; }

/* FAQ */
.faq-layout { display: grid; grid-template-columns: minmax(260px, .62fr) minmax(0, 1fr); gap: clamp(35px, 6vw, 82px); align-items: start; }
.faq-intro { position: sticky; top: 28px; }
.faq-intro .section-desc { margin-inline: 0; }
.faq-intro .btn { margin-top: 22px; }
.faq-list { display: grid; gap: 10px; }
.faq-item { border-radius: 18px; }
.faq-item .card-inner { overflow: hidden; box-shadow: var(--shadow-small); }
.faq-question { width: 100%; min-height: 68px; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 18px 20px; border: 0; background: transparent; color: var(--text); text-align: left; cursor: pointer; font-size: 12.5px; font-weight: 720; }
.faq-arrow { width: 18px; height: 18px; flex: 0 0 auto; color: var(--purple); transition: transform .25s var(--ease); }
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease); }
.faq-item.open .faq-answer { max-height: 280px; }
.faq-answer p { margin: 0; padding: 0 20px 19px; color: var(--muted); font-size: 11px; line-height: 1.65; }

/* CTA & footer */
.final-cta { padding-top: 42px; }
.cta-card { display: flex; align-items: center; justify-content: space-between; gap: 35px; padding: 34px; border: 1px solid rgba(88,58,112,.07); border-radius: 28px; background: linear-gradient(135deg, #fff, var(--surface-purple)); box-shadow: var(--shadow); }
.cta-card h2 { margin: 0; font-size: clamp(27px, 4vw, 40px); line-height: 1.08; letter-spacing: -.045em; }
.cta-card p { max-width: 630px; margin: 10px 0 0; color: var(--muted); font-size: 12.5px; }
.cta-actions { display: flex; flex: 0 0 auto; flex-wrap: wrap; gap: 9px; }
.footer { padding: 20px 0 max(36px, calc(24px + env(safe-area-inset-bottom))); }
.footer-inner { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 24px; padding-top: 28px; border-top: 1px solid var(--line); }
.footer-brand { display: flex; align-items: center; gap: 10px; }
.footer-logo { width: 38px; height: 38px; border-radius: 12px; font-size: 15px; }
.footer-brand > span:last-child { display: grid; }
.footer-brand strong { font-size: 12px; }
.footer-brand small { color: var(--muted); font-size: 8px; }
.footer-links, .footer-legal { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 8px 17px; }
.footer-links a, .footer-legal a, .footer-legal span { color: var(--muted); font-size: 9px; }
.footer-links a:hover, .footer-legal a:hover { color: var(--purple-dark); }
.footer-legal { grid-column: 1 / -1; justify-content: space-between; padding-top: 17px; border-top: 1px solid var(--line); }

/* Payment modal */
.modal-overlay { position: fixed; inset: 0; z-index: 2000; display: grid; place-items: center; padding: 20px; background: rgba(37,29,45,.32); backdrop-filter: blur(10px); opacity: 0; visibility: hidden; transition: opacity .25s ease, visibility .25s ease; }
.modal-overlay.active { opacity: 1; visibility: visible; }
.modal { width: min(440px, 100%); max-height: min(90vh, 760px); border-radius: 26px; }
.modal .card-inner { max-height: min(90vh, 760px); overflow-y: auto; padding: 32px 28px 27px; box-shadow: 0 28px 80px rgba(37,29,45,.2); }
.modal-close { position: absolute; top: 14px; right: 14px; z-index: 5; width: 35px; height: 35px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 11px; background: var(--surface-muted); color: var(--muted); cursor: pointer; font-size: 20px; }
.modal-step { display: flex; flex-direction: column; align-items: center; text-align: center; }
.modal-icon { width: 54px; height: 54px; display: grid; place-items: center; margin-bottom: 14px; border-radius: 17px; background: var(--purple-soft); color: var(--purple); }
.modal-icon svg { width: 27px; height: 27px; }
.modal-kicker { margin-bottom: 10px; }
.modal-step h3 { margin: 0; font-size: 21px; letter-spacing: -.03em; }
.modal-step > p { max-width: 330px; margin: 8px 0 0; color: var(--muted); font-size: 11.5px; line-height: 1.6; }
.tg-login-wrap { min-height: 42px; margin-top: 19px; }
#tg-wait-note { margin-top: 10px; color: var(--muted); font-size: 10px; }
#guest-checkout-wrap { width: 100%; margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--line); }
#guest-checkout-wrap p { margin: 0 0 11px; color: var(--muted); font-size: 10.5px; line-height: 1.5; }
.modal-plan-info { width: 100%; margin-top: 18px; padding: 15px; border: 1px solid var(--line); border-radius: 15px; background: var(--surface-muted); color: var(--text-soft); font-size: 10.5px; text-align: left; }
.modal-plan-info label { border-color: var(--line) !important; background: #fff; color: var(--text-soft); }
.modal-plan-info input { accent-color: var(--purple); }
.confirm-user, .confirm-plan { width: 100%; margin-top: 16px; padding: 14px; border: 1px solid var(--line); border-radius: 15px; background: var(--surface-muted); }
.confirm-user { display: flex; align-items: center; gap: 11px; text-align: left; }
.confirm-user img { width: 42px; height: 42px; border-radius: 13px; object-fit: cover; }
.confirm-user-info { display: grid; }
.confirm-user-name { font-size: 12px; font-weight: 720; }
.confirm-user-id { color: var(--muted); font-family: "JetBrains Mono", monospace; font-size: 9px; }
.confirm-plan { color: var(--text-soft); font-size: 11px; }
.plan-price-confirm { color: var(--purple-dark); font-size: 23px; font-weight: 790; }
#pay-btn { margin-top: 14px; }
#change-account { margin-top: 7px; }
.spinner { width: 45px; height: 45px; margin-bottom: 17px; border: 3px solid var(--purple-soft); border-top-color: var(--purple); border-radius: 50%; animation: spin .75s linear infinite; }
.processing-status { margin-top: 17px; padding: 9px 12px; border-radius: 10px; background: var(--surface-muted); color: var(--muted); font-size: 10px; font-weight: 650; }
.success-icon { background: var(--green-soft); color: var(--green); }
.error-icon { background: var(--red-soft); color: var(--red); }
.toast, .connect-toast { position: fixed; left: 50%; bottom: max(24px, calc(14px + env(safe-area-inset-bottom))); z-index: 3000; max-width: calc(100% - 32px); padding: 11px 15px; border: 1px solid rgba(88,58,112,.08); border-radius: 12px; background: var(--text); color: #fff; box-shadow: 0 15px 38px rgba(37,29,45,.22); opacity: 0; visibility: hidden; transform: translate(-50%, 12px); transition: opacity .2s ease, transform .2s ease, visibility .2s ease; font-size: 10.5px; font-weight: 650; text-align: center; }
.toast.show, .connect-toast.show { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
@keyframes spin { to { transform: rotate(360deg); } }

/* Shared account/connect/result pages */
.nav { width: min(var(--container), calc(100% - 40px)); min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 20px; margin: 0 auto; padding-top: max(12px, env(safe-area-inset-top)); }
.nav .logo { display: inline-flex; align-items: center; gap: 10px; color: var(--text); font-size: 13px; font-weight: 750; }
.logo-mark { width: 40px; height: 40px; display: grid; place-items: center; border-radius: 13px; background: var(--purple); color: #fff; box-shadow: var(--shadow-small); }
.nav-links { display: flex; align-items: center; gap: 4px; padding: 4px; border: 1px solid var(--line); border-radius: 14px; background: rgba(255,255,255,.76); box-shadow: var(--shadow-small); }
.nav-links a { padding: 8px 11px; border-radius: 10px; color: var(--muted); font-size: 10.5px; font-weight: 650; }
.nav-links a.active, .nav-links a:hover { background: var(--surface-purple); color: var(--purple-dark); }
.noise { display: none; }
.result-page { min-height: 100vh; display: grid; place-items: center; padding: max(30px, env(safe-area-inset-top)) 20px max(30px, env(safe-area-inset-bottom)); }
.result-card { width: min(460px, 100%); border-radius: 26px; }
.result-card .card-inner { padding: 38px 30px; text-align: center; }
.result-icon { font-size: 52px; margin-bottom: 14px; }
.sub-link-box { border-color: var(--line) !important; background: var(--surface-purple) !important; color: var(--text) !important; }
.copy-btn { background: var(--purple-soft) !important; color: var(--purple-dark) !important; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  #pixel-blast { display: none; }
}

@media (max-width: 1080px) {
  .hero-grid { grid-template-columns: minmax(0, .82fr) minmax(460px, 1.18fr); gap: 38px; }
  .product-window { transform: none; }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-card .card-inner { min-height: 350px; }
  .header-nav { display: none; }
}

@media (max-width: 860px) {
  .site-header { padding-bottom: 4px; }
  .header-account { display: none; }
  .hero { min-height: 0; padding-top: 52px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-content { max-width: 680px; text-align: center; margin-inline: auto; }
  .hero-subtitle { margin-inline: auto; }
  .hero-actions, .hero-trust { justify-content: center; }
  .hero-product { width: min(660px, 100%); margin: 6px auto 0; }
  .floating-speed { left: 10px; }
  .floating-devices { right: 10px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-card-large, .feature-card-wide { grid-column: span 2; }
  .steps-grid { grid-template-columns: 1fr; }
  .step-card { min-height: 190px; }
  .step-card h3 { margin-top: 28px; }
  .faq-layout { grid-template-columns: 1fr; gap: 28px; }
  .faq-intro { position: static; text-align: center; }
  .faq-intro .section-desc { margin-inline: auto; }
  .cta-card { flex-direction: column; align-items: flex-start; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-links, .footer-legal { justify-content: flex-start; }
}

@media (max-width: 680px) {
  .container { width: min(100% - 28px, var(--container)); }
  .site-header { padding-top: max(12px, env(safe-area-inset-top)); }
  .header-inner { min-height: 48px; }
  .brand-logo { width: 42px; height: 42px; border-radius: 14px; }
  .brand-copy span { display: none; }
  .header-cta { min-height: 40px !important; padding-inline: 14px !important; }
  .dock { display: block; }
  .section { padding: clamp(58px, 14vw, 82px) 0; }
  .hero { padding-top: 44px; padding-bottom: 66px; }
  .hero-title { font-size: clamp(40px, 12vw, 58px); }
  .hero-subtitle { font-size: 14px; }
  .hero-actions { display: grid; grid-template-columns: 1fr; }
  .hero-actions .btn { width: 100%; }
  .hero-trust { gap: 11px; }
  .hero-product { margin-top: 2px; }
  .product-window { padding: 11px; border-radius: 22px; }
  .product-layout { grid-template-columns: 1fr; }
  .product-side-card { display: none; }
  .product-heading h2 { font-size: 17px; }
  .product-app { min-height: 54px; }
  .floating-card { display: none; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(3)::before { display: none; }
  .stat:nth-child(n+3) { border-top: 1px solid var(--line); }
  .stat { min-height: 96px; }
  .section-header-split { grid-template-columns: 1fr; gap: 14px; text-align: center; }
  .section-header-split .section-desc { margin-inline: auto; }
  .features-grid { grid-template-columns: 1fr; }
  .feature-card-large, .feature-card-wide { grid-column: auto; }
  .feature-card .card-inner { min-height: 0; }
  .feature-inline { display: block; }
  .feature-inline .feature-kicker { margin-top: 18px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card .card-inner { min-height: 0; }
  .payment-methods > span { display: none; }
  .cta-card { padding: 25px; }
  .cta-actions { width: 100%; display: grid; }
  .cta-actions .btn { width: 100%; }
  .footer { padding-bottom: 86px; }
  .footer-legal { gap: 10px 16px; }
  .modal-overlay { padding: 10px; align-items: end; }
  .modal { width: 100%; border-radius: 24px 24px 16px 16px; }
  .modal .card-inner { max-height: 88vh; padding: 30px 18px 22px; border-radius: inherit; }
  .nav { width: calc(100% - 28px); }
  .nav-links a:not(.active) { display: none; }
  .result-card .card-inner { padding: 30px 20px; }
}

@media (max-width: 410px) {
  .brand-copy strong { font-size: 14px; }
  .hero-title { font-size: 39px; }
  .product-apps { grid-template-columns: 1fr; }
  .product-app:nth-child(2) { display: none; }
  .product-connect-row { align-items: stretch; flex-direction: column; }
  .product-connect-row button { min-height: 34px; }
  .hero-trust { align-items: flex-start; flex-direction: column; padding-left: 4px; }
}
