/* ============================================
   ATFRO Pre-launch v3
   Brand: #C8F04E · #0A0A0A · #161616 · #F0EFE8 · #7A7A7A
   Type: Playfair Display · DM Sans · Arial Black
   ============================================ */

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

/* ── Design Tokens ── */
:root {
  --lime: #C8F04E;
  --lime-10: rgba(200, 240, 78, 0.1);
  --lime-20: rgba(200, 240, 78, 0.2);
  --lime-glow: rgba(200, 240, 78, 0.25);
  --black: #0A0A0A;
  --surface: #161616;
  --card: #111111;
  --cream: #F0EFE8;
  --cream-60: rgba(240, 239, 232, 0.6);
  --cream-30: rgba(240, 239, 232, 0.3);
  --muted: #7A7A7A;
  --muted-40: #4A4A4A;
  --border: rgba(255, 255, 255, 0.07);
  --border-l: rgba(255, 255, 255, 0.12);

  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'DM Sans', Arial, system-ui, sans-serif;
  --arialb: 'Arial Black', 'Arial Bold', Arial, sans-serif;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-s: cubic-bezier(0.25, 0.46, 0.45, 0.94);

  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 20px;
  --r-xl: 28px;
  --r-pill: 9999px;

  --mw: 1080px;
  --px: clamp(20px, 5vw, 56px);
  --section-py: clamp(72px, 10vw, 120px);
}

/* ── Base ── */
html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
}

body {
  font-family: var(--sans);
  background: var(--black);
  color: var(--muted);
  line-height: 1.65;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

svg {
  display: block;
  flex-shrink: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.br-d {
  display: block;
}

/* ── Reveal Animations ── */
.fade-in {
  opacity: 0;
  transform: translateY(16px);
  animation: fadeUp 0.85s var(--ease) forwards;
  animation-delay: var(--delay, 0s);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
  transition-delay: calc(var(--ci, 0) * 0.08s);
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: none;
  }
}

/* ── Eyebrow Labels ── */
.eyebrow-label {
  display: inline-block;
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 24px;
}

.eyebrow-label--dark {
  color: var(--black);
}

/* ── Section Rule — lime accent line at section starts ── */
.section-rule {
  width: 100%;
  padding: 0 var(--px);
  max-width: var(--mw);
  margin-inline: auto;
  margin-bottom: clamp(40px, 6vw, 72px);
  display: flex;
  align-items: center;
}

.section-rule span {
  display: block;
  width: 48px;
  height: 2px;
  background: var(--border-l);
  border-radius: 1px;
}

.section-rule--lime span {
  background: var(--lime);
}

/* ═══════════════════════════════════════
   GLOBAL — Form & Autofill Reset
═══════════════════════════════════════ */
input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus, 
input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 100px #0A0A0A inset !important;
  -webkit-text-fill-color: var(--cream) !important;
  transition: background-color 5000s ease-in-out 0s;
}

button, input, select, textarea {
  font-family: inherit;
  color: inherit;
}

