/* =========================================================================
   AuraicPulse public site: one stylesheet for every public page.
   Tokens in :root restyle the whole site. Behaviour lives in site.js.
   Motion rules at the bottom: animations run only while on screen and stop
   after their budget (data-motion) or 14 seconds for ambient effects.
   ========================================================================= */
:root {
  --bg: #04050a;
  --bg-2: #080a12;
  --glass: rgba(255, 255, 255, 0.035);
  --glass-2: rgba(255, 255, 255, 0.06);
  --line: rgba(255, 255, 255, 0.08);
  --line-2: rgba(255, 255, 255, 0.16);
  --ink: #eef3fb;
  --muted: #9ba5b8;
  --dim: #5f687c;
  --cyan: #5ec8ff;
  --brand: #4da6db;
  --blue: #2d7fb8;
  --violet: #a78bfa;
  --pink: #f472b6;
  --green: #34d399;
  --grad: linear-gradient(100deg, #7dd3fc 0%, #5ec8ff 35%, #a78bfa 75%, #f0abfc 100%);
  --display: "Inter Tight", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --serif: "Playfair Display", Georgia, serif;
  --mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  --max: 1200px;
  --r: 20px;
  --ease: cubic-bezier(0.22, 0.7, 0.18, 1);
}
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--bg); -webkit-text-size-adjust: 100%; }
body { margin: 0; background: var(--bg); color: var(--ink); font-family: var(--sans); font-size: 16px; line-height: 1.6; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
img, svg, canvas { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, p { margin: 0; }
button { font: inherit; color: inherit; cursor: pointer; }
::selection { background: rgba(94, 200, 255, 0.35); color: #fff; }
.wrap { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 24px; }

/* ---------- Atmosphere: aurora blobs + film grain ---------- */
.aurora { position: fixed; inset: 0; z-index: -2; pointer-events: none; overflow: hidden; }
.aurora i { position: absolute; border-radius: 50%; filter: blur(90px); opacity: 0.5; will-change: transform; }
.aurora i:nth-child(1) { width: 60vw; height: 50vw; left: -15vw; top: -20vw; background: radial-gradient(circle, rgba(45, 127, 184, 0.55), transparent 65%); animation: drift1 26s ease-in-out infinite alternate; }
.aurora i:nth-child(2) { width: 50vw; height: 45vw; right: -15vw; top: -5vw; background: radial-gradient(circle, rgba(124, 58, 237, 0.4), transparent 65%); animation: drift2 32s ease-in-out infinite alternate; }
.aurora i:nth-child(3) { width: 55vw; height: 40vw; left: 20vw; bottom: -25vw; background: radial-gradient(circle, rgba(14, 165, 233, 0.28), transparent 65%); animation: drift3 38s ease-in-out infinite alternate; }
@keyframes drift1 { to { transform: translate(12vw, 10vw) scale(1.15); } }
@keyframes drift2 { to { transform: translate(-10vw, 14vw) scale(0.9); } }
@keyframes drift3 { to { transform: translate(-14vw, -8vw) scale(1.2); } }
.grain { position: fixed; inset: -50%; z-index: -1; pointer-events: none; opacity: 0.06; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E"); animation: grain 1.2s steps(6) infinite; }
@keyframes grain { 0% { transform: translate(0, 0); } 33% { transform: translate(-3%, 2%); } 66% { transform: translate(2%, -3%); } 100% { transform: translate(-1%, 1%); } }
.progress { position: fixed; top: 0; left: 0; height: 2px; width: 100%; z-index: 80; transform-origin: 0 50%; transform: scaleX(0); background: var(--grad); }

/* ---------- Type ---------- */
.kicker { display: inline-flex; align-items: center; gap: 10px; font-family: var(--mono); font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--cyan); margin-bottom: 18px; }
.kicker b { font-weight: 500; color: var(--dim); }
h2 { font-family: var(--display); font-weight: 700; font-size: clamp(2.3rem, 5vw, 4rem); line-height: 1.02; letter-spacing: -0.04em; margin-bottom: 18px; }
h1 em, h2 em, h3 em { font-family: var(--serif); font-style: italic; font-weight: 400; letter-spacing: -0.02em; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; padding-right: 0.08em; }
.lead { color: var(--muted); font-size: 18px; max-width: 580px; }
.head { max-width: 760px; margin-bottom: 56px; }
.head.center { text-align: center; margin-left: auto; margin-right: auto; }
.head.center .lead { margin: 0 auto; }
section { position: relative; padding: 128px 0; }

/* ---------- Buttons ---------- */
.btn { position: relative; display: inline-flex; align-items: center; justify-content: center; gap: 10px; height: 52px; padding: 0 26px; border-radius: 999px; border: 1px solid var(--line-2); background: var(--glass); color: var(--ink); font-weight: 500; font-size: 15px; white-space: nowrap; overflow: hidden; backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); transition: transform 0.25s var(--ease), border-color 0.25s var(--ease), background 0.25s var(--ease), box-shadow 0.25s var(--ease); }
.btn:hover { border-color: rgba(255, 255, 255, 0.35); background: var(--glass-2); transform: translateY(-1px); }
.btn-primary { border: 0; color: #03121c; font-weight: 600; background: linear-gradient(180deg, #8fdcff 0%, #4fb8f0 100%); box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6), 0 12px 40px -12px rgba(94, 200, 255, 0.9); }
.btn-primary:hover { background: linear-gradient(180deg, #a6e4ff 0%, #5ec8ff 100%); box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7), 0 16px 50px -10px rgba(94, 200, 255, 1); }
.btn-primary::after { content: ""; position: absolute; top: 0; bottom: 0; width: 40%; left: -60%; background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.55), transparent); transform: skewX(-20deg); animation: shine 4.5s var(--ease) infinite; }
@keyframes shine { 0%, 60% { left: -60%; } 100% { left: 130%; } }
.btn svg { transition: transform 0.25s var(--ease); }
.btn:hover svg { transform: translateX(3px); }
.btn-sm { height: 40px; padding: 0 18px; font-size: 14px; }

/* ---------- Nav ---------- */
.nav { position: fixed; top: 14px; left: 0; right: 0; z-index: 60; padding: 0 16px; }
.nav-pill { max-width: var(--max); margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 20px; height: 62px; padding: 0 10px 0 20px; border-radius: 999px; border: 1px solid transparent; transition: background 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease); }
.nav.scrolled .nav-pill, .nav.open .nav-pill { background: rgba(8, 10, 18, 0.72); border-color: var(--line); backdrop-filter: blur(18px) saturate(160%); -webkit-backdrop-filter: blur(18px) saturate(160%); box-shadow: 0 20px 50px -20px rgba(0, 0, 0, 0.8); }
.brand { display: inline-flex; align-items: center; gap: 10px; font-family: var(--display); font-weight: 700; font-size: 19px; letter-spacing: -0.03em; }
.brand img { width: 28px; height: 28px; }
.brand .ai { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a:not(.btn) { padding: 8px 14px; border-radius: 999px; font-size: 14px; color: var(--muted); transition: color 0.2s, background 0.2s; }
.nav-links a:not(.btn):hover { color: var(--ink); background: var(--glass-2); }
.nav-links .btn { margin-left: 8px; }
.nav-toggle { display: none; width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--line-2); background: var(--glass); align-items: center; justify-content: center; }
.nav-mobile { display: none; max-width: var(--max); margin: 8px auto 0; padding: 10px; border-radius: 24px; background: rgba(8, 10, 18, 0.94); border: 1px solid var(--line); backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px); flex-direction: column; }
.nav-mobile a { padding: 14px 16px; border-radius: 14px; font-size: 16px; color: var(--muted); }
.nav-mobile a:hover { background: var(--glass-2); color: var(--ink); }
.nav-mobile .btn { margin-top: 6px; color: #03121c; }
.nav.open .nav-mobile { display: flex; }

/* ---------- Hero ---------- */
.hero { min-height: 100vh; padding: 150px 0 90px; display: flex; align-items: center; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 40px; align-items: center; }
.status { display: inline-flex; align-items: center; gap: 10px; padding: 7px 14px 7px 10px; border-radius: 999px; border: 1px solid var(--line-2); background: var(--glass); font-family: var(--mono); font-size: 12px; color: var(--muted); margin-bottom: 30px; }
.status i { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.6); animation: ping 2s infinite; }
@keyframes ping { 0% { box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.6); } 70%, 100% { box-shadow: 0 0 0 10px rgba(52, 211, 153, 0); } }
.hero h1 { font-family: var(--display); font-weight: 800; font-size: clamp(3rem, 7.4vw, 6.4rem); line-height: 0.95; letter-spacing: -0.055em; margin-bottom: 28px; }
.hero h1 .line { display: block; overflow: hidden; padding-bottom: 0.06em; }
.hero h1 .line > span { display: inline-block; }
html.js .hero h1 .line > span { transform: translateY(110%); animation: rise 1.1s var(--ease) forwards; }
html.js .hero h1 .line:nth-child(2) > span { animation-delay: 0.12s; }
@keyframes rise { to { transform: translateY(0); } }
.hero h1 em { font-weight: 400; letter-spacing: -0.035em; }
.hero .lead { font-size: 19px; max-width: 540px; }
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 38px; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 34px; }
.chips li { font-family: var(--mono); font-size: 12px; color: var(--muted); padding: 7px 12px; border-radius: 999px; border: 1px solid var(--line); background: rgba(255, 255, 255, 0.02); }
.chips li::before { content: "+ "; color: var(--cyan); }

.globe-wrap { position: relative; aspect-ratio: 1 / 1; width: 100%; max-width: 600px; margin-left: auto; }
#globe { width: 100%; height: 100%; cursor: grab; touch-action: pan-y; }
#globe:active { cursor: grabbing; }
.float { position: absolute; display: flex; align-items: center; gap: 12px; padding: 12px 16px 12px 12px; border-radius: 16px; background: rgba(10, 14, 24, 0.66); border: 1px solid var(--line-2); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); box-shadow: 0 20px 40px -18px rgba(0, 0, 0, 0.8); font-size: 13px; animation: bob 6s ease-in-out infinite; pointer-events: none; }
.float b { display: block; font-weight: 600; font-size: 14px; }
.float span { color: var(--muted); font-size: 12px; }
.float .ico { width: 34px; height: 34px; border-radius: 10px; display: grid; place-items: center; background: rgba(94, 200, 255, 0.14); color: var(--cyan); flex-shrink: 0; }
.float.f1 { top: 12%; left: -4%; }
.float.f2 { top: 44%; right: -6%; animation-delay: -2s; }
.float.f2 .ico { background: rgba(52, 211, 153, 0.14); color: var(--green); }
.float.f3 { bottom: 10%; left: 4%; animation-delay: -4s; }
.float.f3 .ico { background: rgba(167, 139, 250, 0.16); color: var(--violet); }
.float .up { color: var(--green); font-family: var(--mono); font-size: 12px; margin-left: 4px; }
@keyframes bob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

/* ---------- Marquee ---------- */
.marquee { padding: 34px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); overflow: hidden; background: rgba(4, 5, 10, 0.5); }
.marquee-row { display: flex; width: max-content; animation: marq 40s linear infinite; }
.marquee-row.rev { animation-direction: reverse; animation-duration: 48s; margin-top: 10px; }
.marquee span { font-family: var(--display); font-weight: 800; font-size: clamp(2.2rem, 5vw, 4.2rem); letter-spacing: -0.04em; line-height: 1.1; padding: 0 28px; white-space: nowrap; display: inline-flex; align-items: center; gap: 56px; }
.marquee span::after { content: ""; width: 14px; height: 14px; border-radius: 50%; background: var(--grad); box-shadow: 0 0 20px rgba(94, 200, 255, 0.8); }
.marquee .rev span { color: transparent; -webkit-text-stroke: 1px rgba(255, 255, 255, 0.28); }
@keyframes marq { to { transform: translateX(-50%); } }

