/* ===== Veldagency · Landing ===== */

* { box-sizing: border-box; -webkit-font-smoothing: antialiased; }
html, body { margin:0; padding:0; background:#050507; color:#eaeaef; }
body {
  font-family: 'Inter Tight', 'Inter', ui-sans-serif, system-ui, -apple-system, sans-serif;
  font-feature-settings: "ss01","cv11";
  overflow-x: hidden;
}

/* Display serif for headlines (premium feel) */
@font-face { font-family: 'Veld Serif'; src: local('Times New Roman'); }

:root {
  --bg-0: #050507;
  --bg-1: #0a0a0e;
  --bg-2: #111115;
  --ink-100: #f3f3f5;
  --ink-80: #c9c9d1;
  --ink-60: #8a8a93;
  --ink-40: #56565e;
  --ink-20: #2a2a30;
  --line: rgba(255,255,255,0.08);
  --line-2: rgba(255,255,255,0.04);
  /* iridescent accent — warm graphite / silver (matches reference) */
  --iri-a: #e2dcce;
  --iri-b: #aaa496;
  --iri-c: #6e685e;
  --iri-d: #cfc8b8;
  --iri-glow: radial-gradient(60% 60% at 50% 50%,
    rgba(226,220,206,.55) 0%,
    rgba(170,164,150,.32) 28%,
    rgba(110,104,94,.18) 55%,
    rgba(110,104,94,0) 80%);
}

/* Subtle film grain over everything */
body::before {
  content:"";
  position:fixed; inset:0;
  pointer-events:none; z-index:1000;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 .35 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='.5'/></svg>");
  mix-blend-mode: overlay;
  opacity: .35;
}

/* ============ Layout ============ */
.wrap { max-width: 1440px; margin: 0 auto; padding: 0 40px; }
.sect { padding: 140px 0; position: relative; }
.sect-tight { padding: 96px 0; }

/* ============ Top Nav ============ */
.nav {
  position: sticky; top: 0; z-index: 50;
  padding: 16px 40px;
  display: grid; grid-template-columns: 1fr auto 1fr;
  align-items: center; gap: 24px;
  background: linear-gradient(to bottom, rgba(5,5,7,0.92), rgba(5,5,7,0.6) 60%, rgba(5,5,7,0));
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.nav-left  { display:flex; align-items:center; gap:20px; }
.nav-right { display:flex; align-items:center; gap:18px; justify-self:end; }

.nav-brand { display:flex; align-items:center; gap:10px; font-size:14px; letter-spacing:0.04em; }
.nav-brand .logo {
  width:30px; height:30px; border-radius:50%;
  background:
    radial-gradient(circle at 35% 35%, var(--iri-a), var(--iri-b) 55%, var(--iri-c) 85%),
    #0a0a0e;
  box-shadow: 0 0 22px rgba(226,220,206,.28), inset 0 0 0 .5px rgba(255,255,255,.35);
}
.nav-brand b { font-weight:500; letter-spacing:0.18em; text-transform:uppercase; font-size:11.5px; }

/* live roster status next to logo */
.nav-status {
  display:flex; align-items:center; gap:8px;
  padding: 7px 12px 7px 10px;
  border: .5px solid var(--line);
  border-radius: 999px;
  background: rgba(15,15,18,0.7);
  font-size: 11px; color: var(--ink-80);
  white-space: nowrap;
}
.nav-status .pulse {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--iri-a);
  box-shadow: 0 0 0 0 rgba(226,220,206,.45);
  animation: pulse 2.2s ease-out infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(226,220,206,.5); }
  70%  { box-shadow: 0 0 0 7px rgba(226,220,206,0); }
  100% { box-shadow: 0 0 0 0 rgba(226,220,206,0); }
}
.nav-status .lbl { color: var(--ink-100); font-weight: 500; letter-spacing: 0.02em; }
.nav-status .hint { color: var(--ink-40); margin-left: 2px; }

/* central pill */
.nav-pill {
  display:flex; align-items:center; gap:0;
  padding: 5px;
  background: rgba(18,18,22,0.72);
  border: .5px solid var(--line);
  border-radius: 999px;
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(255,255,255,.04) inset, 0 8px 32px rgba(0,0,0,.4);
}
.nav-pill a {
  position: relative;
  padding: 9px 16px;
  color: var(--ink-80);
  text-decoration:none; font-size:13px;
  border-radius: 999px;
  transition: color .2s ease, background .25s ease;
}
.nav-pill a:hover { color: var(--ink-100); }
.nav-pill a.active {
  color: var(--ink-100);
  background: rgba(255,255,255,0.06);
  box-shadow: inset 0 0 0 .5px rgba(255,255,255,.07);
}
.nav-pill .sep { width:1px; height:18px; background:var(--line); margin:0 6px; }
.nav-pill-cta { display:flex; align-items:center; gap:6px; }
.nav-pill-ico {
  padding: 9px 11px !important;
  color: var(--ink-60);
}

