/* =============================================================
   West Ocean Digital — styles  ·  v2 (LIGHT)
   Light canvas · cool rich gradient (blue → azure → teal)
   Same structure as styles.css, light-themed.
   ============================================================= */

/* ---------- Tokens ---------- */
:root {
  /* canvas */
  --bg:        #F4F6FA;   /* cool light paper */
  --bg-elev:   #FFFFFF;   /* cards / lifted bands */
  --bg-tint:   #ECF2FD;   /* soft accent-tinted band */
  --bg-deep:   #0B1020;   /* footer / deep navy */
  --surface:   #FFFFFF;
  --surface-2: #F6F9FE;
  --line:      rgba(15,23,42,0.10);
  --line-soft: rgba(15,23,42,0.055);

  /* text */
  --text:      #0E1626;
  --text-mute: #54617A;
  --text-dim:  #8A95AC;
  --on-dark:   rgba(244,246,250,0.92);
  --on-dark-mute: rgba(244,246,250,0.60);

  /* rich cool accents */
  --accent:    #2F6BFF;
  --accent2:   #16A6E8;
  --accent3:   #00C7A4;
  --grad:      linear-gradient(115deg, #2F6BFF 0%, #16A6E8 50%, #00C7A4 100%);

  --shadow-sm: 0 1px 2px rgba(15,23,42,.05), 0 16px 34px -20px rgba(15,23,42,.28);
  --shadow:    0 30px 64px -32px rgba(15,23,42,.30);
  --shadow-lg: 0 50px 100px -50px rgba(15,23,42,.34);

  /* type */
  --display: 'Bricolage Grotesque', 'Hanken Grotesk', system-ui, sans-serif;
  --sans:    'Hanken Grotesk', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --mono:    'IBM Plex Mono', ui-monospace, 'SFMono-Regular', Menlo, monospace;

  /* metrics */
  --container: 1180px;
  --measure: 60ch;
  --r: 14px; --r-lg: 22px; --r-xl: 30px;
  --ease: cubic-bezier(.2, .7, .2, 1);
  --nav-h: 74px;
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
html, body { overflow-x: hidden; width: 100%; }
body {
  font-family: var(--sans);
  font-size: clamp(1rem, 0.96rem + 0.2vw, 1.1rem);
  line-height: 1.62; color: var(--text); background: var(--bg);
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; font-synthesis: none;
}
body::after {
  content: ""; position: fixed; inset: 0; z-index: 1; pointer-events: none; opacity: .03;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; }
button { font: inherit; color: inherit; }
::selection { background: rgba(47,107,255,.18); color: var(--text); }

h1, h2, h3, h4 { font-family: var(--display); font-weight: 700; line-height: 1.04; letter-spacing: -0.028em; color: var(--text); }
em { font-style: italic; }
.grad-text,
.hero__title em, .head__title em, .wedge__statement em,
.beliefs__item p em, .cta__title em, .why__statement em, .principle__title em {
  background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; font-style: normal;
}
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 4px; }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: clamp(1.25rem, 5vw, 3rem); }
.section { position: relative; padding-block: clamp(4.5rem, 9vw, 8.5rem); z-index: 2; }
.section--tight { padding-block: clamp(3rem, 6vw, 5rem); }
.section--glass { background: var(--bg-elev); border-block: 1px solid var(--line-soft); }
.section--dark { background: var(--bg-tint); border-block: 1px solid var(--line-soft); }

.skip-link { position: absolute; left: 1rem; top: -4rem; z-index: 300; background: var(--accent); color: #fff; padding: .6rem 1rem; border-radius: 8px; transition: top .25s var(--ease); }
.skip-link:focus { top: 1rem; }

.eyebrow { display: inline-flex; align-items: center; gap: .6em; font-family: var(--mono); font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: var(--text-mute); }
.eyebrow::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background-image: var(--grad); flex: none; }

