/* ─────────────────────────────────────────────────
   TRUSTORY · identity-first dark theme
   Minimal, futuristic, warm. v1
   ───────────────────────────────────────────────── */

/* ── Fonts ─────────────────────────────────────── */
@font-face {
  font-family: "Satoshi";
  src: url("../fonts/Satoshi-Light.woff2") format("woff2");
  font-weight: 300; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Satoshi";
  src: url("../fonts/Satoshi-Regular.woff2") format("woff2");
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Satoshi";
  src: url("../fonts/Satoshi-Medium.woff2") format("woff2");
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Satoshi";
  src: url("../fonts/Satoshi-Bold.woff2") format("woff2");
  font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Satoshi";
  src: url("../fonts/Satoshi-Black.woff2") format("woff2");
  font-weight: 900; font-style: normal; font-display: swap;
}

/* ── Tokens ────────────────────────────────────── */
:root {
  /* Brand palette — strict:
     Bright Yellow #FBAE17, Carbon Grey #333333, White #FFFFFF.
     Other greys below are tonal shades of Carbon Grey for dark-theme depth. */
  --yellow:    #FBAE17;
  --yellow-2:  #FFC54A;
  --grey:      #333333;
  --white:     #FFFFFF;

  --bg:        #1A1A1A;
  --bg-raise:  #212121;
  --surface:   #262626;
  --surface-2: #2E2E2E;
  --line:      #333333;
  --line-2:    #3F3F3F;
  --text:      #FFFFFF;
  --text-2:    rgba(255,255,255,.68);
  --text-3:    rgba(255,255,255,.38);
  --accent:    var(--yellow);
  --accent-2:  var(--yellow-2);

  --display: "Poppins", "Satoshi", ui-sans-serif, system-ui, -apple-system, sans-serif;
  --body:    "DM Sans", "Satoshi", "Helvetica Neue", Arial, sans-serif;
  --mono:    ui-monospace, "SF Mono", Menlo, Consolas, monospace;

  --container: 1240px;
  --gutter: clamp(20px, 4vw, 48px);
  --ease: cubic-bezier(.2,.7,.2,1);
}

/* ── Reset ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--body);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.65;
  letter-spacing: .005em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; transition: color .3s var(--ease); }
button { background: none; border: 0; color: inherit; font: inherit; cursor: pointer; }
ul { list-style: none; }
em { font-style: italic; color: var(--yellow); font-weight: 300; }

::selection { background: var(--yellow); color: #1A1A1A; }

/* ── Layout helpers ────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.hairline {
  border: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line-2) 20%, var(--line-2) 80%, transparent);
  margin: 0;
}
.mono { font-family: var(--mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; }
.muted { color: var(--text-2); }

/* ── Typography ────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 1.02;
  color: var(--text);
}
.h2 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  letter-spacing: -0.035em;
  line-height: 1.02;
  font-weight: 900;
  font-family: var(--display);
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--text-2);
}
.eyebrow__dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent), 0 0 24px rgba(251,174,23,.4);
  animation: pulse 2.6s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .55; transform: scale(.88); }
}

.section__num {
  display: inline-block;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--text-2);
  margin-bottom: 28px;
  position: relative;
  padding-left: 22px;
}
.section__num::before {
  content: "";
  position: absolute; left: 0; top: 50%;
  width: 14px; height: 1px;
  background: var(--accent);
}
.section__lede {
  color: var(--text-2);
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  max-width: 58ch;
  margin-top: 24px;
  line-height: 1.6;
}

/* ── Buttons ───────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  font-family: var(--body);
  font-weight: 400;
  font-size: 14.5px;
  letter-spacing: .01em;
  border-radius: 2px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all .35s var(--ease);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn svg { transition: transform .35s var(--ease); }
.btn:hover svg { transform: translateX(3px); }

.btn--primary {
  background: linear-gradient(180deg, var(--yellow) 0%, #E69A0A 100%);
  color: #1A1A1A;
  border-color: var(--yellow-2);
  font-weight: 500;
  box-shadow: 0 0 0 1px rgba(251,174,23,.0), 0 10px 40px -12px rgba(251,174,23,.55), inset 0 1px 0 rgba(255,255,255,.18);
}
.btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 0 1px rgba(251,174,23,.35), 0 16px 50px -14px rgba(251,174,23,.7), inset 0 1px 0 rgba(255,255,255,.22);
}

.btn--ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--line-2);
}
.btn--ghost:hover {
  border-color: var(--text-2);
  background: rgba(255,255,255,.02);
}

.btn--lg { padding: 18px 28px; font-size: 15px; }

/* ── Nav ───────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  background: rgba(9, 9, 9, 0.55);
  border-bottom: 1px solid transparent;
  transition: background .3s var(--ease), border-color .3s var(--ease);
}
.nav.is-scrolled {
  background: rgba(10,10,11,.82);
  border-bottom-color: var(--line);
}
.nav__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 14px var(--gutter);
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav__logo img { height: 56px; width: auto; display: block; }
.nav__links {
  display: flex; gap: 32px;
  margin-left: auto;
}
.nav__links a {
  font-size: 13.5px;
  color: var(--text-2);
  letter-spacing: .01em;
  transition: color .25s var(--ease);
  position: relative;
}
.nav__links a:hover { color: var(--text); }
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -6px;
  height: 1px; width: 0;
  background: var(--accent);
  transition: width .3s var(--ease);
}
.nav__links a:hover::after { width: 100%; }
.nav__cta { padding: 10px 18px; font-size: 13.5px; }
.nav__toggle {
  display: none;
  margin-left: auto;
  width: 28px; height: 22px;
  flex-direction: column;
  justify-content: space-between;
}
.nav__toggle span {
  display: block; height: 1.5px; background: var(--text);
  transition: transform .3s var(--ease), opacity .3s var(--ease);
  transform-origin: center;
}
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(10px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-10px) rotate(-45deg); }

.nav__mobile {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 20px var(--gutter) 32px;
  background: rgba(10,10,11,.95);
  border-top: 1px solid var(--line);
}
.nav__mobile a {
  padding: 14px 0;
  font-size: 18px;
  color: var(--text);
  border-bottom: 1px solid var(--line);
}
.nav__mobile a.btn { border-bottom: 0; margin-top: 16px; }
.nav__mobile.is-open { display: flex; }

/* ── Hero ──────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 320px 0 200px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero__inner {
  position: relative;
  z-index: 3;
  max-width: 1100px;
}
.hero__title {
  font-family: var(--display);
  font-weight: 900;
  /* Reduced by 20% in Round 4 */
  font-size: clamp(2.56rem, 7.2vw, 6rem);
  line-height: 0.96;
  letter-spacing: -0.04em;
  margin: 28px 0 32px;
  max-width: 14ch;
}
.hero__sub {
  font-size: clamp(1.05rem, 1.5vw, 1.3rem);
  max-width: 56ch;
  color: var(--text-2);
  line-height: 1.55;
  font-weight: 300;
}
.hero__ctas {
  display: flex; flex-wrap: wrap; gap: 14px;
  margin-top: 44px;
}
.hero__meta {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 88px;
  padding-top: 36px;
  border-top: 1px solid var(--line);
  max-width: 880px;
}
.hero__meta > div { display: flex; flex-direction: column; gap: 6px; }
.hero__meta .num {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  letter-spacing: -0.03em;
  color: var(--text);
}
.hero__meta .lbl {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-3);
  line-height: 1.5;
}

