/* ============ TOKENS ============ */
:root {
  /* Light Vanilla base + Midnight Navy ink (inverted / light theme) */
  --bg: #FFF7E6;
  --bg-soft: #F4EBD4;
  --surface: #FFFDF8;
  --line: rgba(10,18,42,0.12);
  --line-strong: rgba(10,18,42,0.22);
  --ink: #0A122A;
  --ink-dim: #454d63;
  --ink-muted: #767c8e;

  /* navy + vanilla + a warm coral accent for pop (hero word, CTAs, highlights) */
  --accent: #EE5A2D;
  --accent-2: #F2974C;
  --accent-3: #43507a;
  --ok: #2e9e69;          /* status green — dashboard only */
  --accent-ink: #0A122A;  /* navy text/glyphs on coral fills */

  --radius: 12px;
  --radius-lg: 20px;
  --maxw: 1280px;
  --pad: clamp(20px, 4vw, 56px);

  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Hanken Grotesk", system-ui, sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, monospace;
  --font-serif: "Fraunces", Georgia, serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
html { scroll-behavior: smooth; }
::selection { background: var(--accent); color: var(--accent-ink); }

/* film grain — tactile overlay, the anti-flat-AI signal */
body::after {
  content: ""; position: fixed; inset: 0; z-index: 9999; pointer-events: none;
  opacity: 0.045; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.82' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ============ NAV ============ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  backdrop-filter: blur(16px);
  background: color-mix(in oklab, var(--bg) 70%, transparent);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  max-width: var(--maxw); margin: 0 auto; padding: 14px var(--pad);
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-weight: 700; font-size: 18px;
  letter-spacing: -0.02em;
}
.logo-mark {
  width: 30px; height: 30px; border-radius: 8px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  display: grid; place-items: center; color: var(--accent-ink);
  font-family: var(--font-mono); font-weight: 700; font-size: 14px;
  box-shadow: 0 0 0 1px var(--line-strong), 0 8px 24px -8px var(--accent);
}
/* real brand logo (wordmark) + isotipo */
.logo-full { height: 42px; width: auto; display: block; }
.logo-iso { height: 40px; width: auto; display: none; }
@media (max-width: 560px) {
  .logo-full { display: none; }
  .logo-iso { display: block; }
}
.footer-brand { display: flex; align-items: center; gap: 14px; }
.footer-iso { height: 50px; width: auto; display: block; }
.footer-name { font-family: var(--font-display); font-weight: 600; font-size: 19px; color: var(--ink); letter-spacing: -0.01em; line-height: 1.05; }
.footer-tag { font-family: var(--font-mono); font-size: 12px; color: var(--ink-muted); margin-top: 3px; }
.nav-links { display: flex; gap: 28px; align-items: center; font-size: 14px; color: var(--ink-dim); }
.nav-links a { transition: color 0.2s; }
.nav-links a:hover { color: var(--ink); }
.nav-actions { display: flex; gap: 10px; align-items: center; }
.lang-toggle {
  display: flex; gap: 2px; padding: 3px;
  background: var(--surface); border: 1px solid var(--line); border-radius: 999px;
  font-family: var(--font-mono); font-size: 11px;
}
.lang-toggle button {
  border: 0; background: transparent; color: var(--ink-dim);
  padding: 5px 10px; border-radius: 999px; transition: all 0.2s;
}
.lang-toggle button.active { background: var(--ink); color: var(--bg); }

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 20px; border-radius: 8px; border: 1px solid var(--line-strong);
  background: transparent; color: var(--ink); font-weight: 500; font-size: 14px;
  transition: all 0.2s; white-space: nowrap;
}
.btn:hover { background: var(--surface); border-color: var(--ink-dim); }
.btn-primary {
  background: var(--ink); color: var(--bg);
  border-color: var(--ink);
  box-shadow: 0 0 0 0 var(--ink);
}
.btn-primary:hover {
  background: var(--ink); color: var(--bg);
  box-shadow: 0 14px 30px -12px rgba(10,18,42,0.55);
  transform: translateY(-1px);
}
.btn-arrow { transition: transform 0.2s; }
.btn:hover .btn-arrow { transform: translate(2px, -2px); }

@media (max-width: 880px) {
  .nav-links { display: none; }
}

/* ============ SECTION SHELL ============ */
section { padding: clamp(80px, 12vw, 140px) var(--pad); position: relative; }
.container { max-width: var(--maxw); margin: 0 auto; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.08em;
  color: var(--ink-dim); text-transform: uppercase;
  padding: 6px 12px 6px 11px; border-radius: 6px;
  background: transparent; border: 1px solid var(--line);
}
.eyebrow .dot {
  width: 6px; height: 6px; border-radius: 1px; background: var(--accent);
  box-shadow: 0 0 10px var(--accent);
  animation: pulse 2.4s infinite;
}
@keyframes pulse { 50% { opacity: 0.4; } }

h1, h2 { font-family: var(--font-display); font-optical-sizing: auto; font-weight: 600; letter-spacing: -0.02em; line-height: 1.0; margin: 0; }
h2 { font-size: clamp(40px, 6vw, 74px); }
/* card/UI titles stay crisp grotesk — serif is reserved for big editorial moments */
h3 { font-family: var(--font-body); font-weight: 600; font-size: clamp(19px, 2vw, 24px); letter-spacing: -0.01em; line-height: 1.25; margin: 0; }

