@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400;1,700&family=Inter:wght@300;400;500;600;700;900&display=swap');

/* ═══════════════════════════════════════════════════════
   DESIGN SYSTEM — AiR: Audit It Right
   Palette:  White (#FFFFFF) + AIR Navy (#1B2A4A) + Audit Red (#C0272D)
   Fonts:    Playfair Display (Serif) + Inter (Sans)
   ═══════════════════════════════════════════════════════ */

/* ─── TOKENS ──────────────────────────────────────── */
:root {
  --navy:    #1B2A4A;
  --navy-90: rgba(27,42,74,.92);
  --navy-70: rgba(27,42,74,.7);
  --navy-20: rgba(27,42,74,.08);
  --navy-10: rgba(27,42,74,.04);
  --red:     #C0272D;
  --red-10:  rgba(192,39,45,.08);
  --white:   #FFFFFF;
  --off-white: #F8F9FA;
  --rule:    rgba(27,42,74,.1);
  --muted:   #5A6577;
  --text:    #1B2A4A;

  --serif: 'Playfair Display', Georgia, serif;
  --sans:  'Inter', system-ui, sans-serif;

  --gold:      #B8962E;
  --gold-dark: #A07E22;
  --gold-glow: rgba(184,150,46,.25);

  --green-wa:      #5a8c5a;
  --green-wa-dark: #4a7a4a;
  --green-wa-glow: rgba(90,140,90,.3);

  --max: 1160px;
  --ease: 0.25s ease;
  --bounce: cubic-bezier(.16,1,.3,1);
}

/* ─── BASE RESET ──────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; height: 100%; }
body {
  font-family: var(--sans); color: var(--text);
  background: var(--white); line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100%; display: flex; flex-direction: column;
}
main { flex: 1; }
img  { display: block; max-width: 100%; }
a    { text-decoration: none; color: inherit; }
ul   { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 clamp(16px, 4vw, 48px); }

/* ─── SKIP LINK ──────────────────────────────────── */
.skip-link {
  position: absolute; top: -100%; left: 16px;
  background: var(--navy); color: var(--white);
  padding: 10px 20px; font-size: 13px; font-weight: 600;
  border-radius: 4px; z-index: 9999;
  transition: top .2s ease;
}
.skip-link:focus { top: 16px; }

/* ─── SCROLL PROGRESS BAR ─────────────────────────── */
#scroll-bar {
  position: fixed; top: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--red), var(--gold)); z-index: 300;
  pointer-events: none;
  transform: scaleX(0); transform-origin: left;
  transition: transform .06s linear;
}

/* ─── SECTION LABEL ──────────────────────────────── */
.section-label {
  font-size: 11px; letter-spacing: .16em; text-transform: uppercase;
  color: var(--red); font-weight: 700; margin-bottom: 20px;
  display: flex; align-items: center; gap: 12px;
}
.section-label::before {
  content: ''; width: 32px; height: 2px; background: var(--red);
}
.section-label::after {
  content: '';
  flex: 1; height: 1px;
  background: currentColor; opacity: .12;
}

/* ─── FOCUS STATES ───────────────────────────────── */
:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ─── SELECTION ──────────────────────────────────── */
::selection { background: var(--navy); color: var(--white); }
::-moz-selection { background: var(--navy); color: var(--white); }

html { scrollbar-color: var(--navy) var(--off-white); }
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--off-white); }
::-webkit-scrollbar-thumb { background: var(--navy-70); border-radius: 5px; }
::-webkit-scrollbar-thumb:hover { background: var(--navy); }

h1, h2, h3 { text-wrap: balance; }


/* ════════════════════════════════════════════════════
   SCROLL-REVEAL ANIMATION SYSTEM
   ════════════════════════════════════════════════════ */
.sr {
  opacity: 0; transform: translateY(40px);
  transition: opacity .8s var(--bounce), transform .8s var(--bounce);
}
.sr.in { opacity: 1; transform: none; }

.sr-left {
  opacity: 0; transform: translateX(-50px);
  transition: opacity .8s var(--bounce), transform .8s var(--bounce);
}
.sr-left.in { opacity: 1; transform: none; }

.sr-right {
  opacity: 0; transform: translateX(50px);
  transition: opacity .8s var(--bounce), transform .8s var(--bounce);
}
.sr-right.in { opacity: 1; transform: none; }

.sr-scale {
  opacity: 0; transform: scale(.92);
  transition: opacity .7s var(--bounce), transform .7s var(--bounce);
}
.sr-scale.in { opacity: 1; transform: scale(1); }


/* ════════════════════════════════════════════════════
   NAVIGATION
   ════════════════════════════════════════════════════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  border-bottom: 1px solid transparent;
  transition: background .35s ease, border-color .35s ease,
              padding .35s ease, box-shadow .35s ease;
  padding: 24px 0;
}
.nav.on {
  background: rgba(255,255,255,.98);
  border-bottom: 1px solid rgba(27, 42, 74, 0.08);
  padding: 18px 0 22px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.nav__row {
  display: flex; align-items: center; justify-content: space-between;
}
.nav__brand {
  position: relative; height: 56px;
  text-decoration: none;
  min-width: 160px;
  z-index: 10;
  flex-shrink: 0;
}
.nav__name {
  position: absolute; left: 68px; top: 4px;
  display: flex; flex-direction: column; justify-content: center; gap: 2px;
  height: 68px;
  font-family: var(--sans); font-size: 16px; font-weight: 900;
  line-height: 1;
  color: var(--white); text-transform: uppercase; letter-spacing: 0.15em;
  transition: color .35s ease;
}
.nav.on .nav__name { color: var(--navy); }
.nav__logo--vertical {
  position: absolute; top: -18px; left: 0;
  width: 56px; height: auto; object-fit: contain;
  background: var(--white);
  padding: 16px 12px 22px;
  border-radius: 0 0 4px 4px;
  box-shadow: 0 8px 30px rgba(27,42,74,.1);
  transition: transform var(--bounce), box-shadow var(--ease), top var(--ease);
  transform-origin: top center;
}
.nav__brand:hover .nav__logo--vertical {
  transform: translateY(3px);
  box-shadow: 0 12px 40px rgba(27,42,74,.15);
}
.nav.on .nav__logo--vertical {
  box-shadow: 0 4px 16px rgba(27,42,74,.08);
  top: -12px;
}

.nav__links {
  display: flex; align-items: center; gap: 16px;
}
.nav__links a {
  font-size: 12px; font-weight: 500; letter-spacing: .02em;
  color: rgba(255,255,255,.75); transition: color var(--ease);
  position: relative; padding-bottom: 2px;
}
.nav__links a:hover { color: var(--white) !important; }
.nav__links a::after {
  content: ''; position: absolute; bottom: -2px; left: 0;
  width: 0; height: 2px; background: rgba(255,255,255,.6);
  transition: width .3s var(--bounce);
}
.nav__links a:hover::after { width: 100%; }
.nav.on .nav__links a { color: var(--muted); }
.nav.on .nav__links a:hover { color: var(--red) !important; }
.nav.on .nav__links a::after { background: var(--red); }
.nav.on .nav__links a:hover::after,
.nav.on .nav__links a.nav-active::after { width: 100%; }
.nav.on .nav__links a.nav-active { color: var(--navy) !important; font-weight: 600; }

.nav__cta,
.nav__links a.nav__cta {
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 11.5px; font-weight: 600; letter-spacing: .04em;
  color: var(--white); background: var(--gold);
  padding: 11px 20px; border-radius: 6px;
  transition: all var(--ease); border: none;
  position: relative; overflow: hidden; isolation: isolate;
  white-space: nowrap; line-height: 1; vertical-align: middle;
}
.nav__links a.nav__cta::after { display: none; }
.nav__cta:hover {
  background: var(--gold-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px var(--gold-glow);
}
.nav__cta::before {
  content: '';
  position: absolute; top: 0; left: -80%;
  width: 50%; height: 100%; z-index: -1;
  background: linear-gradient(105deg, transparent 0%, rgba(255,255,255,.28) 50%, transparent 100%);
  transform: skewX(-20deg);
  transition: left .65s var(--bounce);
}
.nav__cta:hover::before { left: 130%; }

.nav__burger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav__burger span {
  display: block; width: 22px; height: 2px;
  background: var(--white); transition: all .3s ease;
  border-radius: 1px;
}
.nav.on .nav__burger span { background: var(--navy); }


/* ════════════════════════════════════════════════════
   HERO
   ════════════════════════════════════════════════════ */
.hero {
  min-height: 100vh; min-height: 100dvh;
  height: 100vh; height: 100dvh;
  padding-top: 110px;
  background: var(--navy);
  display: flex; flex-direction: column;
  justify-content: center;
  position: relative; overflow: hidden;
}
@keyframes ken-burns {
  0% { transform: scale(1); }
  100% { transform: scale(1.15); }
}
.hero-bg-wrap {
  position: absolute; inset: 0; z-index: 0;
  overflow: hidden; pointer-events: none;
}
.hero-bg {
  position: absolute; inset: -5%;
  background: url('bc554a5c-5e0b-4a0a-b5d0-f2f984a8c7b1.png') center/cover no-repeat;
  background-position: 50% 30%;
  animation: ken-burns 25s ease-in-out infinite alternate;
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 120% 90% at 70% 110%, rgba(27,42,74,.55) 0%, transparent 60%),
    linear-gradient(135deg, rgba(27,42,74,.45) 0%, rgba(27,42,74,.15) 100%);
}
.hero__top-line {
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: transparent;
}

