/* ============================================================
   LADDERIZE — Global Design System
   Premium dark editorial agency aesthetic
   ============================================================ */

/* ──────────────────────────────────────────────────────────────
   1. GOOGLE FONTS IMPORT
   ────────────────────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Instrument+Serif:ital@0;1&family=Inter:wght@300;400;500;600;700&family=Space+Grotesk:wght@400;500;600;700&display=swap');

/* ──────────────────────────────────────────────────────────────
   2. CSS CUSTOM PROPERTIES (Design Tokens)
   ────────────────────────────────────────────────────────────── */
:root {
  /* Colors — Base */
  --color-bg:          #050508;
  --color-bg-elevated: #0c0c12;
  --color-bg-card:     #0f0f18;
  --color-bg-glass:    rgba(15, 15, 24, 0.65);
  --color-surface:     #161622;
  --color-border:      rgba(255, 255, 255, 0.06);
  --color-border-hover:rgba(255, 255, 255, 0.12);

  /* Colors — Text */
  --color-text:        #f0eff4;
  --color-text-muted:  #8a8a9a;
  --color-text-dim:    #5a5a6e;

  /* Colors — Accent Gradient */
  --color-purple:      #9B4DFF;
  --color-pink:        #FF3CAC;
  --color-violet:      #6B21D9;
  --gradient-accent:   linear-gradient(135deg, var(--color-purple), var(--color-pink));
  --gradient-accent-h: linear-gradient(90deg, var(--color-purple), var(--color-pink));
  --gradient-subtle:   linear-gradient(180deg, rgba(155, 77, 255, 0.08) 0%, transparent 60%);

  /* Typography — Families */
  --font-display:      'Instrument Serif', Georgia, serif;
  --font-body:         'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono:         'Space Grotesk', 'SF Mono', monospace;

  /* Typography — Scale (fluid clamp) */
  --text-hero:         clamp(3.5rem, 8vw, 7.5rem);
  --text-h1:           clamp(2.5rem, 5vw, 4.5rem);
  --text-h2:           clamp(2rem, 4vw, 3.5rem);
  --text-h3:           clamp(1.5rem, 3vw, 2.25rem);
  --text-h4:           clamp(1.25rem, 2vw, 1.75rem);
  --text-body:         1rem;
  --text-body-lg:      1.125rem;
  --text-small:        0.875rem;
  --text-xs:           0.75rem;
  --text-label:        0.6875rem;

  /* Spacing — Scale */
  --space-2xs:  0.25rem;
  --space-xs:   0.5rem;
  --space-sm:   0.75rem;
  --space-md:   1rem;
  --space-lg:   1.5rem;
  --space-xl:   2rem;
  --space-2xl:  3rem;
  --space-3xl:  4rem;
  --space-4xl:  6rem;
  --space-5xl:  8rem;
  --space-6xl:  12rem;

  /* Layout */
  --max-width:         1280px;
  --max-width-narrow:  960px;
  --container-padding: clamp(1.5rem, 4vw, 4rem);
  --section-padding:   clamp(5rem, 12vh, 10rem);

  /* Borders & Radius */
  --radius-sm:   0.5rem;
  --radius-md:   0.75rem;
  --radius-lg:   1rem;
  --radius-xl:   1.5rem;
  --radius-pill: 100px;

  /* Transitions */
  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --duration-fast:   0.2s;
  --duration-normal: 0.4s;
  --duration-slow:   0.7s;

  /* Z-Index Scale */
  --z-base:     1;
  --z-sticky:   100;
  --z-overlay:  500;
  --z-modal:    1000;
}


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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-body);
  font-weight: 400;
  line-height: 1.7;
  color: var(--color-text);
  background-color: var(--color-bg);
  overflow-x: hidden;
}

/* Selection */
::selection {
  background: var(--color-purple);
  color: #fff;
}

/* Images */
img,
video {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Links */
a {
  color: inherit;
  text-decoration: none;
  transition: color var(--duration-fast) var(--ease-out);
}

/* Lists */
ul, ol {
  list-style: none;
}

/* Focus visible */
:focus-visible {
  outline: 2px solid var(--color-purple);
  outline-offset: 3px;
}


/* ──────────────────────────────────────────────────────────────
   4. TYPOGRAPHY SYSTEM
   ────────────────────────────────────────────────────────────── */

/* Display / Hero */
.text-hero {
  font-family: var(--font-display);
  font-size: var(--text-hero);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--color-text);
}

