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

/* ── TOKENS ── */
:root {
  --void: #02030a;
  --deep: #050816;
  --surface: #080f22;
  --card: #0a1228;
  --card2: #0c1530;

  /* Electric cyan — the hero accent */
  --cyan: #00e5ff;
  --cyan-dim: rgba(0, 229, 255, 0.07);
  --cyan-line: rgba(0, 229, 255, 0.14);
  --cyan-glow: rgba(0, 229, 255, 0.18);

  /* Electric blue — punchy, not navy */
  --electric: #0af; /* #00aaff — vivid, neon-ish */
  --electric2: #29bfff; /* slightly lighter for hover */

  --midnight: #0a1840;
  --white: #e4ecff;
  --muted: #334060;
  --muted2: #1e2e50;
  --border: rgba(0, 229, 255, 0.07);
  --border2: rgba(0, 229, 255, 0.13);
}

/* ── BASE ── */
html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: "Outfit", sans-serif;
  background: var(--void);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}
img {
  display: block;
}

/* ── COLOR UTILITIES ── */
.cyan {
  color: var(--cyan);
}
.electric {
  color: var(--electric);
}

/* ── NAV ── */
nav#nav {
  position: sticky;
  top: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: 64px;
  background: rgba(2, 3, 10, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  font-family: "Outfit", sans-serif;
  font-weight: 800;
  font-size: 19px;
  letter-spacing: 0.06em;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
}

.nav-logo-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow:
    0 0 10px var(--cyan),
    0 0 20px rgba(0, 229, 255, 0.4);
  animation: pulse-dot 2.5s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes pulse-dot {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.4;
    transform: scale(0.65);
  }
}

.nav-center {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 32px;
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.05em;
}

.nav-center a {
  transition: color 0.2s;
}
.nav-center a:hover {
  color: var(--white);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 8px;
}

.lang-btn {
  background: transparent;
  border: 1px solid var(--border2);
  color: var(--muted);
  border-radius: 6px;
  padding: 5px 12px;
  font-size: 11px;
  font-weight: 500;
  cursor: pointer;
  font-family: "Outfit", sans-serif;
  letter-spacing: 0.08em;
  transition: all 0.2s;
}

.lang-btn.active,
.lang-btn:hover {
  border-color: var(--cyan);
  color: var(--cyan);
}

.nav-cta {
  background: transparent;
  color: var(--cyan);
  border: 1px solid var(--cyan-line);
  border-radius: 6px;
  padding: 8px 20px;
  font-size: 12px;
  font-weight: 500;
  font-family: "Outfit", sans-serif;
  letter-spacing: 0.05em;
  transition: all 0.2s;
  display: inline-block;
}

.nav-cta:hover {
  background: var(--cyan-dim);
  border-color: var(--cyan);
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block;
  padding: 13px 28px;
  border-radius: 8px;
  background: var(--cyan);
  color: var(--void);
  font-size: 14px;
  font-weight: 600;
  font-family: "Outfit", sans-serif;
  letter-spacing: 0.02em;
  border: 0;
  cursor: pointer;
  transition: all 0.25s;
}

.btn-primary:hover {
  background: #33ecff;
  opacity: 0.9;
}

.btn-ghost {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 8px;
  border: 1px solid var(--border2);
  color: rgba(228, 236, 255, 0.5);
  font-size: 14px;
  font-family: "Outfit", sans-serif;
  transition: all 0.25s;
}

.btn-ghost:hover {
  border-color: var(--cyan);
  color: var(--white);
}

/* ── HERO — full screen type ── */
.hero {
  min-height: calc(100vh - 64px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 48px;
  position: relative;
  overflow: hidden;
  background: var(--void);
}

.hero-orbs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}

.orb-1 {
  width: 600px;
  height: 600px;
  background: rgba(0, 60, 180, 0.18);
  top: -200px;
  right: -100px;
}
.orb-2 {
  width: 400px;
  height: 400px;
  background: rgba(0, 229, 255, 0.05);
  bottom: -100px;
  left: 200px;
}
.orb-3 {
  width: 300px;
  height: 300px;
  background: rgba(0, 30, 120, 0.22);
  top: 30%;
  left: -80px;
}