@keyframes fx-drift-a {
  from { transform: translate(0,0) scale(1); }
  to   { transform: translate(-80px, 60px) scale(1.18); }
}
@keyframes fx-drift-b {
  from { transform: translate(0,0) scale(1); }
  to   { transform: translate(60px, -80px) scale(1.12); }
}
.hero__fx {
  position: absolute; inset: 0; z-index: 0; pointer-events: none; overflow: hidden;
}
.hero__fx::before {
  content: '';
  position: absolute;
  width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(192,39,45,.13) 0%, transparent 65%);
  top: -250px; right: -150px;
  animation: fx-drift-a 16s ease-in-out infinite alternate;
}
.hero__fx::after {
  content: '';
  position: absolute;
  width: 550px; height: 550px; border-radius: 50%;
  background: radial-gradient(circle, rgba(40,100,200,.1) 0%, transparent 65%);
  bottom: -150px; left: 5%;
  animation: fx-drift-b 20s ease-in-out infinite alternate;
}

/* Hero grid overlay */
.hero::after {
  content: '';
  position: absolute; inset: 0; z-index: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 90% 80% at 30% 40%, black 0%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 90% 80% at 30% 40%, black 0%, transparent 75%);
  pointer-events: none;
}

.hero__body {
  position: relative; z-index: 1;
  padding: clamp(20px, 5vw, 60px) 0 clamp(40px, 8vw, 100px);
  transition: transform .08s linear;
}
.hero__label {
  font-size: 12px; letter-spacing: .18em; text-transform: uppercase;
  color: rgba(255,255,255,.65); font-weight: 300; margin-bottom: clamp(8px, 1.5vw, 24px);
  display: flex; align-items: center; gap: 12px;
  animation: rise .7s var(--bounce) .15s both;
}
.hero__label::before {
  content: ''; width: 40px; height: 2px; background: rgba(255,255,255,.55);
}

.hero__headline {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(44px, 6vw, 86px);
  line-height: 1.1; color: var(--white);
  letter-spacing: -.03em;
  max-width: 100%; margin-bottom: clamp(16px, 2.5vw, 36px);
  animation: rise .9s var(--bounce) .3s both;
}
.hero__headline em {
  font-style: normal !important;
  font-weight: 300;
  color: var(--white);
}
.hero__headline strong {
  font-weight: 800;
  color: var(--white);
  letter-spacing: -.02em;
  animation: rise .9s var(--bounce) .3s both;
}
.hero__amp {
  font-family: "Baskerville", "Georgia", serif;
  font-style: italic;
  font-weight: 400;
}

.hero__aside {
  position: absolute; right: 32px; bottom: 100px;
  display: flex; flex-direction: column; align-items: flex-end; gap: 8px;
}
.hero__year {
  font-family: var(--serif); font-size: 180px; font-weight: 700;
  line-height: 1; color: rgba(255,255,255,.05);
  user-select: none; pointer-events: none;
}

.hero__watermark { display: none; }

.hero__rule {
  border: none; border-top: 2px solid rgba(255,255,255,.15);
  height: 0; max-width: 600px; margin-bottom: 8px;
  background: none;
  animation: rise .5s ease .5s both;
}

.hero__desc {
  font-size: 16px; color: rgba(255,255,255,.7);
  max-width: 620px; line-height: 1.85; margin-bottom: clamp(20px, 3vw, 40px);
  animation: rise .7s var(--bounce) .6s both;
}

.hero__actions {
  display: flex; flex-wrap: wrap; gap: 16px; align-items: center;
  animation: rise .7s var(--bounce) .75s both;
}

.btn-hero-primary {
  font-size: 14px; font-weight: 600; letter-spacing: .03em;
  background: var(--gold); color: var(--white);
  padding: 15px 32px; border-radius: 6px;
  display: inline-flex; align-items: center; gap: 10px;
  transition: all .3s var(--bounce);
  box-shadow: 0 4px 16px var(--gold-glow);
  position: relative; overflow: hidden; isolation: isolate;
}
.btn-hero-primary:hover {
  background: var(--gold-dark); color: var(--white);
  box-shadow: 0 8px 28px rgba(184,150,46,.4);
  transform: translateY(-2px);
}
.btn-hero-primary::before {
  content: '';
  position: absolute; top: 0; left: -80%;
  width: 50%; height: 100%; z-index: -1;
  background: linear-gradient(105deg, transparent 0%, rgba(255,255,255,.28) 50%, transparent 100%);
  transform: skewX(-20deg);
  transition: left .65s var(--bounce);
}
.btn-hero-primary:hover::before { left: 130%; }

.btn-hero-ghost {
  font-size: 14px; font-weight: 500;
  color: var(--white); padding: 15px 8px;
  display: inline-flex; align-items: center; gap: 8px;
  position: relative;
  transition: color var(--ease);
}
.btn-hero-ghost::after {
  content: ''; position: absolute; bottom: 12px; left: 8px; right: 8px;
  height: 1px; background: rgba(255,255,255,.2);
  transition: background var(--ease);
}
.btn-hero-ghost:hover { color: var(--red); }
.btn-hero-ghost:hover::after { background: var(--red); }

@keyframes rise {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes word-rise {
  from { opacity: 0; transform: translateY(50px) skewY(3deg); }
  to   { opacity: 1; transform: translateY(0) skewY(0); }
}
@keyframes underline-draw { to { background-size: 100% 5px; } }

.hero__headline .word {
  display: inline-block;
  animation: word-rise .85s var(--bounce) both;
}

@keyframes scroll-cue {
  0%   { transform: scaleY(0); transform-origin: top; }
  45%  { transform: scaleY(1); transform-origin: top; }
  55%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}
.hero__scroll {
  position: absolute; left: 50%; bottom: 28px; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  z-index: 2; opacity: 0;
  animation: rise .8s var(--bounce) 1.4s both;
}
.hero__scroll-line {
  display: block; width: 1px; height: 44px;
  background: rgba(255,255,255,.45);
  animation: scroll-cue 2.2s var(--bounce) infinite;
}
.hero__scroll-text {
  font-size: 10px; font-weight: 600; letter-spacing: .3em;
  text-transform: uppercase; color: rgba(255,255,255,.5);
  transition: color var(--ease);
}
.hero__scroll:hover .hero__scroll-text { color: var(--white); }


/* ════════════════════════════════════════════════════
   CREDENTIALS BAR
   ════════════════════════════════════════════════════ */
.stats {
  background: var(--white);
  border-bottom: 1px solid var(--rule);
  padding: clamp(36px, 5vw, 64px) 0;
  position: relative;
}
.stats::before {
  content: '';
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 64px; height: 3px; background: var(--gold);
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(20px, 3vw, 40px);
}
.stats__item {
  position: relative;
  padding-left: clamp(16px, 2vw, 28px);
  border-left: 1px solid var(--rule);
}
.stats__item:first-child { border-left-color: transparent; }
.stats__num {
  font-family: var(--serif); font-weight: 700;
  font-size: clamp(34px, 4.5vw, 56px); line-height: 1;
  color: var(--navy); letter-spacing: -.02em;
  margin-bottom: 10px;
  font-variant-numeric: tabular-nums;
}
.stats__label {
  font-size: 12.5px; color: var(--muted); line-height: 1.6;
  max-width: 220px;
}


/* ════════════════════════════════════════════════════
   MARQUEE STRIP
   ════════════════════════════════════════════════════ */
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.marquee-strip {
  background: var(--navy);
  overflow: hidden; white-space: nowrap;
  padding: 16px 0;
}
.marquee-strip.in { opacity: 1; }
.marquee-strip:hover .marquee-inner { animation-play-state: paused; }
.marquee-inner {
  display: inline-block;
  animation: marquee-scroll 30s linear infinite;
}
.marquee-item {
  display: inline-block;
  font-size: 11px; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  color: rgba(255,255,255,.5); padding: 0 40px;
}
.marquee-item .dot { color: var(--red); margin-right: 40px; }


/* ════════════════════════════════════════════════════
   ABOUT
   ════════════════════════════════════════════════════ */
.about {
  padding: clamp(64px, 10vw, 120px) 0 clamp(56px, 8vw, 100px);
  background: var(--white);
  border-bottom: 1px solid var(--rule);
}
.about__title {
  font-family: var(--serif); font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700; color: var(--navy); line-height: 1.2;
  margin-bottom: clamp(28px, 4vw, 56px); max-width: 700px;
}
.about__grid {
  display: grid; grid-template-columns: 7fr 4fr;
  gap: clamp(32px, 6vw, 72px); align-items: start;
}
.about__prose p {
  font-size: 16px; color: var(--muted); line-height: 1.9;
  margin-bottom: 20px; max-width: 560px;
}
.about__prose p:last-child { margin-bottom: 0; }
.about__catalyst {
  font-family: var(--serif); font-style: italic;
  font-size: 18px !important; color: var(--navy) !important;
  line-height: 1.65 !important;
  border-left: 3px solid var(--red);
  padding-left: 24px; margin-top: 32px !important;
}
.about__prose p:first-child::first-letter {
  font-family: var(--serif);
  font-size: 3.4em; font-weight: 700;
  float: left; line-height: .85;
  padding: 4px 10px 0 0;
  color: inherit;
}
.about__sidebar {
  background: var(--off-white);
  border-radius: 8px;
  overflow: hidden;
}
.about__sidebar-block {
  padding: 28px 32px;
  border-bottom: 1px solid var(--rule);
}
.about__sidebar-block:last-child { border-bottom: none; }
.about__sidebar-label {
  font-size: 10px; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--red); margin-bottom: 8px;
}
.about__sidebar-value {
  font-family: var(--serif); font-size: 17px; font-weight: 700;
  color: var(--navy); line-height: 1.35;
}