/* Hero backdrop — video + overlay + grid + glows */
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: saturate(0.85) brightness(0.9);
  pointer-events: none;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,0.55) 0%, rgba(10,10,10,0.72) 55%, rgba(10,10,10,0.95) 100%);
  z-index: 1;
}
.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, #000 20%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, #000 20%, transparent 80%);
  z-index: 2;
}
.hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: .4;
  pointer-events: none;
  z-index: 0;
}
.hero__glow--a {
  width: 520px; height: 520px;
  background: radial-gradient(circle, var(--yellow) 0%, transparent 70%);
  top: -120px; right: -80px;
  opacity: .22;
  animation: drift 22s ease-in-out infinite alternate;
}
.hero__glow--b {
  width: 620px; height: 620px;
  background: radial-gradient(circle, #FFFFFF 0%, transparent 70%);
  bottom: -220px; left: -160px;
  opacity: .05;
  animation: drift 28s ease-in-out infinite alternate-reverse;
}
@keyframes drift {
  0%   { transform: translate(0,0); }
  100% { transform: translate(60px,-40px); }
}

.hero__scroll {
  position: absolute;
  bottom: 36px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  color: var(--text-3);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .25em;
  z-index: 4;
}
.hero__scroll span {
  width: 1px; height: 40px;
  background: linear-gradient(180deg, transparent, var(--text-3), transparent);
  animation: scrollIndicator 2.4s ease-in-out infinite;
}
@keyframes scrollIndicator {
  0%, 100% { transform: scaleY(.6); transform-origin: top; opacity: .4; }
  50% { transform: scaleY(1); opacity: 1; }
}

/* ── Generic sections ──────────────────────────── */
.section {
  padding: clamp(90px, 12vw, 160px) 0;
}
.section__head {
  margin-bottom: 72px;
  max-width: 880px;
}

/* ── Problem ───────────────────────────────────── */
.problem__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}
.problem__lead p { font-size: 1.15rem; color: var(--text); line-height: 1.55; max-width: 42ch; }
.problem__lead p + p { margin-top: 18px; color: var(--text-2); }

.symptoms { display: flex; flex-direction: column; }
.symptoms li {
  display: flex; gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
}
.symptoms li:first-child { border-top: 1px solid var(--line); }
.symptoms__idx {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .15em;
  color: var(--accent);
  flex-shrink: 0;
  min-width: 20px;
}
.symptoms p { color: var(--text); font-size: 1.05rem; line-height: 1.55; }

/* ── Transformation ────────────────────────────── */
.transform__grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
}
.state {
  padding: 40px;
  border: 1px solid var(--line-2);
  border-radius: 2px;
  position: relative;
  transition: border-color .4s var(--ease), background .4s var(--ease);
}
.state header { margin-bottom: 22px; }
.state__tag {
  display: inline-block;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: 4px 10px;
  border: 1px solid var(--line-2);
  border-radius: 2px;
  margin-bottom: 20px;
  color: var(--text-2);
}
.state h3 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  letter-spacing: -0.025em;
  line-height: 1.15;
}
.state p { color: var(--text-2); line-height: 1.6; }
.state--before { opacity: .72; }
.state--before:hover { opacity: .9; }
.state--after {
  background: linear-gradient(180deg, rgba(251,174,23,.04), transparent 60%);
  border-color: rgba(251,174,23,.3);
}
.state--after .state__tag {
  color: var(--accent-2);
  border-color: rgba(251,174,23,.4);
  background: rgba(251,174,23,.06);
}
.transform__arrow { color: var(--accent); width: 80px; }
.transform__arrow svg { width: 100%; height: auto; }

/* ── Cases ─────────────────────────────────────── */
.cases {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.case {
  padding: 0;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 2px;
  transition: all .4s var(--ease);
  display: flex; flex-direction: column;
  position: relative;
  overflow: hidden;
}
.case__media {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #0a0a0a;
}
.case__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s var(--ease);
}
.case:hover .case__media img { transform: scale(1.03); }
.case__body { padding: 30px 32px 34px; display: flex; flex-direction: column; flex: 1; }
.case__desc {
  color: var(--text-3);
  font-size: .92rem;
  line-height: 1.6;
  margin-top: 14px;
}
.case__desc + .case__desc { margin-top: 10px; }
.case::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle at 0% 0%, rgba(251,174,23,.08), transparent 60%);
  opacity: 0;
  transition: opacity .4s var(--ease);
}
.case:hover {
  transform: translateY(-3px);
  border-color: rgba(251,174,23,.35);
  background: var(--surface-2);
}
.case:hover::before { opacity: 1; }
.case > * { position: relative; z-index: 1; }

.case header { margin-bottom: 24px; }
.case__sector {
  display: block;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 14px;
}
.case h3 {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.9rem;
  letter-spacing: -0.03em;
}
.case__story {
  color: var(--text-2);
  font-size: .98rem;
  line-height: 1.55;
  margin-bottom: auto;
  padding-bottom: 24px;
}
.case__metrics {
  display: flex; flex-direction: column; gap: 12px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.case__metrics > div {
  display: flex; align-items: baseline; gap: 12px;
}
.case__metrics .num {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
  color: var(--accent-2);
  flex-shrink: 0;
  min-width: 85px;
}
.case__metrics span:last-child {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.4;
}

/* ── IME Tiers ─────────────────────────────────── */
.ime {
  position: relative;
}
.tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}
.tier {
  position: relative;
  padding: 44px 36px 36px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 2px;
  display: flex; flex-direction: column;
  transition: all .4s var(--ease);
}
.tier:hover {
  border-color: var(--line-2);
  transform: translateY(-2px);
}
.tier--featured {
  background:
    linear-gradient(180deg, rgba(251,174,23,.08) 0%, rgba(251,174,23,0) 40%),
    var(--surface-2);
  border-color: rgba(251,174,23,.35);
  box-shadow: 0 30px 80px -40px rgba(251,174,23,.35), inset 0 1px 0 rgba(255,255,255,.04);
  transform: translateY(-12px);
}
.tier--featured:hover { transform: translateY(-14px); }

.tier__badge {
  position: absolute; top: -11px; left: 36px;
  padding: 5px 12px;
  background: var(--yellow);
  color: #1A1A1A;
  font-weight: 500;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  border-radius: 2px;
}
.tier__head { margin-bottom: 24px; }
.tier__name {
  display: block;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--text-2);
  margin-bottom: 20px;
}
.tier__price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 10px;
  font-family: var(--display);
  color: var(--text);
}
.tier__price .currency {
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--text-2);
  align-self: flex-start;
  padding-top: 8px;
}
.tier__price .amount {
  font-size: clamp(3rem, 4.5vw, 4rem);
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 1;
}
.tier__turnaround {
  display: block;
  font-size: 13px;
  color: var(--text-3);
  font-family: var(--mono);
  letter-spacing: .08em;
  text-transform: uppercase;
}
.tier__tag {
  font-size: .98rem;
  color: var(--text);
  padding: 20px 0 24px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-bottom: 24px;
  font-style: italic;
  color: var(--text-2);
}
.tier__list {
  display: flex; flex-direction: column; gap: 12px;
  margin-bottom: 32px;
  flex: 1;
}
.tier__list li {
  position: relative;
  padding-left: 22px;
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--text);
}
.tier__list li::before {
  content: "";
  position: absolute;
  left: 0; top: 9px;
  width: 10px; height: 1px;
  background: var(--accent);
}
.tier__cta { width: 100%; }

.ime__foot {
  display: flex; align-items: flex-start; gap: 10px;
  margin-top: 48px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .1em;
  color: var(--text-3);
  text-transform: uppercase;
}
.ime__foot-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 10px rgba(251,174,23,.6);
  flex: none;
  margin-top: .45em;
}

