/* ============================================================
   APHELES — Brand Design System
   Built from the official brand kit tokens.
   Violet #7C3AED · Purple #8B5CF6 · Indigo #6366F1 · Cyan #22D3EE
   Ink #0F172A · Mist #F8FAFC · Gradient 135° #6366F1 → #8B5CF6
   Typeface: Inter (800 display / 500 body)
   ============================================================ */

:root {
  /* Brand */
  --violet: #7C3AED;
  --purple: #8B5CF6;
  --indigo: #6366F1;
  --cyan:   #22D3EE;
  --ink:    #0F172A;
  --mist:   #F8FAFC;
  --grad:   linear-gradient(135deg, #6366F1 0%, #8B5CF6 100%);
  --grad-bolt: linear-gradient(135deg, #6366F1 0%, #8B5CF6 55%, #22D3EE 110%);

  /* Neutrals (slate family, harmonised with Ink) */
  --bg: #F8FAFC;
  --surface: #FFFFFF;
  --ink-2: #475569;
  --muted: #64748B;
  --faint: #94A3B8;
  --line: rgba(15, 23, 42, 0.08);
  --line-2: rgba(15, 23, 42, 0.14);

  --shadow-sm: 0 1px 2px rgba(15,23,42,.04), 0 6px 18px rgba(15,23,42,.06);
  --shadow-md: 0 18px 50px rgba(15,23,42,.10);
  --shadow-glow: 0 20px 60px rgba(124,58,237,.28);

  --radius: 18px;
  --radius-sm: 12px;
  --radius-pill: 999px;
  --maxw: 1140px;

  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  font-weight: 400;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: inherit; text-decoration: none; }
img, svg { display: block; }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 300;
  background: var(--ink); color: #fff; padding: 10px 16px; border-radius: 10px; font-weight: 600;
}
.skip-link:focus { left: 16px; top: 16px; }

/* ---------- Typography helpers ---------- */
.display {
  font-weight: 800; letter-spacing: -0.03em; line-height: 1.04;
  font-size: clamp(2.6rem, 6vw, 4.6rem);
}
.gtext {
  background: var(--grad-bolt); -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--violet); background: rgba(124,58,237,0.08);
  padding: 7px 14px 7px 12px; border-radius: var(--radius-pill);
  border: 1px solid rgba(124,58,237,0.18);
}
.eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 0 4px rgba(34,211,238,0.18); }
.kicker { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--indigo); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font); font-weight: 600; font-size: 0.96rem;
  padding: 12px 22px; border-radius: var(--radius-pill); border: 1px solid transparent;
  cursor: pointer; transition: transform .15s ease, box-shadow .25s ease, background .2s ease, border-color .2s ease, opacity .2s ease;
  white-space: nowrap;
}
.btn-primary { background: var(--grad); color: #fff; box-shadow: 0 8px 22px rgba(99,102,241,.30); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-glow); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line-2); }
.btn-ghost:hover { background: rgba(15,23,42,0.04); transform: translateY(-2px); }
.btn-cyan { background: var(--cyan); color: var(--ink); font-weight: 700; }
.btn-cyan:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(34,211,238,.35); }
.btn-disabled { background: rgba(15,23,42,0.05); color: var(--faint); border-color: var(--line); cursor: not-allowed; }
.btn-disabled:hover { transform: none; box-shadow: none; }
.btn-light { background: #fff; color: var(--indigo); }
.btn-light:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,0.45); }
.btn-outline-light:hover { background: rgba(255,255,255,0.10); transform: translateY(-2px); }

/* ---------- Header / nav ---------- */
header.site {
  position: sticky; top: 0; z-index: 100;
  background: rgba(248,250,252,0.82);
  backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 74px; }