/* ════════════════════════════════════════════════════
   VALUES
   ════════════════════════════════════════════════════ */
.values {
  padding: clamp(56px, 8vw, 100px) 0;
  background:
    radial-gradient(ellipse 70% 60% at 100% 0%, rgba(192,39,45,.07) 0%, transparent 60%),
    var(--navy);
}
.values .section-label { color: var(--red); }
.values .section-label::before { background: var(--red); }
.values__title {
  font-family: var(--serif); font-size: clamp(26px, 3vw, 40px);
  font-weight: 700; color: var(--white); line-height: 1.2;
  margin-bottom: clamp(28px, 4vw, 56px);
}
.values__list {
  border-top: 1px solid rgba(255,255,255,.12);
}
.value-row {
  display: grid; grid-template-columns: 48px clamp(140px, 18vw, 220px) 1fr;
  gap: 0; padding: 28px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
  align-items: baseline;
  transition: background var(--ease), padding-left .3s var(--bounce);
  position: relative;
}
.value-row::before {
  content: '';
  position: absolute; left: -16px; top: 18%; bottom: 18%;
  width: 3px; background: var(--red);
  transform: scaleY(0); transform-origin: center;
  transition: transform .35s var(--bounce);
}
.value-row:hover::before { transform: scaleY(1); }
.value-row:hover { background: rgba(255,255,255,.04); padding-left: 12px; }
.value-row__num {
  font-family: var(--serif); font-size: 13px; font-weight: 700;
  color: rgba(255,255,255,.25); letter-spacing: .12em;
  transition: color var(--ease);
}
.value-row:hover .value-row__num { color: var(--red); }
.value-row__head {
  font-family: var(--serif); font-size: 18px; font-weight: 700;
  color: var(--white); padding-right: 32px; line-height: 1.3;
}
.value-row:hover .value-row__head { color: var(--white); }
.value-row__body {
  font-size: 14px; color: rgba(255,255,255,.6); line-height: 1.8;
  max-width: 560px;
  transition: color var(--ease);
}
.value-row:hover .value-row__body { color: rgba(255,255,255,.75); }


/* ════════════════════════════════════════════════════
   DIFFERENTIATORS
   ════════════════════════════════════════════════════ */
.diff {
  padding: clamp(56px, 8vw, 100px) 0;
  background: var(--white);
  border-bottom: 1px solid var(--rule);
}
.diff__top {
  margin-bottom: clamp(28px, 4vw, 56px);
}
.diff__top h2 {
  font-family: var(--serif); font-size: clamp(26px, 3vw, 40px);
  font-weight: 700; color: var(--navy); line-height: 1.2;
}
.diff__grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(min(440px, 100%), 1fr));
  gap: 24px;
}
.diff__card {
  background: linear-gradient(180deg, var(--off-white) 0%, #FCFCFD 100%);
  border-radius: 8px; padding: clamp(24px, 3.5vw, 44px) clamp(20px, 3vw, 40px);
  transition: transform .4s var(--bounce), box-shadow .4s ease;
  border: 1px solid transparent;
  position: relative; overflow: hidden;
}
.diff__card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--red), var(--gold));
  transform: scaleX(0); transform-origin: left;
  transition: transform .5s var(--bounce);
}
.diff__card:hover::before { transform: scaleX(1); }
.diff__card::after {
  content: attr(data-ghost);
  position: absolute; right: -8px; bottom: -28px;
  font-family: var(--serif); font-size: 130px; font-weight: 700;
  color: var(--navy); opacity: .035; line-height: 1;
  pointer-events: none; user-select: none;
  transition: opacity .4s ease, transform .5s var(--bounce);
}
.diff__card:hover::after { opacity: .07; transform: translateY(-6px); }
.diff__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(27,42,74,.1);
  border-color: var(--rule);
}
.diff__card-num {
  font-size: 11px; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--red); margin-bottom: 16px;
}
.diff__card-title {
  font-family: var(--serif); font-size: 22px; font-weight: 700;
  color: var(--navy); margin-bottom: 16px; line-height: 1.25;
}
.diff__card p {
  font-size: 14px; color: var(--muted); line-height: 1.8;
}


/* ════════════════════════════════════════════════════
   INDUSTRIES STRIP
   ════════════════════════════════════════════════════ */
.industries {
  background: var(--off-white);
  border-bottom: 1px solid var(--rule);
  padding: clamp(32px, 4.5vw, 56px) 0;
}
.industries__label {
  font-size: 11px; font-weight: 700; letter-spacing: .16em;
  text-transform: uppercase; color: var(--red);
  margin-bottom: 22px;
  display: flex; align-items: center; gap: 12px;
}
.industries__label::before {
  content: ''; width: 32px; height: 2px; background: var(--red);
}
.industries__chips {
  display: flex; flex-wrap: wrap; gap: 10px;
}
.industries__chip {
  font-size: 13px; font-weight: 500; color: var(--navy);
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: 999px;
  padding: 9px 20px;
  transition: all .3s var(--bounce);
  cursor: default;
}
.industries__chip:hover {
  border-color: var(--navy);
  background: var(--navy); color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(27,42,74,.15);
}


/* ════════════════════════════════════════════════════
   METHODOLOGY
   ════════════════════════════════════════════════════ */
.methodology {
  padding: clamp(56px, 8vw, 100px) 0;
  background:
    radial-gradient(ellipse 60% 50% at 0% 100%, rgba(184,150,46,.06) 0%, transparent 60%),
    var(--navy);
  position: relative; overflow: hidden;
}
.methodology::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.015'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.methodology .section-label { color: var(--red); position: relative; z-index: 1; }
.methodology .section-label::before { background: var(--red); }
.methodology__title {
  font-family: var(--serif); font-size: clamp(24px, 2.8vw, 36px);
  font-weight: 700; color: var(--white); line-height: 1.35;
  margin-bottom: clamp(28px, 4vw, 56px); max-width: 720px;
  position: relative; z-index: 1;
}
.methodology__domains {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 6px; overflow: hidden;
  margin-bottom: clamp(24px, 3.5vw, 48px);
  position: relative; z-index: 1;
}
.methodology__domain {
  background: var(--navy);
  padding: 24px 20px;
  font-size: 14px; color: rgba(255,255,255,.7);
  display: flex; align-items: baseline; gap: 12px;
  transition: background var(--ease), transform .3s var(--bounce);
  line-height: 1.5;
  position: relative;
}
.methodology__domain::after {
  content: '';
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 2px; background: var(--gold);
  transform: scaleY(0);
  transition: transform .3s var(--bounce);
}
.methodology__domain:hover::after { transform: scaleY(1); }
.methodology__domain:hover {
  background: rgba(255,255,255,.06);
}
.methodology__domain-num {
  font-family: var(--serif); font-size: 11px; font-weight: 700;
  color: var(--red); flex-shrink: 0;
  transition: color var(--ease);
}
.methodology__domain:hover .methodology__domain-num { color: var(--gold); }
.methodology__footnote {
  font-size: 15px; color: rgba(255,255,255,.5); line-height: 1.7;
  font-style: italic; max-width: 640px;
  position: relative; z-index: 1;
  border-left: 3px solid var(--red);
  padding-left: 20px;
}
.methodology__quote {
  position: absolute;
  top: -60px; left: -20px;
  font-family: var(--serif); font-weight: 900; font-size: 140px;
  color: #0d121c; line-height: 1;
  pointer-events: none; z-index: 0;
}
.methodology__watermark {
  position: absolute;
  right: -60px; top: 50%;
  width: 400px; height: 400px;
  transform: translateY(-50%) rotate(10deg);
  pointer-events: none; user-select: none; z-index: 0;
}
.methodology__watermark img {
  width: 100%; height: 100%; object-fit: contain;
  opacity: 0.06;
  filter: grayscale(1) brightness(200%);
}


/* ════════════════════════════════════════════════════
   FOUR PHASES
   ════════════════════════════════════════════════════ */
