/* =====================================================
   OES Global — Homepage v2
   ===================================================== */

:root {
  --navy-900: #0B2545;
  --navy-800: #102E54;
  --navy-700: #173B68;
  --navy-600: #1F4D85;
  --blue-500: #2E6BA8;
  --blue-400: #4A86C2;
  --blue-300: #7DA8D1;
  --blue-100: #DCE6F2;

  --bg: #FFFFFF;
  --bg-soft: #F4F6FA;
  --line: #E2E8F0;

  --ink-900: #0B2545;
  --ink-700: #2A3A55;
  --ink-500: #5B6A82;
  --ink-400: #8290A8;

  --tcfl:      #F26B1A;
  --tcfl-deep: #C24B0A;
  --hd:        #1FA0E0;
  --hd-deep:   #0F73B5;
  --a4:        #2BB673;
  --a4-deep:   #1A8E57;
  --sd2k:      #B8924A;
  --sd2k-deep: #8E6E2E;

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 18px;

  --shadow-sm: 0 2px 8px rgba(11,37,69,.06);
  --shadow-md: 0 8px 24px rgba(11,37,69,.08);
  --shadow-lg: 0 24px 60px rgba(11,37,69,.18);

  --container: 1240px;
  --header-h:  84px;
  --font: 'Poppins', system-ui, -apple-system, 'Segoe UI', sans-serif;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  font-weight: 400;
  color: var(--ink-700);
  background: var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1,h2,h3,h4,h5 {
  font-family: var(--font);
  color: var(--ink-900);
  margin: 0;
  line-height: 1.15;
  letter-spacing: -0.01em;
  font-weight: 600;
}
p { margin: 0; }

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

/* ---- Reveal animations ---- */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
[data-reveal-delay="1"] { transition-delay: 0.12s; }
[data-reveal-delay="2"] { transition-delay: 0.24s; }
[data-reveal-delay="3"] { transition-delay: 0.36s; }
[data-reveal-delay="4"] { transition-delay: 0.48s; }
[data-reveal].is-in {
  opacity: 1;
  transform: none;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  font-family: var(--font);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1.5px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--blue-500);
  color: #fff;
  border-color: var(--blue-500);
}
.btn-primary:hover {
  background: var(--navy-700);
  border-color: var(--navy-700);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(46,107,168,.3);
}
.btn-ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.5);
}
.btn-ghost:hover {
  background: #fff;
  color: var(--navy-900);
  border-color: #fff;
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--navy-900);
  border-color: var(--navy-900);
}
.btn-outline:hover {
  background: var(--navy-900);
  color: #fff;
  transform: translateY(-2px);
}
.btn .arrow { transition: transform .25s ease; }
.btn:hover .arrow { transform: translateX(4px); }