.hero-grid-lines {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 120px,
      rgba(0, 229, 255, 0.022) 120px,
      rgba(0, 229, 255, 0.022) 121px
    ),
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 120px,
      rgba(0, 229, 255, 0.014) 120px,
      rgba(0, 229, 255, 0.014) 121px
    );
  pointer-events: none;
}

/* ── HERO CUBE MARK — large decorative background mark ── */
.hero-mark {
  position: absolute;
  right: -6%;
  top: 50%;
  transform: translateY(-50%);
  width: min(680px, 65vw);
  height: min(680px, 65vw);
  z-index: 1;
  pointer-events: none;
  opacity: 0.55;
}

.hero-mark-svg {
  width: 100%;
  height: 100%;
  animation: mark-breathe 6s ease-in-out infinite;
}

@keyframes mark-breathe {
  0%,
  100% {
    opacity: 0.55;
    transform: scale(1);
  }
  50% {
    opacity: 0.7;
    transform: scale(1.015);
  }
}

@media (max-width: 768px) {
  .hero-mark {
    width: 90vw;
    right: -20%;
    top: auto;
    bottom: -10%;
    transform: none;
    opacity: 0.25;
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px; /* keeps text clear of the cube mark on wide screens */
  max-width: 1200px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 32px;
  font-weight: 500;
}

.hero-tag-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  animation: pulse-dot 2s ease-in-out infinite;
  flex-shrink: 0;
}

.hero h1 {
  font-family: "Outfit", sans-serif;
  font-weight: 800;
  font-size: clamp(48px, 7vw, 108px);
  line-height: 0.88;
  letter-spacing: -0.025em;
}

.hero h1 .line {
  display: block;
}
.hero h1 .dim {
  color: rgba(228, 236, 255, 0.16);
}
.hero h1 .stroke {
  color: rgba rgba(228, 236, 255, 00.16);
}

.hero-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-top: 56px;
  gap: 32px;
  flex-wrap: wrap;
}

.hero-sub {
  font-size: clamp(14px, 1.5vw, 17px);
  color: rgba(228, 236, 255, 0.38);
  max-width: 440px;
  line-height: 1.7;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-shrink: 0;
}

.hero-scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--cyan), transparent);
  margin-top: 48px;
  opacity: 0.35;
  /* static — no bounce */
}

/* ── MARQUEE ── */
/* ── MARQUEE — locked height, horizontal only, no bounce ── */
.marquee-wrap {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--deep);
  overflow: hidden;
  height: 44px; /* fixed height — kills vertical bounce */
  display: flex;
  align-items: center;
}

.marquee-track {
  display: inline-flex; /* inline-flex prevents height recalc */
  align-items: center;
  white-space: nowrap;
  flex-shrink: 0;
  will-change: transform; /* GPU composited — smooth horizontal only */
  animation: ticker 32s linear infinite;
}

.marquee-wrap:hover .marquee-track {
  animation-play-state: paused;
}

.mi {
  font-family: "Outfit", sans-serif;
  font-size: 11px; /* smaller — more proportionate */
  letter-spacing: 0.12em; /* tighter — less stretched */
  text-transform: uppercase;
  color: var(--muted2);
  padding: 0 32px;
  border-right: 1px solid rgba(0, 229, 255, 0.05);
  flex-shrink: 0;
  cursor: default;
  transition: color 0.2s;
  font-weight: 500; /* lighter — less heavy */
  line-height: 1; /* lock line height — no vertical shift */
}

.mi:hover {
  color: var(--cyan);
}
.mi.ac {
  color: rgba(0, 229, 255, 0.28);
}

@keyframes ticker {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ── SHARED SECTION TOKENS ── */
.section-label {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cyan);
  font-weight: 500;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.section-label::before {
  content: "";
  width: 16px;
  height: 1px;
  background: var(--cyan);
  flex-shrink: 0;
}

.section-title {
  font-family: "Outfit", sans-serif;
  font-weight: 800;
  font-size: clamp(32px, 3.5vw, 48px);
  letter-spacing: -0.02em;
  line-height: 0.95;
}

/* ── DIVISIONS SECTION ── */
#divisions {
  padding: 80px 48px;
  background: var(--void);
}