.section-head {
  display: flex; flex-direction: column; gap: 18px; margin-bottom: 64px;
  max-width: 900px;
}
.section-head p { color: var(--ink-dim); font-size: 18px; max-width: 620px; margin: 0; }

/* ============ HERO ============ */
.hero {
  min-height: 100vh; padding-top: 120px;
  display: flex; flex-direction: column; justify-content: center;
  position: relative; overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.hero-bg .blob { position: absolute; border-radius: 50%; filter: blur(120px); opacity: 0.4; }
.hero-bg .b1 { width: 520px; height: 520px; background: var(--accent); top: -140px; right: -120px; opacity: 0.07; }
.hero-bg .b2 { width: 460px; height: 460px; background: var(--accent-2); bottom: -160px; left: -100px; opacity: 0.06; }
.hero-bg .b3 { width: 320px; height: 320px; background: var(--accent-3); top: 40%; left: 50%; opacity: 0; }
.hero-bg .blob.b1, .hero-bg .blob.b2, .hero-bg .blob.b3 { animation: blobMove 18s ease-in-out infinite; }
.hero-bg .blob.b2 { animation-duration: 22s; animation-direction: reverse; }
.hero-bg .blob.b3 { animation-duration: 26s; }
@keyframes blobMove {
  0%, 100% { transform: translate(0,0) scale(1); }
  33% { transform: translate(40px,-30px) scale(1.1); }
  66% { transform: translate(-30px,30px) scale(0.95); }
}
.hero-grid-bg {
  position: absolute; inset: 0; z-index: 0; opacity: 0.5;
  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 75% 55% at 30% 45%, #000 0%, transparent 78%);
}

/* one slow, deliberate light sweep — the single hero motion */
.hero-scan {
  position: absolute; left: 0; right: 0; top: 0; height: 160px; z-index: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, color-mix(in oklab, var(--accent) 8%, transparent), transparent);
  animation: heroScan 11s ease-in-out infinite;
}
@keyframes heroScan {
  0% { transform: translateY(-12vh); opacity: 0; }
  18% { opacity: 1; }
  82% { opacity: 1; }
  100% { transform: translateY(94vh); opacity: 0; }
}

/* hero: 2-column (copy + product visual); stats span full width below */
.hero-copy { min-width: 0; }
.hero-visual { display: none; }
@media (min-width: 1024px) {
  .hero-inner {
    display: grid;
    grid-template-columns: 1.25fr 0.82fr;
    column-gap: clamp(28px, 3.5vw, 56px);
    align-items: center;
  }
  .hero-copy { grid-column: 1; }
  .hero-visual { grid-column: 2; display: block; }
  .hero-stats { grid-column: 1 / -1; }
}

/* orchestrated page-load reveal */
.hero-copy > *, .hero-visual, .hero-stats { animation: heroRise 0.9s cubic-bezier(.2,.8,.2,1) backwards; }
.hero-copy > *:nth-child(1) { animation-delay: 0.05s; }
.hero-copy > *:nth-child(2) { animation-delay: 0.15s; }
.hero-copy > *:nth-child(3) { animation-delay: 0.27s; }
.hero-copy > *:nth-child(4) { animation-delay: 0.39s; }
.hero-visual { animation-delay: 0.34s; }
.hero-stats { animation-delay: 0.5s; }
@keyframes heroRise { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }

/* hero product visual — floating app mockup in brand palette */
.hero-visual { position: relative; }
.hv-glow {
  position: absolute; inset: 4% -8% 8% 6%; z-index: 0;
  background: radial-gradient(circle at 62% 46%, color-mix(in oklab, var(--accent) 26%, transparent), transparent 64%);
  filter: blur(28px);
}
.hv-photo {
  position: relative; z-index: 1;
  width: 100%; max-width: 560px; margin-left: auto;
  border-radius: 18px; overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 40px 80px -38px rgba(10,18,42,0.55), 0 4px 14px -8px rgba(10,18,42,0.25);
  animation: hvFloat 7s ease-in-out infinite;
}
.hv-photo img { width: 100%; height: auto; display: block; }
.hv-float {
  position: absolute; left: -22px; bottom: 30px; z-index: 2;
  display: flex; align-items: center; gap: 11px;
  padding: 12px 15px; border-radius: 14px;
  background: var(--surface); border: 1px solid var(--line);
  box-shadow: 0 22px 44px -22px rgba(10,18,42,0.5);
  animation: hvFloat2 6s ease-in-out infinite;
}
.hv-float-ic {
  width: 36px; height: 36px; border-radius: 10px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: var(--accent-ink); display: grid; place-items: center;
}
.hv-float-ic svg { width: 18px; height: 18px; }
.hv-float-t { font-weight: 600; font-size: 13px; color: var(--ink); }
.hv-float-d { font-family: var(--font-mono); font-size: 10px; color: var(--ink-muted); text-transform: uppercase; letter-spacing: 0.04em; }
@keyframes hvFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
@keyframes hvFloat2 { 0%,100% { transform: translateY(0); } 50% { transform: translateY(9px); } }
@keyframes hvDraw { to { stroke-dashoffset: 0; } }
@media (prefers-reduced-motion: reduce) {
  .hero-scan, .hv-photo { animation: none; }
  .hero-copy > *, .hero-visual, .hero-stats { animation: none; }
}