/* ====================================================
   Header
   ==================================================== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background .35s ease, box-shadow .35s ease, backdrop-filter .35s ease;
}
.site-header.is-scrolled {
  background: rgba(11,37,69,.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 2px 24px rgba(0,0,0,.2);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.site-header .logo { display: flex; align-items: center; height: 38px; }
.site-header .logo img { height: 38px; width: auto; }

.nav { display: flex; align-items: center; gap: 32px; }
.nav a {
  color: rgba(255,255,255,.85);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  position: relative;
  padding: 6px 0;
  transition: color .2s ease;
}
.nav a:hover { color: #fff; }
.nav a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: var(--blue-400);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}
.nav a:hover::after { transform: scaleX(1); }
.nav a.nav-cta {
  padding: 9px 20px;
  background: var(--blue-500);
  color: #fff !important;
  border-radius: 999px;
  font-size: 12px;
}
.nav a.nav-cta:hover { background: #fff; color: var(--navy-900) !important; transform: translateY(-2px); }
.nav a.nav-cta::after { display: none; }

.menu-toggle {
  display: none;
  background: transparent;
  border: 0;
  color: #fff;
  width: 44px; height: 44px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

/* ====================================================
   Hero
   ==================================================== */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
  padding: var(--header-h) 0 80px;
}
.hero-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: var(--navy-900);
}
.hero-poster {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-700) 100%);
}
.hero-video iframe {
  position: absolute;
  top: 50%; left: 50%;
  width: 177.77vh;
  height: 56.25vw;
  min-width: 100vw;
  min-height: 100vh;
  transform: translate(-50%, -50%);
  border: 0;
  pointer-events: none;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(11,37,69,.82) 0%,
    rgba(11,37,69,.72) 50%,
    rgba(11,37,69,.90) 100%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 0 32px;
}
.hero .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 18px;
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 999px;
  font-size: 11.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  color: rgba(255,255,255,.95);
  margin-bottom: 32px;
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(8px);
}
.hero .eyebrow .dot {
  width: 6px; height: 6px;
  background: var(--blue-400);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { opacity:1; transform:scale(1); }
  50%      { opacity:.5; transform:scale(1.5); }
}
.hero h1 {
  font-size: clamp(38px, 5.5vw, 72px);
  font-weight: 400;
  color: var(--blue-300);
  letter-spacing: -0.025em;
  margin-bottom: 24px;
}
.hero h1 .lead   { color: #B8D4ED; font-weight: 400; }
.hero h1 .accent { color: #fff;    font-weight: 700; }
.hero > .hero-content > p {
  font-size: clamp(16px, 1.5vw, 19px);
  color: rgba(255,255,255,.85);
  max-width: 640px;
  margin: 0 auto 44px;
  font-weight: 300;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-scroll {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.hero-scroll .line {
  width: 1px; height: 40px;
  background: linear-gradient(180deg, transparent, rgba(255,255,255,.55), transparent);
  animation: scrollLine 2.4s ease-in-out infinite;
}
@keyframes scrollLine {
  0%   { transform: translateY(-10px); opacity: 0; }
  50%  { opacity: 1; }
  100% { transform: translateY(10px);  opacity: 0; }
}

/* ====================================================
   Newsletter Strip
   ==================================================== */
.newsletter-strip {
  background: var(--bg-soft);
  padding: 28px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.newsletter-strip .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.newsletter-strip h4 {
  font-size: 17px;
  color: var(--navy-900);
  font-weight: 600;
}
.newsletter-strip form.nl-strip-form { display: flex; align-items: center; gap: 0; background: #fff; border: 1px solid rgba(11,26,43,0.10); border-radius: 999px; padding: 6px; width: 100%; max-width: 460px; }
.newsletter-strip form.nl-strip-form input[type="email"] { flex: 1; min-width: 0; border: 0; outline: 0; background: transparent; padding: 14px 20px; font: inherit; font-size: 15px; color: #0b1a2b; }
.newsletter-strip form.nl-strip-form input[type="email"]::placeholder { color: #6a7990; }
.newsletter-strip form.nl-strip-form button { border: 0; background: #0b1a2b; color: #fff; border-radius: 999px; padding: 14px 26px; font: inherit; font-size: 12px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; white-space: nowrap; cursor: pointer; transition: background .2s; }
.newsletter-strip form.nl-strip-form button:hover { background: #0e4f86; }
.newsletter-strip .nl-strip-flash { flex-basis: 100%; }
.newsletter-strip .nl-strip-flash:empty { display: none; }

/* ====================================================
   Awesome (About)
   ==================================================== */
.awesome {
  padding: 140px 0;
  position: relative;
  overflow: hidden;
}
.awesome::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(46,107,168,.06) 0%, transparent 70%);
  pointer-events: none;
}
.awesome-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}
.awesome-text .kicker {
  display: block;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--blue-500);
  margin-bottom: 16px;
}
.awesome-text h2 {
  font-size: clamp(30px, 4vw, 50px);
  margin-bottom: 24px;
}
.awesome-text h2 .accent { color: var(--blue-500); }
.awesome-text p {
  font-size: 16px;
  color: var(--ink-500);
  margin-bottom: 18px;
  line-height: 1.75;
}
.awesome-text .secret {
  font-style: italic;
  font-size: 17px;
  color: var(--navy-700);
  font-weight: 500;
  padding-left: 16px;
  border-left: 3px solid var(--blue-500);
  margin: 28px 0 36px;
  line-height: 1.5;
}
.awesome-media {
  position: relative;
  aspect-ratio: 1/1;
  max-width: 460px;
  margin-left: auto;
}
.awesome-media .frame {
  width: 100%; height: 100%;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.awesome-media .frame img {
  width: 100%; height: 100%; object-fit: cover;
}
.awesome-media .badge {
  position: absolute;
  bottom: -10px; left: -20px;
  background: #fff;
  padding: 14px 22px;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 12px;
}
.awesome-media .badge .num {
  font-size: 28px;
  font-weight: 700;
  color: var(--blue-500);
  line-height: 1;
}
.awesome-media .badge .lbl {
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-500);
  font-weight: 500;
}
.awesome-media .frame {
  position: relative;
}
.play-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 72px; height: 72px;
  border-radius: 50%;
  border: 0;
  background: rgba(255, 255, 255, .92);
  color: var(--navy-900);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 24px rgba(0,0,0,.28);
  transition: transform .25s ease, background .25s ease, box-shadow .25s ease;
  z-index: 2;
}
.play-btn svg {
  margin-left: 4px;
  fill: currentColor;
}
.play-btn::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.55);
  animation: play-ring 2s ease-out infinite;
}
@keyframes play-ring {
  0%   { transform: scale(1);   opacity: .7; }
  70%  { transform: scale(1.35); opacity: 0; }
  100% { transform: scale(1.35); opacity: 0; }
}
.play-btn:hover {
  transform: translate(-50%, -50%) scale(1.1);
  background: #fff;
  box-shadow: 0 8px 32px rgba(0,0,0,.36);
}
.play-btn:active {
  transform: translate(-50%, -50%) scale(.96);
}

/* ====================================================
   Choose Us
   ==================================================== */
.choose-us {
  padding: 140px 0;
  background: var(--bg-soft);
  position: relative;
  overflow: hidden;
}
.choose-us::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 50%, rgba(46,107,168,.07), transparent 45%),
    radial-gradient(circle at 85% 20%, rgba(125,168,209,.07), transparent 45%);
  pointer-events: none;
}
.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 64px;
}
.section-head .kicker {
  display: block;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--blue-500);
  margin-bottom: 16px;
}
.section-head h2 {
  font-size: clamp(30px, 4vw, 50px);
  margin-bottom: 16px;
}
.section-head p {
  font-size: 17px;
  color: var(--ink-500);
  font-weight: 300;
}
.blue { color: var(--blue-500); }

.pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 80px;
  position: relative;
  z-index: 1;
}
.pillar {
  background: #fff;
  padding: 36px 24px;
  border-radius: var(--radius-lg);
  text-align: center;
  border: 1px solid var(--line);
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
  position: relative;
  overflow: hidden;
}
.pillar::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--blue-500);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s ease;
}
.pillar:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); border-color: var(--blue-300); }
.pillar:hover::after { transform: scaleX(1); }

.pillar-icon {
  width: 80px; height: 80px;
  margin: 0 auto 20px;
  background: var(--blue-100);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy-700);
  transition: background .3s, color .3s, transform .3s;
}
.pillar-icon img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  transition: filter .3s;
}
.pillar:hover .pillar-icon { background: var(--blue-500); color: #fff; transform: scale(1.06); }
.pillar:hover .pillar-icon img { filter: brightness(0) invert(1); }
.pillar h3 { font-size: 17px; margin-bottom: 8px; color: var(--navy-900); }
.pillar p  { font-size: 13.5px; color: var(--ink-500); line-height: 1.6; }

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding-top: 40px;
  border-top: 1px solid var(--line);
  position: relative;
  z-index: 1;
}
.stat { text-align: center; padding: 0 16px; position: relative; }
.stat:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0; top: 20%; bottom: 20%;
  width: 1px;
  background: var(--line);
}
.stat .num {
  font-size: clamp(38px, 4vw, 54px);
  font-weight: 700;
  color: var(--navy-900);
  line-height: 1;
  letter-spacing: -0.02em;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
}
.stat .suffix { font-size: .6em; color: var(--blue-500); font-weight: 600; }
.stat .lbl {
  margin-top: 10px;
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-500);
  font-weight: 500;
}

/* ====================================================
   Brands
   ==================================================== */
.brands {
  padding: 140px 0;
  background: var(--navy-900);
  position: relative;
  overflow: hidden;
  color: #fff;
}
.brands::before {
  content: '';
  position: absolute;
  top: -200px; left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(46,107,168,.12) 0%, transparent 70%);
  pointer-events: none;
}
.brands .section-head .kicker { color: var(--blue-300); }
.brands .section-head h2 { color: #fff; }
.brands .section-head p  { color: rgba(255,255,255,.7); }

.brands-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}