.bento-header {
  margin-bottom: 40px;
}

/* ── BENTO GRID ── */
.bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 12px;
}

/* column spans */
.bc-wide {
  grid-column: span 7;
}
.bc-narrow {
  grid-column: span 5;
}
.bc-third {
  grid-column: span 4;
}
.bc-half {
  grid-column: span 6;
}
.bc-quarter {
  grid-column: span 3;
}
.bc-full {
  grid-column: span 12;
}

/* ── DIVISIONS — true side by side ── */
.divisions-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}

.divisions-row .bc-division {
  min-height: 400px;
}

/* Media card: SIXXES white, MEDIA electric blue */
.bc-title-media {
  color: var(--white);
}

/* ABOUT grid — one unified section */
.about-header {
  margin-bottom: 32px;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.about-pills-full {
  grid-column: span 3;
  min-height: auto;
  padding: 24px 28px;
}

.about-process-header {
  grid-column: span 3;
  padding: 32px 0 8px;
}

.about-grid .bc-process {
  grid-column: span 1;
  min-height: 200px;
}

/* ── BENTO CARD BASE ── */
.bc {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition:
    border-color 0.3s,
    transform 0.3s;
}

.bc::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: radial-gradient(
    circle at 0% 0%,
    rgba(0, 229, 255, 0.035),
    transparent 60%
  );
  pointer-events: none;
}

.bc:hover {
  border-color: var(--border2);
  box-shadow: 0 0 0 1px var(--border2);
}

/* ── DIVISION CARDS ── */
.bc-division {
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.bc-top {
  flex: 1;
}

.bc-division-num {
  font-family: "Outfit", sans-serif;
  font-weight: 800;
  font-size: 90px;
  color: rgba(0, 170, 255, 0.04);
  line-height: 1;
  position: absolute;
  right: 20px;
  top: 12px;
  letter-spacing: -0.05em;
  pointer-events: none;
  user-select: none;
}

.bc-tag {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cyan);
  font-weight: 500;
  margin-bottom: 18px;
  font-family: "Outfit", sans-serif;
}

.bc-title {
  font-family: "Outfit", sans-serif;
  font-weight: 800;
  font-size: clamp(26px, 2.5vw, 36px);
  letter-spacing: -0.025em;
  line-height: 0.95;
  margin-bottom: 14px;
}

/* Electric blue — vivid, punchy on the division name */
.bc-title .electric {
  color: var(--electric);
  text-shadow: 0 0 32px rgba(0, 170, 255, 0.35);
}

.bc-body {
  font-size: 14px;
  color: rgba(228, 236, 255, 0.36);
  line-height: 1.72;
  font-weight: 300;
  max-width: 380px;
  margin-bottom: 22px;
}

.bc-services {
  display: flex;
  flex-direction: column;
  margin-bottom: 24px;
}

.bc-svc {
  padding: 11px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: rgba(228, 236, 255, 0.4);
  transition: color 0.2s;
  cursor: default;
}

.bc-svc:first-child {
  border-top: 1px solid var(--border);
}
.bc-svc:hover {
  color: var(--white);
}

.bc-svc-arr {
  font-size: 13px;
  color: rgba(0, 229, 255, 0.18);
  transition:
    transform 0.2s,
    color 0.2s;
  flex-shrink: 0;
}

.bc-svc:hover .bc-svc-arr {
  transform: translateX(4px);
  color: var(--cyan);
}

.bc-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  color: var(--cyan);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(0, 229, 255, 0.18);
  padding-bottom: 4px;
  cursor: pointer;
  font-family: "Outfit", sans-serif;
  transition:
    gap 0.2s,
    border-color 0.2s;
  align-self: flex-start;
}

.bc-cta:hover {
  gap: 14px;
  border-color: var(--cyan);
}