.hero-inner { position: relative; z-index: 1; max-width: var(--maxw); margin: 0 auto; width: 100%; }
.hero h1 {
  font-size: clamp(34px, 4.7vw, 64px);
  font-weight: 600; letter-spacing: -0.02em; line-height: 1.02;
  margin: 24px 0 26px;
  overflow-wrap: break-word;
}
/* title stays in ink; emphasis comes from the italic serif tail */
.hero h1 .accent { color: var(--ink); }
.hero h1 .serif { font-family: var(--font-serif); font-style: italic; font-weight: 500; }
.hero-sub {
  font-size: clamp(17px, 1.6vw, 21px); color: var(--ink-dim);
  max-width: 580px; margin: 0 0 40px; line-height: 1.5;
}
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.hero-stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 32px; margin-top: 80px; padding-top: 32px;
  border-top: 1px solid var(--line);
}
.hero-stat .num {
  font-family: var(--font-display); font-size: clamp(26px, 3vw, 36px);
  font-weight: 600; letter-spacing: -0.03em; color: var(--ink);
}
.hero-stat .lbl {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.05em;
  text-transform: uppercase; color: var(--ink-muted); margin-top: 4px;
}
@media (max-width: 720px) {
  .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}

/* Hero animated background */
.hero-video-bg {
  position: absolute; inset: 0; pointer-events: none; overflow: hidden; z-index: 0;
}
.hero-video-bg svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-particles { position: absolute; inset: 0; pointer-events: none; }
.hero-particle {
  position: absolute; width: 3px; height: 3px; border-radius: 50%;
  background: var(--accent); opacity: 0;
  animation: particleFloat 8s linear infinite;
  box-shadow: 0 0 8px var(--accent);
}
@keyframes particleFloat {
  0% { transform: translateY(100vh) scale(0); opacity: 0; }
  10% { opacity: 0.8; }
  90% { opacity: 0.8; }
  100% { transform: translateY(-10vh) scale(1); opacity: 0; }
}
@keyframes dashFlow { to { stroke-dashoffset: -200; } }

/* ============ SERVICES ============ */
.services { background: var(--bg); }
.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.service {
  position: relative; padding: 36px;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden; transition: all 0.3s;
  min-height: 280px; display: flex; flex-direction: column;
}
.service:hover { border-color: var(--line-strong); transform: translateY(-2px); }
.service::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--service-glow, var(--accent)), transparent);
  opacity: 0; transition: opacity 0.3s;
}
.service:hover::before { opacity: 1; }
.service-icon {
  width: 56px; height: 56px; border-radius: 14px;
  background: var(--bg-soft); border: 1px solid var(--line);
  display: grid; place-items: center; margin-bottom: 22px;
  color: var(--service-glow, var(--accent));
}
.service-icon svg { width: 26px; height: 26px; }
.service h3 { margin-bottom: 10px; }
.service p { color: var(--ink-dim); font-size: 15px; margin: 0 0 20px; }
.service-tags {
  margin-top: auto; display: flex; gap: 6px; flex-wrap: wrap;
  font-family: var(--font-mono); font-size: 11px;
}
.service-tags span {
  padding: 4px 9px; border-radius: 6px;
  background: var(--bg-soft); color: var(--ink-dim);
  border: 1px solid var(--line);
}
@media (max-width: 720px) { .services-grid { grid-template-columns: 1fr; } }

/* ============ PORTFOLIO ============ */
.portfolio { background: var(--bg-soft); }
/* ============ PORTFOLIO CAROUSEL ============ */
.portfolio-carousel {
  position: relative; margin: 32px calc(var(--pad) * -1) 0;
}
.pc-track {
  display: flex; gap: 28px;
  overflow-x: auto; scroll-snap-type: x mandatory;
  scroll-padding-left: max(var(--pad), calc((100vw - var(--maxw)) / 2));
  padding: 16px max(var(--pad), calc((100vw - var(--maxw)) / 2)) 32px;
  scrollbar-width: none;
}
.pc-track::-webkit-scrollbar { display: none; }

.pc-slide {
  flex: 0 0 min(64vw, 680px);
  scroll-snap-align: start;
  cursor: pointer;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface);
  transition: transform 0.45s cubic-bezier(.2,.8,.2,1), opacity 0.4s, border-color 0.3s;
  opacity: 0.55;
  transform: scale(0.95);
}
.pc-slide.is-active {
  opacity: 1;
  transform: scale(1);
  border-color: color-mix(in oklab, var(--slide-accent, var(--accent)) 35%, var(--line));
  box-shadow: 0 24px 60px -28px color-mix(in oklab, var(--slide-accent, var(--accent)) 40%, transparent);
}
.pc-slide:hover .pc-visual img { transform: scale(1.02); }

.pc-visual {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--bg-soft);
  border-bottom: 1px solid var(--line);
}
.pc-visual img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: top center;
  display: block;
  transition: transform 0.6s cubic-bezier(.2,.8,.2,1);
}
.pc-visual .pv { width: 100%; height: 100%; }
.pc-shine {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.35) 100%);
  pointer-events: none;
}

.pc-info { padding: 22px 26px 28px; }
.pc-info .meta {
  display: flex; gap: 8px; align-items: center;
  font-family: var(--font-mono); font-size: 11px; color: var(--ink-muted);
  text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 10px;
}
.pc-info .meta .year { color: var(--slide-accent, var(--accent)); }
.pc-info h3 { font-size: 26px; margin-bottom: 8px; }
.pc-info p { font-size: 15px; color: var(--ink-dim); margin: 0; max-width: 70ch; }