/* ── Consultancy ───────────────────────────────── */
.consult__inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: clamp(40px, 8vw, 120px);
  align-items: center;
}
.consult__copy .h2 { margin-bottom: 28px; }
.consult__copy p { color: var(--text-2); margin-bottom: 16px; max-width: 48ch; line-height: 1.65; }
.consult__copy .btn { margin-top: 28px; }

.consult__pillars {
  display: flex; flex-direction: column;
  border-top: 1px solid var(--line);
}
.consult__pillars > div {
  display: flex; align-items: baseline; gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
  transition: padding-left .3s var(--ease);
}
.consult__pillars > div:hover { padding-left: 8px; }
.consult__pillars span {
  color: var(--accent);
  font-family: var(--mono);
}
.consult__pillars p {
  font-family: var(--display);
  font-weight: 500;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
  color: var(--text);
}

/* ── About ─────────────────────────────────────── */
.about__grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: clamp(40px, 7vw, 96px);
  align-items: start;
}
.about__portrait { position: relative; }
.about__portrait-frame {
  position: relative;
  border: 1px solid var(--line-2);
  padding: 12px;
  border-radius: 2px;
  background: var(--surface);
  overflow: hidden;
}
.about__portrait-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(251,174,23,.14), transparent 60%);
  pointer-events: none;
  mix-blend-mode: screen;
}
.about__portrait-frame img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  filter: grayscale(.2) contrast(1.05);
  transition: filter .5s var(--ease);
}
.about__portrait-frame:hover img { filter: grayscale(0) contrast(1); }
.about__caption {
  display: block;
  margin-top: 16px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--text-3);
}
.about__copy .h2 { margin-bottom: 32px; }
.about__copy p {
  color: var(--text-2);
  margin-bottom: 20px;
  line-height: 1.65;
  font-size: 1.02rem;
  max-width: 58ch;
}
.about__copy .muted {
  border-left: 2px solid var(--accent);
  padding-left: 20px;
  font-style: italic;
  color: var(--text);
  margin: 28px 0;
}
.link-arrow {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--accent-2);
  font-size: 14px;
  border-bottom: 1px solid rgba(251,174,23,.3);
  padding-bottom: 4px;
  margin-top: 12px;
  transition: all .3s var(--ease);
}
.link-arrow:hover {
  color: var(--accent);
  border-color: var(--accent);
}
.link-arrow svg { transition: transform .3s var(--ease); }
.link-arrow:hover svg { transform: translate(2px,-2px); }

/* ── Final CTA ─────────────────────────────────── */
.final {
  padding: clamp(120px, 18vw, 220px) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final__aura {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.final__aura::before,
.final__aura::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  will-change: transform;
}
.final__aura::before {
  width: 70vw;
  height: 70vw;
  max-width: 900px;
  max-height: 900px;
  left: -10%;
  top: -20%;
  background: radial-gradient(circle, rgba(251,174,23,0.55), rgba(251,174,23,0) 65%);
  animation: auraMoveA 2s ease-in-out infinite;
}
.final__aura::after {
  width: 60vw;
  height: 60vw;
  max-width: 780px;
  max-height: 780px;
  right: -15%;
  bottom: -25%;
  background: radial-gradient(circle, rgba(255,197,74,0.45), rgba(255,197,74,0) 65%);
  animation: auraMoveB 2s ease-in-out infinite;
}
.final::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 50% 30%, rgba(251,174,23,0.18), transparent 55%),
    radial-gradient(ellipse at 20% 80%, rgba(251,174,23,0.10), transparent 55%),
    radial-gradient(ellipse at 80% 70%, rgba(255,197,74,0.12), transparent 55%);
}
.final::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, transparent 40%, rgba(26,26,26,0.55) 85%);
  pointer-events: none;
  z-index: 0;
}
@keyframes auraMoveA {
  0%   { transform: translate(0%,   0%)  scale(1);    }
  25%  { transform: translate(12%,  6%)  scale(1.08); }
  50%  { transform: translate(0%,  12%)  scale(1.04); }
  75%  { transform: translate(-12%, 6%)  scale(1.08); }
  100% { transform: translate(0%,   0%)  scale(1);    }
}
@keyframes auraMoveB {
  0%   { transform: translate(0%,    0%)  scale(1);    }
  25%  { transform: translate(-10%, -7%)  scale(1.1);  }
  50%  { transform: translate(0%,  -14%)  scale(1.05); }
  75%  { transform: translate(10%,  -7%)  scale(1.1);  }
  100% { transform: translate(0%,    0%)  scale(1);    }
}
.final__inner {
  position: relative;
  z-index: 1;
  display: flex; flex-direction: column; align-items: center;
}
.final__title {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(3rem, 10vw, 8rem);
  letter-spacing: -0.05em;
  line-height: 0.92;
  margin: 24px 0 32px;
}
.final__sub {
  max-width: 52ch;
  color: var(--text-2);
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  line-height: 1.6;
  margin-bottom: 48px;
}
.final__ctas {
  display: flex; flex-wrap: wrap; gap: 14px;
  justify-content: center;
}

/* ── Footer ────────────────────────────────────── */
.footer {
  border-top: 1px solid var(--line);
  padding: 80px 0 32px;
  background: var(--bg-raise);
}
.footer__inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(40px, 8vw, 120px);
  margin-bottom: 60px;
}
.footer__logo { height: 72px; width: auto; margin-bottom: 20px; display: block; }
.footer__tag {
  font-family: var(--body);
  font-weight: 400;
  font-size: 1rem;
  letter-spacing: 0;
  color: var(--accent);
  max-width: 28ch;
  line-height: 1.4;
}
.footer__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.footer__cols h4 {
  font-family: var(--mono);
  font-weight: 400;
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 20px;
}
.footer__cols a, .footer__cols p {
  display: block;
  font-size: 14.5px;
  color: var(--text-2);
  padding: 6px 0;
  line-height: 1.5;
  transition: color .25s var(--ease);
}
.footer__cols a:hover { color: var(--text); }
.footer__bottom {
  border-top: 1px solid var(--line);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--text-3);
}

/* ── Reveal motion ─────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
  transition-delay: var(--delay, 0s);
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Responsive ────────────────────────────────── */
@media (max-width: 1024px) {
  .cases { grid-template-columns: repeat(2, 1fr); }
  .tiers { grid-template-columns: 1fr; gap: 16px; }
  .tier--featured { transform: none; }
  .tier--featured:hover { transform: translateY(-2px); }
  .consult__inner { grid-template-columns: 1fr; }
  .about__grid { grid-template-columns: 1fr; }
  .about__portrait { max-width: 360px; }
  .footer__inner { grid-template-columns: 1fr; }
}