/* ── VISUAL (CUBE) CARD ── */
.bc-visual {
  min-height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(0, 40, 140, 0.35),
    var(--card)
  );
  overflow: hidden;
}

.cube-svg {
  width: 160px;
  height: 160px;
  animation: cube-breathe 4s ease-in-out infinite;
}

@keyframes cube-breathe {
  0%,
  100% {
    opacity: 0.7;
    transform: scale(0.97);
  }
  50% {
    opacity: 1;
    transform: scale(1.03);
  }
}

/* ── STATEMENT CARD ── */
.bc-statement {
  background: linear-gradient(
    135deg,
    rgba(0, 102, 255, 0.1),
    rgba(0, 229, 255, 0.05)
  );
  border-color: rgba(0, 229, 255, 0.1);
  min-height: 100px;
  display: flex;
  align-items: center;
  border-radius: 20px;
}

.bc-statement-text {
  font-family: "Outfit", sans-serif;
  font-weight: 800;
  font-size: clamp(20px, 2.2vw, 28px);
  letter-spacing: -0.025em;
  line-height: 1.15;
  color: rgba(228, 236, 255, 0.55);
}

.bc-statement-text em {
  font-style: normal;
  color: var(--cyan);
}

/* ── STAT CARDS ── */
.bc-stat {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 160px;
}

.bc-stat-num {
  font-family: "Outfit", sans-serif;
  font-weight: 800;
  font-size: clamp(52px, 5vw, 72px);
  color: var(--cyan);
  letter-spacing: -0.03em;
  line-height: 1;
}

.bc-stat-num.latam {
  font-size: clamp(32px, 3.5vw, 48px);
  line-height: 1.1;
}

.bc-stat-label {
  font-size: 13px;
  color: rgba(228, 236, 255, 0.32);
  font-weight: 300;
  line-height: 1.5;
}

.bc-stat-label strong {
  display: block;
  font-size: 14px;
  color: rgba(228, 236, 255, 0.68);
  font-weight: 500;
  margin-bottom: 3px;
}

/* ── PILLS CARD ── */
.bc-pills {
  min-height: 160px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.pill {
  padding: 7px 14px;
  border-radius: 999px;
  border: 1px solid var(--border2);
  font-size: 12px;
  color: rgba(228, 236, 255, 0.4);
  cursor: default;
  transition: all 0.2s;
  font-weight: 400;
}

.pill:hover {
  border-color: var(--cyan);
  color: var(--white);
}

/* ── PROCESS CARDS ── */
.bc-process {
  min-height: 200px;
}

.proc-num {
  font-family: "Outfit", sans-serif;
  font-weight: 800;
  font-size: 13px;
  color: var(--cyan);
  letter-spacing: 0.12em;
  margin-bottom: 14px;
}

.proc-title {
  font-family: "Outfit", sans-serif;
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
  color: var(--white);
}

.proc-body {
  font-size: 13px;
  color: rgba(228, 236, 255, 0.32);
  line-height: 1.65;
  font-weight: 300;
}

/* ── WHY SECTION (dark variant) ── */
.section-dark {
  padding: 0 48px 80px;
  background: var(--deep);
}

/* ── CONTACT ── */
#contact {
  padding: 80px 48px;
  background: var(--void);
}

.contact-wrap {
  border: 1px solid var(--border);
  border-radius: 24px;
  background: linear-gradient(135deg, var(--card), var(--surface));
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
}

.cl {
  padding: 64px 52px;
  position: relative;
  overflow: hidden;
  border-right: 1px solid var(--border);
}

.cl-orb {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 229, 255, 0.05), transparent 70%);
  top: -100px;
  right: -100px;
  pointer-events: none;
}

.cl-inner {
  position: relative;
  z-index: 1;
}

.ch {
  font-family: "Outfit", sans-serif;
  font-weight: 800;
  font-size: clamp(42px, 4vw, 60px);
  letter-spacing: -0.03em;
  line-height: 0.88;
  margin-bottom: 16px;
  margin-top: 12px;
}

.ch .electric {
  color: var(--electric);
  text-shadow: 0 0 32px rgba(0, 170, 255, 0.3);
}