.text-hero em,
.text-hero i {
  font-style: italic;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Headings */
h1, .h1 {
  font-family: var(--font-display);
  font-size: var(--text-h1);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.015em;
}

h2, .h2 {
  font-family: var(--font-display);
  font-size: var(--text-h2);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

h3, .h3 {
  font-family: var(--font-body);
  font-size: var(--text-h3);
  font-weight: 600;
  line-height: 1.2;
}

h4, .h4 {
  font-family: var(--font-body);
  font-size: var(--text-h4);
  font-weight: 600;
  line-height: 1.3;
}

/* Body variants */
.text-lg {
  font-size: var(--text-body-lg);
  line-height: 1.75;
}

.text-sm {
  font-size: var(--text-small);
}

.text-muted {
  color: var(--color-text-muted);
}

.text-dim {
  color: var(--color-text-dim);
}

/* Section labels */
.section-label {
  font-family: var(--font-mono);
  font-size: var(--text-label);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-purple);
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  margin-bottom: var(--space-lg);
}

.section-label::before {
  content: '';
  display: inline-block;
  width: 12px;
  height: 1px;
  background: var(--color-purple);
}

/* Gradient text utility */
.text-gradient {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}


/* ──────────────────────────────────────────────────────────────
   5. LAYOUT UTILITIES
   ────────────────────────────────────────────────────────────── */

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

.container--narrow {
  max-width: var(--max-width-narrow);
}

.section {
  padding: var(--section-padding) 0;
  position: relative;
}

.section--full {
  min-height: 100vh;
  display: flex;
  align-items: center;
}


/* ──────────────────────────────────────────────────────────────
   6. BUTTONS
   ────────────────────────────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  font-family: var(--font-mono);
  font-size: var(--text-small);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.875rem 2rem;
  border: none;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: all var(--duration-normal) var(--ease-out);
  position: relative;
  overflow: hidden;
  text-decoration: none;
}

/* Primary — gradient fill */
.btn--primary {
  background: var(--gradient-accent);
  color: #fff;
  box-shadow: 0 0 30px rgba(155, 77, 255, 0.2);
}

.btn--primary:hover {
  box-shadow: 0 0 50px rgba(155, 77, 255, 0.35);
  transform: translateY(-2px);
}

/* Ghost — transparent with border */
.btn--ghost {
  background: transparent;
  color: var(--color-text);
  border: 1px solid var(--color-border);
}

.btn--ghost:hover {
  border-color: var(--color-text-muted);
  background: rgba(255, 255, 255, 0.03);
  transform: translateY(-2px);
}

/* Arrow icon in button */
.btn .btn-arrow {
  display: inline-block;
  transition: transform var(--duration-fast) var(--ease-out);
}

.btn:hover .btn-arrow {
  transform: translateX(4px);
}

/* Magnetic button wrapper — JS adds magnetic pull */
.magnetic-wrap {
  display: inline-block;
  position: relative;
}


/* ──────────────────────────────────────────────────────────────
   7. NAVIGATION
   ────────────────────────────────────────────────────────────── */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-sticky);
  padding: var(--space-lg) 0;
  transition: all var(--duration-normal) var(--ease-out);
}

.nav.is-scrolled {
  background: rgba(5, 5, 8, 0.85);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid var(--color-border);
  padding: var(--space-md) 0;
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  font-family: var(--font-mono);
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-text);
  text-decoration: none;
  z-index: 10;
}

.nav__logo-icon {
  width: 28px;
  height: 28px;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: var(--space-2xl);
}

.nav__link {
  font-family: var(--font-body);
  font-size: var(--text-small);
  font-weight: 400;
  color: var(--color-text-muted);
  text-decoration: none;
  position: relative;
  transition: color var(--duration-fast) var(--ease-out);
}

.nav__link:hover,
.nav__link.is-active {
  color: var(--color-text);
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gradient-accent-h);
  transition: width var(--duration-normal) var(--ease-out);
}

.nav__link:hover::after,
.nav__link.is-active::after {
  width: 100%;
}

/* Services dropdown */
.nav__dropdown {
  position: relative;
}

.nav__dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  cursor: pointer;
}