/* ═══════════════════════════════════════
   BUTTONS
═══════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  border: none;
  border-radius: var(--r-pill);
  padding: 13px 28px;
  cursor: pointer;
  transition: background 0.25s var(--ease), color 0.22s, box-shadow 0.25s var(--ease), transform 0.2s var(--ease), border-color 0.22s;
  white-space: nowrap;
  text-decoration: none;
}

.btn:active {
  transform: scale(0.97) !important;
}

.btn-primary {
  background: var(--cream);
  color: var(--black);
}

.btn-primary:hover {
  background: #fff;
  box-shadow: 0 0 32px var(--lime-glow);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--cream-60);
  border: 1.5px solid var(--border-l);
}

.btn-ghost:hover {
  color: var(--cream);
  border-color: rgba(240, 239, 232, 0.35);
  background: rgba(240, 239, 232, 0.04);
}

.btn-lime {
  background: var(--lime);
  color: var(--black);
  font-weight: 700;
}

.btn-lime:hover {
  background: #d8ff5c;
  box-shadow: 0 4px 40px var(--lime-glow), 0 0 0 1px rgba(200, 240, 78, 0.4);
  transform: translateY(-2px);
}

.btn-nav {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  padding: 8px 20px;
  background: transparent;
  color: var(--cream-60);
  border: 1.5px solid var(--border-l);
  border-radius: var(--r-pill);
  cursor: pointer;
  text-decoration: none;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}

.btn-nav:hover {
  color: var(--cream);
  border-color: rgba(240, 239, 232, 0.3);
  background: rgba(240, 239, 232, 0.05);
}

.btn-lg {
  padding: 15px 36px;
  font-size: 15px;
}

/* ═══════════════════════════════════════
   NAV
═══════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  border-bottom: 1px solid transparent;
  transition: background 0.4s, border-color 0.4s, backdrop-filter 0.4s;
}

.nav.scrolled {
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-color: var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
  max-width: var(--mw);
  margin-inline: auto;
  padding-inline: var(--px);
}

/* Nav brand — CSS wordmark, cream-to-lime gradient matching the logo */
.nav-brand {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 900;
  letter-spacing: -0.03em;
  background: linear-gradient(90deg, var(--cream-60) 0%, var(--cream) 40%, var(--lime) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: opacity 0.2s;
}

.nav-brand:hover {
  opacity: 0.8;
}

/* ═══════════════════════════════════════
   HERO
═══════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-top: 72px;
}

/* 3D Gradient Grid */
.hero-bg-grid {
  position: absolute;
  top: -10%;
  left: -50%;
  width: 200%;
  height: 100vh;
  background-image:
    linear-gradient(to right, rgba(200, 240, 78, 0.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(200, 240, 78, 0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  transform: perspective(100vh) rotateX(60deg) translateY(-100px) translateZ(-200px);
  transform-origin: center top;
  pointer-events: none;
  z-index: 0;
  mask-image: radial-gradient(ellipse at top center, black 10%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at top center, black 10%, transparent 80%);
}

/* Background radial glow */
.hero-radial {
  position: absolute;
  top: -10%;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 700px;
  background: radial-gradient(ellipse at 50% 30%, rgba(200, 240, 78, 0.06) 0%, transparent 65%);
  pointer-events: none;
  animation: heroGlow 8s ease-in-out infinite;
}

@keyframes heroGlow {

  0%,
  100% {
    opacity: 0.7;
    transform: translateX(-50%) scale(1);
  }

  50% {
    opacity: 1;
    transform: translateX(-50%) scale(1.07);
  }
}

.hero-body {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: clamp(40px, 6vh, 60px);
}

/* Status pill */
.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lime);
  background: rgba(200, 240, 78, 0.03);
  border: 1px solid rgba(200, 240, 78, 0.2);
  padding: 8px 18px;
  border-radius: var(--r-pill);
  margin-bottom: 24px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 0 12px rgba(200, 240, 78, 0.15);
}

.inline-cd {
  font-family: var(--arialb);
  color: var(--cream);
  font-variant-numeric: tabular-nums;
  letter-spacing: 0;
}

/* Hero typography */
.hero-title-gradient {
  font-family: var(--serif);
  font-size: clamp(60px, 12vw, 140px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 16px;
  background: linear-gradient(180deg, #FFFFFF 0%, #C8F04E 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-tagline {
  font-family: var(--serif);
  font-size: clamp(20px, 3.5vw, 32px);
  font-weight: 700;
  color: var(--cream);
  letter-spacing: -0.01em;
  margin-bottom: 12px;
  line-height: 1.2;
}

.hero-sub {
  font-size: clamp(14px, 1.8vw, 17px);
  font-weight: 300;
  color: var(--muted);
  max-width: 640px;
  line-height: 1.7;
  margin-bottom: 40px;
}

/* Email Capture Inline */
.hero-email-capture {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 580px;
  margin-bottom: 24px;
}

.hero-input-group {
  display: flex;
  width: 100%;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--r-pill);
  padding: 4px;
  transition: all 0.4s var(--ease);
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.2);
}

.hero-input-group:focus-within {
  border-color: var(--lime);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 0 0 4px rgba(200, 240, 78, 0.06), 0 0 40px rgba(200, 240, 78, 0.04);
  transform: translateY(-1px);
}

.hero-input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 12px 20px;
  font-family: var(--sans);
  font-size: 15px;
  color: var(--cream);
  outline: none;
  min-width: 0;
}

.hero-input::placeholder {
  color: var(--muted);
}

.hero-submit {
  border-radius: var(--r-pill);
  padding: 12px 32px;
  font-weight: 700;
  white-space: nowrap;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

.hero-submit:hover {
  transform: scale(1.03);
  box-shadow: 0 4px 24px rgba(200, 240, 78, 0.35), 0 0 0 1px rgba(200, 240, 78, 0.4);
}

.hero-microcopy {
  margin-top: 10px;
  font-size: 12px;
  color: var(--muted);
  opacity: 0.7;
}

/* Countdown */
.countdown {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--r-lg);
  overflow: hidden;
  background: rgba(22, 22, 22, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.cd-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: clamp(14px, 2.8vw, 24px) clamp(22px, 4vw, 36px);
}

.cd-num {
  font-family: var(--arialb);
  font-size: clamp(28px, 5.5vw, 54px);
  line-height: 1;
  color: var(--cream);
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
}

.cd-lbl {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted-40);
  margin-top: 6px;
}

.cd-col {
  font-family: var(--arialb);
  font-size: clamp(20px, 3.5vw, 36px);
  color: var(--muted-40);
  padding-bottom: 12px;
  line-height: 1;
  flex-shrink: 0;
}

/* Hero Subtle CTA */
.hero-actions-secondary {
  display: flex;
  justify-content: center;
  margin-top: 8px;
  position: relative;
  z-index: 2;
}

.hero-subtle-link {
  font-size: 13px;
  color: var(--muted-40);
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
  text-decoration: none;
}

.hero-subtle-link:hover {
  color: var(--cream);
  border-bottom-color: var(--muted);
}

/* Scroll hint */
.scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
}

