:root {
  color-scheme: dark;
  --ink: #020a08;
  --ink-2: #07110e;
  --ink-3: #101815;
  --line: rgba(255, 255, 255, 0.13);
  --line-strong: rgba(204, 245, 0, 0.42);
  --text: #f6f4eb;
  --muted: rgba(246, 244, 235, 0.68);
  --quiet: rgba(246, 244, 235, 0.46);
  --acid: #c8f500;
  --acid-2: #e6ff3f;
  --paper: #f3f0e7;
  --paper-muted: #6a665b;
  --orange: #ef5726;
  --blush: #d6a398;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.42);
  --radius-card: 8px;
  --radius-pill: 999px;
  --page: min(1180px, calc(100% - 40px));
  --header-height: 76px;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Display",
    "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background:
    linear-gradient(rgba(2, 10, 8, 0.72), rgba(2, 10, 8, 0.92)),
    url("assets/ravelog-contours.jpg") center top / min(1200px, 160%) auto repeat,
    var(--ink);
  font-size: 16px;
  line-height: 1.5;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

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

button,
input,
textarea {
  font: inherit;
}

button {
  color: inherit;
}

svg {
  width: 1.2em;
  height: 1.2em;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

::selection {
  color: var(--ink);
  background: var(--acid);
}

.skip-link,
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  z-index: 20;
  top: 14px;
  left: 14px;
  width: auto;
  height: auto;
  padding: 10px 14px;
  margin: 0;
  clip: auto;
  color: var(--ink);
  background: var(--acid);
  border-radius: var(--radius-card);
}

.section-shell {
  width: var(--page);
  margin-inline: auto;
}

.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 30px;
  align-items: center;
  height: var(--header-height);
  padding-inline: max(20px, calc((100% - 1180px) / 2));
  background: rgba(2, 10, 8, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled {
  background: rgba(2, 10, 8, 0.9);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.26);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: max-content;
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 750;
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  box-shadow: 0 0 18px rgba(200, 245, 0, 0.2);
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 34px;
  color: rgba(246, 244, 235, 0.78);
  font-size: 0.77rem;
  font-weight: 750;
  text-transform: uppercase;
}

.site-nav a,
.header-cta,
.button,
.tab-button,
.nav-toggle {
  transition:
    transform 180ms ease,
    color 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    opacity 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--acid);
}

.header-cta {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 20px;
  color: var(--acid);
  border: 1px solid var(--acid);
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.header-cta:hover,
.header-cta:focus-visible {
  color: var(--ink);
  background: var(--acid);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.04);
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 17px;
  height: 1px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  display: grid;
  grid-template-columns: minmax(620px, 1fr) minmax(420px, 0.9fr);
  gap: 36px;
  align-items: center;
  padding-top: calc(var(--header-height) + 46px);
  padding-bottom: 44px;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 560px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 22px;
  color: var(--acid);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.eyebrow::before,
.eyebrow::after {
  content: "";
  width: 14px;
  height: 14px;
  border-color: var(--acid);
  opacity: 0.8;
}

.eyebrow::before {
  border-top: 1px solid;
  border-left: 1px solid;
}

.eyebrow::after {
  border-right: 1px solid;
  border-bottom: 1px solid;
}

h1,
h2,
h3,
p {
  text-wrap: pretty;
}

.hero h1 {
  margin: 0;
  font-size: 4.65rem;
  line-height: 0.94;
  font-weight: 900;
}

.hero h1 span,
.hero h1 strong {
  display: block;
}

.hero h1 strong {
  color: var(--acid);
}

.hero-text {
  max-width: 520px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 1.12rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 20px;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  font-weight: 800;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  color: var(--ink);
  background: var(--acid);
  box-shadow: 0 14px 36px rgba(200, 245, 0, 0.18);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--acid-2);
}

.button-secondary {
  color: var(--text);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.05);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: rgba(200, 245, 0, 0.48);
  color: var(--acid);
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  max-width: 560px;
  margin: 34px 0 0;
  padding: 24px 0 0;
  list-style: none;
  border-top: 1px solid var(--line-strong);
}

.hero-proof li {
  display: grid;
  gap: 8px;
  justify-items: center;
  min-height: 84px;
  padding: 4px 14px 0;
  color: rgba(246, 244, 235, 0.82);
  font-size: 0.78rem;
  font-weight: 750;
  text-align: center;
  text-transform: uppercase;
  border-right: 1px solid rgba(255, 255, 255, 0.17);
}

.hero-proof li:last-child {
  border-right: 0;
}

.hero-proof svg {
  width: 25px;
  height: 25px;
  color: var(--acid);
}

.hero-stage {
  position: relative;
  height: 630px;
  min-width: 0;
  perspective: 1800px;
}

