/* ==========================================================================
   Crea8ive Minds — Shared Stylesheet
   Bold editorial theme: black / red / white, oversized display type,
   pill + circular outline buttons, split color-block sections.
   ========================================================================== */

:root {
  --black: #0a0a0a;
  --black-soft: #111111;
  --panel: #161616;
  --panel-2: #1c1c1c;
  --border: rgba(255, 255, 255, 0.14);
  --border-soft: rgba(255, 255, 255, 0.08);

  --red: #ea3323;
  --red-dark: #c22417;
  --red-light: #ff5c4d;
  --blue: #3088c0;

  --white: #f7f5f0;
  --off-white: #ececec;
  --grey-300: #b7b7b2;
  --grey-400: #8c8c88;
  --grey-500: #666663;

  --light-bg: #eeece7;
  --light-bg-2: #e4e1da;
  --light-ink: #111111;

  --radius-0: 0px;
  --radius-sm: 4px;
  --radius-pill: 999px;

  --shadow-soft: 0 30px 60px -24px rgba(0, 0, 0, 0.7);

  --container: 1360px;
  --section-pad: clamp(56px, 8vw, 112px);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --font-display: 'Archivo Black', 'Poppins', 'Inter', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* ---------- Reset ---------- */
* , *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body, h1, h2, h3, h4, p, ul, ol, figure { margin: 0; }
ul, ol { padding: 0; list-style: none; }
img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
input, textarea, select { font: inherit; color: inherit; }

html, body { background: var(--black); color: var(--white); overflow-x: hidden; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  min-height: 100vh;
  position: relative;
}

h1, h2, h3, h4, .font-display {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  line-height: 0.98;
  letter-spacing: -0.01em;
  color: var(--white);
}

::selection { background: var(--red); color: #fff; }

.container { max-width: var(--container); margin-inline: auto; padding-inline: 24px; }
section { padding-block: var(--section-pad); position: relative; }
section + section { padding-top: clamp(20px, 3.5vw, 40px); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--grey-400);
  margin-bottom: 16px;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--red); }
.on-light .eyebrow { color: var(--grey-500); }

h2.section-title { font-size: clamp(2rem, 5vw, 3.6rem); max-width: 820px; }
.section-sub { color: var(--grey-300); max-width: 600px; margin-top: 18px; font-size: 1.05rem; font-family: var(--font-body); text-transform: none; letter-spacing: normal; }
.on-light .section-sub { color: #4a4a46; }
.section-head { margin-bottom: 52px; }
.section-head.center { text-align: center; margin-inline: auto; }
.section-head.center .section-title { margin-inline: auto; }
.section-head.center .section-sub { margin-inline: auto; }

.on-light { background: var(--light-bg); color: var(--light-ink); }
.on-light h1, .on-light h2, .on-light h3, .on-light h4 { color: var(--light-ink); }
.on-light .eyebrow::before { background: var(--red); }

/* ---------- Buttons ---------- */
.pill-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 1.5px solid var(--white);
  color: var(--white);
  background: transparent;
  transition: transform 0.35s var(--ease), background 0.35s var(--ease), color 0.35s var(--ease), border-color 0.35s var(--ease);
  white-space: nowrap;
  cursor: pointer;
}
.pill-btn:hover { background: var(--white); color: var(--black); transform: translateY(-2px); }
.pill-btn.solid { background: var(--red); border-color: var(--red); color: #fff; }
.pill-btn.solid:hover { background: var(--red-dark); border-color: var(--red-dark); color: #fff; }
.on-light .pill-btn { border-color: var(--light-ink); color: var(--light-ink); }
.on-light .pill-btn:hover { background: var(--light-ink); color: var(--light-bg); }
.pill-btn.sm { padding: 10px 20px; font-size: 0.76rem; }

.circle-btn {
  width: 88px; height: 88px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.06);
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--white);
  transition: transform 0.4s var(--ease), background 0.4s var(--ease), border-color 0.4s var(--ease);
  flex-shrink: 0;
}
.circle-btn:hover { transform: scale(1.08); border-color: var(--white); background: rgba(255,255,255,0.06); }
.circle-btn svg { width: 18px; height: 18px; }
.on-light .circle-btn { border-color: rgba(17,17,17,0.25); color: var(--light-ink); }
.on-light .circle-btn:hover { border-color: var(--light-ink); background: rgba(17,17,17,0.05); }

.nav-arrow-link { display: inline-flex; align-items: center; gap: 12px; font-size: 0.85rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; }
.nav-arrow-link .line { width: 40px; height: 1px; background: currentColor; }

