/* ========================================================================
   OVM PROTOTYPE — Layout & section styles (mobile-first, fluid)
   ======================================================================== */

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }
html, body {
  margin: 0; padding: 0;
  background: var(--bg-base);
  color: var(--text);
  font-family: var(--ff-body);
  font-size: 16px; line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.no-scroll { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

/* ——— Brand wordmark uses Outfit (Gotham-adjacent geometric) */
.brand-word {
  font-family: 'Outfit', system-ui, sans-serif;
  font-weight: 700;
  letter-spacing: 0.02em;
}

/* ——— Reusable utilities */
.eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--ff-industrial); font-weight: 700;
  font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--cyan-glow);
}
.eyebrow::before, .eyebrow::after {
  content: ""; width: 22px; height: 1px; background: var(--cyan-glow);
  opacity: .55;
}
.eyebrow--solo::after, .eyebrow--solo::before { display: none; }

.display {
  font-family: var(--ff-display); font-weight: 700;
  font-size: clamp(40px, 8vw, 132px);
  line-height: 0.92; letter-spacing: -0.045em;
  text-wrap: balance; margin: 0;
}
.display--md {
  font-family: var(--ff-display); font-weight: 700;
  font-size: clamp(36px, 5.5vw, 84px);
  line-height: 0.95; letter-spacing: -0.04em;
  margin: 0; text-wrap: balance;
}
.label-mono {
  font-family: var(--ff-mono); font-size: 11px;
  letter-spacing: 0.06em; color: var(--text-muted);
}
.gradient-text {
  background: linear-gradient(135deg, #2DDDF1 0%, #1788C8 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 28px rgba(15,230,255,.35));
}

/* ——— Glass surfaces */
.glass {
  background: linear-gradient(180deg, rgba(255,255,255,.10) 0%, rgba(255,255,255,.02) 40%, rgba(0,0,0,.06) 100%), rgba(20,27,35,.5);
  backdrop-filter: blur(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  box-shadow:
    inset 0 1.5px 0 0 rgba(255,255,255,.24),
    inset 0 -1px 0 0 rgba(0,0,0,.25),
    0 24px 60px rgba(0,0,0,.5);
  border-radius: 22px;
}
.glass--pill {
  border-radius: 999px;
  box-shadow:
    inset 0 1.5px 0 0 rgba(255,255,255,.28),
    inset 0 -1px 0 0 rgba(0,0,0,.25),
    0 12px 32px rgba(0,0,0,.4);
}

/* ——— Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 26px;
  font-family: var(--ff-industrial); font-weight: 700;
  font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase;
  border-radius: var(--r-btn); cursor: pointer;
  transition: transform .25s var(--ease-quick), box-shadow .25s var(--ease-quick), background .2s var(--ease-quick);
  white-space: nowrap;
}
.btn--primary {
  background: var(--brand-blue);
  color: #fff;
  box-shadow: 0 2px 8px rgba(26,130,230,.28);
}
.btn--primary:hover {
  transform: translateY(-2px);
  background: var(--brand-blue-700);
  box-shadow: 0 8px 20px rgba(26,130,230,.4);
}
.btn--glass {
  background: linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.02) 40%, rgba(0,0,0,.06));
  backdrop-filter: blur(20px);
  color: #fff;
  box-shadow: inset 0 1.5px 0 rgba(255,255,255,.22), inset 0 -1px 0 rgba(0,0,0,.2);
}
.btn--glass:hover { transform: translateY(-2px); }
.btn--sm { padding: 11px 18px; font-size: 11px; }

/* ========================================================================
   AMBIENT BG (sticky, behind everything) — theme-aware
   ======================================================================== */
.ambient {
  position: fixed; inset: 0; z-index: 0; pointer-events: none; overflow: hidden;
}
.ambient__grid {
  display: none; /* lines removed per brand preference; glows retained */
  position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--grid-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-line) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at 50% 30%, black 30%, transparent 75%);
}
.ambient__glow {
  position: absolute; border-radius: 50%; filter: blur(120px);
  opacity: .5; mix-blend-mode: screen;
}
[data-theme="light"] .ambient__glow { opacity: .25; mix-blend-mode: multiply; }
.ambient__glow--a {
  width: 700px; height: 700px;
  top: 10%; left: -250px;
  background: radial-gradient(circle, rgba(15,230,255,.5), transparent 70%);
}
.ambient__glow--b {
  width: 900px; height: 900px;
  top: 60%; right: -350px;
  background: radial-gradient(circle, rgba(23,136,200,.4), transparent 70%);
}