.nav__dropdown-trigger svg {
  width: 12px;
  height: 12px;
  transition: transform var(--duration-fast) var(--ease-out);
}

.nav__dropdown:hover .nav__dropdown-trigger svg {
  transform: rotate(180deg);
}

.nav__dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-xs);
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all var(--duration-fast) var(--ease-out);
}

/* Invisible bridge to prevent gap between trigger and menu */
.nav__dropdown-menu::before {
  content: '';
  position: absolute;
  top: -12px;
  left: 0;
  right: 0;
  height: 12px;
}

.nav__dropdown:hover .nav__dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}

.nav__dropdown-item {
  display: block;
  padding: var(--space-sm) var(--space-md);
  font-size: var(--text-small);
  color: var(--color-text-muted);
  border-radius: var(--radius-sm);
  transition: all var(--duration-fast) var(--ease-out);
}

.nav__dropdown-item:hover {
  background: rgba(155, 77, 255, 0.08);
  color: var(--color-text);
}

.nav__cta {
  margin-left: var(--space-lg);
}

/* Mobile hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: calc(var(--z-overlay) + 10);
  background: none;
  border: none;
  padding: 4px;
  position: relative;
}

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--color-text);
  transition: all var(--duration-fast) var(--ease-out);
}

/* Mobile menu overlay */
.nav__mobile {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #050508;
  z-index: calc(var(--z-overlay) + 5);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: var(--space-2xl);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity var(--duration-normal) var(--ease-out), visibility var(--duration-normal) var(--ease-out);
}

.nav__mobile.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.nav__mobile a:not(.btn) {
  font-family: var(--font-display);
  font-size: var(--text-h2);
  color: var(--color-text-muted);
  transition: all var(--duration-normal) var(--ease-out);
}

.nav__mobile a:not(.btn):hover {
  color: transparent;
  background: var(--gradient-accent-h);
  -webkit-background-clip: text;
  background-clip: text;
  transform: translateX(8px);
  letter-spacing: 0.02em;
}

.nav__mobile .btn {
  margin-top: var(--space-lg);
  font-size: var(--text-small);
}


/* ──────────────────────────────────────────────────────────────
   8. FOOTER
   ────────────────────────────────────────────────────────────── */

.footer {
  border-top: 1px solid var(--color-border);
  padding: var(--space-4xl) 0 var(--space-2xl);
  background: var(--color-bg);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--space-3xl);
  margin-bottom: var(--space-4xl);
}

.footer__brand p {
  color: var(--color-text-muted);
  font-size: var(--text-small);
  line-height: 1.7;
  margin-top: var(--space-md);
  max-width: 320px;
}

.footer__heading {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-text-dim);
  margin-bottom: var(--space-lg);
}

.footer__list li {
  margin-bottom: var(--space-sm);
}

.footer__list a {
  font-size: var(--text-small);
  color: var(--color-text-muted);
  transition: color var(--duration-fast) var(--ease-out);
}

.footer__list a:hover {
  color: var(--color-text);
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--space-2xl);
  border-top: 1px solid var(--color-border);
}

.footer__copyright {
  font-size: var(--text-xs);
  color: var(--color-text-dim);
}

.footer__socials {
  display: flex;
  gap: var(--space-md);
}

.footer__socials a {
  color: var(--color-text-dim);
  transition: color var(--duration-fast) var(--ease-out);
}

.footer__socials a:hover {
  color: var(--color-text);
}


/* ──────────────────────────────────────────────────────────────
   9. GLASSMORPHISM CARD
   ────────────────────────────────────────────────────────────── */

.glass-card {
  background: var(--color-bg-glass);
  backdrop-filter: blur(16px) saturate(1.3);
  -webkit-backdrop-filter: blur(16px) saturate(1.3);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  transition: all var(--duration-normal) var(--ease-out);
}

.glass-card:hover {
  border-color: var(--color-border-hover);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* Card with gradient top-border accent */
.glass-card--accent {
  position: relative;
  overflow: hidden;
}

.glass-card--accent::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-accent-h);
  opacity: 0;
  transition: opacity var(--duration-normal) var(--ease-out);
}

.glass-card--accent:hover::before {
  opacity: 1;
}


/* ──────────────────────────────────────────────────────────────
   10. MARQUEE / TICKER
   ────────────────────────────────────────────────────────────── */

