/* ============================================================
   AD Financial Consult — premium UI
   References: Stripe, Linear, Vercel, Apple, Ramp
   ============================================================ */

:root {
  /* Brand */
  --navy-1000: #020a1a;
  --navy-900:  #061a36;
  --navy-800:  #0a2240;
  --navy-700:  #122c50;
  --navy-600:  #1b3a66;
  --orange:    #f29423;
  --orange-2:  #ffb24d;
  --orange-3:  #ffd49b;
  --blue:      #1e88c4;
  --blue-2:    #4cb1e3;
  --blue-3:    #8bd3f0;

  /* Surfaces */
  --bg:        #ffffff;
  --bg-alt:    #f6f8fc;
  --bg-dim:    #eef2f8;
  --ink:       #0b1424;
  --ink-2:     #314056;
  --muted:     #6b7790;
  --line:      #e3e8f0;

  /* Dark surfaces */
  --d-bg:      #050b18;
  --d-bg-2:    #08111f;
  --d-bg-3:    #0c1a30;
  --d-line:    rgba(255,255,255,0.08);
  --d-line-2:  rgba(255,255,255,0.14);
  --d-text:    #e7ecf6;
  --d-mute:    #8d99b3;

  /* Radii / shadow */
  --r-xl: 28px;
  --r-lg: 20px;
  --r-md: 14px;
  --r-sm: 10px;
  --shadow:    0 40px 80px -32px rgba(6,26,54,0.45);
  --shadow-sm: 0 16px 40px -16px rgba(6,26,54,0.25);
  --shadow-d:  0 30px 80px -30px rgba(0,0,0,0.7);

  /* Type */
  --font-display: 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-text:    'Inter', system-ui, sans-serif;
  --font-serif:   'Instrument Serif', 'Times New Roman', serif;

  /* Easing */
  --ease-out: cubic-bezier(.2,.7,.2,1);
  --ease-in-out: cubic-bezier(.65,0,.35,1);

  --container: 1240px;
}

/* =========================== reset / base =========================== */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-text);
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  line-height: 1.6;
}
body.theme-dark { background: var(--d-bg); color: var(--d-text); }
img, video, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
::selection { background: var(--orange); color: #fff; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 28px; }
.section { padding: 140px 0; position: relative; }
.section__head { max-width: 780px; margin: 0 auto 80px; text-align: center; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display);
  font-size: 12.5px; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 22px;
}
.eyebrow::before {
  content: ''; width: 24px; height: 1px; background: var(--orange);
}

.h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.6vw, 64px);
  line-height: 1.04;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.03em;
  margin: 0 0 22px;
}
.theme-dark .h2 { color: #fff; }
.serif { font-family: var(--font-serif); font-style: italic; font-weight: 400; }
.serif em { font-style: italic; color: var(--orange); }

.lead {
  font-size: 18.5px; color: var(--ink-2); max-width: 62ch; margin: 0 auto;
  line-height: 1.55;
}
.theme-dark .lead { color: var(--d-mute); }

/* =========================== utilities =========================== */
.grain {
  position: fixed; inset: 0; pointer-events: none; z-index: 1;
  opacity: .035; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='0.9'/></svg>");
}

.cursor {
  position: fixed; top: 0; left: 0; width: 28px; height: 28px;
  border-radius: 50%; pointer-events: none; z-index: 1000;
  transform: translate(-50%, -50%);
  mix-blend-mode: difference;
  transition: width .25s var(--ease-out), height .25s var(--ease-out), background .25s var(--ease-out), opacity .25s;
  opacity: 0;
}
.cursor span {
  position: absolute; inset: 0;
  border: 1.5px solid #fff; border-radius: 50%;
  transition: transform .3s var(--ease-out);
}
.cursor.is-on { opacity: 1; }
.cursor.is-link { width: 12px; height: 12px; background: #fff; }
.cursor.is-link span { transform: scale(0); }
.cursor.is-magnet { width: 64px; height: 64px; }
.cursor.is-card { width: 80px; height: 80px; }
.cursor.is-card::after {
  content: 'view'; position: absolute; inset: 0; display: grid; place-items: center;
  font-family: var(--font-display); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: #fff;
}
.cursor.is-play { width: 80px; height: 80px; }
.cursor.is-play::after {
  content: '▶ play'; position: absolute; inset: 0; display: grid; place-items: center;
  font-family: var(--font-display); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: #fff;
}
@media (pointer: coarse) { .cursor { display: none; } }

.scrollbar {
  position: fixed; top: 0; left: 0; right: 0; height: 2px;
  z-index: 60; transform-origin: left;
}
.scrollbar::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, var(--orange) 0%, var(--blue) 100%);
  transform: scaleX(var(--p, 0)); transform-origin: left;
  transition: transform .1s linear;
}

/* =========================== buttons / pills =========================== */
.btn {
  position: relative;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 24px; border-radius: 999px;
  font-family: var(--font-display); font-weight: 600; font-size: 15px;
  transition: transform .25s var(--ease-out), background .25s, color .25s, box-shadow .25s, border-color .25s;
  white-space: nowrap;
}
.btn svg { transition: transform .25s var(--ease-out); }
.btn:hover svg { transform: translateX(4px); }

.btn--primary {
  background: var(--orange); color: #fff;
  box-shadow: 0 12px 36px -10px rgba(242,148,35,0.65), inset 0 1px 0 rgba(255,255,255,0.25);
}
.btn--primary:hover { background: var(--orange-2); transform: translateY(-2px); box-shadow: 0 18px 44px -10px rgba(242,148,35,0.7); }

