/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  --navy-950: #050E1F;
  --navy-900: #0A1A33;
  --navy-800: #14274D;
  --navy-700: #1E3A6B;
  --navy-600: #2C528F;
  --ink: #0A1A33;
  --ink-dim: #4A5468;
  --ink-soft: #6E7686;
  --cream: #F4EFE6;
  --cream-soft: #FBF7F0;
  --cream-edge: #E5DDCC;
  --ice: #F4EFE6;
  --ice-dim: #B5B9C4;
  --ice-soft: #7B8AA1;
  --amber: #E8A33D;
  --amber-bright: #F2C078;
  --amber-deep: #B97D24;
  --good: #5BD0A0;
  --warn: #E07A6B;
  --carmine: #C5364B;
  --carmine-bright: #E84B65;
  --carmine-deep: #8E2233;
  --carmine-glow: rgba(197,54,75,0.18);
  --rule: rgba(244,239,230,0.10);
  --rule-strong: rgba(244,239,230,0.22);
  --rule-light: rgba(10,26,51,0.08);
  --rule-light-strong: rgba(10,26,51,0.18);

  --font-sans: 'Inter', system-ui, -apple-system, Segoe UI, sans-serif;
  --font-display: 'Fraunces', 'Times New Roman', serif;

  --container: 1200px;
  --radius: 4px;
  --shadow-card: 0 24px 60px -28px rgba(5,14,31,0.45);
}

/* ============================================================
   RESET + BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  color: var(--ice);
  background: var(--navy-950);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.5;
}
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul, ol { list-style: none; padding: 0; margin: 0; }
input, select, textarea { font: inherit; color: inherit; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* Section base */
.section {
  position: relative;
  padding: 120px 0;
}
.section.dark { background: var(--navy-950); color: var(--ice); }
.section.light { background: var(--cream); color: var(--ink); }
.section.darker { background: #03091A; color: var(--ice); }

/* Shared eyebrow + heading */
.eyebrow {
  display: inline-block;
  font-size: 11px;
  letter-spacing: .26em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--amber-bright);
  padding-bottom: 16px;
  border-bottom: 1px solid var(--rule);
  margin-bottom: 24px;
}
.section.light .eyebrow {
  color: var(--amber-deep);
  border-bottom-color: var(--rule-light-strong);
}
.section-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(32px, 4.6vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 20px;
  max-width: 880px;
}
.section-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--amber-bright);
}
.section.light .section-title em { color: var(--amber-deep); }
.section-sub {
  max-width: 680px;
  font-size: 18px;
  color: var(--ice-dim);
  margin: 0 0 64px;
}
.section.light .section-sub { color: var(--ink-dim); }

/* Generic button */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 28px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .02em;
  border-radius: var(--radius);
  transition: transform .15s ease, box-shadow .25s ease, background .2s ease, color .2s ease;
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--amber);
  color: var(--navy-950);
  box-shadow: 0 14px 36px -14px rgba(232,163,61,0.55);
}
.btn-primary:hover {
  background: var(--amber-bright);
  transform: translateY(-1px);
  box-shadow: 0 18px 40px -12px rgba(232,163,61,0.55);
}
.btn-primary svg { width: 16px; height: 16px; }
.btn-outline {
  background: transparent;
  color: var(--ice);
  border: 1px solid var(--rule-strong);
}
.btn-outline:hover { border-color: var(--amber-bright); color: var(--amber-bright); }
.section.light .btn-outline { color: var(--ink); border-color: var(--rule-light-strong); }
.section.light .btn-outline:hover { border-color: var(--amber-deep); color: var(--amber-deep); }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(12px);
  background: rgba(5,14,31,0.78);
  border-bottom: 1px solid var(--rule);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 32px;
  padding: 18px 0;
}
.logo {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-display);
  letter-spacing: .08em;
  font-weight: 600;
  font-size: 15px;
  color: var(--ice);
}
.logo .logo-img {
  display: block;
  height: 56px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  transition: transform .2s ease, filter .2s ease;
}
.logo:hover .logo-img { transform: translateY(-1px); filter: brightness(1.08); }
.logo > span { display: none; }       /* image contains its own wordmark */
.footer .logo .logo-img { height: 48px; max-width: 180px; }
.logo b { color: var(--amber-bright); font-weight: 600; }
.nav-links {
  display: flex; gap: 28px;
  font-size: 14px;
  color: var(--ice-dim);
}
.nav-links a {
  position: relative;
  padding: 4px 0;
  transition: color .2s ease;
}
.nav-links a:hover { color: var(--ice); }
.nav-links a::after {
  content: "";
  position: absolute; left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--amber-bright);
  transition: width .25s ease;
}
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px;
  border: 1px solid var(--amber);
  color: var(--amber-bright);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .02em;
  border-radius: var(--radius);
  transition: background .2s ease, color .2s ease;
}
.nav-cta:hover { background: var(--amber); color: var(--navy-950); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: calc(100vh - 60px);
  background:
    radial-gradient(1200px 600px at 80% -10%, rgba(232,163,61,0.18), transparent 60%),
    radial-gradient(900px 500px at 10% 100%, rgba(30,71,127,0.55), transparent 65%),
    linear-gradient(180deg, var(--navy-900) 0%, var(--navy-950) 100%);
  overflow: hidden;
  isolation: isolate;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    radial-gradient(1px 1px at 12% 22%, rgba(255,255,255,.35) 50%, transparent 51%),
    radial-gradient(1px 1px at 78% 14%, rgba(255,255,255,.25) 50%, transparent 51%),
    radial-gradient(1px 1px at 42% 36%, rgba(255,255,255,.22) 50%, transparent 51%),
    radial-gradient(1px 1px at 88% 48%, rgba(255,255,255,.18) 50%, transparent 51%),
    radial-gradient(1px 1px at 22% 64%, rgba(255,255,255,.16) 50%, transparent 51%),
    radial-gradient(1px 1px at 64% 72%, rgba(255,255,255,.14) 50%, transparent 51%);
  opacity: .9;
  pointer-events: none;
  z-index: 0;
}
.hero::after {
  content: "";
  position: absolute; left: -10%; right: -10%;
  bottom: 22%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(242,192,120,.32), transparent);
  box-shadow: 0 0 60px 6px rgba(242,192,120,.14);
  z-index: 0;
}
.hero-inner {
  position: relative;
  z-index: 2;
  padding: 88px 0 140px;
  max-width: 920px;
}
.hero-inner h1 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(44px, 7vw, 92px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin: 0 0 28px;
  color: var(--ice);
}
.hero-inner h1 em {
  font-style: italic;
  font-weight: 400;
  color: var(--amber-bright);
}
.hero-inner h1 .accent {
  position: relative; display: inline-block;
}
.hero-inner h1 .accent::after {
  content: ""; position: absolute;
  left: 0; right: 0; bottom: 6px; height: 8px;
  background: var(--amber); opacity: .35; z-index: -1;
}
.hero-sub {
  max-width: 640px;
  font-size: 19px;
  color: var(--ice-dim);
  margin: 0 0 44px;
}
.hero-ctas {
  display: flex; align-items: center; gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 72px;
}
.hero-contacts {
  display: flex; gap: 10px; align-items: center;
  padding-left: 20px;
  border-left: 1px solid var(--rule);
}
.icon-btn {
  width: 44px; height: 44px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--rule-strong);
  border-radius: 50%;
  color: var(--ice-dim);
  transition: border-color .2s ease, color .2s ease, transform .15s ease;
}
.icon-btn:hover { border-color: var(--amber-bright); color: var(--amber-bright); transform: translateY(-1px); }
.icon-btn svg { width: 18px; height: 18px; }

