/* ===================================================================
   VENTLY · Design System  ·  Light / Vestos-aligned
   Comercio híbrido — POS + E-commerce sincronizados
   Tokens basados en la estética Vestos (violeta firma, claro, limpio)
   =================================================================== */

/* ---------- Tokens ---------- */
:root {
  /* Canvas & surfaces */
  --canvas: #f6f6f9;
  --surface: #ffffff;
  --surface-2: #fbfbfd;

  /* Deep violet shell (sidebar / dark moments) */
  --violet-deep: #1e1535;
  --violet-deep-2: #2a1643;

  /* Violet scale (signature accent) */
  --violet: #3b1f5c;          /* firma */
  --violet-vivid: #5b2e9e;    /* botones/realce */
  --violet-2: #6e45b0;        /* links/acento claro */
  --violet-50: #f4f0fa;
  --violet-100: #e9e0f5;
  --violet-200: #d6c6ec;

  /* Secondary (online / success) — emerald sobrio */
  --mint: #0f9d78;
  --mint-2: #0b7e60;
  --mint-50: #e9f7f1;

  /* Backwards-compat aliases (HTML inline usa estos nombres) */
  --indigo: var(--violet-vivid);
  --cyan: var(--mint);
  --gold: #b98900;
  --ink-900: var(--canvas);
  --ink-850: var(--surface);
  --ink-800: var(--violet-deep);
  --ink-700: #ededf2;
  --ink-600: #e3e3ea;

  /* Lines / borders */
  --line: #e5e5eb;
  --line-strong: #d7d7df;

  /* Text */
  --ink: #0b0b0f;
  --fg: #16161c;
  --fg-soft: #43434e;
  --fg-mute: #6e6e7a;
  --fg-faint: #9a9aa6;

  /* Gradients (sutiles, no ruidosos) */
  --grad-brand: linear-gradient(120deg, #4a2873 0%, #3b1f5c 100%);
  --grad-mint: linear-gradient(120deg, #12b187 0%, #0f9d78 100%);
  --grad-text: linear-gradient(110deg, #5b2e9e 0%, #3b1f5c 100%);

  /* Effects */
  --glow-violet: 0 10px 30px -12px rgba(59, 31, 92, .45);
  --glow-mint: 0 10px 30px -12px rgba(15, 157, 120, .4);
  --shadow-sm: 0 1px 2px rgba(17, 17, 26, .04), 0 6px 16px -10px rgba(17, 17, 26, .12);
  --shadow-card: 0 1px 2px rgba(17, 17, 26, .05), 0 14px 34px -18px rgba(17, 17, 26, .16);

  /* Type */
  --font-display: "Plus Jakarta Sans", system-ui, sans-serif;
  --font-body: "Plus Jakarta Sans", system-ui, sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, "SF Mono", monospace;

  /* Layout */
  --maxw: 1200px;
  --radius: 12px;
  --radius-lg: 16px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--canvas);
  color: var(--fg);
  line-height: 1.6;
  letter-spacing: -0.011em;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }
::selection { background: var(--violet-100); color: var(--violet); }

/* ---------- Ambient background (muy sutil, sin violeta a página completa) ---------- */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(800px 480px at 88% -6%, rgba(91, 46, 158, .05), transparent 60%),
    radial-gradient(700px 460px at 6% 2%, rgba(15, 157, 120, .04), transparent 60%);
  pointer-events: none;
}

/* ---------- Layout helpers ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 24px; }
.section { padding: clamp(64px, 10vw, 124px) 0; position: relative; }
.center { text-align: center; }
.stack-sm > * + * { margin-top: 12px; }

/* ---------- Type scale ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display);
  font-size: 12px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--violet);
  padding: 6px 13px;
  border: 1px solid var(--violet-200);
  border-radius: 999px;
  background: var(--violet-50);
}
.eyebrow.violet { color: var(--violet); border-color: var(--violet-200); background: var(--violet-50); }

h1, h2, h3 { font-family: var(--font-display); font-weight: 800; line-height: 1.06; letter-spacing: -0.025em; color: var(--ink); }
.h-hero { font-size: clamp(2.6rem, 6vw, 4.6rem); }
.h-sec { font-size: clamp(1.9rem, 4.2vw, 3.1rem); }
.h-card { font-size: clamp(1.15rem, 2vw, 1.4rem); letter-spacing: -0.02em; }
.lead { font-size: clamp(1.04rem, 1.5vw, 1.22rem); color: var(--fg-soft); max-width: 60ch; }
.muted { color: var(--fg-mute); }
.grad-text {
  background: var(--grad-text);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.section-head { max-width: 720px; margin-inline: auto; }
.section-head .lead { margin-inline: auto; margin-top: 18px; }
.section-head .eyebrow { margin-bottom: 22px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font-display); font-weight: 600; font-size: .95rem;
  padding: 13px 22px; border-radius: 11px;
  transition: transform .16s ease, box-shadow .16s ease, background .16s ease, border-color .16s ease;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary {
  color: #fff; background: var(--violet);
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover { transform: translateY(-1px); background: #2f1849; box-shadow: var(--glow-violet); }
.btn-mint { color: #fff; background: var(--mint); box-shadow: var(--shadow-sm); }
.btn-mint:hover { transform: translateY(-1px); background: var(--mint-2); box-shadow: var(--glow-mint); }
.btn-ghost { color: var(--fg); border: 1px solid var(--line-strong); background: var(--surface); box-shadow: var(--shadow-sm); }
.btn-ghost:hover { transform: translateY(-1px); border-color: var(--violet-200); background: var(--violet-50); color: var(--violet); }
.btn-lg { padding: 15px 28px; font-size: 1rem; }
.btn-block { width: 100%; }

/* ---------- Card surface ---------- */
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}
.glass { background: var(--surface); }