.btn--ghost {
  background: rgba(255,255,255,0.04); color: #fff;
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(8px);
}
.btn--ghost:hover { background: rgba(255,255,255,0.10); border-color: rgba(255,255,255,0.32); }

.pill {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 14px 8px 10px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 999px;
  font-family: var(--font-display); font-weight: 500; font-size: 13px;
  color: #cfe2ff;
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(8px);
  margin-bottom: 28px;
  transition: border-color .25s, background .25s, transform .25s var(--ease-out);
}
.pill:hover { border-color: rgba(255,255,255,0.28); background: rgba(255,255,255,0.07); transform: translateY(-1px); }
.pill__dot { width: 7px; height: 7px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 0 4px rgba(242,148,35,0.18); animation: pulse 2s var(--ease-in-out) infinite; }
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 4px rgba(242,148,35,0.18); }
  50%     { box-shadow: 0 0 0 10px rgba(242,148,35,0); }
}

/* =========================== nav =========================== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  padding: 18px 0;
  transition: background .3s, box-shadow .3s, padding .3s, backdrop-filter .3s, border-color .3s;
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(5,11,24,0.78);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 12px 0;
}
.nav__inner {
  max-width: var(--container); margin: 0 auto; padding: 0 28px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.nav__brand {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-display); font-weight: 600; color: #fff;
  position: relative; z-index: 101;
}
.nav__brand img { width: 34px; height: 34px; }
.nav__brand span { font-size: 15px; letter-spacing: -0.005em; }
.nav__brand strong { color: var(--orange); margin-right: 6px; font-weight: 700; }
.nav__links { display: flex; align-items: center; gap: 32px; }
.nav__links a {
  font-family: var(--font-display);
  font-size: 14px; font-weight: 500;
  color: rgba(255,255,255,0.7);
  position: relative; transition: color .2s;
}
.nav__links a:hover { color: #fff; }
.nav__cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; color: var(--navy-900) !important;
  padding: 10px 16px; border-radius: 999px;
  font-family: var(--font-display); font-weight: 600; font-size: 13.5px;
  transition: background .2s, transform .2s var(--ease-out);
}
.nav__cta:hover { background: var(--orange); color: #fff !important; transform: translateY(-1px); }
.nav__burger {
  display: none; position: relative;
  width: 44px; height: 44px;
  flex-direction: column; gap: 6px;
  justify-content: center; align-items: center;
  z-index: 101;
}
.nav__burger span {
  display: block; width: 22px; height: 1.8px;
  background: #fff; border-radius: 2px;
  transition: transform .3s var(--ease-out), opacity .25s, width .25s;
}
.nav__burger.is-open span:nth-child(1) { transform: translateY(4px) rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { transform: translateY(-4px) rotate(-45deg); }

/* =========================== hero =========================== */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 170px 0 120px;
  overflow: hidden;
  background: var(--d-bg);
  color: #fff;
}

.mesh { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.mesh__blob { position: absolute; border-radius: 50%; filter: blur(100px); opacity: .65; }
.mesh__blob--a { width: 720px; height: 720px; background: #f29423; top: -180px; right: -140px; opacity: .35; animation: floatA 16s ease-in-out infinite; }
.mesh__blob--b { width: 720px; height: 720px; background: #1e88c4; bottom: -240px; left: -200px; opacity: .45; animation: floatB 18s ease-in-out infinite; }
.mesh__blob--c { width: 480px; height: 480px; background: #6ec3f5; top: 40%; left: 40%; opacity: .22; animation: floatC 22s ease-in-out infinite; }
@keyframes floatA { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(-40px, 30px) scale(1.06); } }
@keyframes floatB { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(50px, -30px) scale(1.08); } }
@keyframes floatC { 0%,100% { transform: translate(0,0); } 50% { transform: translate(30px, 20px); } }

.mesh__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: radial-gradient(ellipse 90% 70% at 50% 50%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 90% 70% at 50% 50%, #000 30%, transparent 80%);
}

.hero__inner {
  position: relative; z-index: 2;
  max-width: var(--container); margin: 0 auto; padding: 0 28px;
  display: grid; grid-template-columns: 1.1fr .9fr; gap: 80px; align-items: center;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(44px, 7.2vw, 88px);
  line-height: 0.98; letter-spacing: -0.035em;
  font-weight: 700; color: #fff;
  margin: 0 0 28px;
}
.hero__title em { font-family: var(--font-serif); font-weight: 400; font-style: italic; color: var(--orange); }
.hero__title .line { display: block; overflow: hidden; padding-bottom: 4px; }
.hero__title .line > span {
  display: inline-block; transform: translateY(115%); opacity: 0;
  will-change: transform, opacity;
}
.hero__title.is-on .line > span {
  transform: translateY(0); opacity: 1;
  transition: transform 1s var(--ease-out), opacity 1s ease;
}
.hero__title.is-on .line:nth-child(1) > span { transition-delay: .1s; }
.hero__title.is-on .line:nth-child(2) > span { transition-delay: .3s; }

.hero__sub { font-size: 19px; max-width: 52ch; color: rgba(255,255,255,0.7); margin: 0 0 36px; line-height: 1.55; }
.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 56px; }

.hero__trust {
  display: flex; flex-direction: column; gap: 10px;
}
.hero__trust > span {
  font-family: var(--font-display); font-size: 11.5px; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase; color: rgba(255,255,255,0.4);
}
.trust__row {
  display: flex; flex-wrap: wrap; align-items: center; gap: 12px;
  font-family: var(--font-display); font-weight: 500; font-size: 14px;
  color: rgba(255,255,255,0.75);
}
.trust__row span:nth-child(even) { color: rgba(255,255,255,0.25); }

/* hero dashboard card */
.hero__visual { position: relative; min-height: 520px; }
.dash {
  position: relative; padding: 26px;
  background: linear-gradient(180deg, rgba(255,255,255,0.07) 0%, rgba(255,255,255,0.02) 100%);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r-xl);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow-d);
  transform: perspective(1200px) rotateY(-6deg) rotateX(4deg) translateZ(0);
  transition: transform .6s var(--ease-out);
}
.dash::before {
  content: ''; position: absolute; inset: -1px; border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(242,148,35,0.6), transparent 40%, transparent 60%, rgba(30,136,196,0.55));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  pointer-events: none;
}
.dash__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.dash__brand { display: flex; align-items: center; gap: 12px; }
.dash__brand img { width: 32px; height: 32px; }
.dash__brand strong { display: block; font-family: var(--font-display); font-size: 14px; color: #fff; }
.dash__brand span { font-size: 11.5px; color: rgba(255,255,255,0.55); }
.dash__chip {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-display); font-weight: 700; font-size: 12.5px;
  color: #88e8c8;
  padding: 6px 10px;
  background: rgba(102,232,180,0.1);
  border: 1px solid rgba(102,232,180,0.25);
  border-radius: 999px;
}
.dash__metric { margin-bottom: 14px; }
.dash__label { display: block; font-family: var(--font-display); font-size: 12px; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.16em; margin-bottom: 4px; }
.dash__value {
  font-family: var(--font-display); font-weight: 700; font-size: 38px; line-height: 1;
  color: #fff; letter-spacing: -0.02em;
}
.dash__value em { font-style: normal; color: var(--orange); margin-left: 2px; }

