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

:root {
  --black: #000;
  --white: #fff;
  --purple: #b94fff;
  --magenta: #e040fb;
  --purple-dark: #7c3aed;
  --muted: rgba(255,255,255,0.55);
  --glass: rgba(255,255,255,0.07);
  --glass-border: rgba(255,255,255,0.12);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

h1, h2 {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.03em;
  line-height: 1;
}

h1 { font-size: clamp(3rem, 9vw, 7.5rem); }
h2 { font-size: clamp(2.2rem, 6vw, 5rem); }
h4 { font-size: 1rem; font-weight: 600; margin-bottom: 8px; }

.container { max-width: 1100px; margin: 0 auto; padding: 0 40px; }

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 40px;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(12px);
}
.logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.35rem;
  letter-spacing: 0.15em;
}
.nav-spacer { flex: 1; }
.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
  align-items: center;
}
.nav-links a {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color .2s;
}
.nav-links a:hover { color: var(--white); }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-toggle {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color .2s;
  background: none;
  border: none;
  font-family: 'Inter', sans-serif;
  padding: 0;
  line-height: 1;
  vertical-align: middle;
}
.nav-dropdown-toggle:hover { color: var(--white); }
.nav-dropdown-toggle svg { transition: transform .2s; }
.nav-dropdown:hover .nav-dropdown-toggle,
.nav-dropdown.open .nav-dropdown-toggle { color: var(--white); }
.nav-dropdown:hover .nav-dropdown-toggle svg,
.nav-dropdown.open .nav-dropdown-toggle svg { transform: rotate(180deg); }
.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 200px;
  background: rgba(8,5,16,0.97);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  backdrop-filter: blur(20px);
  padding: 22px 0 6px;
  list-style: none;
  z-index: 200;
  box-shadow: 0 16px 40px rgba(0,0,0,0.5);
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu { display: block; }
.nav-dropdown-menu li a {
  display: block;
  padding: 12px 20px;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.6);
  transition: color .15s, background .15s;
}
.nav-dropdown-menu li a:hover { color: var(--white); background: rgba(185,79,255,0.1); }
.hamburger {
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.3rem;
  cursor: pointer;
  display: none;
}

/* ── HERO ── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 80px;
  overflow: hidden;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.65) 100%);
}
.hero--subpage { height: 75vh; min-height: 480px; }
.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-content {
  position: relative;
  z-index: 1;
  padding: 0 60px;
}
.hero-content h1 { color: var(--white); }
.page-intro { padding: 80px 0; }
.page-intro h1 { margin-bottom: 24px; }
.page-intro p { color: var(--muted); line-height: 1.8; margin-bottom: 16px; max-width: 680px; }
.page-intro .highlight { color: var(--white); }
.page-intro .subpage-cta { margin-top: 32px; }
.btn-scroll {
  display: inline-block;
  margin-top: 32px;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 10px 24px;
  border-radius: 999px;
  transition: all .2s;
}
.btn-scroll:hover { color: var(--white); border-color: var(--white); }

/* ── TAGLINE SECTION ── */
.tagline-section {
  padding: 80px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.tagline-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.tagline-label {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  letter-spacing: 0.04em;
  line-height: 1.2;
}
.tagline-right p { color: var(--muted); font-size: 0.95rem; line-height: 1.8; }

/* ── PHOTO BANNER ── */
.photo-banner {
  height: 480px;
  overflow: hidden;
  position: relative;
}
.photo-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}

/* ── ENGAGEMENT ── */
.engagement-section {
  position: relative;
  padding: 100px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
}
.engagement-bg {
  position: absolute;
  inset: 0;
}
.engagement-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  opacity: 0.18;
}
.engagement-inner { position: relative; z-index: 1; }
.engagement-sub {
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  color: var(--muted);
  margin-bottom: 16px;
}
.engagement-section h2 { margin-bottom: 40px; }
.engagement-body {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.9;
  max-width: 600px;
}
.engagement-body em { color: var(--white); font-style: normal; }