.trust {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding-top: 36px;
  border-top: 1px solid var(--rule);
}
.trust .item { display: flex; flex-direction: column; gap: 6px; }
.trust strong {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 32px;
  letter-spacing: -.01em;
  color: var(--ice);
  line-height: 1;
}
.trust span {
  font-size: 13px;
  color: var(--ice-dim);
  letter-spacing: .04em;
}
.trust .item.cert strong {
  font-size: 22px;
  color: var(--amber-bright);
}

/* tanker silhouette — slow drift */
.ship {
  position: absolute;
  right: -60px;
  bottom: 14%;
  width: 620px;
  max-width: 52vw;
  opacity: .14;
  z-index: 1;
  pointer-events: none;
  animation: shipDrift 18s ease-in-out infinite;
}
@keyframes shipDrift {
  0%, 100% { transform: translateX(0) translateY(0); }
  50%      { transform: translateX(-24px) translateY(-6px); }
}

/* hero mouse-follow light */
.hero .hero-light {
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,163,61,0.12), transparent 60%);
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 0;
  transition: opacity .6s ease;
  opacity: 0;
  mix-blend-mode: screen;
}
.hero:hover .hero-light { opacity: 1; }

/* magnetic CTA + button reveal */
.btn-primary, .btn-outline {
  will-change: transform;
}

/* scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s cubic-bezier(.2,.7,.2,1), transform .8s cubic-bezier(.2,.7,.2,1);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* Hormuz map pulse trail */
.hormuz-trail {
  stroke: var(--carmine-bright);
  stroke-width: 1.2;
  stroke-linecap: round;
  fill: none;
  stroke-dasharray: 6 10;
  stroke-dashoffset: 0;
  animation: trailFlow 6s linear infinite;
  opacity: 0.55;
}
@keyframes trailFlow {
  to { stroke-dashoffset: -160; }
}
.hormuz-ship-dot {
  fill: var(--amber-bright);
  filter: drop-shadow(0 0 6px rgba(242,192,120,0.8));
  animation: shipPath 12s linear infinite;
}
@keyframes shipPath {
  0%   { transform: translate(0,0);     opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { transform: translate(820px, 80px); opacity: 0; }
}

.wave-divider {
  position: absolute; left: 0; right: 0; bottom: -1px;
  width: 100%; height: 80px;
  z-index: 2;
}

/* ============================================================
   BLOCK 2 — PAIN
   ============================================================ */
.pain-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--rule-strong);
  border: 1px solid var(--rule-strong);
}
.pain-cell {
  background: var(--navy-950);
  padding: 36px 28px;
  display: flex; flex-direction: column; gap: 10px;
  min-height: 220px;
}
.pain-cell .num {
  font-family: var(--font-display);
  font-size: 48px;
  line-height: 1;
  letter-spacing: -.02em;
  color: var(--amber-bright);
  font-weight: 500;
}
.pain-cell .label {
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--warn);
  margin-bottom: 8px;
}
.pain-cell .text {
  font-size: 14px;
  color: var(--ice-dim);
  line-height: 1.5;
}