.pc-views {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-top: 18px;
}
.pc-view-tab {
  font-family: var(--font-mono); font-size: 11px;
  text-transform: uppercase; letter-spacing: 0.06em;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: transparent;
  color: var(--ink-dim);
  cursor: pointer;
  transition: all 0.2s ease;
}
.pc-view-tab:hover {
  color: var(--ink);
  border-color: color-mix(in oklab, var(--slide-accent, var(--accent)) 50%, var(--line-strong));
}
.pc-view-tab.is-active {
  color: var(--bg);
  background: var(--slide-accent, var(--accent));
  border-color: var(--slide-accent, var(--accent));
}

.pc-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 3;
  width: 48px; height: 48px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--line-strong);
  color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
  backdrop-filter: blur(8px);
}
.pc-arrow:hover { background: var(--surface-2, var(--surface)); border-color: var(--accent); color: var(--accent); }
.pc-arrow:disabled { opacity: 0.3; cursor: not-allowed; }
.pc-prev { left: max(var(--pad), calc((100vw - var(--maxw)) / 2)); }
.pc-next { right: max(var(--pad), calc((100vw - var(--maxw)) / 2)); }

.pc-dots {
  display: flex; gap: 10px; justify-content: center;
  margin-top: 8px;
}
.pc-dot {
  width: 8px; height: 8px; border-radius: 999px;
  background: var(--line-strong); border: none; padding: 0;
  cursor: pointer;
  transition: all 0.25s;
}
.pc-dot.is-active {
  width: 28px;
  background: var(--accent);
}
.pc-dot:hover { background: var(--accent); }

@media (max-width: 880px) {
  .pc-slide { flex-basis: 88vw; }
  .pc-arrow { display: none; }
  .pc-info h3 { font-size: 22px; }
}

.pv {
  width: 100%; height: 100%; position: relative; overflow: hidden;
  background: var(--bg-soft);
}
.pv-icon {
  position: absolute; inset: 0; z-index: 2;
  display: flex; align-items: center; justify-content: center;
  color: var(--ink);
  opacity: 0.92;
  filter: drop-shadow(0 2px 12px rgba(0, 0, 0, 0.35));
  transition: transform 0.35s ease;
  pointer-events: none;
}
.project:hover .pv-icon { transform: scale(1.06); }
.pv-1 {
  background:
    radial-gradient(circle at 70% 30%, color-mix(in oklab, var(--accent) 80%, transparent) 0%, transparent 55%),
    radial-gradient(circle at 30% 70%, color-mix(in oklab, var(--accent-2) 80%, transparent) 0%, transparent 55%),
    var(--bg-soft);
}
.pv-1::after {
  content: ""; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 100% 24px;
}
.pv-2 { background: var(--bg-soft); }
.pv-2::before {
  content: ""; position: absolute; inset: -20px;
  background:
    conic-gradient(from 45deg, var(--accent) 0deg, transparent 60deg, var(--accent-2) 180deg, transparent 240deg, var(--accent-3) 360deg);
  filter: blur(30px); opacity: 0.5;
}
.pv-2::after {
  content: ""; position: absolute; inset: 0;
  background: repeating-linear-gradient(45deg, transparent 0 20px, rgba(0,0,0,0.3) 20px 21px);
}
.pv-3 {
  background: linear-gradient(135deg, color-mix(in oklab, var(--accent-3) 60%, var(--bg-soft)) 0%, var(--bg-soft) 70%);
}
.pv-3::after {
  content: "";
  position: absolute; left: 50%; top: 50%; width: 70%; aspect-ratio: 1;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, var(--accent) 0%, transparent 60%);
  opacity: 0.7;
}
.pv-4 {
  background: var(--bg-soft);
  background-image:
    linear-gradient(var(--accent) 1px, transparent 1px),
    linear-gradient(90deg, var(--accent-2) 1px, transparent 1px);
  background-size: 28px 28px;
  background-position: 0 0;
}
.pv-4::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 50%, transparent, var(--bg-soft));
}
.pv-5 {
  background:
    linear-gradient(120deg, color-mix(in oklab, var(--accent-2) 70%, var(--bg-soft)), color-mix(in oklab, var(--accent) 50%, var(--bg-soft)));
}
.pv-5::after {
  content: ""; position: absolute; inset: 0;
  background: repeating-radial-gradient(circle at 30% 30%, transparent 0 30px, rgba(0,0,0,0.25) 30px 31px);
  mix-blend-mode: overlay;
}

/* ============ PROCESS ============ */
.process { background: var(--bg); }
.process-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.step {
  padding: 36px 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative; min-height: 280px;
  display: flex; flex-direction: column;
  transition: background 0.3s;
}
.step:hover { background: var(--surface); }
.step-num {
  font-family: var(--font-mono); font-size: 12px;
  color: var(--ink-muted); margin-bottom: 60px; letter-spacing: 0.04em;
}
.step-num span { color: var(--accent); }
.step h3 { margin-bottom: 12px; }
.step p { color: var(--ink-dim); font-size: 14px; margin: 0; }
@media (max-width: 880px) { .process-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .process-grid { grid-template-columns: 1fr; } }