.scroll-line {
  display: block;
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, transparent, var(--border-l));
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }

  50% {
    transform: scaleY(1);
    transform-origin: top;
  }

  50.01% {
    transform: scaleY(1);
    transform-origin: bottom;
  }

  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}

.scroll-text {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted-40);
}

/* ═══════════════════════════════════════
   PROBLEM SECTION
═══════════════════════════════════════ */
.problem-section {
  background: var(--black);
  padding-top: clamp(80px, 12vw, 160px);
  padding-bottom: clamp(80px, 12vw, 160px);
  position: relative;
  overflow: hidden;
}

/* Hide old rule if it was there */
.problem-section .section-rule {
  display: none;
}

.problem-inner {
  text-align: center;
  max-width: 900px;
  margin-inline: auto;
  position: relative;
  z-index: 2;
}

.problem-label {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--lime);
  opacity: 0.85;
  margin-bottom: 24px;
}

.problem-context {
  font-family: var(--serif);
  font-size: clamp(20px, 3vw, 32px);
  font-weight: 400;
  color: var(--cream);
  opacity: 0.5;
  margin-bottom: 28px;
  line-height: 1.4;
}

.problem-statement {
  font-family: var(--serif);
  font-size: clamp(34px, 6vw, 76px);
  font-weight: 700;
  color: var(--cream);
  line-height: 1.1;
  letter-spacing: -0.03em;
  max-width: 960px;
  margin-inline: auto;
}

.problem-statement .text-highlight {
  color: var(--lime);
}

/* Subtle glow behind the statement */
.problem-section::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(circle, rgba(200, 240, 78, 0.04) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

/* ═══════════════════════════════════════
   PILLARS SECTION
═══════════════════════════════════════ */
.pillars-section {
  background: var(--black);
  padding: clamp(56px, 8vw, 100px) 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.pillars-section .container {
  max-width: 1240px; /* ~10% increase from 1080px + padding buffer */
}

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

/* Modular pillars grid */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  background: transparent;
  margin-bottom: clamp(40px, 6vw, 64px);
}

.pillar-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: clamp(40px, 5vw, 56px) clamp(24px, 3vw, 32px);
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  overflow: hidden;
  cursor: default;
  transition: all 0.4s var(--ease);
}

