/* ═══════════════════════════════════════════════════════════
   DARCOCEAN — GLOBAL LUXURY BRAND STYLESHEET
   Where Luxury Runs Deep
═══════════════════════════════════════════════════════════ */

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* ── BACKGROUNDS — pulled from logo panels ── */
  --navy-deep:    #131318;   /* primary dark charcoal (left/mid logo panels) */
  --navy-dark:    #18181f;   /* section alternate */
  --navy-mid:     #0e1c3a;   /* deep navy (right logo panel) */
  --navy-light:   #152240;   /* navy hover/accent */
  --navy-card:    #1c1c25;   /* card surface on charcoal */

  /* ── LOGO BLUE — metallic cobalt D mark ── */
  --blue-deep:    #0a1a5c;   /* darkest shadow in D */
  --blue-mid:     #1a4ab0;   /* primary royal blue */
  --blue-bright:  #2d64d4;   /* main face of the D mark */
  --blue-glow:    #4a7ee8;   /* highlight/reflection */
  --blue-light:   rgba(45, 100, 212, 0.15); /* tinted bg */

  /* ── SILVER CHROME — logo typography + right D mark ── */
  --silver-dim:   #485a6e;
  --silver-mid:   #7a92aa;
  --silver-bright:#b0c4d8;
  --silver-chrome:#cddae6;   /* matches logo wordmark */
  --white:        #edf4fa;
  --white-soft:   #e0eaf4;

  /* ── GRADIENTS ── */
  --chrome-gradient: linear-gradient(135deg, #7a92aa 0%, #cddae6 35%, #ffffff 50%, #cddae6 65%, #7a92aa 100%);
  --blue-metallic:   linear-gradient(135deg, #0a1a5c 0%, #1a4ab0 40%, #4a7ee8 60%, #1a4ab0 80%, #0a1a5c 100%);

  --font-display: 'Cinzel', serif;
  --font-serif:   'Cormorant Garamond', serif;
  --font-sans:    'Inter', sans-serif;

  --transition:      0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  --radius:          4px;
  --radius-lg:       8px;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--navy-deep);
  color: var(--silver-bright);
  font-family: var(--font-sans);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection { background: rgba(45, 100, 212, 0.3); color: var(--white); }

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── LOGO IMAGES ── */
.nav-logo-img {
  height: 44px;
  width: auto;
  object-fit: contain;
  transition: opacity var(--transition);
}
.nav-logo:hover .nav-logo-img { opacity: 0.85; }

.hero-logo-img-wrap {
  margin-bottom: 16px;
  position: relative;
  width: min(520px, 78vw);
  margin-left: auto;
  margin-right: auto;
}
.hero-logo-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 80% 80% at 50% 50%,
    transparent 45%,
    #131315 75%
  );
  pointer-events: none;
}
.hero-logo-img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 0 40px rgba(45, 100, 212, 0.5));
}

.footer-logo-img {
  height: 60px;
  width: auto;
  object-fit: contain;
  opacity: 0.85;
  transition: opacity var(--transition);
}
.footer-logo:hover .footer-logo-img { opacity: 1; }

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--navy-deep); }
::-webkit-scrollbar-thumb { background: var(--silver-dim); border-radius: 2px; }

/* ── CONTAINER ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ── SECTIONS ── */
.section-dark   { background: var(--navy-dark); padding: 120px 0; }
.section-deeper { background: var(--navy-deep); padding: 120px 0; }
.section-ocean  { background: var(--navy-mid);  padding: 120px 0; position: relative; overflow: hidden; }

/* ══════════════════════════════════════════════════════════
   TYPOGRAPHY
══════════════════════════════════════════════════════════ */

.chrome-text {
  background: linear-gradient(
    135deg,
    #7a92aa 0%,
    #b0c8de 20%,
    #cddae6 35%,
    #ffffff 50%,
    #cddae6 65%,
    #b0c8de 80%,
    #7a92aa 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: chromeShine 4s linear infinite;
}

@keyframes chromeShine {
  0%   { background-position: 0% center; }
  100% { background-position: 200% center; }
}

.section-label {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--silver-mid);
  margin-bottom: 16px;
}

.section-heading {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 32px;
}
.section-heading em { font-style: italic; color: var(--silver-chrome); }

.section-sub {
  font-size: 1.05rem;
  color: var(--silver-mid);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.8;
}

