/* ============================================================
   Sparky Venture Labs — site stylesheet
   Indie software + hardware studio · Makers of Printer Studio
   Self-contained, no build step, mobile-first, pure static.
   Display: Sora (geometric, squared — matches the wordmark)
   Body:    Inter
   ============================================================ */

:root {
  /* Primary — molten orange (matches the app + lightning bolt) */
  --primary: hsl(28 90% 50%);          /* #F2740D */
  --primary-600: hsl(28 88% 45%);
  --primary-700: hsl(27 82% 40%);
  --primary-soft: hsl(28 90% 50% / 0.12);
  --primary-soft-2: hsl(28 90% 50% / 0.06);

  /* Secondary — brand blue from the wordmark (royal/dodger blue) */
  --blue: hsl(211 100% 56%);           /* ~#1E90FF */
  --blue-soft: hsl(211 100% 56% / 0.14);
  --blue-600: hsl(211 90% 50%);

  /* Light surfaces (used on a few content pages) */
  --ink: hsl(220 14% 12%);
  --ink-2: hsl(220 9% 32%);
  --ink-3: hsl(220 8% 48%);
  --line: hsl(220 14% 90%);
  --line-2: hsl(220 14% 84%);
  --surface: hsl(0 0% 100%);
  --surface-2: hsl(30 20% 98%);
  --surface-3: hsl(28 16% 96%);

  /* Dark theme — anchored near #121212 to match the app */
  --night:      hsl(228 14% 7%);       /* deep background */
  --night-2:    hsl(228 13% 10%);
  --night-3:    hsl(228 12% 14%);
  --night-card: hsl(228 12% 12%);
  --night-line: hsl(228 10% 22%);
  --night-line-2: hsl(228 10% 18%);
  --night-ink:  hsl(220 18% 97%);
  --night-ink-2: hsl(220 10% 68%);
  --night-ink-3: hsl(220 8% 52%);

  --radius: 16px;
  --radius-sm: 11px;
  --radius-lg: 24px;
  --maxw: 1160px;
  --pad: clamp(1.1rem, 4vw, 2rem);

  --shadow-sm: 0 1px 2px hsl(228 30% 4% / 0.4), 0 2px 8px hsl(228 30% 4% / 0.25);
  --shadow-md: 0 10px 34px hsl(228 40% 3% / 0.5);
  --shadow-lg: 0 30px 70px hsl(228 50% 2% / 0.6);
  --glow-orange: 0 0 0 1px hsl(28 90% 50% / .25), 0 14px 40px hsl(28 90% 45% / .25);

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

* { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: 80px; }

/* ============================================================
   DARK SITE — the whole site is dark by default
   ============================================================ */
body {
  margin: 0;
  font-family: var(--font);
  color: var(--night-ink);
  background: var(--night);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--primary); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.1; letter-spacing: -0.02em; margin: 0 0 .5em;
  font-weight: 700; color: #fff;
}
h1 { font-size: clamp(2.3rem, 6vw, 4rem); letter-spacing: -0.03em; }
h2 { font-size: clamp(1.7rem, 4vw, 2.5rem); letter-spacing: -0.025em; }
h3 { font-size: clamp(1.2rem, 2.6vw, 1.45rem); }
p { margin: 0 0 1rem; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding-left: var(--pad); padding-right: var(--pad); }

.section { padding: clamp(3.4rem, 8vw, 6.5rem) 0; }
.section--tight { padding: clamp(2.6rem, 6vw, 4.2rem) 0; }

.eyebrow {
  display: inline-block; font-family: var(--font-display);
  font-size: .78rem; font-weight: 600; letter-spacing: .18em;
  text-transform: uppercase; color: var(--primary); margin: 0 0 1rem;
}
.eyebrow--blue { color: var(--blue); }

.lead { font-size: clamp(1.06rem, 2.4vw, 1.22rem); color: var(--night-ink-2); max-width: 62ch; }