.cp {
  font-size: 14px;
  color: rgba(228, 236, 255, 0.34);
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 32px;
  max-width: 360px;
}

.cbtns {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cr {
  padding: 64px 52px;
  display: flex;
  flex-direction: column;
}

.cd {
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.cd:last-child {
  border-bottom: 0;
}

.cdl {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}

.cdv {
  font-size: 14px;
  color: var(--white);
}

/* ── REEL SECTION — VaynerMedia style ── */
#reel {
  position: relative;
  width: 100%;
  background: #000;
  overflow: hidden;
  cursor: pointer;
}

/* 16:9 ratio keeps it cinematic on all screens */
.reel-inner {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 */
  min-height: 420px;
  max-height: 90vh;
  overflow: hidden;
}

/* real video — drop in when ready */
.reel-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
}

/* placeholder background — mimics a dark video frame */
.reel-placeholder {
  position: absolute;
  inset: 0;
  background: #0a0c18;
  /* swap for a still frame: background: url('assets/reel-poster.jpg') center/cover no-repeat; */
}

/* dark overlay so white text always pops — exactly like Vayner */
.reel-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.52);
  z-index: 2;
}

/* text block — bottom-left, just like Vayner */
.reel-content {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 48px 52px;
}

/* massive Vayner-style headline */
.reel-headline {
  font-family: "Outfit", sans-serif;
  font-weight: 800;
  font-size: clamp(36px, 7vw, 96px);
  letter-spacing: -0.025em;
  line-height: 0.92;
  color: #ffffff;
  max-width: 900px;
  margin: 0;
  text-transform: uppercase;
}

/* play button — top right corner like Vayner's circular avatar button */
.reel-play {
  position: absolute;
  top: 32px;
  right: 40px;
  z-index: 4;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
}

.reel-play:hover {
  background: rgba(0, 229, 255, 0.15);
  border-color: var(--cyan);
  transform: scale(1.06);
}

/* sound toggle — bottom right, subtle */
.reel-sound {
  position: absolute;
  bottom: 28px;
  right: 40px;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.38);
  cursor: pointer;
  transition: color 0.2s;
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  border: 0;
  background: transparent;
  padding: 0;
}

.reel-sound:hover {
  color: rgba(255, 255, 255, 0.85);
}

.reel-sound-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--cyan);
  opacity: 0.55;
  transition: opacity 0.2s;
}

.reel-sound:hover .reel-sound-dot {
  opacity: 1;
}

@media (max-width: 768px) {
  .reel-inner {
    min-height: 320px;
  }
  .reel-content {
    padding: 32px 20px;
  }
  .reel-play {
    top: 20px;
    right: 20px;
    width: 52px;
    height: 52px;
  }
  .reel-sound {
    bottom: 16px;
    right: 20px;
  }
}

/* ── FOOTER ── */
footer {
  border-top: 1px solid var(--border);
  padding: 28px 48px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
  background: var(--void);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.04em;
}

.footer-left {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-brand {
  font-family: "Outfit", sans-serif;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.1em;
  color: var(--white);
}

.footer-copy {
  font-size: 11px;
  color: var(--muted);
}

.footer-center {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  color: var(--muted);
  white-space: nowrap;
}

.footer-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--cyan);
  opacity: 0.45;
  flex-shrink: 0;
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: flex-end;
}

.social-link {
  color: var(--muted);
  display: flex;
  align-items: center;
  transition: color 0.2s;
}

.social-link:hover {
  color: var(--cyan);
}

/* ═══════════════════════════════════════════
   RESPONSIVE
   Breakpoints: 1200 / 1024 / 768 / 480 / 360
═══════════════════════════════════════════ */

/* ── 1200px — wide tablet / small laptop ── */
@media (max-width: 1200px) {
  nav#nav {
    padding: 0 36px;
  }
  .hero {
    padding: 0 36px;
  }
  #divisions,
  #why,
  #reel,
  #contact {
    padding: 72px 36px;
  }
  .section-dark {
    padding: 0 36px 72px;
  }
  footer {
    padding: 20px 36px;
  }

  .bc-wide {
    grid-column: span 8;
  }
  .bc-narrow {
    grid-column: span 4;
  }
}