/* ========================================================================
   NAV (mobile-first → desktop pill)
   ======================================================================== */
.nav {
  position: fixed; top: 16px; left: 16px; right: 16px;
  z-index: 100;
  display: flex; align-items: center; gap: 14px;
  padding: 10px 14px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255,255,255,.12), rgba(255,255,255,.02) 40%, rgba(0,0,0,.06)), rgba(20,27,35,.66);
  backdrop-filter: blur(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  box-shadow:
    inset 0 1.5px 0 rgba(255,255,255,.28),
    inset 0 -1px 0 rgba(0,0,0,.25),
    0 12px 32px rgba(0,0,0,.4);
}
.nav__brand {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; color: inherit;
}
.nav__mark { width: 26px; height: auto; filter: brightness(1.2); }
.nav__brand-text { display: none; align-items: baseline; gap: 8px; line-height: 1; }
.nav__brand-name {
  font-family: 'Outfit', sans-serif; font-weight: 700;
  font-size: 17px; letter-spacing: 0.04em;
  color: var(--brand-blue);
}
.nav__brand-word {
  font-family: 'Outfit', sans-serif; font-weight: 500;
  font-size: 17px; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,.74);
}
.nav__links { display: none; }
.nav__cta {
  margin-left: auto;
  padding: 11px 18px;
  background: var(--brand-blue);
  color: #fff;
  font-family: var(--ff-industrial); font-weight: 700; font-size: 11px;
  letter-spacing: 0.14em; text-transform: uppercase;
  border-radius: var(--r-btn);
  box-shadow: 0 2px 8px rgba(26,130,230,.3);
  transition: background .2s, transform .2s;
}
.nav__cta:hover { background: var(--brand-blue-700); transform: translateY(-1px); }
.nav__burger {
  display: flex; flex-direction: column; gap: 4px;
  padding: 10px;
  background: rgba(255,255,255,.06);
  border-radius: 999px;
}
.nav__burger span { width: 18px; height: 1.5px; background: var(--text); border-radius: 2px; transition: transform .25s, opacity .25s; }

@media (min-width: 980px) {
  .nav { left: 50%; right: auto; transform: translateX(-50%); width: max-content; max-width: 96%; }
  .nav__brand-text { display: flex; }
  .nav__links {
    display: flex; gap: 2px; margin: 0 6px;
  }
  .nav__links a {
    position: relative;
    padding: 10px 16px;
    font-family: var(--ff-industrial); font-weight: 600;
    font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
    color: rgba(255,255,255,.62);
    transition: color .2s var(--ease-quick);
  }
  .nav__links a:hover { color: rgba(255,255,255,.9); }
  .nav__links a.is-active { color: #fff; }
  .nav__links a.is-active::after {
    content: ""; position: absolute; left: 16px; right: 16px; bottom: 1px;
    height: 2px; border-radius: 2px; background: var(--brand-blue);
  }
  .nav__cta { margin-left: 4px; }
  .nav__burger { display: none; }
}

/* Mobile drawer */
.drawer {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(5,8,11,.92);
  backdrop-filter: blur(40px);
  display: flex; flex-direction: column;
  padding: 90px 28px 32px;
  overflow: hidden;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-100%);
  transition: transform .45s var(--ease-smooth), visibility 0s linear .45s;
}
.drawer.is-open {
  transform: translateY(0);
  visibility: visible;
  pointer-events: auto;
  transition: transform .45s var(--ease-smooth), visibility 0s linear 0s;
}
.drawer__close {
  position: absolute; top: 24px; right: 24px;
  width: 44px; height: 44px; border-radius: 999px;
  background: rgba(255,255,255,.06);
  display: grid; place-items: center;
  color: var(--text);
}
.drawer__links {
  display: flex; flex-direction: column; gap: 2px;
}
.drawer__links a {
  padding: 18px 0;
  font-family: var(--ff-display); font-weight: 600;
  font-size: 32px; letter-spacing: -0.02em;
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
}
.drawer__links a span { color: var(--cyan-400); font-family: var(--ff-mono); font-size: 13px; }
.drawer__footer {
  margin-top: auto;
  display: flex; flex-direction: column; gap: 16px;
  padding-top: 24px;
}