.skip-link {
  position: absolute; left: -999px; top: 0; background: var(--primary); color: #fff;
  padding: .6rem 1rem; border-radius: 0 0 8px 0; z-index: 999;
}
.skip-link:focus { left: 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .5rem; justify-content: center;
  font-family: var(--font-display); font-weight: 600; font-size: .98rem;
  padding: .85rem 1.5rem; border-radius: 999px;
  border: 1px solid transparent; cursor: pointer;
  transition: transform .14s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease, color .18s ease;
  text-decoration: none;
}
.btn:hover { text-decoration: none; }
.btn--primary { background: var(--primary); color: #fff; box-shadow: 0 10px 26px hsl(28 90% 45% / .32); }
.btn--primary:hover { background: var(--primary-600); transform: translateY(-2px); box-shadow: 0 14px 32px hsl(28 90% 45% / .4); }
.btn--ghost { background: transparent; color: var(--night-ink); border-color: var(--night-line); }
.btn--ghost:hover { border-color: var(--primary); color: #fff; transform: translateY(-2px); }
.btn--blue { background: var(--blue); color: #fff; box-shadow: 0 10px 26px hsl(211 90% 45% / .3); }
.btn--blue:hover { background: var(--blue-600); transform: translateY(-2px); }

/* ---------- Store badges (inline SVG) ---------- */
.badges { display: flex; flex-wrap: wrap; gap: .8rem; align-items: center; }
.badge { display: inline-flex; border-radius: 10px; transition: transform .14s ease; }
.badge svg { display: block; height: 56px; width: auto; }
a.badge:hover { transform: translateY(-2px); text-decoration: none; }
.badge--disabled { cursor: default; opacity: .6; }
.badge--disabled:hover { transform: none; }

/* ============================================================
   HEADER / NAV — logo wordmark on the left, responsive menu
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: hsl(228 14% 7% / .72);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid hsl(228 10% 22% / .55);
}
.site-header .container {
  position: relative;
  display: flex; align-items: center; justify-content: space-between;
  padding-top: .65rem; padding-bottom: .65rem; gap: 1rem;
}
.brand { display: inline-flex; align-items: center; gap: .6rem; }
.brand:hover { text-decoration: none; }
.brand-logo { height: 34px; width: auto; display: block; }
@media (min-width: 600px) { .brand-logo { height: 38px; } }

.nav { display: flex; gap: 1.6rem; align-items: center; }
.nav-links { display: flex; gap: 1.6rem; align-items: center; }
.nav-links a {
  font-family: var(--font-display); color: var(--night-ink-2);
  font-size: .94rem; font-weight: 500; letter-spacing: .005em;
  position: relative; padding: .2rem 0;
}
.nav-links a:hover { color: var(--night-ink); text-decoration: none; }
.nav-links a[aria-current="page"] { color: var(--night-ink); }
.nav-links a[aria-current="page"]::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -.25rem; height: 2px;
  background: var(--primary); border-radius: 2px;
}
.nav-cta {
  font-family: var(--font-display); font-weight: 600; font-size: .9rem;
  color: var(--primary); border: 1px solid hsl(28 90% 50% / .4);
  padding: .5rem 1rem; border-radius: 999px; background: var(--primary-soft-2);
  white-space: nowrap; cursor: default;
}

/* Hamburger toggle (shown on all screen sizes) */
.nav-toggle {
  display: inline-flex; appearance: none; background: transparent; border: 1px solid var(--night-line);
  border-radius: 10px; width: 44px; height: 40px; cursor: pointer; padding: 0;
  align-items: center; justify-content: center;
}
.nav-toggle:hover { border-color: hsl(28 90% 50% / .5); }
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ""; display: block; width: 19px; height: 2px; background: var(--night-ink);
  border-radius: 2px; transition: transform .2s ease, opacity .2s ease;
}
.nav-toggle span { position: relative; }
.nav-toggle span::before { position: absolute; top: -6px; }
.nav-toggle span::after { position: absolute; top: 6px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after { transform: translateY(-6px) rotate(-45deg); }

/* Menu drops as a panel on every screen size */
.nav {
  position: absolute; top: 100%; right: 0; left: auto;
  width: min(320px, calc(100vw - 2 * var(--pad)));
  flex-direction: column; align-items: stretch; gap: 0;
  background: hsl(228 14% 8% / .98);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  border: 1px solid var(--night-line);
  border-top: none;
  border-radius: 0 0 14px 14px;
  padding: .5rem var(--pad) 1.2rem;
  transform: translateY(-8px); opacity: 0; pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
  box-shadow: var(--shadow-md);
}
.nav.is-open { transform: translateY(0); opacity: 1; pointer-events: auto; }
.nav-links { flex-direction: column; align-items: stretch; gap: 0; width: 100%; }
.nav-links a { padding: .85rem .2rem; border-bottom: 1px solid var(--night-line-2); font-size: 1rem; }
.nav-links a[aria-current="page"]::after { display: none; }
.nav-cta { align-self: flex-start; margin-top: .9rem; }

@media (max-width: 480px) {
  .nav { width: calc(100vw - 2 * var(--pad)); }
}

/* ============================================================
   HERO — company identity first
   ============================================================ */
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(1100px 560px at 82% -12%, hsl(28 90% 50% / .20), transparent 60%),
    radial-gradient(900px 540px at 4% 108%, hsl(211 100% 56% / .14), transparent 58%),
    var(--night);
  color: var(--night-ink);
  padding: clamp(3.2rem, 8vw, 6rem) 0 clamp(3.6rem, 9vw, 6.4rem);
}
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2.2rem, 5vw, 4.5rem); align-items: center; }
.hero-copy { max-width: 36rem; }
.hero h1 { color: #fff; margin-bottom: .9rem; }
.hero .grad {
  background: linear-gradient(95deg, var(--primary), hsl(38 95% 60%));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero .grad-blue {
  background: linear-gradient(95deg, var(--blue), hsl(195 95% 62%));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero p.lead { color: var(--night-ink-2); }
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.9rem; }
.hero-meta { display: flex; flex-wrap: wrap; gap: .5rem .9rem; margin: 1.8rem 0 0; padding: 0; list-style: none; }
.hero-meta li { font-family: var(--font-display); font-size: .86rem; color: var(--night-ink-2); display: inline-flex; align-items: center; gap: .45rem; }
.hero-meta li::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--primary); }