@media (max-width: 880px) {
  .hero__meta { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}

@media (max-width: 768px) {
  .nav__links, .nav__cta { display: none; }
  .nav__toggle { display: flex; margin-left: auto; }
  .hero { padding: 140px 0 80px; min-height: auto; }
  .hero__meta { grid-template-columns: 1fr; gap: 20px; padding-top: 28px; margin-top: 56px; }
  .hero__scroll { display: none; }
  .problem__grid { grid-template-columns: 1fr; gap: 48px; }
  .transform__grid { grid-template-columns: 1fr; }
  .transform__arrow { transform: rotate(90deg); justify-self: center; width: 50px; }
  .cases { grid-template-columns: 1fr; }
  .footer__cols { grid-template-columns: 1fr; gap: 24px; }
  .footer__bottom { flex-direction: column; gap: 12px; text-align: center; }
}

@media (max-width: 480px) {
  .section { padding: 80px 0; }
  .tier { padding: 36px 24px 28px; }
  .state { padding: 28px; }
  .case { padding: 28px 24px; }
}

/* ── Reduced motion ────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
  .hero__glow { animation: none; }
}

/* ── Section backdrop assets ───────────────────── */
.section { position: relative; overflow: hidden; }
.section__asset {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  opacity: 0.08;
  filter: grayscale(0.1);
}
.section__asset--br { left: -320px; top: -120px; width: 840px; height: auto; }
.section__asset--bulb { width: 336px; left: auto; right: -60px; top: auto; bottom: -60px; opacity: 0.18; }
.section__asset--tl { left: -60px; top: -60px; width: 420px; height: auto; opacity: 0.07; }
.section__asset--r  { right: -40px; top: 50%; transform: translateY(-50%); width: 360px; height: auto; opacity: 0.09; }
.section__asset--center {
  left: 50%; top: 50%; transform: translate(-50%, -50%);
  width: 880px; max-width: 120%; height: auto; opacity: 0.05;
}
.section > .container { position: relative; z-index: 1; }

/* ── Light-mode section variant ────────────────── */
.section--light {
  background: #F7F7F7;
  color: #1A1A1A;
}
.section--light h1,
.section--light h2,
.section--light h3,
.section--light h4,
.section--light .h2,
.section--light p,
.section--light li,
.section--light a:not(.btn) {
  color: #1A1A1A;
}
.section--light .section__num { color: #4A4A4A; }
.section--light .section__num::before { background: var(--accent); }
.section--light .section__lede,
.section--light .muted { color: #5A5A5A; }
.section--light em { color: #C98A00; }
.section--light .state {
  border-color: rgba(0,0,0,0.12);
  background: #FFFFFF;
}
.section--light .state p { color: #3A3A3A; }
.section--light .state--before { opacity: 0.82; }
.section--light .state__tag {
  color: #4A4A4A;
  border-color: rgba(0,0,0,0.14);
  background: #F7F7F7;
}
.section--light .state--after {
  background: linear-gradient(180deg, rgba(251,174,23,.10), #FFFFFF 60%);
  border-color: rgba(251,174,23,0.45);
}
.section--light .state--after .state__tag {
  color: #B17A00;
  border-color: rgba(251,174,23,0.5);
  background: rgba(251,174,23,0.10);
}
.section--light .transform__arrow { color: #C98A00; }
.section--light .consult__pillars { border-top-color: rgba(0,0,0,0.14); }
.section--light .consult__pillars > div { border-bottom-color: rgba(0,0,0,0.10); }
.section--light .consult__pillars p { color: #1A1A1A; }
.section--light .consult__pillars span { color: #C98A00; }
.section--light + .hairline,
.hairline + .section--light { display: none; }

/* ── Cases carousel ────────────────────────────── */
.cases-carousel {
  position: relative;
  display: grid;
  grid-template-columns: 44px 1fr 44px;
  gap: 16px;
  align-items: stretch;
}
.cases-carousel__viewport {
  overflow: hidden;
  position: relative;
}
.cases-carousel__track {
  display: flex;
  width: 200%;
  transition: transform 480ms cubic-bezier(.4,0,.2,1);
  will-change: transform;
}
.cases-slide {
  flex: 0 0 50%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  padding: 0 2px;
}
.cases-nav {
  align-self: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line-2);
  background: rgba(255,255,255,0.02);
  color: var(--text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: border-color .25s var(--ease), background .25s var(--ease), transform .25s var(--ease);
}
.cases-nav:hover:not(:disabled) {
  border-color: var(--accent);
  color: var(--accent);
  transform: scale(1.06);
}
.cases-nav:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}
.cases-dots {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}
.cases-dot {
  width: 24px;
  height: 2px;
  background: var(--line-2);
  border-radius: 1px;
  transition: background .3s var(--ease), width .3s var(--ease);
  padding: 0;
}
.cases-dot.is-active { background: var(--accent); width: 40px; }

.work__cta {
  margin-top: 48px;
  text-align: right;
}

/* ── Voices / Testimonials scroller ────────────── */
.voices-scroller {
  position: relative;
  display: grid;
  grid-template-columns: 44px 1fr 44px;
  gap: 16px;
  align-items: stretch;
}
.voices-scroller__viewport {
  overflow: hidden;
  position: relative;
}
.voices-scroller__track {
  display: flex;
  gap: 24px;
  transition: transform 480ms cubic-bezier(.4,0,.2,1);
  will-change: transform;
}
.voices-nav {
  align-self: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line-2);
  background: rgba(255,255,255,0.02);
  color: var(--text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: border-color .25s var(--ease), color .25s var(--ease), transform .25s var(--ease);
}
.voices-nav:hover:not(:disabled) {
  border-color: var(--accent);
  color: var(--accent);
  transform: scale(1.06);
}
.voices-nav:disabled { opacity: 0.3; cursor: not-allowed; }

.voice {
  flex: 0 0 100%;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 2px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  transition: border-color .4s var(--ease), transform .4s var(--ease);
}
.voice:hover {
  border-color: rgba(251,174,23,0.35);
  transform: translateY(-3px);
}
.voice__photo {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid var(--line-2);
  background: var(--bg-raise);
  flex-shrink: 0;
}
.voice__photo img { width: 100%; height: 100%; object-fit: cover; }
.voice__quote {
  flex: 1;
  font-size: 0.98rem;
  line-height: 1.6;
  color: var(--text-2);
  position: relative;
  padding-left: 22px;
}
.voice__quote::before {
  content: "\201C";
  position: absolute;
  left: -2px;
  top: -20px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3rem;
  color: var(--accent);
  line-height: 1;
}
.voice__quote p { color: var(--text-2); font-style: italic; font-size: inherit; }
.voice__name {
  display: block;
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text);
}
.voice__role {
  display: block;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-top: 6px;
}

/* single testimonial per slide: padded for breathing room */
.voice {
  padding: 56px 72px;
  flex-direction: row;
  align-items: flex-start;
  gap: 36px;
}
.voice__photo { width: 96px; height: 96px; }
.voice__quote { font-size: 1.15rem; line-height: 1.65; padding-left: 32px; }
.voice__quote::before { font-size: 4.5rem; top: -24px; }
.voice figcaption { min-width: 180px; flex-shrink: 0; }
@media (max-width: 768px) {
  .voice {
    padding: 32px 24px;
    flex-direction: column;
    gap: 20px;
  }
  .voice__photo { width: 64px; height: 64px; }
  .voice__quote { font-size: 0.98rem; padding-left: 22px; }
  .voice__quote::before { font-size: 3rem; top: -20px; }
}
@media (max-width: 768px) {
  .voices-scroller { grid-template-columns: 1fr; }
  .voices-nav { display: none; }
  .voices-scroller__viewport {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }
  .voices-scroller__track { transition: none; }
  .voice { flex-basis: 85vw; scroll-snap-align: start; }
}

/* ── Work page ─────────────────────────────────── */
.workpage__hero { padding-top: clamp(140px, 18vw, 200px); padding-bottom: 48px; }
.workpage__title { margin: 20px 0 16px; }
.workpage__case-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.workpage__case--reverse .workpage__case-inner {
  grid-template-columns: 1fr 1.1fr;
  direction: rtl;
}
.workpage__case--reverse .workpage__case-inner > * { direction: ltr; }
.workpage__case-media {
  border: 1px solid var(--line);
  border-radius: 2px;
  overflow: hidden;
  background: #0a0a0a;
}
.workpage__case-media img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  display: block;
  transition: transform .6s var(--ease);
}
.workpage__case-media:hover img { transform: scale(1.03); }
.workpage__case-body h2 { margin: 12px 0 20px; }
.workpage__case-body p { color: var(--text-2); line-height: 1.65; margin-bottom: 16px; max-width: 54ch; }
.workpage__case-story {
  color: var(--text) !important;
  font-size: 1.05rem;
  padding-bottom: 8px;
}
.workpage__services {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.workpage__services dt {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 8px;
}
.workpage__services dd {
  font-size: 14.5px;
  color: var(--text-2);
  line-height: 1.6;
}

/* ── Responsive additions ──────────────────────── */
@media (max-width: 1024px) {
  .voices__grid { grid-template-columns: 1fr; }
  .workpage__case-inner,
  .workpage__case--reverse .workpage__case-inner { grid-template-columns: 1fr; direction: ltr; }
}
@media (max-width: 768px) {
  .cases-carousel {
    grid-template-columns: 1fr;
  }
  .cases-nav { display: none; }
  .cases-carousel__viewport {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }
  .cases-carousel__track {
    width: max-content;
    transition: none;
  }
  .cases-slide {
    width: 85vw;
    grid-template-columns: 1fr;
    scroll-snap-align: start;
  }
  .section__asset { opacity: 0.05 !important; width: 260px !important; }
}

/* Reduced motion for final gradient */
@media (prefers-reduced-motion: reduce) {
  .final__aura::before,
  .final__aura::after { animation: none; }
}

/* ── Identé Mapping snapshot ───────────────── */
.identity { position: relative; }
.idmap {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: clamp(12px, 2vw, 24px);
  align-items: stretch;
  margin: 0;
  padding: 0;
  list-style: none;
}
.idmap__node {
  position: relative;
  padding: 32px 28px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 2px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color .35s var(--ease), transform .35s var(--ease), background .35s var(--ease);
}
.idmap__node:hover {
  border-color: rgba(251,174,23,0.35);
  transform: translateY(-3px);
  background: var(--surface-2);
}
.idmap__step {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--accent);
}
.idmap__node h3 {
  font-family: var(--display);
  font-weight: 900;
  font-size: 1.6rem;
  letter-spacing: -0.03em;
  line-height: 1.05;
}
.idmap__node p {
  color: var(--text-2);
  font-size: 0.92rem;
  line-height: 1.5;
}
.idmap__node--final {
  background: linear-gradient(180deg, rgba(251,174,23,0.08), transparent 60%), var(--surface-2);
  border-color: rgba(251,174,23,0.35);
}
.idmap__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  padding: 0;
}
.idmap__arrow svg { width: 40px; height: 12px; }
.idmap__foot { margin-top: 40px; }
@media (max-width: 1024px) {
  .idmap {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .idmap__arrow { transform: rotate(90deg); justify-self: center; padding: 4px 0; }
}

/* ── Case links (clickable cards) ──────────────── */
.case-link {
  display: block;
  height: 100%;
  color: inherit;
  text-decoration: none;
}
.case-link > .case { height: 100%; }

/* ── Animated metric numbers ───────────────────── */
.hero__meta .num {
  font-variant-numeric: tabular-nums;
}

/* ──────────────────────────────────────────────────
   ROUND 4 · Spotlight grid, ethereal flow,
   free report, team page, poppins/dm sans polish
   ────────────────────────────────────────────────── */

/* Poppins display weights — heavier letter feel */
h1, h2, h3, h4, .h2, .hero__title, .final__title, .idmap__node h3, .case h3, .state h3, .tier__price .amount, .voice__name, .consult__pillars p {
  font-family: var(--display);
  font-weight: 700;
}
.hero__title, .final__title, .h2 { font-weight: 800; }
h1.hero__title { letter-spacing: -0.035em; }
.h2 { letter-spacing: -0.025em; }

/* Body weight baseline for DM Sans */
body { font-weight: 400; }

/* ── Round 4 · Spotlight grid (merged Case Studies + Testimonials + Team) ── */
.spotlight { position: relative; }
.spotlight__grid {
  display: grid;
  grid-template-columns: 1.55fr 1fr;
  gap: 20px;
  align-items: stretch;
  min-height: 640px;
}
.spotlight__grid > .spotcard--tall { grid-row: span 2; }
.spotlight__right {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 20px;
}
.spotcard {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 2px;
  overflow: hidden;
  transition: border-color .4s var(--ease), transform .4s var(--ease), background .4s var(--ease);
  color: inherit;
  text-decoration: none;
}
.spotcard:hover {
  border-color: rgba(251,174,23,0.35);
  transform: translateY(-3px);
  background: var(--surface-2);
}
.spotcard__eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--accent);
  padding: 26px 30px 0;
}
.spotcard__eyebrow::before {
  content: "";
  width: 22px; height: 1px;
  background: var(--accent);
  display: inline-block;
}
.spotcard__body {
  padding: 22px 30px 26px;
  display: flex; flex-direction: column; flex: 1;
  min-height: 0;
}
.spotcard__footer {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
  padding: 18px 30px 26px;
  border-top: 1px solid var(--line);
  margin-top: auto;
}
.spotcard__learn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent-2);
  transition: color .25s var(--ease), gap .25s var(--ease);
}
.spotcard__learn::before {
  content: "";
  width: 22px; height: 1px;
  background: currentColor;
  display: inline-block;
}
.spotcard:hover .spotcard__learn { color: var(--accent); gap: 14px; }
.spotcard__arrows { display: flex; gap: 8px; }
.spotcard__arrow {
  width: 34px; height: 34px; border-radius: 50%;
  border: 1px solid var(--line-2);
  background: transparent;
  color: var(--text);
  display: inline-flex; align-items: center; justify-content: center;
  transition: border-color .25s var(--ease), color .25s var(--ease), transform .25s var(--ease);
}
.spotcard__arrow:hover { border-color: var(--accent); color: var(--accent); transform: scale(1.06); }

/* Spotcard — Case Studies (tall, left) */
.spotcard--cases { grid-column: 1; }
.spotcard--cases .spot-case {
  display: none;
  flex-direction: column;
  flex: 1;
  animation: spotFade .7s var(--ease);
}
.spotcard--cases .spot-case.is-active { display: flex; }
.spot-case__media {
  width: 100%;
  aspect-ratio: 16/9;
  background: #0a0a0a;
  overflow: hidden;
  position: relative;
}
.spot-case__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s var(--ease);
}
.spotcard:hover .spot-case.is-active .spot-case__media img { transform: scale(1.04); }
.spot-case__media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(10,10,10,0.65));
  pointer-events: none;
}
.spot-case__content {
  padding: 24px 30px 0;
  display: flex; flex-direction: column; gap: 10px;
  flex: 1;
}
.spot-case__sector {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--text-3);
}
.spot-case__title {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(1.8rem, 2.6vw, 2.4rem);
  letter-spacing: -0.02em;
  line-height: 1.08;
  color: var(--text);
}
.spot-case__story {
  color: var(--text-2);
  font-size: 0.98rem;
  line-height: 1.55;
  max-width: 60ch;
}