/* ===================================================================
   NAV
   =================================================================== */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(246, 246, 249, .85);
  backdrop-filter: blur(12px) saturate(140%);
  -webkit-backdrop-filter: blur(12px) saturate(140%);
  border-bottom: 1px solid transparent;
  transition: background .2s, border-color .2s;
}
.nav.scrolled {
  background: rgba(255, 255, 255, .82);
  border-color: var(--line);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 68px; }
/* Brand lockup: el logo (V-etiqueta) ES la "V" de "Vently" */
.brand { display: inline-flex; align-items: baseline; font-family: var(--font-display); font-weight: 800; font-size: 1.6rem; letter-spacing: -0.03em; line-height: 1; color: var(--ink); }
.brand .brand-mark { height: 1em; width: auto; transform: translateY(0.08em); }
.brand .brand-word { margin-left: 0; }
.brand .dotmx { color: var(--violet-2); }
/* compat: marca usada en mock sidebar/storefront */
.brand .logo { width: auto; height: 26px; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { font-size: .93rem; font-weight: 500; color: var(--fg-soft); transition: color .16s; }
.nav-links a:hover { color: var(--violet); }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-toggle { display: none; }

/* ===================================================================
   HERO
   =================================================================== */
.hero { padding: clamp(48px, 8vw, 100px) 0 clamp(36px, 6vw, 72px); position: relative; }
.hero-grid { display: grid; gap: 56px; align-items: center; }
@media (min-width: 980px) { .hero-grid { grid-template-columns: 1.05fr .95fr; gap: 40px; } }
.hero h1 { margin: 22px 0 0; }
.hero .lead { margin-top: 22px; }
.hero-niche { margin-top: 16px; font-size: .95rem; color: var(--fg-mute); max-width: 52ch; }
.hero-niche b { color: var(--violet); font-weight: 700; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.hero-trust { display: flex; flex-wrap: wrap; align-items: center; gap: 16px 26px; margin-top: 36px; color: var(--fg-mute); font-size: .88rem; }
.hero-trust .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--mint); }
.hero-trust span { display: inline-flex; align-items: center; gap: 9px; }