/* Brand card enter animation */
@keyframes cardEnter {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}
.brand-card {
  position: relative;
  aspect-ratio: 16/10;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  display: block;
  isolation: isolate;
  transition: transform .5s cubic-bezier(.2,.9,.3,1), box-shadow .5s ease;
  opacity: 0;
  transform: translateY(32px);
}
.brand-card.is-in {
  animation: cardEnter .7s cubic-bezier(.2,.9,.3,1) forwards;
}
.brand-card:nth-child(1).is-in { animation-delay: 0s; }
.brand-card:nth-child(2).is-in { animation-delay: .12s; }
.brand-card:nth-child(3).is-in { animation-delay: .24s; }
.brand-card:nth-child(4).is-in { animation-delay: .36s; }
.brand-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 48px rgba(11,37,69,.4);
}

.brand-card .cover {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform .8s cubic-bezier(.2,.9,.3,1), filter .5s ease;
}
.brand-card:hover .cover { transform: scale(1.08); filter: brightness(.45); }

.brand-card.tcfl .cover { background-image: url('../images/companies/tcfl-cover.jpg'); background-color: #F26B1A; }
.brand-card.hd   .cover { background-image: url('../images/companies/hd-cover.jpg');   background-color: #1FA0E0; }
.brand-card.a4   .cover { background-image: url('../images/companies/afl-cover.jpg');  background-color: #2BB673; }
.brand-card.sd2k .cover { background-image: url('../images/companies/sd2k-cover.jpg'); background-color: #B8924A; }

.brand-card .veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(11,37,69,.88) 0%, rgba(11,37,69,.2) 50%, transparent 100%);
  z-index: 1;
  transition: opacity .4s ease;
}
.brand-card:hover .veil { opacity: 1.4; }

.brand-card .logo {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: transform .5s ease, opacity .4s ease;
}
.brand-card .logo img {
  height: 72px;
  width: auto;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,.4)) brightness(0) invert(1);
}
.brand-card:hover .logo { transform: translateY(-80px) scale(.78); opacity: 0; }
.brand-card:hover .logo {
  transform: translateY(-80px) scale(.78);
  opacity: 0;
}

.brand-card .info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 2;
  padding: 28px;
  transform: translateY(30px);
  opacity: 0;
  transition: transform .5s cubic-bezier(.2,.9,.3,1) .05s, opacity .4s ease;
  color: #fff;
}
.brand-card:hover .info { transform: translateY(0); opacity: 1; }
.brand-card .info h3 { color: #fff; font-size: 21px; margin-bottom: 6px; }
.brand-card .info p  { font-size: 13.5px; color: rgba(255,255,255,.85); margin-bottom: 16px; font-weight: 300; line-height: 1.55; }
.brand-card .info .visit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 999px;
  background: rgba(255,255,255,.95);
  color: var(--navy-900);
}
.brand-card.tcfl .info .visit { background: #2d6cb5; color: #fff; }
.brand-card.hd   .info .visit { background: #1FA0E0; color: #fff; }
.brand-card.a4   .info .visit { background: #e62744; color: #fff; }
.brand-card.sd2k .info .visit { background: #fc5000; color: #fff; }

/* ====================================================
   Upcoming Brands
   ==================================================== */
.upcoming {
  padding: 120px 0;
  background: var(--navy-800);
  position: relative;
  overflow: hidden;
}
.upcoming::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(46,107,168,.18), transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(125,168,209,.12), transparent 40%);
  pointer-events: none;
}
.upcoming > .container { position: relative; z-index: 1; }
.upcoming-head { text-align: center; margin-bottom: 56px; }
.upcoming-head .kicker { color: var(--blue-300); display: block; font-size: 11.5px; font-weight: 600; letter-spacing: .24em; text-transform: uppercase; margin-bottom: 16px; }
.upcoming-head h2 { color: #fff; font-size: clamp(26px, 3.6vw, 42px); }
.upcoming-head p  { color: rgba(255,255,255,.72); font-size: 16px; max-width: 540px; margin: 14px auto 0; }

.upcoming-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.upcoming-tile {
  background: rgba(255,255,255,.04);
  border: 1px dashed rgba(255,255,255,.18);
  padding: 28px 20px;
  border-radius: var(--radius-md);
  text-align: center;
  transition: all .3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.upcoming-tile:hover {
  background: rgba(255,255,255,.08);
  border-color: var(--blue-400);
  transform: translateY(-4px);
}
.upcoming-tile .label {
  font-size: 10.5px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--blue-300);
  font-weight: 600;
}
.upcoming-tile .name {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.01em;
}
.upcoming-tile .name em {
  font-style: normal;
  font-weight: 300;
  color: rgba(255,255,255,.55);
  display: block;
  font-size: 11.5px;
  letter-spacing: .1em;
  margin-top: 4px;
}

/* ====================================================
   Trusted By
   ==================================================== */
.trusted { padding: 120px 0 80px; background: #fff; }
.trusted-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  margin-bottom: 80px;
}
.trusted-carousel {
  position: relative;
  width: 100%;
}
.trusted-carousel .tc-stage {
  position: relative;
  width: 100%;
  padding-bottom: 100%;
  height: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-soft);
  box-shadow: var(--shadow-md);
}
.trusted-carousel .tc-stage .tc-slide {
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
}
.trusted-carousel { position: relative; max-width: 560px; width: 100%; }
.tc-stage {
  position: relative;
  aspect-ratio: 1/1;
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-soft);
  box-shadow: var(--shadow-md);
}
.tc-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity .7s ease, transform 1.2s ease;
}
.tc-slide.is-active { opacity: 1; transform: scale(1); }