/* ── 1024px — tablet landscape ── */
@media (max-width: 1024px) {
  .bc-wide {
    grid-column: span 12;
  }
  .bc-narrow {
    grid-column: span 6;
  }
  .bc-third {
    grid-column: span 6;
  }
  .bc-quarter {
    grid-column: span 6;
  }
  .bc-half {
    grid-column: span 12;
  }

  .about-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-pills-full,
  .about-process-header {
    grid-column: span 2;
  }
  .about-grid .bc-process {
    grid-column: span 1;
  }

  .reel-content {
    padding: 36px 36px;
  }
  .reel-headline {
    font-size: clamp(32px, 5vw, 72px);
  }
}

/* ── 768px — tablet portrait / large mobile ── */
@media (max-width: 768px) {
  /* NAV — hide links, show hamburger */
  nav#nav {
    padding: 0 20px;
    height: 56px;
  }

  .nav-center {
    display: none;
  }

  .nav-right .lang-btn {
    display: none;
  } /* hide lang on small screens */

  /* HERO */
  .hero {
    padding: 40px 20px 48px;
    min-height: calc(100vh - 56px);
    justify-content: center;
  }

  .hero h1 {
    font-size: clamp(42px, 11vw, 72px);
    letter-spacing: -0.025em;
  }

  .hero-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    margin-top: 32px;
  }

  .hero-sub {
    max-width: 100%;
    font-size: 15px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 10px;
  }

  .btn-primary,
  .btn-ghost {
    width: 100%;
    text-align: center;
    padding: 14px 20px;
  }

  .hero-scroll-line {
    display: none;
  }

  /* SECTIONS */
  #divisions {
    padding: 56px 20px 0;
  }
  #why {
    padding: 0 20px 56px;
  }
  #contact {
    padding: 56px 20px;
  }
  .section-dark {
    padding: 0 20px 56px;
  }

  .bento-header {
    margin-bottom: 28px;
  }

  .section-title {
    font-size: clamp(28px, 8vw, 40px);
  }

  /* BENTO — single column */
  /* bento */
  .bento {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .bc-wide,
  .bc-narrow,
  .bc-third,
  .bc-half,
  .bc-quarter,
  .bc-full {
    grid-column: span 1;
  }

  /* divisions side by side → stack */
  .divisions-row {
    grid-template-columns: 1fr;
  }

  /* about grid → single col */
  .about-grid {
    grid-template-columns: 1fr;
  }
  .about-pills-full,
  .about-process-header {
    grid-column: span 1;
  }
  .about-grid .bc-process {
    grid-column: span 1;
  }

  /* footer → stack */
  footer {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 24px 20px;
  }
  .footer-socials {
    justify-content: flex-start;
  }

  /* BENTO CARDS */
  .bc {
    padding: 24px 20px;
    border-radius: 16px;
  }
  .bc-division {
    min-height: auto;
  }

  .bc-title {
    font-size: 28px;
  }
  .bc-body {
    font-size: 14px;
  }

  .bc-stat {
    min-height: 130px;
  }
  .bc-stat-num {
    font-size: 52px;
  }
  .bc-process {
    min-height: auto;
    padding-bottom: 8px;
  }

  /* REEL */
  .reel-inner {
    min-height: 300px;
  }
  .reel-content {
    padding: 24px 20px;
  }
  .reel-headline {
    font-size: clamp(28px, 9vw, 48px);
    line-height: 0.95;
  }
  .reel-play {
    top: 16px;
    right: 16px;
    width: 52px;
    height: 52px;
  }
  .reel-sound {
    bottom: 16px;
    right: 16px;
  }

  /* CONTACT */
  .contact-wrap {
    grid-template-columns: 1fr;
    border-radius: 16px;
  }

  .cl {
    border-right: 0;
    border-bottom: 1px solid var(--border);
    padding: 36px 24px;
  }

  .cr {
    padding: 36px 24px;
  }

  .ch {
    font-size: clamp(36px, 10vw, 52px);
  }

  /* FOOTER */
  footer {
    padding: 16px 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    font-size: 11px;
  }
}

