/* ==========================================================================
   Deluxe Creations — site styles
   --------------------------------------------------------------------------
   BRAND COLOURS: --a1 / --a2 / --a3 are injected per page from Admin → Theme.
   Everything else (gradients, glows, tints) is derived from them below, so
   those three values re-skin the whole site. Light/dark tokens follow.
   ========================================================================== */

:root {
  --a1: #22d3ee; --a2: #8b5cf6; --a3: #f472b6;
  --grad: linear-gradient(110deg, var(--a1), var(--a2) 50%, var(--a3));
  --grad-soft: linear-gradient(110deg, color-mix(in oklab, var(--a1) 22%, transparent), color-mix(in oklab, var(--a3) 22%, transparent));
  --font: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --display: 'Bricolage Grotesque', 'Inter', system-ui, sans-serif;
  --r: 18px; --r-lg: 28px; --r-sm: 12px;
  --wrap: 1240px;
  --ease: cubic-bezier(.2, .8, .2, 1);
  --ease-io: cubic-bezier(.76, 0, .24, 1);
  --header-h: 76px;
}

html[data-theme="dark"] {
  color-scheme: dark;
  --bg: #07070b; --bg-2: #0c0c13; --bg-3: #12121b;
  --surface: rgba(255, 255, 255, .035); --surface-2: rgba(255, 255, 255, .065); --surface-solid: #111119;
  --line: rgba(255, 255, 255, .09); --line-2: rgba(255, 255, 255, .16);
  --text: #ececf1; --heading: #ffffff; --muted: #9d9daa;
  --shadow: 0 30px 80px -20px rgba(0, 0, 0, .7);
  --glass: rgba(10, 10, 16, .6);
}
html[data-theme="light"] {
  color-scheme: light;
  --bg: #f7f6f2; --bg-2: #efede6; --bg-3: #e7e4db;
  --surface: #ffffff; --surface-2: #f3f1eb; --surface-solid: #ffffff;
  --line: rgba(20, 20, 30, .09); --line-2: rgba(20, 20, 30, .18);
  --text: #2a2a33; --heading: #0d0d14; --muted: #62626e;
  --shadow: 0 30px 70px -25px rgba(30, 20, 60, .28);
  --glass: rgba(247, 246, 242, .72);
}

/* ---------- base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-padding-top: calc(var(--header-h) + 20px); }
body {
  margin: 0; background: var(--bg); color: var(--text); font: 400 16px/1.65 var(--font);
  -webkit-font-smoothing: antialiased; overflow-x: hidden; transition: background .5s var(--ease), color .5s var(--ease);
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; background: none; border: 0; padding: 0; }
h1, h2, h3, h4 { font-family: var(--display); color: var(--heading); margin: 0; line-height: 1.05; letter-spacing: -.03em; font-weight: 700; }
p { margin: 0 0 1em; }
::selection { background: var(--a2); color: #fff; }
:focus-visible { outline: 2px solid var(--a1); outline-offset: 3px; border-radius: 6px; }
.skip { position: absolute; left: -999px; top: 8px; z-index: 10000; background: var(--heading); color: var(--bg); padding: 10px 16px; border-radius: 8px; }
.skip:focus { left: 8px; }

.wrap { width: min(var(--wrap), 100% - 32px); margin-inline: auto; }
@media (min-width: 720px) { .wrap { width: min(var(--wrap), 100% - 64px); } }
.center { text-align: center; }
.center.cta-row, .cta-row.center { justify-content: center; }
.muted { color: var(--muted); }
.small { font-size: .9rem; }
.grad { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; background-size: 200% 100%; animation: gradShift 8s ease-in-out infinite alternate; }
.grad-bg { background: var(--grad); }
@keyframes gradShift { to { background-position: 100% 0; } }
.link { color: var(--heading); background: linear-gradient(var(--a2), var(--a2)) 0 100% / 100% 1px no-repeat; transition: background-size .3s var(--ease); }
.link:hover { background-size: 0 1px; background-position: 100% 100%; }
.ic { width: 1.2em; height: 1.2em; flex: none; }

.eyebrow { font: 600 .78rem/1 var(--font); letter-spacing: .16em; text-transform: uppercase; color: var(--muted); margin: 0 0 18px; display: inline-flex; align-items: center; gap: 10px; }
.eyebrow::before { content: ''; width: 22px; height: 2px; background: var(--grad); border-radius: 2px; }
.hero-eyebrow::before, .footer-cta .eyebrow::before { display: none; }
.display { font-size: clamp(2.7rem, 7.2vw, 6.4rem); line-height: .96; letter-spacing: -.045em; font-weight: 700; }
.h2 { font-size: clamp(2.1rem, 4.6vw, 3.9rem); letter-spacing: -.04em; line-height: 1; }
.lead { font-size: clamp(1.05rem, 1.5vw, 1.25rem); color: var(--muted); max-width: 44ch; line-height: 1.6; }
.center .lead, .section-head.center .lead { margin-inline: auto; }
.pulse { width: 8px; height: 8px; border-radius: 50%; background: #22c55e; box-shadow: 0 0 0 0 rgba(34, 197, 94, .6); animation: pulse 2s infinite; display: inline-block; }
@keyframes pulse { 70% { box-shadow: 0 0 0 10px rgba(34, 197, 94, 0); } 100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); } }

/* ---------- buttons ---------- */
.btn {
  --h: 48px; position: relative; display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  height: var(--h); padding: 0 22px; border-radius: 999px; font-weight: 600; font-size: .98rem; white-space: nowrap;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .3s, color .3s, border-color .3s; isolation: isolate; overflow: hidden;
}
.btn .ic { transition: transform .35s var(--ease); }
.btn:hover .ic { transform: translateX(4px); }
.btn-sm { --h: 40px; padding: 0 16px; font-size: .9rem; }
.btn-lg { --h: 58px; padding: 0 30px; font-size: 1.05rem; }
.btn-block { width: 100%; }
.btn-primary { color: #fff; background: var(--grad); background-size: 180% 100%; box-shadow: 0 10px 30px -10px color-mix(in oklab, var(--a2) 70%, transparent); }
.btn-primary::after { content: ''; position: absolute; inset: 0; z-index: -1; background: linear-gradient(110deg, transparent 30%, rgba(255, 255, 255, .45), transparent 70%); transform: translateX(-120%); transition: transform .8s var(--ease); }
.btn-primary:hover { background-position: 100% 0; box-shadow: 0 16px 40px -10px color-mix(in oklab, var(--a2) 80%, transparent); }
.btn-primary:hover::after { transform: translateX(120%); }
.btn-outline { border: 1.5px solid var(--line-2); color: var(--heading); background: var(--surface); }
.btn-outline:hover { border-color: var(--a2); background: color-mix(in oklab, var(--a2) 10%, transparent); }
.btn-ghost { color: var(--heading); background: var(--surface-2); border: 1px solid var(--line); }
.btn-ghost:hover { background: var(--surface); border-color: var(--line-2); }
.icon-btn { width: 42px; height: 42px; border-radius: 50%; display: inline-grid; place-items: center; border: 1px solid var(--line); background: var(--surface); color: var(--heading); transition: .3s var(--ease); }
.icon-btn:hover { border-color: var(--a2); transform: rotate(-8deg) scale(1.05); }
.cta-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }

/* ---------- page transition curtain ---------- */
.curtain { position: fixed; inset: 0; z-index: 9000; pointer-events: none; display: none; }
.js .curtain { display: block; }
.curtain-inner { position: absolute; inset: 0; background: var(--bg-2); display: grid; place-items: center; clip-path: inset(0 0 0 0); }
.curtain-inner::before { content: ''; position: absolute; inset: 0; background: var(--grad); opacity: .14; }
.curtain .gem { width: 56px; height: 56px; animation: gemSpin 1.2s var(--ease-io) infinite; filter: drop-shadow(0 0 24px color-mix(in oklab, var(--a2) 60%, transparent)); }
@keyframes gemSpin { 50% { transform: scale(.85) rotate(180deg); } 100% { transform: rotate(360deg); } }
.is-ready .curtain-inner { animation: curtainOut .9s var(--ease-io) forwards; }
.is-leaving .curtain-inner { animation: curtainIn .55s var(--ease-io) forwards; }
@keyframes curtainOut { from { clip-path: inset(0 0 0 0); } to { clip-path: inset(0 0 100% 0); } }
@keyframes curtainIn { from { clip-path: inset(100% 0 0 0); } to { clip-path: inset(0 0 0 0); } }
.js main, .js .site-header, .js .announce { transition: opacity .5s var(--ease), transform .7s var(--ease); }
.is-leaving main { opacity: .3; transform: translateY(-30px); }

