/* ============ TOKENS ============ */
:root {
  --navy: #0A2647;
  --navy-deep: #061830;
  --navy-soft: #173A6B;
  --cyan: #1FA8E0;
  --cyan-bright: #2EC4FF;
  --paper: #F7F5F2;
  --paper-warm: #EFEAE3;
  --ink: #0E1116;
  --ink-soft: #2A2F37;
  --mute: #6B7280;
  --line: rgba(10, 38, 71, 0.12);
  --line-light: rgba(255, 255, 255, 0.14);
  --peach: #F4D9CC;
  --sky: #C8E0F0;

  --f-display: 'Anton', 'Oswald', 'Helvetica Neue', sans-serif;
  --f-body: 'Inter', 'Helvetica Neue', sans-serif;
  --f-mono: 'JetBrains Mono', ui-monospace, monospace;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--f-body);
  background: var(--paper);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  font-feature-settings: 'ss01', 'cv11';
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
img { max-width: 100%; display: block; }
em { font-style: italic; }

/* ============ NAV ============ */
.nav {
  position: absolute; top: 0; left: 0; right: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 40px;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}
.nav-scrolled {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  padding: 20px 40px;
}
.nav-brand { display: flex; align-items: center; }
.nav-brand img { height: 135px; }
.nav-links {
  display: flex; gap: 32px; align-items: center;
  font-size: 13px; font-weight: 500; letter-spacing: 0.02em;
}
.nav-links a {
  position: relative; padding: 8px 0;
  color: var(--ink-soft);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--navy); }
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
  background: var(--navy); transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s ease;
}
.nav-links a:hover::after { transform: scaleX(1); }
.nav-links .ext { font-size: 10px; margin-left: 4px; opacity: 0.6; }
.nav-cta {
  background: var(--navy); color: var(--paper);
  padding: 11px 22px; border-radius: 999px;
  font-size: 13px; font-weight: 600; letter-spacing: 0.01em;
  transition: all 0.2s;
}
.nav-cta:hover { background: var(--cyan); transform: translateY(-1px); }
.nav-burger { display: none; flex-direction: column; gap: 4px; padding: 10px; }
.nav-burger span { width: 22px; height: 2px; background: var(--navy); }
.nav-mobile { display: none; }

/* ============ HERO ============ */
.hero {
  position: relative; min-height: 100vh;
  padding: 140px 40px 80px;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.hero-gradient {
  position: absolute; top: 30%; left: 50%;
  width: 120vw; height: 120vh;
  background: radial-gradient(circle at 30% 30%, var(--peach) 0%, transparent 50%),
              radial-gradient(circle at 70% 60%, var(--sky) 0%, transparent 55%),
              radial-gradient(circle at 50% 80%, rgba(31, 168, 224, 0.25) 0%, transparent 50%);
  transform: translate(-50%, -50%);
  filter: blur(40px);
  transition: transform 0.4s ease;
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(circle at 50% 60%, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(circle at 50% 60%, black 30%, transparent 75%);
  opacity: 0.5;
}

.hero-inner {
  position: relative; max-width: 1400px; margin: 0 auto;
}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--f-mono); font-size: 11px;
  letter-spacing: 0.2em; color: var(--navy);
  text-transform: uppercase;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(8px);
  border: 1px solid var(--line);
  border-radius: 999px;
  margin-bottom: 32px;
}
.hero-eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 10px var(--cyan);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero-headline {
  font-family: var(--f-display);
  font-size: clamp(72px, 14vw, 240px);
  line-height: 0.86;
  letter-spacing: -0.01em;
  color: var(--navy);
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 40px;
}
.hl-line { display: block; }
.hl-italic {
  font-style: italic;
  color: var(--cyan);
  font-family: 'Oswald', var(--f-display);
  font-weight: 700;
}
.hl-period { color: var(--cyan); }

.hero-sub {
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.4;
  max-width: 540px;
  color: var(--ink-soft);
  margin-bottom: 40px;
  font-weight: 400;
}

.hero-actions {
  display: flex; gap: 16px; align-items: center;
  margin-bottom: 96px;
  flex-wrap: wrap;
}