/* ============================================================
   LATEST INTELLIGENCE — on homepage, mini news cards
   ============================================================ */
.intel-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.intel-card {
  background: linear-gradient(180deg, var(--navy-900), var(--navy-950));
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: 28px 26px;
  display: flex; flex-direction: column; gap: 12px;
  position: relative;
  transition: border-color .25s ease, transform .2s ease;
  text-decoration: none; color: inherit;
}
.intel-card:hover { border-color: var(--amber-bright); transform: translateY(-2px); }
.intel-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--cat-color, var(--amber));
}
.intel-card .ic-cat {
  font-family: var(--font-display);
  font-size: 11px; letter-spacing: .22em; text-transform: uppercase;
  color: var(--cat-color, var(--amber-bright));
}
.intel-card h3 {
  font-family: var(--font-display); font-weight: 500;
  font-size: 19px; line-height: 1.25; letter-spacing: -.01em;
  margin: 0; color: var(--ice);
}
.intel-card p {
  font-size: 14px; color: var(--ice-dim); line-height: 1.55; margin: 0;
}
.intel-card .ic-meta {
  margin-top: auto; padding-top: 12px;
  border-top: 1px solid var(--rule);
  display: flex; justify-content: space-between;
  font-size: 12px; color: var(--ice-soft); letter-spacing: .04em;
}
.intel-foot {
  margin-top: 40px;
  text-align: center;
}
@media (max-width: 880px) {
  .intel-grid { grid-template-columns: 1fr; gap: 16px; }
}

/* ============================================================
   SEGMENT CARDS — LPG / LNG / Tanker
   ============================================================ */
.segment-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.segment-card {
  background: linear-gradient(180deg, var(--navy-900), var(--navy-950));
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: 36px 32px 28px;
  display: flex; flex-direction: column; gap: 14px;
  position: relative;
  overflow: hidden;
  transition: border-color .25s ease, transform .2s ease;
  color: var(--ice);
}
.segment-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--amber), var(--amber-bright), transparent);
  opacity: .7;
  transition: opacity .25s ease;
}
.segment-card:hover {
  border-color: var(--amber-bright);
  transform: translateY(-2px);
}
.segment-card:hover::before { opacity: 1; }
.segment-card .seg-kicker {
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--amber-bright);
  font-weight: 500;
}
.segment-card h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 24px;
  line-height: 1.2;
  margin: 0;
  color: var(--ice);
  letter-spacing: -.01em;
}
.segment-card h3 em {
  font-style: italic;
  color: var(--amber-bright);
  font-weight: 400;
}
.segment-card p {
  font-size: 14.5px;
  color: var(--ice-dim);
  line-height: 1.6;
  margin: 0;
}
.segment-card .seg-cta {
  margin-top: auto;
  padding-top: 14px;
  font-size: 13px;
  letter-spacing: .04em;
  color: var(--ice);
  display: inline-flex; align-items: center; gap: 8px;
  border-top: 1px solid var(--rule);
  transition: color .2s ease, gap .2s ease;
}
.segment-card:hover .seg-cta { color: var(--amber-bright); gap: 12px; }
.segment-card .seg-cta svg { width: 14px; height: 14px; }

@media (max-width: 880px) {
  .segment-cards { grid-template-columns: 1fr; gap: 16px; }
}

/* ============================================================
   HORMUZ READINESS BLOCK
   ============================================================ */
.hormuz {
  background: #02060F;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.hormuz::before {
  content: "";
  position: absolute;
  top: 0; left: 50%;
  width: 1px; height: 80px;
  background: linear-gradient(to bottom, var(--carmine-bright), transparent);
}
.hormuz::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 35% at 10% 90%, rgba(197,54,75,0.10), transparent 60%);
  pointer-events: none;
  z-index: 1;
}
.hormuz-map {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100%; height: 100%;
  z-index: 0;
  opacity: 0.55;
  pointer-events: none;
}
.hormuz .container { position: relative; z-index: 2; }
.hormuz .eyebrow {
  color: var(--carmine-bright);
  border-bottom-color: rgba(197,54,75,0.22);
}
.hormuz .section-title em { color: var(--carmine-bright); }
.hormuz-meta {
  display: flex; gap: 18px; align-items: center;
  margin: 0 0 56px;
  font-size: 13px;
  color: var(--ice-soft);
  letter-spacing: .02em;
}
.hormuz-meta .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--carmine-bright);
  box-shadow: 0 0 0 0 rgba(232,75,101,0.5);
  animation: hormuzpulse 2.4s infinite;
}
@keyframes hormuzpulse {
  0%   { box-shadow: 0 0 0 0 rgba(232,75,101,0.6); }
  70%  { box-shadow: 0 0 0 12px rgba(232,75,101,0); }
  100% { box-shadow: 0 0 0 0 rgba(232,75,101,0); }
}
.hormuz-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.hormuz-tile {
  background: linear-gradient(180deg, rgba(197,54,75,0.06), rgba(2,6,15,0.0));
  border: 1px solid rgba(197,54,75,0.22);
  border-radius: var(--radius);
  padding: 36px 30px 28px;
  display: flex; flex-direction: column; gap: 16px;
  position: relative;
  transition: border-color .25s ease, transform .2s ease, background .3s ease;
}
.hormuz-tile::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--carmine), var(--carmine-bright), transparent);
}
.hormuz-tile:hover {
  border-color: var(--carmine-bright);
  transform: translateY(-2px);
  background: linear-gradient(180deg, rgba(197,54,75,0.10), rgba(2,6,15,0.0));
}
.hormuz-tile .kicker {
  font-size: 11px;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--carmine-bright);
  font-weight: 600;
}
.hormuz-tile h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 24px;
  line-height: 1.2;
  margin: 0;
  color: var(--ice);
  letter-spacing: -.01em;
}
.hormuz-tile h3 em {
  font-style: italic;
  color: var(--carmine-bright);
  font-weight: 400;
}
.hormuz-tile p {
  font-size: 14.5px;
  color: var(--ice-dim);
  line-height: 1.6;
  margin: 0;
}
.hormuz-tile .micro-cta {
  margin-top: auto;
  padding-top: 14px;
  font-size: 13px;
  letter-spacing: .04em;
  color: var(--ice);
  display: inline-flex; align-items: center; gap: 8px;
  border-top: 1px solid rgba(197,54,75,0.18);
  transition: color .2s ease, gap .2s ease;
}
.hormuz-tile .micro-cta:hover {
  color: var(--carmine-bright);
  gap: 12px;
}
.hormuz-tile .micro-cta svg { width: 14px; height: 14px; }