/* ── BOOK / EVENT CARDS ── */
.book-section { padding: 100px 0; }
.book-section .container { max-width: 100%; padding: 0 40px; }
.section-label {
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  color: var(--muted);
  text-align: center;
  margin-bottom: 60px;
}
.event-cards {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
}
.event-card {
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 4px;
  padding: 48px 40px;
  transition: border-color .3s;
}
.event-card:hover { border-color: var(--purple); }
.event-icon {
  margin-bottom: 24px;
  display: block;
}
.event-icon img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}
.event-card h2 { margin-bottom: 20px; }
.event-card p { color: var(--muted); font-size: 0.9rem; line-height: 1.8; margin-bottom: 36px; }
.event-card-actions { display: flex; gap: 12px; align-items: center; flex-wrap: nowrap; }
.event-card-actions .btn-primary,
.event-card-actions .btn-ghost { padding: 11px 20px; font-size: 0.72rem; white-space: nowrap; }

.btn-primary {
  display: inline-block;
  background: var(--purple);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  padding: 12px 28px;
  border-radius: 999px;
  transition: background .2s, transform .2s;
  border: none;
  cursor: pointer;
}
.btn-primary:hover { background: var(--magenta); transform: translateY(-1px); }

.btn-ghost {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--muted);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 12px 24px;
  border-radius: 999px;
  transition: color .2s, border-color .2s;
}
.btn-ghost:hover { color: var(--white); border-color: var(--white); }

/* ── WHY SECTION ── */
.why-section {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}
.why-bg {
  position: absolute;
  inset: 0;
}
.why-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.why-container { position: relative; z-index: 1; }
.why-label { text-align: left; margin-bottom: 60px; }
.why-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 80px;
}
.why-item {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  padding: 32px 28px;
  backdrop-filter: blur(12px);
}
.why-icon { width: 48px; height: 48px; object-fit: contain; display: block; margin-bottom: 16px; }
.why-item p { color: var(--muted); font-size: 0.88rem; line-height: 1.7; }

.zero-effort {
  text-align: center;
  padding-top: 60px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.zero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.8rem, 4vw, 3.5rem);
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}
.zero-sub {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: var(--muted);
}

/* ── CONTACT ── */
.contact-section {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: stretch;
}
.contact-photo {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.contact-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.contact-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
}
.contact-overlay {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 100px 40px;
}
.contact-left h2 { margin-bottom: 20px; line-height: 1; }
.contact-left p { color: var(--muted); font-size: 0.9rem; }

.contact-form {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  padding: 40px 36px;
  backdrop-filter: blur(16px);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: var(--muted);
  text-transform: uppercase;
}
.form-group input {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 4px;
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  padding: 12px 14px;
  outline: none;
  transition: border-color .2s;
}
.form-group input:focus { border-color: var(--purple); }
.radio-group { display: flex; flex-direction: column; gap: 10px; margin-top: 4px; }
.radio-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--muted);
  cursor: pointer;
  text-transform: none;
  letter-spacing: 0;
}
.radio-label input[type="radio"] { accent-color: var(--purple); width: 15px; height: 15px; }

.btn-submit {
  background: var(--black);
  color: var(--white);
  border: none;
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  padding: 16px;
  border-radius: 4px;
  cursor: pointer;
  transition: background .2s;
  margin-top: 8px;
}
.btn-submit:hover { background: var(--purple); }
.form-note { text-align: center; font-size: 0.75rem; color: var(--muted); }

/* ── FOOTER ── */
.footer {
  padding: 32px 40px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footer p {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: var(--muted);
}

/* ── SUB-PAGE HERO ── */
.subpage-hero {
  padding: 140px 0 80px;
}
.subpage-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.subpage-photo {
  border-radius: 4px;
  overflow: hidden;
  height: 420px;
}
.subpage-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.subpage-hero h1 { margin-bottom: 24px; }
.subpage-hero p { color: var(--muted); line-height: 1.8; margin-bottom: 16px; }
.subpage-hero .highlight { color: var(--white); }
.subpage-cta { margin-top: 32px; }

/* ── MACHINES SECTION ── */
.machines-section {
  padding: 80px 0;
  background: var(--black);
}
.machines-grid { width: 100%; }
.machine-item {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}
.machine-item img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

/* ── FEATURES SECTION ── */
.features-section {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}
.features-bg {
  position: absolute;
  inset: 0;
}
.features-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.features-container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.feature-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  padding: 32px 28px;
  backdrop-filter: blur(12px);
}
.feature-icon-img { width: 44px; height: 44px; object-fit: contain; margin-bottom: 16px; display: block; }
.feature-card h4 {
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 16px;
}
.feature-card ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.feature-card ul li { font-size: 0.88rem; color: var(--muted); padding-left: 16px; position: relative; }
.feature-card ul li::before { content: '·'; position: absolute; left: 0; color: var(--purple); }
.feature-card ul li strong { color: var(--white); font-weight: 500; }