.hero-stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  padding-top: 40px;
  border-top: 1px solid var(--line);
  max-width: 900px;
}
.stat {}
.stat-n {
  font-family: var(--f-display);
  font-size: clamp(32px, 4vw, 56px);
  color: var(--navy);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.stat-l {
  font-size: 12px;
  color: var(--mute);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-family: var(--f-mono);
}

.hero-scroll {
  position: absolute; bottom: 32px; right: 40px;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  font-family: var(--f-mono); font-size: 10px;
  letter-spacing: 0.2em; color: var(--mute);
  text-transform: uppercase;
}
.hero-scroll-line {
  width: 1px; height: 60px;
  background: linear-gradient(var(--navy), transparent);
  animation: scroll-line 2s infinite;
}
@keyframes scroll-line {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 28px;
  font-size: 14px; font-weight: 600; letter-spacing: 0.01em;
  border-radius: 999px;
  transition: all 0.25s ease;
  cursor: pointer;
}
.btn-primary {
  background: var(--navy); color: var(--paper);
}
.btn-primary:hover {
  background: var(--cyan);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px -10px var(--cyan);
}
.btn-light.btn-primary { background: var(--cyan); color: var(--navy-deep); }
.btn-light.btn-primary:hover { background: var(--paper); color: var(--navy); }
.btn-ghost {
  color: var(--navy); border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.4);
}
.btn-ghost:hover { background: var(--paper); border-color: var(--navy); }
.btn-light.btn-ghost { color: var(--paper); border-color: var(--line-light); background: transparent; }
.btn-light.btn-ghost:hover { background: var(--paper); color: var(--navy); }
.btn-arrow { display: inline-block; transition: transform 0.25s; }
.btn:hover .btn-arrow { transform: translateX(4px); }
.btn-xl {
  padding: 22px 40px; font-size: 16px;
}
.btn-full { width: 100%; justify-content: center; }
.btn-disabled { opacity: 0.4; pointer-events: none; }