.phases {
  padding: clamp(56px, 8vw, 100px) 0;
  background: var(--white);
  border-bottom: 1px solid var(--rule);
}
.phases__top {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 3vw, 40px); align-items: end;
  padding-bottom: clamp(28px, 4vw, 56px); border-bottom: 1px solid var(--rule);
}
.phases__top h2 {
  font-family: var(--serif); font-size: clamp(26px, 3vw, 40px);
  font-weight: 700; color: var(--navy); line-height: 1.2;
}
.phases__top p {
  font-size: 14px; color: var(--muted); max-width: 480px; line-height: 1.8;
}
.phases__items {
  position: relative;
  padding-left: clamp(28px, 4vw, 44px);
}
.phases__items::before {
  content: '';
  position: absolute; left: 5px; top: 40px; bottom: 40px;
  width: 1px; background: var(--rule);
}
.phase-card {
  padding: 40px 0;
  border-bottom: 1px solid var(--rule);
  transition: background var(--ease), padding-left .3s var(--bounce);
  position: relative;
}
.phase-card:hover { background: transparent; padding-left: 8px; }
.phase-card::after {
  content: '';
  position: absolute;
  left: calc(-1 * clamp(28px, 4vw, 44px));
  top: 47px;
  width: 11px; height: 11px; border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--red);
  transition: background var(--ease), transform .3s var(--bounce), box-shadow .3s ease;
}
.phase-card:hover::after {
  background: var(--red);
  transform: scale(1.25);
  box-shadow: 0 0 0 5px var(--red-10);
}
.phase-card__header {
  display: flex; align-items: baseline; gap: 20px;
  margin-bottom: 20px;
}
.phase-card__num {
  font-size: 11px; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--red);
}
.phase-card__title {
  font-family: var(--serif); font-size: 24px; font-weight: 700;
  color: var(--navy); line-height: 1.2;
  transition: color var(--ease);
}
.phase-card:hover .phase-card__title { color: var(--red); }
.phase-card p {
  font-size: 15px; color: var(--muted); line-height: 1.85;
  max-width: 720px; margin-bottom: 16px;
}
.phase-card__closing {
  font-family: var(--serif); font-style: italic;
  font-size: 16px; color: var(--navy); line-height: 1.55;
  border-left: 3px solid var(--red); padding-left: 20px;
  max-width: 560px; margin-top: 8px;
}


/* ════════════════════════════════════════════════════
   SERVICES / OFFERINGS
   ════════════════════════════════════════════════════ */
.offerings {
  padding: clamp(56px, 8vw, 100px) 0;
  background: var(--navy);
}
.offerings .section-label { color: var(--red); }
.offerings .section-label::before { background: var(--red); }
.offerings__title {
  font-family: var(--serif); font-size: clamp(26px, 3vw, 40px);
  font-weight: 700; color: var(--white); line-height: 1.2;
  margin-bottom: clamp(28px, 4vw, 56px);
}
.offering-block {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 8px;
  padding: clamp(24px, 3.5vw, 44px);
  margin-bottom: 16px;
  transition: background var(--ease), border-color var(--ease), transform .4s var(--bounce);
  position: relative; overflow: hidden;
}
.offering-block::before {
  content: '';
  position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: linear-gradient(180deg, var(--gold), var(--red));
  transform: scaleY(0); transform-origin: top;
  transition: transform .45s var(--bounce);
}
.offering-block:hover::before { transform: scaleY(1); }
.offering-block:hover {
  background: rgba(255,255,255,.07);
  border-color: rgba(255,255,255,.15);
  transform: translateY(-2px);
}
.offering-block:last-child { margin-bottom: 0; }
.offering-block__header {
  display: flex; align-items: baseline; gap: 20px;
  margin-bottom: 20px; flex-wrap: wrap;
}
.offering-block__num {
  font-family: var(--serif); font-size: 13px; font-weight: 700;
  color: var(--red); letter-spacing: .04em;
}
.offering-block__header h3 {
  font-family: var(--serif); font-size: 24px; font-weight: 700;
  color: var(--white); line-height: 1.25;
}
.offering-block__tag {
  font-size: 12px; color: rgba(255,255,255,.45); font-style: italic;
  flex-basis: 100%; padding-left: 33px;
}
.offering-block > p {
  font-size: 15px; color: rgba(255,255,255,.65); line-height: 1.85;
  max-width: 720px;
}
.offering-block__specialisms {
  margin-top: 28px;
  border-top: 1px solid rgba(255,255,255,.1);
}
.specialism {
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
  display: grid; grid-template-columns: clamp(160px, 20vw, 240px) 1fr;
  gap: 20px; align-items: baseline;
  transition: background var(--ease), padding-left .3s var(--bounce);
}
.specialism:hover { background: rgba(255,255,255,.04); padding-left: 12px; }
.specialism strong {
  font-size: 14px; font-weight: 600; color: var(--white);
}
.specialism span {
  font-size: 13px; color: rgba(255,255,255,.55); line-height: 1.7;
}


/* ════════════════════════════════════════════════════
   MANIFESTO
   ════════════════════════════════════════════════════ */
.manifesto {
  background:
    radial-gradient(ellipse 80% 100% at 50% 120%, rgba(192,39,45,.1) 0%, transparent 65%),
    var(--navy);
  padding: clamp(64px, 10vw, 140px) 0;
  position: relative; overflow: hidden;
  text-align: center;
}
.manifesto::before {
  content: '';
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 1px; height: clamp(32px, 5vw, 64px);
  background: linear-gradient(180deg, var(--gold), transparent);
}
.manifesto__line {
  font-family: var(--serif);
  font-size: clamp(30px, 5vw, 64px);
  font-weight: 400; line-height: 1.25;
  color: rgba(255,255,255,.55);
  letter-spacing: -.02em;
  max-width: 900px; margin: 0 auto;
}
.manifesto__line em {
  font-style: italic; font-weight: 700;
  color: var(--white);
  background-image: linear-gradient(90deg, var(--gold), var(--gold-dark));
  background-repeat: no-repeat;
  background-position: 0 94%;
  background-size: 100% 4px;
  padding-bottom: 6px;
}


/* ════════════════════════════════════════════════════
   TEAM
   ════════════════════════════════════════════════════ */