.section-header { text-align: center; margin-bottom: 72px; }

.body-large {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--silver-chrome);
  margin-bottom: 24px;
}

.body-text {
  font-size: 0.95rem;
  color: var(--silver-mid);
  line-height: 1.85;
  margin-bottom: 18px;
}
.body-text strong { color: var(--silver-chrome); font-weight: 500; }

.body-large.light, .body-text.light { color: rgba(200, 215, 230, 0.85); }

/* ══════════════════════════════════════════════════════════
   NAVIGATION
══════════════════════════════════════════════════════════ */

#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 24px 0;
  transition: var(--transition);
}

#navbar.scrolled {
  background: rgba(4, 9, 15, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 16px 0;
  border-bottom: 1px solid rgba(180, 200, 220, 0.08);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: baseline;
  gap: 2px;
  transition: opacity var(--transition);
}
.nav-logo:hover { opacity: 0.8; }

.logo-d {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, #9aaab8, #ffffff, #9aaab8);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: chromeShine 3s linear infinite;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  color: var(--silver-chrome);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-links a {
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--silver-mid);
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1px;
  background: var(--silver-chrome);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-cta {
  background: transparent !important;
  border: 1px solid var(--silver-dim) !important;
  padding: 8px 24px !important;
  border-radius: var(--radius) !important;
  color: var(--silver-chrome) !important;
  transition: all var(--transition) !important;
}
.nav-cta:hover {
  background: var(--silver-chrome) !important;
  color: var(--navy-deep) !important;
  border-color: var(--silver-chrome) !important;
}
.nav-cta::after { display: none !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--silver-chrome);
  transition: var(--transition);
}

/* ══════════════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════════════ */

#hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--navy-deep);
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  z-index: 0;
}
#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10,16,32,0.4) 0%, rgba(10,16,32,0.05) 15%, rgba(10,16,32,0.05) 80%, rgba(10,16,32,0.95) 100%);
  z-index: 1;
}
.hero-content, .hero-scroll-hint { position: relative; z-index: 2; }

.hero-sound-btn {
  position: fixed;
  bottom: 44px;
  right: 40px;
  z-index: 9999;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.1rem;
  transition: background 0.2s;
  backdrop-filter: blur(6px);
}
.hero-sound-btn:hover { background: rgba(255,255,255,0.16); }

#waveCanvas {
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 40%;
  opacity: 0.5;
}

.particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 2px;
  height: 2px;
  background: var(--silver-chrome);
  border-radius: 50%;
  animation: particleFloat linear infinite;
  opacity: 0;
}

@keyframes particleFloat {
  0%   { transform: translateY(100vh) translateX(0); opacity: 0; }
  10%  { opacity: 0.6; }
  90%  { opacity: 0.3; }
  100% { transform: translateY(-20px) translateX(30px); opacity: 0; }
}

.hero-content {
  position: absolute;
  bottom: 60px;
  left: 0;
  right: 0;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 40px;
}

.hero-overline {
  font-family: var(--font-display);
  font-size: 0.65rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--silver-mid);
  margin-bottom: 32px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 10vw, 9rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.1em;
  margin-bottom: 24px;
}

.hero-tagline {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2.5vw, 1.6rem);
  font-weight: 300;
  font-style: italic;
  color: var(--silver-chrome);
  margin-bottom: 24px;
  letter-spacing: 0.05em;
}
.hero-tagline-lg {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  margin-bottom: 48px;
}

.hero-sub {
  font-size: 0.95rem;
  color: var(--silver-mid);
  max-width: 580px;
  margin: 0 auto 48px;
  line-height: 1.85;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  z-index: 2;
}
.hero-scroll-hint span {
  font-family: var(--font-display);
  font-size: 0.55rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--silver-dim);
}
.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--silver-dim), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50%       { opacity: 1;   transform: scaleY(1.1); }
}

/* ══════════════════════════════════════════════════════════
   BUTTONS
══════════════════════════════════════════════════════════ */