/* ============================================================
   LEAD MAGNET — Q2 2026 BENCHMARK PDF
   ============================================================ */
.lead-magnet {
  background: linear-gradient(180deg, var(--navy-900) 0%, var(--navy-950) 100%);
  color: var(--ice);
  position: relative;
  overflow: hidden;
}
.lead-magnet::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 40% at 80% 20%, rgba(232,163,61,0.10), transparent 60%);
  pointer-events: none;
}
.lead-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.lead-bullets {
  display: flex; flex-direction: column; gap: 12px;
  margin: 0 0 36px;
  padding-top: 8px;
}
.lead-bullets li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 15px;
  color: var(--ice-dim);
  line-height: 1.55;
}
.lead-bullets li svg {
  flex: 0 0 18px;
  width: 18px; height: 18px;
  color: var(--amber-bright);
  margin-top: 3px;
}
.lead-ctas {
  display: flex; gap: 14px; flex-wrap: wrap;
  margin-bottom: 20px;
}
.lead-ctas .btn-primary svg { width: 18px; height: 18px; }
.lead-trust {
  font-size: 12px;
  color: var(--ice-soft);
  letter-spacing: .03em;
  margin: 0;
  max-width: 460px;
}
.lead-cover {
  perspective: 1000px;
}
.lead-cover-inner {
  background: linear-gradient(155deg, #1a2d4f 0%, #0a1a33 100%);
  border: 1px solid var(--rule-strong);
  border-radius: 6px;
  padding: 40px 32px 36px;
  position: relative;
  aspect-ratio: 3/4;
  display: flex; flex-direction: column;
  box-shadow: 0 30px 70px -30px rgba(0,0,0,0.7), 0 0 0 1px rgba(232,163,61,0.08);
  transform: rotate(-2deg);
  transition: transform .35s ease;
}
.lead-cover-inner:hover { transform: rotate(0deg) scale(1.02); }
.lead-cover-inner::before {
  content: "";
  position: absolute;
  top: 0; left: 32px; right: 32px;
  height: 2px;
  background: linear-gradient(90deg, var(--amber), var(--amber-bright));
}
.lead-cover-inner .lc-tag {
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--amber-bright);
  margin-bottom: 24px;
}
.lead-cover-inner h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(24px, 2.4vw, 32px);
  line-height: 1.1;
  letter-spacing: -.01em;
  color: var(--ice);
  margin: 0 0 auto;
}
.lead-cover-inner .lc-meta {
  display: flex; flex-direction: column; gap: 6px;
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid var(--rule);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ice-soft);
}

@media (max-width: 880px) {
  .lead-grid { grid-template-columns: 1fr; gap: 40px; }
  .lead-cover { max-width: 280px; margin: 0 auto; }
}

/* ============================================================
   FOUNDER SECTION
   ============================================================ */