.pillar-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(200, 240, 78, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s;
}

.pillar-card::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  height: 3px;
  background: var(--lime);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease);
}

.pillar-card:hover {
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(200, 240, 78, 0.3);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.5), 0 0 20px rgba(200, 240, 78, 0.05);
}

.pillar-card:hover::before {
  opacity: 1;
}

.pillar-card:hover::after {
  transform: scaleX(1);
}

.pillar-num {
  font-family: var(--arialb);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--lime);
  opacity: 0.8;
}

.pillar-title {
  font-family: var(--serif);
  font-size: clamp(28px, 3.5vw, 38px);
  font-weight: 700;
  color: var(--cream);
  line-height: 1.1;
  margin-top: 8px;
  letter-spacing: -0.01em;
}

.pillar-desc {
  font-size: 14px;
  font-weight: 400;
  color: var(--cream-60);
  line-height: 1.6;
}

/* Below pillars */
.pillars-footer {
  border-top: 1px solid var(--border);
  padding-top: clamp(28px, 4vw, 44px);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pillars-foot-headline {
  font-family: var(--serif);
  font-size: clamp(24px, 4vw, 42px);
  font-weight: 700;
  color: var(--cream);
  font-style: italic;
  flex-shrink: 0;
}

.pillars-foot-sub {
  font-size: clamp(17px, 2.2vw, 22px);
  font-weight: 300;
  color: var(--muted);
  letter-spacing: 0.01em;
}

/* ═══════════════════════════════════════
   CONNECT SECTION (Redesigned)
═══════════════════════════════════════ */
.connect-section {
  background: var(--surface);
  padding-top: 0;
  padding-bottom: clamp(56px, 8vw, 100px);
  border-top: 1px solid var(--border);
}

.connect-section .section-rule {
  padding-top: clamp(36px, 6vw, 64px);
  margin-bottom: clamp(44px, 7vw, 80px);
}

.connect-grid-flow {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: stretch;
}

.connect-divider-vertical {
  background: rgba(255, 255, 255, 0.1);
  align-self: stretch;
}

.connect-block {
  display: flex;
  flex-direction: column;
}

.connect-title-huge {
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--cream);
  margin-top: 16px;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.connect-title-huge em {
  font-style: italic;
  color: var(--lime);
}

.connect-body-large {
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 300;
  color: var(--muted);
  line-height: 1.8;
  max-width: 480px;
  opacity: 0.8;
  margin-bottom: 28px;
}

/* Horizontal Social Pills */
.social-row-horizontal {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: auto;
}

.social-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--r-pill);
  background: rgba(255, 255, 255, 0.03);
  color: var(--cream-60);
  font-size: 14px;
  font-weight: 500;
  transition: all 0.25s var(--ease);
  text-decoration: none;
}

.social-pill:hover {
  color: var(--black);
  border-color: var(--lime);
  background: var(--lime);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--lime-glow);
}

.social-pill svg {
  flex-shrink: 0;
}

/* Email block spacing fix */
.connect-block--email {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.connect-block--email .email-form {
  margin-top: 0;
}

/* New Email form */
.email-form {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.input-inline-wrap {
  display: flex;
  width: 100%;
  max-width: 500px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--r-pill);
  padding: 4px;
  transition: all 0.4s var(--ease);
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.2);
}

.input-inline-wrap:focus-within {
  border-color: var(--lime);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 0 0 4px rgba(200, 240, 78, 0.06), 0 0 40px rgba(200, 240, 78, 0.04);
  transform: translateY(-1px);
}

.email-input-new {
  flex: 1;
  background: transparent;
  border: none;
  padding: 12px 18px;
  font-family: var(--sans);
  font-size: 15px;
  color: var(--cream);
  outline: none;
  width: 100%;
}

.email-input-new::placeholder {
  color: var(--muted-40);
}

.btn-submit-new {
  border-radius: var(--r-pill);
  padding: 12px 28px;
  background: var(--lime);
  color: var(--black);
  font-weight: 700;
  flex-shrink: 0;
}

.email-hint {
  font-size: 12px;
  color: var(--muted-40);
  margin-top: 2px;
}