.marquee {
  overflow: hidden;
  white-space: nowrap;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: var(--space-lg) 0;
}

.marquee__track {
  display: inline-flex;
  width: max-content;
  animation: marquee-scroll 40s linear infinite;
}

.marquee__item {
  font-family: var(--font-mono);
  font-size: var(--text-h4);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-text-dim);
  padding: 0 var(--space-2xl);
  display: inline-flex;
  align-items: center;
  gap: var(--space-xl);
  flex-shrink: 0;
}

.marquee__item::after {
  content: '·';
  color: var(--color-purple);
  font-size: 1.5em;
}

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

/* Pause on hover */
.marquee:hover .marquee__track {
  animation-play-state: paused;
}


/* ──────────────────────────────────────────────────────────────
   11. PAGE HERO
   ────────────────────────────────────────────────────────────── */

.page-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.page-hero--half {
  min-height: 60vh;
}

.page-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.page-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  opacity: 0.6;
}

/* Gradient overlay to ensure text readability */
.page-hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(5, 5, 8, 0.4) 0%,
    rgba(5, 5, 8, 0.2) 30%,
    rgba(5, 5, 8, 0.5) 70%,
    var(--color-bg) 100%
  );
}

.page-hero__content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 0 var(--container-padding);
}

.page-hero__title {
  margin-bottom: var(--space-lg);
}

.page-hero__subtitle {
  font-size: var(--text-body-lg);
  color: var(--color-text-muted);
  max-width: 600px;
  margin: 0 auto var(--space-2xl);
  line-height: 1.7;
}

.page-hero__actions {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
}


/* ──────────────────────────────────────────────────────────────
   12. SCROLL REVEAL / ANIMATION STATES
   ────────────────────────────────────────────────────────────── */

/* Elements waiting to be revealed by GSAP */
.js-reveal {
  opacity: 0;
  transform: translateY(40px);
}

.js-reveal-left {
  opacity: 0;
  transform: translateX(-60px);
}

.js-reveal-right {
  opacity: 0;
  transform: translateX(60px);
}

.js-reveal-scale {
  opacity: 0;
  transform: scale(0.92);
}

/* Split text — characters animated by JS (initial state set inline by JS) */
.js-split-text {
  /* Ensure container doesn't collapse while chars are invisible */
  min-height: 1em;
}

/* Counter — before animation */
.js-counter {
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
}

/* Disable animations for reduced motion */
@media (prefers-reduced-motion: reduce) {
  .js-reveal,
  .js-reveal-left,
  .js-reveal-right,
  .js-reveal-scale {
    opacity: 1;
    transform: none;
  }

  .js-split-text .char,
  .js-split-text .word {
    opacity: 1;
    transform: none;
  }

  .marquee__track {
    animation: none;
  }
}


/* ──────────────────────────────────────────────────────────────
   13. DIVIDER / SEPARATOR
   ────────────────────────────────────────────────────────────── */

.divider {
  width: 100%;
  height: 1px;
  background: var(--color-border);
}

.divider--gradient {
  background: var(--gradient-accent-h);
  opacity: 0.3;
}


/* ──────────────────────────────────────────────────────────────
   14. NOISE GRAIN OVERLAY (applies to body)
   ────────────────────────────────────────────────────────────── */

body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  background-repeat: repeat;
  opacity: 0.4;
}


/* ──────────────────────────────────────────────────────────────
   15. PAGE LOAD OVERLAY
   ────────────────────────────────────────────────────────────── */

.page-load-overlay {
  position: fixed;
  inset: 0;
  background: var(--color-bg);
  z-index: 10000;
  pointer-events: none;
}


/* ══════════════════════════════════════════════════════════════
   HOMEPAGE — Specific Sections
   ══════════════════════════════════════════════════════════════ */

/* ──────────────────────────────────────────────────────────────
   H1. WHO WE ARE — Split Layout
   ────────────────────────────────────────────────────────────── */

.home-about__grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: var(--space-4xl);
  align-items: start;
}

.home-about__left {
  position: sticky;
  top: 140px;
}

.home-about__number {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(5rem, 10vw, 8rem);
  line-height: 0.85;
  color: var(--color-surface);
  margin-bottom: var(--space-lg);
}

.home-about__right h2 {
  margin-bottom: var(--space-xl);
}

.home-about__right p {
  margin-bottom: var(--space-lg);
}

