/* =========================================================
   FX AMÉRICA — Corporate / Formal
   Red #F0062A + Black · Clean sans-serif · White backgrounds
   ========================================================= */

:root {
  --red:        #F0062A;
  --red-dark:   #C00520;
  --red-soft:   #FEF0F2;

  --black:      #0A0A0A;
  --ink:        #1A1A1A;
  --ink-2:      #2B2B2B;

  --gray-50:    #F7F7F8;
  --gray-100:   #EEEEF0;
  --gray-200:   #E2E2E5;
  --gray-300:   #C9C9CE;
  --gray-400:   #9B9BA1;
  --gray-500:   #6B6B72;
  --gray-600:   #4A4A50;

  --bg:         #FFFFFF;
  --line:       #E8E8EB;

  --ff:         "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --ff-display: "Archivo", "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;

  --radius:     14px;
  --radius-sm:  10px;
  --radius-lg:  20px;

  --shadow-sm:  0 1px 2px rgba(10,10,10,0.04), 0 2px 8px rgba(10,10,10,0.04);
  --shadow-md:  0 2px 6px rgba(10,10,10,0.06), 0 12px 32px rgba(10,10,10,0.08);

  --max:        1280px;
  --pad:        clamp(20px, 4vw, 56px);
}

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

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 var(--pad); }

/* ---------- Typography helpers ---------- */
h1, h2, h3, h4 { font-family: var(--ff-display); font-weight: 700; letter-spacing: -0.02em; line-height: 1.08; color: var(--black); }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--ff);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
}
.eyebrow::before {
  content: ""; width: 24px; height: 2px; background: var(--red);
}
.eyebrow.light { color: rgba(255,255,255,0.85); }
.eyebrow.light::before { background: var(--red); }

/* =========================================================
   NAV
   ========================================================= */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: var(--black);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: box-shadow .3s;
}
.nav.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.4); }
.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 16px var(--pad);
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px;
}
.nav-logo { display: flex; align-items: center; }
.nav-logo-img {
  height: 38px;
  width: 200px;
  object-fit: contain;
  object-position: left center;
  display: block;
}

.nav-links {
  display: flex; gap: 4px;
}
.nav-links a {
  padding: 10px 14px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.80);
  border-radius: 8px;
  transition: color .2s, background .2s;
  position: relative;
}
.nav-links a:hover { color: #fff; background: rgba(255,255,255,0.08); }

.nav-cta {
  padding: 12px 22px;
  font-size: 13px;
  font-weight: 600;
  background: var(--black);
  color: #fff;
  border-radius: 999px;
  display: inline-flex; align-items: center; gap: 8px;
  transition: background .2s, transform .2s;
}
.nav-cta:hover { background: var(--red); transform: translateY(-1px); }
.nav-cta .arrow { width: 14px; height: 14px; display: inline-block; position: relative; }
.nav-cta .arrow::after {
  content: ""; position: absolute; inset: 0;
  background: currentColor;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h14M13 5l7 7-7 7'/%3E%3C/svg%3E") center/contain no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h14M13 5l7 7-7 7'/%3E%3C/svg%3E") center/contain no-repeat;
}
/* Hamburger button */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  transition: background .2s;
}
.nav-hamburger:hover { background: rgba(255,255,255,0.08); }
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform .3s ease, opacity .3s ease;
  transform-origin: center;
}
.nav.menu-open .nav-hamburger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.menu-open .nav-hamburger span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav.menu-open .nav-hamburger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu panel */
.nav-mobile-menu {
  display: none;
  background: var(--black);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 8px var(--pad) 24px;
}
.nav-mobile-menu nav {
  display: flex;
  flex-direction: column;
}
.nav-mobile-menu a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  padding: 14px 0;
  font-size: 16px;
  font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color .2s;
}
.nav-mobile-menu a:last-child { border-bottom: none; }
.nav-mobile-menu a:hover { color: #fff; }
.nav-mobile-cta {
  color: var(--red) !important;
  font-weight: 700;
  margin-top: 8px;
  border-bottom: none !important;
}

@media (max-width: 820px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-hamburger {
    display: flex;
    position: absolute;
    right: var(--pad);
    top: 50%;
    transform: translateY(-50%);
  }
  .nav-inner {
    position: relative;
    justify-content: center;
  }
  .nav-mobile-menu {
    display: none;
  }
  .nav.menu-open .nav-mobile-menu {
    display: block;
  }
  .nav-logo-img {
    height: 30px;
    width: 160px;
  }
}

/* =========================================================
   HERO — video background
   ========================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--black);
}

/* iframe video fill */
.hero-video-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}
.hero-video-iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  border: 0;
  pointer-events: none;
}

