/* landing.css — Sesh Radar landing page (Variant C: paper + giant headline) */

.landing-page {
  --paper: #0F0E0C;
  --paper-2: #1A1815;
  --surface: #17150F;
  --surface-warm: #1F1C14;
  --ink: #F1EEDF;
  --ink-soft: rgba(241, 238, 223, 0.70);
  --ink-muted: rgba(241, 238, 223, 0.45);
  --ink-faint: rgba(241, 238, 223, 0.14);
  --accent: #7AF2A3;
  --accent-ink: #0A3A1B;
  --accent-glow: rgba(122, 242, 163, 0.45);
  --tape-yellow: #F6D23C;
  --card-bg: #141414;
  --card-border: rgba(255, 255, 255, 0.08);
  --card-text: #FFFFFF;
  --card-sub: rgba(255, 255, 255, 0.62);
  --card-muted: rgba(255, 255, 255, 0.42);
  --card-accent: #4ADE80;
  --font-display: "Archivo Black", "Archivo", sans-serif;
  --font-body: "Archivo", "Inter", system-ui, sans-serif;
  --font-mono: "Space Mono", "JetBrains Mono", ui-monospace, monospace;

  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  min-height: 100vh;
  overflow-x: hidden;
}

html:has(body.landing-page) {
  overflow-x: hidden;
}

body.landing-page::before,
body.landing-page::after {
  display: none !important;
  content: none !important;
}

.page-grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background-image: radial-gradient(rgba(241, 238, 223, 0.025) 1px, transparent 1px);
  background-size: 3px 3px;
  opacity: 1;
}

.page-glow {
  position: fixed;
  top: 120px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 900px;
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(circle, rgba(122, 242, 163, 0.13), transparent 70%);
  filter: blur(60px);
}

.landing-shell-outer {
  position: relative;
  z-index: 2;
  max-width: 1320px;
  margin: 0 auto;
  padding: 24px clamp(20px, 4vw, 64px) 64px;
  display: grid;
  gap: 36px;
  width: auto;
}

.landing-shell-outer > * {
  min-width: 0;
}

.landing-page .landing-shell {
  display: grid;
  gap: clamp(64px, 8vw, 104px);
}

.landing-page .landing-shell > * {
  min-width: 0;
}

/* Reset dashboard.css interference */
.landing-page .panel,
.landing-page .hero-shell {
  border: none;
  box-shadow: none;
}

.landing-page .hero-shell {
  display: block;
  grid-template-columns: unset;
  background: none;
  border-radius: 0;
  padding: 0;
  margin-bottom: 0;
  overflow: visible;
  animation: none;
}

.landing-page .hero-shell::before {
  content: none;
}

.landing-page .landing-hero {
  padding: 0;
  min-height: unset;
}

.landing-page h1,
.landing-page h2,
.landing-page h3 {
  font-family: var(--font-display);
  letter-spacing: -0.025em;
  max-width: unset;
}

.landing-page .hero-headline {
  font-size: clamp(56px, 8.8vw, 156px);
  line-height: 0.88;
  letter-spacing: -0.03em;
}

/* ============================================================
   Pill navigation
   ============================================================ */

.pill-nav {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(16px, 3vw, 32px);
  padding: 12px 20px;
  background: var(--surface);
  border: 1px solid var(--ink-faint);
  border-radius: 999px;
}

.pill-nav__brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--ink);
}

.pill-nav__mark {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: var(--ink);
  color: var(--paper);
  display: grid;
  place-items: center;
}

.pill-nav__mark svg {
  width: 22px;
  height: 22px;
}

.pill-nav__copy {
  display: grid;
  line-height: 1.1;
}

.pill-nav__copy strong {
  font-weight: 800;
  font-size: 14px;
  letter-spacing: -0.01em;
}

.pill-nav__copy span {
  font-size: 11px;
  color: var(--ink-soft);
  margin-top: 2px;
  font-weight: 500;
}

.pill-nav__links {
  display: flex;
  justify-content: center;
  gap: 28px;
  font-size: 13px;
  font-weight: 500;
}

.pill-nav__links a {
  color: var(--ink);
  text-decoration: none;
  transition: color 180ms ease;
}

.pill-nav__links a:hover {
  color: var(--accent);
}