.tc-stage .tc-slide:nth-child(1) { background-image: url('../images/nasa-cone.jpg'); }
.tc-stage .tc-slide:nth-child(2) { background-image: url('../images/ritz-delineators.jpg'); }
.tc-stage .tc-slide:nth-child(3) { background-image: url('../images/tesla-cones.jpg'); }
.tc-stage .tc-slide:nth-child(4) { background-image: url('../images/tiffany-cone.jpg'); }

.tc-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 16px 20px;
  background: linear-gradient(0deg, rgba(11,37,69,.82) 0%, transparent 100%);
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  z-index: 1;
  opacity: 0;
  transition: opacity .4s ease;
}
.tc-slide.is-active .tc-caption { opacity: 1; }
.tc-arrow {
  position: absolute;
  top: 50%;
  width: 44px; height: 44px;
  background: rgba(255,255,255,.96);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  color: var(--navy-900);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  transition: background .25s, color .25s;
  z-index: 2;
}
.tc-prev { left: 16px;  transform: translateY(-50%); }
.tc-next { right: 16px; transform: translateY(-50%); }
.tc-arrow:hover { background: var(--navy-900); color: #fff; }
.tc-dots {
  position: absolute;
  bottom: 16px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 2;
}
.tc-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  border: 0;
  background: rgba(255,255,255,.5);
  cursor: pointer;
  transition: all .25s ease;
  padding: 0;
}
.tc-dot.is-active { background: #fff; width: 24px; border-radius: 999px; }

.trusted-text .kicker {
  display: block;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--blue-500);
  margin-bottom: 16px;
}
.trusted-text h2 { font-size: clamp(26px, 3.4vw, 42px); margin-bottom: 28px; line-height: 1.2; }
.trusted-bullets {
  list-style: none;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.trusted-bullets li {
  font-size: 15px;
  color: var(--ink-500);
  line-height: 1.65;
  padding-left: 22px;
  position: relative;
}
.trusted-bullets li::before {
  content: '';
  position: absolute;
  left: 0; top: 8px;
  width: 8px; height: 8px;
  background: var(--blue-500);
  border-radius: 50%;
}
.trusted-bullets li strong { color: var(--navy-900); font-weight: 600; }
.trusted-foot {
  font-size: 15px;
  color: var(--ink-500);
  line-height: 1.65;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.trusted-foot strong { color: var(--navy-900); font-weight: 600; }

/* Marquee */
.marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marqueeScroll 50s linear infinite;
  gap: 64px;
  padding: 24px 32px;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-logo {
  flex: 0 0 auto;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .25s, transform .25s;
}
.marquee-logo img {
  max-height: 100px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  display: block;
}
.marquee-logo:hover { transform: scale(1.06); }
@keyframes marqueeScroll { to { transform: translateX(-50%); } }

/* ====================================================
   Join CTA
   ==================================================== */
.join-cta-banner {
  background: var(--navy-900);
  color: #fff;
  padding: 40px 0;
  position: relative;
  overflow: hidden;
}
.join-cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(46,107,168,.15), transparent 60%);
  pointer-events: none;
}
.join-cta-banner .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  position: relative;
}
.join-cta-banner h3 {
  font-size: clamp(20px, 2.4vw, 28px);
  color: #fff;
  font-weight: 600;
}

