/* ═══════════════════════════════════════════════════════════
   XKLUSIVE MEDIA LLC — STYLE SYSTEM v3.0
   Where Culture Becomes Systems
   ═══════════════════════════════════════════════════════════ */

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

:root {
  --black: #000000;
  --white: #ffffff;
  --off-white: #e8e8e8;
  --gray-50: #fafafa;
  --gray-100: #f0f0f0;
  --gray-200: #c0c0c0;
  --gray-300: #a0a0a0;
  --gray-400: #808080;
  --gray-500: #606060;
  --gray-600: #404040;
  --gray-700: #2a2a2a;
  --gray-800: #1a1a1a;
  --gray-900: #0d0d0d;

  --accent: #ffffff;
  --accent-dim: rgba(255, 255, 255, 0.08);
  --accent-subtle: rgba(255, 255, 255, 0.04);

  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-quint: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out-circ: cubic-bezier(0.85, 0, 0.15, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

body {
  background: var(--black);
  color: var(--gray-400);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
  cursor: default;
}

body.loading {
  overflow: hidden;
}

::selection {
  background: var(--white);
  color: var(--black);
}

/* --- PARTICLE CANVAS --- */
#particle-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

/* --- NOISE OVERLAY --- */
.noise-overlay {
  position: fixed;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  pointer-events: none;
  z-index: 9997;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  animation: noiseShift 0.4s steps(3) infinite;
}

@keyframes noiseShift {
  0% {
    transform: translate(0, 0);
  }

  33% {
    transform: translate(-3%, -3%);
  }

  66% {
    transform: translate(3%, 2%);
  }

  100% {
    transform: translate(0, 0);
  }
}

/* ═══════════════════════════════════════════════════════════
   PRELOADER
   ═══════════════════════════════════════════════════════════ */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--black);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s var(--ease-out-expo), visibility 0.8s;
}

.preloader.done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.preloader-x {
  width: 60px;
  height: 60px;
}

.preloader-x-svg {
  width: 100%;
  height: 100%;
}

.x-stroke-left,
.x-stroke-right {
  stroke-dasharray: 120;
  stroke-dashoffset: 120;
  animation: drawX 1.2s var(--ease-out-expo) forwards;
}

.x-stroke-right {
  animation-delay: 0.15s;
}

@keyframes drawX {
  to {
    stroke-dashoffset: 0;
  }
}

.preloader-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.preloader-label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.4em;
  color: var(--gray-400);
  text-transform: uppercase;
}

.preloader-bar {
  width: 200px;
  height: 1px;
  background: var(--gray-800);
  overflow: hidden;
  border-radius: 1px;
}

.preloader-fill {
  width: 0%;
  height: 100%;
  background: var(--white);
  animation: preloaderFill 2s var(--ease-out-expo) forwards;
}

@keyframes preloaderFill {
  0% {
    width: 0%;
  }

  60% {
    width: 70%;
  }

  100% {
    width: 100%;
  }
}

/* ═══════════════════════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 28px 48px;
  transition: all 0.6s var(--ease-out-expo);
  opacity: 0;
  transform: translateY(-20px);
}

.nav.visible {
  opacity: 1;
  transform: translateY(0);
}

.nav.scrolled {
  padding: 16px 48px;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(20px) saturate(1.2);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1440px;
  margin: 0 auto;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--white);
  transition: opacity 0.3s;
}

.nav-logo:hover {
  opacity: 0.7;
}

.nav-x-icon {
  width: 24px;
  height: 24px;
}

.nav-wordmark {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.25em;
  color: var(--white);
}

.nav-status {
  display: flex;
  align-items: center;
  gap: 32px;
  position: relative;
}

.nav-link {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  color: var(--gray-400);
  text-transform: uppercase;
  cursor: pointer;
  transition: color 0.3s var(--ease-out-expo);
  padding: 4px 0;
}

.nav-link:hover,
.nav-link.active {
  color: var(--white);
}

.nav-meta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--white);
  animation: statusPulse 3s ease-in-out infinite;
}

@keyframes statusPulse {

  0%,
  100% {
    opacity: 0.3;
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }

  50% {
    opacity: 1;
    box-shadow: 0 0 12px 3px rgba(255, 255, 255, 0.15);
  }
}

.status-text {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  color: var(--gray-400);
  text-transform: uppercase;
}

/* Mobile toggle */
.nav-mobile-toggle {
  display: none;
  position: fixed;
  top: 28px;
  right: 24px;
  z-index: 1001;
  width: 32px;
  height: 24px;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  justify-content: space-between;
}