/* ── HOW IT WORKS ── */
.hiw-section { padding: 100px 0; background: var(--black); }
.hiw-section .section-label { margin-bottom: 60px; }
.hiw-steps { display: flex; align-items: flex-start; gap: 0; }
.hiw-step { flex: 1; display: flex; flex-direction: column; gap: 16px; }
.hiw-number { font-family: 'Bebas Neue', sans-serif; font-size: 3.5rem; line-height: 1; color: var(--purple); letter-spacing: 0.05em; }
.hiw-step h4 { font-family: 'Bebas Neue', sans-serif; font-size: 1.4rem; letter-spacing: 0.08em; color: var(--white); }
.hiw-step p { font-size: 0.9rem; color: var(--muted); line-height: 1.8; max-width: 260px; }
.hiw-connector { flex-shrink: 0; width: 60px; height: 1px; background: rgba(255,255,255,0.12); margin-top: 28px; }

/* ── SOUND BUTTON ── */
.sound-btn {
  position: absolute;
  bottom: 32px;
  right: 32px;
  z-index: 2;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition: background .2s, border-color .2s;
}
.sound-btn:hover { background: rgba(255,255,255,0.2); border-color: rgba(255,255,255,0.4); }

/* ── IN ACTION PAGE ── */
.ia-intro { padding: 100px 0 20px; border-bottom: none; }
.ia-intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.ia-tag { display: inline-block; font-size: 0.72rem; letter-spacing: 0.2em; color: var(--purple); text-transform: uppercase; margin-bottom: 24px; }
.ia-intro-left h2 { line-height: 1.05; }
.ia-intro-right p { color: var(--muted); font-size: 0.95rem; line-height: 1.9; margin-bottom: 20px; }
.ia-highlight { color: var(--white) !important; font-style: italic; }

.ia-videos { padding: 40px 0 60px; }
.ia-videos .section-label { margin-bottom: 24px; }
.ia-videos-intro { max-width: 680px; margin: 0 auto 48px; text-align: center; color: var(--muted); font-size: 0.82rem; line-height: 1.8; font-style: italic; }
.ia-video-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; max-width: 1100px; margin: 0 auto; }
.ia-video-col { display: flex; flex-direction: column; }
.ia-video-col .ia-video-wrap { aspect-ratio: 9 / 16; background: #0a0a0a; margin-bottom: 20px; }
.ia-video-col .ia-video-wrap video { width: 100%; height: 100%; object-fit: cover; display: block; }
.ia-video-col-title { font-family: 'Bebas Neue', sans-serif; font-size: 1.4rem; letter-spacing: 0.08em; color: var(--white); margin-bottom: 8px; }
.ia-video-col-sub { font-size: 0.85rem; color: var(--muted); line-height: 1.7; }
.ia-video-single { max-width: 860px; margin: 0 auto; }
.ia-video-wrap { position: relative; border-radius: 8px; overflow: hidden; }
.ia-video-wrap video { width: 100%; display: block; background: #0a0a0a; }
.sound-btn--reel { position: absolute; bottom: 16px; right: 16px; }
.ia-video-caption { font-size: 0.68rem; letter-spacing: 0.18em; color: rgba(255,255,255,0.25); margin-top: 10px; text-transform: uppercase; text-align: center; }

/* THE STAND */
.ia-stand { padding: 30px 0 40px; }
.ia-stand .section-label { margin-bottom: 24px; }
.ia-stand-intro { max-width: 680px; margin: 0 auto 48px; text-align: center; color: var(--muted); font-size: 0.82rem; line-height: 1.8; font-style: italic; }
.ia-stand-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 1000px; margin: 0 auto; }
.ia-stand-img { border-radius: 8px; overflow: hidden; aspect-ratio: 3 / 4; background: #0a0a0a; }
.ia-stand-img img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* LIVE ON THE FLOOR */
.ia-live { padding: 80px 0; }
.ia-live-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.ia-live-text .ia-tag { margin-bottom: 20px; }
.ia-live-text h2 { line-height: 1.05; margin-bottom: 28px; }
.ia-live-text p { color: var(--muted); font-size: 0.95rem; line-height: 1.9; margin-bottom: 20px; }
.ia-live-video { position: relative; }
.ia-live-video .ia-video-wrap { aspect-ratio: 9 / 16; max-width: 420px; margin: 0 auto; background: #0a0a0a; }
.ia-live-video .ia-video-wrap video { width: 100%; height: 100%; object-fit: cover; display: block; }

.ia-impact { position: relative; padding: 60px 0 100px; overflow: hidden; }
.ia-impact-bg { position: absolute; inset: 0; }
.ia-impact-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.12; }
.ia-impact-inner { position: relative; z-index: 1; }
.ia-impact-inner .section-label { text-align: left; margin-bottom: 60px; }
.ia-impact-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; }
.ia-impact-item { border-top: 1px solid rgba(255,255,255,0.12); padding-top: 32px; }
.ia-impact-number { font-family: 'Bebas Neue', sans-serif; font-size: clamp(3rem, 6vw, 5rem); color: var(--purple); line-height: 1; margin-bottom: 16px; }
.ia-impact-item p { font-size: 0.88rem; color: var(--muted); line-height: 1.8; }

.ia-quote { position: relative; padding: 100px 0; text-align: center; overflow: hidden; }
.ia-quote-bg { position: absolute; inset: 0; }
.ia-quote-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center; opacity: 0.18; }
.ia-quote .container { position: relative; z-index: 1; }
.ia-blockquote { font-family: 'Bebas Neue', sans-serif; font-size: clamp(1.8rem, 4vw, 3.2rem); letter-spacing: 0.03em; color: var(--white); max-width: 800px; margin: 0 auto 20px; line-height: 1.2; }
.ia-quote-attr { font-size: 0.75rem; letter-spacing: 0.15em; color: rgba(255,255,255,0.25); text-transform: uppercase; }