/* Stacked logo as hero media */
.hero-logo-wrap {
  position: relative; display: grid; place-items: center;
}
.hero-logo {
  width: min(420px, 80%); height: auto; filter: drop-shadow(0 24px 60px hsl(228 50% 2% / .6));
  animation: floaty 7s ease-in-out infinite;
}
.hero-logo-glow {
  position: absolute; inset: 8% 10%; z-index: -1; border-radius: 50%;
  background: radial-gradient(circle, hsl(28 90% 50% / .22), transparent 62%);
  filter: blur(28px);
}
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
@media (prefers-reduced-motion: reduce) { .hero-logo { animation: none; } }

/* ---------- Capability chips (what the studio does) ---------- */
.caps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: clamp(2.4rem, 5vw, 3.4rem); }
.cap {
  background: var(--night-card); border: 1px solid var(--night-line-2); border-radius: var(--radius);
  padding: 1.4rem 1.4rem 1.5rem; transition: transform .16s ease, border-color .2s ease, box-shadow .2s ease;
}
.cap:hover { transform: translateY(-3px); border-color: hsl(28 90% 50% / .4); box-shadow: var(--shadow-md); }
.cap .ic { width: 46px; height: 46px; border-radius: 12px; background: var(--primary-soft); display: grid; place-items: center; margin-bottom: 1rem; color: var(--primary); }
.cap .ic svg { width: 23px; height: 23px; }
.cap.cap--blue .ic { background: var(--blue-soft); color: var(--blue); }
.cap h3 { font-size: 1.12rem; margin-bottom: .4rem; }
.cap p { color: var(--night-ink-2); font-size: .95rem; margin: 0; }

/* ---------- Trust strip ---------- */
.strip { background: var(--night-2); border-top: 1px solid var(--night-line-2); border-bottom: 1px solid var(--night-line-2); color: var(--night-ink-2); padding: 1.1rem 0; }
.strip .container { display: flex; flex-wrap: wrap; gap: .6rem 1.6rem; align-items: center; justify-content: center; font-size: .9rem; }
.strip strong { color: var(--night-ink); font-family: var(--font-display); font-weight: 600; }
.strip .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--night-line); }

/* ============================================================
   PRODUCT SHOWCASE (Printer Studio)
   ============================================================ */