/* ---------- Custom cursor ---------- */
.cursor-ring {
  position: fixed;
  top: 0; left: 0;
  width: 34px; height: 34px;
  border: 1px solid rgba(255,255,255,0.8);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width 0.25s var(--ease), height 0.25s var(--ease), background 0.25s var(--ease), border-color 0.25s var(--ease);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.62rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase;
  mix-blend-mode: difference;
}
.cursor-ring span { opacity: 0; transition: opacity 0.2s var(--ease); white-space: nowrap; }
.cursor-ring.grow { width: 90px; height: 90px; background: rgba(255,255,255,0.95); border-color: transparent; }
.cursor-ring.grow span { opacity: 1; color: #000; mix-blend-mode: normal; }
@media (pointer: coarse) { .cursor-ring { display: none; } }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  padding-block: 12px;
  background: var(--black);
  border-bottom: 1px solid var(--border-soft);
  transition: padding 0.4s var(--ease);
}
.site-header.scrolled { padding-block: 10px; }
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; }
.brand img { height: 54px; width: auto; transition: height 0.4s var(--ease); }
.site-header.scrolled .brand img { height: 46px; }

.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-links > li { position: relative; }
.nav-links a.nav-link {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--grey-300);
  transition: color 0.25s var(--ease);
}
.nav-links a.nav-link:hover, .nav-links a.nav-link.active { color: var(--white); }
.nav-links .caret { width: 9px; height: 9px; transition: transform 0.25s var(--ease); opacity: 0.7; }
.has-dropdown:hover .caret { transform: rotate(180deg); }

.dropdown {
  position: absolute;
  top: calc(100% + 14px);
  left: 0;
  min-width: 260px;
  background: var(--panel);
  border: 1px solid var(--border);
  padding: 8px;
  box-shadow: var(--shadow-soft);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: all 0.25s var(--ease);
}
.has-dropdown:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: none;
  letter-spacing: normal;
  color: var(--grey-300);
}
.dropdown a:hover { background: rgba(234,51,35,0.12); color: var(--white); }
.dropdown a span.dot { width: 5px; height: 5px; border-radius: 50%; background: var(--red); flex-shrink: 0; }

.nav-actions { display: flex; align-items: center; gap: 16px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--border);
}
.nav-toggle span { width: 18px; height: 1.5px; background: var(--white); transition: all 0.3s var(--ease); }
.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile nav panel + overlay — hidden off-screen at ALL viewport sizes by default */
/* Mobile nav panel + overlay — glassmorphic drawer */
.mobile-panel {
  position: fixed;
  inset: 0 0 0 auto;
  width: min(88vw, 360px);
  height: 100vh;
  height: 100dvh;
  background: rgba(10, 10, 14, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: -15px 0 45px rgba(0, 0, 0, 0.7);
  z-index: 600;
  padding: 24px 22px 36px;
  transform: translateX(100%);
  transition: transform 0.45s var(--ease);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.mp-top {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.mp-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-soft);
}
.mp-header img {
  height: 44px;
  width: auto;
  object-fit: contain;
}
.mp-close-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border-soft);
  color: var(--white);
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s var(--ease), transform 0.3s var(--ease);
  line-height: 1;
}
.mp-close-btn:hover {
  background: var(--red);
  transform: rotate(90deg);
}
.mobile-panel ul {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 8px;
}
.mobile-panel a.nav-link {
  padding: 12px 8px;
  font-size: 1.15rem;
  font-family: var(--font-display);
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: color 0.3s var(--ease), padding-left 0.3s var(--ease);
}
.mobile-panel a.nav-link:hover,
.mobile-panel a.nav-link.active {
  color: var(--red);
  padding-left: 14px;
}
.mobile-panel .mp-sub {
  margin: 6px 0 10px 10px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.03);
  border-left: 2px solid var(--red);
  border-radius: var(--radius-sm);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.mobile-panel .mp-sub a {
  font-size: 0.88rem;
  padding: 6px 0;
  color: var(--grey-300);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.25s var(--ease);
}
.mobile-panel .mp-sub a:hover {
  color: var(--white);
}
.mobile-panel .mp-sub .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
}
.mp-footer {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid var(--border-soft);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.mp-footer .pill-btn {
  width: 100%;
  justify-content: center;
  text-align: center;
}
.mp-footer-info {
  font-size: 0.76rem;
  color: var(--grey-500);
  text-align: center;
  margin-top: 4px;
}
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.8);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 550;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s var(--ease);
  pointer-events: none;
}
.nav-overlay.open { opacity: 1; visibility: visible; pointer-events: auto; }