/* Hero visual: device mock */
.hero-visual { position: relative; }
.hero-visual .glow {
  position: absolute; inset: -8% -4% -12% -4%; z-index: -1;
  background: radial-gradient(closest-side, rgba(91, 46, 158, .14), transparent 72%);
  filter: blur(10px);
}
.mock {
  border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow-card);
}
.mock-bar { display: flex; align-items: center; gap: 7px; padding: 12px 15px; background: var(--surface-2); border-bottom: 1px solid var(--line); }
.mock-bar i { width: 11px; height: 11px; border-radius: 50%; background: #d7d7df; }
.mock-bar i:nth-child(1){ background:#ff5f57; } .mock-bar i:nth-child(2){ background:#febc2e; } .mock-bar i:nth-child(3){ background:#28c840; }
.mock-bar .url { margin-left: 12px; font-size: .76rem; color: var(--fg-faint); font-family: var(--font-mono); }
.mock-body { padding: 16px; background: var(--surface); }

.float-badge {
  position: absolute; z-index: 3;
  display: flex; align-items: center; gap: 11px;
  padding: 12px 15px; border-radius: 14px;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-card);
  animation: floaty 5.5s ease-in-out infinite;
}
.float-badge .ic { width: 38px; height: 38px; border-radius: 11px; display: grid; place-items: center; flex: none; }
.float-badge b { display: block; font-family: var(--font-display); font-size: .96rem; line-height: 1.1; color: var(--ink); }
.float-badge small { color: var(--fg-mute); font-size: .76rem; }
.fb-1 { top: 8%; right: -16px; }
.fb-2 { bottom: 12%; left: -22px; animation-delay: -2.5s; }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

/* ===================================================================
   STRIP
   =================================================================== */
.strip { border-block: 1px solid var(--line); padding: 26px 0; background: var(--surface); }
.strip p { text-align: center; font-size: .76rem; letter-spacing: .16em; text-transform: uppercase; color: var(--fg-faint); margin-bottom: 18px; font-family: var(--font-display); font-weight: 600; }
.strip-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px 28px; }
.chip {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-display); font-weight: 600; font-size: .9rem;
  color: var(--fg-soft);
  padding: 9px 15px; border: 1px solid var(--line); border-radius: 10px;
  background: var(--surface-2);
}
.chip svg { width: 17px; height: 17px; }

/* ===================================================================
   SYNC (comercio híbrido)
   =================================================================== */