/* ---------- Stats ---------- */
.stats { padding: 96px 0 40px; }
.stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.stat { padding: 8px 28px; border-left: 1px solid var(--line); }
.stat:first-child { border-left: 0; padding-left: 0; }
.stat b { display: block; font-family: var(--display); font-weight: 700; font-size: clamp(2.6rem, 5vw, 4.2rem); letter-spacing: -0.05em; line-height: 1; background: linear-gradient(180deg, #fff, #9fb3cc); -webkit-background-clip: text; background-clip: text; color: transparent; font-variant-numeric: tabular-nums; }
.stat span { display: block; margin-top: 14px; color: var(--muted); font-size: 14px; max-width: 200px; }

/* ---------- Signal vs noise (scroll-driven) ---------- */
.sn { height: 180vh; padding: 0; }
.sn-stick { position: sticky; top: 0; height: 100vh; display: flex; flex-direction: column; align-items: center; justify-content: center; overflow: hidden; text-align: center; }
.sn-stick::before { content: ""; position: absolute; inset: 0; pointer-events: none; background: repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 3px); opacity: calc(1 - var(--p, 0) * 1.6); }
.sn-label { font-family: var(--mono); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--dim); margin-bottom: 18px; }
.sn-word { position: relative; font-family: var(--display); font-weight: 800; font-size: clamp(4.6rem, 20vw, 17rem); line-height: 0.9; letter-spacing: -0.06em; white-space: nowrap; }
.sn-word.noisy { color: #d5dbe6; text-shadow: var(--g, 8px) 0 0 rgba(255, 42, 109, 0.85), calc(var(--g, 8px) * -1) 0 0 rgba(34, 211, 238, 0.85); animation: jitter 0.16s steps(2) infinite; }
.sn-word.clean { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; filter: drop-shadow(0 0 40px rgba(94, 200, 255, 0.35)); }
@keyframes jitter { 0% { transform: translate(0, 0); clip-path: inset(0 0 0 0); } 25% { transform: translate(-3px, 1px); clip-path: inset(12% 0 30% 0); } 50% { transform: translate(2px, -2px); clip-path: inset(0 0 0 0); } 75% { transform: translate(1px, 2px); clip-path: inset(55% 0 8% 0); } }
.sn-copy { position: relative; margin-top: 34px; min-height: 90px; width: min(640px, 90vw); }
.sn-copy p { position: absolute; inset: 0; font-size: clamp(17px, 2vw, 21px); color: var(--muted); transition: opacity 0.5s var(--ease), transform 0.5s var(--ease); }
.sn-copy p strong { color: var(--ink); font-weight: 500; }
.sn-copy .b { opacity: 0; transform: translateY(12px); }
.sn.is-signal .sn-copy .a { opacity: 0; transform: translateY(-12px); }
.sn.is-signal .sn-copy .b { opacity: 1; transform: none; }
.sn-meter { display: flex; gap: 4px; margin-top: 30px; }
.sn-meter i { width: 6px; height: 22px; border-radius: 3px; background: var(--line-2); transition: background 0.3s; }
.sn-meter i.on { background: var(--cyan); box-shadow: 0 0 10px rgba(94, 200, 255, 0.7); }

/* ---------- Glass cards with cursor spotlight ---------- */
.card { position: relative; border-radius: var(--r); background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015)); border: 1px solid var(--line); overflow: hidden; isolation: isolate; }
.card::before { content: ""; position: absolute; inset: 0; z-index: -1; opacity: 0; transition: opacity 0.3s; background: radial-gradient(500px circle at var(--x, 50%) var(--y, 50%), rgba(94, 200, 255, 0.12), transparent 45%); }
.card::after { content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1px; pointer-events: none; opacity: 0; transition: opacity 0.3s; background: radial-gradient(300px circle at var(--x, 50%) var(--y, 50%), rgba(94, 200, 255, 0.6), transparent 60%); -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude; }
.card:hover::before, .card:hover::after { opacity: 1; }

/* ---------- Services bento ---------- */
.bento { display: grid; grid-template-columns: repeat(6, 1fr); grid-auto-rows: minmax(250px, auto); gap: 16px; }
.bento .card { padding: 30px; display: flex; flex-direction: column; }
.b-a { grid-column: span 4; grid-row: span 2; }
.b-b { grid-column: span 2; grid-row: span 2; }
.b-c, .b-d, .b-e { grid-column: span 2; }
.b-f { grid-column: span 6; }
.bento h3 { font-family: var(--display); font-weight: 700; font-size: 24px; letter-spacing: -0.03em; margin-bottom: 8px; }
.bento p { color: var(--muted); font-size: 15px; max-width: 460px; }
.bento .tag { font-family: var(--mono); font-size: 11px; color: var(--dim); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 14px; }
.viz { margin-top: auto; padding-top: 24px; }