.email-hint.success {
  color: var(--lime);
}

.email-hint.error {
  color: #ff5f5f;
}

/* ═══════════════════════════════════════
   VALUES MARQUEE
═══════════════════════════════════════ */
.marquee-section {
  width: 100%;
  background: var(--lime);
  color: var(--black);
  padding: 14px 0;
  overflow: hidden;
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 40px rgba(200, 240, 78, 0.08);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: scrollMarquee 25s linear infinite;
}

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

.marquee-content {
  display: flex;
  align-items: center;
  white-space: nowrap;
  gap: 24px;
  padding-right: 24px;
}

.marquee-content span {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
}

.marquee-content .m-gt {
  color: rgba(10, 10, 10, 0.4);
  font-family: var(--arialb);
  font-size: 13px;
}

.marquee-content .m-dot {
  color: rgba(10, 10, 10, 0.4);
}

@keyframes scrollMarquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* ═══════════════════════════════════════
   CTA SECTION — Full Page Process
═══════════════════════════════════════ */
.cta-section {
  position: relative;
  background: var(--surface);
  padding: clamp(64px, 8vw, 120px) 0;
  text-align: center;
  overflow: hidden;
  border-top: 1px solid var(--border);
}

.cta-full-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(200, 240, 78, 0.04) 0%, transparent 60%);
  pointer-events: none;
  z-index: 1;
}