/* ============ ABOUT ============ */
.about { background: var(--bg-soft); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-text h2 { margin-bottom: 28px; }
.about-text p { color: var(--ink-dim); font-size: 17px; margin: 0 0 16px; max-width: 520px; }
.about-text .quote {
  margin-top: 36px; padding: 24px;
  background: var(--surface); border-left: 3px solid var(--accent);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-family: var(--font-serif); font-size: 22px; font-style: italic;
  color: var(--ink); line-height: 1.4;
}
.team { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.member {
  aspect-ratio: 3/4; border-radius: var(--radius);
  background: var(--surface); border: 1px solid var(--line);
  position: relative; overflow: hidden;
  padding: 18px; display: flex; flex-direction: column; justify-content: flex-end;
}
.member-avatar { position: absolute; inset: 0; opacity: 0.85; }
.member-avatar.a1 { background: radial-gradient(circle at 50% 35%, color-mix(in oklab, var(--accent) 80%, var(--surface)) 0%, var(--surface) 70%); }
.member-avatar.a2 { background: radial-gradient(circle at 50% 35%, color-mix(in oklab, var(--accent-2) 80%, var(--surface)) 0%, var(--surface) 70%); }
.member-avatar.a3 { background: radial-gradient(circle at 50% 35%, color-mix(in oklab, var(--accent-3) 80%, var(--surface)) 0%, var(--surface) 70%); }
.member-avatar.a4 { background: radial-gradient(circle at 50% 35%, color-mix(in oklab, var(--accent) 60%, var(--accent-2)) 0%, var(--surface) 70%); }
.member-avatar::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, var(--surface) 100%);
}
.member-info { position: relative; }
.member-info .name { font-family: var(--font-display); font-weight: 600; font-size: 15px; }
.member-info .role { font-family: var(--font-mono); font-size: 11px; color: var(--ink-dim); text-transform: uppercase; letter-spacing: 0.04em; }
@media (max-width: 880px) { .about-grid { grid-template-columns: 1fr; gap: 48px; } }

/* studio model — honest lean-studio panel (replaces fake team grid) */
.studio {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 32px;
  display: flex; flex-direction: column; gap: 22px;
}
.studio-lead { display: flex; align-items: center; gap: 14px; }
.studio-mark {
  width: 48px; height: 48px; border-radius: 12px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  display: grid; place-items: center; color: var(--accent-ink);
  font-family: var(--font-mono); font-weight: 600; font-size: 20px;
  box-shadow: 0 0 0 1px var(--line-strong), 0 10px 30px -10px var(--accent);
}
.studio-name { font-family: var(--font-body); font-weight: 600; font-size: 16px; color: var(--ink); }
.studio-role {
  font-family: var(--font-mono); font-size: 11px; color: var(--ink-muted);
  text-transform: uppercase; letter-spacing: 0.04em; margin-top: 3px;
}
.studio-desc { color: var(--ink-dim); font-size: 15px; line-height: 1.6; margin: 0; }
.studio-disciplines { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.studio-disciplines span {
  font-family: var(--font-mono); font-size: 12px; color: var(--ink);
  padding: 11px 13px; border: 1px solid var(--line); border-radius: 10px;
  background: var(--bg-soft); display: flex; align-items: center; gap: 9px;
}
.studio-disciplines span::before {
  content: ""; width: 5px; height: 5px; border-radius: 1px;
  background: var(--accent); flex-shrink: 0;
}
@media (max-width: 520px) { .studio-disciplines { grid-template-columns: 1fr; } }

/* ============ STACK ============ */
.stack { background: var(--bg); }
.stack-marquee {
  margin: 0 calc(var(--pad) * -1);
  overflow: hidden; padding: 24px 0;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  background: var(--surface);
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}
.stack-track {
  display: flex; gap: 48px; width: max-content;
  animation: marquee 40s linear infinite;
}
@keyframes marquee { to { transform: translateX(-50%); } }
.stack-item {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-display); font-weight: 600; font-size: 22px;
  color: var(--ink-dim); white-space: nowrap;
}
.stack-item .pill { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); }
.stack-categories {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
  margin-top: 56px;
}
.stack-cat {
  padding: 24px; border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--surface);
}
.stack-cat h4 {
  margin: 0 0 14px; font-family: var(--font-mono); font-size: 11px;
  color: var(--ink-muted); text-transform: uppercase; letter-spacing: 0.06em;
}
.stack-cat ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.stack-cat li { font-size: 15px; color: var(--ink); display: flex; align-items: center; gap: 10px; }
.stack-cat li::before { content: ""; width: 4px; height: 4px; background: var(--accent); border-radius: 50%; }
@media (max-width: 720px) { .stack-categories { grid-template-columns: 1fr; } }

/* ============ TESTIMONIALS ============ */
.testimonials { background: var(--bg-soft); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.testimonial {
  padding: 32px; background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  display: flex; flex-direction: column;
}
.testimonial .quote-mark {
  font-family: var(--font-serif); font-size: 60px; line-height: 0.5;
  color: var(--accent); margin-bottom: 12px;
}
.testimonial p {
  color: var(--ink); font-size: 16px; line-height: 1.55; margin: 0 0 24px;
  flex: 1;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.ta-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  display: grid; place-items: center; color: var(--accent-ink);
  font-family: var(--font-display); font-weight: 600; font-size: 14px;
}
.ta-info .name { font-weight: 500; font-size: 14px; }
.ta-info .company { font-family: var(--font-mono); font-size: 11px; color: var(--ink-muted); text-transform: uppercase; }
@media (max-width: 880px) { .testimonials-grid { grid-template-columns: 1fr; } }

/* ============ FAQ ============ */
.faq { background: var(--bg); }
.faq-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 64px; }
.faq-item { border-bottom: 1px solid var(--line); padding: 22px 0; }
.faq-q {
  width: 100%; background: transparent; border: 0; color: var(--ink);
  font-family: var(--font-display); font-size: 18px; font-weight: 500;
  text-align: left; cursor: pointer; display: flex;
  justify-content: space-between; align-items: center; gap: 16px;
  padding: 0; line-height: 1.4;
}
.faq-q .plus {
  width: 24px; height: 24px; border: 1px solid var(--line-strong); border-radius: 50%;
  display: grid; place-items: center; flex-shrink: 0;
  transition: all 0.2s; font-size: 14px;
}
.faq-item.open .plus { background: var(--accent); color: var(--accent-ink); border-color: var(--accent); transform: rotate(45deg); }
.faq-a {
  max-height: 0; overflow: hidden; color: var(--ink-dim); font-size: 15px;
  transition: max-height 0.3s, padding 0.3s;
}
.faq-item.open .faq-a { max-height: 240px; padding-top: 14px; }
@media (max-width: 880px) { .faq-grid { grid-template-columns: 1fr; gap: 32px; } }