/* ========================================================================
   SECTIONS — shared layout
   ======================================================================== */
.page { position: relative; z-index: 1; }
.section {
  position: relative;
  padding: clamp(72px, 12vw, 160px) clamp(20px, 4vw, 80px);
}
.section__inner { max-width: 1400px; margin: 0 auto; }
.section__head {
  display: flex; flex-direction: column; gap: 18px;
  margin: 0 auto clamp(40px, 5vw, 72px);
  max-width: 760px;
  text-align: center;
  align-items: center;
}
.section__head--left {
  margin-left: 0; text-align: left; align-items: flex-start;
}
.section__head .section__lead { margin-left: auto; margin-right: auto; }
.section__title {
  font-family: var(--ff-display); font-weight: 700;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1; letter-spacing: -0.04em;
  margin: 0; text-wrap: balance;
}
.section__lead {
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.55; color: var(--text-muted);
  max-width: 60ch; text-wrap: pretty; margin: 0;
}

/* ========================================================================
   HERO
   ======================================================================== */
.hero {
  position: relative; min-height: 100vh; min-height: 100svh;
  display: grid; place-items: center;
  overflow: hidden;
  padding: clamp(120px, 18vh, 200px) clamp(20px, 4vw, 80px) clamp(80px, 12vh, 140px);
  text-align: center;
}
.hero__bg, .hero__scrim, .hero__grain {
  position: absolute; inset: 0; pointer-events: none;
}
.hero__bg {
  background-size: cover; background-position: center 60%;
  filter: saturate(1.05) contrast(1.05);
  animation: heroZoom 9s ease-out forwards;
}
@keyframes heroZoom { from { transform: scale(1.08); } to { transform: scale(1); } }
.hero__scrim {
  background:
    radial-gradient(ellipse 85% 62% at 50% 44%, rgba(5,8,11,.66) 0%, rgba(5,8,11,.34) 48%, transparent 82%),
    linear-gradient(180deg, rgba(5,8,11,.72) 0%, rgba(5,8,11,.34) 28%, rgba(5,8,11,.34) 52%, rgba(5,8,11,.95) 100%);
}
.hero__grain {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.6'/></svg>");
  opacity: .08; mix-blend-mode: overlay;
}

.hero__meta-l, .hero__meta-r {
  position: absolute; top: clamp(92px, 12vh, 116px);
  font-family: var(--ff-mono); font-size: 10px;
  color: var(--text-muted); letter-spacing: 0.06em; line-height: 1.6;
  z-index: 5;
  display: none;
}
.hero__meta-l { left: clamp(20px, 4vw, 80px); }
.hero__meta-r { right: clamp(20px, 4vw, 80px); text-align: right; }
@media (min-width: 720px) { .hero__meta-l, .hero__meta-r { display: block; } }

.hero__content { position: relative; z-index: 4; max-width: 920px; }
.hero__lights {
  font-family: var(--ff-display); font-weight: 700;
  font-size: clamp(46px, 9vw, 132px);
  line-height: 0.92; letter-spacing: -0.02em; text-transform: uppercase;
  color: #fff; text-shadow: 0 4px 40px rgba(0,0,0,.55);
  margin: 0;
}
.hero__sold {
  font-family: var(--ff-display); font-weight: 700;
  font-size: clamp(46px, 9vw, 132px);
  line-height: 0.92; letter-spacing: -0.02em; text-transform: uppercase;
  color: #fff; text-shadow: 0 4px 40px rgba(0,0,0,.55);
  margin: 4px 0 0;
}
.hero__desc {
  max-width: 540px; margin: clamp(28px, 4vw, 40px) auto 0;
  font-size: clamp(16px, 1.4vw, 18px); line-height: 1.5;
  font-weight: 600; color: rgba(245,248,251,.95);
  text-shadow: 0 2px 16px rgba(0,0,0,.5);
  text-wrap: pretty;
}
.hero__cta {
  margin-top: clamp(24px, 3vw, 30px);
  display: flex; flex-direction: column; align-items: center; gap: 22px;
}
.hero__chevron {
  color: rgba(230,236,242,.7);
  animation: bob 2.4s ease-in-out infinite;
  filter: drop-shadow(0 0 12px rgba(15,230,255,.35));
}
@keyframes bob { 0%,100% { transform: translateY(0); opacity: .55; } 50% { transform: translateY(6px); opacity: 1; } }