.home-about__right .btn {
  margin-top: var(--space-md);
}


/* ──────────────────────────────────────────────────────────────
   H2. SERVICES GRID — Bento Layout
   ────────────────────────────────────────────────────────────── */

.home-services__header {
  text-align: center;
  margin-bottom: var(--space-4xl);
}

.home-services__header h2 {
  margin-bottom: var(--space-sm);
}

.home-services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.home-services__card {
  padding: var(--space-2xl);
}

.home-services__icon {
  width: 48px;
  height: 48px;
  margin-bottom: var(--space-lg);
  color: var(--color-purple);
}

.home-services__icon svg {
  width: 100%;
  height: 100%;
}

.home-services__card h4 {
  margin-bottom: var(--space-sm);
}


/* ──────────────────────────────────────────────────────────────
   H3. TWO TRACKS CTA — Split
   ────────────────────────────────────────────────────────────── */

.home-tracks__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
}

.home-tracks__card {
  padding: var(--space-3xl);
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-border);
  background: var(--color-bg-card);
  transition: all var(--duration-normal) var(--ease-out);
}

.home-tracks__card:hover {
  border-color: var(--color-border-hover);
  transform: translateY(-4px);
}

.home-tracks__card--biz {
  background: linear-gradient(
    160deg,
    rgba(155, 77, 255, 0.06) 0%,
    var(--color-bg-card) 50%
  );
}

.home-tracks__card--creators {
  background: linear-gradient(
    160deg,
    rgba(255, 60, 172, 0.06) 0%,
    var(--color-bg-card) 50%
  );
}

.home-tracks__card h3 {
  margin-bottom: var(--space-lg);
}

.home-tracks__list {
  margin-bottom: var(--space-2xl);
}

.home-tracks__list li {
  font-size: var(--text-small);
  color: var(--color-text-muted);
  padding: var(--space-sm) 0;
  border-bottom: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.home-tracks__list li::before {
  content: '→';
  color: var(--color-purple);
  font-size: var(--text-xs);
  flex-shrink: 0;
}

.home-tracks__card--creators .home-tracks__list li::before {
  color: var(--color-pink);
}


/* ──────────────────────────────────────────────────────────────
   H4. STATS BAR
   ────────────────────────────────────────────────────────────── */

.home-stats {
  padding: var(--space-4xl) 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  background: var(--color-bg-elevated);
}

.home-stats__grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3xl);
}

.home-stats__item {
  text-align: center;
}

.home-stats__number {
  display: block;
  font-family: var(--font-mono);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--space-xs);
}

.home-stats__label {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-text-dim);
}

.home-stats__divider {
  width: 1px;
  height: 60px;
  background: var(--color-border);
  flex-shrink: 0;
}


/* ──────────────────────────────────────────────────────────────
   H5. CONTACT CTA
   ────────────────────────────────────────────────────────────── */

.home-cta__inner {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.home-cta__inner h2 {
  margin-bottom: var(--space-lg);
}

.home-cta__inner p {
  margin-bottom: var(--space-2xl);
}


/* ══════════════════════════════════════════════════════════════
   BIZ PAGE — Specific Sections
   ══════════════════════════════════════════════════════════════ */

/* ──────────────────────────────────────────────────────────────
   B1. SERVICES EDITORIAL LIST
   ────────────────────────────────────────────────────────────── */

.biz-services__header {
  margin-bottom: var(--space-4xl);
}

.biz-services__header h2 {
  margin-top: var(--space-sm);
}

.biz-services__list {
  border-top: 1px solid var(--color-border);
}

.biz-services__item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-2xl);
  padding: var(--space-xl) 0;
  border-bottom: 1px solid var(--color-border);
  cursor: default;
  transition: all var(--duration-normal) var(--ease-out);
}

.biz-services__item:hover {
  padding-left: var(--space-lg);
  background: rgba(155, 77, 255, 0.02);
}

.biz-services__num {
  font-family: var(--font-mono);
  font-size: var(--text-h3);
  font-weight: 700;
  color: var(--color-surface);
  flex-shrink: 0;
  min-width: 56px;
  transition: color var(--duration-normal) var(--ease-out);
}

.biz-services__item:hover .biz-services__num {
  color: var(--color-purple);
}

.biz-services__title {
  margin-bottom: var(--space-xs);
  transition: color var(--duration-fast) var(--ease-out);
}