.logo-lockup svg { height: 34px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a:not(.btn) { font-weight: 500; font-size: 0.95rem; color: var(--ink-2); transition: color .2s; position: relative; }
.nav-links a:not(.btn):hover { color: var(--ink); }
.nav-links a.active { color: var(--ink); font-weight: 600; }
.nav-links a.active::after { content: ""; position: absolute; left: 0; right: 0; bottom: -26px; height: 2px; background: var(--grad); border-radius: 2px; }

/* ---------- Decorative backgrounds ---------- */
.hexbg { position: relative; overflow: hidden; }
.hexbg::before {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='48' viewBox='0 0 56 48'%3E%3Cpath d='M14 0l14 8v16l-14 8L0 24V8z' fill='none' stroke='%237C3AED' stroke-opacity='0.05' stroke-width='1.2'/%3E%3Cpath d='M42 0l14 8v16l-14 8-14-8V8z' fill='none' stroke='%236366F1' stroke-opacity='0.05' stroke-width='1.2'/%3E%3C/svg%3E");
  -webkit-mask-image: radial-gradient(120% 80% at 50% 0%, #000 0%, transparent 70%);
  mask-image: radial-gradient(120% 80% at 50% 0%, #000 0%, transparent 70%);
}
.glow { position: absolute; border-radius: 50%; pointer-events: none; z-index: 0; filter: blur(10px); }

/* ---------- Hero ---------- */
.hero { position: relative; padding: 104px 0 88px; }
.hero .wrap { position: relative; z-index: 2; }
.hero .glow-a { width: 520px; height: 420px; left: -8%; top: -10%; background: radial-gradient(50% 50% at 50% 50%, rgba(99,102,241,0.20), transparent 70%); }
.hero .glow-b { width: 360px; height: 360px; right: -4%; top: 6%; background: radial-gradient(50% 50% at 50% 50%, rgba(34,211,238,0.16), transparent 70%); }
.hero h1 { margin-top: 22px; max-width: 17ch; }
.hero .lede { font-size: clamp(1.05rem, 2vw, 1.3rem); color: var(--ink-2); max-width: 56ch; margin-top: 24px; font-weight: 450; }
.hero .actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; }
.hero .note { margin-top: 18px; font-size: 0.9rem; color: var(--muted); display: flex; align-items: center; gap: 8px; }
.hero .note b { color: var(--ink); font-weight: 600; }

/* reveal */
.reveal { opacity: 0; transform: translateY(20px); animation: fadeUp .8s cubic-bezier(.2,.7,.2,1) forwards; }
.d1{animation-delay:.05s}.d2{animation-delay:.14s}.d3{animation-delay:.23s}.d4{animation-delay:.32s}.d5{animation-delay:.41s}
@keyframes fadeUp { to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce){ .reveal{animation:none;opacity:1;transform:none;} .float{animation:none;} }
.float { animation: floaty 6s ease-in-out infinite; }
@keyframes floaty { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }

/* ---------- Logo strip ---------- */
.strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--surface); }
.strip .wrap { display: flex; flex-wrap: wrap; align-items: center; gap: 12px 36px; padding: 22px 24px; }
.strip .label { font-size: 0.76rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); font-weight: 700; }
.strip .items { display: flex; flex-wrap: wrap; gap: 8px 14px; }
.strip .items span { font-size: 0.92rem; color: var(--ink-2); font-weight: 600; padding: 5px 12px; border: 1px solid var(--line); border-radius: var(--radius-pill); background: var(--bg); }

/* ---------- Sections ---------- */
section.band { padding: 92px 0; position: relative; }
.section-head { max-width: 62ch; }
.section-head h2 { font-weight: 800; letter-spacing: -0.025em; font-size: clamp(1.9rem, 3.8vw, 2.9rem); line-height: 1.1; margin-top: 14px; }
.section-head p { color: var(--ink-2); font-size: 1.08rem; margin-top: 16px; }
.center { text-align: center; margin-left: auto; margin-right: auto; }