/* ============ MARQUEE ============ */
.marquee {
  background: var(--navy);
  color: var(--paper);
  padding: 22px 0;
  overflow: hidden;
  border-top: 1px solid var(--navy-soft);
  border-bottom: 1px solid var(--navy-soft);
}
.marquee-track {
  display: flex; gap: 40px;
  animation: marquee 50s linear infinite;
  white-space: nowrap;
  font-family: var(--f-display);
  font-size: 28px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.marquee-item { display: inline-flex; align-items: center; gap: 40px; }
.marquee-dot { color: var(--cyan); font-size: 14px; }
@keyframes marquee {
  to { transform: translateX(-33.33%); }
}

/* ============ SECTIONS ============ */
.section {
  padding: 140px 40px;
  position: relative;
}
.section-head {
  max-width: 1400px; margin: 0 auto 80px;
}
.kicker {
  font-family: var(--f-mono); font-size: 11px;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 24px;
}
.kicker.light { color: var(--cyan-bright); }
.section-title {
  font-family: var(--f-display);
  font-size: clamp(48px, 8vw, 128px);
  line-height: 0.92;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 24px;
  font-weight: 400;
}
.section-title em {
  font-style: italic; color: var(--cyan);
}
.section-title.light { color: var(--paper); }
.section-lead {
  font-size: 19px; line-height: 1.5;
  max-width: 620px;
  color: var(--ink-soft);
}
.section-lead.light { color: rgba(247, 245, 242, 0.75); }

/* ============ SERVICES ============ */
.services { background: var(--paper); }
.services-list {
  max-width: 1400px; margin: 0 auto;
  border-top: 1px solid var(--navy);
}
.service-row {
  border-bottom: 1px solid var(--navy);
  cursor: pointer;
  transition: background 0.3s ease;
}
.service-row:hover { background: rgba(31, 168, 224, 0.04); }
.service-open { background: rgba(31, 168, 224, 0.06); }
.service-head {
  display: grid;
  grid-template-columns: 80px 1fr 50px;
  align-items: center;
  padding: 36px 8px;
  gap: 32px;
}
.service-tag {
  font-family: var(--f-mono);
  font-size: 13px;
  color: var(--cyan);
  letter-spacing: 0.1em;
}
.service-title {
  font-family: var(--f-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 400;
  text-transform: uppercase;
  color: var(--navy);
  letter-spacing: -0.005em;
  line-height: 1;
}
.service-toggle {
  font-family: var(--f-display);
  font-size: 36px;
  color: var(--navy);
  text-align: right;
  width: 50px;
  transition: transform 0.3s, color 0.3s;
}
.service-open .service-toggle { color: var(--cyan); transform: rotate(180deg); }
.service-body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s ease;
}
.service-open .service-body { grid-template-rows: 1fr; }
.service-body-inner {
  overflow: hidden;
  display: grid;
  grid-template-columns: 80px 1fr 1fr;
  gap: 32px;
  padding: 0 8px;
}
.service-open .service-body-inner { padding: 0 8px 40px 8px; }
.service-lead {
  grid-column: 2;
  font-size: 18px; line-height: 1.45;
  color: var(--ink-soft);
  max-width: 520px;
}
.service-bullets {
  grid-column: 3;
  list-style: none;
  font-size: 15px;
  line-height: 1.6;
}
.service-bullets li {
  padding: 8px 0 8px 24px;
  border-bottom: 1px solid var(--line);
  position: relative;
  color: var(--ink-soft);
}
.service-bullets li::before {
  content: '→';
  position: absolute; left: 0; top: 8px;
  color: var(--cyan);
}

/* ============ CLIENTS ============ */
.clients { background: var(--paper-warm); }
.client-grid {
  max-width: 1400px; margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--navy);
  border-left: 1px solid var(--navy);
}
.client-card {
  padding: 36px 28px;
  border-right: 1px solid var(--navy);
  border-bottom: 1px solid var(--navy);
  background: var(--paper-warm);
  transition: all 0.3s ease;
  position: relative;
  min-height: 220px;
  display: flex; flex-direction: column;
}
.client-card:hover {
  background: var(--navy);
  color: var(--paper);
}
.client-num {
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--cyan);
  letter-spacing: 0.2em;
  margin-bottom: 32px;
}
.client-name {
  font-family: var(--f-display);
  font-size: clamp(24px, 2.4vw, 32px);
  text-transform: uppercase;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 8px;
  transition: color 0.3s;
}
.client-card:hover .client-name { color: var(--paper); }
.client-cat {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--mute);
  margin-bottom: auto;
  padding-bottom: 24px;
}
.client-card:hover .client-cat { color: var(--cyan-bright); }
.client-note {
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.4;
  border-top: 1px solid var(--line);
  padding-top: 16px;
}
.client-card:hover .client-note {
  color: rgba(247, 245, 242, 0.7);
  border-top-color: var(--line-light);
}

/* ============ CASES ============ */
.cases { background: var(--paper); }
.case-tabs {
  max-width: 1400px; margin: 0 auto 32px;
  display: flex; gap: 0;
  border-bottom: 1px solid var(--line);
}
.case-tab {
  flex: 1;
  padding: 24px;
  text-align: left;
  display: flex; align-items: baseline; gap: 16px;
  border-right: 1px solid var(--line);
  transition: all 0.25s;
  position: relative;
}
.case-tab:last-child { border-right: none; }
.case-tab::after {
  content: ''; position: absolute; bottom: -1px; left: 0; right: 0; height: 2px;
  background: var(--cyan); transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s ease;
}
.case-tab-active::after { transform: scaleX(1); }
.case-tab:hover { background: rgba(31, 168, 224, 0.05); }
.case-tab-num {
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--cyan);
  letter-spacing: 0.15em;
}
.case-tab-name {
  font-family: var(--f-display);
  font-size: clamp(20px, 2vw, 28px);
  color: var(--navy);
  text-transform: uppercase;
  line-height: 1;
}

.case-card {
  max-width: 1400px; margin: 0 auto;
  display: grid; grid-template-columns: 1.1fr 1fr;
  gap: 0;
  background: var(--navy);
  color: var(--paper);
  border-radius: 4px;
  overflow: hidden;
  animation: fadeUp 0.5s ease;
  min-height: 480px;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}
.case-visual {
  background:
    linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 60%, var(--navy-soft) 100%);
  padding: 56px;
  display: flex; flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}