.team {
  padding: clamp(56px, 8vw, 100px) 0 clamp(48px, 6vw, 80px);
  background: var(--white);
  border-bottom: 1px solid var(--rule);
}
.team__head { margin-bottom: clamp(28px, 4vw, 56px); }
.team__head h2 {
  font-family: var(--serif); font-size: clamp(24px, 2.8vw, 36px);
  font-weight: 700; color: var(--navy); line-height: 1.3;
}
.founder-card {
  display: grid; grid-template-columns: clamp(200px, 22vw, 280px) 1fr;
  gap: clamp(28px, 4vw, 56px); align-items: start;
  background: linear-gradient(135deg, var(--off-white) 0%, #FDFCFA 100%);
  padding: clamp(28px, 4vw, 56px);
  margin-bottom: clamp(24px, 3vw, 48px);
  border-radius: 12px;
  border-top: 3px solid var(--gold);
  transition: box-shadow .4s ease;
  position: relative; overflow: hidden;
}
.founder-card::after {
  content: '\201C';
  position: absolute; top: -30px; right: 16px;
  font-family: var(--serif); font-size: 220px; font-weight: 700;
  color: var(--navy); opacity: .04; line-height: 1;
  pointer-events: none; user-select: none;
}
.founder-card:hover { box-shadow: 0 24px 64px rgba(27,42,74,.08); }
.founder-card__photo-wrap {
  position: relative; width: 100%; max-width: 280px;
  aspect-ratio: 4/5; overflow: hidden; border-radius: 12px;
  box-shadow: 0 16px 40px rgba(27,42,74,.15); margin: 0 auto;
}
.founder-card__photo {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center 15%;
  border-radius: inherit;
  filter: grayscale(20%);
  transition: filter .5s ease, transform .5s var(--bounce);
}
.founder-card:hover .founder-card__photo { filter: grayscale(0%); transform: scale(1.015); }
.founder-card__label {
  font-size: 10px; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--red); margin-bottom: 12px;
}
.founder-card__name {
  font-family: var(--serif); font-size: 32px; font-weight: 700;
  color: var(--navy); margin-bottom: 4px; line-height: 1.15;
  position: relative; display: inline-block;
}
.founder-card__name::after {
  content: '';
  position: absolute; left: 0; bottom: -6px;
  width: 48px; height: 3px; background: var(--gold);
}
.founder-card__role {
  font-size: 13px; color: var(--muted); margin-bottom: 28px;
  letter-spacing: .02em;
}
.founder-card__content p {
  font-size: 14px; color: var(--muted); line-height: 1.85;
  margin-bottom: 16px; max-width: 600px;
}
.founder-card__why {
  font-family: var(--serif); font-style: italic;
  color: var(--navy) !important; font-size: 15px !important;
  border-left: 3px solid var(--red);
  padding-left: 20px; margin-top: 24px !important;
}
.founder-card__drive {
  font-weight: 500; color: var(--muted) !important;
  font-size: 13px !important; margin-top: 20px !important;
}
.team__intro-text {
  margin-top: 48px; padding: 32px 0 0;
  border-top: 1px solid var(--rule);
}
.team__intro-text p {
  font-size: 15px; color: var(--muted); line-height: 1.8;
  margin-bottom: 12px; max-width: 720px;
}
.team__intro-text p:last-child { margin-bottom: 0; }
.team__intro-text strong { color: var(--navy); }
.team__roster { display: grid; gap: 20px; }
.team__roster + .team__roster { margin-top: 48px; }
.team__roster--partners {
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.team__roster--partners .team__person {
  padding: 60px 56px 52px; text-align: center;
  background: var(--white);
  border: 1px solid var(--rule);
  box-shadow: 0 4px 20px rgba(27,42,74,.06);
}
.team__roster--partners .team__person:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 56px rgba(27,42,74,.11);
}
.team__roster--partners .team__photo {
  width: 200px; height: 200px;
  margin-left: auto; margin-right: auto; margin-bottom: 28px;
  border: 4px solid var(--rule);
}
.team__roster--partners .team__person:hover .team__photo { border-color: var(--red); }
.team__roster--partners .team__pname { font-size: 24px; margin-bottom: 8px; }
.team__roster--partners .team__prole { font-size: 11px; letter-spacing: .13em; margin-bottom: 22px; }
.team__roster--partners .team__pbio {
  font-size: 15px; line-height: 1.8;
  max-width: 360px; margin-left: auto; margin-right: auto;
}
.team__roster--small {
  grid-template-columns: repeat(auto-fill, minmax(min(200px, 100%), 1fr));
  gap: 18px;
}
.team__roster--small .team__person { background: var(--off-white); padding: 28px 24px; border-radius: 8px; }
.team__roster--small .team__photo { width: 88px; height: 88px; margin-bottom: 16px; }
.team__roster--small .team__pname { font-size: 16px; }
.team__roster--small .team__prole { font-size: 10px; margin-bottom: 12px; }
.team__roster--small .team__pbio { font-size: 12.5px; line-height: 1.65; }
.team__person {
  background: var(--off-white); padding: 36px 28px;
  border-radius: 8px;
  transition: transform .4s var(--bounce), box-shadow .4s ease;
  position: relative;
}
.team__person:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(27,42,74,.08); }
.team__photo {
  width: 110px; height: 110px; border-radius: 50%;
  object-fit: cover; object-position: center top;
  margin-bottom: 20px;
  border: 3px solid var(--rule);
  filter: grayscale(35%);
  transition: filter .45s ease, transform .45s var(--bounce), border-color var(--ease), box-shadow .45s ease;
}
.team__person:hover .team__photo {
  filter: grayscale(0%);
  transform: scale(1.04);
  box-shadow: 0 12px 32px rgba(27,42,74,.18);
  border-color: var(--red);
}
.team__pname {
  font-family: var(--serif); font-size: 18px; font-weight: 700;
  color: var(--navy); margin-bottom: 4px;
}
.team__prole {
  font-size: 11px; color: var(--red); font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase; margin-bottom: 16px;
}
.team__pbio { font-size: 13px; color: var(--muted); line-height: 1.7; }


/* ════════════════════════════════════════════════════
   CAREER
   ════════════════════════════════════════════════════ */
.career {
  padding: clamp(56px, 8vw, 100px) 0;
  background:
    radial-gradient(ellipse 50% 60% at 100% 100%, rgba(192,39,45,.06) 0%, transparent 60%),
    var(--navy);
}
.career .section-label { color: var(--red); }
.career .section-label::before { background: var(--red); }
.career__layout {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 6vw, 72px); align-items: start;
}
.career__layout h2 {
  font-family: var(--serif); font-size: clamp(24px, 2.8vw, 36px);
  font-weight: 700; color: var(--white); line-height: 1.25;
  margin-bottom: 24px;
}
.career__intro {
  font-size: 15px; color: rgba(255,255,255,.6); line-height: 1.8; margin-bottom: 36px;
}
.career__sub {
  font-family: var(--serif); font-size: 18px; font-weight: 700;
  color: var(--white); margin-bottom: 20px;
}
.career__belong { list-style: none; }
.career__belong li {
  font-size: 14px; color: rgba(255,255,255,.6); line-height: 1.7;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
  display: flex; align-items: baseline; gap: 14px;
}
.career__belong li::before {
  content: '—'; color: var(--red); font-size: 12px; flex-shrink: 0; font-weight: 700;
}
.career__offers {
  display: flex; flex-direction: column; gap: 0;
  border-top: 1px solid rgba(255,255,255,.08); margin-top: 12px;
}
.career__offer {
  display: flex; align-items: baseline; gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: transform .3s var(--bounce), background var(--ease), padding-left .3s ease;
}
.career__offer:hover { transform: translateX(6px); background: rgba(255,255,255,.03); padding-left: 8px; }
.career__offer-icon {
  color: var(--red); font-weight: 700; font-size: 14px; flex-shrink: 0;
  transition: color var(--ease);
}
.career__offer:hover .career__offer-icon { color: var(--gold); }
.career__offer span {
  font-size: 14px; color: rgba(255,255,255,.6); line-height: 1.7;
}


/* ════════════════════════════════════════════════════
   FAQ
   ════════════════════════════════════════════════════ */
.faq {
  padding: clamp(56px, 8vw, 100px) 0;
  background: var(--off-white);
  border-bottom: 1px solid var(--rule);
}
.faq__title {
  font-family: var(--serif); font-size: clamp(26px, 3vw, 40px);
  font-weight: 700; color: var(--navy); line-height: 1.2;
  margin-bottom: clamp(28px, 4vw, 48px);
}
.faq__list { max-width: 820px; border-top: 1px solid var(--rule); }
.faq__item { border-bottom: 1px solid var(--rule); }
.faq__q {
  font-size: 16px; font-weight: 600; color: var(--navy);
  padding: 22px 44px 22px 0;
  cursor: pointer; list-style: none;
  position: relative;
  transition: color var(--ease);
  line-height: 1.5;
  min-height: 56px; display: flex; align-items: center;
}
.faq__q::-webkit-details-marker { display: none; }
.faq__q:hover { color: var(--red); }
.faq__chevron {
  position: absolute; right: 4px; top: 50%;
  width: 12px; height: 12px;
  transform: translateY(-65%) rotate(45deg);
  border-right: 2px solid var(--red);
  border-bottom: 2px solid var(--red);
  transition: transform .35s var(--bounce);
}
.faq__item[open] .faq__chevron { transform: translateY(-35%) rotate(225deg); }
.faq__item[open] .faq__q { color: var(--navy); }
.faq__a {
  font-size: 14.5px; color: var(--muted); line-height: 1.85;
  padding: 0 0 24px;
  max-width: 720px;
  border-left: 3px solid var(--gold);
  padding-left: 20px;
  margin-left: 2px;
  animation: rise .4s var(--bounce) both;
}


/* ════════════════════════════════════════════════════
   CONTACT
   ════════════════════════════════════════════════════ */
.contact {
  padding: clamp(56px, 8vw, 100px) 0;
  background: var(--white);
  border-bottom: 1px solid var(--rule);
}
.contact__headline {
  font-family: var(--serif); font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 700; color: var(--navy); line-height: 1.3;
  margin-bottom: clamp(24px, 3.5vw, 48px); max-width: 640px;
}
.contact__inner {
  display: grid; grid-template-columns: 1fr 1fr;
  border: 1px solid var(--rule);
  border-radius: 8px; overflow: hidden;
}
.contact__left {
  padding: clamp(28px, 4vw, 56px) clamp(24px, 4vw, 48px);
  border-right: 1px solid var(--rule);
  display: flex; flex-direction: column;
  justify-content: flex-start;
  gap: clamp(28px, 4vw, 44px);
}
.contact__left h3 {
  font-family: var(--serif); font-size: 22px; font-weight: 700;
  color: var(--navy); margin-bottom: 12px; line-height: 1.25;
}
.contact__left p { font-size: 14px; color: var(--muted); line-height: 1.8; margin-bottom: 0; max-width: 400px; }
.contact__details { display: flex; flex-direction: column; gap: 0; border-top: 1px solid var(--rule); margin-top: 4px; }
.contact__detail {
  display: grid; grid-template-columns: clamp(72px, 8vw, 90px) 1fr;
  gap: 16px; padding: 18px 0;
  border-bottom: 1px solid var(--rule);
  font-size: 13px; align-items: baseline;
}
.contact__dl {
  font-size: 10px; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--red);
}
.contact__dv { color: var(--navy); font-weight: 500; }
.contact__dv small {
  display: block; font-size: 11px; color: var(--muted);
  font-weight: 400; margin-top: 2px;
}
.contact__right {
  padding: clamp(28px, 4vw, 56px) clamp(24px, 4vw, 48px); background: var(--off-white);
}
.contact__right h3 {
  font-family: var(--serif); font-size: 20px; font-weight: 700;
  color: var(--navy); margin-bottom: 8px;
}
.contact__right > p { font-size: 13px; color: var(--muted); margin-bottom: 28px; }