.lead { font-size: clamp(1.12rem, 1rem + 0.6vw, 1.5rem); line-height: 1.45; color: var(--text-mute); }
.prose { max-width: var(--measure); color: var(--text-mute); }
.prose p + p { margin-top: 1.1em; }

/* ---------- Buttons ---------- */
.btn { position: relative; display: inline-flex; align-items: center; gap: .55em; font-family: var(--sans); font-weight: 600; font-size: .98rem; letter-spacing: .005em; line-height: 1; padding: 1.05em 1.7em; border-radius: 100px; border: 1px solid transparent; cursor: pointer; text-decoration: none; transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s var(--ease), border-color .3s var(--ease), color .3s var(--ease); }
.btn .arrow { transition: transform .3s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }
.btn--primary { background-image: var(--grad); color: #fff; font-weight: 700; box-shadow: 0 12px 28px -12px rgba(47,107,255,.5); }
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 20px 40px -14px rgba(47,107,255,.6); }
.btn--ghost { background: #fff; color: var(--text); border-color: var(--line); box-shadow: var(--shadow-sm); }
.btn--ghost:hover { border-color: rgba(15,23,42,.28); transform: translateY(-2px); }

.tlink { text-decoration: none; font-weight: 600; color: var(--text); background-image: var(--grad); background-size: 0% 1.5px; background-repeat: no-repeat; background-position: 0 100%; transition: background-size .4s var(--ease); padding-bottom: 2px; }
.tlink:hover { background-size: 100% 1.5px; }

/* ---------- Glows (accent tints on light) ---------- */
.glow { position: absolute; border-radius: 50%; filter: blur(90px); pointer-events: none; z-index: 0; }
.glow--violet  { background: radial-gradient(circle, rgba(47,107,255,.42), transparent 68%); animation: floatA 17s var(--ease) infinite alternate; }
.glow--fuchsia { background: radial-gradient(circle, rgba(22,166,232,.4), transparent 68%); animation: floatB 21s var(--ease) infinite alternate; }
.glow--coral   { background: radial-gradient(circle, rgba(0,199,164,.4), transparent 68%); animation: floatA 23s var(--ease) infinite alternate; }
@keyframes floatA { to { transform: translate(36px, 28px) scale(1.08); } }
@keyframes floatB { to { transform: translate(-32px, 24px) scale(1.1); } }

/* ---------- Header / nav ---------- */
.site-header { position: sticky; top: 0; z-index: 100; background: transparent; border-bottom: 1px solid transparent; transition: background .4s var(--ease), border-color .4s var(--ease); }
.site-header.is-stuck { background: rgba(244,246,250,.8); -webkit-backdrop-filter: saturate(150%) blur(14px); backdrop-filter: saturate(150%) blur(14px); border-bottom-color: var(--line); }
.nav { height: var(--nav-h); display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }
.brand { display: inline-flex; align-items: center; gap: .7rem; text-decoration: none; color: var(--text); }
.brand__mark { width: 34px; height: 34px; flex: none; border-radius: 11px; box-shadow: 0 8px 22px -8px rgba(47,107,255,.5); }
.brand__name { font-family: var(--display); font-weight: 700; font-size: 1.14rem; letter-spacing: -0.01em; line-height: 1; display: inline-flex; align-items: baseline; gap: .45rem; white-space: nowrap; }
.brand__name small { font-family: var(--mono); font-weight: 500; font-size: .58rem; letter-spacing: .2em; text-transform: uppercase; color: var(--text-dim); }

.nav__links { display: flex; flex-direction: column; align-items: flex-start; gap: 0; list-style: none; margin: 0; padding: 1rem clamp(1.25rem, 5vw, 3rem) 1.75rem; position: fixed; inset: var(--nav-h) 0 auto 0; background: #fff; -webkit-backdrop-filter: blur(16px); backdrop-filter: blur(16px); border-bottom: 1px solid var(--line); box-shadow: var(--shadow-lg); transform: translateY(-14px); opacity: 0; visibility: hidden; pointer-events: none; transition: opacity .3s var(--ease), transform .3s var(--ease), visibility .3s; }
.nav.is-open .nav__links { transform: none; opacity: 1; visibility: visible; pointer-events: auto; }
.nav__links li { width: 100%; }
.nav__link { text-decoration: none; font-size: 1.06rem; font-weight: 500; color: var(--text-mute); position: relative; display: block; width: 100%; padding-block: .9rem; border-bottom: 1px solid var(--line-soft); transition: color .25s var(--ease); }
.nav__link:hover, .nav__link.active { color: var(--text); }
.nav__cta { margin-top: 1.1rem; width: 100%; justify-content: center; }

.nav__toggle { display: inline-flex; width: 44px; height: 44px; border: 0; background: transparent; cursor: pointer; align-items: center; justify-content: center; margin-right: -10px; }
.nav__toggle span { position: relative; width: 22px; height: 1.6px; background: var(--text); transition: .3s var(--ease); }
.nav__toggle span::before, .nav__toggle span::after { content: ""; position: absolute; left: 0; width: 22px; height: 1.6px; background: var(--text); transition: .3s var(--ease); }
.nav__toggle span::before { top: -7px; }
.nav__toggle span::after { top: 7px; }
.nav.is-open .nav__toggle span { background: transparent; }
.nav.is-open .nav__toggle span::before { top: 0; transform: rotate(45deg); }
.nav.is-open .nav__toggle span::after { top: 0; transform: rotate(-45deg); }

.tide { display: none !important; }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; }
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(15,23,42,.05) 1px, transparent 1px), linear-gradient(90deg, rgba(15,23,42,.05) 1px, transparent 1px); background-size: 64px 64px; -webkit-mask-image: radial-gradient(120% 80% at 50% 0%, #000 30%, transparent 75%); mask-image: radial-gradient(120% 80% at 50% 0%, #000 30%, transparent 75%); }
.hero__inner { position: relative; z-index: 2; padding-top: clamp(3.5rem, 8vw, 6.5rem); padding-bottom: clamp(4rem, 9vw, 7rem); }
.hero__eyebrow { margin-bottom: clamp(1.6rem, 3vw, 2.2rem); padding: .55em 1em; border: 1px solid var(--line); border-radius: 100px; background: rgba(255,255,255,.7); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); box-shadow: var(--shadow-sm); }
.hero__title { font-size: clamp(2.9rem, 1.5rem + 6vw, 6.1rem); line-height: 0.98; letter-spacing: -0.035em; max-width: 16ch; font-weight: 700; }
.hero__sub { margin-top: clamp(1.6rem, 3vw, 2.3rem); font-size: clamp(1.08rem, 1rem + 0.5vw, 1.34rem); line-height: 1.5; color: var(--text-mute); max-width: 50ch; }
.hero__actions { margin-top: clamp(2.2rem, 4vw, 3rem); display: flex; flex-wrap: wrap; gap: .9rem; }