.case-visual::before {
  content: ''; position: absolute;
  top: -50%; right: -20%;
  width: 80%; height: 200%;
  background: radial-gradient(circle, rgba(31, 168, 224, 0.4), transparent 60%);
  filter: blur(60px);
}
.case-visual-tag {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--cyan-bright);
  text-transform: uppercase;
  position: relative;
}
.case-visual-pull {
  font-family: var(--f-display);
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.05;
  text-transform: uppercase;
  position: relative;
  letter-spacing: -0.005em;
}
.case-visual-meta {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: rgba(247, 245, 242, 0.6);
  text-transform: uppercase;
  position: relative;
}

.case-content { padding: 56px; background: var(--paper); color: var(--ink); }
.case-project {
  font-family: var(--f-display);
  font-size: clamp(24px, 2.4vw, 32px);
  font-weight: 400;
  color: var(--navy);
  text-transform: uppercase;
  margin-bottom: 20px;
  line-height: 1.05;
}
.case-body {
  font-size: 15px; line-height: 1.6;
  color: var(--ink-soft);
  margin-bottom: 32px;
}
.case-stats {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.case-stat {
  padding: 20px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.case-stat-n {
  font-family: var(--f-display);
  font-size: clamp(28px, 3.2vw, 44px);
  color: var(--navy);
  line-height: 1;
  margin-bottom: 6px;
}
.case-stat-l {
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--mute);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* ============ WORK ============ */
.work {
  background: var(--paper);
  padding: 80px 40px;
}
.work-card {
  max-width: 1400px; margin: 0 auto;
  background: var(--navy);
  color: var(--paper);
  padding: 80px;
  border-radius: 8px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  position: relative;
  overflow: hidden;
}
.work-card::before {
  content: ''; position: absolute;
  top: -40%; right: -10%;
  width: 50%; height: 180%;
  background: radial-gradient(circle, rgba(31, 168, 224, 0.3), transparent 60%);
  filter: blur(80px);
  pointer-events: none;
}
.work-left { position: relative; }
.work-title {
  font-family: var(--f-display);
  font-size: clamp(40px, 5.6vw, 88px);
  line-height: 0.95;
  text-transform: uppercase;
  color: var(--paper);
  font-weight: 400;
  letter-spacing: -0.005em;
  margin-bottom: 24px;
}
.work-title em { color: var(--cyan-bright); font-style: italic; }
.work-lead {
  font-size: 17px; line-height: 1.5;
  color: rgba(247, 245, 242, 0.75);
  margin-bottom: 32px;
  max-width: 460px;
}
.work-right {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  position: relative;
}
.work-tile {
  position: relative;
  background: #0F2A52;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  display: block;
  overflow: hidden;
  color: inherit;
  aspect-ratio: 1 / 1;
}
.work-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.work-tile-photo img { object-fit: cover; }
.work-tile-logo img {
  object-fit: cover;
  background: #0F2A52;
  filter: grayscale(1) contrast(1.05);
  transition: filter 0.4s ease, transform 0.6s ease;
}
.work-tile-photo img {
  filter: grayscale(1) contrast(1.05);
  transition: filter 0.4s ease, transform 0.6s ease;
}
.work-tile:hover img {
  filter: grayscale(0) contrast(1);
  transform: scale(1.03);
}
.wt-caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 18px 20px;
  background: linear-gradient(to top, rgba(6,24,48,0.95) 0%, rgba(6,24,48,0.7) 60%, transparent 100%);
  color: var(--paper);
  display: flex; flex-direction: column; gap: 4px;
}
.wt-caption .wt-meta {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--cyan-bright);
  text-transform: uppercase;
}
.wt-caption .wt-label {
  font-family: var(--f-display);
  font-size: clamp(20px, 1.6vw, 24px);
  text-transform: uppercase;
  line-height: 1.05;
  letter-spacing: 0.005em;
}
.work-tile {
  position: relative;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 4px;
  display: block;
  overflow: hidden;
  transition: all 0.3s;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  min-height: 140px;
}