.founder {
  background: var(--cream);
  color: var(--ink);
}
.founder .container {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 80px;
  align-items: center;
}
.founder .eyebrow { color: var(--amber-deep); border-bottom-color: var(--rule-light-strong); }
.founder-photo {
  position: relative;
  aspect-ratio: 3/4;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--cream-edge);
  box-shadow: var(--shadow-card);
}
.founder-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
}
.founder-photo .photo-placeholder {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 12px;
  color: var(--ink-soft);
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--cream-edge), var(--cream-soft));
}
.founder-photo .photo-placeholder svg { width: 48px; height: 48px; opacity: .35; }
.founder-body h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(28px, 3.8vw, 44px);
  line-height: 1.1;
  letter-spacing: -.02em;
  margin: 0 0 28px;
  color: var(--ink);
}
.founder-body h2 em { font-style: italic; font-weight: 400; color: var(--amber-deep); }
.founder-body p.lede {
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--ink-dim);
  margin: 0 0 32px;
}
.founder-quote {
  border-left: 2px solid var(--amber);
  padding: 6px 0 6px 22px;
  margin: 0 0 28px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 19px;
  line-height: 1.4;
  color: var(--ink);
}
.founder-quote .attr {
  display: block;
  margin-top: 12px;
  font-family: var(--font-sans);
  font-style: normal;
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.founder-meta {
  display: flex; gap: 28px;
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  padding-top: 24px;
  border-top: 1px solid var(--rule-light-strong);
}
.founder-meta b { color: var(--ink); font-weight: 600; }

@media (max-width: 860px) {
  .hormuz-grid { grid-template-columns: 1fr; gap: 16px; }
  .founder .container { grid-template-columns: 1fr; gap: 40px; }
  .founder-photo { max-width: 360px; margin: 0 auto; }
}

/* ============================================================
   BLOCK 3 — WHAT WE DELIVER (BENTO GRID — inspired by 21st.dev)
   ============================================================ */
.pillars.bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: minmax(180px, auto);
  gap: 24px;
}
.pillar {
  background: var(--cream-soft);
  border: 1px solid var(--cream-edge);
  border-radius: var(--radius);
  padding: 32px 28px;
  display: flex; flex-direction: column; gap: 14px;
  transition: border-color .2s ease, transform .2s ease;
  position: relative;
  overflow: hidden;
}
.pillar:hover {
  border-color: var(--amber);
  transform: translateY(-2px);
}
.bento-1 {
  grid-column: span 2; grid-row: span 2;
  padding: 40px 32px;
  background: var(--ink); color: var(--ice);
  border-color: var(--navy-800);
}
.bento-1::before {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(232,201,136,0.14) 1px, transparent 1px);
  background-size: 22px 22px;
  pointer-events: none;
  opacity: .5;
}
.bento-2 { grid-column: span 2; }
.bento-3 { grid-column: span 2; }
.bento-4 {
  grid-column: span 4;
  flex-direction: row; align-items: flex-end; gap: 40px;
}
.bento-4 .pillar-text {
  flex: 1; display: flex; flex-direction: column; gap: 14px;
}

.pillar .pillar-num {
  font-family: var(--font-display);
  font-size: 13px;
  color: var(--amber-deep);
  letter-spacing: .08em;
  position: relative; z-index: 2;
}
.bento-1 .pillar-num { color: var(--amber-bright); }
.pillar h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 22px;
  line-height: 1.15;
  margin: 0;
  color: var(--ink);
  position: relative; z-index: 2;
}
.bento-1 h3 { color: var(--ice); font-size: 30px; max-width: 280px; }
.pillar p {
  font-size: 14px;
  color: var(--ink-dim);
  margin: 0;
  line-height: 1.6;
  position: relative; z-index: 2;
}
.bento-1 p { color: var(--ice-dim); }
.pillar .pillar-big {
  font-family: var(--font-display);
  font-size: 42px;
  letter-spacing: -.02em;
  color: var(--ink);
  font-weight: 500;
  line-height: 1;
  margin-top: auto;
  position: relative; z-index: 2;
  display: flex; align-items: baseline; gap: 8px;
}
.bento-1 .pillar-big { font-size: 88px; color: var(--amber-bright); }
.pillar .pillar-big small {
  font-size: 14px;
  font-family: var(--font-sans);
  color: var(--ink-soft);
  font-weight: 400;
  letter-spacing: 0;
}
.bento-1 .pillar-big small { color: var(--ice-soft); font-size: 15px; }
.bento-live {
  position: absolute; top: 22px; right: 26px;
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ice-soft);
  z-index: 3;
}
.bento-live .live-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--good);
  box-shadow: 0 0 0 0 rgba(91,208,160,0.6);
  animation: livepulse 2s infinite;
}
@keyframes livepulse {
  0%   { box-shadow: 0 0 0 0 rgba(91,208,160,0.55); }
  70%  { box-shadow: 0 0 0 10px rgba(91,208,160,0);  }
  100% { box-shadow: 0 0 0 0 rgba(91,208,160,0);     }
}

/* ============================================================
   STANDARDS STRIP — infinite marquee (inspired by 21st.dev)
   ============================================================ */
.strip {
  background: var(--navy-950);
  padding: 56px 0 64px;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.strip-label {
  text-align: center;
  font-size: 11px;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--ice-soft);
  margin: 0 0 32px;
}
.marquee {
  overflow: hidden;
  position: relative;
}
.marquee::before, .marquee::after {
  content: "";
  position: absolute; top: 0; bottom: 0;
  width: 140px;
  z-index: 2;
  pointer-events: none;
}
.marquee::before { left: 0;  background: linear-gradient(to right, var(--navy-950), transparent); }
.marquee::after  { right: 0; background: linear-gradient(to left,  var(--navy-950), transparent); }
.marquee-track {
  display: flex; align-items: center;
  width: max-content;
  animation: marquee 60s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
.marquee-track > span {
  white-space: nowrap;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--ice-dim);
  letter-spacing: .04em;
  padding: 0 40px;
  position: relative;
}
.marquee-track > span::before {
  content: "·";
  position: absolute;
  left: -6px;
  top: 50%;
  transform: translateY(-58%);
  color: var(--amber);
  font-size: 30px;
  opacity: .6;
}
.marquee-track > span:first-child::before { display: none; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   BLOCK 4 — LIVE OFFICER POOL
   ============================================================ */
.pool-layout {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 40px;
  align-items: stretch;
}
.pool-filters {
  background: var(--navy-900);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: 32px;
  display: flex; flex-direction: column; gap: 22px;
}
.field { display: flex; flex-direction: column; gap: 8px; }
.field label {
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ice-soft);
}
.field select, .field input[type=text], .field input[type=number], .field textarea {
  appearance: none;
  background: var(--navy-950);
  border: 1px solid var(--rule-strong);
  color: var(--ice);
  padding: 12px 14px;
  border-radius: var(--radius);
  font-size: 14px;
  transition: border-color .15s ease;
}
.field select:focus, .field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--amber);
}
.field select {
  background-image: linear-gradient(45deg, transparent 50%, var(--ice-dim) 50%),
                    linear-gradient(135deg, var(--ice-dim) 50%, transparent 50%);
  background-position: calc(100% - 18px) center, calc(100% - 13px) center;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
  padding-right: 36px;
}

