/* =========================================================================
   Statty AI — marketing site design system
   Hand-written, compiled CSS. No Tailwind CDN, no Font Awesome.
   Palette derived from the official Shopify listing icon:
   deep teal-navy · brand cyan · growth orange.
   ========================================================================= */

/* ---------- Self-hosted font (font-display: swap, non-blocking) ---------- */
@font-face {
  font-family: 'Inter var';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('fonts/inter-latin.woff2') format('woff2');
}

/* ------------------------------- Tokens --------------------------------- */
:root {
  /* Brand */
  --navy-900: #071c28;
  --navy-800: #0c2c3e;   /* icon background */
  --navy-700: #123b50;
  --navy-600: #1a4d66;
  --cyan-600: #0f9cb8;
  --cyan-500: #16b8d4;   /* brand cyan */
  --cyan-400: #38c9e0;
  --teal-500: #23bab0;
  --teal-400: #2cc5b8;
  --orange-600: #ea7433;
  --orange-500: #f0894c; /* growth arrow */
  --orange-300: #f7b487;

  /* Neutrals */
  --bg: #ffffff;
  --bg-subtle: #f6f9fb;
  --bg-muted: #eef3f6;
  --surface: #ffffff;
  --border: #e4eaef;
  --border-strong: #d3dce2;
  --text: #16303d;
  --text-strong: #0b2230;
  --text-muted: #566b76;
  --text-soft: #7a8b94;
  --white: #ffffff;

  /* Effects */
  --shadow-xs: 0 1px 2px rgba(11, 34, 48, .06);
  --shadow-sm: 0 2px 8px rgba(11, 34, 48, .06);
  --shadow-md: 0 12px 28px -8px rgba(11, 34, 48, .14);
  --shadow-lg: 0 30px 60px -20px rgba(11, 34, 48, .28);
  --shadow-brand: 0 18px 40px -14px rgba(12, 44, 62, .45);
  --ring: 0 0 0 3px rgba(22, 184, 212, .35);

  --radius-sm: 10px;
  --radius: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-pill: 999px;

  --container: 1200px;
  --gutter: clamp(1.15rem, 4vw, 2rem);

  --grad-brand: linear-gradient(135deg, var(--navy-800) 0%, var(--navy-600) 55%, var(--cyan-600) 130%);
  --grad-ink: linear-gradient(160deg, #0d3145 0%, #071c28 100%);
  --grad-cyan-text: linear-gradient(100deg, var(--cyan-500), var(--teal-400) 55%, var(--orange-500));

  --font-sans: 'Inter var', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;

  --header-h: 72px;
}

/* ------------------------------- Reset ---------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
}
body {
  font-family: var(--font-sans);
  font-feature-settings: 'cv02','cv03','cv04','cv11';
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg, video, canvas { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: none; }
ul, ol { list-style: none; padding: 0; }
h1, h2, h3, h4, h5 { line-height: 1.12; font-weight: 800; color: var(--text-strong); letter-spacing: -0.02em; }
:focus-visible { outline: none; box-shadow: var(--ring); border-radius: 6px; }

/* ----------------------------- Layout ----------------------------------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.container-narrow { max-width: 860px; }
.section { padding-block: clamp(3.5rem, 8vw, 7rem); }
.section-sm { padding-block: clamp(2.5rem, 5vw, 4rem); }
.bg-subtle { background: var(--bg-subtle); }
.bg-muted { background: var(--bg-muted); }
.bg-ink { background: var(--grad-ink); color: #cfe0e8; }

.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .78rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--cyan-600);
}
.eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--orange-500); }

.section-head { max-width: 640px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 {
  font-size: clamp(1.85rem, 3.6vw, 2.85rem);
  margin-top: .9rem;
}
.section-head p {
  margin-top: 1rem; color: var(--text-muted); font-size: 1.12rem; line-height: 1.65;
}

.grad-text {
  background: var(--grad-cyan-text);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* ----------------------------- Buttons ---------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  font-weight: 650; font-size: .98rem; line-height: 1;
  padding: .85rem 1.4rem; border-radius: var(--radius-sm);
  transition: transform .18s ease, box-shadow .22s ease, background .18s ease, border-color .18s ease, color .18s ease;
  border: 1px solid transparent; white-space: nowrap; cursor: pointer;
}
.btn svg { width: 1.15em; height: 1.15em; }
.btn-primary {
  background: var(--navy-800); color: #fff;
  box-shadow: var(--shadow-brand);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 24px 46px -14px rgba(12,44,62,.55); background: #0e3346; }
.btn-accent {
  background: linear-gradient(135deg, var(--orange-500), var(--orange-600));
  color: #fff; box-shadow: 0 16px 34px -12px rgba(234,116,51,.6);
}
.btn-accent:hover { transform: translateY(-2px); box-shadow: 0 22px 44px -12px rgba(234,116,51,.7); }
.btn-ghost {
  background: #fff; color: var(--text-strong); border-color: var(--border-strong); box-shadow: var(--shadow-xs);
}
.btn-ghost:hover { border-color: var(--cyan-500); color: var(--navy-700); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.btn-light { background: #fff; color: var(--navy-800); box-shadow: var(--shadow-md); }
.btn-light:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-outline-light { background: rgba(255,255,255,.06); color: #fff; border-color: rgba(255,255,255,.3); }
.btn-outline-light:hover { background: rgba(255,255,255,.14); transform: translateY(-2px); }
.btn-lg { padding: 1.05rem 1.8rem; font-size: 1.05rem; border-radius: var(--radius); }
.btn-block { width: 100%; }

/* ------------------------------ Pills ----------------------------------- */
.pill {
  display: inline-flex; align-items: center; gap: .55rem;
  padding: .45rem .9rem; border-radius: var(--radius-pill);
  background: #fff; border: 1px solid var(--border); box-shadow: var(--shadow-xs);
  font-size: .84rem; font-weight: 600; color: var(--text-strong);
}
.pill .live {
  position: relative; display: inline-flex; width: 8px; height: 8px;
}
.pill .live::before {
  content: ''; position: absolute; inset: 0; border-radius: 50%;
  background: var(--teal-400); opacity: .75; animation: ping 1.8s cubic-bezier(0,0,.2,1) infinite;
}
.pill .live::after { content: ''; position: absolute; inset: 0; border-radius: 50%; background: var(--teal-500); }
@keyframes ping { 75%,100% { transform: scale(2.4); opacity: 0; } }

.badge {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .3rem .7rem; border-radius: var(--radius-pill);
  font-size: .74rem; font-weight: 700; letter-spacing: .02em;
}
.badge-cyan { background: rgba(22,184,212,.12); color: var(--cyan-600); }
.badge-orange { background: rgba(240,137,76,.14); color: var(--orange-600); }
.badge-green { background: rgba(35,186,143,.14); color: #17916c; }

/* ------------------------------ Cards ----------------------------------- */
.card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 1.7rem; box-shadow: var(--shadow-xs);
  transition: transform .2s ease, box-shadow .25s ease, border-color .2s ease;
}
.card.hover:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: #cfe0e6; }

.icon-tile {
  width: 48px; height: 48px; border-radius: 13px;
  display: inline-flex; align-items: center; justify-content: center;
  background: linear-gradient(140deg, rgba(22,184,212,.14), rgba(44,197,184,.14));
  color: var(--cyan-600); border: 1px solid rgba(22,184,212,.2);
}
.icon-tile.orange { background: linear-gradient(140deg, rgba(240,137,76,.16), rgba(234,116,51,.14)); color: var(--orange-600); border-color: rgba(240,137,76,.25); }
.icon-tile.navy { background: var(--grad-ink); color: #7fe0ef; border-color: transparent; }
.icon-tile svg { width: 24px; height: 24px; }

.grid { display: grid; gap: 1.4rem; }
.grid > *, .cluster > *, .ai-showcase .inner > *, .founder > *, .contact-grid > *, .hero-actions > *, .footer-grid > * { min-width: 0; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

/* ------------------------------ Header ---------------------------------- */
.site-header {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 100;
  background: rgba(255,255,255,.82); backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent; transition: border-color .25s ease, box-shadow .25s ease, background .25s ease;
}
.site-header.scrolled { border-color: var(--border); box-shadow: var(--shadow-sm); background: rgba(255,255,255,.92); }
.nav { display: flex; align-items: center; justify-content: space-between; height: var(--header-h); gap: 1rem; }
.brand { display: inline-flex; align-items: center; gap: .6rem; font-weight: 800; font-size: 1.28rem; letter-spacing: -.02em; color: var(--text-strong); }
.brand .brand-mark { width: 34px; height: 34px; border-radius: 9px; box-shadow: var(--shadow-xs); }
.brand .ai { color: var(--orange-500); }
.nav-links { display: flex; align-items: center; gap: .35rem; }
.nav-links a {
  padding: .5rem .85rem; border-radius: 9px; font-weight: 550; font-size: .96rem; color: var(--text-muted);
  transition: color .15s ease, background .15s ease;
}
.nav-links a:hover { color: var(--navy-700); background: var(--bg-muted); }
.nav-links a.active { color: var(--navy-800); background: rgba(22,184,212,.1); }
.nav-cta { display: flex; align-items: center; gap: .7rem; }
.nav-login { font-weight: 600; font-size: .96rem; color: var(--text-strong); padding: .5rem .6rem; }
.nav-login:hover { color: var(--cyan-600); }
.menu-btn { display: none; width: 42px; height: 42px; border-radius: 10px; align-items: center; justify-content: center; color: var(--text-strong); border: 1px solid var(--border); }
.mobile-menu { display: none; }
@media (max-width: 940px) {
  .nav-links, .nav-login.desktop, .nav-cta .btn-primary { display: none; }
  .menu-btn { display: inline-flex; }
  .mobile-menu {
    display: block; position: absolute; top: var(--header-h); left: 0; width: 100%;
    background: #fff; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-lg); padding: .8rem var(--gutter) 1.4rem; transform-origin: top;
  }
  .mobile-menu[hidden] { display: none; }
  .mobile-menu a { display: block; padding: .8rem .6rem; border-radius: 10px; font-weight: 600; color: var(--text); }
  .mobile-menu a.active, .mobile-menu a:hover { background: var(--bg-muted); color: var(--navy-800); }
  .mobile-menu a.btn-primary { margin-top: .8rem; color: #fff; }
  .mobile-menu a.btn-primary:hover { color: #fff; background: #0e3346; }
}

/* --------------------------- Hero / product ----------------------------- */
.hero { position: relative; padding-top: calc(var(--header-h) + clamp(2.5rem, 6vw, 5rem)); padding-bottom: clamp(2.5rem, 6vw, 5rem); overflow: hidden; }
.hero-glow { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 0; }
.hero-glow span { position: absolute; border-radius: 50%; filter: blur(80px); opacity: .5; }
.hero-glow .g1 { width: 460px; height: 460px; top: -140px; right: -80px; background: rgba(22,184,212,.28); }
.hero-glow .g2 { width: 520px; height: 520px; bottom: -220px; left: -140px; background: rgba(240,137,76,.16); }
.hero-glow .g3 { width: 300px; height: 300px; top: 30%; left: 42%; background: rgba(44,197,184,.16); }
.hero .container { position: relative; z-index: 1; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.hero-grid > * { min-width: 0; }
@media (max-width: 980px) { .hero-grid { grid-template-columns: 1fr; text-align: center; } }
.hero h1 {
  font-size: clamp(2rem, 6.4vw, 4rem); letter-spacing: -.035em; margin-top: 1.4rem;
  overflow-wrap: break-word;
}
.hero-lead { margin-top: 1.4rem; font-size: clamp(1.08rem, 1.9vw, 1.28rem); color: var(--text-muted); max-width: 34ch; }
@media (max-width: 980px) { .hero-lead { max-width: 52ch; margin-inline: auto; } }
.hero-actions { margin-top: 2rem; display: flex; gap: .9rem; flex-wrap: wrap; }
@media (max-width: 980px) { .hero-actions { justify-content: center; } }
.hero-trust { margin-top: 1.7rem; display: flex; gap: 1.4rem; flex-wrap: wrap; color: var(--text-muted); font-size: .9rem; font-weight: 500; }
@media (max-width: 980px) { .hero-trust { justify-content: center; } }
.hero-trust span { display: inline-flex; align-items: center; gap: .45rem; }
.hero-trust svg { width: 18px; height: 18px; color: var(--teal-500); }

/* Product mockup (pure CSS/SVG dashboard) */
.mockup {
  position: relative; border-radius: var(--radius-lg); background: #fff;
  border: 1px solid var(--border); box-shadow: var(--shadow-lg); overflow: hidden;
}
.mockup-bar { display: flex; align-items: center; gap: .5rem; padding: .8rem 1rem; border-bottom: 1px solid var(--border); background: var(--bg-subtle); }
.mockup-bar .dot { width: 11px; height: 11px; border-radius: 50%; }
.mockup-bar .r { background: #ff5f57; } .mockup-bar .y { background: #febc2e; } .mockup-bar .g { background: #28c840; }
.mockup-bar .url { margin-left: .6rem; height: 22px; flex: 1; border-radius: 6px; background: #fff; border: 1px solid var(--border); max-width: 260px; }
.mockup-body { padding: 1.1rem; display: grid; gap: .85rem; }
.mockup-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: .75rem; }
.stat {
  border: 1px solid var(--border); border-radius: 12px; padding: .8rem .85rem; background: #fff;
}
.stat .k { font-size: .68rem; text-transform: uppercase; letter-spacing: .05em; color: var(--text-soft); font-weight: 600; }
.stat .v { font-size: 1.28rem; font-weight: 800; color: var(--text-strong); margin-top: .2rem; }
.stat .d { font-size: .72rem; font-weight: 700; margin-top: .15rem; }
.stat .up { color: #17916c; } .stat .down { color: #d1584f; }
.mockup-panel { border: 1px solid var(--border); border-radius: 14px; padding: 1rem; background: linear-gradient(180deg,#fff, #fbfdfe); }
.mockup-panel .ph { display: flex; align-items: center; justify-content: space-between; margin-bottom: .8rem; }
.mockup-panel .ph b { font-size: .92rem; color: var(--text-strong); }
.chart-bars { display: flex; align-items: flex-end; gap: .5rem; height: 118px; }
.chart-bars i { flex: 1; border-radius: 6px 6px 3px 3px; background: linear-gradient(180deg, var(--cyan-400), var(--cyan-600)); opacity: .92; }
.chart-bars i:last-child { background: linear-gradient(180deg, var(--orange-500), var(--orange-600)); }
.ai-note {
  margin-top: .3rem; border: 1px solid rgba(22,184,212,.25); background: linear-gradient(135deg, rgba(22,184,212,.08), rgba(44,197,184,.06));
  border-radius: 12px; padding: .8rem .9rem; display: flex; gap: .6rem; align-items: flex-start;
}
.ai-note .spark { width: 26px; height: 26px; border-radius: 8px; background: var(--grad-ink); color: #7fe0ef; display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; }
.ai-note .spark svg { width: 15px; height: 15px; }
.ai-note p { font-size: .82rem; color: var(--text); line-height: 1.5; }
.ai-note b { color: var(--navy-700); }
.mockup-tag {
  position: absolute; right: -18px; top: -18px; background: #fff; border: 1px solid var(--border);
  box-shadow: var(--shadow-md); border-radius: 12px; padding: .6rem .8rem; display: flex; align-items: center; gap: .5rem;
  font-size: .8rem; font-weight: 700; color: var(--text-strong);
}
.mockup-tag .ic { width: 26px; height: 26px; border-radius: 7px; background: rgba(35,186,143,.16); color: #17916c; display: inline-flex; align-items: center; justify-content: center; }
@media (max-width: 980px) { .mockup-tag { display: none; } }

/* --------------------------- Logo / trust strip ------------------------- */
.trust-strip { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--bg-subtle); }
.trust-strip .row { display: flex; align-items: center; justify-content: center; gap: clamp(1.2rem,4vw,3rem); flex-wrap: wrap; padding-block: 1.4rem; color: var(--text-muted); font-size: .92rem; font-weight: 550; }
.trust-strip .row .item { display: inline-flex; align-items: center; gap: .5rem; }
.trust-strip svg { width: 20px; height: 20px; color: var(--cyan-600); }

/* ------------------------------ Problem --------------------------------- */
.problem-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.2rem; margin-top: 2.6rem; }
@media (max-width: 860px) { .problem-grid { grid-template-columns: 1fr; } }
.problem-card { padding: 1.5rem; border-radius: var(--radius-lg); border: 1px solid var(--border); background: #fff; }
.problem-card .x { width: 40px; height: 40px; border-radius: 11px; background: rgba(209,88,79,.1); color: #cf5a51; display: inline-flex; align-items: center; justify-content: center; margin-bottom: 1rem; }
.problem-card h3 { font-size: 1.12rem; margin-bottom: .5rem; }
.problem-card p { color: var(--text-muted); font-size: .96rem; }

/* --------------------------- Feature cards ------------------------------ */
.feature-card { padding: 1.6rem; }
.feature-card h3 { font-size: 1.15rem; margin: 1rem 0 .5rem; }
.feature-card p { color: var(--text-muted); font-size: .96rem; }
.feature-list { margin-top: 1rem; display: grid; gap: .5rem; }
.feature-list li { display: flex; gap: .55rem; align-items: flex-start; font-size: .92rem; color: var(--text); }
.feature-list svg { width: 18px; height: 18px; color: var(--teal-500); flex-shrink: 0; margin-top: .15rem; }

/* Feature cluster (features.php) */
.cluster { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(1.5rem,4vw,3rem); align-items: center; }
.cluster.rev { grid-template-columns: 1.2fr .8fr; }
.cluster.rev .cluster-media { order: -1; }
@media (max-width: 900px) { .cluster, .cluster.rev { grid-template-columns: 1fr; } .cluster.rev .cluster-media { order: 0; } }
.cluster-media { border: 1px solid var(--border); border-radius: var(--radius-lg); background: linear-gradient(180deg,#fff,var(--bg-subtle)); box-shadow: var(--shadow-sm); padding: 1.4rem; }

/* --------------------------- AI showcase -------------------------------- */
.ai-showcase { background: var(--grad-ink); color: #cfe0e8; border-radius: var(--radius-xl); overflow: hidden; position: relative; }
.ai-showcase .inner { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem,4vw,3.5rem); align-items: center; padding: clamp(2rem,5vw,3.5rem); position: relative; z-index: 1; }
@media (max-width: 900px) { .ai-showcase .inner { grid-template-columns: 1fr; } }
.ai-showcase h2 { color: #fff; font-size: clamp(1.8rem,3.4vw,2.6rem); }
.ai-showcase .lead { color: #a9c4d0; margin-top: 1rem; font-size: 1.08rem; }
.ai-showcase .glow { position: absolute; width: 420px; height: 420px; border-radius: 50%; filter: blur(90px); background: rgba(22,184,212,.28); top: -120px; right: -80px; }
.ai-bubble { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12); border-radius: 16px; padding: 1.1rem 1.2rem; backdrop-filter: blur(6px); }
.ai-bubble + .ai-bubble { margin-top: .9rem; }
.ai-bubble .who { display: flex; align-items: center; gap: .55rem; font-size: .8rem; font-weight: 700; color: #8fd7e6; margin-bottom: .5rem; }
.ai-bubble.user .who { color: #f3b58a; }
.ai-bubble p { color: #dbe9ef; font-size: .96rem; line-height: 1.6; }
.ai-bubble .who .av { width: 22px; height: 22px; border-radius: 6px; display: inline-flex; align-items: center; justify-content: center; background: rgba(22,184,212,.2); }
.ai-bubble.user .who .av { background: rgba(240,137,76,.22); }

/* ----------------------------- Founder ---------------------------------- */
.founder { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(1.6rem,4vw,3.2rem); align-items: center; }
@media (max-width: 860px) { .founder { grid-template-columns: 1fr; } }
.founder-portrait {
  aspect-ratio: 1/1; border-radius: var(--radius-xl); border: 1px dashed var(--border-strong);
  background: linear-gradient(160deg, var(--bg-subtle), #fff); display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center; color: var(--text-soft); gap: .7rem; padding: 1.5rem;
}
.founder-portrait svg { width: 54px; height: 54px; opacity: .5; }
.founder-portrait.brand {
  border: 1px solid var(--navy-600);
  background: radial-gradient(120% 120% at 30% 0%, var(--navy-700) 0%, var(--navy-900) 70%);
  box-shadow: var(--shadow-md);
  gap: 1rem; padding: clamp(1.6rem, 4vw, 2.6rem);
}
.founder-portrait.brand img { width: 100%; max-width: 340px; height: auto; opacity: 1; }
.founder-portrait.brand .founder-portrait-caption {
  font-size: .82rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase;
  color: #7fe0ef;
}
.founder blockquote { font-size: clamp(1.15rem,2vw,1.4rem); line-height: 1.55; color: var(--text-strong); font-weight: 600; letter-spacing: -.01em; }
.founder .sig { margin-top: 1.4rem; }
.founder .sig .n { font-weight: 700; color: var(--text-strong); }
.founder .sig .r { color: var(--text-muted); font-size: .92rem; }
.draft-flag { margin-top: 1.2rem; font-size: .8rem; color: var(--orange-600); background: rgba(240,137,76,.1); border: 1px dashed rgba(240,137,76,.4); padding: .5rem .8rem; border-radius: 10px; display: inline-block; }

/* ----------------------------- Pricing ---------------------------------- */
.price-toggle { display: inline-flex; align-items: center; gap: .8rem; background: var(--bg-muted); border: 1px solid var(--border); border-radius: var(--radius-pill); padding: .35rem; margin-top: 1.6rem; }
.price-toggle button { padding: .5rem 1.1rem; border-radius: var(--radius-pill); font-weight: 650; font-size: .92rem; color: var(--text-muted); transition: all .18s ease; }
.price-toggle button.active { background: #fff; color: var(--navy-800); box-shadow: var(--shadow-xs); }
.price-toggle .save { font-size: .72rem; }
.pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.4rem; margin-top: 2.6rem; align-items: stretch; }
@media (max-width: 940px) { .pricing-grid { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; } }
.price-card { display: flex; flex-direction: column; padding: 1.9rem; border-radius: var(--radius-lg); border: 1px solid var(--border); background: #fff; box-shadow: var(--shadow-xs); position: relative; }
.price-card.featured { border-color: var(--cyan-500); box-shadow: 0 24px 50px -20px rgba(22,184,212,.4); }
.price-card.featured::before { content: 'Most popular'; position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--grad-brand); color: #fff; font-size: .72rem; font-weight: 700; letter-spacing: .03em; padding: .35rem .9rem; border-radius: var(--radius-pill); box-shadow: var(--shadow-sm); }
.price-card .plan { font-size: .82rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--cyan-600); }
.price-card.featured .plan { color: var(--orange-600); }
.price-card .amount { margin-top: .9rem; display: flex; align-items: baseline; gap: .3rem; }
.price-card .amount .num { font-size: 2.9rem; font-weight: 800; color: var(--text-strong); letter-spacing: -.03em; }
.price-card .amount .per { color: var(--text-muted); font-weight: 600; font-size: .95rem; }
.price-card .yearly-note { color: var(--text-soft); font-size: .84rem; margin-top: .35rem; min-height: 1.2em; }
.price-card .desc { color: var(--text-muted); font-size: .95rem; margin-top: .9rem; }
.price-card .btn { margin-top: 1.4rem; }
.price-card .plan-feats { margin-top: 1.5rem; display: grid; gap: .7rem; border-top: 1px solid var(--border); padding-top: 1.4rem; }
.price-card .plan-feats li { display: flex; gap: .6rem; align-items: flex-start; font-size: .93rem; color: var(--text); }
.price-card .plan-feats svg { width: 18px; height: 18px; color: var(--teal-500); flex-shrink: 0; margin-top: .12rem; }

/* ------------------------------- FAQ ------------------------------------ */
.faq { max-width: 800px; margin-inline: auto; margin-top: 2.4rem; display: grid; gap: .8rem; }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius); background: #fff; overflow: hidden; }
.faq-item summary { list-style: none; cursor: pointer; padding: 1.15rem 1.3rem; font-weight: 650; color: var(--text-strong); display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .chev { width: 20px; height: 20px; color: var(--text-soft); transition: transform .2s ease; flex-shrink: 0; }
.faq-item[open] summary .chev { transform: rotate(180deg); }
.faq-item .a { padding: 0 1.3rem 1.2rem; color: var(--text-muted); font-size: .98rem; line-height: 1.65; }

/* ------------------------------- CTA ------------------------------------ */
.cta-band { position: relative; overflow: hidden; background: var(--grad-brand); border-radius: var(--radius-xl); padding: clamp(2.4rem,6vw,4rem); text-align: center; }
.cta-band .glow { position: absolute; width: 500px; height: 500px; border-radius: 50%; filter: blur(90px); background: rgba(240,137,76,.22); bottom: -220px; right: -120px; }
.cta-band .inner { position: relative; z-index: 1; max-width: 640px; margin-inline: auto; }
.cta-band h2 { color: #fff; font-size: clamp(1.9rem,4vw,2.8rem); }
.cta-band p { color: #cfe6ee; margin-top: 1rem; font-size: 1.12rem; }
.cta-band .actions { margin-top: 2rem; display: flex; gap: .9rem; justify-content: center; flex-wrap: wrap; }
.cta-band .fine { margin-top: 1.1rem; color: rgba(255,255,255,.7); font-size: .85rem; }

/* ------------------------------ Footer ---------------------------------- */
.site-footer { background: var(--grad-ink); color: #9fbac6; padding-block: clamp(3rem,6vw,4.5rem) 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 2.4rem; }
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
.footer-brand .brand { color: #fff; }
.footer-brand p { margin-top: 1rem; font-size: .93rem; line-height: 1.6; color: #8ba7b3; max-width: 34ch; }
.footer-brand .shopify-badge { margin-top: 1.3rem; }
.footer-col h4 { color: #fff; font-size: .82rem; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 1rem; font-weight: 700; }
.footer-col a { display: block; padding: .3rem 0; font-size: .94rem; color: #9fbac6; transition: color .15s ease; }
.footer-col a:hover { color: #fff; }
.footer-bottom { margin-top: 2.6rem; padding-top: 1.6rem; border-top: 1px solid rgba(255,255,255,.1); display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; font-size: .87rem; color: #7f9aa6; }
.shopify-badge {
  display: inline-flex; align-items: center; gap: .6rem; padding: .55rem .9rem; border-radius: var(--radius-sm);
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14); color: #cfe0e8; font-size: .84rem; font-weight: 600;
  transition: background .18s ease, border-color .18s ease;
}
.shopify-badge:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.24); }
.shopify-badge svg { width: 18px; height: 18px; color: #95bf47; }

/* ------------------------- Simple page hero ----------------------------- */
.page-hero { position: relative; overflow: hidden; padding-top: calc(var(--header-h) + clamp(2.2rem,5vw,3.6rem)); padding-bottom: clamp(1.6rem,4vw,2.6rem); text-align: center; }
.page-hero h1 { font-size: clamp(2.2rem,5vw,3.4rem); margin-top: 1.1rem; }
.page-hero p { margin: 1.1rem auto 0; max-width: 60ch; color: var(--text-muted); font-size: 1.12rem; }

/* --------------------------- Legal document ----------------------------- */
.legal-doc { max-width: 820px; margin-inline: auto; color: var(--text); font-size: 1rem; line-height: 1.75; }
.legal-doc h2 { font-size: 1.5rem; margin: 2.6rem 0 1rem; padding-top: 1.4rem; border-top: 1px solid var(--border); }
.legal-doc h2:first-child { border-top: none; padding-top: 0; margin-top: 0; }
.legal-doc h3 { font-size: 1.15rem; margin: 1.8rem 0 .7rem; }
.legal-doc h4 { font-size: 1.02rem; margin: 1.4rem 0 .5rem; }
.legal-doc p { margin-bottom: 1rem; color: var(--text-muted); }
.legal-doc ul, .legal-doc ol { margin: 0 0 1.2rem 1.2rem; display: grid; gap: .5rem; }
.legal-doc ul li { position: relative; padding-left: 1.1rem; color: var(--text-muted); }
.legal-doc ul li::before { content: ''; position: absolute; left: 0; top: .65em; width: 6px; height: 6px; border-radius: 50%; background: var(--cyan-500); }
.legal-doc ol { list-style: decimal; }
.legal-doc ol li { padding-left: .3rem; color: var(--text-muted); }
.legal-doc a { color: var(--cyan-600); font-weight: 600; }
.legal-doc a:hover { text-decoration: underline; }
.legal-doc strong { color: var(--text-strong); }
.legal-doc table { width: 100%; border-collapse: collapse; margin: 1rem 0 1.5rem; font-size: .94rem; }
.legal-doc th, .legal-doc td { border: 1px solid var(--border); padding: .6rem .8rem; text-align: left; }
.legal-doc th { background: var(--bg-subtle); font-weight: 700; color: var(--text-strong); }
.legal-meta { text-align: center; color: var(--text-soft); font-size: .9rem; margin-bottom: 2.4rem; }

/* Legal page structural components (restyled from the old Tailwind/FA markup). */
.legal-doc .legal-layout, .legal-doc .legal-aside, .legal-doc .legal-main { display: block; }
.legal-doc .legal-section { scroll-margin-top: 90px; margin-bottom: 2.6rem; }

/* Table of contents — boxed, two-column link list */
.legal-toc { background: var(--bg-subtle); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.3rem 1.5rem; margin-bottom: 2.6rem; }
.legal-toc h3 { font-size: 1rem; margin: 0 0 .8rem; display: flex; align-items: center; gap: .5rem; color: var(--text-strong); font-weight: 700; }
.legal-toc h3 svg { width: 18px; height: 18px; color: var(--cyan-600); }
.legal-toc-nav { columns: 2; column-gap: 1.6rem; }
@media (max-width: 560px) { .legal-toc-nav { columns: 1; } }
.legal-toc-nav a { display: block; padding: .35rem 0 .35rem .6rem; font-size: .92rem; color: var(--text-muted); font-weight: 500; border-left: 2px solid transparent; break-inside: avoid; }
.legal-toc-nav a:hover { color: var(--cyan-600); border-left-color: var(--cyan-500); text-decoration: none; }

/* Section headings with an icon badge */
.legal-doc h2.legal-h { display: flex; align-items: center; gap: .7rem; }
.legal-h-ico { width: 40px; height: 40px; border-radius: 11px; flex-shrink: 0; display: inline-flex; align-items: center; justify-content: center; background: var(--grad-brand); color: #fff; }
.legal-h-ico.orange { background: linear-gradient(135deg, var(--orange-500), var(--orange-600)); }
.legal-h-ico svg { width: 20px; height: 20px; }

/* Inline icons that replaced Font Awesome glyphs */
.legal-doc .ld-ico { width: 1.1em; height: 1.1em; flex-shrink: 0; vertical-align: -.18em; color: var(--cyan-600); }
.legal-doc .ld-ico.ok { color: #17916c; }
.legal-doc .ld-ico.no { color: #cf5a51; }

/* Cards + card grids */
.legal-card-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; margin: 1.2rem 0 1.6rem; }
@media (max-width: 620px) { .legal-card-grid { grid-template-columns: 1fr; } }
.legal-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 1.2rem 1.3rem; }
.legal-card.danger { background: rgba(209,88,79,.05); border-color: rgba(209,88,79,.22); }
.legal-card p:last-child { margin-bottom: 0; }
.legal-flex { display: flex; align-items: flex-start; gap: .9rem; }
.legal-flex-row { display: flex; align-items: center; gap: .55rem; font-weight: 700; color: var(--text-strong); margin-bottom: .5rem; }

/* Card icon circle + numbered step badge */
.legal-ico-circle { width: 44px; height: 44px; border-radius: 12px; flex-shrink: 0; display: inline-flex; align-items: center; justify-content: center; background: linear-gradient(140deg, rgba(22,184,212,.14), rgba(44,197,184,.12)); color: var(--cyan-600); border: 1px solid rgba(22,184,212,.2); }
.legal-ico-circle svg { width: 22px; height: 22px; }
.legal-num { width: 30px; height: 30px; border-radius: 9px; flex-shrink: 0; display: inline-flex; align-items: center; justify-content: center; background: var(--navy-800); color: #fff; font-weight: 700; font-size: .9rem; }

/* Callouts */
.legal-callout { background: rgba(22,184,212,.07); border-left: 4px solid var(--cyan-500); padding: 1.1rem 1.3rem; border-radius: 0 var(--radius) var(--radius) 0; margin: 1.2rem 0 1.6rem; }
.legal-callout p:last-child { margin-bottom: 0; }
.legal-callout.warn { background: rgba(240,137,76,.08); border-left-color: var(--orange-500); }
.legal-callout.danger { background: rgba(209,88,79,.07); border-left-color: #cf5a51; }

/* Icon-led lists — suppress the default dot bullet */
.legal-doc ul.legal-check { margin-left: 0; display: grid; gap: .7rem; }
.legal-doc ul.legal-check > li { padding-left: 0; }
.legal-doc ul.legal-check > li::before, .legal-doc li.legal-li::before { display: none; }
.legal-doc li.legal-li { display: flex; align-items: flex-start; gap: .6rem; padding-left: 0; }

/* ------------------------------- Blog ----------------------------------- */
.blog-featured { display: grid; grid-template-columns: 1.1fr .9fr; gap: 2rem; align-items: center; border: 1px solid var(--border); border-radius: var(--radius-xl); overflow: hidden; background: #fff; box-shadow: var(--shadow-xs); }
@media (max-width: 860px) { .blog-featured { grid-template-columns: 1fr; } }
.blog-featured .media { aspect-ratio: 16/10; background: var(--bg-muted); overflow: hidden; }
.blog-featured .media img { width: 100%; height: 100%; object-fit: cover; }
.blog-featured .body { padding: 1.8rem; }
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin-top: 2.4rem; }
@media (max-width: 900px) { .blog-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 620px) { .blog-grid { grid-template-columns: 1fr; } }
.post-card { display: flex; flex-direction: column; border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; background: #fff; box-shadow: var(--shadow-xs); transition: transform .2s ease, box-shadow .25s ease; }
.post-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.post-card .media { aspect-ratio: 16/9; background: linear-gradient(140deg, var(--navy-700), var(--cyan-600)); overflow: hidden; }
.post-card .media img { width: 100%; height: 100%; object-fit: cover; }
.post-card .body { padding: 1.3rem; display: flex; flex-direction: column; gap: .6rem; flex: 1; }
.post-card .meta { display: flex; align-items: center; gap: .7rem; font-size: .78rem; color: var(--text-soft); }
.post-card h3 { font-size: 1.1rem; line-height: 1.3; }
.post-card h3 a:hover { color: var(--cyan-600); }
.post-card p { font-size: .92rem; color: var(--text-muted); }
.article { max-width: 760px; margin-inline: auto; }
.article-body { font-size: 1.06rem; line-height: 1.8; color: var(--text); margin-top: 1.5rem; }
.article-body h2 { font-size: 1.5rem; margin: 2rem 0 .8rem; }
.article-body h3 { font-size: 1.2rem; margin: 1.6rem 0 .6rem; }
.article-body p { margin-bottom: 1.1rem; color: var(--text-muted); }
.article-body ul { margin: 0 0 1.1rem 1.2rem; display: grid; gap: .4rem; }
.article-body ul li { list-style: disc; color: var(--text-muted); }
.article-body a { color: var(--cyan-600); font-weight: 600; }

/* -------------------------- Contact form -------------------------------- */
.form-field { display: grid; gap: .45rem; margin-bottom: 1.1rem; }
.form-field label { font-size: .88rem; font-weight: 600; color: var(--text-strong); }
.form-field input, .form-field select, .form-field textarea {
  width: 100%; padding: .8rem .95rem; border: 1px solid var(--border-strong); border-radius: var(--radius-sm);
  background: #fff; transition: border-color .15s ease, box-shadow .15s ease; color: var(--text);
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { outline: none; border-color: var(--cyan-500); box-shadow: var(--ring); }
.form-field textarea { resize: vertical; min-height: 130px; }
.form-note { font-size: .84rem; color: var(--text-soft); }
.form-alert { padding: .9rem 1.1rem; border-radius: var(--radius-sm); font-size: .92rem; font-weight: 550; margin-bottom: 1.2rem; }
.form-alert.ok { background: rgba(35,186,143,.12); color: #17916c; border: 1px solid rgba(35,186,143,.3); }
.form-alert.err { background: rgba(209,88,79,.1); color: #cf5a51; border: 1px solid rgba(209,88,79,.3); }
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(1.6rem,4vw,3rem); align-items: start; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-info-card { display: flex; gap: 1rem; align-items: flex-start; padding: 1.3rem; border-radius: var(--radius-lg); border: 1px solid var(--border); background: #fff; }
.contact-info-card .ic { width: 46px; height: 46px; border-radius: 12px; background: var(--grad-brand); color: #fff; display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-info-card .ic svg { width: 22px; height: 22px; }

/* ------------------------------ Utilities ------------------------------- */
.text-center { text-align: center; }
.mt-1 { margin-top: .5rem; } .mt-2 { margin-top: 1rem; } .mt-3 { margin-top: 1.5rem; } .mt-4 { margin-top: 2rem; }
/* Scroll-in entrance. Content is ALWAYS visible by default (opacity:1); the
   .in class only adds a one-shot slide-up animation. This can never leave
   content hidden, even if JS fails. */
/* .reveal / .in are inert hooks: content is always fully visible. (An earlier
   opacity-based scroll animation was removed — it risked leaving content hidden
   in environments that freeze CSS animations, and hurt no-JS accessibility.) */
.skip-link { position: absolute; left: -999px; top: 0; background: var(--navy-800); color: #fff; padding: .7rem 1rem; border-radius: 0 0 8px 0; z-index: 200; }
.skip-link:focus { left: 0; }