.field { margin-bottom: 16px; }
.field label {
  display: block; font-size: 11px; font-weight: 600;
  letter-spacing: .06em; text-transform: uppercase;
  color: var(--navy); margin-bottom: 7px;
}
.field input,
.field select,
.field textarea {
  width: 100%; font-family: var(--sans); font-size: 14px; color: var(--text);
  background: #FDFDFE; border: 1px solid var(--rule);
  border-radius: 6px; padding: 12px 14px; outline: none;
  transition: border-color .25s ease, box-shadow .25s ease;
  appearance: none;
}
.field input:hover, .field select:hover, .field textarea:hover { border-color: var(--navy-70); }
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(184,150,46,.15);
  background: var(--white);
}
.field input:not(:placeholder-shown):valid,
.field textarea:not(:placeholder-shown):valid { border-color: rgba(27,42,74,.25); }
.field textarea { resize: vertical; min-height: 88px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

.form-foot {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; margin-top: 8px; flex-wrap: wrap;
}
.submit-btn {
  font-family: var(--sans); font-size: 13px; font-weight: 600;
  letter-spacing: .04em; color: var(--white); background: var(--gold);
  padding: 14px 28px; border-radius: 6px;
  display: inline-flex; align-items: center; gap: 8px;
  transition: all .3s var(--bounce);
  box-shadow: 0 4px 14px var(--gold-glow);
  position: relative; overflow: hidden; isolation: isolate;
}
.submit-btn:hover {
  background: var(--gold-dark); color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(184,150,46,.35);
}
.submit-btn:active { transform: translateY(0); box-shadow: none; }
.submit-btn:disabled { opacity: .7; cursor: not-allowed; transform: none; }
.submit-btn::before {
  content: '';
  position: absolute; top: 0; left: -80%;
  width: 50%; height: 100%; z-index: -1;
  background: linear-gradient(105deg, transparent 0%, rgba(255,255,255,.28) 50%, transparent 100%);
  transform: skewX(-20deg);
  transition: left .65s var(--bounce);
}
.submit-btn:hover::before { left: 130%; }
.form-note { font-size: 11px; color: var(--muted); }
.field--consent { margin-bottom: 12px; }
.field label.consent-label {
  text-transform: none; letter-spacing: 0; font-size: 12px;
  font-weight: 400; color: var(--muted);
  display: flex; align-items: flex-start; gap: 10px;
  cursor: pointer; line-height: 1.6;
}
.consent-label input[type="checkbox"] {
  width: 16px; min-width: 16px; height: 16px; margin-top: 2px;
  accent-color: var(--navy); cursor: pointer; border-radius: 3px;
}
.consent-label a { color: var(--navy); text-decoration: underline; }
.consent-label a:hover { color: var(--red); }
.form-error { font-size: 12px; color: var(--red); margin-top: 10px; line-height: 1.6; }
.form-error a { color: var(--red); text-decoration: underline; }


/* ════════════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════════════ */
.footer {
  background: var(--navy);
  border-top: 3px solid var(--gold);
  padding: clamp(36px, 5vw, 64px) 0 clamp(20px, 3vw, 32px);
  position: relative; overflow: hidden;
}
.footer__watermark {
  position: absolute; left: -40px; bottom: -60px;
  width: 360px; height: 360px;
  transform: rotate(-15deg);
  pointer-events: none; user-select: none;
  z-index: 0; opacity: .5;
}
.footer__watermark img {
  width: 100%; height: 100%; object-fit: contain;
  opacity: 0.04; filter: grayscale(1) brightness(200%);
}
.footer .wrap { position: relative; z-index: 1; }
.footer__top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: clamp(24px, 4vw, 48px); padding-bottom: clamp(24px, 3.5vw, 48px);
  border-bottom: 1px solid rgba(255,255,255,.08);
  margin-bottom: clamp(20px, 2.5vw, 32px);
}
.footer__brand-row { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer__brand-logo { height: 48px; width: auto; object-fit: contain; }
.footer__brand-name {
  font-family: var(--serif); font-size: 18px; font-weight: 700; color: var(--white);
}
.footer__brand-name small {
  display: block; font-family: var(--sans); font-size: 9px; letter-spacing: .1em;
  text-transform: uppercase; color: rgba(255,255,255,.3); margin-top: 2px;
}
.footer__tagline {
  font-size: 13px; color: rgba(255,255,255,.35); line-height: 1.7;
  max-width: 240px; font-style: italic;
}
.footer__services-line {
  font-size: 12px; letter-spacing: .14em; text-transform: uppercase;
  color: rgba(255,255,255,.7); margin-top: 10px; font-weight: 600;
}
.footer__col h4 {
  font-size: 10px; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: rgba(255,255,255,.3); margin-bottom: 16px;
}
.footer__col li { margin-bottom: 10px; }
.footer__col a {
  font-size: 13px; color: rgba(255,255,255,.5);
  transition: color var(--ease), padding-left .25s var(--bounce);
  display: inline-block;
}
.footer__col a:hover { color: var(--white); padding-left: 4px; }
.footer__bottom {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
.footer__copy { font-size: 11px; color: rgba(255,255,255,.35); }
.footer__legal { display: flex; gap: 20px; }
.footer__legal a { font-size: 11px; color: rgba(255,255,255,.35); transition: color var(--ease); }
.footer__legal a:hover { color: rgba(255,255,255,.6); }


/* ════════════════════════════════════════════════════
   FLOATING CTA & BACK TO TOP
   ════════════════════════════════════════════════════ */
@keyframes float-cta-pulse {
  0%, 100% { box-shadow: 0 10px 30px rgba(90,140,90,.2), 0 0 0 0 rgba(90,140,90,.3); }
  50%      { box-shadow: 0 10px 30px rgba(90,140,90,.2), 0 0 0 10px rgba(90,140,90,0); }
}
.float-cta {
  position: fixed; bottom: 32px; right: 32px; z-index: 150;
  opacity: 0; transform: translateY(18px) scale(.92);
  transition: opacity .5s ease, transform .5s var(--bounce);
  pointer-events: none;
}
.float-cta.show { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
.float-cta a {
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--green-wa); color: var(--white);
  font-family: var(--sans); font-size: 13px; font-weight: 600; letter-spacing: .01em;
  padding: 12px 20px 12px 14px; border-radius: 999px;
  animation: float-cta-pulse 2.2s ease-in-out infinite;
  transition: background .3s ease, transform .3s var(--bounce);
  white-space: nowrap; backdrop-filter: blur(8px);
}
.float-cta a svg {
  width: 22px; height: 22px; padding: 4px;
  background: rgba(255,255,255,.18); border-radius: 50%; flex-shrink: 0;
}
.float-cta a:hover {
  background: var(--green-wa-dark); transform: translateY(-3px);
  animation: none; box-shadow: 0 16px 40px var(--green-wa-glow);
}

.back-to-top {
  position: fixed; right: 24px; bottom: 96px; z-index: 90;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--white); color: var(--navy);
  border: 1px solid var(--rule);
  box-shadow: 0 8px 24px rgba(27,42,74,.12);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transform: translateY(12px);
  transition: opacity .35s ease, transform .35s var(--bounce),
              background var(--ease), color var(--ease);
}
.back-to-top.show { opacity: 1; pointer-events: auto; transform: translateY(0); }
.back-to-top:hover {
  background: var(--navy); color: var(--white);
  border-color: var(--navy); transform: translateY(-3px);
}


/* ════════════════════════════════════════════════════
   CURSOR GLOW
   ════════════════════════════════════════════════════ */
.cursor-glow {
  position: fixed; pointer-events: none; z-index: 9990;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle,
    rgba(192,39,45,.04) 0%, rgba(27,42,74,.015) 40%, transparent 70%);
  transform: translate(-50%,-50%);
  will-change: left, top;
  transition: opacity .5s ease;
}


/* ════════════════════════════════════════════════════
   SCROLL ANCHORS
   ════════════════════════════════════════════════════ */
section[id], [id="home"] { scroll-margin-top: 96px; }


/* ════════════════════════════════════════════════════
   RESPONSIVE — LARGE (≥1440px)
   ════════════════════════════════════════════════════ */
@media (min-width: 1440px) {
  :root { --max: 1280px; }
  .hero__headline { font-size: clamp(54px, 6.5vw, 93px); }
  .about__grid { gap: 96px; }
  .footer__top { gap: 64px; }
  .founder-card { gap: 72px; }
}
@media (min-width: 1920px) { :root { --max: 1400px; } }