/* ---------- scroll progress + cursor ---------- */
.progress { position: fixed; left: 0; top: 0; height: 3px; width: 100%; z-index: 8000; background: var(--grad); transform-origin: 0 50%; transform: scaleX(var(--p, 0)); }
.cursor { display: none; }
.has-cursor .cursor { display: block; }
.cursor-dot, .cursor-ring { position: fixed; left: 0; top: 0; z-index: 9500; pointer-events: none; border-radius: 50%; }
.cursor-dot { width: 6px; height: 6px; margin: -3px 0 0 -3px; background: var(--heading); mix-blend-mode: difference; }
.cursor-ring { width: 38px; height: 38px; margin: -19px 0 0 -19px; border: 1.5px solid color-mix(in oklab, var(--heading) 50%, transparent); display: grid; place-items: center; transition: width .35s var(--ease), height .35s var(--ease), margin .35s var(--ease), background .35s, border-color .35s; }
.cursor-ring span { font: 600 .72rem var(--font); color: #fff; opacity: 0; letter-spacing: .04em; transition: opacity .2s; }
.cursor.is-hover .cursor-ring { width: 60px; height: 60px; margin: -30px 0 0 -30px; border-color: transparent; background: color-mix(in oklab, var(--a2) 22%, transparent); }
.cursor.is-label .cursor-ring { width: 86px; height: 86px; margin: -43px 0 0 -43px; background: var(--grad); border-color: transparent; }
.cursor.is-label .cursor-ring span { opacity: 1; }
.cursor.is-down .cursor-ring { transform: scale(.85); }
.has-cursor, .has-cursor a, .has-cursor button { cursor: none; }
.has-cursor input, .has-cursor textarea, .has-cursor select { cursor: text; }
.has-cursor select { cursor: pointer; }

/* ---------- announcement ---------- */
.announce { position: relative; z-index: 60; background: var(--grad); color: #fff; font-size: .88rem; text-align: center; padding: 9px 44px; }
.announce p { margin: 0; display: inline-flex; gap: 10px; align-items: center; flex-wrap: wrap; justify-content: center; }
.announce .pulse { background: #fff; }
.announce a { font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.announce-x { position: absolute; right: 10px; top: 50%; transform: translateY(-50%); width: 28px; height: 28px; display: grid; place-items: center; border-radius: 50%; opacity: .8; }
.announce-x:hover { background: rgba(255, 255, 255, .2); opacity: 1; }
.announce.is-hidden { display: none; }

/* ---------- header ---------- */
.site-header { position: sticky; top: 0; z-index: 50; height: var(--header-h); transition: background .4s, border-color .4s, transform .5s var(--ease); border-bottom: 1px solid transparent; }
.site-header.is-scrolled { background: var(--glass); backdrop-filter: blur(18px) saturate(1.4); -webkit-backdrop-filter: blur(18px) saturate(1.4); border-bottom-color: var(--line); }
.site-header.is-hidden { transform: translateY(-110%); }
.header-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.logo { display: inline-flex; align-items: center; gap: 10px; position: relative; z-index: 2; }
.logo .gem { width: 34px; height: 34px; transition: transform .8s var(--ease); }
.logo:hover .gem { transform: rotate(360deg); }
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-text b { font: 700 1.3rem/1 var(--display); letter-spacing: -.04em; color: var(--heading); }
.logo-text i { font: 600 .6rem/1 var(--font); font-style: normal; letter-spacing: .34em; text-transform: uppercase; color: var(--muted); margin-top: 4px; }
.nav { position: relative; display: none; gap: 2px; padding: 5px; border-radius: 999px; background: var(--surface); border: 1px solid var(--line); }
.nav a { position: relative; z-index: 1; padding: 8px 15px; font-size: .92rem; font-weight: 500; color: var(--muted); border-radius: 999px; transition: color .3s; }
.nav a:hover, .nav a[aria-current] { color: var(--heading); }
.nav-pill { position: absolute; top: 5px; left: 0; height: calc(100% - 10px); border-radius: 999px; background: var(--surface-2); border: 1px solid var(--line); transition: transform .45s var(--ease), width .45s var(--ease), opacity .3s; opacity: 0; pointer-events: none; }
@media (min-width: 1080px) { .nav { display: flex; } }
.header-actions { display: flex; align-items: center; gap: 10px; }
.theme-toggle { position: relative; overflow: hidden; }
.theme-toggle span { position: absolute; inset: 0; display: grid; place-items: center; transition: transform .6s var(--ease), opacity .4s; }
html[data-theme="dark"] .tt-sun, html[data-theme="light"] .tt-moon { transform: translateY(0) rotate(0); }
html[data-theme="dark"] .tt-moon { transform: translateY(120%) rotate(90deg); opacity: 0; }
html[data-theme="light"] .tt-sun { transform: translateY(-120%) rotate(-90deg); opacity: 0; }
.menu-btn { display: inline-flex; align-items: center; gap: 10px; height: 42px; padding: 0 16px 0 14px; border-radius: 999px; border: 1px solid var(--line); background: var(--surface); font-weight: 600; font-size: .9rem; color: var(--heading); position: relative; z-index: 2; transition: border-color .3s; }
.menu-btn:hover { border-color: var(--a2); }
.menu-lines { width: 18px; height: 10px; position: relative; }
.menu-lines i { position: absolute; left: 0; width: 100%; height: 2px; border-radius: 2px; background: currentColor; transition: transform .5s var(--ease), top .5s var(--ease); }
.menu-lines i:first-child { top: 0; } .menu-lines i:last-child { top: 8px; }
.menu-open .menu-lines i:first-child { top: 4px; transform: rotate(45deg); }
.menu-open .menu-lines i:last-child { top: 4px; transform: rotate(-45deg); }
@media (max-width: 640px) { .hide-sm { display: none; } .menu-word { display: none; } .menu-btn { padding: 0 12px; } }

/* ---------- full-screen menu ---------- */
.menu { position: fixed; inset: 0; z-index: 45; visibility: hidden; pointer-events: none; }
.menu-bg { position: absolute; inset: 0; background: var(--bg-2); clip-path: circle(0 at calc(100% - 60px) 38px); transition: clip-path .8s var(--ease-io); }
.menu-bg::after { content: ''; position: absolute; inset: 0; background: radial-gradient(60% 50% at 80% 20%, color-mix(in oklab, var(--a2) 25%, transparent), transparent), radial-gradient(50% 40% at 10% 90%, color-mix(in oklab, var(--a1) 18%, transparent), transparent); }
.menu-open .menu { visibility: visible; pointer-events: auto; }
.menu-open .menu-bg { clip-path: circle(150% at calc(100% - 60px) 38px); }
.menu-open { overflow: hidden; }
.menu-open .site-header { background: transparent; border-color: transparent; backdrop-filter: none; }
.menu-inner { position: relative; height: 100%; display: grid; align-content: center; gap: 40px; padding-top: var(--header-h); padding-bottom: 32px; overflow-y: auto; }
@media (min-width: 900px) { .menu-inner { grid-template-columns: 1.6fr 1fr; align-items: center; } }
.menu-links { list-style: none; margin: 0; padding: 0; }
.menu-links li { overflow: hidden; border-bottom: 1px solid var(--line); }
.menu-links a { display: flex; align-items: baseline; gap: 18px; padding: 10px 0; transform: translateY(105%); transition: transform .8s var(--ease) calc(.25s + var(--i) * .05s); }
.menu-open .menu-links a { transform: none; }
.menu-links small { font: 500 .8rem var(--font); color: var(--muted); width: 26px; }
.ml-label { font: 700 clamp(2.1rem, 6.4vw, 4.4rem)/1 var(--display); letter-spacing: -.045em; color: var(--heading); transition: transform .5s var(--ease), color .3s; }
.menu-links em { font-style: normal; color: var(--muted); font-size: .9rem; margin-left: auto; opacity: 0; transform: translateX(-10px); transition: .4s var(--ease); }
.menu-links a:hover .ml-label, .menu-links a[aria-current] .ml-label { transform: translateX(14px); background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.menu-links a:hover em { opacity: 1; transform: none; }
@media (max-width: 640px) { .menu-links em { display: none; } }
.menu-aside { display: flex; flex-direction: column; align-items: flex-start; gap: 8px; opacity: 0; transform: translateY(20px); transition: .6s var(--ease) .5s; }
.menu-open .menu-aside { opacity: 1; transform: none; }
.menu-contact { font: 600 1.25rem var(--display); color: var(--heading); }
.menu-aside .btn { margin-top: 14px; }
.socials { display: flex; gap: 8px; margin-top: 6px; }
.social { width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; border: 1px solid var(--line); color: var(--heading); transition: .3s var(--ease); }
.social:hover { background: var(--grad); color: #fff; border-color: transparent; transform: translateY(-3px); }

/* ---------- ambient backgrounds ---------- */
.aurora { position: absolute; inset: -20% -10% auto; height: 120%; pointer-events: none; filter: blur(70px); opacity: .55; z-index: -1; }
html[data-theme="light"] .aurora { opacity: .35; }
.aurora i { position: absolute; border-radius: 50%; mix-blend-mode: screen; animation: drift 18s ease-in-out infinite alternate; }
html[data-theme="light"] .aurora i { mix-blend-mode: multiply; }
.aurora i:nth-child(1) { width: 46vw; height: 46vw; left: 50%; top: 5%; background: var(--a2); }
.aurora i:nth-child(2) { width: 34vw; height: 34vw; left: 70%; top: 30%; background: var(--a3); animation-duration: 22s; animation-delay: -6s; }
.aurora i:nth-child(3) { width: 30vw; height: 30vw; left: 35%; top: 35%; background: var(--a1); animation-duration: 26s; animation-delay: -12s; opacity: .8; }
@keyframes drift { 0% { transform: translate(0, 0) scale(1); } 50% { transform: translate(-8vw, 6vh) scale(1.15); } 100% { transform: translate(5vw, -4vh) scale(.9); } }
.grid-bg { position: absolute; inset: 0; z-index: -1; pointer-events: none; background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px); background-size: 64px 64px; mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, #000 20%, transparent 75%); -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, #000 20%, transparent 75%); opacity: .6; }
.noise { position: absolute; inset: 0; z-index: -1; pointer-events: none; opacity: .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='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E"); }

/* ---------- reveal & split text ---------- */
.js [data-reveal] { opacity: 0; transform: translateY(34px); transition: opacity 1s var(--ease) var(--d, 0s), transform 1s var(--ease) var(--d, 0s); }
.js [data-reveal].is-in { opacity: 1; transform: none; }
.split-word { display: inline-block; overflow: hidden; vertical-align: top; padding-bottom: .08em; margin-bottom: -.08em; }
.split-word > span { display: inline-block; transform: translateY(110%) rotate(4deg); transform-origin: 0 100%; transition: transform 1.1s var(--ease) calc(var(--w) * .045s + var(--d, 0s)); }
.is-in .split-word > span, [data-split].is-in .split-word > span { transform: none; }

/* ---------- hero ---------- */
.hero { position: relative; isolation: isolate; min-height: calc(100svh - var(--header-h)); display: flex; align-items: center; padding: 40px 0 90px; overflow: hidden; }
.hero-inner { display: grid; gap: 50px; align-items: center; }
@media (min-width: 1000px) { .hero-inner { grid-template-columns: 1.08fr 1fr; } }
.hero-title { margin-bottom: 26px; }
/* The rotating word always sits on its own line at a fixed height, so the
   hero never jumps when a longer or shorter word comes round. */
.rotator { display: grid; white-space: nowrap; }
.split-word.split-line { display: block; }
.split-word.split-line > span { display: block; }
.rotator > span { grid-area: 1 / 1; transition: transform .7s var(--ease), opacity .5s, filter .6s; }
.rotator > span.out { transform: translateY(-60%) rotateX(60deg); opacity: 0; filter: blur(6px); }
.rotator > span.pre { transform: translateY(60%) rotateX(-60deg); opacity: 0; filter: blur(6px); }
.hero-chips { list-style: none; display: flex; flex-wrap: wrap; gap: 8px 20px; padding: 0; margin: 28px 0 0; color: var(--muted); font-size: .93rem; }
.hero-chips li { display: inline-flex; align-items: center; gap: 7px; }
.hero-chips .ic { color: var(--a1); width: 18px; height: 18px; }

.hero-stage { position: relative; height: clamp(360px, 48vw, 560px); perspective: 1600px; }
.stage-card { position: absolute; width: 62%; border-radius: 14px; overflow: hidden; background: var(--surface-solid); border: 1px solid var(--line-2); box-shadow: var(--shadow); transform-style: preserve-3d; will-change: transform; transform: translate3d(var(--tx, 0), var(--ty, 0), 0) rotateY(var(--ry, -16deg)) rotateX(var(--rx, 8deg)); animation: cardIn 1.4s var(--ease) backwards; }
.stage-card img { aspect-ratio: 16 / 11; object-fit: cover; object-position: top; width: 100%; }
.tpl-bar { display: flex; align-items: center; gap: 6px; padding: 9px 12px; background: var(--surface-2); border-bottom: 1px solid var(--line); font-size: .72rem; color: var(--muted); }
.tpl-bar i { width: 9px; height: 9px; border-radius: 50%; background: var(--line-2); }
.tpl-bar i:nth-child(1) { background: #ff5f57; } .tpl-bar i:nth-child(2) { background: #febc2e; } .tpl-bar i:nth-child(3) { background: #28c840; }
.tpl-bar span { margin-left: 10px; padding: 2px 10px; border-radius: 6px; background: var(--surface); flex: 1; max-width: 220px; }
.sc-0 { left: 0; top: 4%; z-index: 2; animation-delay: .3s; }
.sc-1 { left: 26%; top: 20%; z-index: 4; width: 68%; animation-delay: .45s; }
.sc-2 { right: -4%; top: -2%; z-index: 1; width: 48%; opacity: .75; animation-delay: .2s; }
.sc-3 { left: 6%; bottom: -4%; z-index: 3; width: 52%; animation-delay: .6s; }
.sc-4 { right: -6%; bottom: 4%; z-index: 1; width: 40%; opacity: .6; animation-delay: .75s; }
@keyframes cardIn { from { opacity: 0; transform: translate3d(0, 80px, -200px) rotateY(-30deg) rotateX(20deg); } }
.stage-toast, .stage-stars { position: absolute; z-index: 6; display: flex; align-items: center; gap: 12px; padding: 12px 16px; border-radius: 16px; background: var(--glass); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border: 1px solid var(--line-2); box-shadow: var(--shadow); transform: translate3d(var(--tx, 0), var(--ty, 0), 0); animation: floatY 6s ease-in-out infinite; }
.stage-toast { right: 2%; top: 58%; }
.stage-toast b, .toast b { display: block; font-size: .9rem; color: var(--heading); }
.stage-toast small, .toast small { color: var(--muted); font-size: .8rem; }
.stage-stars { left: -2%; top: 48%; flex-direction: column; gap: 2px; animation-delay: -3s; }
.stage-stars span { display: flex; color: #fbbf24; } .stage-stars .ic { fill: currentColor; width: 16px; }
.stage-stars small { font-size: .75rem; color: var(--muted); }
.toast-ic { width: 38px; height: 38px; border-radius: 12px; display: grid; place-items: center; background: var(--grad); color: #fff; flex: none; }
@keyframes floatY { 50% { translate: 0 -10px; } }
@media (max-width: 999px) { .hero-stage { margin-inline: -8px; } .stage-stars { left: 0; } }
.scroll-cue { position: absolute; left: 50%; bottom: 26px; width: 26px; height: 42px; border: 1.5px solid var(--line-2); border-radius: 20px; transform: translateX(-50%); }
.scroll-cue span { position: absolute; left: 50%; top: 8px; width: 3px; height: 8px; margin-left: -1.5px; border-radius: 3px; background: var(--heading); animation: cue 1.8s var(--ease) infinite; }
@keyframes cue { 0% { opacity: 0; transform: translateY(0); } 30% { opacity: 1; } 100% { opacity: 0; transform: translateY(14px); } }

/* ---------- marquee ---------- */
.marquee { overflow: hidden; border-block: 1px solid var(--line); padding: 22px 0; -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent); mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent); }
.marquee-track { display: flex; gap: 28px; width: max-content; animation: marq 40s linear infinite; align-items: center; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track span { font: 600 clamp(1.3rem, 2.4vw, 2rem) var(--display); letter-spacing: -.03em; color: var(--heading); white-space: nowrap; }
.marquee-track .dot { color: var(--a2); font-size: 1rem; }
@keyframes marq { to { transform: translateX(-50%); } }

/* ---------- sections ---------- */
.section { position: relative; padding: clamp(80px, 11vw, 150px) 0; }
.section-alt { background: var(--bg-2); }
.section-head { margin-bottom: clamp(40px, 6vw, 70px); max-width: 780px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }
.section-head .h2 { margin-bottom: 20px; }
.split-head { max-width: none; display: grid; gap: 20px; align-items: end; }
@media (min-width: 900px) { .split-head { grid-template-columns: 1.2fr 1fr; } .split-head .lead { margin-bottom: 20px; } }

/* page hero (inner pages) */
.page-hero { position: relative; isolation: isolate; overflow: hidden; padding: clamp(70px, 12vw, 150px) 0 clamp(50px, 7vw, 90px); }
.page-hero .display { max-width: 16ch; margin-bottom: 24px; }
.page-hero .lead { max-width: 54ch; }
.chip-nav { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 34px; }
.chip { display: inline-flex; align-items: center; gap: 8px; padding: 9px 16px; border-radius: 999px; border: 1px solid var(--line); background: var(--surface); font-size: .9rem; font-weight: 500; color: var(--text); transition: .3s var(--ease); }
.chip:hover { border-color: var(--a2); color: var(--heading); transform: translateY(-2px); }
.chip .ic { color: var(--a2); width: 17px; }
.chip sup { font-size: .7rem; color: var(--muted); }
.chip.is-active { background: var(--heading); color: var(--bg); border-color: var(--heading); }
.chip.is-active sup { color: inherit; opacity: .6; }

/* ---------- cards with cursor glow + tilt ---------- */
[data-tilt] { transform-style: preserve-3d; transition: transform .6s var(--ease), border-color .3s, opacity 1s var(--ease) var(--d, 0s); }
.pc-glow { position: absolute; inset: 0; border-radius: inherit; pointer-events: none; opacity: 0; transition: opacity .4s; background: radial-gradient(420px circle at var(--mx, 50%) var(--my, 50%), color-mix(in oklab, var(--a2) 18%, transparent), transparent 45%); }
[data-tilt]:hover .pc-glow { opacity: 1; }

/* bento */
.bento { display: grid; gap: 16px; grid-template-columns: 1fr; }
@media (min-width: 760px) { .bento { grid-template-columns: repeat(6, 1fr); } .b-phone { grid-column: span 3; grid-row: span 2; } .b-google { grid-column: span 3; } .b-leads { grid-column: span 3; } .b-speed { grid-column: span 3; } .b-own { grid-column: span 3; } }
@media (min-width: 1100px) { .b-phone { grid-column: span 2; } .b-google { grid-column: span 4; } .b-leads { grid-column: span 2; } .b-speed { grid-column: span 2; } .b-own { grid-column: span 2; } }
.bento-card { position: relative; overflow: hidden; border-radius: var(--r-lg); padding: 30px; background: var(--surface); border: 1px solid var(--line); min-height: 250px; display: flex; flex-direction: column; }
.bento-card h3 { font-size: 1.45rem; margin-bottom: 8px; }
.bento-card p { color: var(--muted); max-width: 36ch; }
.mini-phone { margin: 22px auto -70px; width: 220px; border-radius: 34px; padding: 10px; background: #0b0b10; border: 1px solid var(--line-2); box-shadow: var(--shadow); position: relative; transition: transform .8s var(--ease); }
.b-phone:hover .mini-phone { transform: translateY(-24px) rotate(-3deg); }
.mp-notch { position: absolute; left: 50%; top: 16px; width: 70px; height: 20px; border-radius: 12px; background: #000; transform: translateX(-50%); z-index: 2; }
.mp-screen { border-radius: 26px; overflow: hidden; height: 400px; }
.mp-screen img { width: 100%; animation: phoneScroll 14s ease-in-out infinite alternate; }
@keyframes phoneScroll { 0%, 10% { transform: translateY(0); } 90%, 100% { transform: translateY(calc(-100% + 400px)); } }
.serp { margin-top: auto; padding-top: 20px; display: grid; gap: 10px; }
.serp-bar { display: flex; align-items: center; gap: 10px; padding: 12px 18px; border-radius: 999px; border: 1px solid var(--line-2); background: var(--bg); color: var(--heading); font-size: .95rem; }
.serp-bar .ic { color: var(--muted); }
.serp-bar span::after { content: '|'; animation: blink 1s steps(1) infinite; color: var(--a2); margin-left: 1px; }
@keyframes blink { 50% { opacity: 0; } }
.serp-result { padding: 14px 18px; border-radius: 14px; background: var(--bg); border: 1px solid var(--line); display: grid; gap: 2px; font-size: .9rem; }
.serp-result small { color: var(--muted); font-size: .75rem; }
.serp-result b { color: #6aa5ff; font-weight: 500; font-size: 1.02rem; }
html[data-theme="light"] .serp-result b { color: #1a0dab; }
.serp-result.is-you { border-color: color-mix(in oklab, var(--a2) 60%, transparent); box-shadow: 0 0 0 4px color-mix(in oklab, var(--a2) 12%, transparent); }
.serp-result:not(.is-you) { opacity: .5; }
.serp-stars { color: #fbbf24; font-size: .85rem; } .serp-stars em { color: var(--muted); font-style: normal; }
.toasts { margin-top: auto; padding-top: 20px; display: grid; gap: 10px; }
.toast { display: flex; align-items: center; gap: 12px; padding: 10px 14px; border-radius: 14px; background: var(--bg); border: 1px solid var(--line); opacity: 0; transform: translateY(16px) scale(.96); }
.is-in .toast { animation: toastIn .7s var(--ease) forwards; }
.is-in .toast.t2 { animation-delay: .5s; } .is-in .toast.t3 { animation-delay: 1s; }
@keyframes toastIn { to { opacity: 1; transform: none; } }
.gauge { margin-top: auto; position: relative; width: 190px; align-self: center; text-align: center; }
.gauge svg { width: 100%; overflow: visible; }
.gauge path { fill: none; stroke-width: 10; stroke-linecap: round; }
.g-track { stroke: var(--line); }
.g-fill { stroke: url(#none); stroke: var(--a1); stroke-dasharray: 158; stroke-dashoffset: 158; transition: stroke-dashoffset 2s var(--ease) .3s; }
.is-in .g-fill { stroke-dashoffset: 4; }
.gauge b { position: absolute; left: 0; right: 0; top: 32px; font: 700 2.6rem var(--display); color: var(--heading); }
.gauge small { color: var(--muted); font-size: .8rem; }
.big-key { margin-top: auto; align-self: flex-end; width: 120px; height: 120px; border-radius: 30px; display: grid; place-items: center; background: var(--grad); color: #fff; transform: rotate(-10deg); transition: transform .8s var(--ease); box-shadow: 0 20px 50px -15px color-mix(in oklab, var(--a2) 60%, transparent); }
.big-key .ic { width: 56px; height: 56px; }
.b-own:hover .big-key { transform: rotate(8deg) scale(1.06); }

/* ---------- horizontal steps ---------- */
.hsteps { position: relative; height: 300vh; }
.hsteps-sticky { position: sticky; top: 0; height: 100vh; height: 100svh; display: flex; flex-direction: column; justify-content: center; overflow: hidden; }
.hsteps-head { margin-bottom: 40px; }
.hsteps-track { display: flex; gap: 20px; padding-inline: max(16px, calc((100vw - var(--wrap)) / 2)); will-change: transform; }
.hstep { flex: none; width: min(420px, 80vw); min-height: 340px; padding: 34px; border-radius: var(--r-lg); background: var(--surface); border: 1px solid var(--line); position: relative; overflow: hidden; display: flex; flex-direction: column; }
.hstep-n { font: 700 7rem/0.8 var(--display); letter-spacing: -.06em; position: absolute; right: 18px; top: 22px; color: transparent; -webkit-text-stroke: 1.5px var(--line-2); }
.hstep-ic { width: 56px; height: 56px; border-radius: 16px; display: grid; place-items: center; background: var(--grad); color: #fff; margin-bottom: auto; }
.hstep-ic .ic { width: 26px; height: 26px; }
.hstep h3 { font-size: 1.8rem; margin: 40px 0 12px; }
.hstep p { color: var(--muted); margin: 0; }
.hstep-cta { background: var(--grad); border: 0; justify-content: center; align-items: flex-start; }
.hstep-cta h3, .hstep-cta p { color: #fff; margin-top: 0; }
.hstep-cta .btn { margin-top: 24px; background: #fff; color: #111; box-shadow: none; }
.hsteps-progress { width: min(var(--wrap), 100% - 32px); margin: 40px auto 0; height: 3px; background: var(--line); border-radius: 3px; overflow: hidden; }
.hsteps-progress i { display: block; height: 100%; background: var(--grad); transform-origin: 0 50%; transform: scaleX(var(--hp, 0)); }
@media (max-width: 720px) { .hsteps { height: auto; } .hsteps-sticky { position: static; height: auto; padding: 90px 0; } .hsteps-track { flex-direction: column; padding-inline: 16px; transform: none !important; } .hstep { width: 100%; min-height: 0; } .hsteps-progress { display: none; } }

/* ---------- before / after ---------- */
.compare { --pos: 50%; position: relative; aspect-ratio: 16 / 9.5; border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--line-2); box-shadow: var(--shadow); user-select: none; background: #fff; }
.cmp-old, .cmp-new { position: absolute; inset: 0; }
.cmp-new { clip-path: inset(0 0 0 var(--pos)); }
.cmp-new img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.old-site { position: absolute; inset: 0; background: #c0c0c0 repeating-linear-gradient(45deg, #bdbdbd 0 10px, #c6c6c6 10px 20px); font-family: 'Times New Roman', serif; color: #000; overflow: hidden; }
.old-head { background: #000080; color: #ff0; font: bold 22px 'Comic Sans MS', cursive; padding: 10px; }
.old-body { padding: 16px; }
.old-body table { width: 100%; border: 3px ridge #888; background: #fff; }
.old-nav { width: 140px; vertical-align: top; background: #008080; padding: 10px !important; }
.old-nav a { display: block; color: #ff0; text-decoration: underline; font: bold 15px Arial; margin-bottom: 8px; }
.old-body td { padding: 14px; vertical-align: top; }
.old-body h1 { font: bold 32px 'Comic Sans MS', cursive; color: #f00; letter-spacing: 0; text-shadow: 2px 2px #ff0; margin-bottom: 10px; }
.old-body p { font-size: 16px; }
.old-count b { font-family: monospace; background: #000; color: #0f0; padding: 2px 6px; }
.old-construct { font: bold 18px Arial; color: #000; background: #ff0; display: inline-block; padding: 6px 10px; border: 3px dashed #000; }
.cmp-handle { position: absolute; top: 0; bottom: 0; left: var(--pos); width: 3px; margin-left: -1.5px; background: #fff; box-shadow: 0 0 20px rgba(0, 0, 0, .4); pointer-events: none; }
.cmp-handle span { position: absolute; top: 50%; left: 50%; width: 54px; height: 54px; margin: -27px 0 0 -27px; border-radius: 50%; background: var(--grad); color: #fff; display: grid; place-items: center; box-shadow: 0 10px 30px rgba(0, 0, 0, .35); }
.compare input { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0; cursor: ew-resize; margin: 0; }
.cmp-label { position: absolute; top: 16px; padding: 6px 12px; border-radius: 999px; font-size: .78rem; font-weight: 600; background: rgba(0, 0, 0, .65); color: #fff; pointer-events: none; }
.cmp-label.l { left: 16px; } .cmp-label.r { right: 16px; }
@media (max-width: 640px) { .compare { aspect-ratio: 4 / 5; } .old-nav { display: none; } .old-body h1 { font-size: 24px; } }

/* ---------- templates ---------- */
.tpl-grid { display: grid; gap: 28px; grid-template-columns: repeat(auto-fill, minmax(min(100%, 340px), 1fr)); }
.tpl-grid-home { margin-bottom: 50px; }
.tpl-card { display: flex; flex-direction: column; gap: 14px; }
.tpl-card.is-hidden { display: none; }
.tpl-frame { position: relative; display: block; border-radius: var(--r); overflow: hidden; border: 1px solid var(--line); background: var(--surface-solid); box-shadow: 0 20px 50px -30px rgba(0, 0, 0, .6); transition: transform .6s var(--ease), box-shadow .6s var(--ease), border-color .3s; }
.tpl-frame::after { content: ''; position: absolute; inset: 0; background: linear-gradient(150deg, color-mix(in oklab, var(--c2) 40%, transparent), transparent 50%); opacity: 0; transition: opacity .5s; pointer-events: none; }
.tpl-frame:hover { transform: translateY(-8px); box-shadow: var(--shadow); border-color: var(--line-2); }
.tpl-frame:hover::after { opacity: .5; }
.tpl-shot { aspect-ratio: 4 / 3; overflow: hidden; background: var(--c1); }
.tpl-shot img { width: 100%; transition: transform 5s cubic-bezier(.45, 0, .2, 1); }
.tpl-frame:hover .tpl-shot img { transform: translateY(calc(-100% + var(--sh, 250px))); }
.tpl-meta { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.tpl-meta h3 { font-size: 1.35rem; }
.tpl-meta p { margin: 2px 0 0; color: var(--muted); font-size: .9rem; }
.tpl-actions { display: flex; gap: 8px; align-items: center; }
.tpl-blurb { color: var(--muted); font-size: .93rem; margin: 0; }
.filters { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 40px; }
.tpl-custom { margin-top: 70px; padding: 36px; border-radius: var(--r-lg); background: var(--grad-soft), var(--surface); border: 1px solid var(--line); display: flex; flex-wrap: wrap; gap: 20px; align-items: center; justify-content: space-between; }
.tpl-custom h3 { font-size: 1.6rem; margin-bottom: 6px; }
.tpl-custom p { color: var(--muted); margin: 0; }
.template-chip { margin: 0 0 14px; padding: 10px 14px; border-radius: 12px; background: var(--grad-soft); border: 1px solid var(--line); font-size: .9rem; }

/* ---------- pricing ---------- */
.price-grid { display: grid; gap: 20px; grid-template-columns: repeat(auto-fit, minmax(min(100%, 290px), 1fr)); align-items: stretch; margin-bottom: 40px; }
.price-grid.two { max-width: 820px; margin-inline: auto; }
.price-card { position: relative; border-radius: var(--r-lg); padding: 32px 28px 28px; background: var(--surface); border: 1px solid var(--line); display: flex; flex-direction: column; }
.price-card.is-popular { border-color: transparent; background: linear-gradient(var(--surface-solid), var(--surface-solid)) padding-box, var(--grad) border-box; border: 1.5px solid transparent; box-shadow: 0 30px 80px -30px color-mix(in oklab, var(--a2) 55%, transparent); }
@media (min-width: 1000px) { .price-grid:not(.four) .price-card.is-popular { transform: translateY(-14px); } }
.pc-badge { position: absolute; top: -13px; left: 28px; padding: 5px 12px; border-radius: 999px; background: var(--grad); color: #fff; font-size: .74rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; }
.price-card h3 { font-size: 1.55rem; margin-bottom: 8px; }
.pc-tag { color: var(--muted); font-size: .93rem; min-height: 3em; }
.pc-price { display: flex; align-items: baseline; gap: 8px; margin: 10px 0 4px; flex-wrap: wrap; }
.pc-price small { color: var(--muted); font-size: .9rem; }
.pc-price b { font: 700 3.2rem/1 var(--display); letter-spacing: -.05em; color: var(--heading); }
.pc-price span { color: var(--muted); font-size: .9rem; }
.pc-delivery { display: inline-flex; align-items: center; gap: 6px; font-size: .85rem; color: var(--a1); margin-bottom: 18px; }
html[data-theme="light"] .pc-delivery { color: color-mix(in oklab, var(--a1) 60%, #000); }
.pc-features { list-style: none; padding: 20px 0 0; margin: 0 0 28px; border-top: 1px solid var(--line); display: grid; gap: 11px; flex: 1; }
.pc-features li { display: flex; gap: 10px; align-items: flex-start; font-size: .95rem; }
.pc-features .ic { color: var(--a2); margin-top: 3px; width: 17px; height: 17px; }
.tabs { margin-bottom: 30px; }
.tab-list { position: relative; display: flex; width: max-content; max-width: 100%; margin: 0 auto 50px; padding: 5px; border-radius: 999px; background: var(--surface); border: 1px solid var(--line); overflow-x: auto; }
.tab-list button { position: relative; z-index: 1; padding: 11px 22px; border-radius: 999px; font-weight: 600; font-size: .95rem; color: var(--muted); transition: color .3s; white-space: nowrap; }
.tab-list button[aria-selected="true"] { color: #fff; }
.tab-ink { position: absolute; top: 5px; left: 0; height: calc(100% - 10px); border-radius: 999px; background: var(--grad); transition: transform .5s var(--ease), width .5s var(--ease); }
.tab-panel { display: none; }
.tab-panel.is-active { display: block; animation: panelIn .7s var(--ease); }
@keyframes panelIn { from { opacity: 0; transform: translateY(20px); } }
.notes-grid { display: grid; gap: 16px; grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr)); }
.note { display: flex; gap: 14px; padding: 22px; border-radius: var(--r); background: var(--surface); border: 1px solid var(--line); }
.note > .ic { color: var(--a2); width: 26px; height: 26px; }
.note b { color: var(--heading); display: block; margin-bottom: 4px; }
.note p { color: var(--muted); font-size: .92rem; margin: 0; }
.compare-table { overflow-x: auto; border-radius: var(--r-lg); border: 1px solid var(--line); background: var(--surface); }
.compare-table table { width: 100%; border-collapse: collapse; min-width: 680px; }
.compare-table th, .compare-table td { padding: 15px 18px; text-align: center; border-bottom: 1px solid var(--line); font-size: .93rem; }
.compare-table tbody th { text-align: left; font-weight: 500; color: var(--text); }
.compare-table thead th { font: 700 1.15rem var(--display); color: var(--heading); padding-top: 24px; }
.compare-table thead small { display: block; font: 500 .85rem var(--font); color: var(--muted); margin-top: 4px; }
.compare-table .is-popular { background: color-mix(in oklab, var(--a2) 7%, transparent); }
.compare-table .yes { display: inline-grid; place-items: center; width: 26px; height: 26px; border-radius: 50%; background: var(--grad); color: #fff; }
.compare-table .yes .ic { width: 15px; height: 15px; }
.compare-table .no { color: var(--muted); opacity: .6; }
.compare-table tr:last-child > * { border-bottom: 0; }

/* package finder */
.finder-wrap { display: grid; gap: 30px; }
@media (min-width: 900px) { .finder-wrap { grid-template-columns: 1fr 1.3fr; align-items: center; } }
.finder { position: relative; padding: 34px; border-radius: var(--r-lg); background: var(--surface); border: 1px solid var(--line); min-height: 330px; }
.finder-step { display: none; }
.finder-step.is-active { display: block; animation: panelIn .6s var(--ease); }
.finder-q { font: 600 1.35rem/1.3 var(--display); color: var(--heading); margin-bottom: 22px; }
.finder-q span { display: block; font: 600 .8rem var(--font); color: var(--a2); margin-bottom: 8px; letter-spacing: .1em; }
.finder-opts { display: grid; gap: 10px; }
.finder-opts button { text-align: left; padding: 16px 20px; border-radius: 14px; border: 1px solid var(--line); background: var(--bg); font-weight: 500; transition: .3s var(--ease); }
.finder-opts button:hover { border-color: var(--a2); transform: translateX(6px); background: color-mix(in oklab, var(--a2) 8%, var(--bg)); }
.finder-result { animation: panelIn .7s var(--ease); }
.finder-result .fr-name { font: 700 2.6rem/1 var(--display); letter-spacing: -.04em; margin: 8px 0 10px; }
.finder-result p { color: var(--muted); }
.finder-result .cta-row { margin-top: 20px; }

/* ---------- promises / values ---------- */
.promises { display: grid; gap: 1px; grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr)); background: var(--line); border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; }
.promise { padding: 36px 32px; background: var(--bg); transition: background .4s; }
.section-alt .promise { background: var(--bg-2); }
.promise:hover { background: var(--surface-2); }
.promise-ic { width: 50px; height: 50px; border-radius: 14px; display: grid; place-items: center; background: var(--grad-soft); border: 1px solid var(--line); color: var(--heading); margin-bottom: 20px; transition: transform .5s var(--ease); }
.promise:hover .promise-ic { transform: rotate(-10deg) scale(1.1); }
.promise h3 { font-size: 1.3rem; margin-bottom: 8px; }
.promise p { color: var(--muted); margin: 0; font-size: .95rem; }
.values { display: grid; gap: 20px; grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr)); }
.value { padding: 30px; border-radius: var(--r-lg); background: var(--surface); border: 1px solid var(--line); }
.value-n { font: 700 3rem/1 var(--display); color: transparent; -webkit-text-stroke: 1.5px var(--a2); display: block; margin-bottom: 20px; }
.value h3 { font-size: 1.3rem; margin-bottom: 8px; }
.value p { color: var(--muted); margin: 0; }

/* ---------- reviews ---------- */
.reviews { display: grid; gap: 20px; grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr)); }
.review { margin: 0; padding: 30px; border-radius: var(--r-lg); background: var(--surface); border: 1px solid var(--line); display: flex; flex-direction: column; gap: 16px; }
.stars { display: flex; gap: 2px; color: var(--line-2); } .stars .on { color: #fbbf24; } .stars .ic { fill: currentColor; width: 18px; }
.review blockquote { margin: 0; font-size: 1.08rem; color: var(--heading); line-height: 1.55; flex: 1; }
.review figcaption b { display: block; color: var(--heading); } .review figcaption span { color: var(--muted); font-size: .9rem; }

/* ---------- FAQ ---------- */
.faq-wrap { display: grid; gap: 30px; }
@media (min-width: 900px) { .faq-wrap { grid-template-columns: 1fr 1.5fr; align-items: start; } .faq-wrap .section-head { position: sticky; top: calc(var(--header-h) + 30px); } }
.faq { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary { list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 24px 0; font: 600 1.15rem/1.35 var(--display); color: var(--heading); cursor: pointer; transition: color .3s; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--a2); }
.faq-plus { position: relative; flex: none; width: 34px; height: 34px; border-radius: 50%; border: 1px solid var(--line-2); transition: transform .5s var(--ease), background .3s; }
.faq-plus::before, .faq-plus::after { content: ''; position: absolute; left: 50%; top: 50%; width: 12px; height: 1.5px; margin: -.75px 0 0 -6px; background: currentColor; transition: transform .5s var(--ease); }
.faq-plus::after { transform: rotate(90deg); }
.faq-item[open] .faq-plus { transform: rotate(180deg); background: var(--grad); border-color: transparent; color: #fff; }
.faq-item[open] .faq-plus::after { transform: rotate(0); }
.faq-a { overflow: hidden; }
.faq-a p { color: var(--muted); padding-bottom: 24px; margin: 0; max-width: 62ch; }

/* ---------- apps ---------- */
.apps-teaser-inner, .apps-hero-inner { display: grid; gap: 60px; align-items: center; }
@media (min-width: 960px) { .apps-teaser-inner, .apps-hero-inner { grid-template-columns: 1fr 1fr; } }
.ticks { list-style: none; padding: 0; margin: 0 0 1.5em; display: grid; gap: 10px; }
.ticks li { display: flex; gap: 10px; align-items: flex-start; }
.ticks .ic { color: var(--a2); margin-top: 3px; width: 18px; }
.ticks.big li { font-size: 1.08rem; color: var(--heading); align-items: center; }
.ticks.big .ic { width: 38px; height: 38px; padding: 9px; border-radius: 12px; background: var(--grad-soft); border: 1px solid var(--line); margin: 0; color: var(--heading); }
.apps-visual { position: relative; height: 480px; }
.av-dash { position: absolute; left: 0; top: 30px; width: 88%; border-radius: 16px; background: var(--surface-solid); border: 1px solid var(--line-2); box-shadow: var(--shadow); overflow: hidden; }
.av-top { display: flex; gap: 6px; padding: 12px; border-bottom: 1px solid var(--line); } .av-top i { width: 10px; height: 10px; border-radius: 50%; background: var(--line-2); }
.av-body { display: flex; height: 330px; }
.av-side { width: 22%; border-right: 1px solid var(--line); background: repeating-linear-gradient(var(--bg) 0 34px, transparent 34px 46px) 14px 20px / calc(100% - 28px) 100% no-repeat; opacity: .6; }
.av-main { flex: 1; padding: 20px; display: flex; flex-direction: column; gap: 16px; }
.av-kpis { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.av-kpis span { height: 64px; border-radius: 12px; background: var(--grad-soft); border: 1px solid var(--line); }
.av-chart { width: 100%; height: 110px; overflow: visible; }
.av-chart path { fill: none; stroke: var(--a2); stroke-width: 3; stroke-linecap: round; stroke-dasharray: 400; stroke-dashoffset: 400; transition: stroke-dashoffset 2.5s var(--ease) .4s; }
.is-in .av-chart path { stroke-dashoffset: 0; }
.av-rows { display: grid; gap: 8px; } .av-rows i { height: 16px; border-radius: 6px; background: var(--surface-2); }
.av-phone { position: absolute; right: 0; bottom: 0; width: 210px; border-radius: 34px; padding: 10px; background: #0b0b10; border: 1px solid var(--line-2); box-shadow: var(--shadow); }
.av-app { border-radius: 26px; background: #fafafa; color: #111; padding: 44px 14px 18px; display: grid; gap: 12px; }
.av-app-hero { height: 110px; border-radius: 16px; background: var(--grad); }
.av-app b { font: 700 1.05rem var(--display); }
.av-slots { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; }
.av-slots span { text-align: center; padding: 8px; border-radius: 10px; background: #eee; font-size: .8rem; font-weight: 600; }
.av-slots .on { background: #111; color: #fff; }
.av-btn { padding: 12px; border-radius: 12px; text-align: center; background: var(--grad); color: #fff; font-weight: 600; font-size: .85rem; }

.phone-3d { perspective: 1400px; display: grid; place-items: center; padding: 20px 0; }
.p3-body { width: 290px; border-radius: 48px; padding: 12px; background: linear-gradient(145deg, #2a2a33, #0b0b10); box-shadow: var(--shadow), inset 0 0 0 1.5px rgba(255, 255, 255, .12); transform: rotateY(var(--pry, -18deg)) rotateX(var(--prx, 8deg)); transform-style: preserve-3d; transition: transform .2s linear; }
.p3-screen { position: relative; border-radius: 38px; overflow: hidden; background: #f6f6f8; color: #111; height: 590px; }
.p3-status { display: flex; justify-content: space-between; padding: 16px 26px 8px; font-size: .8rem; font-weight: 600; }
.p3-app { padding: 10px 18px; display: grid; gap: 14px; }
.p3-hello small { color: #777; display: block; } .p3-hello b { font: 700 1.6rem var(--display); letter-spacing: -.03em; }
.p3-card { color: #fff; border-radius: 22px; padding: 20px; display: grid; gap: 6px; box-shadow: 0 20px 40px -18px rgba(80, 40, 160, .6); }
.p3-card small { opacity: .8; } .p3-card b { font: 700 1.3rem var(--display); }
.p3-stamps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 8px; margin-top: 8px; }
.p3-stamps i { aspect-ratio: 1; border-radius: 50%; border: 2px solid rgba(255, 255, 255, .5); }
.p3-stamps i.on { background: #fff; border-color: #fff; }
.p3-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.p3-tile { background: #fff; border-radius: 18px; padding: 16px 8px; display: grid; justify-items: center; gap: 6px; font-size: .8rem; font-weight: 600; box-shadow: 0 6px 16px rgba(0, 0, 0, .06); }
.p3-tile .ic { color: var(--a2); width: 24px; height: 24px; }
.p3-next { background: #111; color: #fff; border-radius: 18px; padding: 16px; } .p3-next small { opacity: .6; display: block; } .p3-next b { font-family: var(--display); }
.p3-notif { position: absolute; left: 10px; right: 10px; top: 10px; display: flex; gap: 10px; align-items: center; padding: 12px; border-radius: 18px; background: rgba(255, 255, 255, .85); backdrop-filter: blur(10px); box-shadow: 0 10px 30px rgba(0, 0, 0, .15); animation: notif 7s var(--ease) 1.5s infinite; transform: translateY(-130%); }
.p3-notif > .ic { width: 34px; height: 34px; padding: 8px; border-radius: 10px; background: var(--grad); color: #fff; }
.p3-notif b { display: block; font-size: .85rem; } .p3-notif small { color: #555; font-size: .75rem; }
@keyframes notif { 0%, 100% { transform: translateY(-130%); } 10%, 45% { transform: none; } 55% { transform: translateY(-130%); } }
.app-types { display: grid; gap: 20px; grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr)); }
.app-type { position: relative; padding: 34px 30px; border-radius: var(--r-lg); background: var(--surface); border: 1px solid var(--line); overflow: hidden; }
.at-ic { width: 60px; height: 60px; border-radius: 18px; display: grid; place-items: center; background: var(--grad); color: #fff; margin-bottom: 24px; }
.at-ic .ic { width: 28px; height: 28px; }
.app-type h3 { font-size: 1.6rem; margin-bottom: 10px; }
.app-type p { color: var(--muted); }
.need-wrap { display: grid; gap: 30px; }
.need-grid { display: grid; gap: 16px; grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr)); }
.need { padding: 26px; border-radius: var(--r); background: var(--bg); border: 1px solid var(--line); }
.need b { display: block; font: 600 1.15rem/1.35 var(--display); color: var(--heading); margin-bottom: 10px; }
.need p { color: var(--muted); margin: 0; } .need strong { color: var(--heading); }
.timeline { list-style: none; padding: 0; margin: 0 auto; max-width: 760px; position: relative; }
.timeline::before { content: ''; position: absolute; left: 23px; top: 10px; bottom: 10px; width: 2px; background: linear-gradient(var(--a1), var(--a2), var(--a3)); opacity: .5; }
.timeline li { display: flex; gap: 24px; padding: 18px 0; position: relative; }
.tl-dot { flex: none; width: 48px; height: 48px; border-radius: 50%; display: grid; place-items: center; background: var(--bg-2); border: 2px solid var(--a2); font: 700 1.1rem var(--display); color: var(--heading); position: relative; z-index: 1; }
.timeline h3 { font-size: 1.3rem; margin: 10px 0 6px; } .timeline p { color: var(--muted); margin: 0; }

/* ---------- services list ---------- */
.service-row { display: grid; gap: 24px; padding: 50px 0; border-top: 1px solid var(--line); }
.service-row:last-child { border-bottom: 1px solid var(--line); }
@media (min-width: 900px) { .service-row { grid-template-columns: 90px 1.4fr 1fr; gap: 40px; } }
.sr-index span { font: 700 1rem var(--display); color: var(--muted); }
.sr-ic { width: 54px; height: 54px; border-radius: 16px; display: grid; place-items: center; background: var(--grad); color: #fff; margin-bottom: 20px; transition: transform .6s var(--ease); }
.service-row:hover .sr-ic { transform: rotate(-12deg) scale(1.08); }
.sr-ic .ic { width: 26px; height: 26px; }
.sr-main h2 { font-size: clamp(2rem, 3.8vw, 3rem); margin-bottom: 14px; letter-spacing: -.04em; }
.sr-desc { font-size: 1.1rem; color: var(--text); max-width: 52ch; }
.sr-good { color: var(--muted); } .sr-good b { color: var(--heading); }
.sr-side { padding: 26px; border-radius: var(--r); background: var(--surface); border: 1px solid var(--line); align-self: start; }
.sr-from { font-size: .95rem; color: var(--muted); } .sr-from b { font: 700 1.6rem var(--display); color: var(--heading); }
.sr-actions { display: flex; flex-wrap: wrap; gap: 8px; }

/* ---------- about ---------- */
.about-grid { display: grid; gap: 50px; align-items: center; }
@media (min-width: 900px) { .about-grid { grid-template-columns: 1fr 1.1fr; } }
.about-img { position: relative; border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 4 / 5; }
.about-img-inner { position: absolute; inset: -12% 0; }
.about-img img { width: 100%; height: 100%; object-fit: cover; }
.about-tag { position: absolute; left: 20px; bottom: 20px; display: inline-flex; gap: 8px; align-items: center; padding: 10px 16px; border-radius: 999px; background: var(--glass); backdrop-filter: blur(12px); color: var(--heading); font-weight: 600; font-size: .9rem; border: 1px solid var(--line-2); }
.about-copy p { color: var(--muted); font-size: 1.08rem; }
.about-copy .h2 { margin-bottom: 24px; }

/* ---------- contact ---------- */
.contact-grid { display: grid; gap: 30px; }
@media (min-width: 960px) { .contact-grid { grid-template-columns: 1fr 1.5fr; align-items: start; } }
.contact-cards { display: grid; gap: 12px; }
.c-card { display: flex; gap: 16px; padding: 22px; border-radius: var(--r); background: var(--surface); border: 1px solid var(--line); transition: .35s var(--ease); }
a.c-card:hover { border-color: var(--a2); transform: translateX(6px); }
.c-card > .ic { width: 44px; height: 44px; padding: 11px; border-radius: 13px; background: var(--grad); color: #fff; }
.c-card small { display: block; color: var(--muted); font-size: .8rem; text-transform: uppercase; letter-spacing: .1em; }
.c-card b { font: 600 1.1rem var(--display); color: var(--heading); word-break: break-word; }
.c-card span { display: block; color: var(--muted); font-size: .9rem; }
.c-hours > div { flex: 1; }
.hours { list-style: none; padding: 0; margin: 6px 0 0; display: grid; gap: 4px; font-size: .92rem; }
.hours li { display: flex; justify-content: space-between; gap: 16px; }
.hours li span:first-child { color: var(--muted); }
.contact-form-card { padding: clamp(24px, 4vw, 44px); border-radius: var(--r-lg); background: var(--surface); border: 1px solid var(--line); }
.contact-form-card h2 { font-size: 2rem; margin-bottom: 26px; }
.map { border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--line); height: 380px; }
.map iframe { width: 100%; height: 100%; border: 0; filter: grayscale(.4) contrast(1.05); }
html[data-theme="dark"] .map iframe { filter: invert(.9) hue-rotate(180deg) grayscale(.3); }
.map-section { padding-top: 0; }

/* ---------- forms ---------- */
.enquiry { display: grid; gap: 14px; }
.row2 { display: grid; gap: 14px; }
@media (min-width: 560px) { .row2 { grid-template-columns: 1fr 1fr; } }
.field { display: grid; gap: 7px; }
.field > span { font-size: .85rem; font-weight: 500; color: var(--muted); }
.field input, .field select, .field textarea { width: 100%; font: inherit; font-size: 16px; color: var(--heading); background: var(--bg); border: 1px solid var(--line-2); border-radius: 12px; padding: 13px 15px; transition: border-color .25s, box-shadow .25s; appearance: none; -webkit-appearance: none; }
.field select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%23888' stroke-width='1.6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 15px center; padding-right: 38px; }
.field textarea { resize: vertical; min-height: 110px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--a2); box-shadow: 0 0 0 4px color-mix(in oklab, var(--a2) 18%, transparent); }
.field.has-error input, .field.has-error textarea { border-color: #ef4444; }
.field .err { color: #ef4444; font-size: .82rem; }
.hp { position: absolute !important; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-note { margin: 0; font-size: .92rem; min-height: 1.4em; }
.form-note.ok { color: #22c55e; } .form-note.bad { color: #ef4444; }
.enquiry .btn[disabled] { opacity: .7; pointer-events: none; }
.form-success { text-align: center; padding: 30px 10px; animation: panelIn .7s var(--ease); }
.form-success .tick { width: 76px; height: 76px; margin: 0 auto 20px; border-radius: 50%; background: var(--grad); display: grid; place-items: center; color: #fff; }
.form-success .tick .ic { width: 36px; height: 36px; stroke-dasharray: 30; stroke-dashoffset: 30; animation: draw .7s var(--ease) .3s forwards; }
@keyframes draw { to { stroke-dashoffset: 0; } }
.form-success h3 { font-size: 1.8rem; margin-bottom: 10px; }
.form-success p { color: var(--muted); }

/* quote dialog */
.quote { width: min(980px, 100% - 24px); max-height: calc(100svh - 24px); padding: 0; border: 1px solid var(--line-2); border-radius: var(--r-lg); background: var(--bg-2); color: var(--text); box-shadow: 0 40px 120px rgba(0, 0, 0, .5); overflow: auto; }
.quote[open] { display: grid; animation: dlgIn .6s var(--ease); }
@media (min-width: 820px) { .quote[open] { grid-template-columns: .85fr 1.15fr; } }
.quote::backdrop { background: rgba(5, 5, 10, .6); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); animation: fadeIn .4s; }
@keyframes dlgIn { from { opacity: 0; transform: translateY(30px) scale(.97); } }
@keyframes fadeIn { from { opacity: 0; } }
.quote-close-form { position: absolute; right: 14px; top: 14px; z-index: 2; margin: 0; }
.quote-side { padding: 40px 34px; background: var(--grad-soft), var(--bg-3); position: relative; }
.quote-side h2 { font-size: clamp(2rem, 4vw, 2.8rem); margin-bottom: 14px; }
.quote-side .ticks { margin-top: 26px; }
.quote .enquiry { padding: 40px 34px; }
@media (max-width: 819px) { .quote-side { padding: 30px 22px 10px; background: none; } .quote-side .ticks { display: none; } .quote .enquiry { padding: 16px 22px 30px; } }

/* WhatsApp float */
.wa-float { position: fixed; right: 18px; bottom: 18px; z-index: 40; display: inline-flex; align-items: center; gap: 10px; height: 56px; padding: 0 18px 0 16px; border-radius: 999px; background: #25d366; color: #fff; font-weight: 600; box-shadow: 0 14px 34px -10px rgba(37, 211, 102, .7); transition: transform .4s var(--ease); }
.wa-float:hover { transform: translateY(-4px) scale(1.03); }
.wa-float .ic { width: 26px; height: 26px; }
@media (max-width: 640px) { .wa-float span { display: none; } .wa-float { width: 56px; padding: 0; justify-content: center; } }

/* ---------- footer ---------- */
.site-footer { position: relative; background: var(--bg-2); border-top: 1px solid var(--line); overflow: hidden; }
.footer-cta { padding: clamp(80px, 12vw, 150px) 0 60px; text-align: center; }
.footer-cta .cta-row { justify-content: center; }
.footer-big { font-size: clamp(3.4rem, 11vw, 9.5rem); letter-spacing: -.06em; line-height: .9; }
.footer-marquee { border-bottom: 0; padding: 30px 0; }
.footer-marquee .marquee-track { animation-duration: 45s; gap: 36px; }
.footer-marquee span { font-size: clamp(2rem, 4.2vw, 3.6rem); line-height: 1.15; padding-bottom: .08em; color: var(--heading); opacity: .9; letter-spacing: -.045em; }
.footer-marquee span.fm-grad { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; opacity: 1; font-style: italic; }
.footer-marquee .gem { width: clamp(22px, 2.4vw, 34px); height: auto; flex: none; animation: gemSpin 6s linear infinite; }
.footer-grid { display: grid; gap: 40px; padding: 60px 0; border-top: 1px solid var(--line); grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr)); }
.footer-brand { grid-column: 1 / -1; max-width: 380px; }
@media (min-width: 1000px) { .footer-grid { grid-template-columns: 1.6fr 1fr 1.3fr 1.3fr; } .footer-brand { grid-column: auto; } }
.footer-brand p { margin: 18px 0 16px; font-size: .95rem; }
.site-footer h3 { font: 600 .8rem var(--font); letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin-bottom: 18px; }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.site-footer ul a { transition: color .25s; } .site-footer ul a:hover { color: var(--a2); }
.footer-contact li { display: flex; gap: 10px; align-items: flex-start; font-size: .95rem; }
.footer-contact .ic { color: var(--a2); margin-top: 3px; width: 18px; }
.footer-base { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; padding: 24px 0 34px; border-top: 1px solid var(--line); color: var(--muted); font-size: .88rem; }
.footer-base p { margin: 0; display: flex; flex-wrap: wrap; gap: 8px 20px; }
.footer-base a:hover { color: var(--heading); }

/* ---------- legal / prose ---------- */
.prose { max-width: 760px; }
.prose h2 { font-size: 1.6rem; margin: 44px 0 14px; }
.prose h2:first-child { margin-top: 0; }
.prose p { color: var(--muted); font-size: 1.05rem; }

/* 404 */
.nf { min-height: 70vh; display: grid; place-items: center; }
.nf-code { font: 800 clamp(8rem, 26vw, 18rem)/.85 var(--display); letter-spacing: -.07em; margin: 0 0 10px; }
.nf .lead { margin-inline: auto; }

/* ---------- reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
  .js [data-reveal] { opacity: 1; transform: none; }
  .split-word > span { transform: none; }
  .marquee-track { animation: none; }
}

/* "included with every website" strip */
.included { margin: 0 0 30px; padding: 26px 28px; border-radius: var(--r-lg); background: var(--grad-soft), var(--surface); border: 1px solid var(--line); text-align: center; }
.included .eyebrow { justify-content: center; }
.included ul { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 26px; }
.included li { display: inline-flex; align-items: center; gap: 8px; font-weight: 500; color: var(--heading); }
.included .ic { color: var(--a2); width: 18px; }