/* ---------- Marquee ---------- */
.marquee { position: relative; overflow: hidden; border-block: 1px solid var(--line-soft); background: var(--bg-elev); -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent); mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent); }
.marquee__track { display: flex; width: max-content; animation: marquee 30s linear infinite; }
.marquee__group { display: flex; align-items: center; gap: clamp(1.8rem, 4vw, 3.4rem); padding: 1.15rem clamp(.9rem, 2vw, 1.7rem) 1.15rem 0; }
.marquee__item { display: inline-flex; align-items: center; gap: .7rem; white-space: nowrap; font-family: var(--mono); font-size: .8rem; letter-spacing: .14em; text-transform: uppercase; color: var(--text-mute); }
.marquee__item::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background-image: var(--grad); flex: none; }
.marquee:hover .marquee__track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Section heading ---------- */
.head { max-width: 32ch; }
.head--wide { max-width: 48ch; }
.head__title { font-size: clamp(2.1rem, 1.3rem + 3.2vw, 3.6rem); letter-spacing: -0.03em; }
.head .eyebrow { margin-bottom: 1.4rem; }
.head__lead { margin-top: 1.5rem; }

/* ---------- Wedge ---------- */
.wedge__grid { display: grid; gap: clamp(2.5rem, 6vw, 5rem); }
.wedge__statement { font-family: var(--display); font-weight: 700; font-size: clamp(1.9rem, 1.1rem + 3vw, 3.2rem); line-height: 1.1; letter-spacing: -0.03em; max-width: 18ch; }
.wedge__body { max-width: var(--measure); color: var(--text-mute); }
.wedge__body p + p { margin-top: 1.2em; }
.wedge__turn { margin-top: 1.6em; padding-top: 1.6em; border-top: 1px solid var(--line); font-weight: 600; color: var(--text); font-size: 1.08rem; }