.pill-nav__actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.language-switcher {
  display: inline-flex;
  gap: 4px;
  padding: 3px;
  border-radius: 999px;
  border: 1px solid var(--ink-faint);
  background: transparent;
}

.language-switcher__button {
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: transparent;
  color: var(--ink-soft);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 160ms ease;
}

.language-switcher__button.is-active,
.language-switcher__button[aria-pressed="true"] {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}

.pill-cta {
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--accent-ink);
  font-weight: 700;
  font-size: 13px;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease;
  white-space: nowrap;
}

.pill-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 28px var(--accent-glow);
}

/* ============================================================
   Hero
   ============================================================ */

.landing-hero {
  padding: 0;
  display: grid;
  gap: 28px;
}

.meta-strip {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.22em;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--accent);
}

.meta-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent);
  animation: meta-pulse 2.2s ease-in-out infinite;
}

@keyframes meta-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.55; }
}

.meta-eyebrow { white-space: nowrap; }

.meta-rule {
  flex: 1;
  height: 1px;
  background: var(--ink-faint);
}

.meta-clock {
  color: var(--ink-muted);
  white-space: nowrap;
}

.hero-headline {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(60px, 11.2vw, 200px);
  line-height: 0.86;
  letter-spacing: -0.035em;
  margin: 0;
  color: var(--ink);
  text-transform: uppercase;
}

.hero-headline__line { display: inline; }

.hero-highlight {
  display: inline-block;
  background: var(--accent);
  color: var(--accent-ink);
  padding: 0 0.11em;
  margin: 0 0.06em 0 0;
  transform: rotate(-2deg);
  box-shadow: 6px 6px 0 var(--ink);
  text-transform: inherit;
}

.hero-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  padding-top: 28px;
  border-top: 1px solid var(--ink);
}

.hero-copy {
  display: grid;
  gap: 16px;
  align-content: start;
}

.hero-subhead {
  margin: 0;
  font-size: 19px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.45;
  max-width: 500px;
}

.hero-text {
  margin: 0;
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.6;
  max-width: 500px;
}

.hero-button-row {
  display: flex;
  gap: 12px;
  margin-top: 16px;
  flex-wrap: wrap;
}

.cta-primary,
.cta-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 999px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.cta-primary {
  background: var(--ink);
  color: var(--paper);
  border: none;
}

.cta-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
}

.cta-primary--accent {
  background: var(--accent);
  color: var(--accent-ink);
  font-weight: 800;
  padding: 14px 26px;
}

.cta-primary--accent:hover {
  box-shadow: 0 0 32px var(--accent-glow);
}

.cta-ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--ink);
  font-weight: 600;
}

.cta-ghost:hover {
  background: var(--ink);
  color: var(--paper);
}

.cta-arrow {
  font-size: 1.05em;
  line-height: 1;
  transform: translateY(1px);
}

.hero-chips {
  display: flex;
  gap: 8px;
  margin-top: 8px;
  flex-wrap: wrap;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  transition: border-color 160ms ease, background 160ms ease;
}

.chip__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.chip--ghost {
  border: 1px solid var(--ink-faint);
  color: var(--ink);
  background: transparent;
}

.chip--ghost:hover {
  border-color: var(--accent);
}

.chip--green {
  border: 1px solid rgba(74, 222, 128, 0.30);
  background: rgba(74, 222, 128, 0.08);
  color: var(--card-text);
}

.chip--green .chip__dot {
  background: var(--card-accent);
  box-shadow: 0 0 8px var(--card-accent);
}

/* Hero phone stack */

.hero-phones {
  position: relative;
  min-height: 540px;
}

.tape {
  position: absolute;
  height: 22px;
  z-index: 5;
  mix-blend-mode: normal;
}

.tape--green {
  top: 6px;
  left: 80px;
  width: 110px;
  background: rgba(122, 242, 163, 0.6);
  transform: rotate(-10deg);
}

.tape--yellow {
  bottom: 10px;
  right: 60px;
  width: 130px;
  background: rgba(246, 210, 60, 0.7);
  transform: rotate(6deg);
}

.phone {
  margin: 0;
  border-radius: 30px;
  overflow: hidden;
  border: 6px solid var(--ink);
  background: #000;
}