/* ============ CTA ============ */
.cta { background: var(--bg); padding: clamp(80px, 10vw, 140px) var(--pad); }
.cta-card {
  max-width: var(--maxw); margin: 0 auto;
  padding: clamp(40px, 5.5vw, 76px) clamp(32px, 5vw, 68px);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 20% 30%, color-mix(in oklab, var(--accent) 16%, transparent), transparent 55%),
    radial-gradient(circle at 80% 70%, color-mix(in oklab, var(--accent-2) 16%, transparent), transparent 55%),
    var(--surface);
  border: 1px solid var(--line);
  position: relative; overflow: hidden;
  display: grid; grid-template-columns: 1fr; gap: 36px; align-items: center;
}
@media (min-width: 900px) {
  .cta-card { grid-template-columns: 1.05fr 0.95fr; gap: clamp(32px, 5vw, 64px); }
}
.cta-card-media { display: none; }
@media (min-width: 900px) { .cta-card-media { display: block; } }
.cta-card-media img {
  width: 100%; height: auto; display: block;
  border-radius: 16px; border: 1px solid var(--line);
  box-shadow: 0 30px 60px -36px rgba(10,18,42,0.5);
}
.cta-card h2 { font-size: clamp(34px, 4.6vw, 62px); margin-bottom: 24px; }
.cta-card h2 .serif { font-family: var(--font-serif); font-style: italic; font-weight: 400; }
.cta-card p { color: var(--ink-dim); font-size: 18px; max-width: 540px; margin: 0 0 36px; }
.cta-card .btn-primary { padding: 14px 24px; font-size: 15px; }

/* ============ FOOTER ============ */
footer {
  padding: 60px var(--pad) 40px;
  border-top: 1px solid var(--line);
  background: var(--bg);
}
.footer-inner {
  max-width: var(--maxw); margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  gap: 24px; flex-wrap: wrap;
  font-family: var(--font-mono); font-size: 12px; color: var(--ink-muted);
}
.footer-inner a:hover { color: var(--ink); }

/* ============ MODAL ============ */
.modal-backdrop {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(0,0,0,0.7); backdrop-filter: blur(8px);
  display: none; align-items: center; justify-content: center;
  padding: 20px;
}
.modal-backdrop.open { display: flex; animation: fadein 0.2s; }
@keyframes fadein { from { opacity: 0; } }
.modal {
  width: 100%; max-width: 580px;
  background: var(--bg-soft); border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px; max-height: 90vh; overflow-y: auto;
  position: relative;
  animation: slideup 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}
@keyframes slideup { from { transform: translateY(20px); opacity: 0; } }
.modal-close {
  position: absolute; top: 20px; right: 20px;
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--surface); border: 1px solid var(--line);
  color: var(--ink); display: grid; place-items: center;
}
.modal h3 { font-size: 28px; margin-bottom: 8px; }
.modal-sub { color: var(--ink-dim); margin: 0 0 24px; }
.modal-quick { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 28px; }
.modal-quick a {
  display: flex; align-items: center; gap: 10px;
  padding: 14px; border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--surface); transition: all 0.2s;
  font-size: 14px;
}
.modal-quick a:hover { border-color: var(--accent); background: var(--bg-soft); }
.modal-quick a svg { color: var(--accent); }
.modal-or {
  text-align: center; margin: 0 0 24px;
  font-family: var(--font-mono); font-size: 11px; color: var(--ink-muted);
  text-transform: uppercase; letter-spacing: 0.06em;
  display: flex; align-items: center; gap: 14px;
}
.modal-or::before, .modal-or::after { content: ""; flex: 1; height: 1px; background: var(--line); }
.form-row { margin-bottom: 14px; }
.form-row label {
  display: block; font-family: var(--font-mono); font-size: 11px;
  color: var(--ink-muted); text-transform: uppercase; letter-spacing: 0.06em;
  margin-bottom: 6px;
}
.form-row input, .form-row textarea, .form-row select {
  width: 100%; padding: 12px 14px;
  background: var(--surface); border: 1px solid var(--line); border-radius: 10px;
  color: var(--ink); font-family: inherit; font-size: 14px;
  transition: border-color 0.2s;
}
.form-row input:focus, .form-row textarea:focus, .form-row select:focus {
  outline: 0; border-color: var(--accent);
}
.form-row textarea { resize: vertical; min-height: 100px; }
.form-submit {
  width: 100%; padding: 14px; margin-top: 8px;
  background: var(--ink); color: var(--bg); border: 0;
  border-radius: 10px; font-weight: 600; font-size: 15px;
  transition: all 0.2s;
}
.form-submit:hover { box-shadow: 0 14px 30px -12px rgba(10,18,42,0.5); }
.modal-success { text-align: center; padding: 24px 0; }
.modal-success .check {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--accent); color: var(--accent-ink);
  display: grid; place-items: center; margin: 0 auto 18px;
}