.btn-primary {
  display: inline-block;
  padding: 14px 40px;
  background: linear-gradient(135deg, #1a4ab0, #2d64d4, #4a7ee8, #2d64d4, #1a4ab0);
  background-size: 200% auto;
  color: #ffffff;
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-primary:hover {
  background-position: right center;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(45, 100, 212, 0.4);
}

.btn-ghost {
  display: inline-block;
  padding: 13px 40px;
  background: transparent;
  color: var(--silver-chrome);
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: 1px solid rgba(180, 200, 220, 0.3);
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-ghost:hover {
  border-color: var(--silver-chrome);
  background: rgba(180, 200, 220, 0.08);
  transform: translateY(-2px);
}

.btn-light { background: var(--navy-deep); color: var(--silver-chrome) !important; }
.btn-light:hover { background: var(--navy-dark) !important; color: var(--white) !important; }

.btn-full { width: 100%; text-align: center; }

/* ══════════════════════════════════════════════════════════
   PHILOSOPHY — GRID & PILLARS
══════════════════════════════════════════════════════════ */

.section-grid.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  margin-bottom: 80px;
}

.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(180, 200, 220, 0.06);
  border: 1px solid rgba(180, 200, 220, 0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 80px;
}

.philosophy-standard {
  text-align: center;
  padding: 64px 40px;
  border: 1px solid rgba(180, 200, 220, 0.08);
  border-radius: var(--radius-lg);
  background: var(--navy-card);
}
.philosophy-standard-heading {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 300;
  font-style: italic;
  color: var(--silver-chrome);
  margin: 16px 0 40px;
}
.standard-pillars {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--silver-mid);
}
.standard-dot { color: var(--blue-bright); font-size: 0.6rem; }

.pillar {
  padding: 48px 36px;
  background: var(--navy-dark);
  transition: background var(--transition);
}
.pillar:hover { background: var(--navy-card); }

.pillar-icon {
  font-size: 1.4rem;
  color: var(--silver-mid);
  margin-bottom: 20px;
}

.pillar h3 {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--silver-chrome);
  margin-bottom: 16px;
}

.pillar p {
  font-size: 0.9rem;
  color: var(--silver-mid);
  line-height: 1.75;
}

/* ══════════════════════════════════════════════════════════
   FOUNDER
══════════════════════════════════════════════════════════ */

.founder-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: start;
}

.founder-frame {
  border-radius: var(--radius-lg);
  margin-bottom: 32px;
  position: relative;
  overflow: hidden;
  background: #000;
}

.founder-photo-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-lg);
  object-fit: cover;
}

.founder-title-line {
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--blue-glow);
  margin-bottom: 28px;
}

.founder-credentials { display: flex; flex-direction: column; gap: 12px; }

.credential {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: var(--navy-card);
  border: 1px solid rgba(180, 200, 220, 0.08);
  border-radius: var(--radius);
  font-size: 0.82rem;
  color: var(--silver-chrome);
  transition: all var(--transition);
}
.credential:hover {
  border-color: rgba(180, 200, 220, 0.2);
  background: var(--navy-light);
}

.cred-icon {
  font-size: 1rem;
  color: var(--silver-mid);
  flex-shrink: 0;
  width: 20px;
  text-align: center;
}

.founder-quote {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-style: italic;
  font-weight: 300;
  color: var(--silver-chrome);
  border-left: 2px solid rgba(180, 200, 220, 0.3);
  padding-left: 24px;
  margin: 32px 0;
  line-height: 1.6;
}

/* ══════════════════════════════════════════════════════════
   DIVISIONS
══════════════════════════════════════════════════════════ */