/* ════════════════════════════════════════════════════
   RESPONSIVE — TABLET (≤1024px)
   ════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .about__grid { grid-template-columns: 1fr; gap: 40px; }
  .about__sidebar { max-width: 480px; }
  .value-row { grid-template-columns: 40px 180px 1fr; }
  .diff__grid { grid-template-columns: 1fr; }
  .methodology__domains { grid-template-columns: repeat(2, 1fr); }
  .phases__top { grid-template-columns: 1fr; gap: 20px; }
  .career__layout { grid-template-columns: 1fr; gap: 48px; }
  .contact__inner { grid-template-columns: 1fr; }
  .contact__left { border-right: none; border-bottom: 1px solid var(--rule); }
  .contact__details { margin-top: 0; }
  .team__roster--small { grid-template-columns: repeat(2, 1fr); }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .specialism { grid-template-columns: 1fr; gap: 6px; }
}


/* ════════════════════════════════════════════════════
   RESPONSIVE — TABLET MID (≤900px)
   ════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .value-row { grid-template-columns: 40px clamp(120px, 16vw, 180px) 1fr; }
  .team__roster--small { grid-template-columns: repeat(2, 1fr); }
  .founder-card { grid-template-columns: 1fr; gap: 28px; }
  .founder-card__photo-wrap { max-width: 240px; }
  .career__layout { grid-template-columns: 1fr; gap: 40px; }
  .methodology__domains { grid-template-columns: repeat(2, 1fr); }
  .stats__grid { grid-template-columns: repeat(2, 1fr); row-gap: 32px; }
  .stats__item:nth-child(3) { border-left-color: transparent; }
  .hero__scroll { display: none; }
  .manifesto { padding: clamp(56px, 12vw, 90px) 0; }
  .phases__items { padding-left: 24px; }
  .phase-card::after { left: -24px; }
}


/* ════════════════════════════════════════════════════
   RESPONSIVE — MOBILE (≤768px)
   ════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .wrap { padding: 0 20px; max-width: 100%; }
  section, .footer, .marquee-strip { overflow-x: hidden; }
  section[id] { scroll-margin-top: 80px; }

  .nav__links, .nav__cta { display: none !important; }
  .nav__burger { display: flex; }
  .nav { padding: 14px 0; }
  .nav__brand { min-width: 0; height: 48px; width: 44px; }
  .nav__logo--vertical {
    width: 44px !important; max-width: none !important;
    height: 76px !important; padding: 8px 6px 10px !important;
    top: -6px !important;
    box-shadow: 0 6px 20px rgba(27,42,74,.15) !important;
    object-fit: contain !important;
  }
  .nav__name { left: 50px; top: 2px; font-size: 12px; letter-spacing: .12em; height: 48px; }
  .nav__burger { display: flex; z-index: 101; position: relative; }

  .mobile-open .nav__links {
    display: flex !important; flex-direction: column !important;
    position: fixed !important;
    top: 72px; left: 0; right: 0; bottom: 0;
    background: var(--white);
    padding: 32px 24px 48px;
    gap: 0; z-index: 200; overflow-y: auto;
  }
  .mobile-open .nav__links li { border-bottom: 1px solid var(--rule); }
  .mobile-open .nav__links a {
    color: var(--navy) !important; font-size: 16px !important;
    font-weight: 600 !important; padding: 16px 0 !important; display: block !important;
  }
  .mobile-open .nav__links a:hover { color: var(--red) !important; }
  .mobile-open .nav__cta-item { border-bottom: none !important; padding-top: 8px; }
  .mobile-open .nav__cta-item .nav__cta {
    display: block !important; width: 100%; box-sizing: border-box;
    text-align: center; padding: 16px 24px !important;
    color: var(--white) !important; background: var(--gold);
    border-radius: 6px; font-size: 14px !important; font-weight: 700 !important;
    letter-spacing: .04em;
  }
  .mobile-open .nav__logo--vertical { top: 0 !important; height: 48px !important; }
  .mobile-open .nav__name { display: none; }
  .mobile-open .float-cta { display: none !important; }

  .hero { padding-top: 96px; padding-bottom: 24px; min-height: 100dvh; height: 100dvh; justify-content: center; }
  .hero__aside, .hero__year, .hero__watermark { display: none !important; }
  .hero__body { padding: 44px 0 44px; }
  .hero__label { font-size: 10.5px; gap: 10px; flex-wrap: wrap; margin-bottom: 48px; color: rgba(255,255,255,.55); }
  .hero__label::before { width: 28px; }
  .hero__headline { font-size: clamp(40px, 11vw, 64px); line-height: 1.2; max-width: 100%; word-wrap: break-word; margin-bottom: 0; }
  .hero__rule { max-width: 220px; margin: 48px 0; }
  .hero__desc { font-size: 16px; max-width: 100%; margin-bottom: 60px; }
  .hero__actions { flex-direction: column; align-items: stretch; gap: 18px; margin-top: 0; }
  .btn-hero-primary, .btn-hero-ghost { width: 100%; justify-content: center; padding-top: 18px; padding-bottom: 18px; }
  .btn-hero-ghost::after { left: 50%; right: 50%; }
  .btn-hero-primary::before, .nav__cta::before, .submit-btn::before { display: none; }

  .section-label { font-size: 10px; gap: 8px; }
  .section-label::before { width: 20px; }

  .value-row { grid-template-columns: 36px 1fr; gap: 8px; padding: 20px 0; }
  .value-row:hover { padding-left: 0; background: transparent; }
  .value-row__head { margin-bottom: 6px; font-size: 16px; padding-right: 0; }
  .value-row__body { grid-column: 2; font-size: 13.5px; }
  .value-row::before { display: none; }

  .diff__card { padding: 32px 24px; }
  .diff__card-title { font-size: 20px; }
  .diff__card:hover { transform: none; box-shadow: none; }

  .methodology__domains { grid-template-columns: 1fr 1fr; }
  .methodology__watermark { width: 220px; height: 220px; right: -80px; }
  .methodology__watermark img { opacity: .03; }
  .methodology__quote { font-size: 80px; top: -30px; left: -8px; }
  .methodology__title { margin-bottom: 36px; }
  .methodology__domain { padding: 18px 16px; font-size: 13.5px; }
  .methodology__domain:hover { transform: none; }
  .methodology__domain::after { display: none; }
  .methodology__footnote { font-size: 13.5px; padding-left: 14px; }

  .offering-block { padding: 24px 20px; }
  .offering-block__header { flex-direction: column; align-items: flex-start; gap: 8px; margin-bottom: 16px; }
  .offering-block__header h3 { font-size: 20px; line-height: 1.3; }
  .offering-block__tag { font-size: 12.5px; color: rgba(255,255,255,.75); padding-left: 0; flex-basis: auto;
    display: block; line-height: 1.5; border-left: 2px solid var(--red); padding: 4px 0 4px 12px; margin-top: 4px; }
  .offering-block > p { font-size: 14px; }
  .offering-block__specialisms { margin-top: 20px; }
  .specialism { grid-template-columns: 1fr; gap: 4px; padding: 14px 0; }
  .specialism strong { font-size: 13.5px; }
  .specialism span { font-size: 12.5px; }
  .specialism:hover { padding-left: 0; background: transparent; }

  .phase-card { padding: 20px 0; }
  .phase-card:hover { padding-left: 0; }
  .phase-card__header { gap: 12px; flex-wrap: wrap; }
  .phase-card__title { font-size: 22px; }
  .phase-card p { font-size: 14px; }
  .phase-card__closing { font-size: 14.5px; padding-left: 14px; }
  .phases__items { padding-left: 20px; }
  .phase-card::after { left: -20px; top: 44px; width: 9px; height: 9px; }

  .team__roster--partners { grid-template-columns: 1fr !important; max-width: 480px; margin-left: auto; margin-right: auto; }
  .team__roster--partners .team__photo { width: 140px; height: 140px; }
  .team__roster--partners .team__person { padding: 40px 32px; }
  .team__roster--small { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .founder-card { padding: 24px 20px; }
  .founder-card__photo-wrap { max-width: 230px; }
  .founder-card__name { font-size: 26px; }
  .founder-card__content p { font-size: 13.5px; }
  .team__person { padding: 28px 24px; }

  .career__layout h2 { font-size: clamp(22px, 6vw, 30px); }
  .career__intro { font-size: 14px; }
  .career__belong li { font-size: 14px; }
  .career__offer span { font-size: 14px; }
  .career__offer:hover { transform: none; padding-left: 0; }

  .contact__headline { font-size: clamp(20px, 5.5vw, 28px); line-height: 1.3; }
  .contact__left h3, .contact__right h3 { font-size: 20px; }
  .contact__dv { font-size: 14px; }
  .contact__detail { grid-template-columns: 70px 1fr; padding: 14px 0; }
  .contact__left { padding: 24px 20px; }
  .contact__right { padding: 24px 20px; }
  .field-row { grid-template-columns: 1fr; }
  .form-foot { flex-direction: column; align-items: stretch; gap: 12px; }
  .submit-btn { width: 100%; justify-content: center; }
  form input, form select, form textarea { font-size: 16px; }

  .faq__q { font-size: 14.5px; padding-right: 36px; }
  .faq__a { padding-left: 16px; font-size: 13.5px; }

  .manifesto__line { font-size: clamp(26px, 7.5vw, 40px); line-height: 1.3; }

  .footer__top { grid-template-columns: 1fr; gap: 28px; }
  .footer__brand-logo { width: 40px; height: auto; }

  .float-cta { bottom: calc(20px + env(safe-area-inset-bottom, 0px)); right: 16px; z-index: 98; }
  .float-cta a { font-size: 12px; padding: 10px 16px 10px 10px; gap: 8px; }
  .float-cta a svg { width: 20px; height: 20px; }
  .back-to-top { bottom: calc(84px + env(safe-area-inset-bottom, 0px)); right: 16px; width: 42px; height: 42px; }

  .stats { padding: 40px 0 36px; }
  .stats__grid { grid-template-columns: 1fr 1fr; gap: 0; position: relative; }
  .stats__item { border-left: none !important; padding: 18px 14px; }
  .stats__grid::before { content: ''; position: absolute; left: 50%; top: 8%; bottom: 8%; width: 1px; background: var(--rule); }
  .stats__grid::after { content: ''; position: absolute; top: 50%; left: 4%; right: 4%; height: 1px; background: var(--rule); }
  .stats__num { font-size: clamp(32px, 9vw, 42px); margin-bottom: 8px; }
  .stats__label { font-size: 11.5px; line-height: 1.55; max-width: none; }

  .industries { position: relative; }
  .industries__chips { flex-wrap: nowrap; overflow-x: auto; scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch; scrollbar-width: none;
    padding: 2px 32px 10px 2px;
    margin-right: calc(-1 * clamp(16px, 4vw, 20px));
    mask-image: linear-gradient(90deg, black 85%, transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, black 85%, transparent 100%); }
  .industries__chips::-webkit-scrollbar { display: none; }
  .industries__chip { flex-shrink: 0; scroll-snap-align: start; min-height: 40px; display: inline-flex; align-items: center; }
  .industries__chip:hover { transform: none; box-shadow: none; }

  .about, .values, .diff, .methodology, .phases,
  .offerings, .team, .career, .faq, .contact { padding: 56px 0; }
  .industries { padding: 36px 0; }
  .about__prose p:first-child::first-letter { font-size: 3em; padding-right: 8px; }
}


/* ════════════════════════════════════════════════════
   RESPONSIVE — SMALL MOBILE (≤480px)
   ════════════════════════════════════════════════════ */