/* ---------- Disciplines (bento) ---------- */
.disciplines { display: grid; gap: 1.1rem; margin-top: clamp(2.8rem, 6vw, 4.5rem); }
.discipline { position: relative; overflow: hidden; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-xl); padding: clamp(1.7rem, 3vw, 2.6rem); box-shadow: var(--shadow-sm); transition: transform .5s var(--ease), box-shadow .5s var(--ease); }
.discipline::before { content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1px; background: var(--grad); -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude; opacity: 0; transition: opacity .5s var(--ease); pointer-events: none; }
.discipline:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.discipline:hover::before { opacity: .9; }
.discipline__head { display: flex; align-items: baseline; gap: 1rem; margin-bottom: 1.1rem; }
.discipline__no { font-family: var(--display); font-weight: 700; font-size: clamp(2rem, 4vw, 2.8rem); line-height: 1; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.discipline__name { font-size: clamp(1.5rem, 1.1rem + 1.6vw, 2.1rem); }
.discipline__body { color: var(--text-mute); max-width: 52ch; }
.discipline__tags { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.4rem; list-style: none; padding: 0; }
.discipline__tags li { font-family: var(--mono); font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; color: var(--text-mute); border: 1px solid var(--line); border-radius: 100px; padding: .42em .85em; }

/* ---------- Stages ---------- */
.stages { display: grid; gap: 1.1rem; margin-top: clamp(2.8rem, 6vw, 4.5rem); }
.stage { position: relative; overflow: hidden; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-xl); padding: clamp(1.7rem, 3vw, 2.4rem); box-shadow: var(--shadow-sm); transition: transform .5s var(--ease), box-shadow .5s var(--ease); }
.stage::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; background-image: var(--grad); transform: scaleY(0); transform-origin: top; transition: transform .5s var(--ease); }
.stage:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.stage:hover::before { transform: scaleY(1); }
.stage__no { font-family: var(--mono); font-size: .72rem; letter-spacing: .2em; color: var(--accent); }
.stage__name { font-size: clamp(1.45rem, 1.1rem + 1vw, 1.9rem); margin-top: .85rem; }
.stage__name span { display: block; font-family: var(--mono); font-size: .72rem; font-weight: 500; letter-spacing: .12em; text-transform: uppercase; color: var(--text-dim); margin-top: .6rem; }
.stage__body { color: var(--text-mute); margin-top: 1rem; font-size: .98rem; }
.stage__depth { position: absolute; right: 1.2rem; bottom: .4rem; font-family: var(--display); font-weight: 700; font-style: italic; font-size: 4.6rem; color: rgba(15,23,42,.05); line-height: 1; pointer-events: none; }

