/* ==================== RESET & TOKENS ==================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --bg: #000;
  --ink: #fff;
  --muted: rgba(255,255,255,.58);
  --soft: rgba(255,255,255,.75);
  --line: rgba(255,255,255,.12);
  --line-2: rgba(255,255,255,.22);
  --red: #FF2D00;
  --orange: #FF7A00;
  --amber: #FFB800;
  --yellow: #FFE600;
  --grad: linear-gradient(180deg,#FF2D00 0%,#FF7A00 45%,#FFB800 75%,#FFE600 100%);
  --grad-h: linear-gradient(90deg,#FF2D00 0%,#FF7A00 45%,#FFB800 75%,#FFE600 100%);
  --grad-diag: linear-gradient(135deg,#FF2D00 0%,#FF7A00 50%,#FFE600 100%);
  --font-display: "Playfair Display", "Times New Roman", serif;
  --font-sans: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  --radius: 20px;
  --ease: cubic-bezier(.2,.9,.2,1);
  --ease-out: cubic-bezier(.22,1,.36,1);
  --pad-x: clamp(18px, 4vw, 56px);
}
html, body { background: var(--bg); color: var(--ink); font-family: var(--font-sans); -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
body { overflow-x: hidden; cursor: none; }
@media (hover: none) { body { cursor: auto; } }
a { color: inherit; text-decoration: none; }
img, svg { max-width: 100%; display: block; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: none; }
::selection { background: var(--orange); color: #000; }

/* ==================== GRAIN ==================== */
.grain { position: fixed; inset: -50%; pointer-events: none; z-index: 60; opacity: .07; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  animation: grain 9s steps(8) infinite; }
@keyframes grain { 0%,100%{transform:translate(0,0)} 10%{transform:translate(-5%,-10%)} 20%{transform:translate(-15%,5%)} 30%{transform:translate(7%,-25%)} 40%{transform:translate(-5%,25%)} 50%{transform:translate(-15%,10%)} 60%{transform:translate(15%,0%)} 70%{transform:translate(0%,15%)} 80%{transform:translate(3%,35%)} 90%{transform:translate(-10%,10%)} }