.nav-mobile-toggle span {
  display: block;
  width: 100%;
  height: 1px;
  background: var(--white);
  transition: all 0.3s var(--ease-out-expo);
}

/* ═══════════════════════════════════════════════════════════
   SECTION BASE
   ═══════════════════════════════════════════════════════════ */
.section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  z-index: 1;
}

/* ═══════════════════════════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════════════════════════ */
.section-hero {
  flex-direction: column;
  padding: 0 48px;
  background: var(--black);
}

.hero-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.03) 0%, transparent 70%);
  pointer-events: none;
  animation: heroGlowPulse 8s ease-in-out infinite;
}

@keyframes heroGlowPulse {

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

  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.15);
  }
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 48px;
  max-width: 900px;
  position: relative;
  z-index: 2;
}

.hero-logo-container {
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 1.2s var(--ease-out-expo), transform 1.2s var(--ease-out-expo);
}

.hero-logo-container.revealed {
  opacity: 1;
  transform: scale(1);
}

.hero-logo-mark {
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
}

.hero-x-logo {
  width: clamp(220px, 30vw, 420px);
  height: auto;
  mix-blend-mode: screen;
}

.hero-logo-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.hero-logo-name {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  letter-spacing: 0.3em;
  color: var(--white);
  text-transform: uppercase;
}

.hero-logo-sub {
  font-family: var(--font-display);
  font-size: clamp(0.7rem, 1.5vw, 1rem);
  font-weight: 400;
  letter-spacing: 0.5em;
  color: var(--gray-300);
  text-transform: uppercase;
}

.hero-description {
  font-family: var(--font-body);
  font-size: clamp(0.85rem, 1.2vw, 1rem);
  font-weight: 300;
  color: var(--gray-400);
  max-width: 640px;
  line-height: 1.9;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s var(--ease-out-expo) 1.4s, transform 1s var(--ease-out-expo) 1.4s;
}

.hero-description.revealed {
  opacity: 1;
  transform: translateY(0);
}



/* Hero scroll cue */
.hero-scroll-cue {
  position: absolute;
  bottom: 48px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  opacity: 0;
  transition: opacity 1s var(--ease-out-expo) 2.2s;
}

.hero-scroll-cue.revealed {
  opacity: 1;
}

.scroll-text {
  font-family: var(--font-mono);
  font-size: 0.55rem;
  letter-spacing: 0.4em;
  color: var(--gray-400);
  text-transform: uppercase;
}

.scroll-line-track {
  width: 1px;
  height: 48px;
  background: var(--gray-800);
  overflow: hidden;
}

.scroll-line-fill {
  width: 100%;
  height: 100%;
  background: var(--gray-400);
  transform: translateY(-100%);
  animation: scrollLinePulse 2.5s var(--ease-in-out-circ) infinite;
}

@keyframes scrollLinePulse {
  0% {
    transform: translateY(-100%);
  }

  50% {
    transform: translateY(0%);
  }

  100% {
    transform: translateY(100%);
  }
}

/* Hero founded text */
.hero-founded {
  position: absolute;
  bottom: 48px;
  right: 48px;
  opacity: 0;
  transition: opacity 1s var(--ease-out-expo) 2s;
}

.hero-founded.revealed {
  opacity: 1;
}