/* ---------- Splash Screen ---------- */
.splash { display: none !important; }
.splash-inner { text-align: center; }
.splash-logo { width: min(60vw, 260px); margin-inline: auto; opacity: 0; transform: translateY(14px); animation: splashIn 0.9s var(--ease) 0.1s forwards; }
.splash-word { overflow: hidden; margin-top: 18px; }
.splash-word span {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 8vw, 4.5rem);
  color: var(--white);
  transform: translateY(100%);
  animation: splashUp 0.7s var(--ease) 0.5s forwards;
}
.splash-bar { position: relative; width: 200px; height: 2px; background: rgba(255,255,255,0.12); margin: 34px auto 0; overflow: hidden; }
.splash-bar span { display: block; height: 100%; width: 0%; background: var(--red); animation: splashBar 1.3s var(--ease) 0.3s forwards; }

@keyframes splashIn { to { opacity: 1; transform: translateY(0); } }
@keyframes splashUp { to { transform: translateY(0); } }
@keyframes splashBar { to { width: 100%; } }

/* ---------- Hero ---------- */
.hero { padding-top: clamp(16px, 2.5vw, 28px); padding-bottom: clamp(48px, 6vw, 80px); }
.hero-headline { font-size: clamp(3rem, 11vw, 8.4rem); line-height: 0.9; }
.hero-headline .line { display: block; overflow: hidden; }
.hero-headline .stroke { color: transparent; -webkit-text-stroke: 1.5px var(--white); }
.hero-headline .fill-red { color: var(--red); }
.hero-row { display: flex; justify-content: space-between; align-items: flex-end; gap: 40px; margin-top: 36px; flex-wrap: wrap; max-width: 780px; }
.hero-copy p { color: var(--grey-300); font-size: 1.08rem; max-width: 460px; font-family: var(--font-body); }
.hero-actions { display: flex; align-items: center; gap: 22px; margin-top: 26px; flex-wrap: wrap; }
.hero-meta { display: flex; gap: 32px; margin-top: 54px; flex-wrap: wrap; border-top: 1px solid var(--border-soft); padding-top: 28px; }
.hero-meta div strong { display: block; font-family: var(--font-display); font-size: 1.7rem; color: var(--white); }
.hero-meta div span { font-size: 0.78rem; color: var(--grey-400); text-transform: uppercase; letter-spacing: 0.05em; }

.scroll-cue { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.scroll-cue .circle-btn { width: 56px; height: 56px; animation: bob 2.2s ease-in-out infinite; }
@keyframes bob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(8px); } }

/* ---------- Hero visual (right-side brand composition) ---------- */
.hero-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 24px; align-items: center; }
.hero-visual { position: relative; height: 480px; display: flex; align-items: center; justify-content: center; }
.hero-visual .glow { position: absolute; width: 300px; height: 300px; border-radius: 50%; background: radial-gradient(circle, rgba(234,51,35,0.25), rgba(234,51,35,0) 70%); filter: blur(10px); }
.hero-visual .ring { position: absolute; width: 400px; height: 400px; border: 1px dashed var(--border); border-radius: 50%; animation: heroSpin 50s linear infinite; }
.hero-visual .ring::before, .hero-visual .ring::after { content:""; position:absolute; width:6px; height:6px; border-radius:50%; background: var(--red); top:-3px; left:50%; margin-left:-3px; }
.hero-visual .ring::after { background: var(--blue); top:auto; bottom:-3px; }
.hero-visual .ring-2 { position: absolute; width: 296px; height: 296px; border: 1px solid var(--border-soft); border-radius: 50%; }
.hero-visual .big-mark { position: absolute; font-family: var(--font-display); font-size: 15rem; line-height: 1; color: transparent; -webkit-text-stroke: 1.5px rgba(247,245,240,0.1); user-select: none; }
@keyframes heroSpin { to { transform: rotate(360deg); } }