.phone img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.phone--left {
  position: absolute;
  left: 0;
  top: 40px;
  width: 220px;
  height: 480px;
  transform: rotate(-5deg);
  z-index: 1;
  box-shadow: 10px 10px 0 var(--accent);
}

.phone--center {
  position: absolute;
  left: 170px;
  top: 0;
  width: 240px;
  height: 520px;
  transform: rotate(2deg);
  z-index: 3;
  box-shadow: 0 30px 60px -10px rgba(0, 0, 0, 0.6);
}

.phone--right {
  position: absolute;
  right: 0;
  top: 50px;
  width: 220px;
  height: 480px;
  transform: rotate(7deg);
  z-index: 2;
  box-shadow: -10px 10px 0 var(--ink);
}

/* ============================================================
   Live ticker
   ============================================================ */

.live-ticker {
  position: relative;
  overflow: hidden;
  border: 1.5px solid var(--ink);
  background: var(--surface);
  height: 52px;
  display: flex;
  align-items: stretch;
}

.live-ticker__badge {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 20px;
  background: var(--accent);
  color: var(--accent-ink);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  font-weight: 800;
  text-transform: uppercase;
  border-right: 1.5px solid var(--ink);
  z-index: 2;
  white-space: nowrap;
}

.live-ticker__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-ink);
  animation: meta-pulse 1.6s ease-in-out infinite;
}

.live-ticker__track {
  flex: 1 1 auto;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 36px;
  padding-left: 36px;
  animation: ticker-scroll 50s linear infinite;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--ink);
  font-weight: 500;
}

.live-ticker__item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}

.live-ticker__bullet {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  flex: 0 0 auto;
}

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

/* ============================================================
   Section markers + heads
   ============================================================ */

.panel {
  display: grid;
  gap: clamp(24px, 3.5vw, 40px);
}

.section-marker {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-top: 2px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink);
  letter-spacing: 0.18em;
  font-weight: 700;
  text-transform: uppercase;
}

.section-marker__star {
  color: var(--accent);
}

.section-marker__tag {
  color: var(--accent);
}

.section-head {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: clamp(24px, 4vw, 48px);
  align-items: end;
}

.section-head h2 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(36px, 5.4vw, 80px);
  line-height: 0.92;
  letter-spacing: -0.025em;
  margin: 0;
  color: var(--ink);
  text-transform: uppercase;
}

.section-copy {
  margin: 0;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.5;
}

/* ============================================================
   Feature cards (dark OG style)
   ============================================================ */

.feature-story-list {
  display: grid;
  gap: 24px;
}

.feature-story {
  position: relative;
  overflow: hidden;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 24px;
  padding: clamp(28px, 4.5vw, 56px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 40px);
  align-items: center;
  color: var(--card-text);
}

.feature-story--flip .feature-story__visual { order: 1; }
.feature-story--flip .feature-story__copy { order: 2; }

.feature-story__copy { min-width: 0; }

.feature-story__row {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 10px;
}

.feature-story__number {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(56px, 7vw, 80px);
  line-height: 0.85;
  color: var(--card-accent);
  letter-spacing: -0.04em;
}

.feature-story__label {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--card-muted);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
}

.feature-story h3 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(26px, 3.4vw, 48px);
  line-height: 0.98;
  letter-spacing: -0.02em;
  margin: 8px 0 0;
  color: var(--card-text);
  text-transform: uppercase;
  max-width: 460px;
}

.feature-story p {
  margin: 18px 0 0;
  color: var(--card-sub);
  font-size: 15px;
  line-height: 1.55;
  max-width: 460px;
}

.feature-story__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.feature-story__visual {
  position: relative;
  min-height: 440px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-story__glow {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(74, 222, 128, 0.30), transparent 70%);
  filter: blur(40px);
  pointer-events: none;
}

.phone-duo {
  position: relative;
  display: flex;
  gap: 0;
}

.phone-duo .phone {
  width: 220px;
  height: 460px;
  border-radius: 32px;
  border-width: 6px;
  border-color: #0a0a0a;
  box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.5);
}

.phone--duo-a {
  transform: rotate(-5deg);
  margin-right: -44px;
  z-index: 2;
}

.phone--duo-b {
  transform: rotate(4deg);
  margin-top: 40px;
  z-index: 1;
}