/* ---------- Beliefs (soft tinted band) ---------- */
.beliefs__list { display: grid; gap: 0; margin-top: clamp(2.5rem, 5vw, 4rem); list-style: none; padding: 0; }
.beliefs__item { display: grid; gap: .4rem 2rem; align-items: baseline; padding-block: clamp(1.5rem, 3vw, 2.3rem); border-top: 1px solid var(--line); }
.beliefs__item:first-child { border-top: 0; }
.beliefs__item p { font-family: var(--display); font-weight: 700; font-size: clamp(1.5rem, 1rem + 2.2vw, 2.6rem); line-height: 1.16; letter-spacing: -0.025em; }
.beliefs__k { font-family: var(--mono); font-size: .74rem; letter-spacing: .2em; color: var(--accent); padding-top: .5rem; }

/* ---------- CTA ---------- */
.cta { position: relative; overflow: hidden; background: var(--bg-elev); border-top: 1px solid var(--line-soft); }
.cta__inner { position: relative; z-index: 2; text-align: center; max-width: 720px; margin-inline: auto; }
.cta__title { font-size: clamp(2.4rem, 1.4rem + 4vw, 4.4rem); letter-spacing: -0.035em; max-width: 16ch; margin-inline: auto; }
.cta__sub { margin: 1.4rem auto 0; max-width: 46ch; color: var(--text-mute); font-size: 1.12rem; }