/* Hero entry choreography */
.hero .anim-l1, .hero .anim-l2, .hero .anim-l3, .hero .anim-l4, .hero .anim-l5 {
  opacity: 0; animation-fill-mode: both;
}
.hero .anim-l1 { animation: heroFadeUp 1.2s var(--ease-cinema) .25s forwards; }
.hero .anim-l2 { animation: heroFadeUp 1.2s var(--ease-cinema) .50s forwards; }
.hero .anim-l3 { animation: heroFadeUp 1.2s var(--ease-cinema) .85s forwards; }
.hero .anim-l4 { animation: heroFadeUp 1.2s var(--ease-cinema) 1.15s forwards; }
.hero .anim-l5 { animation: heroFadeUp 1.2s var(--ease-cinema) 1.40s forwards; }
@keyframes heroFadeUp { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: translateY(0); } }

/* ========================================================================
   PACKAGES
   ======================================================================== */
.pkg-grid {
  display: grid; gap: 16px;
  grid-template-columns: 1fr;
}
@media (min-width: 760px) { .pkg-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1080px) { .pkg-grid { grid-template-columns: repeat(3, 1fr); } }

.pkg {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 22px;
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .4s var(--ease-smooth), box-shadow .4s var(--ease-smooth), border-color .4s var(--ease-smooth);
}
.pkg:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px rgba(0,0,0,.4);
  border-color: var(--border-strong);
}
.pkg--featured {
  border-color: rgba(15,230,255,.4);
  box-shadow: 0 0 50px rgba(15,230,255,.25);
}
.pkg--featured:hover { box-shadow: 0 0 70px rgba(15,230,255,.4), 0 30px 60px rgba(0,0,0,.4); }
.pkg__badge {
  position: absolute; top: 16px; right: 16px; z-index: 2;
  padding: 6px 12px;
  background: linear-gradient(135deg, #2DDDF1 0%, #1788C8 60%, #0F6BAE 100%);
  color: #fff; text-shadow: 0 1px 1px rgba(0,40,70,.3);
  font-family: var(--ff-industrial); font-weight: 700;
  font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase;
  border-radius: 999px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.35), 0 4px 14px rgba(15,230,255,.4);
}
.pkg__media {
  aspect-ratio: 16/10;
  background-size: cover; background-position: center;
  position: relative;
}
.pkg__media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(5,8,11,.7));
}
.pkg__body {
  padding: 28px; flex: 1;
  display: flex; flex-direction: column; gap: 14px;
}
.pkg__tier {
  font-family: var(--ff-mono); font-size: 11px;
  color: var(--cyan-400); letter-spacing: 0.06em;
}
.pkg__name {
  font-family: var(--ff-display); font-weight: 700;
  font-size: 28px; line-height: 1.1; letter-spacing: -0.02em;
  margin: 0;
}
.pkg__desc {
  font-size: 14px; color: var(--text-muted); line-height: 1.5; margin: 0;
}
.pkg__list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 8px;
  font-size: 14px;
}
.pkg__list li {
  display: flex; align-items: center; gap: 10px;
}
.pkg__list li::before {
  content: ""; width: 14px; height: 14px; flex-shrink: 0;
  background: var(--cyan-grad);
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M20 6L9 17l-5-5' fill='none' stroke='black' stroke-width='3'/></svg>") center/contain no-repeat;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M20 6L9 17l-5-5' fill='none' stroke='black' stroke-width='3'/></svg>") center/contain no-repeat;
}
.pkg__foot {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: auto; padding-top: 16px;
  border-top: 1px solid var(--border);
}
.pkg__price { display: flex; flex-direction: column; }
.pkg__price span {
  font-family: var(--ff-industrial); font-weight: 600;
  font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--text-muted);
}
.pkg__price strong {
  font-family: var(--ff-display); font-weight: 700;
  font-size: 30px; letter-spacing: -0.02em;
}

/* ========================================================================
   À LA CARTE
   ======================================================================== */