/* Spotcard — Testimonials */
.spotcard--voices .spot-voice {
  display: none;
  flex-direction: column;
  flex: 1;
  position: relative;
  animation: spotFade .7s var(--ease);
}
.spotcard--voices .spot-voice.is-active { display: flex; }
.spot-voice__quote {
  font-family: var(--body);
  font-style: italic;
  font-size: 1.02rem;
  line-height: 1.6;
  color: var(--text);
  position: relative;
  padding-left: 22px;
  flex: 1;
}
.spotcard--voices .spot-voice::before {
  content: "\201C";
  position: absolute;
  left: -4px; top: -20px;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 800;
  font-size: 3rem;
  color: var(--accent);
  line-height: 1;
}
.spot-voice__who { margin-top: 18px; }
.spot-voice__name {
  display: block;
  font-family: var(--display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--text);
}
.spot-voice__role {
  display: block;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-top: 4px;
}

/* Spotcard — Team */
.spotcard--team .spotcard__body {
  padding-bottom: 8px;
}
.spot-team__title {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(1.5rem, 2.2vw, 2rem);
  letter-spacing: -0.02em;
  line-height: 1.08;
  color: var(--text);
  margin-bottom: 14px;
}
.spot-team__row {
  display: flex;
  gap: -8px;
  margin-bottom: 16px;
}
.spot-team__avatars {
  display: flex;
}
.spot-team__avatar {
  width: 52px; height: 52px;
  border-radius: 50%;
  border: 2px solid var(--surface);
  background: var(--bg-raise);
  overflow: hidden;
  margin-left: -10px;
  box-shadow: 0 2px 8px rgba(0,0,0,.35);
}
.spot-team__avatar:first-child { margin-left: 0; }
.spot-team__avatar img { width: 100%; height: 100%; object-fit: cover; }
.spot-team__note {
  font-size: 0.94rem;
  color: var(--text-2);
  line-height: 1.55;
  max-width: 40ch;
}