.phone {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 46px;
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.03) 16%, rgba(0, 0, 0, 0.64)),
    #040403;
  box-shadow:
    inset 0 0 0 8px #070707,
    inset 0 0 0 9px rgba(255, 255, 255, 0.12),
    var(--shadow);
  transform-style: preserve-3d;
}

.phone::before {
  content: "";
  position: absolute;
  top: 14px;
  left: 50%;
  z-index: 3;
  width: 94px;
  height: 28px;
  background: #030303;
  border-radius: 999px;
  transform: translateX(-50%);
}

.phone-main {
  z-index: 3;
  top: 12px;
  left: 8%;
  width: 320px;
  height: 630px;
  transform: rotateY(-10deg) rotateZ(2deg);
}

.phone-secondary {
  width: 250px;
  height: 530px;
  opacity: 0.86;
}

.phone-festival {
  z-index: 2;
  top: 88px;
  left: 43%;
  transform: rotateY(-18deg) rotateZ(4deg);
}

.phone-artists {
  z-index: 1;
  top: 138px;
  left: 66%;
  transform: rotateY(-22deg) rotateZ(5deg);
}

.phone-screen {
  position: absolute;
  inset: 14px;
  overflow: hidden;
  padding: 46px 16px 18px;
  border-radius: 35px;
  background:
    linear-gradient(rgba(2, 10, 8, 0.5), rgba(2, 10, 8, 0.86)),
    url("assets/ravelog-contours.jpg") center / cover,
    #050906;
}

.phone-screen::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  box-shadow: inset 0 0 90px rgba(0, 0, 0, 0.72);
}

.status-bar {
  position: absolute;
  top: 18px;
  left: 24px;
  right: 24px;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.78rem;
  font-weight: 800;
}

.app-panel {
  position: relative;
  z-index: 1;
  padding: 14px;
  margin-bottom: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-card);
  background: rgba(255, 255, 255, 0.045);
}

.micro {
  margin: 0 0 12px;
  color: var(--acid);
  font-size: 0.76rem;
  font-weight: 850;
  text-transform: uppercase;
}

.passport-id {
  display: flex;
  align-items: center;
  gap: 12px;
}

.passport-id img {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: 1px solid var(--acid);
}

.passport-id strong,
.event-card strong,
.festival-panel strong,
.artist-row strong {
  display: block;
  color: #fff;
}

.passport-id span,
.event-card span,
.festival-panel span,
.artist-row small,
.event-card small {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 18px;
}

.stats-grid span {
  display: grid;
  gap: 2px;
  color: var(--muted);
  font-size: 0.67rem;
  text-transform: uppercase;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.stats-grid span:last-child {
  border-right: 0;
}

.stats-grid strong {
  color: #fff;
  font-size: 1.18rem;
}

.event-card {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 12px;
  align-items: center;
}

.poster,
.festival-image {
  overflow: hidden;
  border-radius: var(--radius-card);
  background:
    linear-gradient(135deg, rgba(200, 245, 0, 0.18), transparent),
    url("assets/ravelog-events-background.jpg") center / cover;
}

.poster {
  height: 80px;
}

.poster-laser {
  background-position: 45% 48%;
}

.list-panel {
  margin-bottom: 0;
}

.list-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  color: var(--muted);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.list-row strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 26px;
  color: var(--ink);
  background: var(--acid);
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
}

.festival-panel .festival-image {
  height: 132px;
  margin-bottom: 12px;
  background-position: 50% 42%;
}

.progress {
  height: 7px;
  margin-top: 12px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-pill);
}

.progress span {
  display: block;
  height: 100%;
  background: var(--acid);
}

.schedule-panel div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 9px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.schedule-panel span,
.schedule-panel small {
  color: var(--muted);
}

.search-pill {
  padding: 11px 12px;
  color: var(--quiet);
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-pill);
  font-size: 0.76rem;
}

.chip-row {
  display: flex;
  gap: 6px;
  margin: 12px 0 10px;
}

.chip-row span {
  padding: 6px 9px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-pill);
  font-size: 0.68rem;
}

.chip-row span:first-child {
  color: var(--ink);
  background: var(--acid);
}