.founded-text {
  font-family: var(--font-mono);
  font-size: 0.55rem;
  color: var(--gray-400);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* ═══════════════════════════════════════════════════════════
   SECTION DIVIDER
   ═══════════════════════════════════════════════════════════ */
.section-divider {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 60px 48px;
  background: var(--black);
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.divider-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transform: scaleX(0);
  transition: transform 1.2s var(--ease-out-expo);
}

.divider-line:first-child {
  transform-origin: right;
}

.divider-line:last-child {
  transform-origin: left;
}

.section-divider.revealed .divider-line {
  transform: scaleX(1);
}

.divider-label {
  font-family: var(--font-display);
  font-size: clamp(0.6rem, 1vw, 0.75rem);
  letter-spacing: 0.4em;
  color: var(--gray-200);
  text-transform: uppercase;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 1s var(--ease-out-expo) 0.4s;
}

.section-divider.revealed .divider-label {
  opacity: 1;
}

/* ═══════════════════════════════════════════════════════════
   CONTENT SECTIONS
   ═══════════════════════════════════════════════════════════ */
.section-content {
  padding: 160px 48px;
  background: var(--black);
  min-height: auto;
}

.section-content--alt {
  background: var(--gray-900);
}

.section-inner {
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
  position: relative;
}

.section-inner--wide {
  max-width: 1200px;
}

/* Section header */
.section-header {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 80px;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

.section-header.revealed {
  opacity: 1;
  transform: translateY(0);
}

.section-index {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--gray-400);
  letter-spacing: 0.15em;
  font-weight: 500;
  padding-top: 8px;
}

.section-title-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--white);
  line-height: 1;
  text-transform: uppercase;
}

.title-underline {
  width: 0;
  height: 2px;
  background: var(--white);
  transition: width 1s var(--ease-out-expo) 0.3s;
}

.section-header.revealed .title-underline {
  width: 60px;
}

/* Content blocks */
.content-block {
  margin-bottom: 56px;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

.content-block.revealed {
  opacity: 1;
  transform: translateY(0);
}

.content-block:last-child {
  margin-bottom: 0;
}

.content-block--hero {
  margin-bottom: 64px;
}

.content-block--accent {
  padding-left: 32px;
  border-left: 2px solid rgba(255, 255, 255, 0.12);
}

.content-block--closing {
  text-align: center;
  padding: 60px 0 0;
}

/* Typography */
.text-display {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 500;
  color: var(--white);
  line-height: 1.4;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}

.text-display:last-child {
  margin-bottom: 0;
}

.text-display--lg {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
}

.text-body {
  font-family: var(--font-body);
  font-size: clamp(0.9rem, 1.2vw, 1.05rem);
  font-weight: 300;
  color: var(--gray-400);
  line-height: 1.9;
  margin-bottom: 20px;
  max-width: 680px;
}

.text-body:last-child {
  margin-bottom: 0;
}

.text-body--centered {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.text-body-label {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--gray-400);
  margin-bottom: 32px;
}

.text-statement {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
  font-weight: 400;
  color: var(--off-white);
  line-height: 1.7;
  margin-bottom: 8px;
}

.text-statement:last-child {
  margin-bottom: 0;
}

.text-highlight {
  color: var(--white);
  font-weight: 500;
  position: relative;
}

.text-highlight::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.15);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.8s var(--ease-out-expo);
}

.content-block.revealed .text-highlight::after {
  transform: scaleX(1);
}

.section-body--centered {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Background section index */
.section-bg-index {
  position: absolute;
  top: 50%;
  right: -40px;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: clamp(15rem, 25vw, 25rem);
  font-weight: 700;
  color: rgba(255, 255, 255, 0.015);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

/* ═══════════════════════════════════════════════════════════
   DOMAINS GRID
   ═══════════════════════════════════════════════════════════ */
.domains-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.domain-card {
  position: relative;
  padding: 48px 36px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  transition: all 0.5s var(--ease-out-expo);
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px);
}

.domain-card.revealed {
  opacity: 1;
  transform: translateY(0);
}

.domain-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-4px);
}