@keyframes spotFade {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1024px) {
  .spotlight__grid {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .spotcard--tall { grid-row: auto; }
  .spotlight__right { grid-template-rows: auto auto; }
}

/* ── Round 4 · Free report section ────────────── */
.freereport {
  position: relative;
}
.freereport__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.freereport__copy .h2 { margin-bottom: 20px; }
.freereport__copy p {
  color: var(--text-2);
  max-width: 52ch;
  line-height: 1.65;
  margin-bottom: 14px;
}
.freereport__bullets {
  margin-top: 24px;
  display: flex; flex-direction: column; gap: 10px;
}
.freereport__bullets li {
  padding-left: 22px;
  position: relative;
  font-size: 14.5px;
  color: var(--text);
  line-height: 1.55;
}
.freereport__bullets li::before {
  content: "";
  position: absolute; left: 0; top: 9px;
  width: 10px; height: 1px;
  background: var(--accent);
}
.freereport__form {
  background: var(--surface);
  border: 1px solid var(--line-2);
  border-radius: 2px;
  padding: 36px 32px;
  display: flex; flex-direction: column; gap: 16px;
  position: relative;
  overflow: hidden;
}
.freereport__form::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(140deg, rgba(251,174,23,.08), transparent 55%);
  pointer-events: none;
}
.freereport__form > * { position: relative; z-index: 1; }
.freereport__label {
  display: block;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 6px;
}
.freereport__input,
.freereport__textarea {
  width: 100%;
  background: var(--bg-raise);
  border: 1px solid var(--line);
  border-radius: 2px;
  padding: 13px 14px;
  color: var(--text);
  font-family: var(--body);
  font-size: 14.5px;
  line-height: 1.5;
  margin-bottom: 18px;
  transition: border-color .25s var(--ease), background .25s var(--ease);
}
.freereport__input:focus,
.freereport__textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: #1e1e1e;
}
.freereport__textarea { min-height: 90px; resize: vertical; }
.freereport__note {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .1em;
  color: var(--text-3);
  text-transform: uppercase;
  margin-top: 4px;
}
.freereport__submit {
  margin-top: 8px;
  width: 100%;
}
.freereport__success {
  display: none;
  padding: 14px 16px;
  background: rgba(251,174,23,.08);
  border: 1px solid rgba(251,174,23,.3);
  border-radius: 2px;
  color: var(--text);
  font-size: 14px;
  line-height: 1.55;
}
.freereport__success.is-visible { display: block; }
@media (max-width: 1024px) {
  .freereport__grid { grid-template-columns: 1fr; }
}

/* ── Round 4 · Ethereal flow (section 8 overhaul) ── */
.final--flow { background: #0E0E0E; }
.final--flow::before,
.final--flow::after { display: none; }
.final--flow .final__aura { display: none; }
.ethereal {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  background:
    radial-gradient(ellipse 90% 60% at 50% 112%, rgba(150,215,240,0.55), rgba(150,215,240,0) 55%),
    radial-gradient(ellipse 120% 70% at 50% 118%, rgba(20,110,175,0.32), rgba(20,110,175,0) 60%),
    #061A2A;
}
.ethereal__wisp {
  position: absolute;
  left: 50%;
  bottom: -10%;
  width: 60vw;
  max-width: 900px;
  aspect-ratio: 1.4/1;
  transform: translateX(-50%);
  background:
    radial-gradient(ellipse 40% 70% at 50% 80%, rgba(170,220,240,0.65), rgba(170,220,240,0) 60%),
    radial-gradient(ellipse 22% 55% at 48% 55%, rgba(120,195,230,0.55), rgba(120,195,230,0) 70%),
    radial-gradient(ellipse 18% 45% at 52% 35%, rgba(200,235,250,0.45), rgba(200,235,250,0) 75%);
  filter: blur(26px);
  opacity: .9;
  animation: wispRise 9s ease-in-out infinite;
  mix-blend-mode: screen;
}
.ethereal__wisp--b {
  left: 42%;
  width: 36vw;
  max-width: 560px;
  background:
    radial-gradient(ellipse 34% 60% at 50% 80%, rgba(28,135,195,0.70), rgba(28,135,195,0) 65%),
    radial-gradient(ellipse 18% 45% at 48% 45%, rgba(120,205,240,0.55), rgba(120,205,240,0) 75%);
  filter: blur(38px);
  opacity: .75;
  animation: wispRise 12s ease-in-out infinite;
  animation-delay: -4s;
  mix-blend-mode: screen;
}
.ethereal__wisp--c {
  left: 58%;
  width: 32vw;
  max-width: 480px;
  background:
    radial-gradient(ellipse 32% 60% at 50% 80%, rgba(160,220,240,0.60), rgba(160,220,240,0) 70%);
  filter: blur(32px);
  opacity: .7;
  animation: wispDrift 14s ease-in-out infinite;
  animation-delay: -7s;
  mix-blend-mode: screen;
}
.ethereal__floor {
  position: absolute;
  left: 0; right: 0; bottom: -10%;
  height: 45%;
  background:
    radial-gradient(ellipse 70% 100% at 50% 100%, rgba(180,225,245,0.80), rgba(180,225,245,0) 70%);
  filter: blur(14px);
  pointer-events: none;
}
@keyframes wispRise {
  0%   { transform: translate(-50%, 10%) scale(0.95) skewX(-2deg); opacity: 0; }
  20%  { opacity: .85; }
  55%  { transform: translate(-48%, -22%) scale(1.08) skewX(3deg); opacity: .75; }
  85%  { opacity: .35; }
  100% { transform: translate(-52%, -55%) scale(1.25) skewX(-4deg); opacity: 0; }
}
@keyframes wispDrift {
  0%   { transform: translateX(-50%) translateY(8%) scale(0.9); opacity: 0; }
  30%  { opacity: .7; }
  70%  { transform: translateX(-56%) translateY(-30%) scale(1.15); opacity: .4; }
  100% { transform: translateX(-44%) translateY(-60%) scale(1.3); opacity: 0; }
}
/* Section 8 dark flow — invert text color context */
.final--flow .final__title,
.final--flow .final__sub,
.final--flow .section__num { color: var(--text); }
.final--flow .final__sub { color: var(--text-2); }
.final--flow .section__num::before { background: var(--accent); }
@media (prefers-reduced-motion: reduce) {
  .ethereal__wisp, .ethereal__wisp--b, .ethereal__wisp--c { animation: none; opacity: .5; }
}

/* ── Round 4 · Team page ───────────────────────── */
.teampage__hero { padding-top: clamp(140px, 18vw, 200px); padding-bottom: 48px; }
.teampage__member {
  padding: clamp(80px, 10vw, 140px) 0;
  position: relative;
  overflow: hidden;
}
.teampage__inner {
  display: grid;
  grid-template-columns: 440px 1fr;
  gap: clamp(48px, 8vw, 120px);
  align-items: center;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 var(--gutter);
  position: relative;
  z-index: 1;
}
.teampage__member--reverse .teampage__inner {
  grid-template-columns: 1fr 440px;
}
.teampage__member--reverse .teampage__portrait { order: 2; }
.teampage__portrait {
  position: relative;
  border: 1px solid var(--line-2);
  padding: 12px;
  background: var(--surface);
  border-radius: 2px;
  overflow: hidden;
}
.teampage__portrait::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(251,174,23,.14), transparent 60%);
  pointer-events: none;
  mix-blend-mode: screen;
}
.teampage__portrait img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  filter: grayscale(.2) contrast(1.05);
  transition: filter .5s var(--ease);
  display: block;
}
.teampage__portrait:hover img { filter: grayscale(0) contrast(1); }
.teampage__body .section__num { margin-bottom: 20px; }
.teampage__name {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3.2rem);
  letter-spacing: -0.035em;
  line-height: 1.02;
  margin-bottom: 6px;
}
.teampage__role {
  display: block;
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 28px;
}
.teampage__bio {
  color: var(--text-2);
  line-height: 1.7;
  max-width: 62ch;
  margin-bottom: 16px;
}
@media (max-width: 1024px) {
  .teampage__inner,
  .teampage__member--reverse .teampage__inner {
    grid-template-columns: 1fr;
  }
  .teampage__member--reverse .teampage__portrait { order: 0; }
  .teampage__portrait { max-width: 420px; }
}