/* ---------- Contact form ---------- */
.form { position: relative; z-index: 2; display: grid; gap: 1.05rem; max-width: 560px; margin: 2.8rem auto 0; text-align: left; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-xl); padding: clamp(1.6rem, 4vw, 2.6rem); box-shadow: var(--shadow); }
.form__row { display: grid; gap: .5rem; }
.form label { font-family: var(--mono); font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; color: var(--text-dim); }
.form input, .form textarea { font: inherit; font-size: 1rem; color: var(--text); background: var(--bg); border: 1px solid var(--line); border-radius: 12px; padding: .9em 1em; transition: border-color .3s var(--ease), background .3s var(--ease); }
.form input::placeholder, .form textarea::placeholder { color: var(--text-dim); }
.form input:focus, .form textarea:focus { outline: none; border-color: var(--accent); background: #fff; }
.form textarea { resize: vertical; min-height: 120px; }
.form__hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form__submit { justify-self: start; margin-top: .3rem; }
.form__note { font-size: .85rem; color: var(--text-mute); }
.form__status { font-size: .92rem; min-height: 1.2em; color: #1466CC; font-weight: 600; }

/* ---------- Footer (dark anchor) ---------- */
.site-footer { background: var(--bg-deep); border-top: 1px solid var(--line); padding-block: clamp(3.5rem, 7vw, 5.5rem) 2.5rem; position: relative; z-index: 2; }
.site-footer .brand { color: #fff; }
.site-footer .brand__name { color: #fff; }
.site-footer .brand__name small { color: var(--on-dark-mute); }
.footer__top { display: grid; gap: 2.5rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,.12); }
.footer__tagline { margin-top: 1.2rem; color: var(--on-dark-mute); max-width: 34ch; line-height: 1.55; }
.footer__cols { display: grid; gap: 2rem; }
.footer__col h4 { font-family: var(--mono); font-weight: 500; font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: #5B8CFF; margin-bottom: 1rem; }
.footer__col ul { list-style: none; padding: 0; display: grid; gap: .65rem; }
.footer__col a, .footer__col span { text-decoration: none; color: var(--on-dark); font-size: .96rem; transition: color .25s var(--ease); }
.footer__col a:hover { color: #fff; }
.footer__bottom { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; align-items: center; padding-top: 2rem; }
.footer__bottom p { font-size: .82rem; color: var(--on-dark-mute); }
.footer__bottom .mono { font-family: var(--mono); letter-spacing: .1em; }

/* =============================================================
   About page specifics
   ============================================================= */
.about-hero .hero__title { max-width: 18ch; }
.why__grid { display: grid; gap: clamp(2.5rem, 6vw, 5rem); align-items: start; }
.why__statement { font-family: var(--display); font-weight: 700; font-size: clamp(1.8rem, 1.1rem + 2.6vw, 2.9rem); line-height: 1.12; letter-spacing: -0.03em; }
.principles { display: grid; gap: 1.1rem; margin-top: clamp(2.8rem, 6vw, 4.5rem); }
.principle { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-xl); padding: clamp(1.6rem, 3vw, 2.3rem); box-shadow: var(--shadow-sm); transition: transform .5s var(--ease), box-shadow .5s var(--ease); }
.principle:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.principle__no { font-family: var(--mono); font-size: .74rem; letter-spacing: .2em; color: var(--accent); }
.principle__title { font-size: clamp(1.3rem, 1.05rem + 1vw, 1.7rem); margin-top: .9rem; }
.principle__body { color: var(--text-mute); margin-top: .8rem; font-size: .98rem; }
.team__grid { display: grid; gap: 1.1rem; margin-top: clamp(2.5rem, 5vw, 4rem); }
.team__member { text-align: left; }
.team__avatar { aspect-ratio: 4 / 5; border-radius: var(--r-xl); background: var(--surface); border: 1px solid var(--line); display: grid; place-items: center; overflow: hidden; position: relative; box-shadow: var(--shadow-sm); }
.team__avatar svg { width: 42%; opacity: .5; }
.team__name { font-family: var(--display); font-weight: 700; font-size: 1.2rem; margin-top: 1rem; }
.team__role { font-family: var(--mono); font-size: .7rem; letter-spacing: .14em; text-transform: uppercase; color: var(--text-dim); margin-top: .4rem; }
.dont__list { display: grid; gap: 0; margin-top: clamp(2.5rem, 5vw, 4rem); list-style: none; padding: 0; }
.dont__item { display: flex; align-items: baseline; gap: 1.2rem; padding-block: clamp(1.2rem, 2.5vw, 1.8rem); border-top: 1px solid var(--line); font-family: var(--display); font-weight: 700; font-size: clamp(1.3rem, 1rem + 1.4vw, 2rem); line-height: 1.2; letter-spacing: -0.02em; }
.dont__item:last-child { border-bottom: 1px solid var(--line); }
.dont__item::before { content: "\2715"; font-family: var(--sans); font-size: .8em; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; flex: none; transform: translateY(.05em); }

/* ---------- Proof bar (logos + platforms) ---------- */
.proof { border-bottom: 1px solid var(--line-soft); background: var(--bg); }
.proof__inner { padding-block: clamp(2.2rem, 4vw, 3.2rem); display: grid; gap: 1.6rem; }
.proof__logos { display: grid; grid-template-columns: repeat(2, 1fr); gap: .9rem; }
.proof__logo { height: 80px; border: 1px solid var(--line); border-radius: 14px; background: #fff; display: grid; place-items: center; padding: 14px 20px; overflow: hidden; }
.proof__logo img { max-width: 100%; max-height: 50px; object-fit: contain; }
.proof__platforms { display: flex; flex-wrap: wrap; align-items: center; gap: .7rem 1.5rem; padding-top: .4rem; }
.proof__platforms .lbl { font-family: var(--mono); font-size: .68rem; letter-spacing: .16em; text-transform: uppercase; color: var(--text-dim); }
.proof__platforms b { font-family: var(--display); font-weight: 600; font-size: 1rem; color: var(--text-mute); }
@media (min-width: 560px) { .proof__logos { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 940px) { .proof__logos { grid-template-columns: repeat(5, 1fr); } }

/* ---------- Work (reels + case studies) ---------- */
.work__reels { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; margin-top: clamp(2.5rem, 5vw, 4rem); }
.reel { position: relative; aspect-ratio: 9 / 16; border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--line); background: linear-gradient(160deg, #e2eaf8, #eef2f8); box-shadow: var(--shadow-sm); display: flex; align-items: flex-end; transition: transform .5s var(--ease), box-shadow .5s var(--ease); }
.reel:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.reel__bg { position: absolute; inset: 0; background: var(--grad); opacity: .16; }
.reel__play { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 52px; height: 52px; border-radius: 50%; background: rgba(255,255,255,.9); display: grid; place-items: center; box-shadow: var(--shadow-sm); }
.reel__play::before { content: ""; border-left: 13px solid var(--text); border-top: 8px solid transparent; border-bottom: 8px solid transparent; margin-left: 3px; }
.reel__cap { position: relative; z-index: 2; width: 100%; padding: 1.4rem 1rem 1rem; background: linear-gradient(transparent, rgba(14,22,38,.6)); color: #fff; }
.reel__brand { font-family: var(--display); font-weight: 700; font-size: 1.02rem; }
.reel__tag { font-family: var(--mono); font-size: .6rem; letter-spacing: .12em; text-transform: uppercase; opacity: .85; margin-top: .25rem; }
.reel:nth-child(1) .reel__bg { background: linear-gradient(150deg, #2F6BFF, #16A6E8); opacity: .92; }
.reel:nth-child(2) .reel__bg { background: linear-gradient(150deg, #16A6E8, #00C7A4); opacity: .92; }
.reel:nth-child(3) .reel__bg { background: linear-gradient(150deg, #5B5BF0, #2F6BFF); opacity: .92; }
.reel:nth-child(4) .reel__bg { background: linear-gradient(150deg, #00C7A4, #16A6E8); opacity: .92; }
@media (min-width: 640px) { .work__reels { grid-template-columns: repeat(4, 1fr); } }

.cases { display: grid; gap: 1.1rem; margin-top: 1.1rem; }
.case { position: relative; display: flex; flex-direction: column; border: 1px solid var(--line); border-radius: var(--r-xl); overflow: hidden; background: var(--surface); box-shadow: var(--shadow-sm); transition: transform .5s var(--ease), box-shadow .5s var(--ease); }
.case:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.case__thumb { position: relative; aspect-ratio: 16 / 9; background: linear-gradient(140deg, #e7eefb, #eaf6f1); }
.case__thumb::after { content: ""; position: absolute; inset: 0; background: var(--grad); opacity: .12; }
.case__body { padding: clamp(1.4rem, 3vw, 2rem); }
.case__brand { font-family: var(--mono); font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; color: var(--text-dim); }
.case__title { font-family: var(--display); font-weight: 700; font-size: clamp(1.25rem, 1.1rem + .6vw, 1.5rem); margin-top: .5rem; }
.case__meta { margin-top: .9rem; display: flex; flex-wrap: wrap; gap: .5rem; }
.case__meta span { font-family: var(--mono); font-size: .64rem; letter-spacing: .08em; text-transform: uppercase; color: var(--text-mute); border: 1px solid var(--line); border-radius: 100px; padding: .35em .7em; }
.case__link { margin-top: 1.3rem; }
@media (min-width: 760px) { .cases { grid-template-columns: repeat(2, 1fr); } }

/* ---------- Testimonials ---------- */
.quotes { display: grid; gap: 1.1rem; margin-top: clamp(2.5rem, 5vw, 4rem); }
.quote { position: relative; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-xl); padding: clamp(1.7rem, 3vw, 2.4rem); box-shadow: var(--shadow-sm); }
.quote__mark { font-family: var(--display); font-weight: 700; font-size: 2.6rem; line-height: .5; color: transparent; background: var(--grad); -webkit-background-clip: text; background-clip: text; }
.quote__text { font-family: var(--display); font-weight: 600; font-size: clamp(1.15rem, 1rem + .6vw, 1.45rem); line-height: 1.4; margin-top: 1.1rem; color: var(--text); }
.quote__by { margin-top: 1.5rem; display: flex; align-items: center; gap: .8rem; }
.quote__avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--bg-elev); border: 1px solid var(--line); flex: none; }
.quote__name { font-weight: 600; font-size: .96rem; }
.quote__role { font-family: var(--mono); font-size: .64rem; letter-spacing: .1em; text-transform: uppercase; color: var(--text-dim); margin-top: .2rem; }
.quote__ph { position: absolute; top: 1rem; right: 1rem; font-family: var(--mono); font-size: .55rem; letter-spacing: .1em; text-transform: uppercase; color: var(--accent); background: var(--bg-elev); border: 1px solid var(--line); border-radius: 100px; padding: .3em .6em; }
@media (min-width: 760px) { .quotes { grid-template-columns: repeat(2, 1fr); } }

/* ---------- Offer points (in CTA) ---------- */
.cta__offer { list-style: none; padding: 0; margin: 1.9rem auto 0; max-width: 520px; display: grid; gap: .75rem; text-align: left; }
.cta__offer li { display: flex; gap: .7rem; color: var(--text-mute); }
.cta__offer li::before { content: ""; width: 20px; height: 20px; flex: none; border-radius: 6px; background: var(--bg-elev); border: 1px solid var(--line); background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232F6BFF' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E"); background-size: 12px; background-position: center; background-repeat: no-repeat; }

/* ---------- Sticky CTA bar ---------- */
.cta-bar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 90; transform: translateY(135%); transition: transform .45s var(--ease); }
.cta-bar.show { transform: none; }
.cta-bar__inner { max-width: var(--container); margin: 0 auto clamp(.6rem, 2vw, 1rem); margin-inline: clamp(.6rem, 3vw, 1.5rem); display: flex; align-items: center; justify-content: space-between; gap: 1rem; background: rgba(255,255,255,.92); -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px); border: 1px solid var(--line); border-radius: 16px; padding: .75rem .8rem .75rem 1.4rem; box-shadow: var(--shadow-lg); }
.cta-bar__text { font-family: var(--display); font-weight: 600; font-size: 1rem; color: var(--text); }
.cta-bar__text span { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.cta-bar .btn { white-space: nowrap; padding: .8em 1.3em; }
@media (max-width: 560px) { .cta-bar__text { display: none; } .cta-bar .btn { width: 100%; } .cta-bar__inner { padding: .6rem; } }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }

/* ---------- Responsive ---------- */
@media (min-width: 640px) {
  .stages { grid-template-columns: repeat(3, 1fr); }
  .footer__cols { grid-template-columns: repeat(3, 1fr); }
  .team__grid { grid-template-columns: repeat(2, 1fr); }
  .disciplines { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 880px) {
  .nav__toggle { display: none; }
  .nav__links { position: static; flex-direction: row; align-items: center; gap: clamp(1.5rem, 3vw, 2.5rem); padding: 0; margin: 0; background: none; border: 0; box-shadow: none; transform: none; opacity: 1; visibility: visible; pointer-events: auto; }
  .nav__links li { width: auto; }
  .nav__link { display: inline-block; width: auto; padding-block: .35rem; border: 0; font-size: .96rem; }
  .nav__link.active::after { content: ""; position: absolute; left: 0; bottom: -2px; width: 100%; height: 1.5px; background-image: var(--grad); }
  .nav__cta { margin-top: 0; width: auto; }
}
@media (min-width: 900px) {
  .wedge__grid { grid-template-columns: 1.05fr 1fr; }
  .why__grid { grid-template-columns: 1fr 1fr; }
  .principles { grid-template-columns: repeat(2, 1fr); }
  .team__grid { grid-template-columns: repeat(4, 1fr); }
  .footer__top { grid-template-columns: 1.2fr 1.8fr; }
  .head--split { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; max-width: none; align-items: end; }
  .disciplines { grid-template-columns: repeat(6, 1fr); }
  .discipline:nth-child(1) { grid-column: span 4; }
  .discipline:nth-child(2) { grid-column: span 2; }
  .discipline:nth-child(3) { grid-column: span 6; }
  .discipline:nth-child(3) .discipline__body { max-width: 60ch; }
}
@media (min-width: 1040px) { .beliefs__item { grid-template-columns: 80px 1fr; } }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .reveal { opacity: 1; transform: none; }
  .marquee__track { animation: none; }
  .glow { animation: none; }
}