.pool-result {
  background: linear-gradient(180deg, var(--navy-800) 0%, var(--navy-900) 100%);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: 32px;
  display: flex; flex-direction: column; gap: 20px;
}
.pool-count {
  display: flex; align-items: baseline; gap: 12px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--rule);
}
.pool-count .big {
  font-family: var(--font-display);
  font-size: 84px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -.03em;
  color: var(--amber-bright);
}
.pool-count .qual {
  font-size: 14px;
  color: var(--ice-dim);
}
.pool-sub {
  font-size: 13px;
  color: var(--ice-soft);
  letter-spacing: .04em;
}
.pool-profile {
  background: rgba(244,239,230,0.04);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: 18px 20px;
  display: flex; flex-direction: column; gap: 8px;
}
.pool-profile .pp-head {
  display: flex; justify-content: space-between; align-items: baseline;
  gap: 12px;
}
.pool-profile .pp-rank {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--ice);
}
.pool-profile .pp-flag {
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--good);
}
.pool-profile .pp-meta {
  font-size: 13px;
  color: var(--ice-dim);
  line-height: 1.6;
}
.pool-cta {
  margin-top: auto;
  display: flex; gap: 12px; flex-wrap: wrap;
}

/* ============================================================
   BLOCK 5 — COST CALCULATOR
   ============================================================ */
.calc-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: stretch;
}
.calc-form {
  background: var(--cream-soft);
  border: 1px solid var(--cream-edge);
  border-radius: var(--radius);
  padding: 32px;
  display: flex; flex-direction: column; gap: 22px;
}
.section.light .field label { color: var(--ink-soft); }
.section.light .field select,
.section.light .field input[type=text],
.section.light .field input[type=number],
.section.light .field textarea {
  background: #fff;
  border-color: var(--rule-light-strong);
  color: var(--ink);
}
.section.light .field select {
  background-image: linear-gradient(45deg, transparent 50%, var(--ink-soft) 50%),
                    linear-gradient(135deg, var(--ink-soft) 50%, transparent 50%);
  background-position: calc(100% - 18px) center, calc(100% - 13px) center;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
  padding-right: 36px;
}
.section.light .field select:focus,
.section.light .field input:focus,
.section.light .field textarea:focus { border-color: var(--amber); }

.slider-wrap {
  display: flex; flex-direction: column; gap: 8px;
}
.slider-row { display: flex; justify-content: space-between; align-items: baseline; }
.slider-row b {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: -.01em;
  color: var(--amber-deep);
  font-weight: 500;
}
.section.dark .slider-row b { color: var(--amber-bright); }
input[type=range] {
  width: 100%; height: 4px;
  background: var(--rule-light-strong);
  appearance: none;
  border-radius: 4px;
  outline: none;
}
.section.dark input[type=range] { background: var(--rule-strong); }
input[type=range]::-webkit-slider-thumb {
  appearance: none;
  width: 20px; height: 20px;
  background: var(--amber);
  border-radius: 50%;
  cursor: pointer;
  border: 2px solid #fff;
  box-shadow: 0 4px 10px rgba(232,163,61,0.4);
}
.section.dark input[type=range]::-webkit-slider-thumb { border-color: var(--navy-950); }
input[type=range]::-moz-range-thumb {
  width: 20px; height: 20px;
  background: var(--amber);
  border-radius: 50%;
  cursor: pointer;
  border: 2px solid #fff;
}

.calc-result {
  background: linear-gradient(180deg, #fff, var(--cream-soft));
  border: 1px solid var(--cream-edge);
  border-radius: var(--radius);
  padding: 36px;
  display: flex; flex-direction: column; gap: 24px;
  position: relative;
  overflow: hidden;
}
.calc-loss {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 84px);
  line-height: 1;
  letter-spacing: -.03em;
  color: var(--warn);
  font-weight: 500;
}
.calc-loss-label {
  font-size: 12px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.calc-compare {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
  padding-top: 24px;
  border-top: 1px solid var(--rule-light);
}
.compare-cell .label {
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 6px;
}
.compare-cell .val {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--ink);
  font-weight: 500;
  line-height: 1.1;
}
.compare-cell.savings .val { color: var(--good); }
.calc-note {
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.6;
}

/* ============================================================
   BLOCK 6 — VETTING TIMELINE
   ============================================================ */