/* ── Round 4 · Logo harmonization ─────────────── */
.nav__logo img { height: 56px; }
.footer__logo { height: 72px; }

/* ── Round 4 · Identity section body polish ───── */
.identity .section__lede { max-width: 66ch; }

/* ── Round 4 · Tier head subtitle ("Powered by IME") ── */
.tier__powered {
  display: block;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: 4px;
}

/* ── Round 5 · Graph-wires pop (tasks 4) ─────── */
.section__asset--tl[src*="graph-wires"],
.section__asset--r[src*="graph-wires"] {
  opacity: 0.32 !important;
  filter: brightness(1.35) contrast(1.15);
}
.section__asset[src*="graph-wires"] {
  opacity: 0.32 !important;
  filter: brightness(1.35) contrast(1.15);
  width: 520px !important;
}

/* ── Round 5 · Spotlight grid static sizing (task 3) ─── */
.spotlight__grid {
  min-height: 720px;
  grid-auto-rows: minmax(0, 1fr);
}
.spotcard { height: 100%; min-height: 0; }
.spotcard--tall { min-height: 720px; }
.spotlight__right { grid-template-rows: 1fr 1fr; min-height: 720px; }
.spotcard--voices { min-height: 350px; max-height: 350px; }
.spotcard--team { min-height: 350px; max-height: 350px; }

.spotcard--cases .spot-case { overflow: hidden; }
.spot-case__media {
  aspect-ratio: auto !important;
  height: 360px;
  flex: 0 0 360px;
}
.spot-case__content {
  overflow: hidden;
  padding: 22px 30px 0;
}
.spot-case__story {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  max-width: 60ch;
}
.spotcard--voices .spotcard__body { overflow: hidden; }
.spot-voice__quote {
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 0 1 auto;
}

/* ── Round 5 · Case Studies eyebrow → image gap (task 5) ─── */
.spotcard--cases .spotcard__eyebrow {
  padding: 26px 30px 22px;
}
.spotcard--cases .spot-case__media {
  margin-top: 6px;
}

/* ── Round 5 · Testimonial avatar (task 9) ─────── */
.spot-voice__who {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 20px;
}
.spot-voice__avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--bg-raise);
  border: 1px solid var(--line-2);
  flex: 0 0 46px;
}
.spot-voice__avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }
.spot-voice__meta { display: flex; flex-direction: column; }

@media (max-width: 1024px) {
  .spotlight__grid,
  .spotcard--tall,
  .spotlight__right { min-height: 0 !important; }
  .spotcard--voices,
  .spotcard--team { max-height: none !important; min-height: 0 !important; }
  .spot-case__media { height: 260px; flex-basis: 260px; }
}

/* ──────────────────────────────────────────────────
   ROUND 6 · Section 4 grid redesign, about redesign
   ────────────────────────────────────────────────── */

/* Round 6 · No footers, no sub-divisions inside bento boxes */
.spotlight .spotcard__footer { display: none !important; }

/* Round 6.1 · Kill dead space at the bottom of the spotlight section.
   Outer grid is a single row (right column is a nested grid) — span 2 caused
   the grid to render 2× taller than content at wider viewports. */
.section.spotlight { padding-bottom: clamp(40px, 5vw, 64px) !important; }
.spotlight__grid { grid-template-rows: 660px !important; }
.spotlight__grid > .spotcard--tall { grid-row: auto !important; }

/* Bento heights — tall case card matches right column exactly.
   Right column: 2 × 320 + 20 gap = 660. Tall = 660. */
.spotlight__grid { min-height: 660px !important; align-items: stretch; }
.spotlight__right { min-height: 660px !important; grid-template-rows: 320px 320px !important; }
.spotcard--tall { min-height: 660px !important; max-height: 660px !important; }
.spotcard--voices,
.spotcard--team { min-height: 320px !important; max-height: 320px !important; height: 320px !important; }

/* Case card: image fills remaining height (below eyebrow, above text block).
   Image is inset with horizontal margin — framed look per sketch. */
.spotcard--cases .spot-case { justify-content: flex-start; }
.spotcard--cases .spot-case__media {
  margin: 10px 30px 0;
  width: calc(100% - 60px);
  border-radius: 2px;
  border: 1px solid var(--line);
  aspect-ratio: auto !important;
  flex: 1 1 auto !important;
  height: auto !important;
  min-height: 380px;
}
.spotcard--cases .spot-case__content {
  padding: 20px 30px 28px;
  gap: 6px;
  flex: 0 0 auto;
}
.spotcard--cases .spot-case__title {
  font-size: clamp(1.5rem, 2.1vw, 1.9rem);
  line-height: 1.1;
}
.spotcard--cases .spot-case__story {
  -webkit-line-clamp: 4;
  font-size: 0.95rem;
  line-height: 1.55;
}

/* Team card header under eyebrow */
.spot-team__heading {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.15rem;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--text);
  padding: 10px 30px 0;
  margin: 0;
}
.spotcard--team .spotcard__body {
  padding: 18px 30px 22px;
  justify-content: center;
}