/* ==================== CUSTOM CURSORS ==================== */
.cursor { position: fixed; top:0; left:0; width:10px; height:10px; border-radius:50%; background:#fff; mix-blend-mode: difference; pointer-events:none; z-index:100; transform: translate(-50%,-50%); transition: width .3s var(--ease), height .3s var(--ease), opacity .2s; }
.cursor-ring { position: fixed; top:0; left:0; width:34px; height:34px; border-radius:50%; border:1px solid rgba(255,255,255,.5); pointer-events:none; z-index:99; transform: translate(-50%,-50%); transition: width .35s var(--ease), height .35s var(--ease), border-color .3s, opacity .25s, background .3s; }
.cursor.is-hover { width:0; height:0; }
.cursor-ring.is-hover { width:72px; height:72px; border-color: var(--orange); background: rgba(255,122,0,.08); }

.cursor-discover { position: fixed; top:0; left:0; width:120px; height:120px; border-radius:50%; pointer-events:none; z-index:98; transform: translate(-50%,-50%) scale(0); transition: transform .45s var(--ease); display:flex; align-items:center; justify-content:center; background: var(--grad-diag); color:#000; font-family: var(--font-display); font-style: italic; font-size:22px; font-weight:500; box-shadow: 0 20px 60px rgba(255,122,0,.35); }
.cursor-discover.is-on { transform: translate(-50%,-50%) scale(1); }
.cursor-discover svg { position:absolute; inset:0; width:100%; height:100%; animation: spinText 12s linear infinite; }
@keyframes spinText { to { transform: rotate(360deg); } }
.cursor-discover .core { font-size:20px; font-family: var(--font-display); font-style: italic; letter-spacing:.02em; position:relative; z-index:2; }
@media (hover: none) { .cursor, .cursor-ring, .cursor-discover { display:none !important; } }

/* ==================== PRELOADER ==================== */
.preloader { position: fixed; inset:0; z-index:200; background:#000; display:flex; align-items:center; justify-content:center; flex-direction:column; gap:28px; }
.preloader .plogo { width:68px; height:68px; filter: drop-shadow(0 0 30px rgba(255,122,0,.45)); object-fit: contain; }
.preloader .pbar { width: min(260px, 44vw); height:1.5px; background: rgba(255,255,255,.12); overflow:hidden; border-radius:2px; }
.preloader .pbar i { display:block; height:100%; width:0%; background: var(--grad-h); transition: width .25s ease; }
.preloader .pcount { font-family: var(--font-display); font-style: italic; font-size:14px; letter-spacing:.14em; color: var(--muted); }

/* ==================== NAV ==================== */
.nav { position: fixed; top:0; left:0; right:0; z-index:55; padding: 20px var(--pad-x); display:flex; align-items:center; justify-content:space-between; transition: transform .5s var(--ease), background .4s; mix-blend-mode: difference; }
.nav.scrolled { background: rgba(0,0,0,.55); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); mix-blend-mode: normal; }
.nav .brand { display:flex; align-items:center; gap:12px; font-weight:600; font-size:17px; letter-spacing:-.01em; }
.nav .brand .logo-wrap { width:36px; height:36px; display:inline-flex; align-items:center; justify-content:center; }
.nav .brand .logo-wrap img, .nav .brand .logo-wrap svg { width:100%; height:100%; object-fit: contain; display:block; }
.nav ul { display:flex; gap:38px; list-style:none; font-size:14px; }
.nav ul a { position:relative; opacity:.88; padding: 6px 0; }
.nav ul a::after { content:""; position:absolute; left:0; right:0; bottom:0; height:1px; background: currentColor; transform: scaleX(0); transform-origin:right; transition: transform .45s var(--ease); }
.nav ul a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav ul a.active { color: #fff; opacity: 1; }
.nav ul a.active::after { transform: scaleX(1); background: var(--grad-h); height:2px; }
.nav .cta { padding: 10px 20px; border:1px solid rgba(255,255,255,.55); border-radius:999px; font-size:13px; font-weight:500; transition: background .3s, color .3s, border-color .3s; }
.nav .cta:hover { background:#fff; color:#000; border-color:#fff; }

/* Hamburger — fixed absolute-positioning X */
.hamburger { display:none; width:44px; height:44px; border-radius:50%; border:1px solid rgba(255,255,255,.5); position: relative; align-items:center; justify-content:center; }
.hamburger i { position: absolute; left: 50%; width: 18px; height: 1.6px; background: #fff; border-radius: 2px; transform: translateX(-50%); transition: transform .38s var(--ease), top .38s var(--ease), opacity .25s ease; }
.hamburger i:nth-child(1) { top: 16px; }
.hamburger i:nth-child(2) { top: 21.2px; }
.hamburger i:nth-child(3) { top: 26.4px; }
.hamburger.open i:nth-child(1) { top: 21.2px; transform: translateX(-50%) rotate(45deg); }
.hamburger.open i:nth-child(2) { opacity: 0; transform: translateX(-50%) scaleX(.2); }
.hamburger.open i:nth-child(3) { top: 21.2px; transform: translateX(-50%) rotate(-45deg); }

@media (max-width: 860px) {
  .nav ul, .nav .cta { display: none; }
  .hamburger { display: inline-flex; }
}

/* Mobile drawer */
.drawer { position: fixed; inset:0; z-index:54; background: #000; padding: 90px var(--pad-x) 40px; transform: translateX(100%); transition: transform .6s var(--ease); display:flex; flex-direction:column; justify-content:space-between; overflow-y:auto; }
.drawer.open { transform: translateX(0); }
.drawer ul { list-style:none; display:flex; flex-direction:column; gap: 18px; }
.drawer ul a { font-family: var(--font-display); font-size: clamp(36px, 10vw, 64px); line-height:1; letter-spacing:-.02em; display:inline-flex; align-items:center; gap:14px; }
.drawer ul a::before { content:"→"; font-family: var(--font-sans); font-size:20px; color: var(--orange); transform: translateX(-10px); opacity:0; transition: all .35s var(--ease); }
.drawer ul a.active { background: var(--grad-h); -webkit-background-clip: text; background-clip: text; color: transparent; font-style: italic; }
.drawer ul a:hover::before { transform: translateX(0); opacity: 1; }
.drawer .bottom { display:flex; justify-content:space-between; align-items:flex-end; color: var(--muted); font-size:13px; border-top:1px solid var(--line); padding-top:24px; flex-wrap:wrap; gap:12px; margin-top: 30px; }

/* ==================== SECTION BASE ==================== */
section { position: relative; padding: clamp(80px, 13vh, 160px) var(--pad-x); }
.wrap { max-width: 1440px; margin: 0 auto; width: 100%; }
.eyebrow { display:inline-flex; align-items:center; gap:12px; font-size:11px; letter-spacing:.32em; text-transform:uppercase; color: var(--muted); margin-bottom:28px; }
.eyebrow::before { content:""; width:28px; height:1px; background: var(--grad-h); }
.sec-num { position:absolute; top: 26px; right: var(--pad-x); font-family: var(--font-display); font-style: italic; font-size:14px; color: var(--muted); letter-spacing:.04em; }

/* ==================== PAGE HERO (interior pages) ==================== */
.page-hero { position: relative; padding-top: clamp(140px, 20vh, 200px); padding-bottom: clamp(40px, 6vh, 80px); overflow: hidden; min-height: 70vh; display:flex; flex-direction:column; justify-content:flex-end; }
.page-hero .crumbs { font-size: 11px; letter-spacing:.28em; text-transform:uppercase; color: var(--muted); margin-bottom: 28px; display:flex; gap:10px; align-items:center; }
.page-hero .crumbs a { color: var(--muted); transition: color .3s; }
.page-hero .crumbs a:hover { color: var(--orange); }
.page-hero .crumbs .sep { color: rgba(255,255,255,.25); }
.page-hero h1 { font-family: var(--font-display); font-weight: 400; font-size: clamp(64px, 14vw, 240px); line-height:.88; letter-spacing:-.03em; max-width: 16ch; }
.page-hero h1 em { font-style: italic; background: var(--grad-h); -webkit-background-clip:text; background-clip: text; color: transparent; }
.page-hero .lede { max-width: 52ch; color: var(--soft); font-size: clamp(16px, 1.3vw, 20px); line-height: 1.6; margin-top: clamp(30px, 4vh, 50px); }
.page-hero .meta-row { display:flex; justify-content: space-between; align-items:flex-end; gap: 40px; flex-wrap: wrap; margin-top: 50px; padding-top: 30px; border-top: 1px solid var(--line); }
.page-hero .meta-row .kv { display:flex; flex-direction:column; gap: 4px; font-size: 12px; letter-spacing:.2em; text-transform:uppercase; color: var(--muted); }
.page-hero .meta-row .kv b { color:#fff; font-family: var(--font-display); font-weight: 400; font-style: italic; font-size: 20px; letter-spacing:0; text-transform: none; }

/* ==================== HOME HERO ==================== */
.hero { min-height: 100svh; display:flex; flex-direction:column; justify-content:center; padding-top: 140px; padding-bottom: 70px; overflow: hidden; }
.hero .tagtop { font-size:11px; letter-spacing:.3em; text-transform:uppercase; color: var(--muted); margin-bottom: 38px; display:flex; gap:12px; align-items:center; }
.hero .tagtop span.dot { width:6px; height:6px; border-radius:50%; background: var(--orange); box-shadow: 0 0 14px var(--orange); animation: pulse 2s ease-in-out infinite; }
@keyframes pulse { 0%,100%{opacity:1; transform:scale(1)} 50%{opacity:.5; transform:scale(1.3)} }
.hero h1 { font-family: var(--font-display); font-weight: 400; font-size: clamp(52px, 10.2vw, 188px); line-height:.92; letter-spacing:-.03em; }
.hero h1 .italic { font-style: italic; background: var(--grad-h); -webkit-background-clip: text; background-clip: text; color: transparent; padding-right:.1em; }
.hero h1 .reveal { display:inline-block; overflow:hidden; vertical-align:top; padding: 0 .02em 0 0; }
.hero h1 .reveal > span { display:inline-block; transform: translateY(110%); will-change: transform; }
.hero .lower { margin-top: 70px; display:flex; justify-content:space-between; align-items:flex-end; gap: 40px; flex-wrap:wrap; }
.hero .lead { max-width: 460px; color: rgba(255,255,255,.78); font-size: clamp(15px, 1.2vw, 18px); line-height:1.6; }
.hero .meta { display:flex; gap: clamp(22px, 3vw, 48px); color: var(--muted); font-size:11px; letter-spacing:.2em; text-transform:uppercase; flex-wrap:wrap; }
.hero .meta b { color:#fff; display:block; font-size: clamp(22px, 2.2vw, 28px); font-family: var(--font-display); font-weight:400; letter-spacing:0; margin-bottom:4px; }
.hero .scroll-ind { position:absolute; left: var(--pad-x); bottom: 28px; font-size:10px; letter-spacing:.32em; text-transform:uppercase; color: var(--muted); display:flex; align-items:center; gap:14px; }
.hero .scroll-ind::after { content:""; width:1px; height:44px; background: linear-gradient(180deg, var(--orange), transparent); animation: scrollLine 2.4s ease-in-out infinite; }
@keyframes scrollLine { 0%,100%{transform: scaleY(.2); transform-origin:top; opacity:.4} 50%{transform: scaleY(1); transform-origin:top; opacity:1} }

.blob { position:absolute; border-radius:50%; filter: blur(120px); opacity:.55; pointer-events:none; z-index:-1; }
.blob.b1 { width: 620px; height: 620px; background: radial-gradient(circle, #FF2D00 0%, transparent 60%); top:-5%; right:-12%; animation: float 20s ease-in-out infinite; }
.blob.b2 { width: 420px; height: 420px; background: radial-gradient(circle, #FFB800 0%, transparent 60%); bottom:-10%; left: 18%; animation: float 26s ease-in-out infinite reverse; opacity:.4; }
@keyframes float { 0%,100%{transform: translate(0,0) scale(1)} 33%{transform: translate(50px,-40px) scale(1.08)} 66%{transform: translate(-30px,60px) scale(.94)} }

/* ==================== INTRO / MANIFESTO ==================== */
.intro { padding-top: clamp(90px, 12vh, 140px); }
.intro .manifesto { font-family: var(--font-display); font-weight: 400; font-size: clamp(32px, 4.8vw, 72px); line-height: 1.12; letter-spacing:-.01em; max-width: 20ch; }
.intro .manifesto em { font-style: italic; background: var(--grad-h); -webkit-background-clip: text; background-clip: text; color: transparent; }
.intro .row { display:grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.intro .col-r { color: var(--soft); font-size: clamp(15px, 1.15vw, 17px); line-height: 1.7; max-width: 48ch; padding-top: 12px; }
.intro .col-r p + p { margin-top: 20px; }
@media (max-width: 900px) { .intro .row { grid-template-columns: 1fr; gap: 40px; } }

/* ==================== MARQUEE ==================== */
.marquee { border-top:1px solid var(--line); border-bottom:1px solid var(--line); padding: 30px 0; overflow:hidden; white-space: nowrap; display:flex; gap: 60px; }
.marquee .track { display: flex; gap: 60px; animation: slide 40s linear infinite; }
.marquee span { font-family: var(--font-display); font-size: clamp(38px, 5.8vw, 86px); line-height: 1; display:inline-flex; align-items:center; gap: 50px; letter-spacing:-.02em; color: var(--ink); font-weight: 500; }
.marquee span em { font-style: italic; background: var(--grad-h); -webkit-background-clip: text; background-clip: text; color: transparent; font-weight: 600; }
.marquee .dot { width: 12px; height: 12px; border-radius:50%; background: var(--grad); display:inline-block; flex:none; }
@keyframes slide { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ==================== WORK GRID ==================== */
.work .head { display:flex; justify-content:space-between; align-items:flex-end; gap: 30px; flex-wrap:wrap; margin-bottom: 60px; }
.work h2 { font-family: var(--font-display); font-size: clamp(44px, 7.5vw, 120px); line-height:.98; letter-spacing:-.02em; max-width: 12ch; font-weight: 400; }
.work h2 em { font-style: italic; background: var(--grad-h); -webkit-background-clip: text; background-clip: text; color: transparent; }
.work .sub { color: var(--soft); max-width: 420px; font-size: 15px; line-height:1.6; }

.grid { display:grid; grid-template-columns: repeat(12, 1fr); gap: 22px; }
.card { position:relative; border-radius: var(--radius); overflow:hidden; aspect-ratio: 1 / 1.1; background:#0b0b0b; border:1px solid var(--line); transition: border-color .35s, box-shadow .5s; will-change: transform; cursor: none; transform-style: preserve-3d; }
.card .bg { position:absolute; inset:0; transition: transform 1.2s var(--ease), filter .6s; will-change: transform; }
.card:hover .bg { transform: scale(1.1); filter: brightness(.55) saturate(1.1); }
.card:hover { border-color: rgba(255,122,0,.55); box-shadow: 0 40px 80px -30px rgba(255,122,0,.35); }
.card .overlay { position:absolute; inset:0; padding: clamp(18px, 2vw, 28px); display:flex; flex-direction:column; justify-content:space-between; z-index:2; }
.card .tag { display:inline-flex; align-self:flex-start; padding: 6px 12px; border:1px solid rgba(255,255,255,.28); border-radius:999px; font-size: 10px; letter-spacing:.22em; text-transform:uppercase; color:#fff; backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); background: rgba(0,0,0,.3); }
.card .info h3 { font-family: var(--font-display); font-weight: 500; font-size: clamp(22px, 2.4vw, 32px); line-height: 1.05; letter-spacing:-.01em; margin-bottom: 6px; }
.card .info p { font-size: 12px; color: rgba(255,255,255,.68); letter-spacing:.06em; }
.card.span-4 { grid-column: span 4; }
.card.span-6 { grid-column: span 6; }
.card.span-8 { grid-column: span 8; }
.card.tall { aspect-ratio: 1 / 1.3; }
@media (max-width: 980px) { .card.span-4, .card.span-6, .card.span-8 { grid-column: span 6; } }
@media (max-width: 620px) { .card.span-4, .card.span-6, .card.span-8 { grid-column: span 12; } .card { aspect-ratio: 1 / 1; } }

.viz { width:100%; height:100%; position:absolute; inset:0; background-position: center; background-size: cover; }
.viz::after { content:""; position:absolute; inset:0; background: linear-gradient(180deg, transparent 45%, rgba(0,0,0,.75) 100%); }

/* client logo on work cards */
.card .card-logo { position:absolute; inset:0; display:flex; align-items:center; justify-content:center; z-index:1; pointer-events:none; transition: opacity .5s var(--ease), transform .8s var(--ease); }
.card .card-logo::before { content:""; position:absolute; width: 60%; aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle, rgba(0,0,0,.45) 0%, rgba(0,0,0,0) 70%); filter: blur(20px); }
.card .card-logo img { position:relative; width: 54%; max-width: 220px; max-height: 46%; object-fit: contain; filter: drop-shadow(0 10px 40px rgba(0,0,0,.55)) drop-shadow(0 2px 8px rgba(0,0,0,.4)); transition: transform .8s var(--ease); }
.card:hover .card-logo { opacity: 0; transform: scale(.94); }
.card:hover .card-logo img { transform: scale(1.08); }
@media (max-width: 620px) { .card .card-logo img { width: 60%; max-height: 50%; } }

.v1 { background: radial-gradient(ellipse at 30% 30%, #ff7a00 0%, transparent 50%), radial-gradient(ellipse at 70% 70%, #8b2500 0%, #1a0800 70%), #1a0800; }
.v2 { background: radial-gradient(ellipse at 70% 20%, #ffb800 0%, transparent 50%), linear-gradient(135deg, #3a1a00, #0a0300); }
.v3 { background: radial-gradient(ellipse at 50% 100%, #ff2d00 0%, transparent 55%), linear-gradient(180deg, #1a0a0a, #000); }
.v4 { background: conic-gradient(from 120deg at 60% 40%, #ffe600, #ff7a00, #ff2d00, #1a0a0a, #ffe600); }
.v5 { background: radial-gradient(ellipse at 30% 70%, #ffb800 0%, transparent 45%), radial-gradient(ellipse at 80% 30%, #ff2d00 0%, transparent 50%), #0a0504; }
.v6 { background: linear-gradient(135deg, #2a0a00, #000 60%), radial-gradient(ellipse at 20% 80%, rgba(255,122,0,.6), transparent 50%); }
.v7 { background: radial-gradient(ellipse at 50% 50%, #ffe600 0%, #ff7a00 30%, #1a0500 70%); }
.v8 { background: linear-gradient(180deg, #ff2d00 0%, #ff7a00 40%, #2a0a00 80%, #000 100%); }
.v9 { background: radial-gradient(ellipse at 70% 40%, #ffb800 0%, transparent 55%), linear-gradient(220deg, #1a0800, #000); }

/* Filter bar (work page) */
.filter-bar { display:flex; gap:10px; flex-wrap:wrap; margin-bottom: 38px; }
.filter-bar button { padding: 10px 18px; border: 1px solid var(--line); border-radius: 999px; font-size: 12px; letter-spacing: .18em; text-transform: uppercase; color: var(--soft); transition: border-color .3s, color .3s, background .3s; cursor: none; }
.filter-bar button:hover { color: #fff; border-color: var(--line-2); }
.filter-bar button.active { background: #fff; color: #000; border-color: #fff; }

/* ==================== RESULTS ==================== */
.results { overflow:hidden; }
.results h2 { font-family: var(--font-display); font-size: clamp(40px, 5.6vw, 84px); line-height: 1.02; letter-spacing:-.02em; margin-bottom: 50px; max-width: 16ch; font-weight: 400; }
.results h2 em { font-style: italic; background: var(--grad-h); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stats-big { display:grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-top:1px solid var(--line); }
.stats-big .stat { padding: 56px 30px; border-right:1px solid var(--line); transition: background .5s; position:relative; overflow:hidden; }
.stats-big .stat:last-child { border-right: 0; }
.stats-big .stat::before { content:""; position:absolute; inset:auto 0 0 0; height: 2px; background: var(--grad-h); transform: scaleX(0); transform-origin: left; transition: transform .7s var(--ease); }
.stats-big .stat:hover::before { transform: scaleX(1); }
.stats-big .stat .n { font-family: var(--font-display); font-size: clamp(56px, 9vw, 140px); line-height:1; letter-spacing:-.03em; background: var(--grad-h); -webkit-background-clip: text; background-clip: text; color: transparent; margin-bottom: 16px; font-weight: 500; }
.stats-big .stat .l { font-size: 12px; letter-spacing:.24em; text-transform: uppercase; color: var(--muted); }
.stats-big .stat .d { font-size: 14px; color: var(--soft); margin-top: 10px; max-width: 30ch; line-height:1.5; }
@media (max-width: 900px) { .stats-big { grid-template-columns: 1fr; } .stats-big .stat { border-right: 0; border-bottom: 1px solid var(--line); padding: 40px 0; } }

/* Mini result cards (results page) */
.mini-grid { display:grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 60px; }
@media (max-width: 900px) { .mini-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .mini-grid { grid-template-columns: 1fr; } }
.mini { padding: 32px 30px; border: 1px solid var(--line); border-radius: var(--radius); background: linear-gradient(180deg, rgba(255,255,255,.03), transparent); transition: border-color .4s, transform .5s var(--ease); }
.mini:hover { border-color: rgba(255,122,0,.45); transform: translateY(-4px); }
.mini .n { font-family: var(--font-display); font-size: clamp(36px, 4vw, 56px); background: var(--grad-h); -webkit-background-clip: text; background-clip: text; color: transparent; margin-bottom: 12px; line-height:1; }
.mini .l { font-size: 13px; color: var(--soft); letter-spacing: .02em; line-height: 1.5; }

/* ==================== SERVICES ==================== */
.services h2 { font-family: var(--font-display); font-size: clamp(44px, 7vw, 120px); line-height:.98; letter-spacing:-.02em; margin-bottom: 70px; max-width: 13ch; font-weight: 400; }
.services h2 em { font-style: italic; color: var(--orange); }
.svc-list { border-top: 1px solid var(--line); }
.svc { border-bottom: 1px solid var(--line); padding: 38px 0; display:grid; grid-template-columns: 60px 1fr 1.2fr 40px; gap: 30px; align-items: center; transition: padding .5s var(--ease); position:relative; overflow:hidden; cursor: none; }
.svc::before { content:""; position:absolute; inset:0; background: var(--grad-h); transform: translateY(101%); transition: transform .7s var(--ease); z-index:-1; }
.svc:hover { padding-left: 28px; padding-right: 28px; color:#000; }
.svc:hover::before { transform: translateY(0); }
.svc:hover .svc-arrow { transform: rotate(-45deg); color:#000; }
.svc-num { font-family: var(--font-display); font-style: italic; font-size: 20px; color: var(--muted); transition: color .3s; }
.svc:hover .svc-num { color: rgba(0,0,0,.55); }
.svc-title { font-family: var(--font-display); font-size: clamp(28px, 4.6vw, 66px); line-height: 1; letter-spacing:-.02em; font-weight: 500; }
.svc-desc { color: var(--soft); font-size: 15px; line-height: 1.6; max-width: 46ch; transition: color .3s; }
.svc:hover .svc-desc { color: rgba(0,0,0,.78); }
.svc-arrow { font-size: 30px; color:#fff; transition: transform .5s var(--ease), color .3s; display: inline-block; justify-self:end; }
@media (max-width: 860px) {
  .svc { grid-template-columns: 40px 1fr; gap: 16px; padding: 28px 0; }
  .svc-desc { grid-column: 1 / -1; margin-top: 6px; }
  .svc-arrow { display:none; }
}

/* Detailed service block (services page) */
.svc-detail { display:grid; grid-template-columns: 1fr 1.3fr; gap: 60px; padding: 60px 0; border-bottom: 1px solid var(--line); align-items: start; }
.svc-detail:last-child { border-bottom: 0; }
.svc-detail h3 { font-family: var(--font-display); font-size: clamp(34px, 4vw, 56px); line-height: 1; letter-spacing:-.02em; font-weight: 500; }
.svc-detail h3 .n { font-style: italic; color: var(--orange); font-size: .55em; display: block; margin-bottom: 12px; letter-spacing: 0; }
.svc-detail .body p { color: var(--soft); font-size: clamp(15px, 1.1vw, 17px); line-height: 1.7; margin-bottom: 18px; max-width: 56ch; }
.svc-detail .body .deliverables { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 12px 24px; margin-top: 24px; padding-top: 24px; border-top: 1px solid var(--line); }
.svc-detail .body .deliverables li { font-size: 14px; color: var(--soft); display:flex; gap: 10px; align-items: center; }
.svc-detail .body .deliverables li::before { content: ""; width: 16px; height: 1px; background: var(--grad-h); flex: none; }
@media (max-width: 900px) {
  .svc-detail { grid-template-columns: 1fr; gap: 30px; padding: 40px 0; }
  .svc-detail .body .deliverables { grid-template-columns: 1fr; }
}

/* ==================== APPROACH ==================== */
.approach .row { display:grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
@media (max-width: 980px) { .approach .row { grid-template-columns: 1fr; gap: 40px; } }
.approach h2 { font-family: var(--font-display); font-size: clamp(40px, 6vw, 88px); line-height:1.02; letter-spacing:-.02em; margin-bottom: 24px; font-weight: 400; }
.approach h2 em { font-style: italic; background: var(--grad-h); -webkit-background-clip: text; background-clip: text; color: transparent; }
.approach p { color: var(--soft); font-size: clamp(15px, 1.1vw, 17px); line-height:1.7; max-width: 52ch; }
.approach p + p { margin-top: 18px; }
.pipeline { position:relative; border-radius: var(--radius); border:1px solid var(--line); background: radial-gradient(ellipse at 50% 0%, rgba(255,122,0,.28), transparent 55%), #050505; padding: 36px; display:flex; flex-direction:column; gap: 18px; }
.pipeline .step { display:flex; gap: 18px; align-items:center; padding: 18px 22px; border:1px solid var(--line); border-radius: 999px; background: rgba(255,255,255,.02); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); transition: all .45s var(--ease); cursor: none; }
.pipeline .step:hover { border-color: var(--orange); background: rgba(255,122,0,.09); transform: translateX(8px); }
.pipeline .step i { width: 36px; height:36px; border-radius:50%; background: var(--grad); display:flex; align-items:center; justify-content:center; font-style:normal; font-weight:700; color:#000; font-size:13px; flex: none; }
.pipeline .step .tx { flex: 1; }
.pipeline .step .tx b { display:block; font-weight:600; font-size:15px; margin-bottom:2px; }
.pipeline .step .tx span { color: var(--muted); font-size:12px; letter-spacing:.05em; }

/* ==================== VOICES / TESTIMONIALS ==================== */
.voices h2 { font-family: var(--font-display); font-size: clamp(40px, 6vw, 88px); line-height:1.02; letter-spacing:-.02em; margin-bottom: 50px; max-width: 14ch; font-weight: 400; }
.voices h2 em { font-style: italic; background: var(--grad-h); -webkit-background-clip: text; background-clip: text; color: transparent; }
.quotes { display:grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.q { padding: 40px; border:1px solid var(--line); border-radius: var(--radius); background: linear-gradient(180deg, rgba(255,255,255,.03), transparent); transition: border-color .35s, transform .5s var(--ease); }
.q:hover { border-color: rgba(255,122,0,.45); transform: translateY(-4px); }
.q blockquote { font-family: var(--font-display); font-size: clamp(20px, 1.8vw, 28px); line-height:1.35; letter-spacing:-.01em; margin-bottom: 28px; font-weight: 400; }
.q blockquote::before { content:"\201C"; color: var(--orange); font-size: 1.4em; line-height: 0; }
.q .who { display:flex; justify-content:space-between; align-items:center; gap: 16px; border-top:1px solid var(--line); padding-top: 20px; }
.q .who b { display:block; font-weight: 600; font-size:14px; }
.q .who span { font-size:12px; color: var(--muted); letter-spacing:.06em; }
@media (max-width: 820px) { .quotes { grid-template-columns: 1fr; } }

/* ==================== VALUES / PRINCIPLES ==================== */
.values-grid { display:grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 40px; }
@media (max-width: 900px) { .values-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .values-grid { grid-template-columns: 1fr; } }
.value { padding: 36px 30px; border: 1px solid var(--line); border-radius: var(--radius); background: linear-gradient(180deg, rgba(255,255,255,.02), transparent); transition: border-color .35s, transform .5s var(--ease); }
.value:hover { border-color: rgba(255,122,0,.45); transform: translateY(-4px); }
.value .num { font-family: var(--font-display); font-style: italic; font-size: 14px; color: var(--orange); margin-bottom: 22px; letter-spacing: .04em; }
.value h3 { font-family: var(--font-display); font-size: clamp(22px, 2.2vw, 30px); line-height: 1.12; letter-spacing:-.01em; margin-bottom: 14px; font-weight: 500; }
.value p { color: var(--soft); font-size: 14px; line-height: 1.6; }

/* ==================== CONTACT ==================== */
.contact { overflow: hidden; }
.contact .big { font-family: var(--font-display); font-size: clamp(56px, 11.5vw, 200px); line-height:.95; letter-spacing:-.03em; margin-bottom: 50px; font-weight: 400; }
.contact .big em { font-style: italic; background: var(--grad-h); -webkit-background-clip: text; background-clip: text; color: transparent; }
.contact .body { display:grid; grid-template-columns: 1fr 1.25fr; gap: 80px; margin-top: 40px; }
@media (max-width: 980px) { .contact .body { grid-template-columns: 1fr; gap: 40px; } }
.contact .body p { color: var(--soft); font-size: 15px; line-height: 1.65; max-width: 40ch; margin-bottom: 28px; }
.contact .channels { display:flex; flex-direction:column; gap: 0; }
.channel { display:flex; justify-content:space-between; align-items:center; padding: 18px 0; border-bottom: 1px solid var(--line); font-size: 15px; transition: padding .4s var(--ease), color .3s; cursor: none; }
.channel:hover { padding-left: 14px; color: var(--yellow); }
.channel .k { color: var(--muted); letter-spacing:.2em; text-transform:uppercase; font-size:11px; }

/* FORM */
form { display:flex; flex-direction:column; gap: 26px; }
.field { position:relative; }
.field input, .field textarea {
  width:100%; background: transparent; border:0; border-bottom:1px solid var(--line); padding: 24px 0 14px; font: inherit; color:#fff; font-size: 16px; outline: none; resize: none; transition: border-color .3s; cursor: none;
}
.field textarea { min-height: 100px; }
.field label { position:absolute; left:0; top:24px; font-size: 14px; color: var(--muted); pointer-events:none; transition: all .3s var(--ease); letter-spacing:.02em; }
.field input:focus, .field textarea:focus { border-color: var(--orange); }
.field input:focus + label, .field input:not(:placeholder-shown) + label,
.field textarea:focus + label, .field textarea:not(:placeholder-shown) + label {
  top: 0; font-size: 11px; letter-spacing:.2em; text-transform: uppercase; color: var(--orange);
}
.submit { margin-top: 10px; align-self:flex-start; padding: 22px 46px; border-radius: 999px; background: var(--grad-h); color:#000; font-weight: 600; font-size: 15px; letter-spacing:.02em; display:inline-flex; align-items:center; gap: 12px; position:relative; overflow:hidden; transition: transform .45s var(--ease), box-shadow .45s; cursor: none; }
.submit:hover { transform: translateY(-3px); box-shadow: 0 14px 44px rgba(255,122,0,.45); }
.submit svg { transition: transform .4s var(--ease); }
.submit:hover svg { transform: translate(4px,-4px); }

/* ==================== NEXT PAGE CTA ==================== */
.next-cta { padding: clamp(80px, 14vh, 160px) var(--pad-x); border-top: 1px solid var(--line); }
.next-cta .wrap { display:flex; justify-content:space-between; align-items: center; gap: 40px; flex-wrap: wrap; }
.next-cta .text { font-family: var(--font-display); font-size: clamp(28px, 4vw, 48px); line-height: 1.12; letter-spacing: -.01em; max-width: 14ch; font-weight: 400; }
.next-cta .text em { font-style: italic; background: var(--grad-h); -webkit-background-clip: text; background-clip: text; color: transparent; }
.next-cta .big-link { font-family: var(--font-display); font-size: clamp(56px, 10vw, 140px); line-height: .9; letter-spacing: -.03em; font-style: italic; background: var(--grad-h); -webkit-background-clip: text; background-clip: text; color: transparent; position: relative; display: inline-flex; align-items: center; gap: 20px; }
.next-cta .big-link::after { content: "→"; font-family: var(--font-sans); font-style: normal; font-size: .35em; background: #fff; -webkit-background-clip: initial; background-clip: initial; color: #000; width: 1.2em; height: 1.2em; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; transition: transform .4s var(--ease); }
.next-cta .big-link:hover::after { transform: translate(8px, -8px); }

/* ==================== FOOTER ==================== */
footer { border-top:1px solid var(--line); padding: 60px var(--pad-x) 40px; position:relative; }
footer .top { display:grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 60px; }
@media (max-width: 820px) { footer .top { grid-template-columns: 1fr 1fr; gap: 30px; } }
@media (max-width: 520px) { footer .top { grid-template-columns: 1fr; } }
footer h4 { font-family: var(--font-display); font-weight: 400; font-size: clamp(28px, 3vw, 38px); line-height:1.08; margin-bottom: 20px; letter-spacing:-.01em; max-width: 16ch; }
footer h4 em { font-style: italic; background: var(--grad-h); -webkit-background-clip: text; background-clip: text; color: transparent; }
footer h5 { font-size: 11px; letter-spacing:.25em; text-transform: uppercase; color: var(--muted); margin-bottom: 18px; }
footer ul { list-style:none; display:flex; flex-direction:column; gap: 10px; font-size:14px; }
footer ul a { opacity:.82; transition: opacity .25s, padding-left .35s; }
footer ul a:hover { opacity:1; padding-left:6px; color: var(--yellow); }
footer .bottom { display:flex; justify-content:space-between; align-items:center; padding-top: 30px; border-top:1px solid var(--line); font-size:12px; color: var(--muted); flex-wrap:wrap; gap: 16px; letter-spacing:.06em; }
.wm { display:flex; align-items:center; justify-content:center; margin: 40px 0 24px; user-select:none; overflow: hidden; width: 100%; }
.wm img { width: 92%; max-width: 1400px; height: auto; display: block; object-fit: contain; filter: drop-shadow(0 12px 60px rgba(255,122,0,.18)); }

/* ==================== REVEAL UTILS ==================== */
.reveal-up { opacity: 0; transform: translateY(40px); transition: opacity 1s var(--ease), transform 1s var(--ease); }
.reveal-up.in { opacity: 1; transform: translateY(0); }
.reveal-up.d1 { transition-delay:.1s; } .reveal-up.d2 { transition-delay:.2s; } .reveal-up.d3 { transition-delay:.3s; } .reveal-up.d4 { transition-delay:.4s; }

/* ==================== POPUP — LIQUID GLASS ==================== */
.popup-backdrop { position: fixed; inset:0; z-index:150; background: rgba(0,0,0,.45); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); opacity:0; pointer-events:none; transition: opacity .5s ease; display:flex; align-items:center; justify-content:center; padding: 20px; }
.popup-backdrop.is-open { opacity:1; pointer-events:auto; }
.popup { position: relative; width: min(520px, 100%); border-radius: 32px; padding: 36px 34px 30px; color:#fff;
  background: linear-gradient(135deg, rgba(255,255,255,.16) 0%, rgba(255,255,255,.04) 100%);
  backdrop-filter: blur(40px) saturate(180%);
  -webkit-backdrop-filter: blur(40px) saturate(180%);
  border: 1px solid rgba(255,255,255,.22);
  box-shadow: 0 30px 80px rgba(0,0,0,.55), inset 0 1px 0 rgba(255,255,255,.35), inset 0 -1px 0 rgba(255,255,255,.08);
  transform: scale(.92) translateY(20px); opacity: 0;
  transition: transform .65s var(--ease-out), opacity .45s ease;
}
.popup-backdrop.is-open .popup { transform: scale(1) translateY(0); opacity:1; }
.popup::before { content:""; position:absolute; inset:0; border-radius: inherit; pointer-events:none; background: radial-gradient(120% 80% at 50% 0%, rgba(255,122,0,.28), transparent 55%); opacity:.9; }
.popup::after { content:""; position:absolute; inset:0; border-radius: inherit; pointer-events:none; box-shadow: inset 0 0 40px rgba(255,255,255,.05); }
.popup .glow { position:absolute; top:-80px; left:50%; transform: translateX(-50%); width:260px; height:260px; border-radius:50%; background: radial-gradient(circle, rgba(255,122,0,.4), transparent 60%); pointer-events:none; z-index:-1; filter: blur(30px); }
.popup .close { position:absolute; top: 16px; right: 16px; width: 34px; height: 34px; border-radius:50%; display:flex; align-items:center; justify-content:center; border:1px solid rgba(255,255,255,.2); background: rgba(255,255,255,.05); color:#fff; font-size: 16px; transition: background .3s, transform .3s; }
.popup .close:hover { background: rgba(255,255,255,.15); transform: rotate(90deg); }
.popup .chip { display:inline-flex; align-items:center; gap:8px; padding: 6px 14px; border-radius: 999px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15); font-size:11px; letter-spacing:.22em; text-transform:uppercase; color: #fff; margin-bottom: 14px; }
.popup .chip span { width:6px; height:6px; border-radius:50%; background: var(--orange); box-shadow: 0 0 10px var(--orange); }
.popup h3 { font-family: var(--font-display); font-weight: 500; font-size: clamp(26px, 3vw, 34px); line-height: 1.1; letter-spacing:-.02em; margin-bottom: 8px; }
.popup h3 em { font-style: italic; background: var(--grad-h); -webkit-background-clip: text; background-clip: text; color: transparent; }
.popup p.sub { color: rgba(255,255,255,.72); font-size: 14px; line-height:1.55; margin-bottom: 22px; }
.popup form { gap: 14px; }
.popup .glass-input { width:100%; padding: 14px 16px; border-radius: 14px; font: inherit; font-size: 14px; color:#fff; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); outline: none; transition: border-color .3s, background .3s; cursor: none; }
.popup .glass-input::placeholder { color: rgba(255,255,255,.5); }
.popup .glass-input:focus { border-color: rgba(255,122,0,.6); background: rgba(255,255,255,.1); }
.popup textarea.glass-input { min-height: 72px; resize: none; }
.popup .glass-btn { width:100%; padding: 14px 16px; border-radius: 14px; background: var(--grad-h); color:#000; font-weight: 600; font-size: 14px; letter-spacing:.02em; display:inline-flex; align-items:center; justify-content:center; gap: 10px; transition: transform .35s var(--ease), box-shadow .35s; cursor: none; margin-top: 6px; }
.popup .glass-btn:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(255,122,0,.4); }
.popup .tiny { font-size: 11px; color: rgba(255,255,255,.5); text-align:center; margin-top: 10px; letter-spacing:.04em; }
@media (max-width: 520px) { .popup { padding: 30px 22px 24px; border-radius: 26px; } }

/* ==================== MOBILE TWEAKS ==================== */
@media (max-width: 700px) {
  .hero { padding-top: 130px; padding-bottom: 50px; }
  .hero h1 { font-size: clamp(46px, 14vw, 78px); }
  .sec-num { top: 22px; font-size: 12px; }
  .contact .big { font-size: clamp(48px, 15vw, 84px); }
  .wm img { width: 96%; }
  .marquee span { gap: 34px; }
  .page-hero { min-height: 60vh; }
  .page-hero h1 { font-size: clamp(56px, 18vw, 120px); }
}