.artist-row {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 10px;
  align-items: center;
  padding: 11px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.artist-row i {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background:
    linear-gradient(135deg, rgba(200, 245, 0, 0.18), rgba(214, 163, 152, 0.18)),
    url("assets/ravelog-events-background.jpg") center / cover;
}

.feature-strip {
  color: var(--ink);
  background:
    linear-gradient(rgba(243, 240, 231, 0.95), rgba(243, 240, 231, 0.98)),
    url("assets/ravelog-contours.jpg") center / 900px auto;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.feature-strip .section-shell {
  padding-block: 74px;
}

.section-heading {
  max-width: 720px;
}

.section-heading .eyebrow,
.overview .eyebrow,
.passport .eyebrow,
.friends-band .eyebrow,
.availability .eyebrow {
  color: #8fae00;
}

.section-heading h2,
.overview h2,
.passport h2,
.friends-band h2,
.availability h2 {
  margin: 0;
  font-size: 3.25rem;
  line-height: 1;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 42px;
}

.feature-card {
  min-height: 245px;
  padding: 22px;
  border: 1px solid rgba(2, 10, 8, 0.1);
  border-radius: var(--radius-card);
  background: rgba(255, 255, 255, 0.48);
  box-shadow: 0 22px 60px rgba(2, 10, 8, 0.08);
}

.icon-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: var(--acid);
  background: var(--ink);
  border-radius: var(--radius-card);
}

.feature-card h3 {
  margin: 30px 0 8px;
  font-size: 1.05rem;
}

.feature-card p {
  margin: 0;
  color: var(--paper-muted);
}

.overview {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(420px, 1fr);
  gap: 48px;
  align-items: center;
  padding-block: 96px;
}

.overview-copy p:not(.eyebrow),
.passport-copy,
.friends-grid > p,
.availability-copy p {
  color: var(--muted);
  font-size: 1.05rem;
}

.tab-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 30px;
}

.tab-button {
  min-height: 40px;
  padding: 0 15px;
  color: var(--muted);
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.045);
  cursor: pointer;
}

.tab-button.is-active,
.tab-button:hover,
.tab-button:focus-visible {
  color: var(--ink);
  background: var(--acid);
  border-color: var(--acid);
}

.overview-demo {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-card);
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025)),
    rgba(2, 10, 8, 0.72);
  box-shadow: var(--shadow);
}

.demo-header {
  display: grid;
  gap: 6px;
}

.demo-header span {
  color: var(--acid);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.demo-header strong {
  font-size: 2rem;
  line-height: 1.08;
}

.overview-demo p {
  color: var(--muted);
}

.demo-surface {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.timeline-card {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 12px;
  align-items: center;
  min-height: 72px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: var(--radius-card);
  background: rgba(255, 255, 255, 0.05);
}

.timeline-card span {
  color: var(--acid);
  font-weight: 800;
}

.timeline-card small {
  color: var(--quiet);
}

.passport {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
  gap: 48px;
  align-items: center;
  padding-block: 30px 110px;
}

.passport-visual {
  position: relative;
  min-height: 390px;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 24px;
  border-radius: var(--radius-card);
  background:
    linear-gradient(rgba(2, 10, 8, 0.36), rgba(2, 10, 8, 0.82)),
    url("assets/ravelog-events-background.jpg") center / cover;
  box-shadow: var(--shadow);
}

.passport-visual > img {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 86px;
  height: 86px;
  border-radius: 22px;
  box-shadow: 0 0 46px rgba(200, 245, 0, 0.22);
}

.passport-card {
  max-width: 520px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-card);
  background: rgba(2, 10, 8, 0.7);
  backdrop-filter: blur(18px);
}

.passport-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 24px;
}

.passport-stats span {
  display: grid;
  gap: 2px;
  color: var(--muted);
  font-size: 0.78rem;
}

.passport-stats strong {
  color: var(--acid);
  font-size: 1.7rem;
  line-height: 1;
}

.detail-list {
  display: grid;
  gap: 13px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.detail-list li {
  position: relative;
  padding-left: 24px;
}

.detail-list li::before {
  content: "";
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 10px;
  height: 2px;
  background: var(--acid);
}

.friends-band {
  background: var(--paper);
  color: var(--ink);
}

.friends-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(300px, 0.65fr) minmax(260px, 0.55fr);
  gap: 36px;
  align-items: start;
  padding-block: 82px;
}

.friends-grid > p {
  margin: 42px 0 0;
  color: var(--paper-muted);
}

.friend-rows {
  display: grid;
  gap: 10px;
}

.friend-rows div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 58px;
  padding: 14px 16px;
  border: 1px solid rgba(2, 10, 8, 0.1);
  border-radius: var(--radius-card);
  background: rgba(255, 255, 255, 0.54);
}

.friend-rows span {
  color: var(--paper-muted);
}

.availability {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 0.55fr);
  gap: 44px;
  align-items: center;
  padding-block: 92px;
}

.availability-panel {
  display: grid;
  gap: 12px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: rgba(255, 255, 255, 0.055);
}