/* Team card — rotating single-member layout */
.spotcard--team .spotcard__body {
  padding: 22px 30px 18px;
  overflow: hidden;
  justify-content: center;
}
.spot-member {
  display: none;
  align-items: center;
  gap: 18px;
  flex: 1;
  margin: 0;
  animation: spotFade .7s var(--ease);
}
.spot-member.is-active { display: flex; }
.spot-member__avatar {
  width: 96px; height: 96px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--line-2);
  background: var(--bg-raise);
  flex: 0 0 96px;
  box-shadow: 0 4px 14px rgba(0,0,0,.35);
}
.spot-member__avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }
.spot-member__meta { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.spot-member__name {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text);
  line-height: 1.2;
}
.spot-member__role {
  font-family: var(--body);
  font-size: 0.88rem;
  color: var(--text-2);
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (max-width: 1024px) {
  .spotcard--cases .spot-case__media {
    height: 240px;
    flex-basis: 240px;
  }
  .spotcard--cases .spot-case__media img[src*="neatlife"] {
    object-position: left center;
  }
}

/* ── Round 6 · About section — stacked mission/vision, balloon accent ── */
.about--dubai-bg { position: relative; overflow: hidden; }
.about--dubai-bg > .container { position: relative; z-index: 2; }

/* Balloon accent on the right — pops a bit with soft glow + slow float */
.about__balloon {
  position: absolute;
  top: 50%;
  right: clamp(40px, 6vw, 120px);
  transform: translateY(-50%);
  width: clamp(240px, 28vw, 420px);
  z-index: 1;
  pointer-events: none;
  filter: drop-shadow(0 22px 50px rgba(0,0,0,0.55)) drop-shadow(0 0 28px rgba(251,174,23,0.18));
  animation: balloonFloat 7s ease-in-out infinite;
}
.about__balloon img { width: 100%; height: auto; display: block; }
@keyframes balloonFloat {
  0%, 100% { transform: translateY(-50%) rotate(-1.2deg); }
  50%      { transform: translateY(calc(-50% - 14px)) rotate(1.2deg); }
}
@media (max-width: 900px) {
  .about__balloon { position: relative; top: auto; right: auto; transform: none; margin: 32px auto 0; width: 220px; animation: none; }
}
.about__stack {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 48px;
  max-width: 980px;
}
.about__block { display: flex; flex-direction: column; gap: 14px; }
.about__block-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.about__block-label::before {
  content: "";
  width: 22px; height: 1px;
  background: var(--accent);
  display: inline-block;
}
.about__block-heading {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(1.4rem, 2vw, 1.75rem);
  letter-spacing: -0.01em;
  line-height: 1.2;
  color: var(--text);
}
.about__block p {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text-2);
  max-width: 58ch;
  margin: 0;
}
.about__block p strong,
.about__block p .lead {
  color: var(--text-2);
  font-weight: 400;
}
.about__image {
  position: sticky;
  top: 120px;
  border-radius: 2px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface);
  aspect-ratio: 4/5;
  max-height: 620px;
}
.about__image img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(1.02) contrast(1.02);
}

@media (max-width: 1024px) {
  .about__flex { grid-template-columns: 1fr; }
  .about__image { position: static; max-height: 420px; aspect-ratio: 16/10; }
}

/* ─── v2: multi-step free form, paid modal, state screens ──────────── */

.freereport__step {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent, #FBAE17);
  margin: 0 0 14px;
}
.freereport__form [data-step] {
  display: none;
}
.freereport__form [data-step][data-step-active] {
  display: block;
}
.freereport__nav {
  display: flex;
  gap: 12px;
  margin-top: 14px;
  align-items: center;
  justify-content: space-between;
}
.freereport__consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-muted, #8A97A8);
  margin: 16px 0 12px;
  cursor: pointer;
}
.freereport__consent input {
  margin-top: 3px;
  flex-shrink: 0;
}
.freereport__consent a {
  color: inherit;
  text-decoration: underline;
}
.freereport__error {
  margin-top: 14px;
  padding: 12px 16px;
  background: rgba(212, 100, 74, 0.08);
  border: 1px solid rgba(212, 100, 74, 0.3);
  border-radius: 8px;
  color: #D4644A;
  font-size: 14px;
}
.freereport__success {
  margin-top: 18px;
  padding: 18px 22px;
  background: rgba(92, 181, 122, 0.08);
  border: 1px solid rgba(92, 181, 122, 0.3);
  border-radius: 10px;
  color: var(--text);
  font-size: 14px;
  line-height: 1.6;
}

/* Modal */
.modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
}
.modal[aria-hidden="false"] {
  display: block;
}
.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 12, 16, 0.78);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.modal__panel {
  position: relative;
  max-width: 720px;
  margin: 4vh auto;
  background: #131820;
  border: 1px solid #2A3A52;
  border-radius: 16px;
  padding: 36px 40px 40px;
  max-height: 92vh;
  overflow-y: auto;
  z-index: 2;
}
.modal__close {
  position: absolute;
  top: 14px;
  right: 18px;
  background: transparent;
  border: none;
  color: var(--text-muted, #8A97A8);
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
  padding: 4px 10px;
}
.modal__close:hover {
  color: var(--accent, #FBAE17);
}
.modal__head {
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid #2A3A52;
}
.modal__title {
  margin: 8px 0 14px;
  font-size: clamp(24px, 3vw, 32px);
}

.paidform fieldset {
  border: none;
  padding: 0;
  margin: 0;
  display: none;
}
.paidform fieldset[data-step-active] {
  display: block;
}
.paidform__step {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent, #FBAE17);
  margin: 0 0 18px;
  padding: 0;
}
.paidform label {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted, #8A97A8);
  margin: 0 0 18px;
  letter-spacing: 0.02em;
}
.paidform label input,
.paidform label textarea {
  display: block;
  width: 100%;
  margin-top: 6px;
  background: #0E1724;
  border: 1px solid #2A3A52;
  border-radius: 6px;
  padding: 10px 14px;
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  outline: none;
  transition: border-color 0.15s;
  resize: vertical;
}
.paidform label input:focus,
.paidform label textarea:focus {
  border-color: var(--accent, #FBAE17);
}
.paidform__nav {
  display: flex;
  gap: 12px;
  margin-top: 20px;
  justify-content: space-between;
}
.paidform__supnote {
  font-size: 13px;
  color: var(--text-muted, #8A97A8);
  margin: 12px 0 18px;
  font-style: italic;
}
.paidform__cta-line {
  margin-top: 20px;
  font-size: 13px;
  color: var(--text-muted, #8A97A8);
  line-height: 1.5;
}
.paidform__error {
  margin-top: 14px;
  padding: 12px 16px;
  background: rgba(212, 100, 74, 0.08);
  border: 1px solid rgba(212, 100, 74, 0.3);
  border-radius: 8px;
  color: #D4644A;
  font-size: 14px;
}
.paidform__loading {
  margin-top: 16px;
  padding: 16px;
  text-align: center;
  color: var(--accent, #FBAE17);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
}

@media (max-width: 720px) {
  .modal__panel {
    margin: 0;
    border-radius: 0;
    max-height: 100vh;
    padding: 32px 22px;
  }
}

/* prevent body scroll while modal open */
body.modal-open {
  overflow: hidden;
}

/* ───────────────────────────────────────────────
   Mobile polish — header, spacing, balloon, logos
   Mobile-only (<=768px). Desktop untouched.
─────────────────────────────────────────────── */
@media (max-width: 768px) {
  /* Shorter, tighter top nav */
  .nav__inner {
    margin: 0 auto;
    padding: 10px var(--gutter);
  }
  .nav__logo { margin-left: -8px; } /* flush logo to left edge */

  /* Consistent breathing room below the fixed nav on every page */
  .hero { padding-top: 110px; }
  main > .section:first-of-type { padding-top: 110px; }

  /* Footer brand: smaller logo, left-aligned, tighter spacing */
  .footer__logo { margin-left: -8px; margin-bottom: 14px; }
  .footer__brand { text-align: left; }
  .footer { padding-top: 56px; }

  /* About balloon: absolute, lower-right, behind text.
     Removes the empty stacked space it created in flow. */
  .about__balloon {
    position: absolute;
    top: auto;
    bottom: 8%;
    right: -60px;
    left: auto;
    transform: none;
    width: 220px;
    margin: 0;
    opacity: 0.35;
    z-index: 0;
    pointer-events: none;
    animation: none;
  }
  .about--dubai-bg > .container { position: relative; z-index: 2; }
}