/* ── 480px — standard mobile ── */
@media (max-width: 480px) {
  .hero h1 {
    font-size: clamp(36px, 12vw, 56px);
  }

  .hero-tag {
    font-size: 10px;
    letter-spacing: 0.1em;
  }

  .section-title {
    font-size: clamp(26px, 9vw, 38px);
  }

  .bc-title {
    font-size: 24px;
  }
  .bc-stat-num {
    font-size: 44px;
  }

  .reel-headline {
    font-size: clamp(24px, 10vw, 40px);
  }

  .proc-title {
    font-size: 18px;
  }

  .cbtns {
    gap: 8px;
  }
}

/* ── 360px — small Android / iPhone SE ── */
@media (max-width: 360px) {
  .hero h1 {
    font-size: 32px;
  }
  .section-title {
    font-size: 24px;
  }
  .nav-cta {
    padding: 7px 14px;
    font-size: 11px;
  }
  .bc {
    padding: 20px 16px;
  }
}

/* ── HAMBURGER & MOBILE MENU ── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: transparent;
  border: 1px solid var(--border2);
  border-radius: 6px;
  cursor: pointer;
  padding: 8px;
  margin-left: 4px;
}

.nav-hamburger span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--white);
  transition: all 0.25s ease;
  transform-origin: center;
}

/* open state */
.nav-hamburger.open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
}
.nav-hamburger.open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

@media (max-width: 768px) {
  .nav-hamburger {
    display: flex;
  }
}

/* mobile menu overlay */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 56px 0 0 0;
  background: rgba(2, 3, 10, 0.98);
  backdrop-filter: blur(20px);
  z-index: 190;
  border-top: 1px solid var(--border);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.mobile-menu.open {
  opacity: 1;
}

@media (max-width: 768px) {
  .mobile-menu {
    display: block;
  }
  .mobile-menu:not(.open) {
    pointer-events: none;
  }
}

.mobile-menu-inner {
  padding: 36px 24px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  height: 100%;
}

.mobile-lang {
  display: flex;
  gap: 8px;
}

.mobile-links {
  display: flex;
  flex-direction: column;
  gap: 0;
  flex: 1;
}

.mobile-links a {
  font-family: "Outfit", sans-serif;
  font-weight: 800;
  font-size: clamp(32px, 9vw, 48px);
  letter-spacing: -0.02em;
  color: rgba(228, 236, 255, 0.4);
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
  line-height: 1;
}

.mobile-links a:hover {
  color: var(--white);
}
.mobile-links a:first-child {
  border-top: 1px solid var(--border);
}

.mobile-cta {
  display: block;
  text-align: center;
  margin-bottom: 40px;
}
/* ── CONTACT FORM ── */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  margin-top: 8px;
}

.cf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.cf-input,
.cf-textarea {
  width: 100%;
  background: rgba(0, 229, 255, 0.04);
  border: 1px solid var(--border2);
  border-radius: 8px;
  padding: 13px 16px;
  font-family: "Outfit", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: var(--white);
  outline: none;
  transition:
    border-color 0.2s,
    background 0.2s;
  resize: none;
}

.cf-input::placeholder,
.cf-textarea::placeholder {
  color: var(--muted);
}

.cf-input:focus,
.cf-textarea:focus {
  border-color: var(--cyan);
  background: rgba(0, 229, 255, 0.06);
}

.cf-textarea {
  min-height: 110px;
}

.cf-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 4px;
}

.cf-submit {
  flex: 1;
  text-align: center;
}

.cf-success {
  display: none;
  font-size: 13px;
  color: var(--cyan);
  padding: 10px 0 0;
  font-weight: 500;
}

.cf-success.visible {
  display: block;
}

@media (max-width: 480px) {
  .cf-row {
    grid-template-columns: 1fr;
  }
  .cf-actions {
    flex-direction: column;
  }
  .cf-submit {
    width: 100%;
  }
}