.biz-services__item:hover .biz-services__title {
  color: var(--color-text);
}

.biz-services__desc {
  font-size: var(--text-small);
  color: var(--color-text-muted);
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all var(--duration-slow) var(--ease-out);
}

.biz-services__item:hover .biz-services__desc {
  max-height: 120px;
  opacity: 1;
  margin-top: var(--space-xs);
}


/* ──────────────────────────────────────────────────────────────
   B2. PRICING TIERS
   ────────────────────────────────────────────────────────────── */

.biz-pricing__header {
  text-align: center;
  margin-bottom: var(--space-4xl);
}

.biz-pricing__header h2 {
  margin-bottom: var(--space-sm);
}

.biz-pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  align-items: start;
}

.biz-pricing__card {
  padding: var(--space-2xl) var(--space-xl);
  display: flex;
  flex-direction: column;
  position: relative;
}

/* Featured / recommended tier */
.biz-pricing__card--featured {
  border-color: rgba(155, 77, 255, 0.25);
  box-shadow: 0 0 60px rgba(155, 77, 255, 0.1);
}

.biz-pricing__card--featured::before {
  opacity: 1;
}

.biz-pricing__card--featured:hover {
  transform: translateY(-4px);
}

.biz-pricing__badge {
  position: absolute;
  top: var(--space-xl);
  right: var(--space-xl);
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: var(--gradient-accent);
  color: #fff;
  padding: var(--space-2xs) var(--space-md);
  border-radius: var(--radius-pill);
  z-index: 1;
}

.biz-pricing__tier {
  font-family: var(--font-display);
  font-size: var(--text-h2);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: var(--space-xs);
}

.biz-pricing__tagline {
  font-size: var(--text-small);
  margin-bottom: var(--space-xl);
}

.biz-pricing__features {
  flex: 1;
  margin-bottom: var(--space-2xl);
}

.biz-pricing__features li {
  font-size: var(--text-small);
  color: var(--color-text-muted);
  padding: var(--space-sm) 0;
  border-bottom: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.biz-pricing__features li::before {
  content: '✓';
  color: var(--color-purple);
  font-size: var(--text-xs);
  font-weight: 700;
  flex-shrink: 0;
}

.biz-pricing__card .btn {
  align-self: stretch;
  text-align: center;
}


/* ══════════════════════════════════════════════════════════════
   CREATORS PAGE — Specific Sections
   ══════════════════════════════════════════════════════════════ */

/* ──────────────────────────────────────────────────────────────
   C1. FEATURES GRID
   ────────────────────────────────────────────────────────────── */

.creators-features__header {
  margin-bottom: var(--space-4xl);
}

.creators-features__header h2 {
  margin-top: var(--space-sm);
}

.creators-features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

/* Top row: 3 cards; bottom row: 2 centered */
.creators-features__grid .creators-feature:nth-child(4),
.creators-features__grid .creators-feature:nth-child(5) {
  /* Will be handled by grid auto placement - looks good as is */
}

.creators-feature {
  padding: var(--space-2xl);
}

.creators-feature__icon {
  width: 48px;
  height: 48px;
  margin-bottom: var(--space-lg);
  color: var(--color-pink);
}

.creators-feature__icon svg {
  width: 100%;
  height: 100%;
}

.creators-feature h4 {
  margin-bottom: var(--space-sm);
}

/* Pink accent hover for creator cards */
.creators-feature:hover {
  border-color: rgba(255, 60, 172, 0.2);
  box-shadow: 0 20px 60px rgba(255, 60, 172, 0.08);
}


/* ──────────────────────────────────────────────────────────────
   C2. TIMELINE — How It Works
   ────────────────────────────────────────────────────────────── */

.creators-timeline__header {
  text-align: center;
  margin-bottom: var(--space-4xl);
}

.creators-timeline__header h2 {
  margin-top: var(--space-sm);
}

.creators-timeline__track {
  position: relative;
}

.creators-timeline__line {
  position: absolute;
  top: 28px;
  left: 5%;
  width: 90%;
  height: 4px;
  z-index: 0;
}

.creators-timeline__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-2xl);
  position: relative;
  z-index: 1;
}

.creators-timeline__step {
  text-align: center;
  padding: var(--space-2xl) var(--space-lg);
}