.chart { width: 100%; height: 140px; margin-bottom: 14px; }
.chart__line { stroke-dasharray: 700; stroke-dashoffset: 700; transition: stroke-dashoffset 2.4s var(--ease-out); }
.dash.is-in .chart__line { stroke-dashoffset: 0; }
.chart__area { opacity: 0; transition: opacity 1.8s ease 1s; }
.dash.is-in .chart__area { opacity: 1; }
.chart__pt-pulse { transform-origin: center; animation: ptPulse 2s var(--ease-in-out) infinite; transform-box: fill-box; }
@keyframes ptPulse { 0%,100% { r: 5; opacity: .4; } 50% { r: 12; opacity: 0; } }

.dash__bars { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; align-items: end; height: 80px; }
.bar { display: flex; flex-direction: column; gap: 6px; align-items: center; height: 100%; justify-content: end; }
.bar span {
  display: block; width: 100%;
  background: linear-gradient(180deg, rgba(255,255,255,0.18), rgba(255,255,255,0.05));
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 6px;
  height: 0;
  transition: height 1.4s var(--ease-out);
}
.dash.is-in .bar span { height: var(--h); }
.bar--hi span { background: linear-gradient(180deg, var(--orange) 0%, rgba(242,148,35,0.4) 100%); border-color: rgba(242,148,35,0.4); }
.bar label { font-family: var(--font-display); font-size: 10.5px; color: rgba(255,255,255,0.45); letter-spacing: 0.12em; text-transform: uppercase; }