.ia-cta { padding: 120px 0; text-align: center; }

/* ── INLINE TEXT LINKS ── */
.inline-link { color: var(--white); border-bottom: 1px solid rgba(185,79,255,0.5); transition: color .2s, border-color .2s; }
.inline-link:hover { color: var(--purple); border-bottom-color: var(--purple); }

/* ── EXPLORE / RELATED LINKS ── */
.explore-section { padding: 80px 0 100px; border-top: 1px solid rgba(255,255,255,0.07); }
.explore-section .section-label { text-align: center; margin-bottom: 48px; }
.explore-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 1100px; margin: 0 auto; }
.explore-card { display: block; padding: 32px 28px; border: 1px solid rgba(255,255,255,0.08); border-radius: 8px; background: rgba(255,255,255,0.02); transition: border-color .25s, background .25s, transform .25s; text-decoration: none; }
.explore-card:hover { border-color: rgba(185,79,255,0.4); background: rgba(185,79,255,0.04); transform: translateY(-3px); }
.explore-card-tag { font-size: 0.66rem; letter-spacing: 0.22em; color: var(--purple); text-transform: uppercase; margin-bottom: 14px; display: block; }
.explore-card-title { font-family: 'Bebas Neue', sans-serif; font-size: 1.4rem; letter-spacing: 0.06em; color: var(--white); margin-bottom: 10px; line-height: 1.1; }
.explore-card-desc { font-size: 0.82rem; color: var(--muted); line-height: 1.7; margin-bottom: 18px; }
.explore-card-arrow { font-size: 0.74rem; letter-spacing: 0.18em; color: var(--white); text-transform: uppercase; display: inline-flex; align-items: center; gap: 8px; }
.explore-card-arrow::after { content: '→'; transition: transform .25s; }
.explore-card:hover .explore-card-arrow::after { transform: translateX(4px); }

@media (max-width: 900px) {
  .explore-grid { grid-template-columns: 1fr; max-width: 480px; gap: 16px; }
  .explore-section { padding: 60px 0 80px; }
}
.ia-cta h2 { margin-bottom: 20px; }
.ia-cta p { color: var(--muted); font-size: 0.95rem; margin-bottom: 40px; }