.container--cta {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.eyebrow-label--large {
  font-size: 13px;
  background: rgba(255, 255, 255, 0.05);
  margin-bottom: 24px;
  display: inline-flex;
}

.cta-title-huge {
  font-family: var(--serif);
  font-size: clamp(40px, 6vw, 76px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--cream);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.cta-title-huge em {
  font-style: italic;
  color: var(--lime);
}

.cta-body-large {
  font-size: clamp(16px, 2.2vw, 20px);
  font-weight: 300;
  color: var(--muted);
  line-height: 1.8;
  max-width: 680px;
  margin: 0 auto 60px;
}

/* Process Grid */
.cta-process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(40px, 6vw, 80px);
  margin-bottom: 80px;
  width: 100%;
}

.process-step {
  text-align: left;
  border-top: 2px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
}

.ps-num {
  font-family: var(--arialb);
  font-size: 14px;
  color: var(--lime);
  display: block;
  margin-bottom: 20px;
  opacity: 0.8;
}

.ps-title {
  font-family: var(--sans);
  font-size: 24px;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.ps-desc {
  font-size: 16px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.7;
}

/* Action Block */
.cta-full-action {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.btn-huge {
  font-size: 18px;
  padding: 16px 40px;
}

.cta-slot-note {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  color: var(--muted-40);
  font-weight: 400;
}

.slot-dot {
  width: 5px;
  height: 5px;
  background: var(--lime);
  border-radius: 50%;
  flex-shrink: 0;
  opacity: 0.8;
}

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
.footer {
  background: var(--black);
  border-top: 1px solid var(--border);
  padding: clamp(28px, 4vw, 44px) 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

/* CSS wordmark — cream-to-lime gradient replicating logo style */
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.footer-wordmark {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.03em;
  background: linear-gradient(90deg, var(--cream-30) 0%, var(--cream-60) 35%, var(--cream) 60%, var(--lime) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.footer-tagline {
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.07em;
  color: var(--muted-40);
  text-transform: uppercase;
  line-height: 1.5;
}

.footer-socials {
  display: flex;
  gap: 8px;
  align-items: center;
}

.footer-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--border);
  color: var(--muted-40);
  transition: color 0.2s, border-color 0.2s, background 0.2s, transform 0.2s;
}

.footer-icon:hover {
  color: var(--cream);
  border-color: var(--lime-20);
  background: var(--lime-10);
  transform: translateY(-2px);
}

.footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}

.footer-email {
  font-size: 13px;
  color: var(--muted);
  transition: color 0.2s;
}

.footer-email:hover {
  color: var(--cream);
}

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

/* ═══════════════════════════════════════
   SCROLLBAR
═══════════════════════════════════════ */
::-webkit-scrollbar {
  width: 3px;
}

::-webkit-scrollbar-track {
  background: var(--black);
}

::-webkit-scrollbar-thumb {
  background: var(--muted-40);
  border-radius: 2px;
}

/* ═══════════════════════════════════════
   RESPONSIVE — TABLET
═══════════════════════════════════════ */
@media (max-width: 1024px) {
  .pillars-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .connect-grid-flow {
    grid-template-columns: 1fr;
    gap: clamp(48px, 8vw, 64px);
  }

  .connect-divider-vertical {
    display: none;
  }

  .cta-process-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-right {
    align-items: flex-start;
  }
}

/* ═══════════════════════════════════════
   RESPONSIVE — MOBILE
═══════════════════════════════════════ */
@media (max-width: 560px) {
  .br-d {
    display: none;
  }

  /* Nav */
  .nav-brand {
    font-size: 17px;
  }

  .btn-nav {
    font-size: 12px;
    padding: 7px 14px;
  }

  /* Hero */
  .hero-logo-img {
    width: min(85vw, 300px);
  }

  .hero-sub {
    max-width: 100%;
  }

  /* Countdown */
  .cd-unit {
    padding: 12px;
  }

  .cd-num {
    font-size: 26px;
  }

  .cd-col {
    font-size: 18px;
    padding-bottom: 10px;
  }

  .hero-input-group {
    flex-direction: column;
    background: transparent;
    border: none;
    padding: 0;
    gap: 12px;
  }

  .hero-input-group:focus-within {
    box-shadow: none;
  }

  .hero-input {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-l);
    border-radius: var(--r-md);
  }

  .hero-input:focus {
    border-color: var(--lime);
  }

  .hero-submit {
    width: 100%;
    border-radius: var(--r-md);
  }

  /* Pillars */
  .pillars-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .pillars-footer {
    flex-direction: column;
    gap: 8px;
  }

  /* CTA */
  .cta-title-huge {
    font-size: 38px;
  }

  .cta-full-action {
    width: 100%;
  }

  .btn-huge {
    width: 100%;
    justify-content: center;
  }

  /* Social pills */
  .social-pill {
    padding: 8px 16px;
    font-size: 13px;
  }

  /* Footer */
  .footer-inner {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }

  .footer-right {
    align-items: flex-start;
  }

  .input-inline-wrap {
    flex-direction: column;
    background: transparent;
    border: none;
    padding: 0;
    gap: 12px;
  }

  .input-inline-wrap:focus-within {
    box-shadow: none;
  }

  .email-input-new {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-l);
    border-radius: var(--r-md);
  }

  .email-input-new:focus {
    border-color: var(--lime);
  }

  .btn-submit-new {
    width: 100%;
    border-radius: var(--r-md);
  }
}

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

/* ═══════════════════════════════════════
   MID-PAGE EMAIL CAPTURE
═══════════════════════════════════════ */
.mid-capture-section {
  background: var(--surface);
  padding: clamp(64px, 10vw, 120px) 0;
  border-top: 1px solid var(--border);
}

.mid-capture-inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.mid-capture-heading {
  font-family: var(--serif);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.mid-capture-sub {
  font-size: clamp(14px, 1.8vw, 17px);
  font-weight: 300;
  color: var(--muted);
  max-width: 440px;
  margin-bottom: 32px;
  line-height: 1.7;
}

/* ═══════════════════════════════════════
   STICKY CTA
═══════════════════════════════════════ */
.sticky-cta {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 99;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}

.sticky-cta.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.sticky-cta-btn {
  padding: 14px 28px;
  font-size: 14px;
  font-weight: 700;
  border-radius: var(--r-pill);
  box-shadow: 0 4px 24px rgba(200, 240, 78, 0.3), 0 0 0 1px rgba(200, 240, 78, 0.15);
  transition: transform 0.2s, box-shadow 0.2s;
}

.sticky-cta-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 32px rgba(200, 240, 78, 0.45), 0 0 0 1px rgba(200, 240, 78, 0.3);
}

@media (max-width: 560px) {
  .sticky-cta {
    bottom: 16px;
    right: 16px;
  }
  .sticky-cta-btn {
    padding: 12px 22px;
    font-size: 13px;
  }
}

/* ═══════════════════════════════════════
   CALL BOOKING MODAL
═══════════════════════════════════════ */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease);
}

.modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.modal-content {
  width: min(95vw, 540px);
  max-height: 90vh;
  background: rgba(15, 15, 15, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--r-lg);
  padding: clamp(32px, 5vw, 48px);
  position: relative;
  overflow-y: auto;
  transform: scale(0.95) translateY(10px);
  transition: transform 0.4s var(--ease);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
}

.modal-overlay.open .modal-content {
  transform: scale(1) translateY(0);
}

.modal-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--cream-60);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.2s var(--ease);
}

.modal-close:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--cream);
  transform: rotate(90deg);
}

.modal-header {
  margin-bottom: 32px;
}

.modal-title {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.modal-sub {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
}

/* Call Booking Form Refinement */
.call-booking-form {
  display: flex;
  flex-direction: column;
}

.form-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--cream-60);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

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

.form-group--full {
  grid-column: 1 / -1;
}

.call-booking-form input,
.call-booking-form select {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--r-md);
  color: var(--cream);
  font-family: inherit;
  font-size: 15px;
  transition: all 0.3s var(--ease);
}

.call-booking-form input:focus,
.call-booking-form select:focus {
  outline: none;
  border-color: var(--lime);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 0 16px rgba(200, 240, 78, 0.08);
}

.call-booking-form select:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.call-booking-form .btn-huge {
  width: 100%;
  justify-content: center;
  padding: 16px;
}

.form-message {
  margin-top: 20px;
  font-size: 14px;
  text-align: center;
  min-height: 20px;
}