/* ---------- Feature cards ---------- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 50px; }
.card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 32px 28px; box-shadow: var(--shadow-sm); position: relative; overflow: hidden;
  transition: transform .2s ease, box-shadow .25s ease, border-color .2s ease;
}
.card::after { content:""; position:absolute; left:0; right:0; top:0; height:3px; background: var(--grad); transform: scaleX(0); transform-origin: left; transition: transform .3s ease; }
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: rgba(124,58,237,0.25); }
.card:hover::after { transform: scaleX(1); }
.card .ico { width: 50px; height: 50px; border-radius: 14px; display: grid; place-items: center; margin-bottom: 18px; background: rgba(99,102,241,0.10); }
.card .ico svg { width: 26px; height: 26px; }
.card h3 { font-weight: 700; font-size: 1.3rem; letter-spacing: -0.01em; }
.card p { color: var(--ink-2); margin-top: 10px; font-size: 0.98rem; }

/* ---------- Dark band (how it works) ---------- */
.dark { background: var(--ink); color: #CBD5E1; border-radius: 28px; padding: 64px 52px; position: relative; overflow: hidden; }
.dark::before { content:""; position:absolute; right:-80px; top:-80px; width:320px; height:320px; border-radius:50%; background: radial-gradient(circle, rgba(139,92,246,0.40), transparent 70%); }
.dark::after { content:""; position:absolute; left:-60px; bottom:-100px; width:300px; height:300px; border-radius:50%; background: radial-gradient(circle, rgba(34,211,238,0.18), transparent 70%); }
.dark .section-head h2 { color: #fff; }
.dark .section-head p { color: rgba(203,213,225,0.85); }
.dark .kicker { color: var(--cyan); }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-top: 48px; position: relative; z-index: 1; }
.step .num {
  font-weight: 800; font-size: 1.05rem; width: 42px; height: 42px; border-radius: 12px;
  display: grid; place-items: center; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12);
  color: #fff; margin-bottom: 16px;
}
.step.s1 .num { background: rgba(124,58,237,0.22); border-color: rgba(124,58,237,0.5); }
.step.s2 .num { background: rgba(99,102,241,0.22); border-color: rgba(99,102,241,0.5); }
.step.s3 .num { background: rgba(139,92,246,0.22); border-color: rgba(139,92,246,0.5); }
.step.s4 .num { background: rgba(34,211,238,0.18); border-color: rgba(34,211,238,0.5); color: var(--cyan); }
.step h4 { color: #fff; font-size: 1.12rem; font-weight: 700; }
.step p { margin-top: 8px; color: rgba(203,213,225,0.80); font-size: 0.95rem; }

/* ---------- Signature (Monday report) ---------- */
.split { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }
.badge { display: inline-block; font-size: 0.74rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--indigo); background: rgba(99,102,241,0.10); padding: 6px 12px; border-radius: var(--radius-pill); border: 1px solid rgba(99,102,241,0.2); }
.split h2 { font-weight: 800; letter-spacing: -0.025em; font-size: clamp(1.8rem, 3.6vw, 2.7rem); line-height: 1.12; margin: 16px 0; }
.split p { color: var(--ink-2); font-size: 1.05rem; }
.report-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow-md); }
.report-card .rc-head { display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--line); padding-bottom: 14px; margin-bottom: 14px; }
.report-card .rc-head strong { font-weight: 700; font-size: 1.05rem; }
.report-card .rc-head .tag { font-size: 0.74rem; color: #fff; font-weight: 700; background: var(--grad); padding: 4px 10px; border-radius: var(--radius-pill); }
.report-card .row { display: flex; align-items: flex-start; gap: 12px; padding: 10px 0; font-size: 0.95rem; }
.report-card .row .pill { flex: none; margin-top: 4px; width: 9px; height: 9px; border-radius: 50%; }
.report-card .row.up .pill { background: var(--cyan); }
.report-card .row.flat .pill { background: var(--purple); }
.report-card .row.act .pill { background: var(--indigo); }
.report-card .row b { font-weight: 700; color: var(--ink); }

/* ---------- Stats ---------- */
.stats { background: var(--ink); color:#CBD5E1; border-radius: 24px; padding: 48px 44px; display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; position: relative; overflow: hidden; }
.stats::before { content:""; position:absolute; inset:0; background: var(--grad); opacity: .10; }
.stats .stat { position: relative; }
.stats .stat .n { font-weight: 800; font-size: clamp(2.2rem,4.4vw,3.1rem); line-height: 1; color: #fff; letter-spacing: -0.02em; }
.stats .stat .n span { color: var(--cyan); }
.stats .stat p { margin-top: 10px; color: rgba(203,213,225,0.82); font-size: 0.96rem; }

/* ---------- Values / generic 2-up ---------- */
.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 22px; margin-top: 48px; }
.tile { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 28px; box-shadow: var(--shadow-sm); transition: transform .2s ease, box-shadow .25s ease; }
.tile:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.tile .n { font-weight: 800; color: var(--purple); font-size: 1.1rem; }
.tile h3 { font-weight: 700; font-size: 1.25rem; margin-top: 8px; letter-spacing: -0.01em; }
.tile p { color: var(--ink-2); margin-top: 10px; font-size: 0.98rem; }

/* ---------- Team ---------- */
.member .avatar { width: 66px; height: 66px; border-radius: 50%; display: grid; place-items: center; font-weight: 800; font-size: 1.5rem; color: #fff; margin-bottom: 16px; }
.member.k .avatar { background: var(--grad); }
.member.t .avatar { background: linear-gradient(135deg, var(--purple), var(--cyan)); }
.member h3 { font-weight: 700; font-size: 1.3rem; }
.member .role { color: var(--indigo); font-weight: 600; font-size: 0.9rem; margin-top: 2px; }
.member p { color: var(--ink-2); margin-top: 12px; font-size: 0.98rem; }

/* ---------- Pricing ---------- */
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 54px; align-items: start; }
.plan { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 34px 30px; box-shadow: var(--shadow-sm); position: relative; display: flex; flex-direction: column; }
.plan.featured { border: 1.5px solid transparent; background:
  linear-gradient(var(--surface), var(--surface)) padding-box,
  var(--grad) border-box;
  box-shadow: var(--shadow-md); }
.plan .flag { position: absolute; top: -13px; left: 30px; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: #fff; background: var(--grad); padding: 6px 14px; border-radius: var(--radius-pill); box-shadow: 0 6px 16px rgba(99,102,241,.35); }
.plan .soon { position: absolute; top: -13px; left: 30px; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); background: var(--bg); border: 1px solid var(--line-2); padding: 6px 14px; border-radius: var(--radius-pill); }
.plan h3 { font-weight: 700; font-size: 1.4rem; }
.plan .sub { color: var(--muted); font-size: 0.94rem; margin-top: 4px; }
.plan .price { margin: 20px 0 6px; display: flex; align-items: baseline; gap: 6px; }
.plan .price .amt { font-weight: 800; font-size: 3rem; letter-spacing: -0.03em; }
.plan.featured .price .amt { background: var(--grad-bolt); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.plan .price .per { color: var(--muted); font-weight: 600; font-size: 0.95rem; }
.plan.muted { opacity: 0.92; }
.plan.muted .price .amt { color: var(--ink-2); }
.plan .btn { width: 100%; justify-content: center; margin: 22px 0 8px; }
.plan ul { list-style: none; margin-top: 12px; display: flex; flex-direction: column; gap: 12px; }
.plan li { display: flex; align-items: flex-start; gap: 11px; font-size: 0.95rem; color: var(--ink-2); }
.plan li .ck { flex: none; margin-top: 2px; width: 18px; height: 18px; border-radius: 50%; display: grid; place-items: center; background: rgba(124,58,237,0.12); }
.plan li .ck svg { width: 11px; height: 11px; }
.plan.muted li .ck { background: rgba(15,23,42,0.06); }
.plan li.head { font-weight: 700; color: var(--ink); font-size: 0.82rem; letter-spacing: 0.06em; text-transform: uppercase; margin-top: 6px; }

/* ---------- FAQ ---------- */
.faq { max-width: 760px; margin: 44px auto 0; }
.faq details { border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--surface); padding: 4px 22px; margin-bottom: 12px; transition: border-color .2s; }
.faq details[open] { border-color: rgba(124,58,237,0.3); box-shadow: var(--shadow-sm); }
.faq summary { cursor: pointer; font-weight: 600; padding: 16px 0; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 1.4rem; color: var(--indigo); font-weight: 400; transition: transform .2s; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq p { color: var(--ink-2); padding: 0 0 18px; font-size: 0.97rem; }

/* ---------- CTA band ---------- */
.cta .inner { background: var(--grad); color: #fff; border-radius: 28px; padding: 70px 32px; text-align: center; position: relative; overflow: hidden; box-shadow: var(--shadow-glow); }
.cta .inner::after { content:""; position:absolute; inset:0; background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='48'%3E%3Cpath d='M14 0l14 8v16l-14 8L0 24V8z' fill='none' stroke='%23ffffff' stroke-opacity='0.10' stroke-width='1.2'/%3E%3C/svg%3E"); opacity: .7; }
.cta h2 { position: relative; font-weight: 800; letter-spacing: -0.025em; font-size: clamp(2rem, 4vw, 3rem); line-height: 1.08; }
.cta p { position: relative; margin: 16px auto 0; max-width: 52ch; color: rgba(255,255,255,0.92); font-size: 1.1rem; }
.cta .actions { position: relative; margin-top: 32px; display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }

/* ---------- Legal / prose ---------- */
.legal { max-width: 820px; margin: 0 auto; }
.legal .updated { color: var(--muted); font-size: 0.92rem; margin-top: 8px; }
.legal .notice { background: rgba(99,102,241,0.06); border: 1px solid rgba(99,102,241,0.20); border-radius: var(--radius-sm); padding: 16px 20px; margin: 28px 0; font-size: 0.93rem; color: var(--ink-2); }
.legal h2 { font-weight: 800; font-size: 1.4rem; letter-spacing: -0.01em; margin: 38px 0 12px; }
.legal h3 { font-weight: 700; font-size: 1.08rem; margin: 22px 0 8px; }
.legal p { color: var(--ink-2); margin-bottom: 14px; }
.legal ul { margin: 0 0 14px 22px; color: var(--ink-2); }
.legal li { margin-bottom: 8px; }
.legal a { color: var(--indigo); font-weight: 500; }
.legal .toc { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px 26px; margin-bottom: 36px; }
.legal .toc h4 { font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-bottom: 12px; }
.legal .toc ol { margin-left: 18px; color: var(--ink-2); columns: 2; gap: 30px; }
.legal .toc li { margin-bottom: 6px; }

/* ---------- Styleguide ---------- */
.swatches { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 36px; }
.swatch { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: var(--surface); box-shadow: var(--shadow-sm); }
.swatch .chip { height: 110px; }
.swatch .meta { padding: 16px 18px; }
.swatch .meta .nm { font-weight: 700; }
.swatch .meta .hex { font-family: ui-monospace, 'SF Mono', Menlo, monospace; color: var(--muted); font-size: 0.88rem; margin-top: 3px; }
.swatch .meta .use { color: var(--faint); font-size: 0.82rem; margin-top: 6px; }
.sg-block { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 34px; margin-top: 22px; box-shadow: var(--shadow-sm); }
.sg-logo-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin-top: 22px; }
.sg-logo { border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 30px; display: grid; place-items: center; min-height: 150px; }
.sg-logo.on-dark { background: var(--ink); }
.sg-logo.on-mist { background: var(--mist); }
.sg-logo .cap { position: relative; }
.type-row { padding: 16px 0; border-bottom: 1px solid var(--line); }
.type-row:last-child { border-bottom: none; }
.type-row .lbl { font-size: 0.8rem; color: var(--muted); letter-spacing: 0.06em; text-transform: uppercase; }
.gradient-bar { height: 90px; border-radius: var(--radius); background: var(--grad); margin-top: 18px; display:flex; align-items:flex-end; padding: 14px 18px; color: #fff; font-family: ui-monospace, monospace; font-size: 0.85rem; }
.code { background: var(--ink); color: #E2E8F0; border-radius: var(--radius-sm); padding: 18px 20px; font-family: ui-monospace, 'SF Mono', Menlo, monospace; font-size: 0.85rem; overflow-x: auto; margin-top: 18px; line-height: 1.7; }
.code .t { color: var(--cyan); }

/* ---------- Footer ---------- */
footer.site { background: var(--ink); color: #94A3B8; padding: 64px 0 36px; }
.foot-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 36px; }
.foot-brand .logo-foot { display: flex; align-items: center; gap: 11px; }
.foot-brand .logo-foot svg { width: 34px; height: 34px; }
.foot-brand .logo-foot .word { font-weight: 800; font-size: 1.25rem; letter-spacing: -0.03em; color: #fff; }
.foot-brand .logo-foot .word .a { color: var(--purple); }
.foot-brand .tagline { color: var(--cyan); font-size: 0.9rem; font-weight: 600; margin-top: 14px; }
.foot-brand p { color: #94A3B8; max-width: 34ch; margin-top: 10px; font-size: 0.93rem; }
.foot-col h5 { font-size: 0.76rem; letter-spacing: 0.12em; text-transform: uppercase; color: #64748B; margin-bottom: 14px; }
.foot-col a { display: block; color: #CBD5E1; padding: 6px 0; font-size: 0.95rem; transition: color .2s; }
.foot-col a:hover { color: var(--cyan); }
.foot-bottom { display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; align-items: center; margin-top: 48px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.08); color: #64748B; font-size: 0.86rem; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .cards, .price-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; gap: 32px; }
  .stats, .grid-2 { grid-template-columns: 1fr; }
  .dark { padding: 48px 30px; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .foot-brand { grid-column: 1 / -1; }
  .swatches { grid-template-columns: repeat(2, 1fr); }
  .sg-logo-grid { grid-template-columns: 1fr; }
  .legal .toc ol { columns: 1; }
}
@media (max-width: 560px) {
  .nav-links { gap: 16px; }
  .nav-links a:not(.btn) { display: none; }
  .hero { padding: 64px 0 56px; }
  section.band { padding: 64px 0; }
  .steps, .swatches { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .stats .stat .n { font-size: 2.4rem; }
}

/* ---------- Legal page title (added for trust pages) ---------- */
.legal h1 { font-weight: 800; letter-spacing: -0.02em; font-size: clamp(2rem, 4vw, 3rem); line-height: 1.12; margin-top: 16px; }
.legal .lead { font-size: 1.08rem; color: var(--ink-2); margin: 18px 0 6px; }