.floater {
  position: absolute;
  display: flex; align-items: center; gap: 12px;
  padding: 12px 16px;
  background: rgba(8,17,31,0.85);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-d);
  animation: floatF 6s ease-in-out infinite;
}
.floater strong { display: block; font-family: var(--font-display); font-size: 13.5px; color: #fff; }
.floater span { font-size: 11.5px; color: rgba(255,255,255,0.55); }
.floater__icon {
  width: 36px; height: 36px; border-radius: 10px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--orange), #d56b00);
  color: #fff;
}
.floater__icon--alt { background: linear-gradient(135deg, var(--blue), var(--navy-700)); }
.floater__icon svg { width: 18px; height: 18px; }
.floater--1 { top: -22px; left: -28px; animation-delay: 0s; }
.floater--2 { bottom: -22px; right: -28px; animation-delay: 2s; }
@keyframes floatF { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

.hero__scroll {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  width: 22px; height: 36px; border: 1.5px solid rgba(255,255,255,0.3);
  border-radius: 12px; z-index: 2;
}
.hero__scroll span {
  position: absolute; top: 6px; left: 50%; transform: translateX(-50%);
  width: 3px; height: 6px; background: var(--orange); border-radius: 2px;
  animation: scrollDown 1.8s var(--ease-in-out) infinite;
}
@keyframes scrollDown { 0% { transform: translate(-50%, 0); opacity: 1; } 80% { transform: translate(-50%, 14px); opacity: 0; } 100% { opacity: 0; } }

/* =========================== stats band =========================== */
.stats {
  background: #08111f;
  padding: 56px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.stats__grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
}
.stat { padding: 8px 32px; border-left: 1px solid rgba(255,255,255,0.08); }
.stat:first-child { border-left: none; padding-left: 0; }
.stat__num {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(36px, 4vw, 52px);
  line-height: 1; color: #fff; letter-spacing: -0.02em;
  display: flex; align-items: baseline; gap: 2px;
}
.stat__num em { font-style: normal; font-size: 18px; color: var(--orange); font-weight: 600; margin-left: 4px; }
.stat__label { font-size: 13px; color: rgba(255,255,255,0.55); margin-top: 10px; max-width: 24ch; }

/* =========================== marquee =========================== */
.marquee {
  background: var(--d-bg);
  padding: 22px 0; overflow: hidden;
}
.marquee__track {
  display: flex; gap: 28px;
  white-space: nowrap;
  animation: marquee 38s linear infinite;
  font-family: var(--font-display); font-weight: 600; font-size: 30px;
  letter-spacing: -0.01em;
  color: rgba(255,255,255,0.85);
  align-items: center;
}
.marquee__track i { color: var(--orange); font-style: normal; font-size: 18px; }
.marquee__track span:hover { color: var(--orange); cursor: default; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* =========================== about =========================== */
.about { background: var(--d-bg); }
.split {
  display: grid; grid-template-columns: 1fr 1fr; gap: 100px;
  max-width: var(--container); margin: 0 auto; padding: 0 28px;
  align-items: center;
}
.split__copy { max-width: 540px; }
.split__copy .eyebrow { display: inline-flex; }
.split__copy .h2 { text-align: left; color: #fff; }
.split__copy .lead { margin: 0 0 40px; text-align: left; color: var(--d-mute); }

.split__media { position: relative; }
.frame {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--navy-1000);
  border: 1px solid rgba(255,255,255,0.08);
}
.frame video, .frame img { width: 100%; height: 100%; object-fit: cover; }
.frame__glow {
  position: absolute; inset: -20px; z-index: -1; pointer-events: none;
  background: radial-gradient(closest-side, rgba(242,148,35,0.45), transparent 70%),
              radial-gradient(closest-side at 100% 100%, rgba(30,136,196,0.5), transparent 70%);
  filter: blur(30px);
}
.frame__badge {
  position: absolute; bottom: -16px; left: 24px;
  background: #fff; color: var(--navy-900);
  padding: 12px 18px; border-radius: 999px;
  font-family: var(--font-display); font-weight: 600; font-size: 12.5px;
  box-shadow: var(--shadow);
  display: inline-flex; align-items: center; gap: 10px;
}
.badge__dot { width: 7px; height: 7px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 0 4px rgba(242,148,35,0.25); animation: pulse 2s infinite; }

.mv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.mv {
  padding: 24px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--d-line);
  border-radius: var(--r-md);
  transition: transform .35s var(--ease-out), border-color .35s, background .35s;
}
.mv:hover { transform: translateY(-4px); border-color: var(--d-line-2); background: rgba(255,255,255,0.05); }
.mv__icon {
  width: 40px; height: 40px; border-radius: 10px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--orange), #d56b00);
  color: #fff; margin-bottom: 16px;
}
.mv__icon svg { width: 20px; height: 20px; }
.mv h3 { font-family: var(--font-display); margin: 0 0 6px; font-size: 16.5px; color: #fff; }
.mv p { margin: 0; font-size: 13.5px; color: var(--d-mute); line-height: 1.55; }

/* =========================== bento services =========================== */
.services {
  background: #fff;
  color: var(--ink);
  border-radius: 40px 40px 0 0;
  margin-top: -1px;
}
.services .eyebrow, .services .h2 { color: var(--ink); }
.services .h2 { color: var(--navy-900); }
.services .lead { color: var(--ink-2); }

.bento {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 20px;
}
.bento__card {
  position: relative; overflow: hidden;
  padding: 32px;
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  transition: transform .4s var(--ease-out), box-shadow .4s, border-color .4s;
  min-height: 240px;
  display: flex; flex-direction: column;
}
.bento__card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.bento__card--lead { grid-row: span 2; min-height: 500px; background: linear-gradient(160deg, var(--navy-900), var(--navy-800)); color: #fff; border: none; }
.bento__card--lead .bento__num { color: var(--orange-2); opacity: .8; }
.bento__card--lead h3 { color: #fff; }
.bento__card--lead h3 span { display: block; font-family: var(--font-serif); font-style: italic; color: var(--orange-2); font-weight: 400; }
.bento__card--lead p { color: rgba(255,255,255,0.7); }
.bento__card--wide { grid-column: span 2; min-height: 200px; }

.bento__num {
  font-family: var(--font-display); font-weight: 700;
  font-size: 13px; color: var(--orange); letter-spacing: 0.16em;
  margin-bottom: 16px;
}
.bento__card h3 { font-family: var(--font-display); font-size: 22px; color: var(--navy-900); margin: 0 0 10px; line-height: 1.2; letter-spacing: -0.01em; }
.bento__card p { color: var(--ink-2); font-size: 14.5px; margin: 0 0 auto; line-height: 1.55; max-width: 36ch; }

.bento__art {
  margin-top: auto; padding-top: 28px;
  display: flex; justify-content: center;
}
.bento__art svg { width: 200px; height: auto; animation: orbitArt 18s linear infinite; }
@keyframes orbitArt { to { transform: rotate(360deg); } }

.bento__bars {
  display: flex; gap: 8px; align-items: end; height: 60px;
  margin-top: 20px;
}
.bento__bars span {
  flex: 1; background: linear-gradient(180deg, var(--orange), var(--orange-2));
  border-radius: 6px; height: var(--h);
  transform-origin: bottom; transform: scaleY(0);
  transition: transform 1s var(--ease-out);
}
.bento__card.is-in .bento__bars span { transform: scaleY(1); }
.bento__card.is-in .bento__bars span:nth-child(2) { transition-delay: .08s; }
.bento__card.is-in .bento__bars span:nth-child(3) { transition-delay: .16s; }
.bento__card.is-in .bento__bars span:nth-child(4) { transition-delay: .24s; }
.bento__card.is-in .bento__bars span:nth-child(5) { transition-delay: .32s; }

.bento__seal { display: flex; align-items: center; justify-content: center; margin-top: 14px; flex: 1; }
.bento__seal svg { width: 88px; color: var(--navy-700); }
.seal__dash { transform-origin: center; transform: rotate(-90deg); transform-box: fill-box; animation: sealDash 2.5s var(--ease-out) forwards; stroke-dasharray: 0 200; }
.bento__card.is-in .seal__dash { animation: sealDash 2.5s var(--ease-out) forwards; }
@keyframes sealDash { to { stroke-dasharray: 200 200; } }

.bento__rates {
  margin-top: 24px;
  display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 24px;
}
.bento__rates > div:not(.bento__line) { display: flex; align-items: baseline; gap: 4px; font-family: var(--font-display); }
.bento__rates span { font-size: 11px; color: var(--muted); letter-spacing: 0.14em; text-transform: uppercase; margin-right: 6px; }
.bento__rates strong { font-size: 32px; color: var(--navy-900); font-weight: 700; letter-spacing: -0.02em; }
.bento__rates em { font-style: normal; color: var(--muted); font-size: 13px; font-weight: 500; }
.bento__line { height: 36px; }
.bento__line svg { width: 100%; height: 100%; }
.bento__line path { stroke-dasharray: 600; stroke-dashoffset: 600; transition: stroke-dashoffset 1.8s var(--ease-out); }
.bento__card.is-in .bento__line path { stroke-dashoffset: 0; }

/* =========================== approach (sticky scroll) =========================== */
.approach { background: #fff; }
.approach .eyebrow, .approach .h2 { color: var(--navy-900); }
.approach .lead { color: var(--ink-2); }

.story {
  display: grid; grid-template-columns: 360px 1fr; gap: 80px;
  margin-top: 40px;
}
.story__rail { position: relative; }
.story__sticky {
  position: sticky; top: 120px;
  display: flex; flex-direction: column; gap: 22px;
}
.story__counter {
  font-family: var(--font-display);
  display: flex; align-items: baseline; gap: 8px;
  letter-spacing: -0.04em;
}
.story__counter span {
  font-size: 96px; font-weight: 700; color: var(--navy-900); line-height: 1;
  transition: opacity .3s;
}
.story__counter small { font-size: 18px; color: var(--muted); font-weight: 500; }
.story__progress {
  width: 100%; height: 2px; background: var(--line); border-radius: 2px; overflow: hidden;
}
.story__progress span {
  display: block; height: 100%; width: 0;
  background: linear-gradient(90deg, var(--orange), var(--blue));
  border-radius: 2px; transition: width .3s var(--ease-out);
}
.story__labels { display: flex; flex-direction: column; gap: 8px; }
.story__labels span {
  font-family: var(--font-display); font-size: 14px; color: var(--muted);
  padding: 8px 0; transition: color .3s, padding .3s;
  font-weight: 500;
}
.story__labels span.is-on { color: var(--navy-900); padding-left: 14px; position: relative; }
.story__labels span.is-on::before {
  content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  width: 6px; height: 6px; border-radius: 50%; background: var(--orange);
}

.story__list {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-direction: column;
}
.story__step {
  padding: 80px 0;
  border-top: 1px solid var(--line);
  opacity: .4; transition: opacity .5s;
}
.story__step:first-child { border-top: none; padding-top: 0; }
.story__step.is-active { opacity: 1; }
.story__step h4 {
  font-family: var(--font-display); font-weight: 700; letter-spacing: -0.02em;
  font-size: clamp(28px, 3vw, 40px); color: var(--navy-900);
  margin: 0 0 16px;
}
.story__step p { font-size: 17px; color: var(--ink-2); margin: 0; max-width: 50ch; line-height: 1.55; }

/* =========================== clients =========================== */
.clients { background: var(--bg-alt); color: var(--ink); }
.clients .eyebrow, .clients .h2 { color: var(--navy-900); }
.clients .lead { color: var(--ink-2); }
.clients__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.client {
  position: relative; overflow: hidden;
  padding: 36px 32px;
  background: #fff;
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  transition: transform .35s var(--ease-out), box-shadow .35s, border-color .35s;
}
.client:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.client::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--blue));
  transform: scaleX(0); transform-origin: left;
  transition: transform .5s var(--ease-out);
}
.client:hover::after { transform: scaleX(1); }
.client__icon {
  width: 52px; height: 52px; border-radius: 14px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--orange), var(--orange-2));
  color: #fff; margin-bottom: 22px;
}
.client__icon svg { width: 26px; height: 26px; }
.client h3 { font-family: var(--font-display); font-size: 19px; margin: 0 0 8px; color: var(--navy-900); line-height: 1.25; letter-spacing: -0.01em; }
.client p { margin: 0 0 18px; color: var(--ink-2); font-size: 14.5px; }
.client__tag {
  display: inline-block; font-family: var(--font-display); font-weight: 600;
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--blue); padding: 5px 10px; border-radius: 999px;
  background: rgba(30,136,196,0.08);
}