.form-message.error { color: #ff5f5f; }
.form-message.success { color: var(--lime); }

/* ═══════════════════════════════════════
   ANIMATIONS & STATES
═══════════════════════════════════════ */
@keyframes loadingPulse {
  0% { opacity: 0.6; }
  50% { opacity: 0.3; }
  100% { opacity: 0.6; }
}

.loading-pulse {
  animation: loadingPulse 1.5s infinite var(--ease);
  pointer-events: none;
}

.form-message.reveal {
  animation: modalFadeIn 0.5s var(--ease) forwards;
}

@media (max-width: 540px) {
  .modal-content {
    padding: 32px 24px;
    width: 100vw;
    height: 100vh;
    max-height: 100vh;
    border-radius: 0;
    border: none;
  }
  .form-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
/* ═══════════════════════════════════════
   NAV UPDATES
   ═══════════════════════════════════════ */
.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-link {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.2s;
}

.nav-link:hover {
  color: var(--cream);
}

.btn-nav--highlight {
  background: var(--lime);
  color: var(--black);
  border-color: var(--lime);
  font-weight: 600;
}

.btn-nav--highlight:hover {
  background: var(--cream);
  color: var(--black);
  border-color: var(--cream);
  box-shadow: 0 0 20px var(--lime-glow);
}

/* ═══════════════════════════════════════
   STUDIO SECTION — SAAS BENTO REDESIGN
   ═══════════════════════════════════════ */
.studio-section {
  padding: var(--section-py) 0;
  background: var(--black);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.studio-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto clamp(48px, 6vw, 72px);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.studio-title {
  font-family: var(--serif);
  font-size: clamp(48px, 8vw, 110px);
  font-weight: 900;
  color: var(--cream);
  line-height: 0.9;
  letter-spacing: -0.05em;
  margin-bottom: 28px;
  background: linear-gradient(180deg, #FFFFFF 0%, rgba(200, 240, 78, 0.8) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.studio-description {
  font-size: clamp(20px, 3vw, 26px);
  font-weight: 400;
  color: var(--cream);
  line-height: 1.4;
  margin-bottom: 24px;
  max-width: 640px;
}

.studio-subtext {
  font-size: 16px;
  color: var(--muted);
  margin-bottom: 40px;
  opacity: 0.8;
}

.studio-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
}

/* ── Bento Feature Deck (Refined) ── */
.studio-bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: minmax(200px, auto);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.bento-card {
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-l);
  border-radius: 32px;
  padding: 40px;
  transition: all 0.5s var(--ease);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

/* Layout spans */
.bento-card--hero {
  grid-column: span 2;
  grid-row: span 2;
  justify-content: center;
  background: linear-gradient(135deg, rgba(255,255,255,0.03) 0%, rgba(200,240,78,0.03) 100%);
}

.bento-card--accent {
  grid-column: span 3;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  min-height: auto;
  padding: 48px;
}

.bento-card--accent .bento-text {
  max-width: 500px;
  margin-bottom: 0;
}

.bento-card:hover {
  background: rgba(255, 255, 255, 0.04);
  transform: translateY(-8px);
  border-color: var(--lime-20);
  box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}

.bento-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--lime);
  margin-bottom: 16px;
  opacity: 0.8;
}

.bento-title {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 12px;
  line-height: 1.1;
}

.bento-card--hero .bento-title {
  font-size: 48px;
  letter-spacing: -0.02em;
}

.bento-text {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
}

/* Visual elements inside cards */
.bento-visual-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(var(--border-l) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: linear-gradient(to bottom left, black, transparent 70%);
  -webkit-mask-image: linear-gradient(to bottom left, black, transparent 70%);
  opacity: 0.4;
  pointer-events: none;
}

/* Mobile Bento */
@media (max-width: 1024px) {
  .studio-bento {
    grid-template-columns: repeat(2, 1fr);
  }
  .bento-card--accent {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .studio-bento {
    grid-template-columns: 1fr;
  }
  .bento-card--hero, .bento-card--accent {
    grid-column: span 1;
    grid-row: auto;
  }
  .bento-card--accent {
    flex-direction: column;
    align-items: flex-start;
    padding: 40px;
  }
  .bento-card--hero .bento-title {
    font-size: 36px;
  }
}



/* ═══════════════════════════════════════
   PREMIUM MODALS (Overhaul)
   ═══════════════════════════════════════ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(32px) saturate(1.5);
  -webkit-backdrop-filter: blur(32px) saturate(1.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s var(--ease);
}

.modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.modal-content {
  width: min(90svw, 540px);
  background: #0D0D0D;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 32px;
  padding: clamp(40px, 6vw, 64px);
  position: relative;
  transform: translateY(30px) scale(0.95);
  transition: transform 0.6s var(--ease);
  box-shadow: 
    0 50px 100px rgba(0, 0, 0, 0.8),
    0 0 0 1px rgba(255, 255, 255, 0.05);
}

.modal-overlay.open .modal-content {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  color: var(--cream-60);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s var(--ease);
}

.modal-close:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--cream);
  transform: rotate(90deg) scale(1.1);
  border-color: var(--lime-20);
}

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

.modal-title {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 40px);
  font-weight: 700;
  color: var(--cream);
  line-height: 1.1;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.modal-sub {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.6;
}

/* Premium Form Group */
.form-group {
  margin-bottom: 28px;
}

.form-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: var(--lime);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 10px;
  opacity: 0.8;
}

.modal-content input,
.modal-content select {
  width: 100%;
  padding: 18px 24px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  color: var(--cream);
  font-size: 16px;
  transition: all 0.4s var(--ease);
}

.modal-content input:focus,
.modal-content select:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--lime);
  box-shadow: 
    0 0 0 4px rgba(200, 240, 78, 0.08),
    0 10px 30px rgba(0, 0, 0, 0.4);
  transform: translateY(-2px);
}

.form-message {
  height: 24px;
  margin-top: 16px;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
}

/* Mobile Overrides for Modal */
@media (max-width: 600px) {
  .modal-content {
    border-radius: 0;
    width: 100%;
    height: 100svh;
    padding: 80px 24px 40px;
    border: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .modal-close {
    top: 20px;
    right: 20px;
  }
}

/* Responsive Grid for Studio */
@media (max-width: 960px) {
  .studio-grid {
    grid-template-columns: 1fr;
    gap: 64px;
    text-align: center;
  }
  .studio-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .studio-visual {
    max-width: 480px;
    margin: 0 auto;
    order: -1;
  }
}