.lq-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.lq-card {
  position: relative;
  padding: 22px 24px;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.14) 0%, rgba(255,255,255,.04) 30%, rgba(0,0,0,.05) 100%),
    rgba(255,255,255,.06);
  backdrop-filter: blur(40px) saturate(160%);
  -webkit-backdrop-filter: blur(40px) saturate(160%);
  box-shadow:
    inset 0 1.5px 0 0 rgba(255,255,255,.32),
    inset 0 -1px 0 0 rgba(0,0,0,.18),
    inset 0 0 0 1px rgba(255,255,255,.06),
    0 20px 50px -10px rgba(0,0,0,.5);
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: #fff;
  text-decoration: none;
  transition: all .3s var(--ease-smooth);
}

.lq-card:hover {
  transform: translateY(-4px);
  box-shadow:
    inset 0 1.5px 0 0 rgba(255,255,255,.32),
    inset 0 -1px 0 0 rgba(0,0,0,.18),
    inset 0 0 0 1px rgba(255,255,255,.06),
    0 28px 60px -10px rgba(0,0,0,.6);
}

.lq-card__icon {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: rgba(0,0,0,.2);
  border: 1px solid rgba(255,255,255,.1);
  display: grid;
  place-items: center;
  color: var(--cyan-glow);
  flex-shrink: 0;
  box-shadow: inset 0 1px 2px rgba(0,0,0,.2);
}

.lq-card__name {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: 19px;
  line-height: 1.2;
  letter-spacing: -0.015em;
  margin: 0;
}

.lq-card__arrow {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: rgba(0,0,0,.15);
  border: 1px solid rgba(255,255,255,.08);
  display: grid;
  place-items: center;
  color: rgba(255,255,255,.7);
  transition: all .3s var(--ease-quick);
  opacity: 0;
  transform: scale(0.8);
}

.lq-card:hover .lq-card__arrow {
  opacity: 1;
  transform: scale(1);
  background: rgba(0,0,0,.3);
}

/* ========================================================================
   PORTFOLIO
   ======================================================================== */
.portfolio-grid {
  display: grid; gap: 12px;
  grid-template-columns: 1fr;
}
@media (min-width: 600px) { .portfolio-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) {
  .portfolio-grid {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 220px;
  }
}
.portfolio-tile {
  position: relative; overflow: hidden;
  border-radius: 18px;
  background-size: cover; background-position: center;
  aspect-ratio: 4/3;
  cursor: pointer;
  transition: transform .5s var(--ease-smooth);
}
@media (min-width: 980px) {
  .portfolio-tile { aspect-ratio: auto; }
  .portfolio-tile--lg { grid-column: span 2; grid-row: span 2; }
  .portfolio-tile--tall { grid-row: span 2; }
  .portfolio-tile--wide { grid-column: span 2; }
}
.portfolio-tile::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(5,8,11,.85));
  transition: opacity .4s;
}
.portfolio-tile:hover { transform: scale(1.01); }
.portfolio-tile__meta {
  position: absolute; left: 16px; right: 16px; bottom: 16px;
  z-index: 2; color: #fff;
}
.portfolio-tile__cat {
  font-family: var(--ff-industrial); font-weight: 700;
  font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--cyan-glow);
  margin-bottom: 4px;
}
.portfolio-tile__name {
  font-family: var(--ff-display); font-weight: 600;
  font-size: clamp(16px, 1.6vw, 22px); letter-spacing: -0.01em; line-height: 1.15;
  margin: 0;
}

/* ========================================================================
   BROKER CLUB — ultra-luxe full-bleed preview
   ======================================================================== */