/* ============ FEED (Gondola) ============ */
.feed {
  background: var(--paper);
  position: relative;
  overflow: hidden;
}
.feed-marquee {
  margin: 56px -40px 0;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.feed-row {
  display: flex;
  gap: 18px;
  width: max-content;
  will-change: transform;
}
.feed-row-left  { animation: feed-scroll-left  60s linear infinite; }
.feed-row-right { animation: feed-scroll-right 70s linear infinite; }
@keyframes feed-scroll-left  { to { transform: translateX(-50%); } }
@keyframes feed-scroll-right { from { transform: translateX(-50%); } to { transform: translateX(0); } }
.feed-marquee:hover .feed-row { animation-play-state: paused; }

.feed-tile {
  flex: 0 0 auto;
  position: relative;
  width: 220px;
  aspect-ratio: 9 / 16;
  border-radius: 8px;
  overflow: hidden;
  background: #0F2A52;
  border: 1px solid var(--line);
  display: block;
  text-decoration: none;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.feed-tile:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(10, 38, 71, 0.18);
  z-index: 2;
}
.feed-tile img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(1.05);
  transition: transform 0.6s ease;
}
.feed-tile:hover img { transform: scale(1.05); }
.feed-tile-overlay {
  position: absolute; inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 12px;
  background: linear-gradient(to bottom, rgba(6,24,48,0.55) 0%, transparent 25%, transparent 55%, rgba(6,24,48,0.92) 100%);
  color: var(--paper);
  pointer-events: none;
}
.feed-tile-top { display: flex; justify-content: flex-start; }
.feed-tile-bot { display: flex; flex-direction: column; gap: 6px; }
.feed-client {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
}
.feed-plat {
  align-self: flex-start;
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 5px 9px;
  background: rgba(255,255,255,0.92);
  color: var(--navy-deep);
  border-radius: 999px;
}
.feed-views {
  align-self: flex-start;
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.feed-views-num {
  font-family: var(--f-display);
  font-size: 28px;
  letter-spacing: 0.01em;
  line-height: 1;
}
.feed-views-label {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cyan-bright);
}
.feed-fade {
  position: absolute; top: 0; bottom: 0;
  width: 120px;
  pointer-events: none;
  z-index: 3;
}
.feed-fade-l { left: 0;  background: linear-gradient(to right, var(--paper), transparent); }
.feed-fade-r { right: 0; background: linear-gradient(to left,  var(--paper), transparent); }

.feed-foot {
  margin-top: 56px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.feed-stats {
  display: flex;
  gap: 56px;
  flex-wrap: wrap;
}
.feed-stat-num {
  font-family: var(--f-display);
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1;
  letter-spacing: 0.005em;
  color: var(--navy);
}
.feed-stat-lbl {
  margin-top: 8px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mute);
}
@media (max-width: 800px) {
  .feed-tile { width: 160px; }
  .feed-foot { grid-template-columns: 1fr; }
  .feed-stats { gap: 28px; }
  .feed-fade { width: 60px; }
}

/* ============ CONTACT ============ */
.contact {
  background: var(--navy-deep);
  color: var(--paper);
  position: relative;
  overflow: hidden;
}
.contact::before {
  content: ''; position: absolute;
  top: -20%; left: -10%;
  width: 60%; height: 80%;
  background: radial-gradient(circle, rgba(31, 168, 224, 0.18), transparent 60%);
  filter: blur(80px);
  pointer-events: none;
}
.contact-inner {
  max-width: 1400px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px;
  position: relative;
}
.contact-success {
  grid-template-columns: 1fr;
  text-align: left;
  max-width: 800px;
}
.contact-meta {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--line-light);
}
.cm-row {
  display: flex; justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 14px;
  font-family: var(--f-mono);
}
.cm-row > span:first-child {
  color: var(--cyan-bright);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 11px;
  align-self: center;
}
.cm-row a { color: var(--paper); }
.cm-row a:hover { color: var(--cyan-bright); }

.contact-form {
  display: flex; flex-direction: column; gap: 24px;
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cyan-bright);
}
.field input, .field textarea {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line-light);
  padding: 14px 16px;
  font-size: 15px;
  color: var(--paper);
  font-family: var(--f-body);
  border-radius: 4px;
  outline: none;
  transition: all 0.2s;
  resize: vertical;
}
.field input:focus, .field textarea:focus {
  border-color: var(--cyan);
  background: rgba(255, 255, 255, 0.06);
}
.field input::placeholder, .field textarea::placeholder { color: rgba(247, 245, 242, 0.4); }
.field-err input, .field-err textarea { border-color: #FF6B6B; }
.field-error {
  font-size: 12px;
  color: #FF8080;
  font-family: var(--f-mono);
}
.chip-row { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  padding: 9px 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line-light);
  color: var(--paper);
  font-size: 13px;
  border-radius: 999px;
  transition: all 0.2s;
}
.chip:hover { border-color: var(--cyan); }
.chip-active {
  background: var(--cyan);
  color: var(--navy-deep);
  border-color: var(--cyan);
  font-weight: 600;
}