@media (max-width: 480px) {
  .wrap { padding: 0 16px; }
  .nav__name { font-size: 10px; letter-spacing: .1em; }
  .nav__brand { height: 44px; }
  .nav__logo--vertical { width: 42px !important; height: auto !important; }
  .hero__label { font-size: 10px; letter-spacing: .12em; }
  .hero__desc { font-size: 13px; line-height: 1.75; max-width: 100%; }
  .hero__headline { font-size: clamp(37.5px, 12.5vw, 52.5px); }
  .hero__headline strong { letter-spacing: -.03em; }
  .btn-hero-primary { width: 100%; justify-content: center; padding: 12px 20px; font-size: 13.5px; }
  .btn-hero-ghost { width: 100%; justify-content: center; padding: 12px 20px; font-size: 13.5px; }
  .stats__item { padding: 14px 10px; }
  .stats__num { font-size: 30px; }
  .stats__label { font-size: 10.5px; }
  .about__title { font-size: clamp(22px, 6vw, 32px); }
  .about__prose p { font-size: 14px; }
  .values__title { font-size: clamp(22px, 5vw, 30px); }
  .diff__card { padding: 24px 18px; }
  .diff__card-title { font-size: 18px; }
  .methodology__domains { grid-template-columns: 1fr; }
  .methodology__watermark { display: none; }
  .methodology__quote { font-size: 60px; top: -20px; }
  .methodology__domain { padding: 14px 14px; font-size: 13px; }
  .offering-block { padding: 24px 20px; }
  .offering-block__header h3 { font-size: 18px; }
  .offering-block__tag { font-size: 12px; }
  .phase-card__title { font-size: 20px; }
  .phases__items { padding-left: 18px; }
  .phase-card::after { left: -18px; }
  .team__roster--partners { grid-template-columns: 1fr !important; max-width: 100%; margin-left: 0; margin-right: 0; }
  .team__roster--partners .team__photo { width: 120px; height: 120px; }
  .team__roster--partners .team__person { padding: 32px 20px; }
  .team__roster--small { grid-template-columns: 1fr !important; gap: 12px; }
  .team__roster--small .team__person { padding: 20px 16px; }
  .team__roster--small .team__photo { width: 80px; height: 80px; }
  .founder-card__name { font-size: 22px; }
  .founder-card__photo-wrap { max-width: 200px; }
  .contact__headline { font-size: 22px; }
  .contact__left, .contact__right { padding: 24px 20px; }
  .footer__copy, .footer__legal a { font-size: 10px; }
  .manifesto__line { font-size: 24px; }
  .manifesto { padding: 56px 0; }
  .faq__title { font-size: 22px; }
  .faq__q { font-size: 14px; line-height: 1.45; padding-top: 16px; padding-bottom: 16px; }
  .industries__label { font-size: 10px; }
  .about, .values, .diff, .methodology, .phases,
  .offerings, .team, .career, .faq, .contact { padding: 48px 0; }
}


/* ════════════════════════════════════════════════════
   RESPONSIVE — SMALLEST (≤360px)
   ════════════════════════════════════════════════════ */
@media (max-width: 360px) {
  .wrap { padding: 0 12px; }
  .nav__name { font-size: 9px; letter-spacing: .08em; }
  .footer__bottom { flex-direction: column; align-items: flex-start; gap: 8px; }
  .float-cta { bottom: 16px; right: 12px; }
  .float-cta a { padding: 12px; border-radius: 50%; gap: 0; overflow: hidden; width: 48px; height: 48px; justify-content: center; }
  .float-cta a svg { width: 22px; height: 22px; background: transparent; }
  .float-cta__label { display: none; }
  .hero__headline { font-size: 32px; }
  .stats__num { font-size: 26px; }
  .back-to-top { bottom: calc(76px + env(safe-area-inset-bottom, 0px)); }
}


/* ════════════════════════════════════════════════════
   RESPONSIVE — HEIGHT-CONSTRAINED (short / landscape)
   Keeps the hero fully visible without clipping when the
   viewport is short (landscape phones, small laptops).
   ════════════════════════════════════════════════════ */
@media (max-height: 720px) {
  .hero { padding-top: 84px; padding-bottom: 24px; }
  .hero__body { padding: 18px 0; }
  .hero__label { margin-bottom: 12px; }
  .hero__rule { margin: 16px 0; }
  .hero__desc { margin-bottom: 20px; }
}
@media (max-height: 480px) {
  .hero { min-height: auto; height: auto; padding-top: 70px; padding-bottom: 28px; justify-content: flex-start; }
  .hero__headline { font-size: clamp(26px, 5.5vw, 38px); margin-bottom: 10px; }
  .hero__body { padding: 10px 0; }
  .hero__rule { margin: 12px 0; }
  .hero__desc { margin-bottom: 14px; line-height: 1.6; }
  .hero__scroll { display: none; }
}


/* ════════════════════════════════════════════════════
   BURGER ANIMATION
   ════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .nav__burger { padding: 12px; margin-right: -8px; }
  .nav__burger.open span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
  .nav__burger.open span:nth-child(2) { opacity: 0; }
  .nav__burger.open span:nth-child(3) { transform: rotate(-45deg) translate(4px, -4px); }
}


/* ════════════════════════════════════════════════════
   TOUCH / HOVER NONE
   ════════════════════════════════════════════════════ */
@media (hover: none), (pointer: coarse) {
  .cursor-glow { display: none !important; }
  .team__photo, .founder-card__photo { filter: grayscale(0%); }
  .diff__card::before { transform: scaleX(1); opacity: .6; }
  .offering-block::before { transform: scaleY(1); opacity: .6; }
  .value-row::before { display: none; }
}
* { -webkit-tap-highlight-color: transparent; }
.btn-hero-primary:active, .btn-hero-ghost:active, .submit-btn:active,
.nav__cta:active, .industries__chip:active, .float-cta a:active,
.back-to-top:active, .faq__q:active { transform: scale(.97); transition-duration: .08s; }


/* ════════════════════════════════════════════════════
   REDUCED MOTION
   ════════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  .hero__label, .hero__headline, .hero__rule,
  .hero__desc, .hero__actions {
    animation: none !important; opacity: 1 !important; transform: none !important;
  }
  .sr, .sr-left, .sr-right, .sr-scale {
    animation: none !important; transition: none !important;
    opacity: 1 !important; transform: none !important;
  }
  .hero__headline .word { animation: none !important; opacity: 1 !important; transform: none !important; }
  .hero__headline strong { animation: none !important; background-size: 100% 5px; }
  #scroll-bar { transition: none; }
  .hero__body { transition: none; }
  .marquee-inner { animation: none !important; }
  .cursor-glow { display: none; }
  .hero__scroll { animation: none !important; opacity: 1; }
  .hero__scroll-line { animation: none !important; }
  .btn-hero-primary::before, .nav__cta::before, .submit-btn::before { display: none; }
  .diff__card::after, .founder-card::after { transition: none; }
  .faq__a { animation: none !important; }
  * { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

html, body { overflow-x: hidden; max-width: 100vw; }