.availability-panel span {
  color: var(--acid);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.availability-panel strong {
  font-size: 1.55rem;
  line-height: 1.1;
}

.availability-panel p {
  margin: 0 0 12px;
  color: var(--muted);
}

.site-footer {
  border-top: 1px solid var(--line);
  background: rgba(2, 10, 8, 0.76);
}

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

.footer-inner p {
  margin: 0;
  color: var(--quiet);
}

.footer-legal {
  display: inline-flex;
  align-items: center;
  gap: 18px;
}

.footer-legal a {
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 0.01em;
}

.footer-legal a:hover,
.footer-legal a:focus-visible {
  color: var(--acid);
}

@media (max-width: 720px) {
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    padding-block: 28px;
  }
}

[data-animate] {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 620ms ease,
    transform 620ms ease;
}

[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  [data-animate] {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1120px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: calc(var(--header-height) + 72px);
  }

  .hero-copy {
    max-width: 760px;
  }

  .hero h1 {
    font-size: 5rem;
  }

  .hero-stage {
    height: 610px;
  }

  .phone-main {
    left: 16%;
  }

  .phone-festival {
    left: 46%;
  }

  .phone-artists {
    left: 68%;
  }

  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .overview,
  .passport,
  .availability {
    grid-template-columns: 1fr;
  }

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

  .friend-rows {
    grid-column: 1 / -1;
  }
}

@media (max-width: 860px) {
  :root {
    --header-height: 68px;
    --page: min(100% - 28px, 720px);
  }

  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
    gap: 12px;
  }

  .site-nav,
  .header-cta {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  body.nav-open .site-nav {
    position: fixed;
    top: var(--header-height);
    left: 14px;
    right: 14px;
    display: grid;
    gap: 0;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-card);
    background: rgba(2, 10, 8, 0.96);
    box-shadow: var(--shadow);
  }

  body.nav-open .site-nav a {
    padding: 17px 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  body.nav-open .site-nav a:last-child {
    border-bottom: 0;
  }

  body.nav-open .nav-toggle span:nth-child(2) {
    transform: translateY(3px) rotate(45deg);
  }

  body.nav-open .nav-toggle span:nth-child(3) {
    transform: translateY(-3px) rotate(-45deg);
  }

  .hero {
    position: relative;
    display: block;
    overflow: hidden;
    padding-top: calc(var(--header-height) + 40px);
    padding-bottom: 0;
  }

  .hero h1 {
    font-size: 3.9rem;
  }

  .hero-text {
    font-size: 1rem;
  }

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

  .hero-proof li:nth-child(2) {
    border-right: 0;
  }

  .hero-proof li:nth-child(n + 3) {
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  .hero-stage {
    position: absolute;
    z-index: 0;
    top: 330px;
    right: -138px;
    width: 310px;
    height: 470px;
    margin-top: 0;
    opacity: 0.34;
    pointer-events: none;
  }

  .phone-main {
    top: 0;
    left: auto;
    right: 0;
    width: 286px;
    height: 562px;
    transform: rotateY(-9deg) rotateZ(1deg);
  }

  .phone-secondary {
    display: none;
  }

  .section-heading h2,
  .overview h2,
  .passport h2,
  .friends-band h2,
  .availability h2 {
    font-size: 2.55rem;
  }

  .feature-grid,
  .friends-grid {
    grid-template-columns: 1fr;
  }

  .overview,
  .passport,
  .availability,
  .feature-strip .section-shell,
  .friends-grid {
    padding-block: 64px;
  }

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

  .timeline-card {
    grid-template-columns: 1fr;
  }

  .friends-grid > p {
    margin-top: 0;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding-block: 28px;
  }
}

@media (max-width: 540px) {
  .brand span {
    font-size: 0.9rem;
  }

  .brand img {
    width: 38px;
    height: 38px;
  }

  .hero h1 {
    font-size: 3.15rem;
  }

  .hero-actions {
    display: grid;
    max-width: calc(100vw - 28px);
  }

  .button {
    min-width: 0;
    width: 100%;
    padding-inline: 16px;
  }

  .button span {
    min-width: 0;
  }

  .hero-proof {
    max-width: calc(100vw - 28px);
  }

  .hero-stage {
    top: 350px;
    right: -132px;
    width: 280px;
    height: 430px;
  }

  .phone-main {
    width: 250px;
    height: 492px;
  }

  .phone-screen {
    padding-inline: 13px;
  }

  .app-panel {
    padding: 12px;
  }

  .stats-grid strong {
    font-size: 1rem;
  }

  .event-card {
    grid-template-columns: 64px 1fr;
  }

  .poster {
    height: 66px;
  }

  .section-heading h2,
  .overview h2,
  .passport h2,
  .friends-band h2,
  .availability h2 {
    font-size: 2.15rem;
  }

  .feature-card {
    min-height: auto;
  }

  .passport-visual {
    min-height: 460px;
    padding: 16px;
  }

  .passport-card {
    padding: 20px;
  }

  .friend-rows div {
    display: grid;
    gap: 3px;
  }
}