/* =========================== team =========================== */
.team { background: #fff; color: var(--ink); }
.team .h2 { color: var(--navy-900); }
.team__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.member {
  position: relative;
  display: grid; grid-template-columns: 200px 1fr; gap: 32px; align-items: start;
  padding: 36px;
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  transition: transform .4s var(--ease-out), box-shadow .4s;
  overflow: hidden;
}
.member::before {
  content: ''; position: absolute; inset: -1px; border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, transparent, rgba(242,148,35,0.5), transparent 60%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  opacity: 0; transition: opacity .4s;
  pointer-events: none;
}
.member:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.member:hover::before { opacity: 1; }
.member__visual {
  width: 200px; height: 200px; border-radius: 50%;
  position: relative;
  display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 700; font-size: 64px;
  color: #fff; letter-spacing: -0.04em;
}
.member__visual--a { background: linear-gradient(135deg, var(--navy-900) 0%, var(--blue) 100%); }
.member__visual--b { background: linear-gradient(135deg, var(--orange) 0%, #d56b00 100%); }
.member__visual--photo { overflow: hidden; padding: 0; }
.member__visual--photo picture,
.member__visual--photo img {
  width: 100%; height: 100%; display: block;
  border-radius: 50%;
}
.member__visual--photo img { object-fit: cover; object-position: 50% 28%; }
.member__visual::after {
  content: ''; position: absolute; inset: -10px; border-radius: 50%;
  border: 1px dashed rgba(0,0,0,0.12);
}
.member__ring { position: absolute; inset: -22px; border: 1px solid rgba(0,0,0,0.06); border-radius: 50%; animation: spin 28s linear infinite; }
.member__ring::after { content: ''; position: absolute; top: -3px; left: 50%; width: 7px; height: 7px; border-radius: 50%; background: var(--orange); transform: translateX(-50%); }
@keyframes spin { to { transform: rotate(360deg); } }
.member h3 { font-family: var(--font-display); margin: 0 0 4px; font-size: 24px; color: var(--navy-900); letter-spacing: -0.02em; }
.member__role { font-family: var(--font-display); font-weight: 600; font-size: 12.5px; color: var(--orange); letter-spacing: 0.1em; text-transform: uppercase; margin: 0 0 14px; }
.member__bio { margin: 0 0 18px; color: var(--ink-2); font-size: 14.5px; line-height: 1.55; }
.member__meta { display: flex; flex-direction: column; gap: 8px; }
.member__meta a { display: inline-flex; align-items: center; gap: 10px; font-size: 13.5px; color: var(--ink-2); transition: color .2s; }
.member__meta a:hover { color: var(--orange); }
.member__meta svg { color: var(--muted); flex-shrink: 0; }
.member__meta a:hover svg { color: var(--orange); }

/* =========================== gallery =========================== */
.gallery { background: var(--bg-alt); color: var(--ink); }
.gallery .h2 { color: var(--navy-900); }
.gallery .eyebrow { color: var(--orange); }
.gallery__grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 280px; gap: 18px;
}
.g-item {
  margin: 0; position: relative; overflow: hidden;
  border-radius: var(--r-lg);
  background: var(--navy-900);
  box-shadow: var(--shadow-sm);
  transition: transform .5s var(--ease-out), box-shadow .5s;
}
.g-item--hero { grid-row: span 2; grid-column: span 2; }
.g-item:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.g-item img, .g-item video {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .8s var(--ease-out);
}
.g-item:hover img, .g-item:hover video { transform: scale(1.06); }
.g-item figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 24px 24px 22px; color: #fff;
  font-family: var(--font-display);
  display: flex; flex-direction: column; gap: 4px;
  background: linear-gradient(180deg, transparent 0%, rgba(2,10,26,0.92) 85%);
  pointer-events: none;
}
.g-item figcaption strong { font-weight: 600; font-size: 16px; }
.g-item figcaption em { font-style: normal; font-size: 13px; color: rgba(255,255,255,0.65); }
.g-tag {
  align-self: flex-start; font-size: 10.5px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--orange-2); font-weight: 700; margin-bottom: 6px;
}
.g-play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 64px; height: 64px; border-radius: 50%;
  background: rgba(255,255,255,0.16); color: #fff;
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.3);
  display: grid; place-items: center;
  opacity: 0; transition: opacity .3s, transform .3s var(--ease-out);
}
.g-item:hover .g-play { opacity: 1; transform: translate(-50%,-50%) scale(1.06); }
.g-play svg { width: 22px; height: 22px; margin-left: 2px; }
.g-item--hero .g-play { width: 84px; height: 84px; }
.g-item--hero .g-play svg { width: 28px; height: 28px; }