.feature-story--flip .phone--duo-a {
  transform: rotate(5deg);
  z-index: 1;
}

.feature-story--flip .phone--duo-b {
  transform: rotate(-4deg);
  z-index: 2;
}

/* ============================================================
   Atmosphere
   ============================================================ */

.atmosphere-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 20px;
}

.atmosphere-stack {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.atmosphere-note {
  flex: 1;
}

.atmos-photo {
  margin: 0;
  border: 1.5px solid var(--ink);
  overflow: hidden;
  border-radius: 4px;
}

.atmos-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.atmos-photo--primary {
  height: 100%;
  min-height: 420px;
}

.atmos-photo--secondary {
  height: 220px;
}

.atmosphere-note {
  padding: 28px;
  border: 1.5px solid var(--ink);
  background: var(--surface);
  display: grid;
  gap: 10px;
}

.atmosphere-note__eyebrow {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 0.18em;
  font-weight: 700;
  text-transform: uppercase;
}

.atmosphere-note h3 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 28px;
  line-height: 1;
  letter-spacing: -0.015em;
  margin: 0;
  color: var(--ink);
  text-transform: uppercase;
}

.atmosphere-note p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.55;
}

.atmosphere-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 6px;
}

.tag-slash {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink);
  padding: 4px 10px;
  border: 1px solid var(--ink);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
}

/* ============================================================
   Ticket CTA
   ============================================================ */

.ticket-panel {
  padding: 0;
}

.ticket {
  position: relative;
  background: var(--ink);
  color: var(--paper);
  padding: clamp(32px, 4vw, 56px);
  border: 1.5px solid var(--ink);
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
  overflow: hidden;
}

.ticket__punch {
  position: absolute;
  top: 50%;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--paper);
  transform: translateY(-50%);
}

.ticket__punch--left { left: -13px; }
.ticket__punch--right { right: -13px; }

.ticket__kicker {
  margin: 0 0 14px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--accent-ink);
  letter-spacing: 0.22em;
  font-weight: 800;
  text-transform: uppercase;
}

.ticket__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(34px, 4.4vw, 68px);
  line-height: 0.95;
  letter-spacing: -0.025em;
  margin: 0;
  color: var(--paper);
  text-transform: uppercase;
}

.ticket__title-accent {
  color: var(--accent-ink);
}

.ticket__copy {
  margin: 20px 0 0;
  color: rgba(241, 238, 223, 0.72);
  font-size: 15px;
  line-height: 1.55;
  max-width: 540px;
}

.ticket__actions {
  display: flex;
  gap: 12px;
  margin-top: 28px;
  flex-wrap: wrap;
  align-items: center;
}

.store-downloads {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}

.store-badge-btn {
  display: inline-flex;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  opacity: 1;
  transition: transform 160ms ease, opacity 160ms ease;
}

.store-badge-btn:disabled {
  cursor: not-allowed;
  opacity: 0.85;
}

.store-badge-btn:not(:disabled):hover {
  transform: translateY(-2px);
}

.store-badge-img {
  display: block;
  height: 60px;
  width: auto;
}

.store-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border-radius: 12px;
  background: #0a0a0a;
  color: var(--paper);
  border: 1px solid rgba(255, 255, 255, 0.18);
  cursor: pointer;
  font-family: inherit;
  text-align: left;
  opacity: 1;
  transition: transform 160ms ease;
}

.store-chip:not(:disabled):hover {
  transform: translateY(-1px);
}

.store-chip:disabled {
  opacity: 0.9;
  cursor: not-allowed;
}

.store-chip__icon {
  width: 24px;
  height: 26px;
  fill: var(--paper);
  flex: 0 0 auto;
}

.store-chip__copy {
  display: grid;
  line-height: 1.1;
}