.creators-timeline__dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--gradient-accent);
  margin: 0 auto var(--space-xl);
  position: relative;
  box-shadow: 0 0 20px rgba(255, 60, 172, 0.3);
}

.creators-timeline__dot::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px solid rgba(255, 60, 172, 0.2);
}

.creators-timeline__num {
  display: block;
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-pink);
  margin-bottom: var(--space-sm);
}

.creators-timeline__step h4 {
  margin-bottom: var(--space-sm);
}


/* ══════════════════════════════════════════════════════════════
   ABOUT PAGE — Specific Sections
   ══════════════════════════════════════════════════════════════ */

/* ──────────────────────────────────────────────────────────────
   A1. STORY — Editorial Pull-Quote
   ────────────────────────────────────────────────────────────── */

.about-story__grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: var(--space-4xl);
  align-items: start;
}

.about-story__left {
  position: sticky;
  top: 120px;
}

.about-story__big-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--color-surface);
  margin-top: var(--space-lg);
  line-height: 1;
}

.about-story__quote {
  font-family: var(--font-display);
  font-size: var(--text-h3);
  font-weight: 400;
  font-style: italic;
  line-height: 1.4;
  color: var(--color-text);
  margin-bottom: var(--space-2xl);
  padding-left: var(--space-xl);
  border-left: 2px solid var(--color-purple);
}

.about-story__right p {
  color: var(--color-text-muted);
  margin-bottom: var(--space-lg);
}

.about-story__right p:last-child {
  margin-bottom: 0;
}


/* ──────────────────────────────────────────────────────────────
   A2. MISSION & VISION
   ────────────────────────────────────────────────────────────── */

.about-mv__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
}

.about-mv__card {
  padding: var(--space-3xl) var(--space-2xl);
}

.about-mv__card .section-label {
  margin-bottom: var(--space-lg);
}

.about-mv__card h3 {
  margin-bottom: var(--space-lg);
}


/* ──────────────────────────────────────────────────────────────
   A3. VALUES
   ────────────────────────────────────────────────────────────── */

.about-values__header {
  margin-bottom: var(--space-4xl);
}

.about-values__header h2 {
  margin-top: var(--space-sm);
}

.about-values__list {
  border-top: 1px solid var(--color-border);
}

.about-values__item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-2xl);
  padding: var(--space-xl) 0;
  border-bottom: 1px solid var(--color-border);
  transition: all var(--duration-normal) var(--ease-out);
}

.about-values__item:hover {
  padding-left: var(--space-lg);
}

.about-values__num {
  font-family: var(--font-mono);
  font-size: var(--text-h3);
  font-weight: 700;
  color: var(--color-surface);
  flex-shrink: 0;
  min-width: 56px;
  transition: color var(--duration-normal) var(--ease-out);
}

.about-values__item:hover .about-values__num {
  color: var(--color-purple);
}

.about-values__item h4 {
  margin-bottom: var(--space-xs);
}


/* ══════════════════════════════════════════════════════════════
   CONTACT PAGE — Specific Sections
   ══════════════════════════════════════════════════════════════ */

/* Compact hero — shorter than half */
.page-hero--compact {
  min-height: 45vh;
}

/* ──────────────────────────────────────────────────────────────
   CT1. SPLIT LAYOUT
   ────────────────────────────────────────────────────────────── */

.contact-main__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-3xl);
  align-items: start;
}


/* ──────────────────────────────────────────────────────────────
   CT2. INFO CARD
   ────────────────────────────────────────────────────────────── */

.contact-info__card {
  padding: var(--space-3xl) var(--space-2xl);
}

.contact-info__card h3 {
  margin-bottom: var(--space-sm);
}

.contact-info__card > p {
  margin-bottom: var(--space-2xl);
}

.contact-info__items {
  margin-bottom: var(--space-2xl);
}

.contact-info__item {
  display: flex;
  gap: var(--space-lg);
  align-items: flex-start;
  padding: var(--space-md) 0;
}

.contact-info__item + .contact-info__item {
  border-top: 1px solid var(--color-border);
}

.contact-info__item svg {
  color: var(--color-purple);
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-info__label {
  display: block;
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-purple);
  margin-bottom: var(--space-2xs);
}

.contact-info__item p,
.contact-info__item a {
  font-size: var(--text-small);
  color: var(--color-text-muted);
}