@media (max-width: 900px) {
  .ia-intro-grid { grid-template-columns: 1fr; gap: 40px; }
  .ia-video-pair { grid-template-columns: 1fr; gap: 48px; max-width: 480px; }
  .ia-stand-grid { grid-template-columns: 1fr; gap: 16px; max-width: 480px; }
  .ia-impact-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .ia-live-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ── THE MACHINE PAGE ── */
.tm-intro { padding: 100px 0 40px; }
.tm-intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.tm-intro-left h2 { line-height: 1.05; }
.tm-intro-right p { color: var(--muted); font-size: 0.95rem; line-height: 1.9; margin-bottom: 20px; }

.tm-showcase { padding: 60px 0 30px; }
.tm-showcase-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; max-width: 1100px; margin: 0 auto; }
.tm-showcase-item { display: flex; flex-direction: column; }
.tm-video-wrap { position: relative; border-radius: 8px; overflow: hidden; aspect-ratio: 9 / 16; background: #0a0a0a; margin-bottom: 24px; }
.tm-video-wrap video { width: 100%; height: 100%; object-fit: cover; display: block; }
.tm-showcase-title { font-family: 'Bebas Neue', sans-serif; font-size: 1.6rem; letter-spacing: 0.06em; color: var(--white); margin-bottom: 8px; }
.tm-showcase-sub { font-size: 0.88rem; color: var(--muted); line-height: 1.7; }

.tm-features { position: relative; padding: 50px 0 100px; overflow: hidden; }
.tm-features-bg { position: absolute; inset: 0; }
.tm-features-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.08; }
.tm-features-inner { position: relative; z-index: 1; }
.tm-features-label { text-align: center; margin-bottom: 64px; }
.tm-features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px 40px; }
.tm-feature { position: relative; padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.12); }
.tm-feature-num { font-family: 'Bebas Neue', sans-serif; font-size: 1.4rem; color: var(--purple); letter-spacing: 0.1em; margin-bottom: 18px; }
.tm-feature h4 { font-size: 1.05rem; font-weight: 600; color: var(--white); margin-bottom: 10px; }
.tm-feature p { font-size: 0.88rem; color: var(--muted); line-height: 1.8; }

.tm-specs { padding: 60px 0 80px; }
.tm-specs-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; border-top: 1px solid rgba(255,255,255,0.12); border-bottom: 1px solid rgba(255,255,255,0.12); padding: 48px 0; }