.broker {
  position: relative;
  padding: 0 !important;
  min-height: 100vh; min-height: 100svh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  color: #fff;
  isolation: isolate;
}
.broker__bg {
  position: absolute; inset: 0; z-index: -2;
  background-size: cover; background-position: center;
  filter: saturate(1.05) contrast(1.05);
}
.broker__scrim {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(ellipse at 50% 60%, transparent 0%, rgba(5,8,11,.35) 55%, rgba(5,8,11,.7) 100%),
    linear-gradient(180deg, rgba(5,8,11,.55) 0%, transparent 25%, transparent 55%, rgba(5,8,11,.85) 100%);
}
.broker__inner {
  position: relative;
  width: 100%;
  max-width: 1400px;
  padding: clamp(80px, 14vh, 140px) clamp(20px, 5vw, 80px);
  text-align: center;
}
.broker__eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--ff-industrial); font-weight: 700;
  font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase;
  color: rgba(255,255,255,.85);
  margin-bottom: 22px;
}
.broker__eyebrow::before, .broker__eyebrow::after {
  content: ""; width: 28px; height: 1px; background: rgba(255,255,255,.55);
}
.broker__title {
  font-family: var(--ff-display); font-weight: 700;
  font-size: clamp(40px, 7vw, 96px); line-height: 0.95;
  letter-spacing: -0.045em;
  color: #fff;
  text-shadow: 0 4px 40px rgba(0,0,0,.55);
  margin: 0;
}
.broker__sub {
  max-width: 620px; margin: clamp(20px, 3vw, 32px) auto 0;
  font-size: clamp(15px, 1.3vw, 18px); line-height: 1.55;
  font-weight: 500;
  color: rgba(255,255,255,.85);
  text-shadow: 0 2px 16px rgba(0,0,0,.45);
  text-wrap: pretty;
}

/* Neutral frost glass cards — NO color */
.broker__cards {
  display: grid; gap: 14px;
  grid-template-columns: 1fr;
  margin: clamp(40px, 5vw, 56px) 0 clamp(32px, 4vw, 44px);
  text-align: left;
}
@media (min-width: 640px) { .broker__cards { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .broker__cards { grid-template-columns: repeat(4, 1fr); } }

.lglass {
  position: relative;
  padding: 22px 22px 24px;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.14) 0%, rgba(255,255,255,.04) 30%, rgba(0,0,0,.05) 100%),
    rgba(255,255,255,.06);
  backdrop-filter: blur(40px) saturate(160%);
  -webkit-backdrop-filter: blur(40px) saturate(160%);
  box-shadow:
    inset 0 1.5px 0 0 rgba(255,255,255,.32),
    inset 0 -1px 0 0 rgba(0,0,0,.18),
    inset 0 0 0 1px rgba(255,255,255,.06),
    0 20px 50px -10px rgba(0,0,0,.5);
}
.lglass__num {
  font-family: var(--ff-mono); font-size: 11px;
  color: rgba(255,255,255,.55); letter-spacing: 0.08em;
  margin-bottom: 14px;
}
.lglass__title {
  font-family: var(--ff-display); font-weight: 600;
  font-size: 19px; line-height: 1.2; letter-spacing: -0.015em;
  color: #fff; margin: 0 0 8px;
}
.lglass__body {
  font-size: 13px; line-height: 1.55;
  color: rgba(255,255,255,.75);
  margin: 0;
}

.broker__ctas {
  display: inline-flex; gap: 12px; flex-wrap: wrap;
  justify-content: center;
}
.broker__hint {
  margin-top: 24px;
  font-family: var(--ff-mono); font-size: 11px;
  color: rgba(255,255,255,.55); letter-spacing: 0.08em;
}

/* ========================================================================
   TESTIMONIALS
   ======================================================================== */
.testimonials-rail {
  display: grid; gap: 16px;
  grid-template-columns: 1fr;
}
@media (min-width: 760px) { .testimonials-rail { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1080px) { .testimonials-rail { grid-template-columns: repeat(3, 1fr); } }

.tcard {
  padding: 32px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 22px;
  display: flex; flex-direction: column; gap: 20px;
  transition: all .3s var(--ease-quick);
}
.tcard:hover { border-color: var(--border-strong); transform: translateY(-3px); }
.tcard__stars {
  display: flex; gap: 2px; color: var(--cyan-400);
}
.tcard__body {
  font-family: var(--ff-display); font-weight: 500;
  font-size: 18px; line-height: 1.4; letter-spacing: -0.005em;
  margin: 0; flex: 1; text-wrap: pretty;
}
.tcard__by {
  display: flex; align-items: center; gap: 14px;
  padding-top: 20px; border-top: 1px solid var(--border);
}
.tcard__avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, #2DDDF1 0%, #1788C8 60%, #0F6BAE 100%);
  display: grid; place-items: center;
  font-family: var(--ff-industrial); font-weight: 800;
  font-size: 13px; color: #fff;
  text-shadow: 0 1px 1px rgba(0,40,70,.3);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.3);
  flex-shrink: 0;
}
.tcard__name {
  font-family: var(--ff-display); font-weight: 600; font-size: 14px;
}
.tcard__role { font-size: 12px; color: var(--text-muted); }