.domain-card:hover .domain-glow {
  opacity: 1;
}

.domain-card:hover .domain-number {
  color: var(--white);
}

.domain-number {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  color: var(--gray-700);
  letter-spacing: 0.2em;
  display: block;
  margin-bottom: 24px;
  transition: color 0.4s var(--ease-out-expo);
}

.domain-name {
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: 500;
  color: var(--off-white);
  margin-bottom: 16px;
  letter-spacing: 0.01em;
  text-align: center;
}

.domain-desc {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 300;
  color: var(--gray-400);
  line-height: 1.7;
  text-align: center;
}

.domain-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.06) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.5s var(--ease-out-expo);
  pointer-events: none;
}

/* ═══════════════════════════════════════════════════════════
   PILLARS ROW
   ═══════════════════════════════════════════════════════════ */
.pillars-row {
  display: flex;
  gap: 48px;
  margin-top: 16px;
}

.pillar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  flex: 1;
  padding: 40px 24px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.5s var(--ease-out-expo);
  opacity: 0;
  transform: translateY(20px);
}

.pillar.revealed {
  opacity: 1;
  transform: translateY(0);
}

.pillar:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-4px);
}

.pillar-icon {
  width: 48px;
  height: 48px;
  color: var(--gray-400);
  transition: color 0.4s var(--ease-out-expo);
}

.pillar:hover .pillar-icon {
  color: var(--white);
}

.pillar-label {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--off-white);
  text-align: center;
  letter-spacing: 0.03em;
}

/* ═══════════════════════════════════════════════════════════
   CULTURAL IMPACT (final section)
   ═══════════════════════════════════════════════════════════ */
.section-impact-final {
  background: var(--black);
  padding-bottom: 200px;
}

.section-impact-final::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 400px;
  background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.01));
  pointer-events: none;
}

/* ═══════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════ */
.footer {
  padding: 80px 48px 48px;
  background: var(--black);
  position: relative;
  z-index: 1;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
  margin-bottom: 64px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer-x-icon {
  width: 32px;
  height: 32px;
  opacity: 0.4;
}

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

.footer-name {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--white);
  /*text-transform: uppercase;*/
}

.footer-desc {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  color: var(--gray-200);
  letter-spacing: 0.1em;
}

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

.footer-tagline {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  color: var(--gray-400);
  /*text-transform: uppercase;*/
}

.footer-year {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  color: var(--gray-400);
  letter-spacing: 0.1em;
}



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

  .pillars-row {
    gap: 24px;
  }

  .nav-status {
    display: none;
  }

  .nav-mobile-toggle {
    display: flex;
  }
}

@media (max-width: 768px) {
  .section-hero {
    padding: 0 24px;
  }

  .section-content {
    padding: 100px 24px;
  }

  .section-divider {
    padding: 40px 24px;
    flex-direction: column;
    gap: 16px;
  }

  .divider-line {
    width: 60px;
    flex: none;
  }

  .divider-label {
    font-size: 0.55rem;
    white-space: normal;
    text-align: center;
    letter-spacing: 0.25em;
  }

  .domains-grid {
    grid-template-columns: 1fr;
  }

  .pillars-row {
    flex-direction: column;
    gap: 16px;
  }

  .hero-coordinates {
    display: none;
  }

  .section-header {
    margin-bottom: 56px;
  }

  .nav {
    padding: 20px 24px;
  }

  .nav.scrolled {
    padding: 14px 24px;
  }

  .nav-meta {
    display: none;
  }

  .footer-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
  }

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

  .section-bg-index {
    font-size: 10rem;
    right: -20px;
  }

  .content-block--accent {
    padding-left: 20px;
  }

  .hero-logo-img {
    width: clamp(200px, 60vw, 320px);
  }
}

@media (max-width: 480px) {
  .hero-tagline {
    gap: 6px;
  }

  .tagline-word {
    font-size: 0.6rem;
    letter-spacing: 0.25em;
  }

  .section-bg-index {
    display: none;
  }
}