.divisions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: rgba(180, 200, 220, 0.04);
  border: 1px solid rgba(180, 200, 220, 0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.division-card {
  background: var(--navy-card);
  padding: 48px 40px;
  position: relative;
  transition: background var(--transition);
}
.division-card:hover { background: var(--navy-light); }

.division-accent {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
}
.accent-re      { background: linear-gradient(90deg, #1a4ab0, #4a7ee8); }
.accent-law     { background: linear-gradient(90deg, #0a1a5c, #1a4ab0); }
.accent-capital { background: linear-gradient(90deg, #2d64d4, #6a9ee8); }
.accent-shield  { background: linear-gradient(90deg, #7a92aa, #cddae6); }

.division-icon {
  font-size: 2rem;
  color: var(--silver-mid);
  margin-bottom: 20px;
  display: block;
}

.division-card h3 {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 6px;
}

.division-sub {
  font-family: var(--font-display);
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--silver-mid);
  margin-bottom: 20px;
}

.division-card p {
  font-size: 0.88rem;
  color: var(--silver-mid);
  line-height: 1.8;
  margin-bottom: 24px;
}

.division-list {
  margin-bottom: 28px;
}
.division-list li {
  font-size: 0.82rem;
  color: var(--silver-mid);
  padding: 6px 0;
  border-bottom: 1px solid rgba(180, 200, 220, 0.06);
  display: flex;
  align-items: center;
  gap: 10px;
}
.division-list li::before {
  content: '—';
  color: var(--silver-dim);
  flex-shrink: 0;
}

.division-link {
  font-family: var(--font-display);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--silver-chrome);
  transition: color var(--transition);
}
.division-link:hover { color: var(--white); }

/* ══════════════════════════════════════════════════════════
   GCRID
══════════════════════════════════════════════════════════ */

.gcrid-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(26, 74, 176, 0.2) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 50%, rgba(10, 26, 92, 0.4) 0%, transparent 60%);
}

.gcrid-container { position: relative; z-index: 1; }

.gcrid-header { text-align: center; margin-bottom: 72px; }

.gcrid-full-name {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-style: italic;
  color: rgba(200, 215, 230, 0.6);
  margin-top: 8px;
  letter-spacing: 0.05em;
}

.heading-light { color: var(--white); }
.label-light   { color: rgba(200, 215, 230, 0.5); }

.gcrid-intro {
  max-width: 720px;
  margin: 0 auto 64px;
  text-align: center;
}

.gcrid-pipelines {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  background: rgba(180, 200, 220, 0.04);
  border: 1px solid rgba(180, 200, 220, 0.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 64px;
}

.pipeline {
  padding: 48px 40px;
}

.pipeline-divider {
  width: 1px;
  background: rgba(180, 200, 220, 0.1);
  margin: 24px 0;
}

.pipeline-direction {
  font-family: var(--font-display);
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--silver-mid);
  margin-bottom: 12px;
}

.pipeline h4 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 16px;
}

.pipeline p {
  font-size: 0.88rem;
  color: rgba(180, 200, 220, 0.65);
  line-height: 1.8;
}

.tiers-heading {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--silver-mid);
  text-align: center;
  margin-bottom: 32px;
}

.tiers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: rgba(180, 200, 220, 0.04);
  border: 1px solid rgba(180, 200, 220, 0.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 48px;
}

.tier {
  padding: 32px 24px;
  background: rgba(7, 14, 26, 0.8);
  text-align: center;
  transition: background var(--transition);
}
.tier:hover { background: rgba(11, 22, 40, 0.95); }

.tier-badge {
  display: inline-block;
  padding: 6px 16px;
  border: 1px solid rgba(180, 200, 220, 0.25);
  border-radius: 20px;
  font-family: var(--font-display);
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--silver-chrome);
  margin-bottom: 16px;
}

.tier p {
  font-size: 0.82rem;
  color: rgba(180, 200, 220, 0.6);
  line-height: 1.7;
}

.gcrid-cta { text-align: center; }

/* ══════════════════════════════════════════════════════════
   GCRID PARTNER (compact)
══════════════════════════════════════════════════════════ */

.gcrid-partner-container { position: relative; z-index: 1; }

.gcrid-partner-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 80px;
  background: rgba(7, 14, 26, 0.7);
  border: 1px solid rgba(45, 100, 212, 0.15);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(12px);
}

.gcrid-partner-desc {
  font-size: 0.92rem;
  color: rgba(200, 215, 230, 0.7);
  line-height: 1.8;
  margin-bottom: 28px;
}

.gcrid-btn {
  border-color: rgba(180, 200, 220, 0.4) !important;
}

.gcrid-partner-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: rgba(45, 100, 212, 0.06);
  border: 1px solid rgba(45, 100, 212, 0.12);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.gp-stat {
  padding: 28px 24px;
  background: rgba(11, 22, 40, 0.8);
  text-align: center;
}
.gp-stat-full {
  grid-column: 1 / -1;
  text-align: left;
  padding: 24px 28px;
}

.gp-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 500;
  color: var(--blue-bright);
  margin-bottom: 6px;
}
.gp-label {
  font-family: var(--font-display);
  font-size: 0.52rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--silver-dim);
}

.gp-quote {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-style: italic;
  color: rgba(200, 215, 230, 0.6);
  line-height: 1.6;
}