/* ============ FINAL CTA ============ */
.final-cta {
  background: var(--paper);
  padding: 140px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 30% 50%, var(--peach), transparent 50%),
    radial-gradient(circle at 70% 50%, var(--sky), transparent 50%);
  opacity: 0.5;
  pointer-events: none;
}
.fc-inner { position: relative; max-width: 1200px; margin: 0 auto; }
.fc-eyebrow {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 32px;
}
.fc-headline {
  font-family: var(--f-display);
  font-size: clamp(56px, 11vw, 180px);
  line-height: 0.88;
  text-transform: uppercase;
  color: var(--navy);
  letter-spacing: -0.01em;
  font-weight: 400;
  margin-bottom: 48px;
}
.fc-headline em {
  font-style: italic; color: var(--cyan);
}

/* ============ FOOTER ============ */
.footer {
  background: var(--navy-deep);
  color: var(--paper);
  padding: 80px 40px 32px;
}
.footer-grid {
  max-width: 1400px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--line-light);
}
.footer-brand img { height: 40px; margin-bottom: 16px; filter: brightness(0) invert(1); }
.footer-brand p {
  font-size: 14px;
  color: rgba(247, 245, 242, 0.6);
  max-width: 280px;
  line-height: 1.5;
}
.footer-col { display: flex; flex-direction: column; gap: 12px; }
.fc-h {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cyan-bright);
  margin-bottom: 4px;
}
.footer-col a {
  font-size: 14px;
  color: rgba(247, 245, 242, 0.75);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--cyan-bright); }
.fc-meta { font-size: 14px; color: rgba(247, 245, 242, 0.6); line-height: 1.5; }
.footer-bottom {
  max-width: 1400px; margin: 0 auto;
  padding-top: 32px;
  display: flex; justify-content: space-between;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: rgba(247, 245, 242, 0.4);
  text-transform: uppercase;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 960px) {
  .nav { padding: 16px 20px; }
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: flex; }
  .nav-mobile {
    display: flex; flex-direction: column;
    position: fixed; top: 64px; left: 0; right: 0;
    background: var(--paper); padding: 32px 20px;
    border-bottom: 1px solid var(--line);
    gap: 20px;
    z-index: 49;
  }
  .nav-mobile a { font-size: 18px; color: var(--navy); font-weight: 500; }
  .hero { padding: 120px 20px 80px; }
  .section { padding: 80px 20px; }
  .section-head { margin-bottom: 48px; }
  .hero-stats { grid-template-columns: 1fr 1fr; gap: 24px; }
  .hero-actions { gap: 12px; }
  .btn { padding: 14px 22px; font-size: 13px; }
  .service-head { grid-template-columns: 50px 1fr 30px; gap: 16px; padding: 24px 4px; }
  .service-body-inner { grid-template-columns: 1fr; gap: 16px; padding: 0 4px; }
  .service-open .service-body-inner { padding: 0 4px 24px 4px; }
  .service-lead, .service-bullets { grid-column: 1; }
  .client-grid { grid-template-columns: 1fr 1fr; }
  .case-card { grid-template-columns: 1fr; }
  .case-visual, .case-content { padding: 32px; }
  .case-tabs { flex-direction: column; }
  .case-tab { border-right: none; border-bottom: 1px solid var(--line); }
  .work-card { padding: 40px 24px; grid-template-columns: 1fr; gap: 32px; }
  .work-right { grid-template-columns: 1fr 1fr; }
  .contact-inner { grid-template-columns: 1fr; gap: 48px; }
  .field-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .marquee-track { font-size: 20px; gap: 24px; }
  .marquee-item { gap: 24px; }
  .hero-scroll { display: none; }
  .final-cta { padding: 80px 20px; }
}

@media (max-width: 560px) {
  .client-grid { grid-template-columns: 1fr; }
  .case-stats { grid-template-columns: 1fr; }
  .work-right { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}