.sync { display: grid; gap: 26px; }
@media (min-width: 900px) { .sync { grid-template-columns: 1fr auto 1fr; align-items: center; } }
.sync-pane { padding: 30px; border-radius: var(--radius-lg); position: relative; overflow: hidden; background: var(--surface); box-shadow: var(--shadow-card); }
.sync-pane h3 { font-size: 1.5rem; margin-bottom: 6px; }
.sync-pane .tag { font-family: var(--font-display); font-size: .76rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.sync-pane ul { margin-top: 20px; display: grid; gap: 13px; }
.sync-pane li { display: flex; gap: 11px; align-items: flex-start; color: var(--fg-soft); font-size: .96rem; }
.sync-pane li svg { width: 19px; height: 19px; flex: none; margin-top: 2px; }
.sync-pos { border: 1px solid var(--violet-200); }
.sync-pos .tag { color: var(--violet); }
.sync-ec { border: 1px solid #bfe6d8; }
.sync-ec .tag { color: var(--mint-2); }
.sync-link { display: grid; place-items: center; }
.sync-link .pulse {
  width: 70px; height: 70px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--violet); color: #fff;
  box-shadow: var(--glow-violet);
  position: relative;
}
.sync-link .pulse svg { width: 30px; height: 30px; }
.sync-link .pulse::after {
  content: ""; position: absolute; inset: -8px; border-radius: 50%;
  border: 1px solid var(--violet-200);
  animation: ring 2.4s ease-out infinite;
}
@keyframes ring { 0% { transform: scale(.85); opacity: 1; } 100% { transform: scale(1.6); opacity: 0; } }

/* ===================================================================
   FEATURES / BENTO
   =================================================================== */
.feat-grid { display: grid; gap: 18px; margin-top: 56px; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 760px) { .feat-grid { grid-template-columns: repeat(3, 1fr); } }
.feature {
  padding: 26px; border-radius: var(--radius-lg); position: relative; overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
}
.feature:hover { transform: translateY(-3px); box-shadow: var(--shadow-card); border-color: var(--line-strong); }
.feature .ic {
  width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center;
  margin-bottom: 18px; color: var(--violet);
  background: var(--violet-50); border: 1px solid var(--violet-100);
}
.feature .ic svg { width: 23px; height: 23px; }
.feature.v .ic { color: var(--violet); background: var(--violet-50); border-color: var(--violet-100); }
.feature.c .ic { color: var(--mint-2); background: var(--mint-50); border-color: #c8ebde; }
.feature.g .ic { color: var(--fg); background: #f0f0f4; border-color: var(--line); }
.feature h3 { font-size: 1.16rem; margin-bottom: 8px; }
.feature p { color: var(--fg-mute); font-size: .93rem; }

.bento { display: grid; gap: 18px; margin-top: 56px; grid-template-columns: repeat(6, 1fr); }
.bento > * { grid-column: span 6; }
@media (min-width: 820px) {
  .bento .b-lg { grid-column: span 3; grid-row: span 2; }
  .bento .b-md { grid-column: span 3; }
  .bento .b-sm { grid-column: span 2; }
}
.bento .feature { height: 100%; }
.b-lg .ic { width: 52px; height: 52px; }
.b-lg h3 { font-size: 1.45rem; }
.stat-row { display: flex; gap: 28px; margin-top: 26px; flex-wrap: wrap; }
.stat b { font-family: var(--font-mono); font-weight: 700; font-size: 2rem; display: block; line-height: 1; letter-spacing: -0.02em; }
.stat span { color: var(--fg-mute); font-size: .82rem; }

/* ===================================================================
   EDGE — diferenciadores (marca propia + soporte)
   =================================================================== */
.edge-grid { display: grid; gap: 18px; margin-top: 50px; grid-template-columns: 1fr; }
@media (min-width: 820px) { .edge-grid { grid-template-columns: repeat(2, 1fr); } }
.edge-card { padding: 34px; border-radius: var(--radius-lg); border: 1px solid var(--line); background: var(--surface); box-shadow: var(--shadow-card); }
.edge-card .ic { width: 54px; height: 54px; border-radius: 14px; display: grid; place-items: center; margin-bottom: 20px; color: var(--violet); background: var(--violet-50); border: 1px solid var(--violet-100); }
.edge-card.mint .ic { color: var(--mint-2); background: var(--mint-50); border-color: #c8ebde; }
.edge-card .ic svg { width: 27px; height: 27px; }
.edge-card h3 { font-size: 1.4rem; margin-bottom: 10px; }
.edge-card p { color: var(--fg-mute); font-size: 1rem; }
.edge-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.edge-tag { font-family: var(--font-display); font-weight: 600; font-size: .78rem; color: var(--fg-soft); padding: 6px 12px; border: 1px solid var(--line); border-radius: 999px; background: var(--surface-2); display: inline-flex; align-items: center; gap: 6px; }
.edge-tag svg { width: 13px; height: 13px; color: var(--violet); }
.edge-card.mint .edge-tag svg { color: var(--mint-2); }

/* ===================================================================
   STEPS
   =================================================================== */
.steps { display: grid; gap: 18px; margin-top: 56px; }
@media (min-width: 820px) { .steps { grid-template-columns: repeat(4, 1fr); } }
.step { padding: 26px; border-radius: var(--radius-lg); border: 1px solid var(--line); background: var(--surface); box-shadow: var(--shadow-sm); position: relative; }
.step .num { font-family: var(--font-mono); font-weight: 700; font-size: 1rem; width: 38px; height: 38px; border-radius: 10px; display: grid; place-items: center; background: var(--violet); color: #fff; margin-bottom: 16px; }
.step h3 { font-size: 1.1rem; margin-bottom: 7px; }
.step p { color: var(--fg-mute); font-size: .9rem; }

/* ===================================================================
   STATS BAND (momento violeta profundo)
   =================================================================== */
.band { border-radius: var(--radius-lg); padding: clamp(34px, 5vw, 56px); background: var(--violet-deep); position: relative; overflow: hidden; }
.band::after { content: ""; position: absolute; inset: 0; background: radial-gradient(120% 160% at 100% 0%, rgba(110, 69, 176, .35), transparent 55%); pointer-events: none; }
.band-grid { display: grid; gap: 30px; text-align: center; grid-template-columns: repeat(2, 1fr); position: relative; z-index: 1; }
@media (min-width: 820px) { .band-grid { grid-template-columns: repeat(4, 1fr); } }
.band-grid b { font-family: var(--font-mono); font-weight: 700; font-size: clamp(2.1rem, 4vw, 2.9rem); line-height: 1; color: #fff; letter-spacing: -0.02em; }
.band-grid .grad-text { background: none; -webkit-text-fill-color: #fff; color: #fff; }
.band-grid span { display: block; margin-top: 10px; color: #c9c2dd; font-size: .9rem; }

/* ===================================================================
   TESTIMONIALS
   =================================================================== */
.quotes { display: grid; gap: 18px; margin-top: 56px; grid-template-columns: 1fr; }
@media (min-width: 820px) { .quotes { grid-template-columns: repeat(3, 1fr); } }
.quote { padding: 28px; border-radius: var(--radius-lg); border: 1px solid var(--line); background: var(--surface); box-shadow: var(--shadow-sm); display: flex; flex-direction: column; gap: 18px; }
.quote p { font-size: 1.01rem; color: var(--fg-soft); }
.quote .who { display: flex; flex-direction: column; align-items: flex-start; gap: 11px; margin-top: auto; padding-top: 18px; border-top: 1px solid var(--line); }
.who-logo-link { display: inline-block; transition: opacity .16s; }
.who-logo-link:hover { opacity: .6; }
.who-logo { height: 34px; width: auto; max-width: 170px; object-fit: contain; display: block; }
.quote .who small { color: var(--fg-mute); font-size: .82rem; }
.stars { color: var(--gold); letter-spacing: 2px; font-size: .9rem; }

/* ===================================================================
   PRICING
   =================================================================== */
.price-grid { display: grid; gap: 20px; margin-top: 50px; grid-template-columns: 1fr; }
@media (min-width: 900px) { .price-grid { grid-template-columns: repeat(3, 1fr); align-items: start; } }
.plan { padding: 30px; border-radius: var(--radius-lg); border: 1px solid var(--line); background: var(--surface); box-shadow: var(--shadow-sm); position: relative; display: flex; flex-direction: column; }
.plan.feature-plan { border-color: var(--violet); box-shadow: var(--shadow-card); }
@media (min-width: 900px) { .plan.feature-plan { transform: scale(1.035); } }
.plan .badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); font-family: var(--font-display); font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; padding: 6px 14px; border-radius: 999px; background: var(--violet); color: #fff; }
.plan h3 { font-size: 1.28rem; }
.plan .ptag { color: var(--fg-mute); font-size: .9rem; margin-top: 4px; min-height: 40px; }
.plan .amount { margin: 22px 0 6px; display: flex; align-items: baseline; gap: 6px; }
.plan .amount b { font-family: var(--font-mono); font-weight: 700; font-size: 2.7rem; line-height: 1; color: var(--ink); letter-spacing: -0.03em; }
.plan .amount span { color: var(--fg-mute); font-size: .9rem; }
.plan .pnote { color: var(--fg-faint); font-size: .82rem; margin-bottom: 24px; }
.plan ul { display: grid; gap: 12px; margin-bottom: 28px; }
.plan li { display: flex; gap: 10px; align-items: flex-start; font-size: .92rem; color: var(--fg-soft); }
.plan li svg { width: 18px; height: 18px; flex: none; margin-top: 2px; color: var(--mint-2); }
.plan li.off { color: var(--fg-faint); }
.plan li.off svg { color: var(--fg-faint); }
.plan .btn { margin-top: auto; }

.toggle { display: inline-flex; align-items: center; gap: 14px; margin-top: 26px; font-family: var(--font-display); font-size: .92rem; }
.toggle button { display: inline-flex; padding: 6px; border-radius: 999px; border: 1px solid var(--line-strong); background: var(--surface); }
.toggle .knob { width: 46px; height: 26px; border-radius: 999px; background: var(--line-strong); position: relative; transition: background .2s; }
.toggle .knob::after { content: ""; position: absolute; top: 3px; left: 3px; width: 20px; height: 20px; border-radius: 50%; background: var(--violet); transition: transform .2s; }
.toggle.on .knob { background: var(--violet-100); }
.toggle.on .knob::after { transform: translateX(20px); }
.toggle .save { color: var(--mint-2); font-size: .8rem; }

/* ===================================================================
   FAQ
   =================================================================== */
.faq { display: grid; gap: 12px; margin-top: 44px; max-width: 820px; margin-inline: auto; }
.faq-item { border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); box-shadow: var(--shadow-sm); overflow: hidden; }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 20px 22px; text-align: left; font-family: var(--font-display); font-weight: 600; font-size: 1.01rem; color: var(--ink); }
.faq-q .pm { flex: none; width: 24px; height: 24px; display: grid; place-items: center; transition: transform .2s; color: var(--violet); }
.faq-item.open .faq-q .pm { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-a p { padding: 0 22px 22px; color: var(--fg-mute); }

/* ===================================================================
   CTA (momento violeta profundo)
   =================================================================== */
.cta-card { border-radius: var(--radius-lg); padding: clamp(40px, 6vw, 70px); text-align: center; position: relative; overflow: hidden; background: var(--violet-deep); }
.cta-card::after { content: ""; position: absolute; inset: 0; background: radial-gradient(120% 150% at 50% -20%, rgba(110, 69, 176, .4), transparent 55%); pointer-events: none; }
.cta-card > * { position: relative; z-index: 1; }
.cta-card h2 { margin-bottom: 18px; color: #fff; }
.cta-card .grad-text { background: none; -webkit-text-fill-color: #cbb6ec; color: #cbb6ec; }
.cta-card .lead { margin-inline: auto; color: #d4cee4; }
.cta-card .eyebrow { color: #cbb6ec; background: rgba(110, 69, 176, .2); border-color: rgba(110, 69, 176, .4); }
.cta-card .hero-actions { justify-content: center; }
.cta-card .btn-ghost { background: rgba(255, 255, 255, .06); border-color: rgba(255, 255, 255, .2); color: #fff; box-shadow: none; }
.cta-card .btn-ghost:hover { background: rgba(255, 255, 255, .12); border-color: rgba(255, 255, 255, .35); color: #fff; }

/* ===================================================================
   FOOTER
   =================================================================== */
.footer { border-top: 1px solid var(--line); padding: 60px 0 36px; margin-top: 40px; background: var(--surface); }
.footer-grid { display: grid; gap: 40px; grid-template-columns: 1.4fr; }
@media (min-width: 820px) { .footer-grid { grid-template-columns: 1.6fr 1fr 1fr 1fr; } }
.footer .brand { margin-bottom: 16px; }
.footer p { color: var(--fg-mute); font-size: .92rem; max-width: 34ch; }
.footer h4 { font-family: var(--font-display); font-size: .78rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--fg-faint); margin-bottom: 16px; }
.footer-col a { display: block; color: var(--fg-soft); font-size: .92rem; padding: 6px 0; transition: color .16s; }
.footer-col a:hover { color: var(--violet); }
.footer-bottom { display: flex; flex-wrap: wrap; gap: 14px; justify-content: space-between; align-items: center; margin-top: 50px; padding-top: 28px; border-top: 1px solid var(--line); color: var(--fg-faint); font-size: .86rem; }
.footer-bottom .socials { display: flex; gap: 10px; }
.footer-bottom .socials a { width: 38px; height: 38px; border-radius: 10px; border: 1px solid var(--line); display: grid; place-items: center; color: var(--fg-soft); transition: all .16s; }
.footer-bottom .socials a:hover { color: var(--violet); border-color: var(--violet-200); background: var(--violet-50); }

/* ===================================================================
   Reveal animation
   =================================================================== */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .5s ease, transform .5s ease; }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .06s; } .reveal.d2 { transition-delay: .12s; } .reveal.d3 { transition-delay: .18s; } .reveal.d4 { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .float-badge, .sync-link .pulse::after { animation: none; }
  html { scroll-behavior: auto; }
}

/* ===================================================================
   Mobile nav
   =================================================================== */
@media (max-width: 900px) {
  .nav-links, .nav-cta .btn-ghost { display: none; }
  .nav-toggle { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 11px; border: 1px solid var(--line-strong); background: var(--surface); }
  .nav-toggle svg { width: 22px; height: 22px; }
  .mobile-menu { position: fixed; inset: 68px 0 auto; z-index: 99; padding: 20px 24px 30px; display: none; flex-direction: column; gap: 6px; background: var(--surface); border-bottom: 1px solid var(--line); box-shadow: var(--shadow-card); }
  .mobile-menu.open { display: flex; }
  .mobile-menu a { padding: 13px 4px; font-family: var(--font-display); font-weight: 600; font-size: 1.05rem; color: var(--ink); border-bottom: 1px solid var(--line); }
  .mobile-menu .btn { margin-top: 14px; }
}
@media (min-width: 901px) { .mobile-menu { display: none !important; } }