/* ========================================================================
   CONTACT / BOOKING
   ======================================================================== */
.contact { position: relative; overflow: hidden; }
.contact__grid {
  display: grid; gap: 32px;
  grid-template-columns: 1fr;
}
@media (min-width: 900px) { .contact__grid { grid-template-columns: 1fr 1fr; align-items: start; } }

.contact__form {
  padding: clamp(28px, 4vw, 48px);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 24px;
  display: grid; gap: 18px;
}
.field { display: flex; flex-direction: column; gap: 6px; }
.field__label {
  font-family: var(--ff-industrial); font-weight: 600;
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--text-muted);
}
.field__input {
  font-family: var(--ff-body); font-size: 15px;
  padding: 14px 16px;
  background: var(--bg-base);
  border: 1px solid var(--border);
  border-radius: 12px;
  color: var(--text); outline: none; width: 100%;
  transition: all .2s var(--ease-quick);
}
.field__input::placeholder { color: var(--text-dim); }
.field__input:focus {
  border-color: var(--cyan-500);
  box-shadow: 0 0 0 4px rgba(15,230,255,.12);
}
.field--row { display: grid; gap: 12px; grid-template-columns: 1fr 1fr; }
@media (max-width: 520px) { .field--row { grid-template-columns: 1fr; } }

.contact__aside {
  display: flex; flex-direction: column; gap: 24px;
}
.contact__line {
  display: flex; align-items: center; gap: 14px;
  padding: 18px 22px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
}
.contact__line-icon {
  width: 36px; height: 36px; border-radius: 10px;
  background: rgba(15,230,255,.1);
  border: 1px solid rgba(15,230,255,.25);
  display: grid; place-items: center; color: var(--cyan-400);
  flex-shrink: 0;
}
.contact__line-meta { display: flex; flex-direction: column; line-height: 1.3; }
.contact__line-label {
  font-family: var(--ff-industrial); font-weight: 600;
  font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--text-muted);
}
.contact__line-val { font-size: 15px; font-weight: 600; }

/* ========================================================================
   FOOTER
   ======================================================================== */
.footer {
  position: relative; z-index: 1;
  background: var(--ink-1000);
  border-top: 1px solid rgba(255,255,255,.06);
  color: #E6ECF2;
  padding: clamp(48px, 6vw, 80px) clamp(20px, 4vw, 80px) 32px;
}
.footer .footer__col h4 { color: rgba(230,236,242,.55); }
.footer .footer__col a { color: #E6ECF2; }
.footer .footer__col a:hover { color: var(--cyan-400); }
.footer .footer__bottom { color: rgba(230,236,242,.55); }
.footer .footer__social a { color: #E6ECF2; background: rgba(255,255,255,.06); }
.footer__inner {
  max-width: 1400px; margin: 0 auto;
}
.footer__top {
  display: grid; gap: 40px;
  grid-template-columns: 1fr;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
}
@media (min-width: 760px) {
  .footer__top {
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
  }
}
.footer__brand {
  display: flex; flex-direction: column; gap: 14px;
  max-width: 320px;
}
.footer__brand-lockup { display: flex; align-items: center; gap: 12px; }
.footer__brand-lockup img { width: 36px; }
.footer__col h4 {
  font-family: var(--ff-industrial); font-weight: 700;
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--text-muted);
  margin: 0 0 14px;
}
.footer__col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer__col a { font-size: 14px; color: var(--text); transition: color .2s; }
.footer__col a:hover { color: var(--cyan-400); }
.footer__bottom {
  padding-top: 28px;
  display: flex; flex-wrap: wrap; gap: 18px;
  align-items: center; justify-content: space-between;
  font-family: var(--ff-mono); font-size: 11px; color: var(--text-muted);
  letter-spacing: 0.04em;
}
.footer__social { display: flex; gap: 8px; }
.footer__social a {
  width: 36px; height: 36px; border-radius: 999px;
  background: rgba(255,255,255,.05);
  display: grid; place-items: center;
  color: var(--text); transition: all .2s;
}
.footer__social a:hover { background: var(--cyan-500); color: #021118; }