/* ============ ADVANCED: SHOWCASE / LIVE DASHBOARD ============ */
.showcase { background: var(--bg-soft); }
.showcase-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 64px; align-items: center; }
@media (max-width: 980px) { .showcase-grid { grid-template-columns: 1fr; } }
.showcase-points { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.sp { display: flex; gap: 12px; align-items: flex-start; }
.sp-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--accent); margin-top: 6px; flex-shrink: 0;
  box-shadow: 0 0 12px var(--accent);
}
.sp-t { font-weight: 500; font-size: 15px; }
.sp-d { font-size: 13px; color: var(--ink-dim); margin-top: 2px; }

.dash {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: 0 40px 80px -30px rgba(0,0,0,0.5), 0 0 0 1px var(--line);
  font-family: var(--font-mono); font-size: 12px;
}
.dash-bar {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 16px; background: var(--bg-soft); border-bottom: 1px solid var(--line);
}
.dash-dots { display: flex; gap: 6px; }
.dash-dots span { width: 10px; height: 10px; border-radius: 50%; background: var(--line-strong); }
.dash-url { flex: 1; text-align: center; font-size: 11px; color: var(--ink-muted); }
.dash-live {
  display: flex; align-items: center; gap: 6px;
  padding: 4px 10px; border-radius: 999px;
  background: color-mix(in oklab, var(--accent) 20%, transparent);
  color: var(--accent); font-size: 10px; font-weight: 600; letter-spacing: 0.06em;
}
.live-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); animation: pulse 1.4s infinite; }
.dash-body { display: grid; grid-template-columns: 160px 1fr; min-height: 460px; }
.dash-side { padding: 18px 14px; border-right: 1px solid var(--line); display: flex; flex-direction: column; gap: 4px; }
.dash-side-item {
  padding: 8px 10px; border-radius: 6px; color: var(--ink-dim); font-size: 12px;
  cursor: pointer; transition: all 0.2s;
}
.dash-side-item.active { background: var(--bg-soft); color: var(--ink); }
.dash-side-meta { margin-top: auto; padding-top: 12px; border-top: 1px solid var(--line); font-size: 10px; color: var(--ink-muted); }
.dash-side-meta-row { display: flex; justify-content: space-between; }
.dash-main { padding: 20px; display: flex; flex-direction: column; gap: 16px; min-width: 0; }
.dash-metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.dash-metric { padding: 14px; background: var(--bg-soft); border: 1px solid var(--line); border-radius: 10px; }
.dash-metric-lbl { font-size: 10px; color: var(--ink-muted); text-transform: uppercase; letter-spacing: 0.06em; }
.dash-metric-val { font-family: var(--font-display); font-size: 22px; font-weight: 600; color: var(--ink); margin-top: 4px; letter-spacing: -0.02em; }
.dash-metric-delta { font-size: 11px; color: var(--ok); margin-top: 2px; }
.dash-chart { padding: 14px; background: var(--bg-soft); border: 1px solid var(--line); border-radius: 10px; }
.dash-chart-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
.dash-chart-tabs { display: flex; gap: 4px; font-size: 10px; }
.dash-chart-tabs span { padding: 3px 7px; border-radius: 4px; color: var(--ink-muted); }
.dash-chart-tabs span.active { background: var(--ink); color: var(--bg); }
.dash-chart-svg { width: 100%; height: 90px; display: block; transition: all 1.5s; }
.dash-logs { padding: 14px; background: var(--bg-soft); border: 1px solid var(--line); border-radius: 10px; max-height: 160px; overflow: hidden; }
.dash-log {
  display: grid; grid-template-columns: 50px 70px 1fr; gap: 8px;
  font-size: 11px; padding: 4px 0; color: var(--ink-dim);
  animation: logSlide 0.4s ease-out backwards;
}
@keyframes logSlide { from { opacity: 0; transform: translateX(-8px); } }
.dash-log-t { color: var(--ink-muted); }
.dash-log-msg { color: var(--ink); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

/* ============ ADVANCED: CODE CAROUSEL ============ */
.codecar { background: var(--bg); }
.codecar-shell { display: grid; grid-template-columns: 220px 1fr; gap: 16px; align-items: start; }
@media (max-width: 880px) { .codecar-shell { grid-template-columns: 1fr; } }
.codecar-tabs { display: flex; flex-direction: column; gap: 6px; }
@media (max-width: 880px) { .codecar-tabs { flex-direction: row; overflow-x: auto; } }
.codecar-tabs button {
  text-align: left; padding: 14px 16px;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: 10px; color: var(--ink-dim);
  display: flex; flex-direction: column; gap: 4px;
  transition: all 0.2s; min-width: 0;
}
.codecar-tabs button:hover { border-color: var(--line-strong); color: var(--ink); }
.codecar-tabs button.active {
  background: var(--bg-soft); border-color: var(--accent);
  color: var(--ink);
  box-shadow: 0 0 0 1px var(--accent), 0 0 24px -8px var(--accent);
}
.cc-lang { font-family: var(--font-mono); font-size: 10px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--accent); }
.cc-title { font-size: 14px; font-weight: 500; }
.codecar-window {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: 12px; overflow: hidden;
  font-family: var(--font-mono); font-size: 13px;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.4);
  min-height: 280px;
}
.codecar-bar {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 14px; background: var(--bg-soft); border-bottom: 1px solid var(--line);
}
.codecar-bar .dots { display: flex; gap: 6px; }
.codecar-bar .dots span { width: 10px; height: 10px; border-radius: 50%; background: var(--line-strong); }
.codecar-file { flex: 1; text-align: center; font-size: 11px; color: var(--ink-muted); }
.codecar-meta { font-size: 10px; color: var(--accent); padding: 3px 8px; background: color-mix(in oklab, var(--accent) 15%, transparent); border-radius: 4px; }
.codecar-body { margin: 0; padding: 22px; line-height: 1.8; overflow-x: auto; }
.codecar-line { display: flex; gap: 16px; animation: codeIn 0.4s ease-out backwards; }
@keyframes codeIn { from { opacity: 0; transform: translateX(-8px); } }
.codecar-ln { color: var(--ink-muted); user-select: none; opacity: 0.5; min-width: 24px; }