/* =========================== pull quote =========================== */
.quote {
  background: #fff;
  padding: 130px 0;
  text-align: center;
}
.quote__text {
  font-family: var(--font-display);
  font-size: clamp(30px, 3.6vw, 52px);
  line-height: 1.18; font-weight: 600;
  color: var(--navy-900); letter-spacing: -0.025em;
  max-width: 22ch; margin: 0 auto 28px;
}
.quote__attr {
  font-family: var(--font-display);
  font-size: 13px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--muted); margin: 0;
}

/* =========================== contact =========================== */
.contact {
  background: var(--d-bg);
  color: #fff;
  position: relative; overflow: hidden;
}
.contact::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(700px 400px at 0% 0%, rgba(30,136,196,0.22), transparent 60%),
    radial-gradient(700px 400px at 100% 100%, rgba(242,148,35,0.22), transparent 60%);
}
.contact > * { position: relative; z-index: 1; }
.contact .h2 { color: #fff; }
.contact .lead { color: rgba(255,255,255,0.7); text-align: left; margin: 0 0 36px; max-width: 50ch; }
.contact__inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start;
}
.contact__copy .h2 { text-align: left; }
.contact__list { list-style: none; padding: 0; margin: 0; }
.contact__list li {
  display: flex; flex-direction: column; gap: 6px;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.contact__list li:last-child { border-bottom: 1px solid rgba(255,255,255,0.1); }
.contact__list strong {
  font-family: var(--font-display); font-weight: 600; font-size: 11px;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--orange-2);
}
.contact__list a { color: #fff; font-size: 17px; transition: color .2s; word-break: break-word; }
.contact__list a:hover { color: var(--orange); }

.contact__form {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-xl);
  padding: 36px;
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  display: flex; flex-direction: column; gap: 18px;
}
.contact__form label { display: flex; flex-direction: column; gap: 8px; }
.contact__form span {
  font-family: var(--font-display); font-weight: 600; font-size: 11.5px;
  letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.55);
}
.contact__form input, .contact__form textarea {
  font: inherit; color: #fff; font-family: var(--font-text);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  padding: 14px 16px; outline: none;
  transition: border-color .25s, background .25s, box-shadow .25s;
}
.contact__form input::placeholder, .contact__form textarea::placeholder { color: rgba(255,255,255,0.35); }
.contact__form input:focus, .contact__form textarea:focus {
  border-color: var(--orange); background: rgba(255,255,255,0.06);
  box-shadow: 0 0 0 4px rgba(242,148,35,0.12);
}
.contact__form button { align-self: flex-start; margin-top: 4px; }
.form__msg { margin: 0; font-size: 14px; color: var(--orange-2); opacity: 0; transform: translateY(6px); transition: opacity .3s, transform .3s; }
.form__msg.is-on { opacity: 1; transform: translateY(0); }