/* Dark overlay for text legibility */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to right, rgba(0,0,0,0.80) 0%, rgba(0,0,0,0.55) 60%, rgba(0,0,0,0.30) 100%),
    linear-gradient(to top,   rgba(0,0,0,0.70) 0%, transparent 50%);
}

/* Content on top */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max);
  width: 100%;
  margin: 0 auto;
  padding: clamp(80px, 12vw, 140px) var(--pad);
}

.hero h1 {
  color: #fff;
  font-size: clamp(40px, 6.2vw, 84px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  font-weight: 800;
  margin-top: 20px;
  max-width: 16ch;
}
.hero h1 .red { color: var(--red); }
.hero-lede {
  margin: 22px 0 32px;
  font-size: clamp(15px, 1.2vw, 17px);
  color: rgba(255,255,255,0.85);
  max-width: 52ch;
  line-height: 1.6;
}
.hero-actions {
  display: inline-flex; gap: 12px; flex-wrap: wrap;
}

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 24px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  transition: background .2s, color .2s, border-color .2s, transform .2s, box-shadow .2s;
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn .ico { width: 16px; height: 16px; }
.btn-primary { background: var(--red); color: #fff; }
.btn-primary:hover { background: var(--red-dark); transform: translateY(-1px); box-shadow: 0 8px 22px rgba(240,6,42,0.35); }
.btn-ghost-dark { border-color: rgba(255,255,255,0.22); color: #fff; }
.btn-ghost-dark:hover { border-color: #fff; background: rgba(255,255,255,0.08); }
.btn-outline { border-color: var(--line); color: var(--ink); background: #fff; }
.btn-outline:hover { border-color: var(--red); color: var(--red); }
.btn-dark { background: var(--black); color: #fff; }
.btn-dark:hover { background: var(--red); }

/* Hero stats strip */
.hero-strip {
  background: var(--black);
  border-top: 1px solid rgba(255,255,255,0.08);
  position: relative;
  z-index: 3;
}
.hero-strip-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.hero-strip .cell {
  padding: 32px 24px;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.hero-strip .cell:last-child { border-right: 0; }
.hero-strip .k {
  font-family: var(--ff-display);
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
  line-height: 1;
}
.hero-strip .k .red { color: var(--red); }
.hero-strip .v {
  margin-top: 8px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
}
@media (max-width: 820px) {
  .hero-strip-inner { grid-template-columns: repeat(2, 1fr); }
  .hero-strip .cell { border-bottom: 1px solid rgba(255,255,255,0.08); }
  .hero-strip .cell:nth-child(2n) { border-right: 0; }
  .hero-strip .cell:nth-last-child(-n+2) { border-bottom: 0; }
}

/* =========================================================
   SECTION SCAFFOLDING
   ========================================================= */
.section { padding: clamp(72px, 12vw, 120px) var(--pad); }
.section.alt { background: var(--gray-50); }
.section.dark { background: var(--black); color: #fff; }
.section.dark h2, .section.dark h3 { color: #fff; }
.section.dark .muted { color: rgba(255,255,255,0.7); }

.section-head {
  max-width: var(--max);
  margin: 0 auto 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: end;
}
.section-head h2 {
  font-size: clamp(32px, 4.2vw, 56px);
  max-width: 14ch;
}
.section-head h2 .red { color: var(--red); }
.section-head p {
  color: var(--gray-600);
  font-size: 16px;
  max-width: 52ch;
  line-height: 1.65;
}
.section.dark .section-head p { color: rgba(255,255,255,0.72); }
@media (max-width: 820px) {
  .section-head { grid-template-columns: 1fr; gap: 20px; }
}

/* =========================================================
   SERVICES / PILLARS CARDS (3-up)
   ========================================================= */
.cards {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px 28px;
  display: flex; flex-direction: column; gap: 18px;
  transition: border-color .3s, transform .3s, box-shadow .3s;
  min-height: 320px;
}
.card:hover { border-color: var(--red); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.card .icon {
  width: 54px; height: 54px;
  border-radius: 999px;
  background: var(--gray-100);
  color: var(--black);
  display: grid; place-items: center;
  transition: background .3s, color .3s;
}
.card:hover .icon { background: var(--red); color: #fff; }
.card .icon svg { width: 26px; height: 26px; }
.card h3 {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--black);
}
.card p {
  color: var(--gray-600);
  font-size: 14.5px;
  line-height: 1.6;
  flex: 1;
}
.card .card-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  padding: 10px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  align-self: flex-start;
  transition: border-color .2s, color .2s, background .2s;
}
.card .card-link:hover { border-color: var(--red); color: var(--red); }
.card .card-num {
  position: absolute;
  top: 18px; right: 22px;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--gray-400);
}
.card { position: relative; }
@media (max-width: 900px) { .cards { grid-template-columns: 1fr; } }

/* =========================================================
   ABOUT (split)
   ========================================================= */
.about {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.about-visual {
  aspect-ratio: 4/5;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-img {
  width: 85%;
  height: 85%;
  object-fit: contain;
  object-position: center;
}
.about-visual .badge {
  position: absolute;
  left: 20px; bottom: 20px;
  background: var(--red);
  color: #fff;
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
}
.about-body h2 {
  font-size: clamp(32px, 3.8vw, 48px);
  margin-bottom: 18px;
}
.about-body h2 .red { color: var(--red); }
.about-body p {
  color: var(--gray-600);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 14px;
  max-width: 48ch;
}
.about-body .points {
  margin-top: 24px;
  display: grid;
  gap: 14px;
}
.about-body .point {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 14px 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}
.about-body .point .bullet {
  width: 24px; height: 24px;
  flex-shrink: 0;
  border-radius: 999px;
  background: var(--red);
  color: #fff;
  display: grid; place-items: center;
  font-size: 13px; font-weight: 700;
}
.about-body .point strong { display: block; font-size: 14.5px; margin-bottom: 2px; color: var(--black); }
.about-body .point span { font-size: 13.5px; color: var(--gray-600); }
@media (max-width: 900px) { .about { grid-template-columns: 1fr; } }

/* =========================================================
   DIVISIONS — 2 interactive cards with reveal
   ========================================================= */
.divisions {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  align-items: start;
}
.division {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 460px;
  background: var(--black);
  color: #fff;
  cursor: pointer;
  transition: transform .4s cubic-bezier(.2,.7,.2,1), box-shadow .4s ease;
  border: 1px solid var(--line);
  isolation: isolate;
}
.division:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.division.open { cursor: default; }

.division-face,
.division-back {
  position: absolute; inset: 0;
  padding: 36px clamp(28px, 3.2vw, 44px);
  display: flex; flex-direction: column;
  transition: opacity .45s ease, transform .5s cubic-bezier(.2,.7,.2,1), visibility .45s;
}
.division-face {
  justify-content: space-between;
  z-index: 2;
}
.division.open .division-face {
  opacity: 0;
  transform: translateY(-12px);
  visibility: hidden;
  pointer-events: none;
}

.division-bg {
  position: absolute; inset: 0;
  z-index: 0;
  background:
    radial-gradient(closest-side at 85% 20%, rgba(240,6,42,0.35), transparent 60%),
    repeating-linear-gradient(135deg, #161618 0 2px, #0e0e10 2px 4px);
}
.division[data-division="consumer"] .division-bg {
  background:
    radial-gradient(closest-side at 15% 85%, rgba(240,6,42,0.4), transparent 65%),
    repeating-linear-gradient(45deg, #161618 0 2px, #0e0e10 2px 4px);
}

.division-head,
.division-footer,
.division-title {
  position: relative; z-index: 2;
}
.division-head {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}
.division-count {
  padding: 6px 12px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 999px;
  font-size: 11px;
  white-space: nowrap;
}
.division-title h3 {
  color: #fff;
  font-size: clamp(38px, 4.4vw, 64px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 16px;
}
.division-title .red { color: var(--red); }
.division-tag {
  color: rgba(255,255,255,0.75);
  font-size: 15px;
  line-height: 1.6;
  max-width: 44ch;
}
.division-footer {
  display: flex; justify-content: flex-end;
}
.division-cta {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  transition: background .3s, border-color .3s, gap .3s;
}
.division:hover .division-cta { background: var(--red); border-color: var(--red); gap: 16px; }

/* Back face */
.division-back {
  background: #0e0e10;
  opacity: 0;
  transform: translateY(12px);
  visibility: hidden;
  z-index: 3;
  gap: 24px;
  justify-content: flex-start;
}
.division.open .division-back {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}
.division-back-head {
  display: flex; justify-content: space-between; align-items: center;
}
.division-close {
  width: 36px; height: 36px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  color: #fff;
  font-size: 14px;
  display: grid; place-items: center;
  transition: background .2s, transform .2s;
}
.division-close:hover { background: var(--red); border-color: var(--red); transform: rotate(90deg); }

.sub-brands {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  flex: 1;
}
.sub-brand {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 24px;
  color: #fff;
  display: flex; flex-direction: column; gap: 14px;
  transition: border-color .25s, background .25s, transform .25s;
  justify-content: space-between;
}
.sub-brand:hover {
  border-color: var(--red);
  background: rgba(240,6,42,0.08);
  transform: translateY(-2px);
}
.sub-brand.sub-brand-wide { grid-column: 1 / -1; }
.sub-brand-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
}
.brand-logo-img {
  height: 40px;
  width: 160px;
  display: block;
  object-fit: contain;
}
.brand-logo-img--tall {
  height: 60px;
  width: 100px;
}
.sub-brand p {
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  line-height: 1.55;
}
.sub-brand-cta {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  padding: 8px 14px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 999px;
  align-self: flex-start;
  transition: border-color .2s, background .2s;
}
.sub-brand:hover .sub-brand-cta { border-color: var(--red); background: var(--red); }

@media (max-width: 820px) {
  .divisions { grid-template-columns: 1fr; }
  .sub-brands { grid-template-columns: 1fr; }
}

/* Legacy brands (unused, kept as fallback) */
.brands {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.brand {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px 32px;
  min-height: 260px;
  display: flex; flex-direction: column; gap: 20px;
  position: relative;
  overflow: hidden;
  transition: border-color .3s, transform .3s, box-shadow .3s;
}
.brand:hover { border-color: var(--red); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.brand::before {
  content: "";
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 4px;
  background: var(--red);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform .4s ease;
}
.brand:hover::before { transform: scaleY(1); }

.brand-top {
  display: flex; justify-content: space-between; align-items: flex-start;
}
.brand-badge {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 10px;
  border-radius: 999px;
}
.brand-badge.live { background: rgba(240,6,42,0.1); color: var(--red); }
.brand-badge.soon { background: var(--gray-100); color: var(--gray-500); }
.brand-num {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--gray-400);
}
.brand-logo {
  font-family: var(--ff-display);
  font-size: clamp(32px, 3.6vw, 48px);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--black);
  line-height: 1;
}
.brand-logo .sep { color: var(--red); }
.brand-tag {
  color: var(--gray-600);
  font-size: 14.5px;
  line-height: 1.55;
  margin-top: auto;
  max-width: 36ch;
}
.brand-cta {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--black);
  align-self: flex-start;
  padding: 10px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  transition: border-color .2s, color .2s, background .2s;
}
.brand:hover .brand-cta { border-color: var(--red); color: var(--red); }
.brand[data-status="soon"]:hover .brand-cta { border-color: var(--gray-300); color: var(--gray-500); }
.brand[data-status="soon"] .brand-cta { color: var(--gray-500); }

@media (max-width: 820px) { .brands { grid-template-columns: 1fr; } }

/* =========================================================
   CTA BAND (dark with red accent)
   ========================================================= */
.cta-band {
  max-width: var(--max);
  margin: 0 auto;
  background: var(--black);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: clamp(40px, 5vw, 64px);
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute; right: -80px; top: -80px;
  width: 320px; height: 320px;
  border-radius: 999px;
  background: radial-gradient(closest-side, rgba(240,6,42,0.45), transparent 70%);
  filter: blur(10px);
}
.cta-band h2 {
  color: #fff;
  font-size: clamp(28px, 3.6vw, 44px);
  max-width: 18ch;
}
.cta-band h2 .red { color: var(--red); }
.cta-band p { color: rgba(255,255,255,0.72); margin-top: 14px; max-width: 48ch; }
.cta-band-actions { display: flex; flex-direction: column; gap: 12px; position: relative; z-index: 2; }
.cta-band-actions .btn { justify-content: center; }
@media (max-width: 820px) {
  .cta-band { grid-template-columns: 1fr; }
}

/* =========================================================
   CONTACT GRID
   ========================================================= */
.contact {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.contact-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  display: flex; flex-direction: column; gap: 14px;
}
.contact-card .icon {
  width: 46px; height: 46px;
  border-radius: 10px;
  background: var(--red-soft);
  color: var(--red);
  display: grid; place-items: center;
}
.contact-card .icon svg { width: 22px; height: 22px; }
.contact-card h4 {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray-500);
  font-family: var(--ff);
  font-weight: 600;
}
.contact-card .val {
  font-family: var(--ff-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--black);
  letter-spacing: -0.01em;
  line-height: 1.3;
}
.contact-card .sub { font-size: 13.5px; color: var(--gray-600); }
@media (max-width: 820px) { .contact { grid-template-columns: 1fr; } }

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  background: var(--black);
  color: rgba(255,255,255,0.75);
  padding: 72px var(--pad) 28px;
}
.footer-inner {
  max-width: var(--max); margin: 0 auto;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-logo-img {
  height: 44px;
  width: 240px;
  object-fit: contain;
  object-position: left center;
  display: block;
  margin-bottom: 18px;
}
.footer-brand p {
  font-size: 14px;
  max-width: 36ch;
  line-height: 1.6;
}
.footer-col h5 {
  color: #fff;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 18px;
  font-weight: 600;
  font-family: var(--ff);
}
.footer-col ul { list-style: none; display: grid; gap: 10px; }
.footer-col a, .footer-col li { font-size: 14px; color: rgba(255,255,255,0.7); transition: color .2s; }
.footer-col a:hover { color: var(--red); }

.footer-bottom {
  margin-top: 28px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom a:hover { color: #fff; }
@media (max-width: 820px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

/* =========================================================
   MARQUEE (sector tags)
   ========================================================= */
.marquee {
  background: var(--black);
  color: #fff;
  padding: 18px 0;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.marquee-track {
  display: flex;
  gap: 48px;
  width: max-content;
  animation: marquee 40s linear infinite;
  white-space: nowrap;
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: clamp(20px, 2.2vw, 28px);
  letter-spacing: -0.01em;
}
.marquee-track span {
  display: inline-flex; align-items: center; gap: 48px;
}
.marquee-track span::after {
  content: "";
  width: 10px; height: 10px; border-radius: 999px;
  background: var(--red);
}
@keyframes marquee { to { transform: translateX(-50%); } }

/* =========================================================
   REVEAL ANIMATIONS
   ========================================================= */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s ease, transform .8s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-stagger > * {
  opacity: 0; transform: translateY(20px);
  transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1);
}
.reveal-stagger.in > * { opacity: 1; transform: translateY(0); }
.reveal-stagger.in > *:nth-child(1) { transition-delay: .05s; }
.reveal-stagger.in > *:nth-child(2) { transition-delay: .15s; }
.reveal-stagger.in > *:nth-child(3) { transition-delay: .25s; }
.reveal-stagger.in > *:nth-child(4) { transition-delay: .35s; }

/* =========================================================
   CONSUMER PRODUCTS — nested hierarchy on back face
   ========================================================= */

/* When the CP division is open, let the card grow to fit its content.
   Face stays absolute (hidden); back becomes a normal block. */
.division:has(.division-back-scroll).open {
  /* allow natural height */
}
.division:has(.division-back-scroll).open .division-face {
  /* already hidden by base .division.open .division-face rules */
}
.division .division-back-scroll {
  /* override the absolute positioning from base .division-back */
  position: absolute;
}
.division.open .division-back-scroll {
  position: relative;
  inset: auto;
  width: 100%;
  min-height: 460px;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.cp-block + .cp-block { margin-top: 28px; }
.cp-block-label {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  padding-bottom: 10px;
  margin-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  width: 100%;
  font-weight: 600;
}

.cp-platform {
  background: linear-gradient(135deg, rgba(240,6,42,0.12), rgba(255,255,255,0.03));
  border-color: rgba(240,6,42,0.35);
}
.cp-platform .sub-brand-logo {
  justify-content: flex-start;
}
.cp-platform .cp-unit-logo {
  margin: 0;
}
.cp-inst .cp-unit-head {
  justify-content: center;
}
.cp-inst .cp-unit-logo {
  margin: 0 auto;
  height: 52px;
  width: 220px;
}

.cp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  grid-auto-rows: minmax(120px, auto);
}
.cp-grid-inst { grid-template-columns: repeat(3, 1fr); }

.cp-unit {
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: calc(var(--radius) - 4px);
  padding: 18px 20px;
  color: #fff;
  display: flex; flex-direction: column; gap: 10px;
  transition: border-color .25s, background .25s, transform .25s;
  position: relative;
  overflow: hidden;
  min-width: 0;
}
.cp-unit::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 2px;
  background: var(--red);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform .3s ease;
}
.cp-unit:hover {
  border-color: rgba(240,6,42,0.4);
  background: rgba(240,6,42,0.05);
  transform: translateY(-1px);
}
.cp-unit:hover::before { transform: scaleY(1); }

.cp-unit-tall { grid-row: span 2; }
.cp-unit-mid { grid-row: span 1; }

.cp-unit-head {
  display: flex; align-items: center; justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}
.cp-unit-name {
  font-family: var(--ff-display);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1;
  white-space: nowrap;
}
.cp-unit-name em {
  font-style: normal;
  color: var(--red);
  font-weight: 800;
}
.cp-unit-badge {
  font-size: 8px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  padding: 4px 8px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px;
  white-space: nowrap;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.2;
}
.cp-unit-tag {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  line-height: 1.4;
  margin: 0;
}

/* Sub-sub brand (Onesport 7E, Ironhoof) */
.cp-sub {
  margin-top: auto;
  background: rgba(0,0,0,0.35);
  border: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
  border-radius: 8px;
  padding: 12px;
  display: flex; flex-direction: column; gap: 8px;
}
.cp-sub-compact { padding: 10px 12px; }
.cp-sub-head {
  display: flex; flex-direction: column; align-items: flex-start;
  gap: 4px;
  width: 100%;
  min-width: 0;
  overflow: hidden;
}
.cp-sub-head-inline {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.cp-sub-name {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #fff;
}
.cp-sub-link {
  font-size: 8.5px;
  color: var(--red);
  font-weight: 600;
  letter-spacing: 0.03em;
  text-decoration: none;
  white-space: nowrap;
  display: block;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
}
.cp-sub-link:hover { text-decoration: underline; }
.cp-sub-status {
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  padding: 3px 8px;
  border: 1px dashed rgba(255,255,255,0.2);
  border-radius: 999px;
  white-space: nowrap;
  flex-shrink: 0;
}
.cp-sub-list {
  list-style: none;
  margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: 4px;
}
.cp-sub-list li {
  font-size: 12px;
  color: rgba(255,255,255,0.72);
  padding-left: 12px;
  position: relative;
}
.cp-sub-list li::before {
  content: '';
  position: absolute; left: 0; top: 8px;
  width: 6px; height: 1px;
  background: var(--red);
}
.cp-sub-desc {
  font-size: 11px;
  color: rgba(255,255,255,0.6);
  margin: 0;
  line-height: 1.45;
}

.cp-inst { grid-column: 1 / -1; justify-content: center; align-items: center; }

.cp-unit-logo {
  height: 28px;
  width: 120px;
  display: block;
  object-fit: contain;
  margin: 0 auto;
}
.cp-sub-logo {
  height: 20px;
  width: 100px;
  display: block;
  object-fit: contain;
  margin: 0 auto;
}

@media (max-width: 900px) {
  .cp-grid { grid-template-columns: repeat(2, 1fr); }
  .cp-unit-tall, .cp-unit-mid { grid-row: auto; }
  .cp-inst { grid-column: 1 / -1; }
}

/* =========================================================
   PRODUTOS — brand tabs + product grid
   ========================================================= */
.produtos-tabs {
  max-width: var(--max);
  margin: 0 auto 48px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.produtos-tab {
  padding: 14px 28px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: #fff;
  cursor: pointer;
  transition: border-color .25s, box-shadow .25s, background .25s;
  display: flex; align-items: center; justify-content: center;
  min-width: 180px;
  min-height: 64px;
}
.produtos-tab:hover { border-color: var(--red); }
.produtos-tab.active {
  border-color: var(--red);
  background: var(--red-soft);
  box-shadow: 0 0 0 2px var(--red);
}
.tab-logo {
  height: 28px;
  width: auto;
  display: block;
  filter: brightness(0);
}
.tab-logo--tall { height: 44px; }
.produtos-tab.active .tab-logo { filter: none; }
.produtos-tab:hover .tab-logo { filter: none; }

.produtos-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.produtos-grid.hidden { display: none; }

.produto-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: border-color .3s, transform .3s, box-shadow .3s;
}
.produto-card:hover {
  border-color: var(--red);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.produto-img {
  background:
    linear-gradient(135deg, rgba(240,6,42,0.08) 0%, rgba(10,10,10,0.04) 100%),
    repeating-linear-gradient(45deg, var(--gray-100) 0 12px, var(--gray-50) 12px 24px);
  height: 160px;
  display: flex; align-items: flex-end; padding: 14px;
  position: relative;
}
.produto-cat {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--red);
  color: #fff;
  padding: 5px 10px;
  border-radius: 999px;
}
.produto-body {
  padding: 20px 20px 12px;
  display: flex; flex-direction: column; gap: 8px;
  flex: 1;
}
.produto-body h4 {
  font-size: 17px;
  font-weight: 700;
  color: var(--black);
  letter-spacing: -0.01em;
}
.produto-body p {
  font-size: 13.5px;
  color: var(--gray-600);
  line-height: 1.55;
  flex: 1;
}
.produto-tag {
  display: inline-flex;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-top: 4px;
}
.produto-cta {
  display: block;
  margin: 0 20px 20px;
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  text-align: center;
  transition: border-color .2s, color .2s, background .2s;
}
.produto-card:hover .produto-cta { border-color: var(--red); color: var(--red); }

@media (max-width: 900px) { .produtos-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .produtos-grid { grid-template-columns: 1fr; } }

/* =========================================================
   SAMSUNG GALAXY S20 FE — 412px viewport
   ========================================================= */
@media (max-width: 430px) {
  .nav-logo-img { height: 26px; width: 140px; }
  .hero-content h1 { font-size: clamp(32px, 9vw, 42px); }
  .hero-strip-inner { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .hero-strip .k { font-size: 28px; }
  .division { min-height: 380px; }
  .division-title h3 { font-size: clamp(32px, 9vw, 44px); }
  .division-head { font-size: 10px; }
  .division-count { font-size: 10px; padding: 5px 10px; }
  .cp-grid { grid-template-columns: 1fr 1fr; }
  .cp-unit-tall, .cp-unit-mid { grid-row: auto; }
  .section-head h2 { font-size: clamp(26px, 8vw, 36px); }
  .cards { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }

  /* Consumer Products — sub-boxes */
  .cp-unit-badge { font-size: 7px; letter-spacing: 0.04em; padding: 3px 6px; }
  .cp-unit-tag { font-size: 10px; }
  .cp-sub { padding: 8px; gap: 6px; }
  .cp-sub-list li { font-size: 10px; }
  .cp-sub-desc { font-size: 9px; }
  .cp-sub-logo { height: 16px; width: 80px; }
  .cp-sub-link { font-size: 7.5px; }
}