.contact-info__item a:hover {
  color: var(--color-text);
}

.contact-info__meeting {
  padding-top: var(--space-xl);
  border-top: 1px solid var(--color-border);
  margin-bottom: var(--space-xl);
}

.contact-info__meeting p {
  margin-bottom: var(--space-md);
}

.contact-info__socials {
  display: flex;
  gap: var(--space-lg);
}

.contact-info__socials a {
  color: var(--color-text-dim);
  transition: color var(--duration-fast) var(--ease-out);
}

.contact-info__socials a:hover {
  color: var(--color-purple);
}


/* ──────────────────────────────────────────────────────────────
   CT3. FORM
   ────────────────────────────────────────────────────────────── */

.form-group {
  margin-bottom: var(--space-xl);
}

.form-group label {
  display: block;
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-muted);
  margin-bottom: var(--space-sm);
}

.form-group input,
.form-group textarea {
  width: 100%;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-md) var(--space-lg);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: var(--text-base);
  transition: all var(--duration-normal) var(--ease-out);
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--color-text-dim);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--color-purple);
  box-shadow: 0 0 0 3px rgba(155, 77, 255, 0.15), 0 0 20px rgba(155, 77, 255, 0.08);
}

.form-group textarea {
  resize: vertical;
  min-height: 140px;
}

.contact-form .btn {
  width: 100%;
}


/* ══════════════════════════════════════════════════════════════
   RESPONSIVE BREAKPOINTS
   ══════════════════════════════════════════════════════════════ */

/* Tablet landscape — 1024px */
@media (max-width: 1024px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
  }

  .home-services__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .home-about__grid {
    grid-template-columns: 200px 1fr;
    gap: var(--space-2xl);
  }

  .biz-pricing__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
  }

  .biz-pricing__card--featured {
    transform: scale(1.02);
  }

  .biz-pricing__card--featured:hover {
    transform: scale(1.02) translateY(-4px);
  }

  .creators-features__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Tablet portrait — 768px */
@media (max-width: 768px) {
  .nav__links {
    display: none;
  }

  .nav__cta {
    display: none;
  }

  .nav__hamburger {
    display: flex;
  }

  .nav__mobile {
    display: flex;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .page-hero {
    min-height: 80vh;
  }

  .page-hero--half {
    min-height: 50vh;
  }

  .home-about__grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .home-about__left {
    position: static;
    display: flex;
    align-items: center;
    gap: var(--space-lg);
  }

  .home-about__number {
    font-size: 4rem;
    margin-bottom: 0;
  }

  .home-services__grid {
    grid-template-columns: 1fr;
  }

  .home-tracks__grid {
    grid-template-columns: 1fr;
  }

  .home-stats__grid {
    flex-direction: column;
    gap: var(--space-2xl);
  }

  .home-stats__divider {
    width: 60px;
    height: 1px;
  }

  .biz-pricing__grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  .biz-pricing__card--featured {
    transform: none;
  }

  .biz-pricing__card--featured:hover {
    transform: translateY(-4px);
  }

  .biz-services__item {
    gap: var(--space-lg);
  }

  .biz-services__num {
    font-size: var(--text-h4);
    min-width: 40px;
  }

  .creators-features__grid {
    grid-template-columns: 1fr;
  }

  .creators-timeline__steps {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .creators-timeline__line {
    display: none;
  }

  .creators-timeline__step {
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .creators-timeline__dot {
    margin: 0 0 var(--space-lg) 0;
  }

  .about-story__grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .about-story__left {
    position: static;
    display: flex;
    align-items: center;
    gap: var(--space-lg);
  }

  .about-story__big-num {
    font-size: 1.75rem;
    margin-top: 0;
  }

  .about-story__quote {
    font-size: var(--text-h4);
  }

  .about-mv__grid {
    grid-template-columns: 1fr;
  }

  .about-values__item {
    gap: var(--space-lg);
  }

  .about-values__num {
    font-size: var(--text-h4);
    min-width: 40px;
  }

  .contact-main__grid {
    grid-template-columns: 1fr;
  }

  .page-hero--compact {
    min-height: 35vh;
  }
}

/* Mobile — 480px */
@media (max-width: 480px) {
  .page-hero__actions {
    flex-direction: column;
    align-items: center;
  }

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

  .home-tracks__card {
    padding: var(--space-2xl);
  }
}