/* live clock */
.nav-clock {
  display:flex; align-items:center; gap: 0;
  padding: 7px 14px;
  border: .5px solid var(--line);
  border-radius: 999px;
  background: rgba(15,15,18,0.6);
  font-size: 11px; color: var(--ink-60);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.nav-clock .zone { display:inline-flex; gap:6px; align-items:center; }
.nav-clock .zone b {
  font-size: 10px; letter-spacing: 0.14em;
  color: var(--ink-100); font-weight: 500;
}
.nav-clock .zone-sep {
  width: 1px; height: 11px; background: var(--line); margin: 0 12px;
}

.nav-cta {
  display:flex; align-items:center; gap:10px;
  font-size:12.5px; color:var(--ink-100);
  cursor:pointer;
  padding: 6px 18px 6px 6px;
  border: .5px solid var(--line);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(232,226,212,.06), rgba(232,226,212,0));
  text-decoration: none;
  transition: background .25s ease, border-color .25s ease;
}
.nav-cta:hover {
  background: linear-gradient(180deg, rgba(232,226,212,.12), rgba(232,226,212,.02));
  border-color: rgba(232,226,212,.25);
}
.nav-cta .ico {
  width:30px; height:30px; border-radius:50%;
  border:.5px solid var(--line);
  display:grid; place-items:center;
  background: rgba(28,26,22,0.8);
}

/* ============ Hero ============ */
.hero {
  position: relative;
  margin: 12px 40px 0;
  border-radius: 28px;
  overflow: hidden;
  background: #060608;
  min-height: calc(100vh - 100px);
  border: .5px solid var(--line);
}
.hero-frame { position: relative; padding: 56px 56px 40px; min-height: calc(100vh - 100px); display:flex; flex-direction:column; }