.store-chip__copy small {
  font-size: 10px;
  color: rgba(241, 238, 223, 0.6);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.store-chip__copy strong {
  font-size: 17px;
  font-weight: 600;
  margin-top: 2px;
}

.ticket__serial {
  border-left: 1.5px dashed var(--paper);
  padding-left: clamp(20px, 2.5vw, 32px);
  display: grid;
  gap: 10px;
  align-content: start;
}

.ticket__serial-label {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 10px;
  color: rgba(241, 238, 223, 0.45);
  letter-spacing: 0.2em;
  font-weight: 700;
  text-transform: uppercase;
}

.ticket__serial-number {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 46px;
  line-height: 0.95;
  color: var(--paper);
  letter-spacing: -0.025em;
}

.ticket__manifest {
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(241, 238, 223, 0.55);
  letter-spacing: 0.14em;
  line-height: 1.8;
  font-weight: 700;
  text-transform: uppercase;
}

.barcode {
  margin-top: 14px;
  height: 44px;
  display: flex;
  gap: 2px;
  background:
    repeating-linear-gradient(to right,
      var(--paper) 0 1px, transparent 1px 3px,
      var(--paper) 3px 5px, transparent 5px 7px,
      var(--paper) 7px 10px, transparent 10px 12px,
      var(--paper) 12px 13px, transparent 13px 16px,
      var(--paper) 16px 18px, transparent 18px 21px,
      var(--paper) 21px 22px, transparent 22px 25px,
      var(--paper) 25px 27px, transparent 27px 30px);
  opacity: 0.9;
}

/* ============================================================
   Footer
   ============================================================ */

.landing-footer {
  margin-top: 16px;
  padding-top: 24px;
  border-top: 2px solid var(--ink);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
}

.landing-footer__copy { margin: 0; }

.landing-footer__links {
  display: flex;
  gap: 24px;
}

.landing-footer__links a {
  color: inherit;
  text-decoration: none;
  transition: color 160ms ease;
}

.landing-footer__links a:hover {
  color: var(--accent);
}

/* ============================================================
   Responsive
   ============================================================ */

@media (max-width: 1080px) {
  .pill-nav {
    grid-template-columns: auto auto;
    grid-template-rows: auto auto;
    border-radius: 28px;
    padding: 14px 18px;
    row-gap: 12px;
  }
  .pill-nav__links {
    grid-column: 1 / -1;
    justify-content: flex-start;
    gap: 20px;
  }
}

@media (max-width: 960px) {
  .hero-body,
  .section-head,
  .atmosphere-grid,
  .feature-story,
  .ticket {
    grid-template-columns: 1fr;
  }

  .feature-story--flip .feature-story__visual { order: 2; }
  .feature-story--flip .feature-story__copy { order: 1; }

  .hero-phones {
    min-height: 560px;
    margin-top: 16px;
  }

  .section-head {
    align-items: start;
  }

  .ticket__serial {
    border-left: none;
    border-top: 1.5px dashed var(--paper);
    padding-left: 0;
    padding-top: 20px;
  }

  .atmosphere-note h3 {
    font-size: 24px;
  }
}

@media (max-width: 640px) {
  .landing-shell-outer {
    padding: 16px 18px 48px;
  }

  .pill-nav__copy span { display: none; }

  .pill-nav .pill-cta { display: none; }

  .meta-clock,
  .meta-rule { display: none; }

  .landing-page .hero-headline {
    font-size: clamp(36px, 12vw, 96px);
  }

  .hero-highlight {
    box-shadow: 4px 4px 0 var(--ink);
  }

  .hero-phones {
    min-height: 460px;
    overflow: hidden;
  }

  .feature-story {
    padding: 24px;
  }

  .feature-story__visual {
    min-height: 380px;
  }

  .phone-duo .phone {
    width: 160px;
    height: 340px;
  }

  .phone--duo-a { margin-right: -30px; }

  .section-marker {
    font-size: 10px;
    letter-spacing: 0.14em;
  }

  .halftone--primary { height: 300px; }
  .halftone--secondary { height: 180px; }
  .halftone__label { font-size: 10px; padding: 8px 12px; }

  .ticket {
    padding: 28px;
  }

  .ticket__serial-number { font-size: 36px; }

  .landing-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .hero-phones {
    min-height: 360px;
  }

  .phone--left {
    width: 140px;
    height: 305px;
  }

  .phone--center {
    left: 100px;
    width: 155px;
    height: 338px;
  }

  .phone--right {
    width: 140px;
    height: 305px;
  }

  .pill-nav {
    gap: 8px;
  }

  .pill-cta {
    padding: 8px 12px;
    font-size: 12px;
  }
}
