/* ============================================================================
   AI SHOP MANAGER — Bento Landing (premium light theme)
   Aceternity-style bento grid: light minimal base, peach/orange/purple mesh
   glows, glass surfaces, smooth hover transitions. System fonts only.
   ========================================================================== */

/* ------------------------------- Tokens ---------------------------------- */
:root {
  --bg: #f7f7f8;
  --surface: #ffffff;
  --ink: #101014;
  --ink-2: #1c1c22;
  --text-2: #55555f;
  --text-3: #8a8a94;

  --accent: #7c3aed;          /* violet   */
  --accent-2: #d946ef;        /* fuchsia  */
  --accent-3: #f97316;        /* orange   */
  --peach: #fdba74;

  --grad-accent: linear-gradient(92deg, #7c3aed 0%, #d946ef 48%, #f97316 100%);

  --brd: rgba(15, 15, 25, 0.09);
  --brd-strong: rgba(124, 58, 237, 0.35);
  --shadow-sm: 0 1px 2px rgba(16, 16, 20, 0.05), 0 8px 24px rgba(16, 16, 20, 0.05);
  --shadow-md: 0 2px 4px rgba(16, 16, 20, 0.05), 0 18px 44px rgba(16, 16, 20, 0.09);
  --shadow-lg: 0 24px 70px rgba(20, 20, 40, 0.16);
  --ring: 0 0 0 4px rgba(124, 58, 237, 0.15);

  --danger: #dc2626;
  --ok: #16a34a;

  --radius: 16px;
  --radius-lg: 24px;

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

  --header-h: 68px;
  --container: 1200px;
}

/* -------------------------------- Reset ---------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg, canvas { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul[role="list"], ol[role="list"] { list-style: none; padding: 0; }
button, input, select, textarea { font: inherit; color: inherit; }
::selection { background: rgba(124, 58, 237, 0.22); }

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

/* ------------------------------ Utilities -------------------------------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: clamp(18px, 4vw, 32px); }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: fixed; top: -60px; left: 16px; z-index: 200;
  padding: 10px 16px; border-radius: 10px;
  background: var(--ink); color: #fff; font-weight: 600;
  transition: top 0.2s ease;
}
.skip-link:focus { top: 12px; }

.section { padding: clamp(64px, 9vw, 110px) 0; position: relative; }
.section-head { max-width: 720px; margin: 0 auto clamp(36px, 5vw, 56px); text-align: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  margin-bottom: 14px;
  font-family: var(--font-mono); font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.24em; text-transform: uppercase; color: var(--accent);
}
.section-head h2, .trust-inner h2, .contact-copy h2 {
  font-size: clamp(1.8rem, 4vw, 2.7rem); font-weight: 800; letter-spacing: -0.025em; line-height: 1.15;
}
.section-sub { margin-top: 12px; color: var(--text-2); font-size: clamp(0.98rem, 2vw, 1.08rem); }
.visual-note {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  margin-top: 26px; font-size: 0.8rem; color: var(--text-3);
}
.visual-note .icon { width: 15px; height: 15px; flex: none; }

.pulse-dot {
  width: 8px; height: 8px; border-radius: 50%; flex: none;
  background: var(--ok);
  box-shadow: 0 0 0 0 rgba(22, 163, 74, 0.5);
  animation: pulse 2.4s ease-out infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(22, 163, 74, 0.45); }
  70% { box-shadow: 0 0 0 9px rgba(22, 163, 74, 0); }
  100% { box-shadow: 0 0 0 0 rgba(22, 163, 74, 0); }
}
.status-chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 14px; border-radius: 999px;
  font-size: 0.76rem; font-weight: 600; letter-spacing: 0.06em;
  color: var(--text-2); background: rgba(255, 255, 255, 0.75);
  border: 1px solid var(--brd); backdrop-filter: blur(8px);
}
.fineprint { margin-top: 14px; font-size: 0.76rem; color: var(--text-3); }

.icon { width: 20px; height: 20px; fill: none; }

/* -------------------------------- Buttons -------------------------------- */
.btn {
  position: relative;
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 12px 22px; border: 0; border-radius: 999px;
  font-weight: 600; font-size: 0.92rem; letter-spacing: 0.01em;
  cursor: pointer; white-space: nowrap;
  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}
.btn-primary {
  color: #fff;
  background: var(--grad-accent);
  background-size: 150% 100%;
  box-shadow: 0 6px 20px rgba(124, 58, 237, 0.28);
}
.btn-primary:hover {
  transform: translateY(-2px);
  background-position: 100% 0;
  box-shadow: 0 12px 32px rgba(217, 70, 239, 0.35);
}
.btn-ghost {
  color: var(--ink); background: var(--surface);
  border: 1px solid var(--brd); box-shadow: var(--shadow-sm);
}
.btn-ghost:hover { transform: translateY(-2px); border-color: var(--brd-strong); box-shadow: var(--shadow-md); }
.btn-lg { padding: 15px 30px; font-size: 1rem; }
.btn-sm { padding: 9px 16px; font-size: 0.84rem; }
.btn[disabled] { opacity: 0.65; cursor: not-allowed; transform: none; }

.btn-spinner {
  display: none; width: 16px; height: 16px; flex: none;
  border: 2px solid rgba(255, 255, 255, 0.4); border-top-color: #fff;
  border-radius: 50%; animation: spin 0.7s linear infinite;
}
.btn.is-loading .btn-spinner { display: inline-block; }
.btn.is-loading .btn-label { opacity: 0.85; }
@keyframes spin { to { transform: rotate(360deg); } }

.icon-btn { width: 17px; height: 17px; }

/* -------------------------------- Header --------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  height: var(--header-h);
  background: rgba(247, 247, 248, 0.8);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, background 0.3s ease;
}
.site-header.is-scrolled { border-bottom-color: var(--brd); background: rgba(255, 255, 255, 0.86); }
.header-inner { display: flex; align-items: center; gap: 22px; height: 100%; }
.brand { display: inline-flex; align-items: center; gap: 11px; flex: none; }
.brand-mark {
  width: 36px; height: 36px; flex: none; border-radius: 10px; overflow: hidden;
  box-shadow: 0 4px 14px rgba(124, 58, 237, 0.3);
}
.brand-mark img { width: 100%; height: 100%; object-fit: cover; }
.brand-name { font-weight: 800; font-size: 1.02rem; letter-spacing: -0.01em; }

/* "by DukanBoxx" secondary brand line (header + footer brand stacks) */
.brand { display: grid; grid-template-columns: auto auto; align-items: center; column-gap: 11px; }
.brand-mark { grid-row: 1 / 3; }
.brand-sub {
  grid-column: 2; margin-top: -2px;
  font-size: 1.02rem; font-weight: 800; letter-spacing: 0.06em;
  background: linear-gradient(90deg, #22d3ee 10%, #3b82f6 90%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: #22d3ee;
}
@media (max-width: 480px) { .brand-sub { font-size: 0.9rem; } }

.main-nav { margin-left: auto; }
.main-nav ul { display: flex; gap: 4px; }
.main-nav a {
  padding: 9px 14px; border-radius: 999px;
  font-size: 0.9rem; font-weight: 500; color: var(--text-2);
  transition: color 0.2s ease, background 0.2s ease;
}
.main-nav a:hover { color: var(--ink); background: rgba(15, 15, 25, 0.05); }

.header-actions { display: flex; align-items: center; gap: 12px; flex: none; }

.nav-toggle {
  display: none; width: 42px; height: 42px; flex: none;
  align-items: center; justify-content: center;
  background: var(--surface); border: 1px solid var(--brd); border-radius: 12px;
  cursor: pointer;
}
.nav-toggle .icon { width: 20px; height: 20px; }
.nav-toggle .icon-close { display: none; }
.nav-toggle[aria-expanded="true"] .icon-menu { display: none; }
.nav-toggle[aria-expanded="true"] .icon-close { display: block; }

.mobile-menu {
  position: fixed; inset: var(--header-h) 0 0 0; z-index: 90;
  background: rgba(247, 247, 248, 0.97); backdrop-filter: blur(16px);
  padding: 26px clamp(18px, 5vw, 32px) 40px;
  overflow-y: auto;
}
.mobile-menu nav ul { display: grid; gap: 4px; margin-bottom: 22px; }
.mobile-menu a:not(.btn) {
  display: flex; align-items: baseline; gap: 14px;
  padding: 14px 12px; border-radius: 14px;
  font-size: 1.25rem; font-weight: 700; letter-spacing: -0.01em;
  transition: background 0.2s ease;
}
.mobile-menu a:not(.btn):hover { background: rgba(15, 15, 25, 0.05); }
.mobile-menu a span {
  font-family: var(--font-mono); font-size: 0.72rem; color: var(--accent);
}

/* --------------------------------- Hero ---------------------------------- */
.hero {
  position: relative;
  padding: clamp(64px, 10vw, 120px) 0 clamp(56px, 8vw, 90px);
  text-align: center;
  overflow: clip;
}
.hero-glow { position: absolute; inset: 0; pointer-events: none; }
.glow { position: absolute; border-radius: 50%; filter: blur(85px); opacity: 0.5; }
.glow-peach  { width: 44vw; height: 44vw; min-width: 380px; min-height: 380px; top: -14%; left: -10%; background: radial-gradient(circle, #fdba74 0%, transparent 65%); }
.glow-violet { width: 40vw; height: 40vw; min-width: 360px; min-height: 360px; top: -8%; right: -12%; background: radial-gradient(circle, #c4b5fd 0%, transparent 65%); }
.glow-orange { width: 34vw; height: 34vw; min-width: 300px; min-height: 300px; top: 34%; left: 34%; background: radial-gradient(circle, #f0abfc 0%, transparent 65%); opacity: 0.32; }

.hero-inner { position: relative; z-index: 1; display: grid; justify-items: center; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 8px 16px; margin-bottom: 26px;
  font-size: 0.76rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--text-2);
  background: rgba(255, 255, 255, 0.75); border: 1px solid var(--brd); border-radius: 999px;
  box-shadow: var(--shadow-sm); backdrop-filter: blur(8px);
}
.hero-title {
  max-width: 900px;
  font-size: clamp(2.4rem, 6.2vw, 4.3rem);
  font-weight: 800; letter-spacing: -0.032em; line-height: 1.06;
  text-wrap: balance;
}
.grad-text {
  background: var(--grad-accent);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-sub {
  max-width: 640px; margin-top: 20px;
  font-size: clamp(1.02rem, 2.3vw, 1.2rem); color: var(--text-2);
}

/* --------------------------- Waitlist form -------------------------------- */
.waitlist-form { width: 100%; max-width: 560px; margin-top: 34px; }
.waitlist-row { display: flex; gap: 12px; }
.waitlist-row .field { flex: 1; }
.waitlist-row input {
  width: 100%; height: 54px; padding: 0 20px;
  background: var(--surface); border: 1px solid var(--brd); border-radius: 999px;
  box-shadow: var(--shadow-sm);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.waitlist-row input::placeholder { color: var(--text-3); }
.waitlist-row input:focus { outline: none; border-color: var(--brd-strong); box-shadow: var(--ring); }
.waitlist-row .btn { height: 54px; flex: none; }

.hero-offer {
  display: inline-flex; align-items: flex-start; gap: 9px;
  max-width: 560px; margin-top: 22px; padding: 12px 18px;
  font-size: 0.9rem; color: var(--text-2); text-align: left;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.07), rgba(249, 115, 22, 0.07));
  border: 1px solid rgba(124, 58, 237, 0.2); border-radius: 14px;
}
.hero-offer strong { color: var(--ink); }
.hero-fineprint { margin-top: 10px; font-size: 0.76rem; color: var(--text-3); }

/* ------------------------- Phone UI mock-up ------------------------------- */
.phone-wrap { margin-top: clamp(44px, 7vw, 72px); display: grid; justify-items: center; }
.phone {
  position: relative;
  width: clamp(250px, 27vw, 300px); aspect-ratio: 9 / 19;
  padding: 9px; border-radius: 44px;
  background: linear-gradient(160deg, #26262e, #0c0c10);
  box-shadow:
    0 40px 90px rgba(16, 16, 20, 0.35),
    0 0 0 1px rgba(255, 255, 255, 0.06) inset,
    0 0 90px rgba(124, 58, 237, 0.18);
  animation: phone-float 7s ease-in-out infinite;
}
@keyframes phone-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
.phone::before { /* notch */
  content: ""; position: absolute; top: 18px; left: 50%; transform: translateX(-50%);
  width: 34%; height: 14px; border-radius: 999px; background: #0c0c10; z-index: 2;
}
.phone-screen {
  width: 100%; height: 100%; border-radius: 36px; overflow: hidden;
  background: linear-gradient(175deg, #17171d 0%, #0e0e13 100%);
  color: #e9e9ee;
  display: flex; flex-direction: column; gap: 12px;
  padding: 42px 14px 12px;
}
.ps-head { display: flex; align-items: center; gap: 8px; }
.ps-head img { width: 26px; height: 26px; border-radius: 8px; }
.ps-name { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.02em; }
.ps-live {
  margin-left: auto; padding: 3px 8px; border-radius: 999px;
  font-size: 0.55rem; font-weight: 700; letter-spacing: 0.14em;
  color: #86efac; background: rgba(34, 197, 94, 0.14);
}
.ps-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.ps-stat {
  padding: 10px; border-radius: 14px;
  background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.07);
}
.ps-stat span { display: block; font-size: 0.56rem; letter-spacing: 0.1em; text-transform: uppercase; color: #9a9aa6; }
.ps-stat strong { display: block; font-size: 0.95rem; letter-spacing: -0.01em; margin: 2px 0 7px; }
.ps-stat i {
  display: block; height: 4px; border-radius: 999px;
  background: linear-gradient(90deg, #a78bfa, #f97316);
  width: var(--w, 60%);
}
.ps-chart {
  flex: 1; display: flex; align-items: flex-end; gap: 7px;
  padding: 12px 10px; border-radius: 14px;
  background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.07);
}
.ps-chart i {
  flex: 1; border-radius: 6px 6px 3px 3px;
  height: var(--h, 50%);
  background: linear-gradient(180deg, #a78bfa, rgba(167, 139, 250, 0.25));
}
.ps-chart i:nth-child(6) { background: linear-gradient(180deg, #fb923c, rgba(251, 146, 60, 0.25)); }
.ps-chat {
  display: flex; gap: 8px; align-items: flex-start;
  padding: 10px; border-radius: 14px;
  background: rgba(124, 58, 237, 0.16); border: 1px solid rgba(167, 139, 250, 0.3);
}
.ps-bot {
  flex: none; width: 22px; height: 22px; border-radius: 8px;
  display: grid; place-items: center;
  font-size: 0.55rem; font-weight: 800; color: #fff;
  background: var(--grad-accent);
}
.ps-chat p { font-size: 0.66rem; line-height: 1.45; color: #cfcfda; }
.ps-nav { display: flex; justify-content: space-around; padding-top: 2px; }
.ps-nav i { width: 22px; height: 4px; border-radius: 999px; background: rgba(255, 255, 255, 0.14); }
.ps-nav i.on { background: var(--grad-accent); }
.phone-note { margin-top: 18px; font-size: 0.74rem; color: var(--text-3); }

/* ------------------------------- Bento grid ------------------------------- */
.bento-grid {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.bento-card {
  position: relative;
  display: flex; flex-direction: column; gap: 12px;
  padding: clamp(22px, 3vw, 30px);
  background: var(--surface);
  border: 1px solid var(--brd); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease, border-color 0.4s ease;
}
.bento-card:hover {
  transform: translateY(-6px);
  border-color: var(--brd-strong);
  box-shadow: var(--shadow-lg);
}
.bento-icon {
  display: grid; place-items: center;
  width: 46px; height: 46px; border-radius: 14px; flex: none;
  color: #fff;
  background: var(--grad-accent);
  box-shadow: 0 8px 20px rgba(124, 58, 237, 0.3);
}
.bento-icon .icon, .bento-icon svg { width: 22px; height: 22px; }
.bento-icon.sm { width: 38px; height: 38px; border-radius: 12px; }
.bento-icon.sm .icon, .bento-icon.sm svg { width: 18px; height: 18px; }
.bento-card h3 { font-size: 1.16rem; font-weight: 700; letter-spacing: -0.015em; }
.bento-card > p { font-size: 0.92rem; color: var(--text-2); }

/* Card demos */
.chat-demo {
  margin-top: auto; display: grid; gap: 8px;
  padding: 14px; border-radius: 16px;
  background: #faf9ff; border: 1px solid rgba(124, 58, 237, 0.14);
}
.chat-user, .chat-bot {
  max-width: 92%; padding: 9px 13px; border-radius: 14px;
  font-size: 0.78rem; line-height: 1.45;
}
.chat-user {
  justify-self: end; color: #fff;
  background: linear-gradient(135deg, #7c3aed, #a855f7);
  border-bottom-right-radius: 5px;
}
.chat-bot {
  justify-self: start; color: var(--ink-2);
  background: #fff; border: 1px solid var(--brd);
  border-bottom-left-radius: 5px;
}
.chat-typing { display: inline-flex; gap: 4px; padding: 4px 6px; }
.chat-typing i {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent); opacity: 0.4;
  animation: blink 1.2s ease-in-out infinite;
}
.chat-typing i:nth-child(2) { animation-delay: 0.2s; }
.chat-typing i:nth-child(3) { animation-delay: 0.4s; }
@keyframes blink { 50% { opacity: 1; transform: translateY(-2px); } }

.pay-demo { margin-top: auto; display: grid; gap: 10px; }
.pay-card {
  position: relative; overflow: hidden;
  aspect-ratio: 8 / 4.6; border-radius: 16px;
  padding: 14px 16px;
  background: linear-gradient(130deg, #7c3aed 0%, #d946ef 55%, #f97316 110%);
  color: #fff;
  display: flex; flex-direction: column; justify-content: space-between;
  box-shadow: 0 14px 34px rgba(217, 70, 239, 0.35);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.bento-card:hover .pay-card { transform: rotate(-1.5deg) scale(1.02); }
.pay-card::after {
  content: ""; position: absolute; right: -30px; top: -40px;
  width: 130px; height: 130px; border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
}
.pay-chip {
  width: 30px; height: 22px; border-radius: 5px;
  background: linear-gradient(135deg, #ffe9c7, #fbd38d);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.08);
}
.pay-num { font-family: var(--font-mono); font-size: 0.92rem; letter-spacing: 0.22em; }
.pay-brand { font-size: 0.6rem; font-weight: 700; letter-spacing: 0.2em; opacity: 0.9; }
.pay-toast {
  display: flex; align-items: center; gap: 8px;
  padding: 9px 13px; border-radius: 12px;
  font-size: 0.78rem; font-weight: 600; color: var(--ok);
  background: #f0fdf4; border: 1px solid rgba(22, 163, 74, 0.25);
}
.pay-toast .icon { width: 15px; height: 15px; }

.chart-demo {
  margin-top: auto;
  display: flex; align-items: flex-end; gap: 8px;
  height: 92px; padding: 12px 12px 0;
  border-radius: 16px 16px 0 0;
  background: linear-gradient(180deg, #faf9ff, transparent);
  border-bottom: 1px solid var(--brd);
}
.chart-demo i {
  flex: 1; border-radius: 7px 7px 2px 2px;
  height: var(--h, 50%);
  background: linear-gradient(180deg, #a78bfa, rgba(167, 139, 250, 0.3));
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  transform-origin: bottom;
}
.chart-demo i:nth-child(6) { background: linear-gradient(180deg, #fb923c, rgba(251, 146, 60, 0.3)); }
.bento-card:hover .chart-demo i { transform: scaleY(1.06); }

.avatar-row { display: flex; align-items: center; gap: 8px; padding-top: 12px; }
.avatar {
  display: grid; place-items: center;
  width: 32px; height: 32px; border-radius: 50%;
  font-size: 0.7rem; font-weight: 700; color: #fff;
  border: 2px solid #fff;
  box-shadow: var(--shadow-sm);
}
.avatar:not(:first-child) { margin-left: -12px; }
.av-1 { background: #7c3aed; }
.av-2 { background: #d946ef; }
.av-3 { background: #f97316; }
.avatar-more { background: var(--ink); font-size: 0.6rem; }
.avatar-label { margin-left: 6px; font-size: 0.74rem; color: var(--text-3); }

/* Mini tiles */
.bento-mini-grid {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px; margin-top: 20px;
}
.bento-mini {
  display: grid; gap: 8px; justify-items: start;
  padding: 22px 24px;
  background: var(--surface); border: 1px solid var(--brd); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease, border-color 0.4s ease;
}
.bento-mini:hover { transform: translateY(-5px); border-color: var(--brd-strong); box-shadow: var(--shadow-md); }
.bento-mini h4 { font-size: 0.98rem; font-weight: 700; }
.bento-mini p { font-size: 0.84rem; color: var(--text-2); }

/* --------------------------------- Forms ---------------------------------- */
.glass {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--brd); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
}
.field { display: grid; gap: 7px; text-align: left; }
.field label {
  font-size: 0.76rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-2);
}
.field .req { color: var(--danger); }
.field .optional { color: var(--text-3); text-transform: none; letter-spacing: 0; font-weight: 400; }
.field input, .field textarea, .field select {
  width: 100%; padding: 13px 16px;
  background: var(--surface);
  border: 1px solid var(--brd); border-radius: 12px;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.field textarea { resize: vertical; min-height: 120px; }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--brd-strong); box-shadow: var(--ring);
}
.field input::placeholder, .field textarea::placeholder { color: var(--text-3); }
.field .field-error { min-height: 0; font-size: 0.76rem; font-weight: 500; color: var(--danger); }
.field.has-error input, .field.has-error select, .field.has-error textarea { border-color: var(--danger); }
.select-wrap { position: relative; }
.field select { appearance: none; padding-right: 42px; }
.select-caret {
  position: absolute; right: 14px; top: 50%; transform: translateY(-50%);
  width: 16px; height: 16px; color: var(--text-3); pointer-events: none;
}

.hp-field { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }
.ts-field { margin-top: 4px; }

.form-note { min-height: 1.2em; margin-top: 10px; font-size: 0.86rem; font-weight: 500; color: var(--ok); }
.form-note.is-error { color: var(--danger); }

.form-success, .form-error-card {
  display: grid; justify-items: start; gap: 6px;
  margin-top: 16px; padding: 18px 20px; border-radius: 14px;
  text-align: left;
}
.form-success h3, .form-error-card h3 { font-size: 1.05rem; }
.form-success p, .form-error-card p { font-size: 0.88rem; color: var(--text-2); }
.form-success { background: #f0fdf4; border: 1px solid rgba(22, 163, 74, 0.3); }
.form-error-card { background: #fef2f2; border: 1px solid rgba(220, 38, 38, 0.3); }
.success-icon, .error-icon {
  display: grid; place-items: center;
  width: 34px; height: 34px; border-radius: 50%;
  color: #fff;
}
.success-icon { background: var(--ok); }
.error-icon { background: var(--danger); }
.error-detail { font-family: var(--font-mono); font-size: 0.72rem; color: var(--text-3); }

/* ----------------------------- Early access ------------------------------- */
.access-card {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: clamp(30px, 5vw, 60px);
  padding: clamp(30px, 5vw, 56px);
  border-color: rgba(124, 58, 237, 0.22);
}
.access-copy h2 { font-size: clamp(1.7rem, 3.6vw, 2.4rem); }
.access-form { display: grid; gap: 16px; align-content: start; }
.check-list { display: grid; gap: 10px; margin-top: 18px; }
.check-list li { display: flex; align-items: center; gap: 10px; font-size: 0.92rem; color: var(--text-2); }
.check-list .icon { width: 17px; height: 17px; color: var(--ok); flex: none; }

/* ---------------------------- Trust + contact ----------------------------- */
.trust-inner { max-width: 760px; margin-inline: auto; text-align: center; }
.contact-inner {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  gap: clamp(30px, 5vw, 60px); align-items: start;
}
.contact-form { display: grid; gap: 15px; padding: clamp(24px, 3.4vw, 38px); }
.contact-mail {
  display: inline-flex; align-items: center; gap: 10px;
  margin-top: 18px; padding: 11px 18px; border-radius: 999px;
  font-weight: 600; font-size: 0.92rem;
  background: var(--surface); border: 1px solid var(--brd); box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.contact-mail:hover { transform: translateY(-2px); border-color: var(--brd-strong); box-shadow: var(--shadow-md); }
.contact-mail .icon { width: 17px; height: 17px; color: var(--accent); }

/* -------------------------------- Footer ---------------------------------- */
.site-footer {
  border-top: 1px solid var(--brd);
  background: var(--surface);
  padding: clamp(40px, 6vw, 64px) 0 26px;
}
.footer-grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: clamp(26px, 4vw, 48px);
}
.footer-tagline { margin-top: 14px; font-weight: 600; font-size: 0.9rem; }
.footer-relationship {
  margin-top: 10px; max-width: 34ch;
  font-size: 0.82rem; color: var(--text-2);
}

/* -------------------------- Pricing section ------------------------------- */
.pricing-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; margin-top: 34px; }
.pricing-card {
  position: relative; border: 1px solid var(--brd); background: var(--surface);
  border-radius: var(--radius-lg); padding: 26px 24px; box-shadow: var(--shadow-sm);
  transition: transform .3s ease, box-shadow .3s ease;
}
.pricing-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.pricing-card--featured { border-color: var(--brd-strong); box-shadow: 0 0 0 4px rgba(124, 58, 237, 0.08), var(--shadow-md); }
.pricing-badge {
  position: absolute; top: -13px; left: 22px;
  font-size: 11.5px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  color: #fff; background: var(--grad-accent); padding: 5px 12px; border-radius: 999px;
}
.pricing-card h3 { font-size: 21px; margin: 2px 0 6px; }
.pricing-positioning { color: var(--text-2); font-size: 14.5px; margin: 0 0 18px; }
.pricing-prices { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 18px; }
.pricing-price { border: 1px solid var(--brd); border-radius: var(--radius); padding: 12px 14px; background: rgba(124, 58, 237, 0.035); }
.pricing-cycle { display: block; font-size: 11.5px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--text-3); margin-bottom: 3px; }
.pricing-amount { font-size: 19px; font-weight: 800; letter-spacing: -.01em; }
.pricing-cur { font-size: 14px; font-weight: 700; margin-right: 1px; }
.pricing-per { font-size: 12px; font-weight: 600; color: var(--text-3); margin-left: 2px; }
.pricing-head { font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--text-3); margin: 16px 0 8px; }
.pricing-features, .pricing-limits { list-style: none; padding: 0; margin: 0; font-size: 14.5px; color: var(--ink-2); }
.pricing-features li { padding: 5px 0 5px 24px; position: relative; }
.pricing-features li::before { content: ""; position: absolute; left: 2px; top: 10px; width: 13px; height: 13px; border-radius: 50%; background: var(--grad-accent); opacity: .85; }
.pricing-limits { color: var(--text-2); font-size: 13.5px; }
.pricing-limits li { padding: 3px 0 3px 22px; position: relative; }
.pricing-limits li::before { content: ""; position: absolute; left: 5px; top: 11px; width: 7px; height: 2px; border-radius: 2px; background: var(--text-3); }
.pricing-status { margin-top: 16px; font-size: 13.5px; color: var(--text-2); display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.pill-soon {
  display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase;
  color: #7c3aed; border: 1px solid var(--brd-strong); border-radius: 999px; padding: 3px 10px; background: rgba(124, 58, 237, 0.06);
}
.pricing-note, .pricing-checkout { max-width: 780px; margin: 16px auto 0; text-align: center; color: var(--text-2); font-size: 14px; }
.pricing-checkout { margin-top: 8px; }
@media (max-width: 760px) {
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card { padding: 22px 18px; }
}
.footer-note { margin-top: 6px; font-size: 0.8rem; color: var(--text-3); }
.footer-nav h3, .footer-social h3, .footer-legal h3 {
  font-size: 0.76rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--text-3); margin-bottom: 14px;
}
.footer-nav ul, .footer-legal ul, .footer-social-list { display: grid; gap: 9px; }
.footer-nav a, .footer-legal a, .footer-social-list a {
  font-size: 0.9rem; color: var(--text-2); transition: color 0.2s ease;
}
.footer-nav a:hover, .footer-legal a:hover, .footer-social-list a:hover { color: var(--ink); }
.footer-social-list { display: flex; flex-wrap: wrap; gap: 10px; }
.footer-social-list a {
  display: grid; place-items: center;
  width: 40px; height: 40px; border-radius: 12px;
  border: 1px solid var(--brd); background: var(--bg);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.footer-social-list a:hover {
  transform: translateY(-3px); border-color: var(--brd-strong);
  box-shadow: 0 10px 24px rgba(124, 58, 237, 0.18);
}
.footer-social-list .icon { width: 18px; height: 18px; color: var(--text-2); }
.footer-bottom {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 10px;
  margin-top: clamp(34px, 5vw, 52px); padding-top: 22px;
  border-top: 1px solid var(--brd);
  font-size: 0.8rem; color: var(--text-3);
}
.footer-status { display: inline-flex; align-items: center; gap: 8px; }

/* ------------------------------ Back to top ------------------------------- */
.back-to-top {
  position: fixed; right: 20px; bottom: 20px; z-index: 80;
  width: 46px; height: 46px;
  display: grid; place-items: center;
  background: var(--ink); color: #fff; border: 0; border-radius: 14px;
  box-shadow: var(--shadow-md); cursor: pointer;
  animation: rise 0.3s ease;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.back-to-top:hover { transform: translateY(-3px); }
@keyframes rise { from { opacity: 0; transform: translateY(10px); } }

/* ---------------------------- Reveal animation ---------------------------- */
[data-reveal] {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--d, 0s);
}
[data-reveal].in { opacity: 1; transform: none; }

/* ------------------------------ Legal pages ------------------------------- */
.legal-page { padding: calc(var(--header-h) + clamp(40px, 7vw, 80px)) 0 clamp(56px, 8vw, 90px); }
.legal-page h1 { font-size: clamp(2rem, 4.6vw, 3rem); letter-spacing: -0.03em; }
.legal-page .section-sub { margin-top: 10px; }
.legal-card { margin-top: 30px; padding: clamp(24px, 4vw, 44px); }
.legal-card h2 { font-size: 1.2rem; margin: 26px 0 8px; letter-spacing: -0.01em; }
.legal-card h2:first-child { margin-top: 0; }
.legal-card p { color: var(--text-2); font-size: 0.94rem; }
.legal-card a { color: var(--accent); font-weight: 600; }
.legal-card a:hover { text-decoration: underline; }
.legal-page > .container > p:last-child { margin-top: 26px; }

/* ------------------------------- Responsive ------------------------------- */
@media (max-width: 1020px) {
  .bento-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .bento-grid .bento-card:last-child { grid-column: 1 / -1; }
}
@media (max-width: 880px) {
  .main-nav { display: none; }
  .nav-toggle { display: inline-flex; }
  .bento-grid, .bento-mini-grid { grid-template-columns: 1fr; }
  .bento-grid .bento-card:last-child { grid-column: auto; }
  .access-card, .contact-inner { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 620px) {
  .status-chip { display: none; }
  .header-actions .btn { display: none; }   /* keep header = logo + burger only */
  .waitlist-row { flex-direction: column; }
  .waitlist-row .btn { width: 100%; }
  .hero-offer { text-align: left; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .phone { width: min(250px, 72vw); }
}

/* --------------------------- Reduced motion ------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
}