@media (max-width: 900px) {
  .gcrid-partner-inner { grid-template-columns: 1fr; gap: 40px; padding: 40px 24px; }
}

/* ══════════════════════════════════════════════════════════
   GLOBAL MARKETS
══════════════════════════════════════════════════════════ */

.markets-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: rgba(180, 200, 220, 0.04);
  border: 1px solid rgba(180, 200, 220, 0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 64px;
}

.market-region {
  padding: 40px 32px;
  background: var(--navy-card);
  transition: background var(--transition);
}
.market-region:hover { background: var(--navy-light); }

.market-region h4 {
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--silver-chrome);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(180, 200, 220, 0.1);
}

.market-region li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 0.88rem;
  color: var(--silver-mid);
  border-bottom: 1px solid rgba(180, 200, 220, 0.04);
  transition: color var(--transition);
}
.market-region li:hover { color: var(--silver-chrome); }

.market-flag { font-size: 1rem; }

.market-tag {
  margin-left: auto;
  font-family: var(--font-display);
  font-size: 0.5rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--silver-chrome);
  background: rgba(180, 200, 220, 0.1);
  padding: 2px 8px;
  border-radius: 2px;
}

.global-stat-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  padding: 48px;
  background: var(--navy-card);
  border: 1px solid rgba(180, 200, 220, 0.08);
  border-radius: var(--radius-lg);
}

.stat { text-align: center; }

.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 400;
  background: linear-gradient(135deg, #1a4ab0, #4a7ee8, #cddae6, #4a7ee8, #1a4ab0);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: chromeShine 4s linear infinite;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-family: var(--font-display);
  font-size: 0.58rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--silver-dim);
}

.stat-divider {
  width: 1px;
  height: 60px;
  background: rgba(180, 200, 220, 0.1);
}

/* ══════════════════════════════════════════════════════════
   CONTACT
══════════════════════════════════════════════════════════ */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.contact-details { margin: 32px 0; }

.contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(180, 200, 220, 0.06);
  font-size: 0.9rem;
  color: var(--silver-mid);
}

.contact-icon {
  color: var(--silver-chrome);
  width: 20px;
  text-align: center;
  flex-shrink: 0;
}

.contact-div-label {
  font-family: var(--font-display);
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--silver-dim);
  margin-bottom: 14px;
}

.contact-tags { display: flex; flex-wrap: wrap; gap: 8px; }

.tag {
  padding: 6px 14px;
  border: 1px solid rgba(180, 200, 220, 0.15);
  border-radius: 2px;
  font-family: var(--font-display);
  font-size: 0.55rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--silver-mid);
}

/* ── FORM ── */
.contact-form {
  background: var(--navy-card);
  border: 1px solid rgba(180, 200, 220, 0.08);
  border-radius: var(--radius-lg);
  padding: 48px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-family: var(--font-display);
  font-size: 0.58rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--silver-dim);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(4, 9, 15, 0.6);
  border: 1px solid rgba(180, 200, 220, 0.1);
  border-radius: var(--radius);
  padding: 14px 16px;
  color: var(--silver-chrome);
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 300;
  transition: border-color var(--transition);
  outline: none;
  -webkit-appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--silver-dim); }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(180, 200, 220, 0.3);
  background: rgba(4, 9, 15, 0.8);
}

.form-group select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%234a5568' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form-group select option {
  background: var(--navy-dark);
  color: var(--silver-chrome);
}

.form-group textarea { resize: vertical; min-height: 120px; }

.form-note {
  text-align: center;
  font-size: 0.75rem;
  color: var(--silver-dim);
  margin-top: 16px;
  letter-spacing: 0.05em;
}

/* ══════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════ */

#footer {
  background: var(--navy-deep);
  border-top: 1px solid rgba(180, 200, 220, 0.06);
  padding: 80px 0 40px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  margin-bottom: 64px;
}

.footer-logo {
  display: flex;
  align-items: baseline;
  gap: 2px;
  margin-bottom: 16px;
}

.footer-tagline {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-style: italic;
  color: var(--silver-mid);
  margin-bottom: 8px;
}

.footer-desc {
  font-family: var(--font-display);
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--silver-dim);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer-col h5 {
  font-family: var(--font-display);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--silver-chrome);
  margin-bottom: 20px;
}

.footer-col li { margin-bottom: 10px; }