.product-intro { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.product-intro .phone { margin: 0 0 0 auto; }
.product-badge {
  display: inline-flex; align-items: center; gap: .5rem; font-family: var(--font-display);
  font-size: .8rem; font-weight: 600; letter-spacing: .04em; color: var(--night-ink);
  background: var(--night-3); border: 1px solid var(--night-line); border-radius: 999px;
  padding: .4rem .9rem; margin-bottom: 1.1rem;
}
.product-badge .dot-live { width: 8px; height: 8px; border-radius: 50%; background: var(--primary); box-shadow: 0 0 0 4px hsl(28 90% 50% / .2); }

/* ---------- Stats ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.stat { text-align: center; padding: 1.6rem 1rem; border: 1px solid var(--night-line-2); border-radius: var(--radius); background: var(--night-card); }
.stat .num { font-family: var(--font-display); font-size: clamp(2rem, 4.5vw, 2.7rem); font-weight: 700; color: var(--primary); letter-spacing: -.03em; line-height: 1; }
.stat .lbl { font-size: .84rem; color: var(--night-ink-2); margin-top: .5rem; }

/* ---------- Feature rows ---------- */
.feature { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.feature + .feature { margin-top: clamp(3rem, 7vw, 5.5rem); }
.feature--rev .feature-media { order: 2; }
.feature-copy h3 { font-size: clamp(1.35rem, 3vw, 1.7rem); }
.feature ul { list-style: none; padding: 0; margin: 1.1rem 0 0; }
.feature ul li { padding-left: 1.7rem; position: relative; margin-bottom: .6rem; color: var(--night-ink-2); }
.feature ul li::before { content: ""; position: absolute; left: 0; top: .55em; width: 11px; height: 11px; border-radius: 3px; background: var(--primary); }

/* ---------- Device frame (phone) ---------- */
.phone {
  width: min(290px, 78vw); margin: 0 auto; border-radius: 44px;
  background: linear-gradient(160deg, hsl(228 10% 22%), hsl(228 12% 9%));
  padding: 11px; position: relative;
  box-shadow: var(--shadow-lg), 0 0 0 1px hsl(228 10% 28%);
}
.phone::before { content: ""; position: absolute; top: 13px; left: 50%; transform: translateX(-50%); width: 78px; height: 20px; background: #05060a; border-radius: 0 0 14px 14px; z-index: 2; }
.phone img { border-radius: 34px; display: block; }
.feature-shot { width: min(280px, 72vw); margin: 0 auto; }

/* ---------- Feature grid (cards) ---------- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.card {
  background: var(--night-card); border: 1px solid var(--night-line-2); border-radius: var(--radius);
  padding: 1.6rem; transition: transform .16s ease, box-shadow .2s ease, border-color .2s ease;
}
.card .ic { width: 46px; height: 46px; border-radius: 12px; background: var(--primary-soft); display: grid; place-items: center; margin-bottom: 1.1rem; color: var(--primary); }
.card .ic svg { width: 23px; height: 23px; }
.card h3 { font-size: 1.1rem; margin-bottom: .4rem; color: #fff; }
.card p { color: var(--night-ink-2); font-size: .95rem; margin: 0; }
a.card { color: inherit; }
a.card:hover { text-decoration: none; }
.card:hover { transform: translateY(-3px); border-color: hsl(28 90% 50% / .4); box-shadow: var(--shadow-md); }

/* ---------- How it works ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; counter-reset: step; }
.step { position: relative; padding: 1.8rem 1.5rem 1.5rem; border: 1px solid var(--night-line-2); border-radius: var(--radius); background: var(--night-card); }
.step .n { counter-increment: step; font-family: var(--font-display); width: 42px; height: 42px; border-radius: 12px; background: var(--primary); color: #fff; font-weight: 700; display: grid; place-items: center; margin-bottom: 1rem; }
.step .n::before { content: counter(step); }
.step h3 { font-size: 1.12rem; }
.step p { color: var(--night-ink-2); font-size: .95rem; margin: 0; }

/* ---------- Gallery ---------- */
.gallery { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1.1rem; }
.gallery .shot {
  border-radius: 26px; background: linear-gradient(160deg, hsl(228 10% 20%), hsl(228 12% 9%));
  padding: 7px; box-shadow: var(--shadow-md), 0 0 0 1px hsl(228 10% 26%);
  transition: transform .18s ease;
}
.gallery .shot:hover { transform: translateY(-4px); }
.gallery .shot img { border-radius: 20px; }

/* ---------- Section variants ---------- */
.section--soft { background: var(--night-2); }
.section--panel { background: linear-gradient(180deg, var(--night), var(--night-2)); }

/* ============================================================
   ABOUT THE STUDIO — features the stacked logo
   ============================================================ */
.studio {
  position: relative; overflow: hidden;
  background:
    radial-gradient(820px 460px at 12% -10%, hsl(211 100% 56% / .12), transparent 58%),
    radial-gradient(720px 420px at 92% 110%, hsl(28 90% 50% / .12), transparent 58%),
    var(--night-2);
}
.studio-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(2.4rem, 6vw, 5rem); align-items: center; }
.studio-logo-wrap { position: relative; display: grid; place-items: center; }
.studio-logo { width: min(360px, 78%); height: auto; filter: drop-shadow(0 24px 60px hsl(228 50% 2% / .55)); }
.studio-logo-glow { position: absolute; top: 14%; left: 50%; transform: translateX(-50%); width: 60%; aspect-ratio: 1; z-index: 0; border-radius: 50%; background: radial-gradient(circle, hsl(28 90% 50% / .2), transparent 60%); filter: blur(30px); }
.studio-copy h2 { margin-bottom: 1rem; }
.studio-facts { list-style: none; padding: 0; margin: 1.6rem 0 0; display: grid; gap: .9rem; }
.studio-facts li { display: flex; gap: .8rem; align-items: flex-start; color: var(--night-ink-2); }
.studio-facts li svg { flex: 0 0 auto; width: 22px; height: 22px; color: var(--primary); margin-top: .15rem; }
.studio-facts li strong { color: var(--night-ink); font-family: var(--font-display); font-weight: 600; }

/* ---------- CTA band ---------- */
.cta-band {
  position: relative; overflow: hidden;
  background:
    radial-gradient(760px 340px at 100% 0%, hsl(28 90% 50% / .24), transparent 60%),
    radial-gradient(640px 320px at 0% 120%, hsl(211 100% 56% / .16), transparent 60%),
    var(--night-3);
  color: var(--night-ink); border: 1px solid var(--night-line-2);
  border-radius: var(--radius-lg); padding: clamp(2.4rem, 5vw, 3.8rem);
  text-align: center;
}
.cta-band h2 { color: #fff; }
.cta-band .lead { margin-inline: auto; }
.cta-band .badges { justify-content: center; margin-top: 1.6rem; }

/* ---------- Roadmap ---------- */
.waves { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; align-items: stretch; }
.wave {
  display: flex; flex-direction: column;
  background: var(--night-card); border: 1px solid var(--night-line-2); border-radius: var(--radius);
  padding: 1.7rem 1.6rem; border-top: 3px solid var(--primary);
  transition: transform .16s ease, box-shadow .2s ease;
}
.wave:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.wave--blue { border-top-color: var(--blue); }
.wave-head { display: flex; flex-wrap: wrap; gap: .6rem; align-items: center; justify-content: space-between; margin-bottom: 1.1rem; }
.pill {
  display: inline-flex; align-items: center; font-family: var(--font-display); font-size: .72rem; font-weight: 600;
  letter-spacing: .06em; text-transform: uppercase; padding: .32rem .7rem; border-radius: 999px;
  background: var(--primary); color: #fff;
}
.pill--soft { background: var(--primary-soft); color: var(--primary); }
.pill--ghost { background: transparent; color: var(--blue); border: 1px solid hsl(211 100% 56% / .4); }
.wave-tag { font-family: var(--font-display); font-size: .74rem; font-weight: 500; color: var(--night-ink-3); display: inline-flex; align-items: center; gap: .4rem; }
.wave-tag::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--primary); }
.wave h3 { font-size: 1.15rem; margin-bottom: .9rem; color: #fff; }
.wave ul { list-style: none; padding: 0; margin: 0; }
.wave ul li { padding-left: 1.5rem; position: relative; margin-bottom: .65rem; color: var(--night-ink-2); font-size: .93rem; }
.wave ul li:last-child { margin-bottom: 0; }
.wave ul li::before { content: ""; position: absolute; left: 0; top: .5em; width: 8px; height: 8px; border-radius: 2px; background: var(--primary); }
.roadmap-note { max-width: 70ch; margin: clamp(1.8rem, 4vw, 2.6rem) auto 0; text-align: center; font-size: .92rem; color: var(--night-ink-3); }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin: 0 auto; }
.faq details { border: 1px solid var(--night-line-2); border-radius: var(--radius-sm); padding: 0 1.3rem; margin-bottom: .7rem; background: var(--night-card); transition: border-color .2s ease; }
.faq details[open] { border-color: hsl(28 90% 50% / .35); }
.faq summary { cursor: pointer; font-family: var(--font-display); font-weight: 600; color: #fff; padding: 1.1rem 0; list-style: none; display: flex; justify-content: space-between; gap: 1rem; align-items: center; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--primary); font-weight: 700; font-size: 1.4rem; line-height: 1; flex: 0 0 auto; }
.faq details[open] summary::after { content: "\2013"; }
.faq p { color: var(--night-ink-2); margin: 0 0 1.1rem; }
.faq a { color: var(--primary); }

/* ---------- Quote card ---------- */
.quote-card {
  max-width: 740px; margin: 0 auto; text-align: center; position: relative;
  background: var(--night-card); border: 1px solid var(--night-line-2); border-radius: var(--radius-lg);
  padding: clamp(2.2rem, 5vw, 3.2rem) clamp(1.6rem, 5vw, 3rem);
}
.quote-card::before { content: "\201C"; position: absolute; top: .05em; left: .28em; font-size: 5rem; line-height: 1; color: var(--primary); opacity: .22; font-family: Georgia, serif; }
.quote-text { position: relative; font-family: var(--font-display); font-size: clamp(1.2rem, 3vw, 1.55rem); font-weight: 500; letter-spacing: -.02em; margin: .4rem 0 1.1rem; line-height: 1.4; color: #fff; }
.quote-cite { color: var(--night-ink-3); font-size: .9rem; }
.quote-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 2.5vw, 1.6rem); max-width: 1100px; margin: 0 auto; }
.quote-grid .quote-card { max-width: none; text-align: left; padding: clamp(1.6rem, 3vw, 2.1rem); }
.quote-grid .quote-card::before { font-size: 3.4rem; top: .02em; left: .22em; }
.quote-grid .quote-text { font-size: clamp(1.02rem, 1.6vw, 1.16rem); margin: .2rem 0 1rem; }
.quote-cite-name { display: block; color: #fff; font-weight: 600; font-size: .92rem; }
.quote-grid .quote-cite br { display: none; }
.quote-cite-role { display: block; color: var(--night-ink-3); font-size: .82rem; margin-top: .12rem; }
@media (max-width: 860px) { .quote-grid { grid-template-columns: 1fr; max-width: 560px; } }

/* ============================================================
   SUPPORT PAGE
   ============================================================ */
.page-hero {
  background:
    radial-gradient(1000px 460px at 86% -20%, hsl(28 90% 50% / .18), transparent 60%),
    radial-gradient(760px 420px at 0% 120%, hsl(211 100% 56% / .12), transparent 58%),
    var(--night);
  color: var(--night-ink);
  padding: clamp(2.8rem, 7vw, 4.8rem) 0 clamp(2.4rem, 6vw, 3.8rem);
}
.page-hero h1 { color: #fff; max-width: 18ch; }
.page-hero .lead { color: var(--night-ink-2); max-width: 64ch; }
.support-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.7rem; }
.support-email-note { margin-top: 1.1rem; font-size: .86rem; color: var(--night-ink-2); font-family: var(--font-display); }
.breadcrumb { font-family: var(--font-display); font-size: .85rem; color: var(--night-ink-3); margin-bottom: 1rem; }
.breadcrumb a { color: var(--night-ink-3); }
.breadcrumb a:hover { color: var(--night-ink); }

/* ============================================================
   ARTICLE / PRIVACY / GUIDES
   ============================================================ */
.article { max-width: 760px; margin: 0 auto; }
.article h1 { margin-bottom: .6rem; }
.article .lead { margin-bottom: 1.8rem; color: var(--night-ink-2); }
.article h2 { margin-top: 2.4rem; font-size: clamp(1.4rem, 3vw, 1.8rem); }
.article h3 { margin-top: 1.7rem; }
.article p { color: var(--night-ink-2); }
.article a { color: var(--primary); }
.article ul, .article ol { padding-left: 1.3rem; margin: 0 0 1.1rem; color: var(--night-ink-2); }
.article ul li, .article ol li { margin-bottom: .45rem; }
.article .callout { background: var(--primary-soft-2); border-left: 4px solid var(--primary); padding: 1rem 1.2rem; border-radius: 0 var(--radius-sm) var(--radius-sm) 0; margin: 1.5rem 0; color: var(--night-ink-2); }
.article .callout strong { color: var(--night-ink); }
.effective-date { font-family: var(--font-display); font-size: .85rem; color: var(--night-ink-3); margin: -.4rem 0 1.6rem; }

/* Tables (guides) */
.table-wrap { overflow-x: auto; margin: 1.5rem 0; border: 1px solid var(--night-line-2); border-radius: var(--radius-sm); }
table.settings { width: 100%; border-collapse: collapse; font-size: .94rem; min-width: 480px; }
table.settings th, table.settings td { text-align: left; padding: .75rem .95rem; border-bottom: 1px solid var(--night-line-2); color: var(--night-ink-2); }
table.settings thead th { background: var(--night-3); font-family: var(--font-display); font-size: .78rem; text-transform: uppercase; letter-spacing: .05em; color: var(--night-ink-2); }
table.settings tbody tr:last-child td { border-bottom: 0; }
table.settings td:first-child { font-weight: 600; color: var(--night-ink); }
table.settings code { font-family: var(--mono); font-size: .9em; color: var(--primary); }

.guide-cta { margin: 2.6rem 0 0; padding: 1.7rem; border: 1px solid var(--night-line-2); border-radius: var(--radius); background: var(--night-card); display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; justify-content: space-between; }
.guide-cta .gc-icon { width: 56px; height: 56px; border-radius: 14px; }
.guide-cta .gc-text { flex: 1 1 260px; }
.guide-cta .gc-text strong { display: block; font-size: 1.05rem; color: #fff; font-family: var(--font-display); }
.guide-cta .gc-text span { color: var(--night-ink-2); font-size: .94rem; }

.related { margin-top: 2.6rem; padding-top: 1.7rem; border-top: 1px solid var(--night-line-2); }
.related h2 { font-size: 1.2rem; margin-bottom: .8rem; margin-top: 0; }
.related ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .5rem; }
.related a { color: var(--primary); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--night); border-top: 1px solid var(--night-line-2); color: var(--night-ink-2); padding: clamp(2.8rem, 6vw, 4.2rem) 0 2.2rem; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 2.4rem; }
.footer-logo { height: 40px; width: auto; margin-bottom: 1rem; }
.footer-about { max-width: 38ch; color: var(--night-ink-2); font-size: .95rem; }
.footer-email { font-family: var(--font-display); font-weight: 500; color: var(--night-ink); }
.footer-email a { color: var(--primary); }
.site-footer h4 { font-family: var(--font-display); color: #fff; font-size: .82rem; text-transform: uppercase; letter-spacing: .1em; margin: 0 0 1rem; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer ul li { margin-bottom: .55rem; }
.site-footer a { color: var(--night-ink-2); font-size: .94rem; }
.site-footer a:hover { color: #fff; }
.footer-note { margin-top: 2.6rem; padding-top: 1.7rem; border-top: 1px solid var(--night-line-2); font-size: .82rem; color: var(--night-ink-3); }
.footer-note p { margin: 0 0 .6rem; max-width: 78ch; }
.footer-legal { display: flex; flex-wrap: wrap; gap: .4rem 1.3rem; justify-content: space-between; align-items: center; }
.footer-legal a { color: var(--night-ink-3); }
.footer-legal a:hover { color: var(--night-ink); }

/* ============================================================
   SCROLL REVEAL (progressive enhancement)
   ============================================================ */
.js-reveal .reveal { opacity: 0; transform: translateY(16px); transition: opacity .6s ease, transform .6s ease; }
.js-reveal .reveal.is-visible { opacity: 1; transform: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-logo-wrap { order: -1; margin-bottom: .6rem; }
  .hero-copy { max-width: none; }
  .product-intro { grid-template-columns: 1fr; }
  .product-intro .phone { margin: 0 auto; }
  .studio-grid { grid-template-columns: 1fr; }
  .studio-logo-wrap { order: -1; }
  .feature, .feature--rev .feature-media { grid-template-columns: 1fr; order: initial; }
  .feature-media { order: -1; }
  .caps { grid-template-columns: 1fr; }
  .cards { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .gallery { grid-template-columns: repeat(3, 1fr); }
  .waves { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .cards { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .badge svg { height: 50px; }
  .footer-legal { justify-content: flex-start; }
  .hero-actions, .support-actions { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation: none !important; transition: none !important; }
  .js-reveal .reveal { opacity: 1 !important; transform: none !important; }
}