.join-section {
  position: relative;
  background: var(--navy-800);
  padding: 100px 0;
  overflow: hidden;
}
.join-section .join-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(46,107,168,.25), transparent 55%),
    radial-gradient(ellipse at 70% 30%, rgba(23,59,104,.4), transparent 55%);
}
.join-section .container { position: relative; z-index: 1; }

.join-card {
  max-width: 980px;
  margin: 0 auto;
  background: rgba(255,255,255,.97);
  padding: 40px 48px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
  border-left: 4px solid var(--blue-500);
}
.join-card .kicker {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--blue-500);
  margin-bottom: 10px;
}
.join-card h2 { font-size: clamp(22px, 2.6vw, 30px); margin-bottom: 8px; line-height: 1.2; }
.join-card p  { font-size: 15px; color: var(--ink-500); line-height: 1.6; }
.join-card .accent { color: var(--blue-500); }
.join-card-right { display: flex; flex-direction: column; align-items: flex-end; gap: 10px; }
.join-btn { padding: 16px 32px; font-size: 14px; }
.join-meta { font-size: 12px; color: var(--ink-400); letter-spacing: .04em; white-space: nowrap; }

/* ====================================================
   Footer
   ==================================================== */
.site-footer {
  background: #07182F;
  color: rgba(255,255,255,.75);
  padding: 80px 0 0;
  font-size: 14px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand img { height: 36px; margin-bottom: 20px; }
.footer-brand p {
  font-size: 13.5px;
  color: rgba(255,255,255,.6);
  line-height: 1.7;
  max-width: 300px;
  margin-bottom: 20px;
}
.footer-brand .contact { display: flex; flex-direction: column; gap: 6px; font-size: 13px; color: rgba(255,255,255,.7); }
.footer-brand .contact strong { color: #fff; font-weight: 600; }

.footer-col h5 {
  color: #fff;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  color: rgba(255,255,255,.65);
  font-size: 13.5px;
  transition: color .2s;
  display: inline-block;
}
.footer-col ul li a:hover { color: #fff; transform: translateX(3px); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 0;
  font-size: 12.5px;
  color: rgba(255,255,255,.45);
  flex-wrap: wrap;
}
.socials { display: flex; gap: 16px; }
.socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.15);
  color: rgba(255,255,255,.6);
  transition: all .25s ease;
}
.socials a:hover { border-color: var(--blue-400); color: var(--blue-300); background: rgba(46,107,168,.15); }

/* ====================================================
   Responsive
   ==================================================== */
@media (max-width: 1024px) {
  .trusted-grid { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 900px) {
  .pillars { grid-template-columns: repeat(2, 1fr); }
  .stats   { grid-template-columns: repeat(2, 1fr); }
  .awesome-grid { grid-template-columns: 1fr; gap: 56px; }
  .awesome-media { max-width: 360px; margin: 0 auto; }
  .brands-grid { grid-template-columns: 1fr; }
  .brand-card { aspect-ratio: 16/7; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 768px) {
  :root { --header-h: 68px; }
  .container { padding: 0 20px; }
  .nav { display: none; flex-direction: column; position: fixed; top: var(--header-h); left: 0; right: 0; background: var(--navy-900); padding: 24px 24px 32px; gap: 4px; z-index: 199; }
  .nav.is-open { display: flex; }
  .nav a { padding: 12px 0; font-size: 14px; border-bottom: 1px solid rgba(255,255,255,.08); }
  .nav a.nav-cta { margin-top: 12px; text-align: center; border-bottom: 0; }
  .menu-toggle { display: flex; }
  .upcoming-grid { grid-template-columns: repeat(2, 1fr); }
  .join-card { grid-template-columns: 1fr; text-align: center; padding: 28px 24px; gap: 24px; }
  .join-card-right { align-items: center; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .pillars { grid-template-columns: 1fr; }
  .stats   { grid-template-columns: 1fr 1fr; }
  .upcoming-grid { grid-template-columns: 1fr 1fr; }
  .hero h1 { white-space: normal; font-size: 34px; }
}