.footer-col a {
  font-size: 0.85rem;
  color: var(--silver-dim);
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--silver-chrome); }

.footer-bottom {
  border-top: 1px solid rgba(180, 200, 220, 0.06);
  padding-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-legal,
.footer-disclaimer {
  font-size: 0.75rem;
  color: var(--silver-dim);
  line-height: 1.6;
}

/* ══════════════════════════════════════════════════════════
   ANIMATIONS & REVEALS
══════════════════════════════════════════════════════════ */

.fade-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s cubic-bezier(0.4, 0, 0.2, 1) 0.3s forwards;
}

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

.reveal-up,
.reveal-left,
.reveal-right {
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-up    { transform: translateY(40px); }
.reveal-left  { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }

.reveal-up.visible,
.reveal-left.visible,
.reveal-right.visible {
  opacity: 1;
  transform: translate(0);
}

/* ══════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════ */

@media (max-width: 1024px) {
  .section-grid.two-col   { grid-template-columns: 1fr; gap: 48px; }
  .founder-grid           { grid-template-columns: 1fr; gap: 48px; }
  .founder-visual         { max-width: 400px; }
  .founder-frame          { aspect-ratio: 4/3; }
  .pillars                { grid-template-columns: repeat(2, 1fr); }
  .divisions-grid         { grid-template-columns: 1fr; }
  .tiers-grid             { grid-template-columns: repeat(2, 1fr); }
  .markets-grid           { grid-template-columns: repeat(2, 1fr); }
  .gcrid-pipelines        { grid-template-columns: 1fr; }
  .pipeline-divider       { width: 100%; height: 1px; margin: 0; }
  .footer-top             { grid-template-columns: 1fr; gap: 48px; }
  .global-stat-bar        { gap: 40px; padding: 32px; }
}

@media (max-width: 768px) {
  /* ── HERO VIDEO MOBILE ── */
  #hero { min-height: 100svh; }
  .hero-video {
    /* Portrait video (1080×1920) has black letterbox at top ~40% AND dark
       fade at the bottom — content lives only in the middle.
       Making the element 4× wider forces cover to scale by WIDTH instead
       of height, creating massive vertical overflow so object-position
       can actually target the live content zone in the middle of the frame. */
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    right: auto;
    width: 300%;
    height: 100%;
    transform: translateX(-50%);
    object-fit: cover;
    object-position: center 60%;
  }
  #hero::before {
    /* Fade starts at 42% to bury baked-in captions before they show */
    background:
      linear-gradient(to bottom,
        rgba(10,16,32,0.15) 0%,
        rgba(10,16,32,0.0)  12%,
        rgba(10,16,32,0.0)  30%,
        rgba(10,16,32,0.98) 44%,
        rgba(10,16,32,1)    50%);
    z-index: 2;
  }
  #hero::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 45%;
    background: var(--navy-deep);
    z-index: 2;
  }
  .hero-content { z-index: 3; }
  .hero-content {
    bottom: 36px;
  }
  div.hero-scroll-hint,
  div.hero-scroll-hint * {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
  }
  .hero-sound-btn {
    bottom: 24px;
    right: 20px;
  }

  .container { padding: 0 24px; }
  .section-dark, .section-deeper, .section-ocean { padding: 80px 0; }

  .nav-links {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(4, 9, 15, 0.98);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    z-index: 999;
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 0.8rem; letter-spacing: 0.3em; }
  .nav-toggle { display: flex; z-index: 1000; }

  .hero-actions { flex-direction: column; align-items: stretch; max-width: 300px; margin: 0 auto; }
  .btn-primary, .btn-ghost { text-align: center; }

  .contact-grid       { grid-template-columns: 1fr; gap: 48px; }
  .contact-form       { padding: 32px 24px; }
  .form-row           { grid-template-columns: 1fr; }
  .footer-links       { grid-template-columns: 1fr 1fr; gap: 32px; }
  .markets-grid       { grid-template-columns: 1fr 1fr; }
  .tiers-grid         { grid-template-columns: 1fr; }
  .global-stat-bar    { flex-direction: column; gap: 32px; }
  .stat-divider       { width: 60px; height: 1px; }
}

@media (max-width: 480px) {
  .markets-grid  { grid-template-columns: 1fr; }
  .footer-links  { grid-template-columns: 1fr; }
  .hero-content  { padding: 0 24px; }
}