/* ============ ADVANCED: STAT STRIP ============ */
.statstrip { background: var(--bg); padding: 60px var(--pad); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.statstrip-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 24px; }
@media (max-width: 880px) { .statstrip-grid { grid-template-columns: repeat(2, 1fr); } }
.statstrip-item { text-align: left; }
.ssi-num {
  font-family: var(--font-display); font-size: clamp(40px, 5vw, 64px);
  font-weight: 600; letter-spacing: -0.04em; line-height: 1;
  background: linear-gradient(135deg, var(--ink) 0%, var(--accent) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.ssi-lbl { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.05em; text-transform: uppercase; color: var(--ink-muted); margin-top: 8px; }

/* ============ ADVANCED: TRUST MARQUEE ============ */
.trust { padding: 60px 0; background: var(--bg-soft); }
.trust-label {
  text-align: center; font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-muted);
  margin-bottom: 32px;
}
.trust-marquee { overflow: hidden; mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent); }
.trust-track { display: flex; gap: 80px; width: max-content; animation: marquee 50s linear infinite; }
.trust-logo {
  font-family: var(--font-display); font-weight: 700; font-size: 28px;
  letter-spacing: 0.02em; color: var(--ink-dim); white-space: nowrap;
  opacity: 0.4; transition: all 0.3s;
}
.trust-logo:hover { opacity: 1; color: var(--ink); }

/* ============ ADVANCED: TECH ORBIT ============ */
.orbit-section { background: var(--bg); overflow: hidden; }
.orbit-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 64px; align-items: center; }
@media (max-width: 980px) { .orbit-grid { grid-template-columns: 1fr; } }
.orbit { position: relative; aspect-ratio: 1/1; width: 100%; max-width: 560px; margin: 0 auto; }
.orbit-core {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  width: 90px; height: 90px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  display: grid; place-items: center;
  box-shadow: 0 0 60px var(--accent), 0 0 0 1px var(--line-strong);
  z-index: 2;
}
.orbit-core-inner { font-family: var(--font-display); font-size: 36px; font-weight: 700; color: var(--accent-ink); }
.orbit-ring {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  border: 1px dashed var(--line-strong); border-radius: 50%; opacity: 0.4;
}
.orbit-ring.r1 { width: 240px; height: 240px; }
.orbit-ring.r2 { width: 360px; height: 360px; }
.orbit-ring.r3 { width: 480px; height: 480px; }
.orbit-tech {
  position: absolute; left: 50%; top: 50%; width: 0; height: 0;
  animation: orbitSpin var(--speed) linear infinite var(--reverse, normal);
  transform: rotate(var(--offset));
}
@keyframes orbitSpin { to { transform: rotate(calc(var(--offset) + 360deg)); } }
.orbit-tech-inner {
  position: absolute; left: var(--r); top: 0;
  transform: translate(-50%, -50%);
  padding: 7px 14px; border-radius: 999px;
  background: var(--surface); border: 1px solid var(--line);
  font-family: var(--font-mono); font-size: 11px; color: var(--ink);
  white-space: nowrap;
  animation: orbitCounter var(--speed) linear infinite var(--reverse, normal);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
@keyframes orbitCounter { from { transform: translate(-50%, -50%) rotate(0deg); } to { transform: translate(-50%, -50%) rotate(-360deg); } }
@media (max-width: 720px) {
  .orbit-ring.r3 { width: 380px; height: 380px; }
  .orbit-ring.r2 { width: 280px; height: 280px; }
  .orbit-ring.r1 { width: 180px; height: 180px; }
  .orbit-tech-inner { font-size: 10px; padding: 5px 10px; }
}

/* ============ ADVANCED: TRUST BADGES ============ */
.trustb { background: var(--bg-soft); }
.trustb-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
@media (max-width: 980px) { .trustb-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .trustb-grid { grid-template-columns: 1fr; } }
.trustb-card {
  padding: 28px; background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); transition: all 0.3s;
}
.trustb-card:hover { border-color: var(--accent); transform: translateY(-3px); }
.trustb-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: color-mix(in oklab, var(--accent) 15%, transparent);
  color: var(--accent); display: grid; place-items: center; margin-bottom: 16px;
}
.trustb-card h3 { font-size: 17px; margin-bottom: 6px; }
.trustb-card p { font-size: 14px; color: var(--ink-dim); margin: 0; }