.feed { position: relative; height: 290px; overflow: hidden; -webkit-mask-image: linear-gradient(transparent, #000 18%, #000 82%, transparent); mask-image: linear-gradient(transparent, #000 18%, #000 82%, transparent); }
.feed ul { display: grid; gap: 10px; animation: feed 18s linear infinite; }
@keyframes feed { to { transform: translateY(-50%); } }
.feed li { display: grid; grid-template-columns: 44px 1fr auto; gap: 14px; align-items: center; padding: 12px 14px; border-radius: 14px; background: rgba(255, 255, 255, 0.035); border: 1px solid var(--line); }
.feed .th { width: 44px; height: 44px; border-radius: 10px; }
.feed .t1 { background: linear-gradient(135deg, #f472b6, #7c3aed); }
.feed .t2 { background: linear-gradient(135deg, #22d3ee, #2563eb); }
.feed .t3 { background: linear-gradient(135deg, #fbbf24, #f97316); }
.feed .t4 { background: linear-gradient(135deg, #34d399, #0ea5e9); }
.feed b { display: block; font-size: 14px; font-weight: 500; }
.feed small { font-family: var(--mono); font-size: 11px; color: var(--dim); }
.feed em { font-style: normal; font-family: var(--mono); font-size: 12px; color: var(--green); }

.phone { position: relative; width: 170px; height: 300px; margin: 0 auto; border-radius: 28px; padding: 8px; background: #0b0e16; border: 1px solid var(--line-2); box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.9), 0 0 60px -10px rgba(167, 139, 250, 0.35); }
.screen { position: relative; height: 100%; border-radius: 21px; overflow: hidden; background: #111; }
.screen::before { content: ""; position: absolute; inset: -40%; background: conic-gradient(from 0deg, #7c3aed, #ec4899, #f59e0b, #22d3ee, #7c3aed); filter: blur(28px); animation: spin 9s linear infinite; opacity: 0.9; }
@keyframes spin { to { transform: rotate(360deg); } }
.screen .bars { position: absolute; top: 10px; left: 10px; right: 10px; display: flex; gap: 4px; }
.screen .bars i { flex: 1; height: 3px; border-radius: 2px; background: rgba(255, 255, 255, 0.35); overflow: hidden; position: relative; }
.screen .bars i::after { content: ""; position: absolute; inset: 0; background: #fff; transform-origin: 0 50%; transform: scaleX(0); animation: story 9s linear infinite; }
.screen .bars i:nth-child(2)::after { animation-delay: 3s; }
.screen .bars i:nth-child(3)::after { animation-delay: 6s; }
@keyframes story { 0% { transform: scaleX(0); } 33.3% { transform: scaleX(1); } 33.4%, 100% { transform: scaleX(1); opacity: 1; } }
.screen .cap { position: absolute; left: 12px; right: 40px; bottom: 16px; display: grid; gap: 6px; }
.screen .cap i { height: 7px; border-radius: 4px; background: rgba(255, 255, 255, 0.8); }
.screen .cap i:last-child { width: 60%; background: rgba(255, 255, 255, 0.5); }
.screen .side { position: absolute; right: 10px; bottom: 16px; display: grid; gap: 12px; justify-items: center; font-family: var(--mono); font-size: 9px; color: #fff; }
.screen .side i { width: 22px; height: 22px; border-radius: 50%; background: rgba(255, 255, 255, 0.25); backdrop-filter: blur(4px); }

.adbars { display: flex; align-items: flex-end; gap: 8px; height: 90px; }
.adbars i { flex: 1; border-radius: 6px 6px 2px 2px; background: linear-gradient(180deg, var(--cyan), rgba(45, 127, 184, 0.25)); transform-origin: 50% 100%; animation: grow 3.6s var(--ease) infinite; }
@keyframes grow { 0% { transform: scaleY(0.1); } 40%, 85% { transform: scaleY(1); } 100% { transform: scaleY(0.1); } }
.metric { display: flex; align-items: baseline; justify-content: space-between; margin-top: 14px; font-family: var(--mono); font-size: 12px; color: var(--muted); }
.metric b { font-family: var(--display); font-size: 22px; color: var(--ink); letter-spacing: -0.03em; }
.metric em { font-style: normal; color: var(--green); }

.chat { display: grid; gap: 8px; }
.chat i { font-style: normal; font-size: 13px; padding: 9px 13px; border-radius: 14px; max-width: 85%; opacity: 0; animation: pop 7.5s var(--ease) infinite; }
.chat .in { background: rgba(255, 255, 255, 0.07); border-bottom-left-radius: 4px; justify-self: start; }
.chat .out { background: linear-gradient(135deg, #2d7fb8, #5ec8ff); color: #03121c; border-bottom-right-radius: 4px; justify-self: end; animation-delay: 1.2s; }
.chat .in2 { animation-delay: 2.4s; }
@keyframes pop { 0% { opacity: 0; transform: translateY(8px) scale(0.96); } 8%, 80% { opacity: 1; transform: none; } 92%, 100% { opacity: 0; } }

.spark { width: 100%; height: 90px; overflow: visible; }
.spark path.l { fill: none; stroke: url(#sg); stroke-width: 2.5; stroke-linecap: round; stroke-dasharray: 400; stroke-dashoffset: 400; animation: draw 4.5s var(--ease) infinite; }
.spark path.f { fill: url(#sf); opacity: 0; animation: fadein 4.5s var(--ease) infinite; }
@keyframes draw { 0% { stroke-dashoffset: 400; } 55%, 90% { stroke-dashoffset: 0; } 100% { stroke-dashoffset: 0; opacity: 0; } }
@keyframes fadein { 0%, 30% { opacity: 0; } 55%, 90% { opacity: 1; } 100% { opacity: 0; } }

.b-f { flex-direction: row !important; align-items: center; gap: 40px; }
.b-f > div:first-child { flex: 0 0 38%; }
.pills { flex: 1; overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); }
.pills div { display: flex; gap: 10px; width: max-content; animation: marq 30s linear infinite; }
.pills div + div { margin-top: 10px; animation-direction: reverse; }
.pills span { font-family: var(--mono); font-size: 13px; padding: 10px 16px; border-radius: 12px; border: 1px solid var(--line-2); background: rgba(255, 255, 255, 0.03); color: var(--muted); white-space: nowrap; }
.pills span b { color: var(--cyan); font-weight: 500; }

/* ---------- Command centre ---------- */
.cc { border-radius: 24px; border: 1px solid var(--line-2); background: rgba(8, 11, 20, 0.82); box-shadow: 0 60px 120px -40px rgba(0, 0, 0, 0.9), 0 0 0 1px rgba(94, 200, 255, 0.05), 0 0 120px -40px rgba(94, 200, 255, 0.35); overflow: hidden; backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); }
.cc-top { display: flex; align-items: center; gap: 14px; padding: 14px 20px; border-bottom: 1px solid var(--line); font-family: var(--mono); font-size: 12px; color: var(--muted); }
.cc-top .dots { display: flex; gap: 6px; }
.cc-top .dots i { width: 11px; height: 11px; border-radius: 50%; background: #2a2f3b; }
.cc-top .dots i:nth-child(1) { background: #ff5f57; }
.cc-top .dots i:nth-child(2) { background: #febc2e; }
.cc-top .dots i:nth-child(3) { background: #28c840; }
.cc-top .live { margin-left: auto; display: inline-flex; align-items: center; gap: 8px; color: var(--green); }
.cc-top .live::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--green); animation: ping 2s infinite; }
.cc-body { display: grid; grid-template-columns: 1fr 320px; }
.cc-main { padding: 22px; border-right: 1px solid var(--line); min-width: 0; }
.kpis { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-bottom: 18px; }
.kpi { padding: 14px 16px; border-radius: 14px; background: rgba(255, 255, 255, 0.03); border: 1px solid var(--line); }
.kpi span { font-family: var(--mono); font-size: 11px; color: var(--dim); text-transform: uppercase; letter-spacing: 0.06em; }
.kpi b { display: block; font-family: var(--display); font-size: 26px; font-weight: 700; letter-spacing: -0.03em; margin-top: 6px; font-variant-numeric: tabular-nums; }
.kpi em { font-style: normal; font-family: var(--mono); font-size: 11px; color: var(--green); }
.chart-box { position: relative; height: 260px; border-radius: 14px; background: rgba(255, 255, 255, 0.02); border: 1px solid var(--line); }
#ccChart { width: 100%; height: 100%; }
.legend { position: absolute; top: 12px; left: 16px; display: flex; gap: 16px; font-family: var(--mono); font-size: 11px; color: var(--muted); }
.legend i { display: inline-block; width: 10px; height: 3px; border-radius: 2px; margin-right: 6px; vertical-align: middle; }
.cc-log { padding: 18px 18px 8px; }
.cc-log h4 { font-family: var(--mono); font-size: 11px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--dim); margin-bottom: 12px; }
.cc-log ul { display: grid; gap: 8px; }
.cc-log li { display: grid; grid-template-columns: 46px 1fr; gap: 10px; padding: 10px 12px; border-radius: 12px; background: rgba(255, 255, 255, 0.03); border: 1px solid var(--line); font-size: 13px; color: var(--muted); animation: slidein 0.6s var(--ease); }
.cc-log li time { font-family: var(--mono); font-size: 11px; color: var(--dim); padding-top: 1px; }
.cc-log li b { color: var(--ink); font-weight: 500; }
@keyframes slidein { from { opacity: 0; transform: translateY(-10px); } }
.cc-note { display: flex; flex-wrap: wrap; gap: 10px 28px; justify-content: center; margin-top: 28px; font-family: var(--mono); font-size: 12px; color: var(--dim); }
.cc-note span::before { content: "+ "; color: var(--cyan); }

/* ---------- Process ---------- */
.steps { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.steps::before { content: ""; position: absolute; left: 0; right: 0; top: 28px; height: 1px; background: var(--line-2); }
.steps::after { content: ""; position: absolute; left: 0; top: 28px; height: 1px; width: 100%; background: var(--grad); box-shadow: 0 0 12px rgba(94, 200, 255, 0.8); transform-origin: 0 50%; transform: scaleX(0); transition: transform 1.8s var(--ease) 0.2s; }
.steps.in::after { transform: scaleX(1); }
.step { position: relative; padding-top: 70px; }
.step .n { position: absolute; top: 8px; left: 0; width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; background: var(--bg); border: 1px solid var(--line-2); font-family: var(--mono); font-size: 13px; color: var(--cyan); }
.step h3 { font-family: var(--display); font-size: 22px; font-weight: 700; letter-spacing: -0.03em; margin-bottom: 10px; }
.step p { color: var(--muted); font-size: 15px; max-width: 250px; }

/* ---------- Work ---------- */
.work-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.work { transform-style: preserve-3d; transition: transform 0.4s var(--ease); }
.work-art { position: relative; height: 260px; border-bottom: 1px solid var(--line); overflow: hidden; }
.work-art .label { position: absolute; left: 20px; bottom: 16px; font-family: var(--mono); font-size: 11px; color: rgba(255, 255, 255, 0.75); letter-spacing: 0.08em; text-transform: uppercase; z-index: 2; }
.art-sn { background: radial-gradient(120% 90% at 50% 110%, rgba(236, 72, 153, 0.45), transparent 60%), radial-gradient(80% 70% at 20% 0%, rgba(124, 58, 237, 0.45), transparent 60%), #0b0714; display: flex; align-items: flex-end; justify-content: center; gap: 5px; padding: 0 28px 44px; }
.art-sn i { flex: 1; max-width: 14px; height: 70%; border-radius: 4px; background: linear-gradient(180deg, #f0abfc, #ec4899 60%, #7c3aed); transform-origin: 50% 100%; animation: eq 1.2s ease-in-out infinite alternate; }
@keyframes eq { from { transform: scaleY(0.15); } to { transform: scaleY(1); } }
.art-sd { background: radial-gradient(90% 90% at 80% 0%, rgba(14, 165, 233, 0.4), transparent 60%), #06101a; display: grid; place-items: center; }
.homes { display: grid; grid-template-columns: repeat(8, 30px); gap: 10px; transform: perspective(700px) rotateX(38deg) rotateZ(-18deg); }
.homes i { width: 30px; height: 30px; border-radius: 6px; background: rgba(94, 200, 255, 0.08); border: 1px solid rgba(94, 200, 255, 0.2); transition: background 0.6s, box-shadow 0.6s; }
.homes i.on { background: rgba(94, 200, 255, 0.75); box-shadow: 0 0 18px rgba(94, 200, 255, 0.8); }
.work-body { padding: 30px; }
.work-body .tag { font-family: var(--mono); font-size: 11px; color: var(--dim); letter-spacing: 0.1em; text-transform: uppercase; }
.work-body h3 { font-family: var(--display); font-weight: 700; font-size: 34px; letter-spacing: -0.04em; margin: 8px 0 12px; }
.work-body p { color: var(--muted); font-size: 15px; }
.work-body ul { display: flex; flex-wrap: wrap; gap: 8px; margin: 20px 0 24px; }
.work-body li { font-size: 12.5px; padding: 6px 12px; border-radius: 999px; background: rgba(255, 255, 255, 0.04); border: 1px solid var(--line); color: var(--muted); }
.link { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 500; color: var(--cyan); }
.link svg { transition: transform 0.2s; }
.link:hover svg { transform: translate(2px, -2px); }

/* ---------- Pricing ---------- */
.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: stretch; perspective: 1200px; }
.plan { padding: 34px 30px; display: flex; flex-direction: column; gap: 18px; }
.plan .tier { font-family: var(--mono); font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }
.plan .price { font-family: var(--display); font-weight: 700; font-size: 3.2rem; letter-spacing: -0.05em; line-height: 1; }
.plan .price small { font-family: var(--sans); font-size: 14px; font-weight: 400; color: var(--dim); letter-spacing: 0; margin-left: 4px; }
.plan .price .from { display: block; font-family: var(--mono); font-size: 11px; font-weight: 400; color: var(--dim); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 10px; }
.plan p { color: var(--muted); font-size: 15px; }
.plan ul { display: grid; gap: 11px; padding-top: 20px; border-top: 1px solid var(--line); }
.plan li { position: relative; padding-left: 26px; font-size: 14.5px; color: #c8d0dd; }
.plan li::before { content: ""; position: absolute; left: 0; top: 3px; width: 16px; height: 16px; border-radius: 50%; background: rgba(94, 200, 255, 0.14) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235ec8ff' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12l5 5L20 7'/%3E%3C/svg%3E") center / 10px no-repeat; }
.plan li.no { color: #7d8697; }
.plan li.no::before { background: rgba(255, 255, 255, 0.06) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%237d8697' stroke-width='3.2' stroke-linecap='round'%3E%3Cpath d='M6 6l12 12M18 6L6 18'/%3E%3C/svg%3E") center / 9px no-repeat; }
.plan .btn { margin-top: auto; width: 100%; }
.holo { transform: perspective(1000px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg)); transition: transform 0.2s ease-out; border-color: rgba(94, 200, 255, 0.4); background: linear-gradient(180deg, rgba(94, 200, 255, 0.1), rgba(167, 139, 250, 0.05) 50%, rgba(255, 255, 255, 0.02)); box-shadow: 0 40px 80px -30px rgba(94, 200, 255, 0.45); }
.holo .foil { position: absolute; inset: 0; z-index: -1; pointer-events: none; opacity: 0.55; mix-blend-mode: color-dodge; background: linear-gradient(115deg, transparent 20%, rgba(94, 200, 255, 0.35) 36%, rgba(167, 139, 250, 0.35) 46%, rgba(244, 114, 182, 0.3) 56%, rgba(253, 224, 71, 0.2) 64%, transparent 78%); background-size: 250% 250%; background-position: var(--mx, 30%) var(--my, 30%); animation: foil 8s ease-in-out infinite alternate; }
.holo:hover .foil { animation: none; opacity: 0.8; }
@keyframes foil { from { background-position: 0% 0%; } to { background-position: 100% 100%; } }
.holo .badge { position: absolute; top: 26px; right: 24px; font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.1em; text-transform: uppercase; padding: 6px 10px; border-radius: 999px; background: var(--grad); color: #0a0a14; font-weight: 500; }
.plans-note { text-align: center; color: var(--dim); font-size: 13.5px; margin-top: 30px; font-family: var(--mono); }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin: 0 auto; display: grid; gap: 10px; }
.faq details { border-radius: 16px; border: 1px solid var(--line); background: rgba(255, 255, 255, 0.025); transition: border-color 0.2s, background 0.2s; }
.faq details[open] { border-color: rgba(94, 200, 255, 0.3); background: rgba(94, 200, 255, 0.04); }
.faq summary { list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 22px 24px; font-family: var(--display); font-size: 19px; font-weight: 600; letter-spacing: -0.02em; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: ""; flex-shrink: 0; width: 28px; height: 28px; border-radius: 50%; border: 1px solid var(--line-2); background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%239ba5b8' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='M12 6v12M6 12h12'/%3E%3C/svg%3E") center / 14px no-repeat; transition: transform 0.3s var(--ease); }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq p { padding: 0 24px 22px; color: var(--muted); font-size: 15.5px; max-width: 700px; }
.faq-more { text-align: center; margin-top: 26px; }

/* ---------- Closing CTA with pulsar ridges ---------- */
.cta { padding: 60px 0 128px; }
.cta-box { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 30px; padding: 56px; border-radius: 28px; }
.cta-box h2 { font-size: clamp(2.4rem, 5vw, 4.4rem); }
.cta-box .fine { margin-top: 18px; font-family: var(--mono); font-size: 12px; color: var(--dim); }
#pulsar { width: 100%; height: 420px; }

/* ---------- Footer ---------- */
.footer { position: relative; padding: 60px 0 30px; border-top: 1px solid var(--line); overflow: hidden; }
.foot-top { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 30px; }
.foot-top p { color: var(--muted); max-width: 320px; font-size: 14px; margin-top: 12px; }
.foot-links { display: flex; gap: 60px; }
.foot-links h4 { font-family: var(--mono); font-size: 11px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--dim); margin-bottom: 14px; }
.foot-links a { display: block; font-size: 14px; color: var(--muted); padding: 4px 0; }
.foot-links a:hover { color: var(--ink); }
.wordmark { margin-top: 70px; font-family: var(--display); font-weight: 800; font-size: clamp(3.4rem, 15vw, 13rem); letter-spacing: -0.06em; padding-right: 0.06em; line-height: 0.8; text-align: center; color: transparent; -webkit-text-stroke: 1px rgba(255, 255, 255, 0.1); background: linear-gradient(180deg, rgba(94, 200, 255, 0.18), transparent 80%); -webkit-background-clip: text; background-clip: text; user-select: none; }
.foot-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; margin-top: 24px; font-family: var(--mono); font-size: 12px; color: var(--dim); }

/* ---------- Reveal ---------- */
html.js .rv { opacity: 0; transform: translateY(30px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
html.js .rv.in { opacity: 1; transform: none; }
html.js .rv.d1 { transition-delay: 0.08s; }
html.js .rv.d2 { transition-delay: 0.16s; }
html.js .rv.d3 { transition-delay: 0.24s; }

/* ---------- Audit modal (structure used by forms.min.js) ---------- */
.modal-overlay { position: fixed; inset: 0; z-index: 100; display: none; align-items: flex-start; justify-content: center; padding: 24px 16px; overflow-y: auto; background: rgba(2, 3, 8, 0.75); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); }
.modal-overlay.active { display: flex; }
.modal { position: relative; width: 100%; max-width: 740px; margin: 24px auto; border-radius: 26px; background: linear-gradient(180deg, rgba(20, 26, 40, 0.96), rgba(10, 13, 22, 0.98)); border: 1px solid var(--line-2); box-shadow: 0 50px 120px rgba(0, 0, 0, 0.7), 0 0 100px -30px rgba(94, 200, 255, 0.4); overflow: hidden; }
.modal::before { content: ""; position: absolute; top: 0; left: 10%; right: 10%; height: 1px; background: linear-gradient(90deg, transparent, var(--cyan), transparent); }
.modal-header { position: relative; padding: 32px 32px 8px; }
.modal-header h2 { font-size: 2.2rem; margin-bottom: 10px; padding-right: 50px; }
.modal-header h2 .highlight { font-family: var(--serif); font-style: italic; font-weight: 400; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent !important; }
.modal-header p { color: var(--muted); font-size: 15px; max-width: 540px; }
.modal-close { position: absolute; top: 22px; right: 22px; width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--line-2); background: var(--glass); color: var(--muted); display: grid; place-items: center; }
.modal-close:hover { color: var(--ink); border-color: rgba(255, 255, 255, 0.35); }
.modal-close svg { width: 18px; height: 18px; }
.modal-body { padding: 18px 32px 32px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); }
.form-group input, .form-group select { width: 100%; height: 48px; padding: 0 14px; border-radius: 12px; border: 1px solid var(--line-2); background: rgba(0, 0, 0, 0.35); color: var(--ink); font: inherit; font-size: 15px; transition: border-color 0.2s, box-shadow 0.2s; }
.form-group input::placeholder { color: var(--dim); }
.form-group input:focus, .form-group select:focus { outline: none; border-color: var(--cyan); box-shadow: 0 0 0 4px rgba(94, 200, 255, 0.15); }
.form-group select option { background: #0d111c; }
.btn-submit { width: 100%; height: 54px; border: 0; color: #03121c; font-weight: 600; background: linear-gradient(180deg, #8fdcff 0%, #4fb8f0 100%); box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6), 0 12px 40px -12px rgba(94, 200, 255, 0.9); }
.btn-submit[disabled] { opacity: 0.6; cursor: wait; }
.audit-honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.audit-actions { display: flex; flex-direction: column; gap: 12px; margin-top: 20px; }
.audit-fineprint { font-size: 12.5px; color: var(--dim); line-height: 1.5; }
.audit-error { margin-top: 14px; font-size: 13px; color: #fca5a5; }
.audit-score-row { display: flex; gap: 24px; align-items: flex-start; margin-bottom: 26px; }
.audit-score { flex-shrink: 0; text-align: center; padding: 22px; min-width: 140px; border-radius: 18px; border: 1px solid rgba(94, 200, 255, 0.35); background: rgba(94, 200, 255, 0.08); }
.audit-score-num { font-family: var(--display); font-size: 3rem; font-weight: 800; letter-spacing: -0.05em; line-height: 1; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.audit-score-denom { font-size: 15px; color: var(--dim); }
.audit-score-label { display: block; margin-top: 8px; font-family: var(--mono); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--dim); }
.audit-score-copy h3 { font-family: var(--display); font-size: 22px; font-weight: 700; letter-spacing: -0.02em; margin-bottom: 6px; }
.audit-score-copy p { font-size: 14.5px; color: var(--muted); }
.audit-columns { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-bottom: 22px; }
.audit-col h4 { font-family: var(--mono); font-size: 11px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--cyan); margin-bottom: 10px; }
.audit-col li { position: relative; padding: 10px 0 10px 18px; border-top: 1px solid var(--line); font-size: 14px; color: #c8d0dd; }
.audit-col li::before { content: ""; position: absolute; left: 0; top: 18px; width: 6px; height: 6px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 8px var(--cyan); }
.audit-reco { padding: 18px 20px; border-radius: 16px; border: 1px solid var(--line-2); background: rgba(255, 255, 255, 0.03); margin-bottom: 22px; }
.audit-reco-label { display: block; font-family: var(--mono); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--dim); margin-bottom: 4px; }
.audit-reco strong { display: block; font-family: var(--display); font-size: 19px; margin-bottom: 6px; }
.audit-reco p { font-size: 14px; color: var(--muted); }
.audit-result-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 16px; }


/* ---------- Hero globe: pop up, city pills, hint ---------- */
.globe-wrap { margin-bottom: 40px; }
.gpop { position: absolute; left: 0; top: 0; pointer-events: none; will-change: transform; z-index: 3; }
.gcard { position: absolute; left: 18px; bottom: 14px; min-width: 220px; padding: 12px 16px 13px; border-radius: 16px; background: rgba(10, 14, 24, 0.8); border: 1px solid rgba(167, 139, 250, 0.4); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.9), 0 0 30px -10px rgba(167, 139, 250, 0.7); opacity: 0; transform: translateY(8px) scale(0.92); transform-origin: 0 100%; transition: opacity 0.35s ease, transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1); }
.gpop.show .gcard { opacity: 1; transform: none; }
.gcard i { display: block; font-style: normal; font-family: var(--mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: #c4b5fd; margin-bottom: 4px; }
.gcard b { display: block; font-size: 15px; font-weight: 600; }
.gcard span { display: block; margin-top: 2px; font-size: 12.5px; color: var(--muted); }
.gcities { position: absolute; left: 0; right: 0; bottom: -34px; display: flex; flex-wrap: wrap; justify-content: center; gap: 6px; z-index: 2; }
.gcities li { font-family: var(--mono); font-size: 11.5px; padding: 7px 12px; border-radius: 999px; border: 1px solid var(--line-2); background: rgba(8, 11, 20, 0.7); color: var(--muted); cursor: pointer; transition: color 0.25s, border-color 0.25s, background 0.25s; backdrop-filter: blur(8px); }
.gcities li:hover { color: var(--ink); border-color: rgba(255, 255, 255, 0.35); }
.gcities li.active { color: #fff; border-color: rgba(167, 139, 250, 0.6); background: linear-gradient(90deg, rgba(167, 139, 250, 0.22), rgba(94, 200, 255, 0.12)); box-shadow: 0 0 20px -6px rgba(167, 139, 250, 0.8); }
.ghint { position: absolute; top: 6%; right: 6%; font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--dim); pointer-events: none; }
.ghint::before { content: "\2194  "; color: var(--cyan); }

/* ---------- Work: real screenshots ---------- */
.work-art.shot { height: 300px; background: radial-gradient(90% 90% at 80% 0%, rgba(94, 200, 255, 0.18), transparent 60%), radial-gradient(80% 80% at 0% 100%, rgba(167, 139, 250, 0.16), transparent 60%), #070a12; }
.bframe { position: absolute; left: 24px; right: 78px; top: 26px; border-radius: 12px; overflow: hidden; border: 1px solid rgba(255, 255, 255, 0.14); background: #0b0e16; box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.95); transition: transform 0.6s var(--ease); }
.bbar { display: flex; align-items: center; gap: 5px; padding: 8px 12px; background: rgba(255, 255, 255, 0.05); border-bottom: 1px solid rgba(255, 255, 255, 0.06); }
.bbar i { width: 8px; height: 8px; border-radius: 50%; background: rgba(255, 255, 255, 0.18); }
.bbar span { margin-left: 10px; padding: 3px 10px; border-radius: 6px; background: rgba(255, 255, 255, 0.06); font-family: var(--mono); font-size: 10.5px; color: rgba(255, 255, 255, 0.55); }
.bframe img { display: block; width: 100%; height: auto; aspect-ratio: 16 / 10; object-fit: cover; object-position: top; }
.pframe { position: absolute; right: 20px; top: 70px; width: 23%; min-width: 96px; padding: 5px; border-radius: 22px; background: #05070c; border: 1px solid rgba(255, 255, 255, 0.18); box-shadow: 0 30px 60px -18px rgba(0, 0, 0, 0.95); transition: transform 0.6s var(--ease); }
.pframe img { display: block; width: 100%; height: auto; aspect-ratio: 390 / 844; object-fit: cover; object-position: top; border-radius: 17px; }
.work:hover .bframe { transform: translateY(-6px); }
.work:hover .pframe { transform: translateY(-14px) rotate(-2deg); }

/* ---------- Plan finder ---------- */
.finder { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin: -20px 0 28px; padding: 20px; border-radius: 20px; border: 1px solid var(--line-2); background: linear-gradient(180deg, rgba(94, 200, 255, 0.06), rgba(255, 255, 255, 0.015)); }
.fq span { display: block; font-size: 13.5px; font-weight: 500; margin-bottom: 10px; color: var(--ink); }
.seg { display: flex; gap: 6px; padding: 4px; border-radius: 12px; background: rgba(0, 0, 0, 0.35); border: 1px solid var(--line); }
.seg button { flex: 1; padding: 9px 8px; border: 0; border-radius: 9px; background: transparent; color: var(--muted); font-size: 13px; font-weight: 500; transition: background 0.2s, color 0.2s; }
.seg button:hover { color: var(--ink); }
.seg button.on { background: linear-gradient(180deg, #8fdcff, #4fb8f0); color: #03121c; box-shadow: 0 6px 18px -6px rgba(94, 200, 255, 0.8); }
.fout { grid-column: 1 / -1; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 12px; padding: 14px 16px; border-radius: 14px; background: rgba(255, 255, 255, 0.03); border: 1px dashed var(--line-2); font-size: 14.5px; color: var(--muted); }
.fout b { color: #fff; }
.plan { transition: transform 0.4s var(--ease), opacity 0.4s, filter 0.4s, box-shadow 0.4s, border-color 0.4s; }
html.js .plan.dim, .plan.dim { opacity: 0.45; filter: saturate(0.4); transform: scale(0.97); }
.plan.pick { border-color: rgba(94, 200, 255, 0.8) !important; box-shadow: 0 0 0 1px rgba(94, 200, 255, 0.4), 0 40px 80px -30px rgba(94, 200, 255, 0.7) !important; }
.plan.pick::after { opacity: 1 !important; }

/* ---------- Phone app shell ---------- */
.tabbar, .sheet-scrim, .sheet { display: none; }
@media (max-width: 760px) {
  body { padding-bottom: calc(84px + env(safe-area-inset-bottom)); }
  .nav-toggle, .nav-mobile { display: none !important; }
  .nav { top: calc(8px + env(safe-area-inset-top)); }
  .gcities { bottom: -44px; gap: 5px; }
  .gcities li { font-size: 10.5px; padding: 6px 10px; }
  .ghint { display: none; }
  .gcard { min-width: 190px; }
  .globe-wrap { margin-bottom: 56px; }
  .finder { grid-template-columns: 1fr; margin-top: -10px; }
  .fout .btn { width: 100%; }
  .work-art.shot { height: 240px; }
  .plans { display: grid; grid-template-columns: 1fr; gap: 18px; margin: 0; padding: 12px 0 0; max-width: none; overflow: visible; }
  .plans > * { transform: none !important; }
  .plan { padding: 28px 22px; }
  .plan .price { font-size: 2.7rem; }
  .services, .why-grid { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; gap: 12px; margin: 0 -24px; padding: 4px 24px 18px; scrollbar-width: none; }
  .services::-webkit-scrollbar, .why-grid::-webkit-scrollbar { display: none; }
  .services > *, .why-grid > * { flex: 0 0 84%; scroll-snap-align: start; }
  .card:active, .plan:active { transform: scale(0.98); }
  .modal-overlay { align-items: flex-end !important; padding: 0 !important; }
  .modal-overlay .modal { max-height: 94vh; border-radius: 26px 26px 0 0; margin: 0; overflow-y: auto; animation: sheetUp 0.4s cubic-bezier(0.32, 0.72, 0, 1); }
  @keyframes sheetUp { from { transform: translateY(100%); } to { transform: translateY(0); } }
/* Tab bar */
.tabbar {
  display: grid; grid-template-columns: repeat(5, 1fr); align-items: end;
  position: fixed; left: 10px; right: 10px; bottom: calc(10px + env(safe-area-inset-bottom)); z-index: 900;
  height: 66px; padding: 0 6px 8px; border-radius: 24px;
  background: rgba(10, 12, 20, 0.82); border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(22px) saturate(160%); -webkit-backdrop-filter: blur(22px) saturate(160%);
  box-shadow: 0 20px 50px -10px rgba(0, 0, 0, 0.85), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}
.tab { display: flex; flex-direction: column; align-items: center; gap: 4px; padding: 0; border: 0; background: none; color: rgba(255, 255, 255, 0.45); font: 500 10.5px 'Inter', sans-serif; text-decoration: none; -webkit-tap-highlight-color: transparent; transition: color 0.2s, transform 0.15s; }
.tab svg { width: 23px; height: 23px; }
.tab:active { transform: scale(0.9); }
.tab.active { color: #fff; }
.tab.active svg { color: var(--cyan); filter: drop-shadow(0 0 6px rgba(0, 229, 255, 0.6)); }
.tab-main { position: relative; color: #f9a8d4; }
.tab-orb {
  display: grid; place-items: center; width: 60px; height: 60px; margin-top: -30px; border-radius: 50%;
  background: radial-gradient(circle at 30% 25%, #1b2233, #07090f 70%); border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 10px 30px -6px rgba(217, 70, 239, 0.55), 0 0 0 5px rgba(10, 12, 20, 0.9), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  animation: orbPulse 3.2s ease-in-out infinite;
}
.tab-orb img { width: 40px; height: 40px; object-fit: contain; }
@keyframes orbPulse { 0%, 45%, 100% { box-shadow: 0 10px 30px -6px rgba(217, 70, 239, 0.45), 0 0 0 5px rgba(10, 12, 20, 0.9), inset 0 1px 0 rgba(255, 255, 255, 0.12); } 58% { box-shadow: 0 10px 34px -2px rgba(0, 229, 255, 0.75), 0 0 0 5px rgba(10, 12, 20, 0.9), inset 0 1px 0 rgba(255, 255, 255, 0.12); } }

/* More: bottom sheet (built by v2.js) */
.mobile-menu, .mobile-menu.active { display: none !important; }
.sheet {
  display: block; position: fixed; left: 0; right: 0; bottom: 0; z-index: 950;
  padding: 12px 20px calc(110px + env(safe-area-inset-bottom)); border-radius: 26px 26px 0 0;
  background: rgba(12, 14, 22, 0.97); border-top: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 -30px 60px rgba(0, 0, 0, 0.5);
  transform: translateY(105%); transition: transform 0.38s cubic-bezier(0.32, 0.72, 0, 1);
}
.sheet.open { transform: translateY(0); }
.sheet-handle { display: block; width: 40px; height: 5px; border-radius: 3px; background: rgba(255, 255, 255, 0.2); margin: 0 auto 10px; }
.sheet-link { display: flex; align-items: center; justify-content: space-between; padding: 15px 4px; font-size: 17px; color: #e6ebf3; text-decoration: none; border-bottom: 1px solid rgba(255, 255, 255, 0.06); }
.sheet-link::after { content: "\203A"; font-size: 22px; color: rgba(255, 255, 255, 0.3); }
.sheet-cta { width: 100%; margin-top: 16px; padding: 15px; border: 0; border-radius: 100px; background: linear-gradient(135deg, #ec4899, #a855f7); color: #fff; font: 600 15px 'Inter', sans-serif; }
.sheet-scrim { display: block; position: fixed; inset: 0; z-index: 940; background: rgba(0, 0, 0, 0.55); backdrop-filter: blur(3px); -webkit-backdrop-filter: blur(3px); opacity: 0; pointer-events: none; transition: opacity 0.3s; }
body.sheet-open .sheet-scrim { opacity: 1; pointer-events: auto; }
body.sheet-open .tabbar { z-index: 960; }
.sheet-close { position: absolute; top: 8px; right: 12px; width: 40px; height: 40px; border: 0; border-radius: 50%; background: rgba(255, 255, 255, 0.08); color: #e6ebf3; font-size: 22px; line-height: 1; cursor: pointer; }


  .sheet { display: block; position: fixed; left: 0; right: 0; bottom: 0; z-index: 950; padding: 12px 20px calc(110px + env(safe-area-inset-bottom)); border-radius: 26px 26px 0 0; background: rgba(10, 13, 22, 0.97); border-top: 1px solid rgba(255, 255, 255, 0.1); transform: translateY(105%); transition: transform 0.38s cubic-bezier(0.32, 0.72, 0, 1); }
  .sheet.open { transform: translateY(0); }
  .sheet-handle { display: block; width: 40px; height: 5px; border-radius: 3px; background: rgba(255, 255, 255, 0.2); margin: 0 auto 10px; }
  .sheet-link { display: flex; align-items: center; justify-content: space-between; padding: 15px 4px; font-size: 17px; border-bottom: 1px solid rgba(255, 255, 255, 0.06); }
  .sheet-link::after { content: "\203A"; font-size: 22px; color: rgba(255, 255, 255, 0.3); }
  .sheet-cta { width: 100%; margin-top: 16px; padding: 15px; border: 0; border-radius: 999px; background: linear-gradient(180deg, #8fdcff, #4fb8f0); color: #03121c; font-weight: 600; font-size: 15px; }
  .sheet-scrim { display: block; position: fixed; inset: 0; z-index: 940; background: rgba(0, 0, 0, 0.55); opacity: 0; pointer-events: none; transition: opacity 0.3s; }
  body.sheet-open .sheet-scrim { opacity: 1; pointer-events: auto; }
  body.sheet-open .tabbar { z-index: 960; }
}


/* =========================================================================
   Shared components for inner pages (media, software, faq, legal)
   ========================================================================= */
.phero { position: relative; padding: 150px 0 70px; text-align: center; overflow: hidden; }
.phero .status { margin-bottom: 26px; }
.phero h1 { font-family: var(--display); font-weight: 800; font-size: clamp(2.8rem, 7vw, 5.6rem); line-height: 0.98; letter-spacing: -0.05em; margin: 0 auto 24px; max-width: 980px; }
.phero h1 em { font-weight: 400; letter-spacing: -0.03em; }
.phero .lead { margin: 0 auto; font-size: 19px; max-width: 620px; }
.phero .actions, .phero .chips { justify-content: center; }
.phero.short { padding-bottom: 30px; }
.phero.short h1 { font-size: clamp(2.4rem, 5.5vw, 4.2rem); }

/* Brand emblem: silver logo on a live pulse line */
.emblem { position: relative; height: 150px; margin: 0 auto 28px; }
.emblem-line { position: absolute; top: 90px; height: 60px; margin-top: -30px; width: calc(50vw - 64px); overflow: visible; pointer-events: none; }
.emblem-line.l { right: calc(50% + 64px); }
.emblem-line.r { left: calc(50% + 64px); transform: scaleX(-1); }
.emblem-line path { fill: none; vector-effect: non-scaling-stroke; stroke-linecap: round; stroke-linejoin: round; }
.emblem-line .base { stroke: rgba(255, 255, 255, 0.08); stroke-width: 1.5; }
.emblem-line .beat { stroke-width: 2.5; stroke-dasharray: 140 2000; stroke-dashoffset: 140; animation: beat 3.2s cubic-bezier(0.5, 0, 0.9, 0.6) infinite; }
.emblem-line.l .beat { stroke: url(#ecgL); filter: drop-shadow(0 0 6px rgba(94, 200, 255, 0.9)); }
.emblem-line.r .beat { stroke: url(#ecgR); filter: drop-shadow(0 0 6px rgba(167, 139, 250, 0.9)); }
@keyframes beat { 0% { stroke-dashoffset: 140; } 55%, 100% { stroke-dashoffset: -960; } }
.emblem-logo { position: absolute; left: 50%; top: 0; width: 150px; height: 150px; margin-left: -75px; }
.emblem-logo img { width: 100%; height: 100%; object-fit: contain; animation: emblemGlow 3.2s ease-in-out infinite; filter: drop-shadow(0 0 14px rgba(94, 200, 255, 0.35)); }
.emblem-logo::before { content: ""; position: absolute; inset: -30%; border-radius: 50%; background: radial-gradient(circle, rgba(94, 200, 255, 0.18), rgba(167, 139, 250, 0.1) 40%, transparent 68%); animation: halo 3.2s ease-in-out infinite; }
.emblem-shine { position: absolute; inset: 0; pointer-events: none; -webkit-mask: url(/icons/auraic-logo-silver-256.png) center / contain no-repeat; mask: url(/icons/auraic-logo-silver-256.png) center / contain no-repeat; background: linear-gradient(115deg, transparent 38%, rgba(255, 255, 255, 0.85) 50%, transparent 62%) no-repeat; background-size: 300% 100%; animation: shine2 6.4s ease-in-out infinite; mix-blend-mode: screen; }
@keyframes emblemGlow { 0%, 45%, 100% { filter: drop-shadow(0 0 10px rgba(94, 200, 255, 0.25)); } 58% { filter: drop-shadow(0 0 28px rgba(94, 200, 255, 0.75)) drop-shadow(0 0 40px rgba(167, 139, 250, 0.45)); } }
@keyframes halo { 0%, 45%, 100% { opacity: 0.5; transform: scale(0.9); } 58% { opacity: 1; transform: scale(1.08); } }
@keyframes shine2 { 0%, 60% { background-position: 150% 0; } 100% { background-position: -50% 0; } }

/* Generic card grids */
.grid2, .grid3, .grid4 { display: grid; gap: 16px; }
.grid2 { grid-template-columns: repeat(2, 1fr); }
.grid3 { grid-template-columns: repeat(3, 1fr); }
.grid4 { grid-template-columns: repeat(4, 1fr); }
.box { padding: 28px; display: flex; flex-direction: column; gap: 12px; }
.box .tag { font-family: var(--mono); font-size: 11px; color: var(--cyan); letter-spacing: 0.12em; text-transform: uppercase; }
.box h3 { font-family: var(--display); font-weight: 700; font-size: 22px; letter-spacing: -0.03em; }
.box p { color: var(--muted); font-size: 15px; }
.box .n { font-family: var(--mono); font-size: 12px; color: var(--dim); }
.box .big { font-family: var(--display); font-weight: 700; font-size: 2.4rem; letter-spacing: -0.05em; line-height: 1; background: linear-gradient(180deg, #fff, #9fb3cc); -webkit-background-clip: text; background-clip: text; color: transparent; }
.ico { width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; background: rgba(94, 200, 255, 0.12); color: var(--cyan); }
.ico svg { width: 22px; height: 22px; }
.tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 4px; }
.tags li { font-size: 12.5px; padding: 6px 11px; border-radius: 999px; border: 1px solid var(--line); background: rgba(255, 255, 255, 0.03); color: var(--muted); }
.tags.mono li { font-family: var(--mono); font-size: 11.5px; color: #9fd9ff; border-color: rgba(94, 200, 255, 0.25); background: rgba(94, 200, 255, 0.06); }
.minis { display: flex; gap: 22px; margin-top: auto; padding-top: 16px; border-top: 1px solid var(--line); }
.minis b { display: block; font-family: var(--display); font-size: 20px; letter-spacing: -0.03em; }
.minis span { font-family: var(--mono); font-size: 10.5px; color: var(--dim); text-transform: uppercase; letter-spacing: 0.08em; }
.checks { display: grid; gap: 9px; }
.checks li { position: relative; padding-left: 26px; font-size: 14.5px; color: #c8d0dd; }
.checks li::before { content: ""; position: absolute; left: 0; top: 3px; width: 16px; height: 16px; border-radius: 50%; background: rgba(94, 200, 255, 0.14) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235ec8ff' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12l5 5L20 7'/%3E%3C/svg%3E") center / 10px no-repeat; }
.center-cta { display: flex; justify-content: center; margin-top: 32px; }
.cap-pills { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; max-width: 900px; margin: 0 auto; }
.cap-pills li { font-size: 14px; padding: 11px 18px; border-radius: 14px; border: 1px solid var(--line-2); background: rgba(255, 255, 255, 0.03); color: #d7deea; }
.cap-pills li::before { content: "\25CF"; color: var(--cyan); margin-right: 10px; font-size: 9px; vertical-align: 2px; }

/* Terminal */
.term { max-width: 860px; margin: 0 auto; border-radius: 18px; border: 1px solid var(--line-2); background: rgba(5, 8, 14, 0.9); overflow: hidden; box-shadow: 0 40px 80px -30px rgba(0, 0, 0, 0.9), 0 0 80px -40px rgba(94, 200, 255, 0.4); }
.term-bar { display: flex; align-items: center; gap: 8px; padding: 12px 16px; border-bottom: 1px solid var(--line); font-family: var(--mono); font-size: 12px; color: var(--dim); }
.term-bar i { width: 10px; height: 10px; border-radius: 50%; background: #2a2f3b; }
.term-bar i:nth-child(1) { background: #ff5f57; } .term-bar i:nth-child(2) { background: #febc2e; } .term-bar i:nth-child(3) { background: #28c840; }
.term-bar span { margin-left: 8px; }
.term pre { margin: 0; padding: 20px 22px 24px; min-height: 340px; font-family: var(--mono); font-size: 13px; line-height: 1.75; white-space: pre-wrap; }
.term [data-line] { display: block; min-height: 1.75em; color: #cbd5e1; }
.term .p { color: #fff; } .term .p::before { content: "$ "; color: var(--cyan); }
.term .ok { color: #86efac; } .term .hl { color: #7dd3fc; }
.term:not(.finished) [data-line].on:last-of-type::after, .term [data-line].on:not(:has(~ .on))::after { content: "\2588"; color: var(--cyan); margin-left: 2px; }
.term.finished [data-line]::after { content: none !important; }

/* Doc pages (faq, privacy, terms) */
.doc { max-width: 780px; margin: 0 auto; }
.doc h2 { font-size: clamp(1.5rem, 2.6vw, 1.9rem); margin: 48px 0 14px; letter-spacing: -0.03em; }
.doc h2:first-child { margin-top: 0; }
.doc p, .doc li { color: #c3cbd8; font-size: 16px; line-height: 1.75; }
.doc p + p { margin-top: 12px; }
.doc ul { list-style: disc; padding-left: 22px; display: grid; gap: 6px; margin: 10px 0; }
.doc a { color: var(--cyan); text-decoration: underline; text-underline-offset: 3px; }
.doc .meta { font-family: var(--mono); font-size: 12px; color: var(--dim); margin-bottom: 30px; }
.faq-group + .faq-group { margin-top: 44px; }
.faq-group h2 { font-size: 1.5rem; margin-bottom: 16px; }

/* Project inquiry modal (software) */
.modal .form-section { margin-bottom: 26px; }
.modal .form-section h3 { display: flex; align-items: center; gap: 10px; font-family: var(--display); font-size: 17px; font-weight: 700; letter-spacing: -0.02em; margin-bottom: 14px; }
.modal .form-section h3 svg { width: 18px; height: 18px; color: var(--cyan); }
.modal textarea { width: 100%; min-height: 110px; padding: 12px 14px; border-radius: 12px; border: 1px solid var(--line-2); background: rgba(0, 0, 0, 0.35); color: var(--ink); font: inherit; font-size: 15px; resize: vertical; }
.modal textarea:focus { outline: none; border-color: var(--cyan); box-shadow: 0 0 0 4px rgba(94, 200, 255, 0.15); }
.checkbox-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; }
.checkbox-item { display: flex; align-items: center; gap: 10px; padding: 11px 13px; border-radius: 12px; border: 1px solid var(--line); background: rgba(255, 255, 255, 0.02); font-size: 14px; color: #d7deea; cursor: pointer; }
.checkbox-item input { accent-color: #5ec8ff; width: 16px; height: 16px; }
.form-footer { display: flex; flex-direction: column; gap: 12px; padding-top: 8px; }
.form-footer p { color: var(--muted); font-size: 14px; }
.modal .btn-submit { display: inline-flex; align-items: center; justify-content: center; gap: 10px; border-radius: 999px; }

/* Globe tour display */
.ghud { position: absolute; left: 50%; bottom: -30px; transform: translateX(-50%); display: flex; align-items: center; gap: 12px; padding: 8px 8px 8px 16px; border-radius: 999px; border: 1px solid var(--line-2); background: rgba(8, 11, 20, 0.78); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); font-family: var(--mono); font-size: 11.5px; color: var(--muted); white-space: nowrap; z-index: 3; }
.ghud b { font-weight: 500; color: #fff; min-width: 150px; }
.ghud span { color: var(--dim); }
.ghud .track { position: relative; width: 70px; height: 3px; border-radius: 2px; background: rgba(255, 255, 255, 0.1); overflow: hidden; }
.ghud .track i { position: absolute; inset: 0; background: var(--grad); transform-origin: 0 50%; transform: scaleX(0); transition: transform 0.6s var(--ease); }
.ghud button { height: 28px; padding: 0 12px; border-radius: 999px; border: 1px solid var(--line-2); background: rgba(255, 255, 255, 0.04); color: var(--muted); font-family: var(--mono); font-size: 11px; opacity: 0.45; pointer-events: none; transition: opacity 0.3s, color 0.3s, border-color 0.3s; }
.ghud.end button { opacity: 1; pointer-events: auto; color: #fff; border-color: rgba(167, 139, 250, 0.6); }
.ghud.end b { color: #e9d5ff; }

/* =========================================================================
   Motion budget (see site.js). Nothing loops forever.
   ========================================================================= */
[data-motion]:not(.live), [data-motion]:not(.live) *, [data-motion]:not(.live)::before, [data-motion]:not(.live)::after, [data-motion]:not(.live) *::before, [data-motion]:not(.live) *::after { animation-play-state: paused !important; }
html.calm .aurora i, html.calm .grain, html.calm .tab-orb, html.calm .status i, html.calm .cc-top .live::before { animation-play-state: paused !important; }
html.calm .btn-primary::after { animation: none; opacity: 0; }
.done .chat i { animation: none !important; opacity: 1; transform: none; }
.done .adbars i { animation: none !important; transform: none; }
.done .spark path.l { animation: none !important; stroke-dashoffset: 0; }
.done .spark path.f { animation: none !important; opacity: 1; }
.done .emblem-line .beat { animation: none !important; opacity: 0; }
.done .emblem-logo img { animation: none !important; filter: drop-shadow(0 0 16px rgba(94, 200, 255, 0.4)); }
.done .emblem-logo::before { animation: none !important; opacity: 0.6; transform: none; }
.done .emblem-shine { animation: none !important; opacity: 0; }
.done .holo .foil { animation: none !important; }
.done .sn-word.noisy { animation: none !important; }
@media (max-width: 760px) {
  .grain { display: none; }
  .aurora i { animation: none !important; filter: blur(60px); }
  .phero { padding: 110px 0 44px; }
  .phero h1 { font-size: clamp(2.5rem, 11vw, 3.4rem); }
  .phero .lead { font-size: 16.5px; }
  .emblem { height: 110px; margin-bottom: 20px; }
  .emblem-logo { width: 110px; height: 110px; margin-left: -55px; }
  .emblem-line { top: 66px; width: calc(50vw - 48px); }
  .emblem-line.l { right: calc(50% + 48px); }
  .emblem-line.r { left: calc(50% + 48px); }
  .grid2, .grid3, .grid4, .tiles { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; gap: 12px; margin: 0 -24px; padding: 4px 24px 18px; scrollbar-width: none; }
  .grid2::-webkit-scrollbar, .grid3::-webkit-scrollbar, .grid4::-webkit-scrollbar { display: none; }
  .grid2 > *, .grid3 > *, .grid4 > * { flex: 0 0 84%; scroll-snap-align: start; }
  .grid4.stack, .grid3.stack { display: grid; grid-template-columns: 1fr; margin: 0; padding: 0; overflow: visible; }
  .checkbox-grid { grid-template-columns: 1fr; }
  .term pre { font-size: 11.5px; min-height: 300px; padding: 16px; }
  .ghud { bottom: -44px; font-size: 10.5px; }
  .ghud b { min-width: 0; }
  .ghud .track { display: none; }
  .box { padding: 22px; }
}
@media (prefers-reduced-motion: reduce) { .emblem-line .beat { opacity: 0; } }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 20px; }
  .globe-wrap { margin: 0 auto; max-width: 520px; }
  .bento { grid-template-columns: repeat(2, 1fr); }
  .b-a, .b-b, .b-c, .b-d, .b-e, .b-f { grid-column: span 2; grid-row: auto; }
  .b-c, .b-d { grid-column: span 1; }
  .b-f { flex-direction: column !important; align-items: stretch; }
  .b-f > div:first-child { flex: none; }
  .cc-body { grid-template-columns: 1fr; }
  .cc-main { border-right: 0; border-bottom: 1px solid var(--line); }
  .plans { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
  .cta-box { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  section { padding: 88px 0; }
  .nav-links { display: none; }
  .nav-toggle { display: inline-flex; }
  .hero { padding: 120px 0 60px; min-height: auto; }
  .hero .lead { font-size: 17px; }
  .actions .btn { width: 100%; }
  .float { transform: scale(0.85); }
  .float.f1 { left: 0; top: 4%; }
  .float.f2 { right: 0; }
  .float.f3 { display: none; }
  .stat-grid { grid-template-columns: 1fr 1fr; gap: 36px 0; }
  .stat:nth-child(3) { border-left: 0; padding-left: 0; }
  .sn { height: 160vh; }
  .bento .card { padding: 24px; }
  .b-c, .b-d { grid-column: span 2; }
  .kpis { grid-template-columns: 1fr 1fr; }
  .cc-top > span:nth-child(2) { display: none; }
  .chart-box { height: 200px; }
  .steps { grid-template-columns: 1fr; gap: 8px; }
  .steps::before, .steps::after { left: 20px; right: auto; top: 0; bottom: 0; width: 1px; height: 100%; }
  .steps::after { transform: scaleY(0); transform-origin: 50% 0; }
  .steps.in::after { transform: scaleY(1); }
  .step { padding: 8px 0 26px 66px; }
  .step .n { top: 4px; }
  .work-grid { grid-template-columns: 1fr; }
  .work-art { height: 210px; }
  .homes { grid-template-columns: repeat(8, 22px); gap: 8px; }
  .homes i { width: 22px; height: 22px; }
  .cta-box { padding: 36px 22px; }
  #pulsar { height: 300px; }
  .foot-links { gap: 36px; }
  .form-grid, .audit-columns { grid-template-columns: 1fr; }
  .audit-score-row { flex-direction: column; }
  .modal { margin: 8px auto; }
  .modal-header, .modal-body { padding-left: 20px; padding-right: 20px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001s !important; animation-iteration-count: 1 !important; transition-duration: 0.001s !important; }
  html.js .rv { opacity: 1; transform: none; }
}

/* Additions */
.steps.three { grid-template-columns: repeat(3, 1fr); }
.nav-links a[aria-current="page"] { color: var(--ink); background: var(--glass-2); }
@media (max-width: 760px) { .steps.three { grid-template-columns: 1fr; } }

/* Tablet nav: keep it on one line */
@media (min-width: 761px) and (max-width: 1100px) {
  .nav-links { gap: 0; }
  .nav-links a:not(.btn) { padding: 8px 10px; font-size: 13.5px; }
  .nav-links a[href="/#work"], .nav-links a[href="/faq"] { display: none; }
}

/* Home hero with the brand emblem on top */
.hero { padding-top: 110px; }
.hero .emblem { margin-bottom: 18px; }
.hero .hero-grid { align-items: center; }
.proofline { margin-top: 22px; font-size: 14px; color: var(--muted); max-width: 520px; }
.proofline a { color: var(--ink); border-bottom: 1px solid rgba(94, 200, 255, 0.5); }
.proofline a:hover { color: var(--cyan); }
.phero .kicker { display: block; margin-bottom: 18px; }
@media (max-width: 760px) { .hero { padding-top: 96px; } .hero .emblem { margin-bottom: 8px; } }

/* Globe: a little larger box so the glow never touches the canvas edge */
.globe-wrap { max-width: 640px; }

/* Home hero: tighter so the call to action sits above the fold */
.hero .emblem { height: 116px; margin-bottom: 6px; }
.hero .emblem-logo { width: 116px; height: 116px; margin-left: -58px; }
.hero .emblem-line { top: 70px; width: calc(50vw - 52px); }
.hero .emblem-line.l { right: calc(50% + 52px); }
.hero .emblem-line.r { left: calc(50% + 52px); }
.hero h1 { font-size: clamp(2.8rem, 6.2vw, 5.4rem); margin-bottom: 22px; }
.hero .actions { margin-top: 28px; }
@media (min-width: 1025px) { .hero { min-height: 0; padding-bottom: 70px; } }

/* Software theme: violet accent so it feels like its own product */
.theme-software { --cyan: #a78bfa; --grad: linear-gradient(100deg, #c4b5fd 0%, #a78bfa 40%, #818cf8 75%, #7dd3fc 100%); }
.theme-software .btn-primary, .theme-software .btn-submit { background: linear-gradient(180deg, #c4b5fd 0%, #8b5cf6 100%); color: #140a2e; box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5), 0 12px 40px -12px rgba(139, 92, 246, 0.9); }
.theme-software .aurora i:nth-child(1) { background: radial-gradient(circle, rgba(124, 58, 237, 0.5), transparent 65%); }
.theme-software .aurora i:nth-child(3) { background: radial-gradient(circle, rgba(99, 102, 241, 0.3), transparent 65%); }
.theme-software .ico { background: rgba(167, 139, 250, 0.14); }
.theme-software .tags.mono li { color: #d8ccff; border-color: rgba(167, 139, 250, 0.3); background: rgba(167, 139, 250, 0.08); }
.theme-software .progress { background: var(--grad); }

/* Software: platform case */
.case-head { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 48px; align-items: center; margin-bottom: 40px; }
.case-head .head { margin-bottom: 0; }
.case-head .link { margin-top: 20px; }
.case-shot .bframe { position: relative; left: auto; right: auto; top: auto; transform: perspective(1400px) rotateY(-8deg) rotateX(3deg); }
.mods { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.mod { display: flex; gap: 14px; padding: 20px; border-radius: 16px; border: 1px solid var(--line); background: rgba(255, 255, 255, 0.025); }
.mod .ico { flex-shrink: 0; width: 40px; height: 40px; }
.mod h3 { font-family: var(--display); font-size: 16px; font-weight: 700; letter-spacing: -0.02em; margin-bottom: 4px; }
.mod p { font-size: 13.5px; color: var(--muted); line-height: 1.55; }

/* Software: bookings flow */
.flow { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; position: relative; }
.flow::before { content: ""; position: absolute; left: 4%; right: 4%; top: 26px; height: 1px; background: linear-gradient(90deg, transparent, var(--cyan), transparent); opacity: 0.6; }
.flow li { position: relative; display: flex; flex-direction: column; gap: 6px; padding: 16px 14px; border-radius: 16px; border: 1px solid var(--line); background: rgba(8, 10, 20, 0.85); }
.flow .n { font-family: var(--mono); font-size: 11px; color: var(--cyan); }
.flow b { font-family: var(--display); font-size: 17px; letter-spacing: -0.02em; }
.flow li > span:last-child { font-size: 13px; color: var(--muted); line-height: 1.5; }
@media (max-width: 1024px) {
  .case-head { grid-template-columns: 1fr; }
  .mods { grid-template-columns: 1fr 1fr; }
  .flow { grid-template-columns: repeat(3, 1fr); }
  .flow::before { display: none; }
}
@media (max-width: 760px) {
  .mods { grid-template-columns: 1fr; }
  .flow { grid-template-columns: 1fr; }
  .flow li { flex-direction: row; flex-wrap: wrap; align-items: baseline; column-gap: 12px; }
  .flow li > span:last-child { flex-basis: 100%; }
  .case-shot .bframe { transform: none; }
  .hero .emblem { height: 96px; }
  .hero .emblem-logo { width: 96px; height: 96px; margin-left: -48px; }
  .hero .emblem-line { top: 58px; width: calc(50vw - 44px); }
  .hero .emblem-line.l { right: calc(50% + 44px); }
  .hero .emblem-line.r { left: calc(50% + 44px); }
}
@media (min-width: 761px) and (max-width: 1100px) {
  .nav-links a[href="/#services"] { display: none; }
}

/* Enquiry form */
.enq-budget { border: 0; padding: 0; margin: 18px 0 16px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.enq-budget legend { font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; }
.enq-budget label { position: relative; cursor: pointer; }
.enq-budget input { position: absolute; opacity: 0; }
.enq-budget span { display: block; text-align: center; padding: 12px 8px; border-radius: 12px; border: 1px solid var(--line-2); background: rgba(0, 0, 0, 0.3); font-size: 14px; color: var(--muted); transition: all 0.2s; }
.enq-budget input:checked + span { border-color: var(--cyan); color: #fff; background: rgba(94, 200, 255, 0.12); box-shadow: 0 0 0 3px rgba(94, 200, 255, 0.12); }
.enq-budget input:focus-visible + span { outline: 2px solid var(--cyan); outline-offset: 2px; }
.enq-nofit { margin: 0 0 18px; padding: 16px 18px; border-radius: 14px; border: 1px solid rgba(251, 191, 36, 0.35); background: rgba(251, 191, 36, 0.06); }
.enq-nofit b { display: block; color: #fde68a; margin-bottom: 6px; }
.enq-nofit p { font-size: 14px; color: #d6d3c8; }
.enq-ack { display: flex; gap: 10px; align-items: center; margin-top: 10px; font-size: 13.5px; color: var(--muted); cursor: pointer; }
.btn-submit[disabled] { opacity: 0.45; cursor: not-allowed; }
.enq-done { padding: 10px 0 4px; }
.enq-done h3 { font-family: var(--display); font-size: 24px; margin-bottom: 8px; }
.enq-done p { color: var(--muted); margin-bottom: 18px; }
.modal textarea { min-height: 90px; }
@media (max-width: 760px) { .enq-budget { grid-template-columns: 1fr 1fr; } }

/* Fit section: who this is for, and who it is not for */
.fit { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.fit .box h3 { display: flex; align-items: center; gap: 10px; }
.fit ul { display: grid; gap: 12px; margin-top: 6px; }
.fit li { position: relative; padding-left: 28px; color: #cfd6e2; font-size: 15px; }
.fit li::before { position: absolute; left: 0; top: 1px; width: 18px; height: 18px; border-radius: 50%; display: grid; place-items: center; font-size: 11px; font-weight: 700; }
.fit .yes li::before { content: "\2713"; background: rgba(52, 211, 153, 0.15); color: #34d399; }
.fit .no li::before { content: "\2715"; background: rgba(248, 113, 113, 0.14); color: #f87171; }
.fit .no { border-color: rgba(248, 113, 113, 0.18); }
.fit-note { text-align: center; color: var(--muted); margin-top: 22px; font-size: 14.5px; }
@media (max-width: 760px) { .fit { display: grid !important; grid-template-columns: 1fr; margin: 0; padding: 0; overflow: visible; } }
/* Forms own the screen on phones: hide the tab bar while one is open */
body:has(.modal-overlay.active) .tabbar, body:has(.modal-overlay.active) .sheet { display: none; }
@media (max-width: 760px) { .modal-overlay .modal { padding-bottom: env(safe-area-inset-bottom); } }

/* Authority: the premium tier */
.plan.premium { border-color: rgba(217, 181, 106, 0.42); background: linear-gradient(180deg, rgba(217, 181, 106, 0.08), rgba(217, 181, 106, 0) 45%), rgba(12, 13, 16, 0.92); }
.plan.premium .tier { color: #d9b56a; }
.plan.premium .price .plus { font-size: 0.5em; vertical-align: top; margin-left: 2px; color: #d9b56a; }
.plan.premium .price .from { color: #d9b56a; letter-spacing: 0.12em; text-transform: uppercase; }
.plan.premium li::before { background: rgba(217, 181, 106, 0.14) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23d9b56a' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12l5 5L20 7'/%3E%3C/svg%3E") center / 10px no-repeat; }
.btn-gold { border-color: rgba(217, 181, 106, 0.6); color: #f1dcae; }
.btn-gold:hover { background: rgba(217, 181, 106, 0.12); border-color: #d9b56a; }

/* About page: key facts table (crawlable facts for search and AI assistants) */
.facts { width: 100%; border-collapse: collapse; margin: 12px 0 28px; font-size: 14.5px; }
.facts th, .facts td { text-align: left; padding: 10px 12px; border-bottom: 1px solid var(--line); vertical-align: top; }
.facts th { width: 34%; color: #9aa3b2; font-weight: 500; }
.facts td { color: #e3e8f0; }

/* Illustrative numbers in service cards are labelled as examples */
.viz { position: relative; }
.viz .viz-note { position: absolute; right: 10px; top: 8px; z-index: 2; font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: #7d8697; }

/* Media hero intro line and the "Every plan includes" block under the plan cards */
.phero .lead.intro { margin-top: 16px; font-size: 15.5px; max-width: 660px; }
.every-plan { margin-top: 22px; }
.every-plan .checks { grid-template-columns: repeat(2, 1fr); column-gap: 28px; }
.plan li a, .every-plan a { color: inherit; text-decoration: underline; text-underline-offset: 3px; }
@media (max-width: 760px) {
  .phero .lead.intro { font-size: 14.5px; }
  .every-plan .checks { grid-template-columns: 1fr; }
}
.plan .price .vat { display: block; margin-top: 10px; font-family: var(--sans); font-size: 13px; font-weight: 400; letter-spacing: 0; color: var(--muted); }

/* Catalog cards (docs/SHOP.md): plans and quick wins are short ads rendered by
   the server (src/lib/shop/render.ts). Self-contained so a redesign can place
   them anywhere: .offers / .plan.offer, .quick-grid / .quick-card, #shopOverlay. */
.offer-headline { font-family: var(--display); font-weight: 700; font-size: 21px; line-height: 1.25; letter-spacing: -0.02em; color: var(--ink); }
.offer-headline a { color: inherit; }
.offer-headline a:hover { text-decoration: underline; text-underline-offset: 3px; }
.plan.offer { gap: 16px; }
.plan.offer .price { font-size: 2.6rem; }
.offer-points { display: grid; gap: 8px; }
.offer-points li { position: relative; padding-left: 22px; font-size: 14px; color: #c8d0dd; }
.offer-points li::before { content: ""; position: absolute; left: 0; top: 7px; width: 8px; height: 8px; border-radius: 50%; background: var(--cyan); opacity: 0.8; }
.quick-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 18px; margin-top: 30px; }
.quick-card { padding: 26px 24px; display: flex; flex-direction: column; gap: 14px; }
.quick-card .tier { font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }
.quick-card .price { font-family: var(--display); font-weight: 700; font-size: 2.2rem; letter-spacing: -0.05em; line-height: 1; }
.quick-card .price small, .item-buy .price small { font-family: var(--sans); font-size: 13px; font-weight: 400; color: var(--dim); letter-spacing: 0; margin-left: 6px; }
.quick-card .price .vat, .item-buy .price .vat { display: block; margin-top: 8px; font-family: var(--sans); font-size: 12.5px; font-weight: 400; letter-spacing: 0; color: var(--muted); }
.quick-card .price .from, .plan.offer .price .from { display: block; font-family: var(--mono); font-size: 11px; font-weight: 400; color: var(--dim); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 8px; }
.quick-card p { color: var(--muted); font-size: 14.5px; }
.quick-card .btn { margin-top: auto; width: 100%; }
.quick-card .badge, .badge.soon { align-self: flex-start; font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.1em; text-transform: uppercase; padding: 5px 10px; border-radius: 999px; border: 1px solid var(--line-2); color: var(--cyan); background: rgba(94, 200, 255, 0.08); }
.item-hero .badge.soon { display: inline-block; margin-bottom: 16px; }
.item-hero .crumbs { font-family: var(--mono); font-size: 12px; color: var(--dim); margin-bottom: 20px; }
.item-hero .crumbs a { color: var(--muted); }
.item-buy { display: flex; flex-wrap: wrap; align-items: center; gap: 22px; margin-top: 26px; }
.item-buy .price { font-family: var(--display); font-weight: 700; font-size: 2.6rem; letter-spacing: -0.05em; line-height: 1; }
.benefit-list { max-width: 820px; grid-template-columns: repeat(2, 1fr); column-gap: 28px; }
.benefit-list li { font-size: 15.5px; }
.sample-report { max-width: 820px; margin: 0 auto; }
.sample-head { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 8px; font-size: 14px; color: var(--muted); border-bottom: 1px solid var(--line); padding-bottom: 12px; }
.sample-head b { color: var(--ink); }
.sample-scores { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.sample-scores div { text-align: center; }
.sample-scores small { display: block; font-size: 12px; color: var(--muted); }
.sample-fixes { list-style: decimal; padding-left: 20px; display: grid; gap: 10px; color: var(--muted); font-size: 14.5px; }
.sample-fixes b { color: var(--ink); }
.sample-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.sample-table th, .sample-table td { text-align: left; padding: 8px 10px; border-bottom: 1px solid var(--line); vertical-align: top; }
.sample-table th { font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--dim); font-weight: 400; }
.sample-note { font-size: 12.5px; color: var(--dim); font-style: italic; }
.item-next { max-width: 820px; margin: 0 auto; }
.item-next h2 { font-family: var(--display); font-size: 1.6rem; letter-spacing: -0.03em; }
.item-next .actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 6px; }
.item-next a, .shop-hero .lead a, #quick-wins .plans-note a { text-decoration: underline; text-underline-offset: 3px; }
.form-help { display: block; margin-top: 6px; font-size: 12.5px; color: var(--dim); }
@media (max-width: 760px) {
  .benefit-list { grid-template-columns: 1fr; }
  .sample-scores { grid-template-columns: repeat(2, 1fr); }
  .quick-grid { grid-template-columns: 1fr; }
  .item-buy .price { font-size: 2.2rem; }
  .sample-table { font-size: 13px; }
  .sample-table th:nth-child(3), .sample-table td:nth-child(3) { display: none; }
}


/* =========================================================================
   Guides (/guides and /guides/<slug>): long-form answers. Readable measure,
   question headings, lists, a checklist box, and tables that scroll inside
   their own box so the page never scrolls sideways.
   ========================================================================= */
.crumbs { flex-wrap: wrap; justify-content: center; gap: 8px; }
.crumbs a { color: var(--cyan); }
.crumbs a:hover { text-decoration: underline; text-underline-offset: 3px; }
.crumbs span { color: var(--muted); }
.phero.short.guide-hero h1 { font-size: clamp(2rem, 4.4vw, 3.4rem); line-height: 1.06; max-width: 920px; }
.guide-hero .lead.answer { max-width: 720px; margin: 0 auto; font-size: 18px; line-height: 1.65; color: #d3dae6; text-align: left; }
.guide-meta { display: flex; flex-wrap: wrap; justify-content: center; gap: 6px 18px; margin-top: 22px; font-family: var(--mono); font-size: 12px; color: var(--dim); }
section.guide-body { padding: 36px 0 72px; }
.guide { max-width: 720px; margin: 0 auto; }
.guide > h2, .guide-check h2 { scroll-margin-top: 96px; }
.guide > h2 { font-size: clamp(1.45rem, 2.6vw, 1.9rem); line-height: 1.2; letter-spacing: -0.03em; margin: 56px 0 14px; }
.guide h3 { font-family: var(--display); font-size: 1.15rem; font-weight: 700; letter-spacing: -0.02em; margin: 28px 0 8px; }
.guide p, .guide li { color: #c9d1dd; font-size: 17px; line-height: 1.75; }
.guide p + p { margin-top: 14px; }
.guide > ul, .guide > ol, .guide-sources { padding-left: 24px; margin: 14px 0; display: grid; gap: 8px; }
.guide > ul, .guide-sources { list-style: disc; }
.guide > ol { list-style: decimal; }
.guide > ul li::marker, .guide > ol li::marker, .guide-sources li::marker { color: var(--cyan); }
.guide a { color: var(--cyan); text-decoration: underline; text-decoration-color: rgba(94, 200, 255, 0.45); text-underline-offset: 3px; overflow-wrap: anywhere; }
.guide a:hover { text-decoration-color: currentColor; }
.guide strong { color: var(--ink); font-weight: 600; }
.guide code { font-family: var(--mono); font-size: 0.86em; padding: 2px 6px; border-radius: 6px; background: rgba(255, 255, 255, 0.07); color: #dbe7f5; overflow-wrap: anywhere; }
.guide pre { margin: 18px 0; padding: 16px 18px; border-radius: 14px; border: 1px solid var(--line); background: rgba(0, 0, 0, 0.35); overflow-x: auto; }
.guide pre code { padding: 0; background: none; font-size: 13.5px; line-height: 1.7; white-space: pre; overflow-wrap: normal; }
.table-wrap { margin: 20px 0; overflow-x: auto; border: 1px solid var(--line); border-radius: 14px; -webkit-overflow-scrolling: touch; }
.guide table { width: 100%; border-collapse: collapse; font-size: 15px; }
.guide th, .guide td { padding: 11px 14px; text-align: left; vertical-align: top; line-height: 1.55; border-bottom: 1px solid var(--line); }
.guide th { color: var(--ink); background: rgba(255, 255, 255, 0.04); font-weight: 600; }
.guide td { color: #c3cbd8; }
.guide tr:last-child td { border-bottom: 0; }
.guide-toc { margin: 0 0 8px; padding: 18px 22px; border-radius: 16px; border: 1px solid var(--line); background: rgba(255, 255, 255, 0.025); }
.guide-toc .toc-title { font-family: var(--mono); font-size: 11px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--dim); margin: 0 0 10px; }
.guide-toc ol { list-style: decimal; padding-left: 22px; display: grid; gap: 4px; }
.guide-toc li { font-size: 15px; line-height: 1.5; color: var(--dim); }
.guide-toc a { color: #c9d1dd; text-decoration: none; }
.guide-toc a:hover { color: var(--cyan); }
.guide-check { margin: 48px 0 0; padding: 24px 26px; border-radius: 18px; border: 1px solid rgba(94, 200, 255, 0.28); background: rgba(94, 200, 255, 0.05); }
.guide-check h2 { font-size: 1.35rem; letter-spacing: -0.02em; margin: 0 0 14px; }
.guide-check .checks li { font-size: 15.5px; line-height: 1.55; color: #d7deea; }
.guide-faq { margin-top: 8px; }
.guide .faq summary { font-size: 17px; padding: 18px 20px; }
.guide .faq p { font-size: 15.5px; padding: 0 20px 20px; }
.guide-sources li { font-size: 14.5px; line-height: 1.6; }
section.guide-next { padding: 0 0 96px; }
.guide-cta { max-width: 720px; margin: 0 auto; }
.guide-cta h2 { font-size: clamp(1.5rem, 3vw, 2rem); margin: 0; }
.guide-cta p a { color: var(--cyan); text-decoration: underline; text-underline-offset: 3px; }
.guide-cta .actions { margin-top: 8px; }
.soon { display: inline-block; margin-left: 8px; padding: 2px 9px; border-radius: 999px; border: 1px solid rgba(217, 181, 106, 0.5); color: #f1dcae; font-size: 10px; letter-spacing: 0.1em; vertical-align: 1px; }
.guide-related { max-width: 820px; margin: 56px auto 0; text-align: center; }
.guide-related h2 { font-size: clamp(1.4rem, 2.6vw, 1.8rem); }
.guide-related .cap-pills a:hover { color: var(--cyan); }
.guide-all { margin-top: 18px; font-size: 15px; }
.guide-all a { color: var(--cyan); text-decoration: underline; text-underline-offset: 3px; }
.guide-group { scroll-margin-top: 96px; }
.guide-group + .guide-group { margin-top: 64px; }
.guide-group > h2 { font-size: clamp(1.6rem, 3.2vw, 2.4rem); margin-bottom: 8px; }
.guide-group > .lead { font-size: 16.5px; margin-bottom: 22px; }
.guide-cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 14px; }
.guide-card { height: 100%; transition: border-color 0.2s, transform 0.2s var(--ease); }
.guide-card:hover { border-color: rgba(94, 200, 255, 0.4); transform: translateY(-2px); }
.guide-card h3 { font-size: 19px; line-height: 1.3; }
.guide-card p { font-size: 14.5px; }
.guide-card .more { margin-top: auto; display: inline-flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 500; color: var(--cyan); }
@media (max-width: 760px) {
  .guide-hero .lead.answer { font-size: 16.5px; }
  .guide p, .guide li { font-size: 16px; }
  .guide-cards { grid-template-columns: 1fr; }
  .guide-check { padding: 20px 18px; }
  .guide-toc { padding: 16px 18px; }
  section.guide-next { padding-bottom: 64px; }
}