.hero-chip { position: absolute; width: 138px; padding: 16px 18px; border-radius: 20px; display: flex; flex-direction: column; gap: 12px; box-shadow: var(--shadow-soft); animation: bob 5.5s ease-in-out infinite; }
.hero-chip .circle-btn { width: 34px; height: 34px; pointer-events: none; }
.hero-chip svg { width: 16px; height: 16px; }
.hero-chip span { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.03em; font-family: var(--font-body); }
.hero-chip.c1 { background: var(--red); color: #fff; top: 14px; left: 6px; transform: rotate(-7deg); animation-delay: 0s; }
.hero-chip.c1 .circle-btn { border-color: rgba(255,255,255,0.5); color: #fff; }
.hero-chip.c2 { background: var(--white); color: #111; top: 66px; right: 0; transform: rotate(6deg); animation-delay: 0.7s; }
.hero-chip.c2 .circle-btn { border-color: rgba(17,17,17,0.3); color: #111; }
.hero-chip.c3 { background: var(--panel-2); color: #fff; border: 1px solid var(--border); bottom: 76px; left: 0; transform: rotate(5deg); animation-delay: 1.4s; }
.hero-chip.c4 { background: var(--blue); color: #fff; bottom: 8px; right: 22px; transform: rotate(-5deg); animation-delay: 2.1s; }

@media (max-width: 1080px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
}

/* ---------- Marquee (partners/logos) ---------- */
.marquee-wrap { border-top: 1px solid var(--border-soft); border-bottom: 1px solid var(--border-soft); padding-block: 30px; overflow: hidden; }
.marquee-label { text-align: center; margin-bottom: 26px; }
.marquee-label .eyebrow { justify-content: center; }
.marquee-label h3 { font-size: clamp(1.3rem, 3vw, 1.9rem); }
.marquee-label h3 em { color: var(--grey-400); font-style: italic; }
.marquee-track { display: flex; gap: 72px; width: max-content; animation: scrollLeft 28s linear infinite; align-items: center; }
.marquee-track span { font-family: var(--font-display); font-size: clamp(1.3rem, 2.6vw, 1.8rem); color: var(--grey-400); white-space: nowrap; text-transform: uppercase; opacity: 0.55; transition: opacity 0.3s; }
@keyframes scrollLeft { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- Cards ---------- */
.grid { display: grid; gap: 1px; background: var(--border-soft); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid.gapless { border: 1px solid var(--border-soft); }

.tile {
  background: var(--black);
  padding: 40px 34px;
  transition: background 0.4s var(--ease), transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
  position: relative;
  overflow: hidden;
}
.tile::before { content: ""; position: absolute; top: 0; left: 0; height: 3px; width: 0; background: var(--red); transition: width 0.5s var(--ease); }
.tile:hover { background: var(--panel); transform: translateY(-8px); box-shadow: var(--shadow-soft); z-index: 3; }
.tile:hover::before { width: 100%; }
.tile .num { font-family: var(--font-display); font-size: 0.9rem; color: var(--red); margin-bottom: 22px; display: block; transition: transform 0.4s var(--ease), color 0.4s var(--ease); }
.tile:hover .num { transform: translateX(4px); color: var(--white); }
.tile h3 { font-size: 1.25rem; margin-bottom: 12px; text-transform: none; letter-spacing: normal; font-family: var(--font-body); font-weight: 700; }
.tile p { color: var(--grey-400); font-size: 0.92rem; font-family: var(--font-body); }
.tile .tag-list { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.tile .tag-list span { font-size: 0.7rem; padding: 5px 12px; border-radius: var(--radius-pill); border: 1px solid var(--border); color: var(--grey-300); text-transform: uppercase; letter-spacing: 0.04em; transition: border-color 0.35s var(--ease), color 0.35s var(--ease), transform 0.35s var(--ease); }
.tile:hover .tag-list span { border-color: var(--red); color: var(--white); transform: translateY(-2px); }
.tile:hover .tag-list span:nth-child(2) { transition-delay: 0.05s; }
.tile:hover .tag-list span:nth-child(3) { transition-delay: 0.1s; }
.tile-icon { position: absolute; top: 34px; right: 34px; width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; color: var(--grey-400); opacity: 0; transform: scale(0.6) rotate(-20deg); transition: opacity 0.45s var(--ease), transform 0.45s var(--ease), border-color 0.45s var(--ease), color 0.45s var(--ease); }
.tile-icon svg { width: 20px; height: 20px; }
.tile:hover .tile-icon { opacity: 1; transform: scale(1) rotate(0deg); border-color: var(--red); color: var(--red); }
@media (hover: none) { .tile-icon { opacity: 1; transform: none; } }

/* ---------- Split color-block sections ---------- */
.split-block { display: grid; grid-template-columns: 1fr 1fr; min-height: 480px; }
.split-block .half { display: flex; flex-direction: column; justify-content: center; padding: 60px clamp(28px, 5vw, 72px); }
.split-block .half.red { background: var(--red); color: #fff; }
.split-block .half.black { background: #000; }
.split-block .half.light { background: var(--light-bg); color: var(--light-ink); }
.split-block h2 { font-size: clamp(2.4rem, 6vw, 5.2rem); line-height: 0.92; }
.split-block .half p { font-family: var(--font-body); text-transform: none; letter-spacing: normal; color: var(--grey-300); margin-top: 20px; max-width: 420px; }
.split-block .half.red p { color: rgba(255,255,255,0.85); }
.split-block .btn-row { display: flex; gap: 14px; margin-top: 32px; flex-wrap: wrap; }

/* ---------- Values / stats ---------- */
.value-row { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--border-soft); border-left: 1px solid var(--border-soft); }
.value-item { border-right: 1px solid var(--border-soft); border-bottom: 1px solid var(--border-soft); padding: 38px 30px; }
.value-item .letter { font-family: var(--font-display); font-size: 2.2rem; color: var(--red); margin-bottom: 18px; }
.value-item h3 { font-size: 1.05rem; margin-bottom: 10px; text-transform: none; font-family: var(--font-body); font-weight: 700; }
.value-item p { color: var(--grey-400); font-size: 0.88rem; font-family: var(--font-body); }

.stats-strip { display: grid; grid-template-columns: repeat(4, 1fr); text-align: center; border-top: 1px solid var(--border-soft); border-bottom: 1px solid var(--border-soft); }
.stats-strip .stat { padding: 46px 20px; border-right: 1px solid var(--border-soft); }
.stats-strip .stat:last-child { border-right: none; }
.stats-strip .num { font-family: var(--font-display); font-size: clamp(2.2rem, 5vw, 3.4rem); color: var(--white); }
.stats-strip .num .accent { color: var(--red); }
.stats-strip .lbl { color: var(--grey-400); font-size: 0.8rem; margin-top: 10px; text-transform: uppercase; letter-spacing: 0.05em; font-family: var(--font-body); }

/* ---------- Process ---------- */
.process-row { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--border-soft); border-left: 1px solid var(--border-soft); }
.process-item { border-right: 1px solid var(--border-soft); border-bottom: 1px solid var(--border-soft); padding: 36px 28px; position: relative; }
.process-item .num { font-family: var(--font-display); font-size: 2.2rem; color: transparent; -webkit-text-stroke: 1px var(--border); display: block; margin-bottom: 16px; }
.process-item h3 { font-size: 1rem; margin-bottom: 10px; text-transform: none; font-family: var(--font-body); font-weight: 700; }
.process-item p { color: var(--grey-400); font-size: 0.88rem; font-family: var(--font-body); }

/* ---------- Portfolio ---------- */
.work-filters { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 40px; }
.filter-btn { padding: 10px 22px; border-radius: var(--radius-pill); border: 1px solid var(--border); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; color: var(--grey-300); transition: all 0.3s var(--ease); cursor: pointer; }
.filter-btn:hover, .filter-btn.active { background: var(--white); color: #000; border-color: var(--white); }

.work-card { position: relative; text-decoration: none; }
.work-thumb {
  aspect-ratio: 4/5;
  position: relative;
  overflow: hidden;
  background: var(--panel);
  display: flex; align-items: center; justify-content: center;
}
.work-thumb video.work-video,
.work-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.work-thumb .tilt-shape {
  position: absolute;
  width: 78%; height: 78%;
  transform: rotate(-6deg);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-soft);
}
.work-thumb .tilt-shape svg { width: 34%; opacity: 0.85; }
.work-thumb .bg-letter { position: absolute; font-family: var(--font-display); font-size: 11rem; color: rgba(255,255,255,0.04); right: -10px; bottom: -40px; line-height: 1; user-select: none; }
.work-card .cat-badge { position: absolute; top: 18px; left: 18px; font-size: 0.68rem; padding: 6px 14px; border-radius: var(--radius-pill); background: rgba(0,0,0,0.55); border: 1px solid var(--border); backdrop-filter: blur(6px); text-transform: uppercase; letter-spacing: 0.05em; z-index: 2; color: var(--white); }
.work-info { padding: 20px 4px; display: flex; justify-content: space-between; align-items: center; gap: 12px; border-bottom: 1px solid var(--border-soft); }
.work-info h3 { font-size: 1rem; text-transform: none; font-family: var(--font-body); font-weight: 700; color: var(--white); margin: 0; }
.work-info span { font-size: 0.78rem; color: var(--grey-500); text-transform: uppercase; letter-spacing: 0.04em; }

.work-nav { display: flex; align-items: center; justify-content: center; gap: 40px; margin-top: 50px; }

/* ---------- Testimonials ---------- */
.testi-track { display: flex; gap: 1px; background: var(--border-soft); border: 1px solid var(--border-soft); overflow-x: auto; scroll-snap-type: x mandatory; }
.testi-track::-webkit-scrollbar { height: 6px; }
.testi-card { min-width: 340px; scroll-snap-align: start; background: var(--black); padding: 34px; }
.testi-card .stars { color: var(--red); letter-spacing: 3px; margin-bottom: 18px; font-size: 0.9rem; }
.testi-card p.quote { color: var(--grey-300); font-size: 1rem; margin-bottom: 26px; font-style: italic; font-family: var(--font-body); }
.testi-person { display: flex; align-items: center; gap: 12px; }
.avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--red); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 0.9rem; color: #fff; flex-shrink: 0; }
.testi-person strong { display: block; font-size: 0.9rem; font-family: var(--font-body); text-transform: none; }
.testi-person span { font-size: 0.76rem; color: var(--grey-500); }

/* ---------- FAQ ---------- */
.faq-list { max-width: 820px; margin-inline: auto; border-top: 1px solid var(--border); }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 26px 6px; font-weight: 700; font-size: 1.05rem; font-family: var(--font-body); cursor: pointer; text-transform: none; }
.faq-q .plus { width: 22px; height: 22px; position: relative; flex-shrink: 0; }
.faq-q .plus::before, .faq-q .plus::after { content: ""; position: absolute; background: var(--white); transition: transform 0.3s var(--ease); }
.faq-q .plus::before { width: 100%; height: 1.5px; top: 50%; left: 0; translate: 0 -50%; }
.faq-q .plus::after { width: 1.5px; height: 100%; left: 50%; top: 0; translate: -50% 0; }
.faq-item.open .plus::after { transform: rotate(90deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease); }
.faq-a p { padding: 0 6px 26px; color: var(--grey-400); font-size: 0.94rem; font-family: var(--font-body); }
.on-light .faq-q, .on-light .faq-a p { color: var(--light-ink); }
.on-light .faq-a p { color: #4a4a46; }
.on-light .faq-q .plus::before, .on-light .faq-q .plus::after { background: var(--light-ink); }

/* ---------- Page header (inner pages) ---------- */
.page-header { padding-top: clamp(20px, 3vw, 36px); padding-bottom: clamp(24px, 4vw, 40px); }
.page-header h1 { font-size: clamp(2.6rem, 8vw, 5.5rem); }
.breadcrumb { display: flex; gap: 10px; margin-top: 22px; font-size: 0.8rem; color: var(--grey-500); text-transform: uppercase; letter-spacing: 0.05em; }
.breadcrumb a:hover { color: var(--red); }

/* ---------- Forms ---------- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px 24px; }
.field { display: flex; flex-direction: column; gap: 10px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 0.76rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: var(--grey-400); }
.on-light .field label { color: var(--grey-500); }
.field input, .field select, .field textarea {
  background: transparent;
  border: none;
  border-bottom: 1.5px solid var(--border);
  border-radius: 0;
  padding: 10px 2px;
  color: var(--white);
  font-size: 1rem;
  font-family: var(--font-body);
  transition: border-color 0.3s var(--ease);
}
.on-light .field input, .on-light .field select, .on-light .field textarea { color: var(--light-ink); border-bottom-color: rgba(17,17,17,0.25); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--red); }
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: start;
}
@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.contact-info-row { display: flex; gap: 18px; align-items: flex-start; padding: 26px 0; border-bottom: 1px solid var(--border-soft); }
.on-light .contact-info-row { border-bottom-color: rgba(17,17,17,0.12); }
.contact-info-row:last-child { border-bottom: none; }
.contact-info-row h4 { font-size: 0.98rem; margin-bottom: 6px; text-transform: none; font-family: var(--font-body); font-weight: 700; }
.contact-info-row p, .contact-info-row a { color: var(--grey-400); font-size: 0.94rem; }
.on-light .contact-info-row p, .on-light .contact-info-row a { color: #4a4a46; }
.contact-info-row a:hover { color: var(--red); }
.contact-info-row svg { width: 22px; height: 22px; color: var(--red); flex-shrink: 0; margin-top: 3px; }

.map-embed { overflow: hidden; border: 1px solid var(--border); aspect-ratio: 16/9; }
.map-embed iframe { width: 100%; height: 100%; border: 0; filter: grayscale(1) invert(0.92) contrast(0.9); }

/* ---------- Footer ---------- */
.site-footer { background: #000; border-top: 1px solid var(--border-soft); padding-top: clamp(56px, 8vw, 90px); }
.footer-top { display: grid; grid-template-columns: 1.3fr 1fr 1.4fr 1.2fr; gap: 40px; padding-bottom: 56px; }
.footer-brand .brand-word { font-family: var(--font-display); font-size: 1.6rem; margin-bottom: 18px; }
.footer-brand p { color: var(--grey-400); font-size: 0.92rem; max-width: 280px; margin-bottom: 22px; font-family: var(--font-body); }
.footer-brand .addr { color: var(--grey-500); font-size: 0.85rem; margin-bottom: 8px; }
.footer-brand .contact-line { color: var(--grey-400); font-size: 0.88rem; display: block; margin-top: 6px; }
.footer-brand .contact-line:hover { color: var(--red); }

.footer-col h4 { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 22px; color: var(--white); font-family: var(--font-display); font-weight: 400; }
.footer-col ul { display: flex; flex-direction: column; gap: 13px; }
.footer-col a { color: var(--grey-400); font-size: 0.92rem; transition: color 0.25s var(--ease); }
.footer-col a:hover { color: var(--red); }

.footer-quote { font-style: italic; color: var(--grey-300); font-size: 0.98rem; line-height: 1.5; margin-bottom: 20px; }
.footer-sub { font-weight: 700; font-size: 0.92rem; margin-bottom: 14px; }

.footer-cta { text-align: center; }
.footer-cta h4 { font-size: 1.3rem; margin-bottom: 22px; }
.footer-cta .circle-btn {
  margin-inline: auto;
  width: 110px;
  height: 110px;
  font-size: 0.82rem;
  border: 1.5px solid var(--red);
  background: var(--red);
  color: #ffffff;
  font-weight: 800;
  box-shadow: 0 10px 30px rgba(234, 51, 37, 0.35);
}
.footer-cta .circle-btn:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  transform: scale(1.08);
}
.footer-cta .note { margin-top: 20px; font-size: 0.85rem; color: var(--grey-400); }

.social-row { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 18px; }
.social-row a {
  padding: 9px 18px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: all 0.3s var(--ease);
}
.social-row a:hover { background: var(--red); color: #ffffff; border-color: var(--red); }
.footer-col .pill-btn { border: 1.5px solid rgba(255, 255, 255, 0.4); background: rgba(255, 255, 255, 0.1); color: var(--white); }
.footer-col .pill-btn:hover { background: var(--white); color: var(--black); border-color: var(--white); }

.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-block: 26px; border-top: 1px solid var(--border-soft); font-size: 0.82rem; color: var(--grey-500); flex-wrap: wrap; gap: 12px; text-transform: uppercase; letter-spacing: 0.03em; }
.footer-bottom a:hover { color: var(--red); }
.footer-legal { display: flex; gap: 20px; }

/* ---------- WhatsApp float ---------- */
.float-wa {
  position: fixed;
  bottom: 26px;
  right: 26px;
  z-index: 400;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #25d366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 30px -6px rgba(37, 211, 102, 0.6);
  animation: pulseWa 2.4s ease-in-out infinite;
}
.float-wa svg { width: 28px; height: 28px; fill: #fff; }
@keyframes pulseWa { 0%, 100% { box-shadow: 0 10px 30px -6px rgba(37,211,102,0.6); } 50% { box-shadow: 0 10px 40px -2px rgba(37,211,102,0.85); } }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }
.reveal-delay-5 { transition-delay: 0.4s; }

/* ---------- Doodle arrow (about page) ---------- */
.doodle-arrow { width: 180px; height: auto; color: var(--light-ink); opacity: 0.8; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1080px) {
  .footer-top { grid-template-columns: 1fr 1fr; row-gap: 44px; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .value-row { grid-template-columns: repeat(2, 1fr); }
  .process-row { grid-template-columns: repeat(2, 1fr); }
  .stats-strip { grid-template-columns: repeat(2, 1fr); }
  .stats-strip .stat:nth-child(2n) { border-right: none; }
  .split-block { grid-template-columns: 1fr; }
  .split-block .half { min-height: 320px; }
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-actions .pill-btn { display: none; }
  .nav-toggle { display: flex; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .cursor-ring { display: none; }
  .brand img { height: 58px; }
  .site-header.scrolled .brand img { height: 48px; }
}

@media (max-width: 520px) {
  .brand img { height: 48px; }
  .site-header.scrolled .brand img { height: 42px; }
}

@media (max-width: 720px) {
  :root { --section-pad: 52px; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-row { flex-direction: column; align-items: flex-start; }
  .hero-meta { gap: 22px; }
  .value-row, .process-row { grid-template-columns: 1fr; }
  .work-nav { gap: 20px; }
  .circle-btn { width: 70px; height: 70px; }
}

@media (max-width: 520px) {
  .stats-strip { grid-template-columns: 1fr 1fr; }
  .work-info { flex-direction: column; align-items: flex-start; gap: 4px; }
  .float-wa { width: 50px; height: 50px; bottom: 18px; right: 18px; }
  .float-wa svg { width: 24px; height: 24px; }
  .footer-cta .circle-btn { width: 90px; height: 90px; }
}

/* ---------- Mobile nav panel (open/interaction states) ---------- */
@media (max-width: 900px) {
  .mobile-panel.open { transform: translateX(0); }
  .mobile-panel ul { display: flex; flex-direction: column; gap: 2px; }
  .mobile-panel a.nav-link { padding: 15px 4px; font-size: 1.1rem; border-bottom: 1px solid var(--border-soft); }
  .mobile-panel .mp-sub { padding-left: 16px; display: flex; flex-direction: column; }
  .mobile-panel .mp-sub a { font-size: 0.9rem; padding: 10px 4px; color: var(--grey-400); border-bottom: none; text-transform: none; letter-spacing: normal; font-weight: 500; }
  .mobile-panel .pill-btn { margin-top: 26px; width: 100%; justify-content: center; }
}

/* ---------- Branding Video Showcase ---------- */
.branding-video-showcase {
  margin-top: 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: center;
  background: var(--panel);
  border: 1px solid var(--border);
  padding: 32px;
  position: relative;
  overflow: hidden;
}
.branding-video-showcase::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--red), var(--blue));
}
.brand-video-box {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  background: #06070b;
  min-height: 280px;
  max-height: 480px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.brand-video-box video {
  width: 100%;
  height: 100%;
  min-height: 280px;
  max-height: 480px;
  object-fit: cover;
  display: block;
}
.brand-video-badge {
  position: absolute;
  top: 16px; left: 16px;
  background: rgba(10, 10, 10, 0.75);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--white);
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 8px;
}
.brand-video-badge .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 10px var(--red);
  animation: pulseWa 1.8s ease-in-out infinite;
}
.work-thumb video.work-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}
@media (max-width: 900px) {
  .branding-video-showcase { grid-template-columns: 1fr; }
}

/* ---------- Instagram Reel Embed ---------- */
.instagram-reel-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 100%;
}
.instagram-reel-iframe {
  width: 100%;
  max-width: 380px;
  height: 520px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  background: #000;
  overflow: hidden;
}
.ig-reel-card-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: #fff;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.ig-reel-card-btn:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 10px 25px rgba(220, 39, 67, 0.4);
}

/* ==========================================================================
   Comprehensive Mobile & Tablet Responsiveness Enhancements
   ========================================================================== */

/* Overflow protection across all viewports */
html, body {
  max-width: 100vw;
  overflow-x: hidden;
}

/* Prevent heading overflow on narrow mobile screens */
h1, h2, h3, .section-title, .hero-title {
  overflow-wrap: break-word;
  word-wrap: break-word;
}

/* Base container padding scaling */
@media (max-width: 520px) {
  .container {
    padding-left: 16px;
    padding-right: 16px;
  }
}

/* Mobile Hero Enhancements */
@media (max-width: 768px) {
  .hero-title {
    font-size: clamp(2.2rem, 8.5vw, 3.4rem);
    line-height: 1.1;
  }
  .hero-actions {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }
  .hero-actions .pill-btn {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
  .hero-meta {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }
}

/* Mobile Split Block Enhancements */
@media (max-width: 768px) {
  .split-block .half {
    padding: 44px 24px;
    min-height: auto;
  }
}

/* Mobile Branding Video Showcase Enhancements */
@media (max-width: 900px) {
  .branding-video-showcase {
    grid-template-columns: 1fr;
    padding: 24px 20px;
    gap: 24px;
  }
}
@media (max-width: 520px) {
  .branding-video-showcase {
    padding: 18px 14px;
    gap: 18px;
    margin-top: 24px;
  }
  .brand-video-box {
    min-height: 220px;
    max-height: 360px;
  }
  .brand-video-badge {
    top: 10px;
    left: 10px;
    padding: 4px 10px;
    font-size: 0.65rem;
  }
  .brand-video-info h3 {
    font-size: clamp(1.35rem, 5.5vw, 1.8rem) !important;
  }
  .brand-video-info div[style*="display:flex"] {
    flex-direction: column;
    align-items: stretch !important;
    gap: 10px !important;
  }
  .brand-video-info .pill-btn,
  .brand-video-info .ig-reel-card-btn {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
}

/* Mobile Portfolio Work Filters Swiper */
@media (max-width: 768px) {
  .work-filters,
  .work-nav {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 12px;
    gap: 8px;
    justify-content: flex-start;
    width: 100%;
    scrollbar-width: none;
    margin-bottom: 24px !important;
  }
  .work-filters::-webkit-scrollbar,
  .work-nav::-webkit-scrollbar {
    display: none;
  }
  .filter-btn {
    white-space: nowrap;
    flex-shrink: 0;
    padding: 10px 18px;
    font-size: 0.8rem;
  }
}

/* Mobile Grid Tiles & Service Cards */
@media (max-width: 768px) {
  .tile {
    padding: 24px 18px;
  }
  .tile h3 {
    font-size: 1.25rem;
  }
}

/* Mobile Form Inputs (Prevents iOS Safari auto-zoom on focus) */
@media (max-width: 768px) {
  input[type="text"],
  input[type="email"],
  input[type="tel"],
  select,
  textarea {
    font-size: 16px !important;
  }
}

/* Mobile Testimonials & FAQ Responsiveness */
@media (max-width: 520px) {
  .testi-card {
    min-width: 82vw;
    padding: 22px 18px;
  }
  .faq-q {
    padding: 18px 4px;
    font-size: 0.95rem;
  }
  .contact-info-row {
    padding: 18px 0;
  }
  .section-head {
    margin-bottom: 32px;
  }
  .section-title {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
  }
  .page-header h1 {
    font-size: clamp(2rem, 8vw, 3rem);
  }
}