/* Invitation to play */
.tm-invite { padding: 80px 0 100px; }
.tm-invite-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.tm-invite-text .ia-tag { margin-bottom: 20px; }
.tm-invite-text h2 { line-height: 1.05; margin-bottom: 28px; }
.tm-invite-text p { color: var(--muted); font-size: 0.95rem; line-height: 1.9; margin-bottom: 20px; }
.tm-invite-wrap { position: relative; border-radius: 8px; overflow: hidden; background: #0a0a0a; aspect-ratio: 9 / 16; max-width: 420px; margin: 0 auto; }
.tm-invite-wrap video { width: 100%; height: 100%; object-fit: cover; display: block; }
.tm-spec { display: flex; flex-direction: column; align-items: center; gap: 12px; text-align: center; }
.tm-spec-label { font-size: 0.68rem; letter-spacing: 0.22em; color: rgba(255,255,255,0.4); text-transform: uppercase; }
.tm-spec-value { font-family: 'Bebas Neue', sans-serif; font-size: clamp(2rem, 4vw, 3.2rem); color: var(--purple); letter-spacing: 0.04em; line-height: 1; }

@media (max-width: 900px) {
  .tm-intro-grid { grid-template-columns: 1fr; gap: 40px; }
  .tm-showcase-grid { grid-template-columns: 1fr; max-width: 480px; }
  .tm-features-grid { grid-template-columns: 1fr 1fr; gap: 40px 28px; }
  .tm-specs-grid { grid-template-columns: 1fr 1fr; gap: 32px; padding: 32px 0; }
  .tm-invite-grid { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 600px) {
  .tm-features-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ── FAQ ── */
.faq-section { padding: 100px 0; }
.faq-container { max-width: 780px; }
.faq-group { margin-bottom: 60px; }
.faq-group-title { font-family: 'Bebas Neue', sans-serif; font-size: 1rem; letter-spacing: 0.18em; color: var(--purple); margin-bottom: 8px; padding-bottom: 12px; border-bottom: 1px solid rgba(255,255,255,0.07); }
.faq-item { border-bottom: 1px solid rgba(255,255,255,0.07); }
.faq-question { width: 100%; background: none; border: none; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 22px 0; text-align: left; font-family: 'Inter', sans-serif; font-size: 0.95rem; font-weight: 500; color: rgba(255,255,255,0.75); cursor: pointer; transition: color .2s; }
.faq-question:hover, .faq-item.open .faq-question { color: var(--white); }
.faq-icon { flex-shrink: 0; transition: transform .3s; color: rgba(255,255,255,0.3); }
.faq-item.open .faq-icon { transform: rotate(180deg); color: var(--purple); }
.faq-answer { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .3s ease; }
.faq-item.open .faq-answer { grid-template-rows: 1fr; }
.faq-answer > div { overflow: hidden; }
.faq-answer p { font-size: 0.88rem; color: var(--muted); line-height: 1.9; padding-bottom: 22px; }
.faq-cta { margin-top: 60px; display: flex; align-items: center; gap: 24px; }
.faq-cta p { font-size: 0.95rem; color: var(--muted); }

/* ── WHATSAPP ── */
.whatsapp-btn { position: fixed; bottom: 28px; right: 28px; z-index: 200; width: 56px; height: 56px; border-radius: 50%; background: #25D366; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 20px rgba(37,211,102,0.35); transition: transform .2s, box-shadow .2s; }
.whatsapp-btn:hover { transform: scale(1.08); box-shadow: 0 6px 28px rgba(37,211,102,0.5); }

/* ── SITE FOOTER ── */
.site-footer {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 60px 40px 32px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 48px;
}

.footer-copy {
  font-size: 0.62rem;
  color: rgba(255,255,255,0.2);
  letter-spacing: 0.04em;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: right;
}

.footer-links a {
  font-size: 0.82rem;
  color: var(--muted);
  text-decoration: none;
  transition: color .2s;
}
.footer-links a:hover { color: var(--white); }

.footer-wordmark {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 15.4vw, 20rem);
  line-height: 0.85;
  letter-spacing: -0.01em;
  color: var(--white);
  width: calc(100% + 80px);
  margin-left: -40px;
  padding: 0;
  box-sizing: border-box;
  white-space: nowrap;
  text-align: center;
}

@media (max-width: 600px) {
  .site-footer { padding: 48px 24px 24px; }
  .footer-top { flex-direction: column; gap: 28px; }
  .footer-links { text-align: left; }
  .footer-wordmark { width: calc(100% + 48px); margin-left: -24px; }
}

/* ── CONTACT PAGE ── */
.contact-page { }
.contact-page .contact-page-main { overflow: hidden; }

.contact-page-main {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.cp-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(120,30,180,0.35) 0%, transparent 60%),
              radial-gradient(ellipse at 20% 80%, rgba(185,79,255,0.15) 0%, transparent 50%),
              var(--black);
}

.cp-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 140px 40px 80px;
}

.cp-label {
  display: block;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 24px;
}

.cp-heading {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  line-height: 1;
  margin-bottom: 32px;
}

.cp-sub {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.8;
  max-width: 380px;
  margin-bottom: 48px;
}

.cp-email {
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  color: var(--muted);
  text-transform: lowercase;
  border-bottom: 1px solid rgba(255,255,255,0.15);
  padding-bottom: 4px;
  transition: color .2s, border-color .2s;
}
.cp-email:hover { color: var(--white); border-color: var(--white); }

/* Form */
.cp-form { display: flex; flex-direction: column; gap: 40px; }

.cp-field { display: flex; flex-direction: column; gap: 12px; }

.cp-field label {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.cp-field input,
.cp-field textarea,
.cp-field select {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  padding: 10px 0;
  outline: none;
  transition: border-color .2s;
  resize: none;
  appearance: none;
  -webkit-appearance: none;
}
.cp-field input:focus,
.cp-field textarea:focus,
.cp-field select:focus { border-color: var(--purple); }

/* Date range */
.cp-dates {
  display: flex;
  align-items: flex-start;
  gap: 0;
}
.cp-date-col { flex: 1; display: flex; flex-direction: column; gap: 8px; }
.cp-date-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.3);
  text-transform: uppercase;
}
.cp-date-divider {
  width: 1px;
  background: rgba(255,255,255,0.12);
  margin: 0 20px;
  align-self: stretch;
  flex-shrink: 0;
}