.vetting-rail {
  position: relative;
  padding: 60px 0 0;
}
.vetting-rail::before {
  content: "";
  position: absolute;
  left: 0; right: 0; top: 96px; height: 2px;
  background: linear-gradient(90deg, transparent, var(--amber) 10%, var(--amber) 90%, transparent);
  opacity: .5;
}
.vetting-steps {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 12px;
  position: relative;
}
.vstep {
  display: flex; flex-direction: column; align-items: center;
  gap: 14px;
  cursor: pointer;
  padding-bottom: 12px;
  text-align: center;
}
.vstep .day {
  font-family: var(--font-display);
  font-size: 13px;
  color: var(--ice-soft);
  letter-spacing: .04em;
}
.vstep .dot {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--navy-700);
  border: 2px solid var(--amber);
  transition: background .2s ease, transform .2s ease;
  position: relative;
  z-index: 2;
}
.vstep.active .dot { background: var(--amber); transform: scale(1.2); box-shadow: 0 0 18px rgba(232,163,61,0.6); }
.vstep .title {
  font-size: 12px;
  color: var(--ice-dim);
  line-height: 1.35;
  max-width: 140px;
}
.vstep.active .title { color: var(--ice); font-weight: 500; }

.vetting-detail {
  margin-top: 56px;
  padding: 32px 36px;
  background: var(--navy-900);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  display: grid; grid-template-columns: 0.6fr 1fr; gap: 32px;
  align-items: start;
}
.vetting-detail .vd-num {
  font-family: var(--font-display);
  font-size: 72px;
  color: var(--amber-bright);
  line-height: 1;
  font-weight: 500;
  letter-spacing: -.03em;
}
.vetting-detail .vd-day {
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ice-soft);
  margin-top: 8px;
}
.vetting-detail h4 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 24px;
  margin: 0 0 12px;
  color: var(--ice);
}
.vetting-detail p {
  color: var(--ice-dim);
  font-size: 15px;
  margin: 0;
  line-height: 1.65;
}
.vetting-funnel {
  margin-top: 48px;
  padding: 28px;
  border: 1px dashed var(--rule-strong);
  border-radius: var(--radius);
  display: flex; align-items: center; gap: 32px;
  font-size: 14px;
  color: var(--ice-dim);
}
.vetting-funnel b { color: var(--amber-bright); font-weight: 500; font-family: var(--font-display); font-size: 28px; }

/* ============================================================
   BLOCK 7 — PILOT CONFIGURATOR
   ============================================================ */
.pilot-layout {
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 40px;
  align-items: stretch;
}
.pilot-form {
  background: var(--cream-soft);
  border: 1px solid var(--cream-edge);
  border-radius: var(--radius);
  padding: 32px;
  display: flex; flex-direction: column; gap: 22px;
}
.pilot-output {
  background: var(--ink);
  color: var(--ice);
  border-radius: var(--radius);
  padding: 36px;
  display: flex; flex-direction: column; gap: 20px;
  position: relative;
  overflow: hidden;
}
.pilot-output::before {
  content: "";
  position: absolute;
  top: -1px; left: -1px; right: -1px; height: 2px;
  background: linear-gradient(90deg, var(--amber), var(--amber-bright));
}
.pilot-output .po-eyebrow {
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--amber-bright);
}
.pilot-output h4 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 26px;
  margin: 0;
  line-height: 1.2;
}
.pilot-output .po-terms {
  display: flex; flex-direction: column; gap: 14px;
  padding: 20px 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.pilot-output .po-term {
  display: flex; gap: 12px;
  font-size: 14px;
  color: var(--ice-dim);
}
.pilot-output .po-term svg {
  flex: 0 0 18px;
  width: 18px; height: 18px;
  color: var(--good);
  margin-top: 2px;
}
.pilot-output .po-term b { color: var(--ice); font-weight: 500; }
.pilot-output .po-foot {
  display: flex; gap: 12px; align-items: center; flex-wrap: wrap;
}

/* ============================================================
   BLOCK 8 — CASES
   ============================================================ */
.cases {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.case {
  background: var(--navy-900);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: 32px;
  display: flex; flex-direction: column; gap: 20px;
  transition: border-color .2s ease, transform .2s ease;
}
.case:hover { border-color: var(--amber); transform: translateY(-2px); }
.case .case-meta {
  font-size: 11px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--amber-bright);
}
.case .case-headline {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  line-height: 1.25;
  margin: 0;
}
.case .case-metric {
  display: flex; align-items: baseline; gap: 16px;
  padding: 16px 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.case .case-metric .from {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--ice-dim);
  text-decoration: line-through;
  text-decoration-color: var(--warn);
}
.case .case-metric .arrow { color: var(--ice-soft); }
.case .case-metric .to {
  font-family: var(--font-display);
  font-size: 36px;
  color: var(--amber-bright);
  letter-spacing: -.02em;
  font-weight: 500;
}
.case .case-body {
  font-size: 14px;
  color: var(--ice-dim);
  line-height: 1.7;
  margin: 0;
}

/* ============================================================
   BLOCK 9 — FOR CREWING MANAGERS
   ============================================================ */
.crew-layout {
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px;
  align-items: start;
}
.crew-col h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  margin: 0 0 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--rule-light-strong);
}
.crew-col.you h3 { color: var(--amber-deep); }
.crew-col.them h3 { color: var(--ink); }
.crew-list {
  display: flex; flex-direction: column; gap: 16px;
}
.crew-list li {
  display: flex; gap: 12px;
  font-size: 15px;
  color: var(--ink-dim);
  line-height: 1.55;
}
.crew-list li svg {
  flex: 0 0 18px;
  width: 18px; height: 18px;
  color: var(--amber-deep);
  margin-top: 4px;
}
.crew-col.them .crew-list li svg { color: var(--good); }