/* Cinematic video bloom (the Higgsfield accent) */
.cine {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.cine video {
  position: absolute;
  top: -5%; left: -5%;
  width: 110%; height: 115%;
  object-fit: cover;
  filter: blur(6px) saturate(120%) brightness(1.15) contrast(1.05);
  opacity: 1;
}
.cine .cine-fallback {
  position: absolute;
  top: -15%; left: -5%;
  width: 120%; height: 140%;
  filter: blur(60px) saturate(125%) brightness(1.05);
  opacity: 1;
  mix-blend-mode: screen;
  background:
    radial-gradient(38% 50% at 72% 28%, rgba(232,226,212,.92), transparent 72%),
    radial-gradient(55% 60% at 66% 42%, rgba(196,188,172,.55), transparent 75%),
    radial-gradient(45% 55% at 82% 55%, rgba(160,152,138,.45), transparent 72%),
    radial-gradient(60% 50% at 50% 78%, rgba(110,104,92,.28), transparent 70%),
    radial-gradient(30% 35% at 25% 18%, rgba(210,204,190,.18), transparent 72%);
  animation: drift 22s ease-in-out infinite;
}
/* readability scrim — concentrated where text sits, not over the bright fog */
.cine.has-video::after {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(70% 50% at 50% 95%, rgba(8,8,10,.45), transparent 75%),
    radial-gradient(60% 40% at 50% 60%, rgba(8,8,10,.15), transparent 75%);
  pointer-events: none;
}
@keyframes drift {
  0%,100% { transform: translate3d(0,0,0) scale(1); }
  35%     { transform: translate3d(-3%, 2%, 0) scale(1.08); }
  65%     { transform: translate3d(2%, -2%, 0) scale(1.04); }
}

/* vertical light streaks (like reference) */
.streaks { position:absolute; left:0; right:0; top:35%; bottom:0; pointer-events:none; opacity:.6; }
.streaks .s { position:absolute; bottom:0; width:1px; background: linear-gradient(to top, rgba(255,255,255,0), rgba(255,255,255,.6) 70%, rgba(255,255,255,0)); }
.streaks .s:nth-child(1){ left:46%; height:35%; }
.streaks .s:nth-child(2){ left:49%; height:48%; }
.streaks .s:nth-child(3){ left:52%; height:30%; }
.streaks .s:nth-child(4){ left:55%; height:42%; }

/* Top play badge */
.play-badge {
  position:absolute; top:24%; left:50%; transform:translateX(-50%);
  width:56px; height:56px; border-radius:50%;
  border: .5px solid rgba(255,255,255,.25);
  background: rgba(20,20,28,.5);
  backdrop-filter: blur(10px);
  display:grid; place-items:center;
  cursor:pointer; transition: transform .3s;
  z-index: 3;
}
.play-badge:hover { transform: translateX(-50%) scale(1.08); }
.play-badge svg { width:18px; height:18px; fill: rgba(255,255,255,.85); }

/* Hero center stack */
.hero-center {
  position: relative; z-index: 4;
  margin-top: auto; margin-bottom: 12vh;
  text-align: center;
  max-width: 1100px; align-self: center;
}
.hero-eyebrow {
  display:inline-flex; align-items:center; gap:10px;
  padding: 9px 16px;
  border-radius: 999px;
  background: rgba(15,15,20,0.6);
  border: .5px solid var(--line);
  font-size: 12.5px; color: var(--ink-80);
  margin-bottom: 32px;
  backdrop-filter: blur(8px);
  white-space: nowrap;
}
.hero-eyebrow .dot {
  width:14px; height:14px; border-radius:50%;
  background: radial-gradient(circle at 35% 35%, var(--iri-a), var(--iri-b) 60%, var(--iri-c));
  box-shadow: 0 0 12px rgba(170,164,150,.7);
}
.hero-eyebrow .arr { color: var(--ink-60); }

.hero-h {
  font-family: 'Veld Serif', 'Inter Tight', serif;
  font-size: clamp(56px, 7.4vw, 116px);
  line-height: 0.94;
  letter-spacing: -0.035em;
  font-weight: 300;
  margin: 0 0 28px;
  color: var(--ink-100);
}
.hero-h .iri {
  background: linear-gradient(95deg, var(--ink-100) 0%, var(--ink-100) 25%, var(--iri-a) 50%, var(--iri-b) 70%, rgba(255,255,255,0.25) 100%);
  background-clip: text; -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.hero-sub {
  font-size: 17px; line-height: 1.5;
  color: var(--ink-80);
  max-width: 620px; margin: 0 auto 44px;
  font-weight: 380;
}
.hero-ctas { display:flex; gap:12px; justify-content:center; }

.btn {
  display:inline-flex; align-items:center; gap:10px;
  padding: 14px 24px;
  border-radius: 999px;
  font-size: 13.5px; font-weight: 500;
  cursor:pointer; transition: all .25s ease;
  border: .5px solid transparent;
  text-decoration: none;
  letter-spacing: 0.005em;
  white-space: nowrap;
}
.btn-ghost { background: rgba(20,20,28,0.6); color: var(--ink-100); border-color: var(--line); backdrop-filter: blur(8px); }
.btn-ghost:hover { background: rgba(30,30,40,0.7); }
.btn-light { background: #f4f4f6; color: #0a0a0e; }
.btn-light:hover { background: #ffffff; }
.btn-iri {
  background: linear-gradient(95deg, var(--iri-a), var(--iri-b) 50%, var(--iri-c));
  color: #0a0a0e;
  box-shadow: 0 0 32px rgba(170,164,150,.35), inset 0 0 0 .5px rgba(255,255,255,.4);
}
.btn-iri:hover { filter: brightness(1.08); }

/* Hero corner labels (signal dots, like reference) */
.corner-tag {
  position:absolute;
  display:flex; align-items:flex-start; gap:14px;
  z-index: 3;
}
.corner-tag .knob {
  width: 44px; height: 44px; border-radius: 50%;
  border: .5px solid rgba(255,255,255,.2);
  background: rgba(15,15,20,0.55);
  backdrop-filter: blur(10px);
  display:grid; place-items:center;
  color: var(--ink-100);
}
.corner-tag .meta { font-size: 13px; color: var(--ink-80); }
.corner-tag .meta b { display:block; font-weight: 500; color: var(--ink-100); margin-bottom: 2px; }
.corner-tag .meta b::before { content:"• "; color: var(--iri-a); }
.corner-tag .meta i { font-style: normal; color: var(--ink-60); font-size: 12px; }
.corner-tag.tl { top: 26%; left: 60px; }
.corner-tag.bl { bottom: 22%; left: 60px; }
.corner-tag.tr { top: 26%; right: 60px; flex-direction: row-reverse; text-align:right; }
.corner-tag.br { bottom: 22%; right: 60px; flex-direction: row-reverse; text-align:right; }

/* sweeping faint horizon lines */
.horizons { position:absolute; inset:0; pointer-events:none; opacity:.5; }
.horizons svg { width:100%; height:100%; }
.horizons path { stroke: rgba(255,255,255,.15); fill: none; stroke-width: .5; }

/* Bottom row inside hero (scroll + counter) */
.hero-foot {
  position: absolute; left: 56px; right: 56px; bottom: 32px;
  display: flex; justify-content: space-between; align-items: flex-end;
  z-index: 4;
}
.scroll-pill {
  display:flex; align-items:center; gap:12px;
  font-size: 12px; color: var(--ink-80);
}
.scroll-pill .ico {
  width:36px; height:36px; border-radius:50%;
  border:.5px solid var(--line);
  background: rgba(15,15,20,0.6);
  display:grid; place-items:center;
  animation: bob 2.4s ease-in-out infinite;
}
@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(4px); } }

.hero-tag-bot { text-align:right; }
.hero-tag-bot .lbl { font-family: 'Veld Serif', serif; font-style: italic; color: var(--iri-a); font-size: 16px; }
.hero-tag-bot .ticks { display:flex; gap:6px; margin-top:8px; justify-content:flex-end; }
.hero-tag-bot .ticks span { width:46px; height:2px; background:var(--ink-20); border-radius:2px; }
.hero-tag-bot .ticks span.on { background: linear-gradient(90deg, var(--iri-a), var(--iri-b)); }

/* ============ Logo strip ============ */
.strip {
  display:flex; justify-content:space-between; align-items:center;
  padding: 28px 56px;
  gap: 28px;
  color: var(--ink-60);
  font-size: 13px;
  border-top: .5px solid var(--line-2);
}
.strip .item { display:flex; align-items:center; gap:10px; opacity:.75; }
.strip .item:hover { opacity:1; color: var(--ink-100); }

/* ============ Section header ============ */
.sec-head { display:flex; align-items:flex-end; justify-content:space-between; gap:48px; margin-bottom: 64px; }
.sec-eyebrow {
  display:inline-flex; align-items:center; gap:8px;
  font-size: 12px; text-transform: uppercase; letter-spacing: 0.18em;
  color: var(--ink-60);
}
.sec-eyebrow .dot { width:6px; height:6px; border-radius:50%; background: var(--iri-a); box-shadow: 0 0 8px var(--iri-a); }
.sec-h {
  font-family: 'Veld Serif', serif;
  font-weight: 300;
  font-size: clamp(40px, 4.6vw, 64px);
  line-height: 1;
  letter-spacing: -0.025em;
  margin: 16px 0 0;
  max-width: 780px;
}
.sec-h .iri {
  background: linear-gradient(95deg, var(--ink-100), var(--iri-a) 65%, var(--iri-c));
  background-clip: text; -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.sec-aside { color: var(--ink-60); font-size: 14px; max-width: 320px; line-height: 1.55; }

/* ============ Stats ============ */
.stats { display:grid; grid-template-columns: repeat(4, 1fr); gap: 0; border-top: .5px solid var(--line); }
.stat { padding: 36px 32px; border-right: .5px solid var(--line); }
.stat:last-child { border-right: none; }
.stat .n {
  font-family: 'Veld Serif', serif;
  font-size: 56px; line-height: 1; font-weight: 300;
  letter-spacing: -0.025em;
  color: var(--ink-100);
}
.stat .n sup { font-size: 24px; color: var(--iri-a); vertical-align: super; margin-left:2px; }
.stat .lbl { margin-top: 14px; font-size: 13px; color: var(--ink-60); max-width: 220px; line-height:1.45; }

/* ============ Services ============ */
.services { display:grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.svc {
  position: relative;
  padding: 40px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(20,20,28,0.6), rgba(10,10,14,0.6));
  border: .5px solid var(--line);
  overflow: hidden;
  min-height: 460px;
  display:flex; flex-direction: column;
}
.svc::before {
  content:""; position:absolute; inset:0;
  background: radial-gradient(60% 70% at 75% 0%, rgba(170,164,150,.18), transparent 60%);
  pointer-events:none;
}
.svc h3 {
  font-family: 'Veld Serif', serif;
  font-weight: 300;
  font-size: 36px; line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 14px;
  color: var(--ink-100);
}
.svc .tag {
  display:inline-flex; align-items:center; gap:8px;
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.16em;
  color: var(--ink-60); margin-bottom: 24px;
}
.svc .tag .num { color: var(--iri-a); }
.svc p { color: var(--ink-80); font-size: 14.5px; line-height: 1.55; max-width: 440px; }
.svc ul { list-style:none; padding:0; margin: auto 0 0; display:flex; flex-direction:column; gap:0; border-top: .5px solid var(--line); }
.svc ul li {
  padding: 14px 0; border-bottom: .5px solid var(--line);
  display:flex; justify-content:space-between; align-items:center; gap:16px;
  font-size: 13.5px; color: var(--ink-80);
  white-space: nowrap;
}
.svc ul li > span:first-child { overflow:hidden; text-overflow:ellipsis; }
.svc ul li:last-child { border-bottom: none; }
.svc ul li i { font-style: normal; color: var(--ink-40); font-family: 'Veld Serif', serif; font-size: 14px; }

/* ============ Cases ============ */
.cases { display:grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.case {
  position: relative; padding: 28px;
  border-radius: 20px;
  background: rgba(15,15,20,0.6);
  border: .5px solid var(--line);
  overflow: hidden;
  min-height: 360px;
  display:flex; flex-direction: column; justify-content:space-between;
}
.case .avatar {
  width: 100%; aspect-ratio: 16/10;
  border-radius: 14px;
  background:
    radial-gradient(40% 50% at 60% 40%, rgba(226,220,206,.45), transparent 65%),
    radial-gradient(50% 60% at 30% 65%, rgba(110,104,94,.35), transparent 65%),
    #0a0a10;
  border: .5px solid var(--line);
  margin-bottom: 20px;
  position:relative; overflow:hidden;
}
.case .avatar::after {
  content:""; position:absolute; inset:0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence baseFrequency='0.65' numOctaves='2'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 .2 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  mix-blend-mode: overlay; opacity:.3;
}
.case h4 { font-family: 'Veld Serif', serif; font-weight: 400; font-size: 22px; margin: 0 0 6px; color: var(--ink-100); letter-spacing: -0.01em; }
.case .role { font-size: 12px; color: var(--ink-60); text-transform: uppercase; letter-spacing: 0.12em; }
.case .nums { display:flex; gap: 24px; margin-top: 16px; }
.case .nums div b {
  display:block; font-family: 'Veld Serif', serif; font-weight: 300;
  font-size: 28px; color: var(--ink-100); letter-spacing: -0.02em;
}
.case .nums div span { font-size: 11px; color: var(--ink-60); text-transform: uppercase; letter-spacing: 0.1em; }
.case .nums div b.up { color: var(--iri-a); }

/* ============ Process ============ */
.process { display:grid; grid-template-columns: 320px 1fr; gap: 64px; align-items: start; }
.process-steps { display:flex; flex-direction: column; }
.pstep {
  display:grid; grid-template-columns: 64px 1fr auto;
  align-items: start; gap: 24px;
  padding: 28px 0;
  border-top: .5px solid var(--line);
}
.pstep:last-child { border-bottom: .5px solid var(--line); }
.pstep .num {
  font-family: 'Veld Serif', serif;
  font-weight: 300; font-size: 36px;
  color: var(--ink-40); letter-spacing: -0.02em;
}
.pstep h4 { font-weight: 500; font-size: 18px; margin: 8px 0 8px; color: var(--ink-100); }
.pstep p { color: var(--ink-60); font-size: 14px; line-height: 1.55; margin: 0; max-width: 540px; }
.pstep .dur { font-size: 12px; color: var(--ink-40); font-family: 'Veld Serif', serif; font-style: italic; padding-top: 12px; }

/* ============ Roles · 3 cards (Models / Chatters / Scouts) ============ */
.roles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.role-card {
  position: relative;
  padding: 36px 32px 32px;
  border-radius: 24px;
  border: .5px solid var(--line);
  min-height: 540px;
  display: flex; flex-direction: column;
  overflow: hidden;
  background: linear-gradient(180deg, #0d0d0a, #08080a);
}
.role-card::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(70% 60% at 80% 0%, rgba(226,220,206,.10), transparent 65%);
  pointer-events: none;
}
.role-card.models {
  background:
    radial-gradient(60% 70% at 80% 20%, rgba(226,220,206,.18), transparent 60%),
    radial-gradient(80% 90% at 20% 90%, rgba(170,164,150,.10), transparent 60%),
    #0d0d0a;
}
.role-card.models::before { display: none; }

.role-head {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 28px;
  position: relative; z-index: 1;
}
.role-num {
  font-family: 'Veld Serif', serif;
  font-size: 14px; color: var(--iri-a);
  letter-spacing: 0.05em;
}
.role-tag {
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.2em;
  color: var(--ink-60);
}
.role-card h3 {
  position: relative; z-index: 1;
  font-family: 'Veld Serif', serif;
  font-weight: 300;
  font-size: 36px; line-height: 1.02;
  letter-spacing: -0.02em;
  margin: 0 0 18px;
  color: var(--ink-100);
}
.role-card > p {
  position: relative; z-index: 1;
  color: var(--ink-80); font-size: 14px; line-height: 1.55;
  margin: 0 0 24px;
}
.role-card ul {
  position: relative; z-index: 1;
  list-style: none; padding: 0; margin: 0 0 28px;
  display: flex; flex-direction: column; gap: 10px;
}
.role-card ul li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 13.5px; color: var(--ink-80);
  line-height: 1.45;
}
.role-card ul li::before {
  content: "";
  width: 5px; height: 5px; border-radius: 50%; flex-shrink: 0;
  margin-top: 7px;
  background: var(--iri-a);
  box-shadow: 0 0 6px var(--iri-a);
}
.role-foot {
  margin-top: auto;
  position: relative; z-index: 1;
  display: flex; flex-direction: column; gap: 14px;
  padding-top: 20px;
  border-top: .5px solid var(--line);
}
.role-meta {
  font-size: 12px; color: var(--ink-60);
}
.role-meta b {
  color: var(--ink-100);
  font-family: 'Veld Serif', serif;
  font-weight: 400; font-size: 14px;
  margin-right: 4px;
}
.role-card .btn { align-self: flex-start; }

@media (max-width: 1100px) {
  .roles { grid-template-columns: 1fr; }
}
.dual { display:grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.dual-card {
  position: relative;
  padding: 48px;
  border-radius: 24px;
  border: .5px solid var(--line);
  min-height: 520px;
  display:flex; flex-direction: column; justify-content: space-between;
  overflow: hidden;
}
.dual-card.models {
  background:
    radial-gradient(60% 70% at 80% 20%, rgba(226,220,206,.25), transparent 60%),
    radial-gradient(80% 90% at 20% 90%, rgba(110,104,94,.15), transparent 60%),
    #0a0a0e;
}
.dual-card.partners {
  background: linear-gradient(180deg, #0a0a0e, #060608);
}
.dual-card .kind {
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.2em;
  color: var(--iri-a); margin-bottom: 16px;
}
.dual-card h3 {
  font-family: 'Veld Serif', serif; font-weight: 300;
  font-size: 48px; line-height: 1.02; letter-spacing: -0.025em;
  margin: 0 0 20px; color: var(--ink-100);
}
.dual-card p { color: var(--ink-80); font-size: 15px; line-height: 1.55; max-width: 460px; margin: 0 0 28px; }
.dual-card ul { list-style: none; padding: 0; margin: 0 0 32px; display:flex; flex-direction: column; gap: 10px; }
.dual-card ul li {
  display:flex; align-items: center; gap: 12px;
  font-size: 14px; color: var(--ink-80);
}
.dual-card ul li::before {
  content:""; width: 5px; height: 5px; border-radius: 50%;
  background: var(--iri-a); box-shadow: 0 0 6px var(--iri-a);
}

/* ============ FAQ ============ */
.faq { display:flex; flex-direction: column; border-top: .5px solid var(--line); }
.faq-item {
  border-bottom: .5px solid var(--line);
  padding: 28px 0;
  cursor: pointer;
}
.faq-q {
  display:flex; justify-content: space-between; align-items: center; gap: 40px;
  font-family: 'Veld Serif', serif;
  font-weight: 300;
  font-size: 24px; letter-spacing: -0.01em;
  color: var(--ink-100);
}
.faq-q .plus {
  width: 32px; height: 32px; border-radius: 50%;
  border: .5px solid var(--line);
  display:grid; place-items:center;
  color: var(--ink-60);
  transition: transform .3s, color .3s;
  flex-shrink: 0;
}
.faq-item.open .plus { transform: rotate(45deg); color: var(--iri-a); border-color: rgba(226,220,206,.4); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height .35s ease, margin .35s ease;
  color: var(--ink-60); font-size: 15px; line-height: 1.6; max-width: 780px;
}
.faq-item.open .faq-a { max-height: 320px; margin-top: 16px; }

/* ============ CTA / Apply ============ */
.apply {
  position: relative;
  margin: 0 40px 40px;
  border-radius: 28px;
  padding: 80px 56px;
  background:
    radial-gradient(40% 70% at 80% 30%, rgba(226,220,206,.35), transparent 60%),
    radial-gradient(40% 60% at 15% 70%, rgba(110,104,94,.22), transparent 60%),
    #08080c;
  border: .5px solid var(--line);
  overflow: hidden;
  display:grid; grid-template-columns: 1fr 380px; gap: 64px; align-items: end;
}
.apply h2 {
  font-family: 'Veld Serif', serif; font-weight: 300;
  font-size: clamp(40px, 5vw, 80px); line-height: 0.98;
  letter-spacing: -0.03em; margin: 0; color: var(--ink-100);
  max-width: 720px;
}
.apply .form {
  display:flex; flex-direction: column; gap: 12px;
}
.apply .form input, .apply .form select {
  appearance: none;
  background: rgba(15,15,20,0.6);
  border: .5px solid var(--line);
  color: var(--ink-100);
  padding: 14px 18px; border-radius: 999px;
  font-size: 14px;
  font-family: inherit;
  backdrop-filter: blur(6px);
}
.apply .form input::placeholder { color: var(--ink-40); }
.apply .form input:focus, .apply .form select:focus { outline: none; border-color: rgba(226,220,206,.5); }
.apply .form .submit {
  margin-top: 4px;
  background: linear-gradient(95deg, var(--iri-a), var(--iri-b) 60%, var(--iri-c));
  color: #0a0a0e;
  padding: 14px 22px;
  border-radius: 999px; border: none; cursor: pointer;
  font-weight: 500; font-size: 14px;
  display:flex; justify-content: space-between; align-items: center;
}

/* ============ Footer ============ */
.foot {
  padding: 48px 40px 32px;
  display:grid; grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 48px;
  border-top: .5px solid var(--line);
  font-size: 13px; color: var(--ink-60);
}
.foot h5 { font-size: 11px; text-transform: uppercase; letter-spacing: 0.16em; color: var(--ink-40); margin: 0 0 16px; font-weight: 500; }
.foot ul { list-style: none; padding: 0; margin: 0; display:flex; flex-direction: column; gap: 10px; }
.foot a { color: var(--ink-60); text-decoration: none; }
.foot a:hover { color: var(--ink-100); }
.foot .brand .logo {
  width: 40px; height: 40px; border-radius: 50%;
  background:
    radial-gradient(circle at 35% 35%, var(--iri-a), var(--iri-b) 55%, var(--iri-c) 85%),
    #0a0a0e;
  margin-bottom: 16px;
}
.foot-bot {
  padding: 20px 40px; border-top: .5px solid var(--line);
  display:flex; justify-content: space-between; align-items: center;
  font-size: 12px; color: var(--ink-40);
}

/* ============ Tweaks-driven variants ============ */
/* Variant A: centered (default) */
/* Variant B: left-aligned with right video */
.hero[data-variant="B"] .hero-center { text-align: left; align-self: flex-start; margin-left: 0; max-width: 760px; margin-bottom: 14vh; }
.hero[data-variant="B"] .hero-ctas { justify-content: flex-start; }
.hero[data-variant="B"] .cine video,
.hero[data-variant="B"] .cine .cine-fallback {
  left: 35%; width: 80%; top: -10%;
}
.hero[data-variant="B"] .play-badge { left: 70%; top: 18%; }

/* Variant C: type-forward / split */
.hero[data-variant="C"] .cine .cine-fallback,
.hero[data-variant="C"] .cine video {
  left: 0; width: 100%; top: 0; height: 100%;
  filter: blur(60px) saturate(120%) brightness(0.7);
  opacity: 0.7;
}
.hero[data-variant="C"] .hero-h { font-size: clamp(72px, 10vw, 160px); }
.hero[data-variant="C"] .play-badge { top: 14%; }

/* corner tags hidden on B */
.hero[data-variant="B"] .corner-tag.tr,
.hero[data-variant="B"] .corner-tag.br { opacity: 0.6; }

/* ============ Inline blend switcher ============ */
.blend-pill {
  position: absolute;
  top: 24px; right: 24px;
  z-index: 5;
  display: flex; gap: 2px;
  padding: 4px;
  background: rgba(8,8,10,0.55);
  border: .5px solid var(--line);
  border-radius: 999px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 4px 24px rgba(0,0,0,.3);
}
.blend-pill button {
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--ink-60);
  font: 500 11px/1 'Inter Tight', sans-serif;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 7px 12px;
  border-radius: 999px;
  cursor: pointer;
  transition: color .2s ease, background .2s ease;
}
.blend-pill button:hover { color: var(--ink-100); }
.blend-pill button.on {
  color: var(--ink-100);
  background: rgba(255,255,255,.07);
  box-shadow: inset 0 0 0 .5px rgba(255,255,255,.08);
}

/* ============ Motion ============ */
@keyframes rise {
  0%   { opacity: 0; transform: translate3d(0, 28px, 0); filter: blur(8px); }
  60%  { filter: blur(0); }
  100% { opacity: 1; transform: translate3d(0,0,0); filter: blur(0); }
}
@keyframes fade {
  0%   { opacity: 0; }
  100% { opacity: 1; }
}
@keyframes shimmer {
  0%   { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}
@keyframes line-grow {
  0%   { transform: scaleX(0); opacity: 0; }
  100% { transform: scaleX(1); opacity: 1; }
}

/* Hero entrance — staggered */
.hero-eyebrow { animation: rise .9s cubic-bezier(.2,.7,.2,1) both; animation-delay: .1s; }
.hero-h       { animation: rise 1.1s cubic-bezier(.2,.7,.2,1) both; animation-delay: .25s; }
.hero-sub     { animation: rise  .9s cubic-bezier(.2,.7,.2,1) both; animation-delay: .55s; }
.hero-ctas    { animation: rise  .8s cubic-bezier(.2,.7,.2,1) both; animation-delay: .75s; }
.corner-tag   { animation: fade 1.2s ease both; animation-delay: 1.0s; }
.corner-tag.tr { animation-delay: 1.15s; }
.corner-tag.bl { animation-delay: 1.30s; }
.corner-tag.br { animation-delay: 1.45s; }
.hero-foot    { animation: fade 1s ease both; animation-delay: 1.2s; }
.play-badge   { animation: fade 1.2s ease both; animation-delay: .9s; }
.cine .cine-fallback { animation: fade 1.6s ease both, drift 22s ease-in-out infinite; }

/* Iridescent text shimmer — gentle, slow */
.hero-h .iri {
  background: linear-gradient(95deg,
    var(--ink-100) 0%,
    var(--ink-100) 22%,
    var(--iri-a) 45%,
    var(--iri-b) 55%,
    var(--ink-100) 75%,
    rgba(255,255,255,0.4) 100%);
  background-size: 220% 100%;
  background-clip: text; -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: shimmer 9s linear infinite;
}
.sec-h .iri {
  background: linear-gradient(95deg, var(--ink-100), var(--iri-a) 55%, var(--iri-b) 75%, var(--ink-100) 100%);
  background-size: 220% 100%;
  background-clip: text; -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 10s linear infinite;
}

/* Scroll-reveal — opt-in via .reveal class, flipped to .in-view by JS */
.reveal { opacity: 0; transform: translate3d(0, 24px, 0); filter: blur(6px); transition: opacity .9s cubic-bezier(.2,.7,.2,1), transform .9s cubic-bezier(.2,.7,.2,1), filter .9s ease; }
.reveal.in-view { opacity: 1; transform: none; filter: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }

/* Nav fades in subtly */
.nav { animation: fade .6s ease both; }
.nav-status .pulse { animation: pulse 2.2s ease-out infinite; }

@media (max-width: 1180px) {
  .nav-status, .nav-clock { display: none; }
}
@media (max-width: 980px) {
  .nav-pill { display:none; }
  .play-badge { display: none; }
  .hero { margin: 12px; padding: 0; }
  .hero-frame { padding: 32px 24px; }
  .corner-tag { display:none; }
  .hero-foot { left: 24px; right: 24px; bottom: 20px; }
  .wrap { padding: 0 24px; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .services { grid-template-columns: 1fr; }
  .cases { grid-template-columns: 1fr; }
  .dual { grid-template-columns: 1fr; }
  .process { grid-template-columns: 1fr; gap: 32px; }
  .apply { grid-template-columns: 1fr; padding: 48px 28px; margin: 0 12px 12px; }
  .foot { grid-template-columns: 1fr 1fr; }
}