/* Custom datepicker */
.cp-datepicker { position: relative; }
.cp-dp-trigger {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.35);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  padding: 8px 0;
  padding-right: 20px;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  transition: border-color .2s;
}
.cp-dp-trigger.has-value { color: var(--white); }
.cp-datepicker.open .cp-dp-trigger { border-color: var(--purple); }
.cp-dp-trigger svg rect, .cp-dp-trigger svg path { stroke: #888; transition: stroke .2s; }
.cp-datepicker.open .cp-dp-trigger svg rect,
.cp-datepicker.open .cp-dp-trigger svg path { stroke: var(--purple); }

.cp-calendar {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 240px;
  background: rgba(12,8,20,0.97);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  backdrop-filter: blur(20px);
  padding: 16px;
  z-index: 20;
  box-shadow: 0 16px 40px rgba(0,0,0,0.6);
}
.cp-datepicker.open .cp-calendar { display: block; }
#dp-to .cp-calendar { left: auto; right: 0; }

.cp-cal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.cp-cal-title {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.04em;
}
.cp-cal-nav {
  background: none;
  border: none;
  color: rgba(255,255,255,0.4);
  font-size: 1.3rem;
  cursor: pointer;
  padding: 2px 6px;
  line-height: 1;
  border-radius: 4px;
  transition: color .15s, background .15s;
}
.cp-cal-nav:hover { color: var(--white); background: rgba(255,255,255,0.07); }

.cp-cal-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  margin-bottom: 6px;
}
.cp-cal-weekdays span {
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.25);
  padding: 4px 0;
}
.cp-cal-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}
.cp-cal-day {
  background: none;
  border: none;
  color: rgba(255,255,255,0.7);
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  text-align: center;
  padding: 6px 0;
  border-radius: 6px;
  cursor: pointer;
  transition: background .15s, color .15s;
}
.cp-cal-day:hover:not(.disabled):not(.selected) { background: rgba(124,58,237,0.15); color: var(--white); }
.cp-cal-day.today { color: var(--purple); font-weight: 600; }
.cp-cal-day.selected { background: var(--purple); color: var(--white); font-weight: 600; }
.cp-cal-day.disabled { color: rgba(255,255,255,0.15); cursor: not-allowed; }
.cp-cal-day.empty { pointer-events: none; }

/* Location grid */
.cp-location-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}
.cp-location-btn {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 6px;
  color: rgba(255,255,255,0.5);
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.03em;
  padding: 8px 14px;
  cursor: pointer;
  transition: border-color .2s, color .2s, background .2s;
}
.cp-location-btn:hover {
  border-color: rgba(124,58,237,0.5);
  color: var(--white);
}
.cp-location-btn.active {
  border-color: var(--purple);
  background: rgba(124,58,237,0.15);
  color: var(--white);
}

/* Phone field */
.cp-phone {
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  transition: border-color .2s;
}
.cp-phone:focus-within { border-color: var(--purple); }
.cp-phone-prefix { position: relative; flex-shrink: 0; }
.cp-phone-trigger {
  background: none;
  border: none;
  border-right: 1px solid rgba(255,255,255,0.12);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  padding: 10px 12px 10px 0;
  margin-right: 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  transition: color .2s;
}
.cp-phone-trigger:hover { color: var(--purple); }
.cp-phone-flag { font-size: 1rem; line-height: 1; }
.cp-phone-code { font-size: 0.85rem; color: rgba(255,255,255,0.7); min-width: 32px; }
.cp-phone-trigger svg path { stroke: #888; }
.cp-phone-prefix.open .cp-phone-trigger svg path { stroke: var(--purple); }
.cp-phone-options {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  min-width: 220px;
  background: rgba(12,8,20,0.97);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  backdrop-filter: blur(20px);
  padding: 6px 0;
  z-index: 30;
  list-style: none;
  max-height: 240px;
  overflow-y: auto;
  box-shadow: 0 16px 40px rgba(0,0,0,0.6);
}
.cp-phone-prefix.open .cp-phone-options { display: block; }
.cp-phone-options li {
  padding: 10px 16px;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  cursor: pointer;
  transition: background .15s, color .15s;
  white-space: nowrap;
}
.cp-phone-options li:hover { background: rgba(124,58,237,0.15); color: var(--white); }
.cp-phone-options li.selected { color: var(--purple); }
.cp-phone-input {
  flex: 1;
  background: transparent;
  border: none;
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  padding: 10px 0;
  outline: none;
}
.cp-phone-input::placeholder { color: rgba(255,255,255,0.2); }

/* Char counter */
.cp-char-count {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.25);
  text-align: right;
  margin-top: 6px;
  transition: color .2s;
}
.cp-char-count.cp-char-warn  { color: var(--purple); }
.cp-char-count.cp-char-limit { color: #ef4444; }

.cp-select { position: relative; }
.cp-select-trigger {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.35);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  padding: 10px 0;
  padding-right: 24px;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: border-color .2s;
}
.cp-select-trigger.has-value { color: var(--white); }
.cp-select-trigger svg { flex-shrink: 0; transition: transform .2s; }
.cp-select.open .cp-select-trigger { border-color: var(--purple); }
.cp-select.open .cp-select-trigger svg { transform: rotate(180deg); }
.cp-select-trigger svg path { stroke: #888; }
.cp-select.open .cp-select-trigger svg path { stroke: var(--purple); }
.cp-select-options {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  left: 0; right: 0;
  background: rgba(15,10,25,0.97);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  backdrop-filter: blur(16px);
  overflow: hidden;
  z-index: 10;
  list-style: none;
  padding: 6px 0;
}
.cp-select.open .cp-select-options { display: block; }
.cp-select-options li {
  padding: 12px 20px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  cursor: pointer;
  transition: background .15s, color .15s;
  letter-spacing: 0.02em;
}
.cp-select-options li:hover { background: rgba(124,58,237,0.15); color: var(--white); }
.cp-select-options li.selected { color: var(--purple); }

.cp-success {
  display: none;
  text-align: center;
  padding: 48px 0;
}
.cp-success.visible { display: block; }
.cp-success-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 6vw, 4rem);
  letter-spacing: 0.05em;
  color: var(--white);
  margin-bottom: 12px;
}
.cp-success-sub {
  font-size: 0.95rem;
  color: var(--muted);
  letter-spacing: 0.04em;
}