/* =========================== footer =========================== */
.footer { background: #03091a; color: rgba(255,255,255,0.65); padding: 60px 0 36px; border-top: 1px solid rgba(255,255,255,0.05); }
.footer__top {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer__brand { display: flex; align-items: center; gap: 14px; }
.footer__brand img { width: 44px; height: 44px; }
.footer__brand strong { display: block; color: #fff; font-family: var(--font-display); font-size: 16px; }
.footer__brand span { font-size: 12.5px; color: rgba(255,255,255,0.5); }
.footer__nav { display: flex; gap: 28px; }
.footer__nav a { font-family: var(--font-display); font-size: 14px; color: rgba(255,255,255,0.7); transition: color .2s; }
.footer__nav a:hover { color: var(--orange); }
.footer__bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 28px; font-size: 12.5px; color: rgba(255,255,255,0.4);
}
.footer__bottom p { margin: 0; }

/* =========================== reveal =========================== */
.reveal {
  opacity: 0; transform: translateY(36px);
  transition: opacity .9s var(--ease-out), transform .9s var(--ease-out);
  will-change: opacity, transform;
}
.reveal.is-in { opacity: 1; transform: translateY(0); }

/* =========================== responsive =========================== */
@media (max-width: 1080px) {
  .section { padding: 110px 0; }
  .section__head { margin-bottom: 56px; }
  .hero__inner { grid-template-columns: 1fr; gap: 60px; padding-top: 20px; }
  .hero__visual { min-height: 440px; max-width: 480px; margin: 0 auto; width: 100%; }
  .split { grid-template-columns: 1fr; gap: 80px; }
  .split__media { max-width: 460px; margin: 0 auto; width: 100%; }
  .split__copy { max-width: none; }
  .bento { grid-template-columns: 1fr 1fr; }
  .bento__card--lead { grid-row: span 1; grid-column: span 2; min-height: 320px; }
  .bento__card--wide { grid-column: span 2; }
  .stats__grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .stat:nth-child(3) { border-left: none; padding-left: 0; }
  .clients__grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
  .team__grid { grid-template-columns: 1fr; max-width: 640px; margin: 0 auto; }
  .story { grid-template-columns: 1fr; gap: 40px; }
  .story__sticky { position: relative; top: 0; }
  .story__counter span { font-size: 64px; }
  .story__labels { display: none; }
  .contact__inner { grid-template-columns: 1fr; gap: 40px; }
  .gallery__grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 240px; }
  .g-item--hero { grid-column: span 2; grid-row: span 1; min-height: 280px; }
}

@media (max-width: 760px) {
  .section { padding: 80px 0; }
  .section__head { margin-bottom: 48px; }
  .container { padding: 0 18px; }

  /* nav */
  .nav { padding: 14px 0; }
  .nav.is-menu { background: #050b18; border-bottom-color: rgba(255,255,255,0.06); }
  .nav__inner { gap: 12px; }
  .nav__brand span { font-size: 14px; }
  .nav__brand img { width: 30px; height: 30px; }
  .nav__cta { display: none; }
  .nav__burger { display: flex; }

  .nav__links {
    position: fixed; inset: 0;
    background: #050b18;
    display: flex; flex-direction: column;
    align-items: stretch; justify-content: flex-start;
    gap: 0; padding: 88px 22px 36px;
    z-index: 100;
    overflow-y: auto;
    transform: translateY(-100%);
    visibility: hidden;
    transition: transform .45s var(--ease-out), visibility .45s;
  }
  .nav__links.is-open {
    transform: translateY(0);
    visibility: visible;
  }
  .nav__links a {
    display: block; width: 100%;
    font-family: var(--font-display);
    font-size: 26px; font-weight: 600; color: #fff;
    padding: 22px 4px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    opacity: 0; transform: translateY(14px);
    transition: opacity .35s var(--ease-out), transform .35s var(--ease-out), color .2s;
  }
  .nav__links.is-open a {
    opacity: 1; transform: translateY(0);
  }
  .nav__links.is-open a:nth-child(1) { transition-delay: .12s; }
  .nav__links.is-open a:nth-child(2) { transition-delay: .18s; }
  .nav__links.is-open a:nth-child(3) { transition-delay: .24s; }
  .nav__links.is-open a:nth-child(4) { transition-delay: .30s; }
  .nav__links.is-open a:nth-child(5) { transition-delay: .36s; }
  .nav__links.is-open a:nth-child(6) { transition-delay: .42s; }
  .nav__links a:hover, .nav__links a:active { color: var(--orange); }

  body.menu-open { overflow: hidden; }

  /* hero */
  .hero { padding: 110px 0 60px; min-height: auto; }
  .hero__inner { gap: 48px; padding: 0 18px; }
  .hero__title { font-size: clamp(38px, 11vw, 52px); margin-bottom: 20px; }
  .hero__sub { font-size: 16px; margin-bottom: 26px; }
  .hero__cta { flex-direction: column; align-items: stretch; gap: 10px; margin-bottom: 40px; }
  .hero__cta .btn { justify-content: center; width: 100%; padding: 15px 22px; }
  .hero__trust > span { font-size: 10.5px; }
  .trust__row { font-size: 12.5px; gap: 8px; }
  .hero__visual { min-height: auto; max-width: 360px; }
  .hero__scroll { display: none; }

  /* dashboard */
  .dash { transform: none !important; padding: 20px; border-radius: 22px; }
  .dash__value { font-size: 28px; }
  .dash__bars { height: 64px; }
  .chart { height: 110px; }
  .floater { display: none; } /* avoid clipping the dashboard on narrow screens */

  /* stats */
  .stats { padding: 40px 0; }
  .stats__grid { grid-template-columns: 1fr; gap: 0; }
  .stat { border-left: none; padding: 18px 0; border-top: 1px solid rgba(255,255,255,0.08); }
  .stat:first-child { border-top: none; padding-top: 0; }
  .stat:last-child { border-bottom: none; }
  .stat__num { font-size: 38px; }

  /* marquee */
  .marquee { padding: 16px 0; }
  .marquee__track { font-size: 20px; gap: 22px; animation-duration: 28s; }
  .marquee__track i { font-size: 14px; }

  /* about */
  .split { gap: 56px; }
  .split__copy .h2 { font-size: clamp(28px, 8vw, 36px); }
  .split__copy .lead { font-size: 16px; margin-bottom: 28px; }
  .mv-grid { grid-template-columns: 1fr; }
  .frame__badge { font-size: 11.5px; padding: 10px 14px; left: 16px; }

  /* services */
  .services { border-radius: 28px 28px 0 0; }
  .bento { grid-template-columns: 1fr; gap: 14px; }
  .bento__card { padding: 26px; min-height: auto; }
  .bento__card--lead { min-height: 360px; grid-column: span 1; }
  .bento__card--wide { grid-column: span 1; }
  .bento__card h3 { font-size: 19px; }
  .bento__rates { gap: 16px; }
  .bento__rates strong { font-size: 26px; }
  .bento__line { display: none; }

  /* approach */
  .story__step { padding: 48px 0; }
  .story__step h4 { font-size: 26px; margin-bottom: 12px; }
  .story__step p { font-size: 15.5px; }
  .story__counter span { font-size: 56px; }

  /* clients */
  .clients__grid { grid-template-columns: 1fr; gap: 14px; }
  .client { padding: 28px 24px; }

  /* team */
  .team__grid { grid-template-columns: 1fr; gap: 16px; }
  .member {
    grid-template-columns: 1fr; text-align: center;
    padding: 28px 22px; gap: 22px;
  }
  .member__visual { width: 140px; height: 140px; font-size: 48px; margin: 0 auto; }
  .member h3 { font-size: 21px; }
  .member__role { font-size: 11.5px; }
  .member__bio { font-size: 14px; }
  .member__meta { align-items: center; gap: 10px; }
  .member__meta a { font-size: 13px; }

  /* gallery */
  .gallery__grid { grid-template-columns: 1fr; grid-auto-rows: 240px; }
  .g-item--hero { grid-column: span 1; grid-row: span 1; min-height: 260px; }
  .g-item figcaption { padding: 18px 18px 16px; }
  .g-item figcaption strong { font-size: 15px; }
  .g-play { width: 56px; height: 56px; opacity: 1; }

  /* quote */
  .quote { padding: 90px 0; }
  .quote__text { font-size: clamp(26px, 7vw, 34px); max-width: 18ch; padding: 0 8px; }

  /* contact */
  .contact__inner { gap: 36px; }
  .contact__copy .h2 { font-size: clamp(28px, 8vw, 36px); }
  .contact__list a { font-size: 16px; }
  .contact__form { padding: 26px 22px; border-radius: 22px; }
  .contact__form .btn { width: 100%; justify-content: center; }

  /* footer */
  .footer { padding: 40px 0 30px; }
  .footer__top { flex-direction: column; align-items: flex-start; gap: 22px; padding-bottom: 28px; }
  .footer__nav { flex-wrap: wrap; gap: 18px; }
  .footer__bottom { flex-direction: column; gap: 6px; align-items: flex-start; padding-top: 22px; font-size: 12px; }
}

@media (max-width: 380px) {
  .container { padding: 0 14px; }
  .nav__inner { padding: 0 14px; }
  .hero__inner { padding: 0 14px; }
  .hero__title { font-size: clamp(34px, 10vw, 42px); }
  .marquee__track { font-size: 17px; }
  .footer__nav { gap: 12px; }
  .footer__nav a { font-size: 13px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
  .hero__title .line > span { transform: none; opacity: 1; }
}