/* ============================================================
   BLOCK 10 — CONTACT
   ============================================================ */
.contact-layout {
  display: grid; grid-template-columns: 1fr 0.9fr; gap: 56px;
  align-items: start;
}
.contact-form {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
}
.contact-form .field.full { grid-column: 1 / -1; }
.contact-form textarea {
  min-height: 110px;
  resize: vertical;
}
.contact-form .form-actions {
  grid-column: 1 / -1;
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
  padding-top: 8px;
}
.contact-direct {
  background: var(--navy-900);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: 32px;
  display: flex; flex-direction: column; gap: 22px;
}
.contact-direct h4 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 20px;
  margin: 0;
}
.contact-direct .channels {
  display: flex; flex-direction: column; gap: 14px;
}
.channel {
  display: flex; align-items: center; gap: 16px;
  padding: 14px 16px;
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  transition: border-color .2s ease, background .2s ease;
}
.channel:hover { border-color: var(--amber); background: rgba(232,163,61,0.05); }
.channel .ch-icon {
  width: 38px; height: 38px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--navy-800);
  color: var(--amber-bright);
}
.channel .ch-icon svg { width: 18px; height: 18px; }
.channel .ch-body { display: flex; flex-direction: column; gap: 2px; }
.channel .ch-title {
  font-size: 14px; color: var(--ice);
}
.channel .ch-sub {
  font-size: 12px; color: var(--ice-soft);
}
.response-note {
  font-size: 12px; color: var(--ice-soft);
  letter-spacing: .04em;
  padding-top: 16px;
  border-top: 1px solid var(--rule);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #03091A;
  padding: 56px 0 32px;
  color: var(--ice-soft);
  font-size: 13px;
}
.footer-inner {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--rule);
}
.footer .logo { font-size: 14px; margin-bottom: 16px; }
.footer p { margin: 0 0 12px; color: var(--ice-soft); max-width: 320px; }
.footer h5 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ice-dim);
  margin: 0 0 16px;
}
.footer ul li { padding: 4px 0; }
.footer ul li a:hover { color: var(--amber-bright); }
.certs { display: flex; gap: 12px; margin-top: 8px; }
.cert-badge {
  padding: 6px 12px;
  border: 1px solid var(--rule);
  font-size: 11px; letter-spacing: .12em;
  color: var(--ice-dim);
  border-radius: 2px;
}
.footer-bottom {
  padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px;
  color: var(--ice-soft);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .pain-grid { grid-template-columns: repeat(3, 1fr); }
  .pillars.bento { grid-template-columns: repeat(2, 1fr); grid-auto-rows: auto; }
  .bento-1, .bento-2, .bento-3, .bento-4 { grid-column: span 1; grid-row: span 1; }
  .bento-4 { flex-direction: column; align-items: flex-start; gap: 14px; }
  .vetting-steps { grid-template-columns: repeat(4, 1fr); gap: 24px; }
  .vetting-rail::before { display: none; }
  .cases { grid-template-columns: 1fr; }
}
@media (max-width: 880px) {
  .section { padding: 80px 0; }
  .nav-links { display: none; }
  .hero-inner { padding: 56px 0 96px; }
  .hero-sub { font-size: 16px; }
  .trust { grid-template-columns: repeat(2, 1fr); gap: 28px 20px; }
  .hero-contacts { padding-left: 0; border-left: none; }
  .ship { opacity: .08; right: -140px; }
  .pool-layout, .calc-layout, .pilot-layout, .crew-layout, .contact-layout {
    grid-template-columns: 1fr;
  }
  .vetting-detail { grid-template-columns: 1fr; }
  .vetting-detail .vd-num { font-size: 56px; }
  .contact-form { grid-template-columns: 1fr; }
  .pain-grid { grid-template-columns: repeat(2, 1fr); }
  .pillars.bento { grid-template-columns: 1fr; }
  .bento-1 { padding: 32px 28px; }
  .bento-1 h3 { font-size: 24px; }
  .bento-1 .pillar-big { font-size: 64px; }
  .marquee-track > span { font-size: 18px; padding: 0 28px; }
  .strip { padding: 40px 0 48px; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 8px; align-items: flex-start; }
}
@media (max-width: 520px) {
  .nav-cta { display: none; }
  .hero-inner h1 { font-size: 44px; }
  .pain-grid { grid-template-columns: 1fr; }
  .vetting-steps { grid-template-columns: repeat(2, 1fr); }
  .pool-count .big { font-size: 56px; }
}

/* ============================================================
   LANGUAGE SWITCHER — EN / PT-BR
   ============================================================ */
.lang-switch {
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ice-soft);
  padding: 0 14px;
  border-left: 1px solid var(--rule);
  margin-left: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  transition: color .15s ease;
}
.lang-switch:hover { color: var(--ice); }
.lang-switch .sep { color: var(--rule-strong); }
.lang-switch .active { color: var(--amber-bright); font-weight: 600; }
@media (max-width: 880px) {
  .lang-switch { display: none; }
}