.cp-submit {
  align-self: flex-start;
  background: transparent;
  border: 1.5px solid var(--white);
  border-radius: 999px;
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  padding: 14px 40px;
  cursor: pointer;
  transition: background .2s, color .2s, border-color .2s;
  margin-top: 8px;
}
.cp-submit:hover { background: var(--white); color: var(--black); }

.nav-active { color: var(--white) !important; }

/* ── Responsive ── */
@media (max-width: 900px) {
  .nav { padding: 18px 24px; }
  .nav-spacer { display: none; }
  .nav-links { display: none; flex-direction: column; gap: 20px; position: absolute; top: 64px; left: 0; right: 0; background: rgba(0,0,0,0.97); padding: 24px; align-items: flex-start; }
  .nav-links.open { display: flex; }
  .hamburger { display: block; order: 2; margin-left: auto; }
  .logo { order: 1; }

  /* Mobile dropdown — no hover, inline expand on tap */
  .nav-dropdown:hover .nav-dropdown-menu { display: none; }
  .nav-dropdown.open .nav-dropdown-menu { display: block; }
  .nav-dropdown-menu {
    position: static;
    transform: none;
    background: transparent;
    border: none;
    box-shadow: none;
    backdrop-filter: none;
    border-radius: 0;
    padding: 8px 0 0 16px;
    min-width: unset;
  }
  .nav-dropdown-menu li a { padding: 10px 0; font-size: 0.78rem; }
  .nav-dropdown-menu li a:hover { background: transparent; }

  .hero-content { padding: 0 24px; }

  .hiw-steps { flex-direction: column; gap: 0; }
  .hiw-step { flex-direction: row; align-items: flex-start; gap: 24px; padding: 32px 0; border-bottom: 1px solid rgba(255,255,255,0.07); }
  .hiw-step:last-child { border-bottom: none; }
  .hiw-number { font-size: 2.5rem; min-width: 56px; }
  .hiw-step-text { display: flex; flex-direction: column; gap: 8px; }
  .hiw-step p { max-width: 100%; }
  .hiw-connector { display: none; }
  .tagline-grid { grid-template-columns: 1fr; gap: 32px; }
  .event-cards { grid-template-columns: 1fr; }
  .why-features { grid-template-columns: 1fr; }
  .contact-overlay { grid-template-columns: 1fr; gap: 48px; padding: 80px 24px; }
  .subpage-hero-inner { grid-template-columns: 1fr; }
  .features-container { grid-template-columns: 1fr; }
  .cp-inner { grid-template-columns: 1fr; gap: 60px; padding: 120px 24px 60px; }
  .cp-heading { font-size: clamp(2.4rem, 12vw, 4rem); }
  .machines-grid { grid-template-columns: 1fr; max-width: 320px; margin: 0 auto; }
  .machine-item.center-machine { transform: none; }
  .container { padding: 0 24px; }
}
