:root {
  --bg: #07070c;
  --bg-soft: #10111b;
  --surface: rgba(255, 255, 255, 0.075);
  --surface-strong: rgba(255, 255, 255, 0.12);
  --text: #ffffff;
  --muted: #b8b8c7;
  --dim: #77788a;
  --line: rgba(255, 255, 255, 0.14);
  --pink: #ff4fd8;
  --violet: #8a5cff;
  --blue: #2ed7ff;
  --green: #7cffc4;
  --radius: 24px;
  --radius-sm: 14px;
  --shadow: 0 24px 90px rgba(0, 0, 0, 0.45);
  --max: 1160px;
  --header-h: 76px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(138, 92, 255, 0.2), transparent 34rem),
    radial-gradient(circle at top right, rgba(255, 79, 216, 0.16), transparent 32rem),
    var(--bg);
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

::selection {
  background: rgba(255, 79, 216, 0.35);
}

.loader {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  background: #050508;
  transition: opacity 360ms ease, visibility 360ms ease;
}

.loader.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.loader__mark,
.brand__mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  overflow: hidden;
  border-radius: 12px;
  background: #090a12;
  box-shadow: 0 0 28px rgba(138, 92, 255, 0.32);
}

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

.loader__mark {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  animation: loaderPulse 800ms ease-in-out infinite alternate;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  height: 3px;
  width: 0;
  background: linear-gradient(90deg, var(--pink), var(--blue));
}

.cursor-glow {
  position: fixed;
  z-index: 0;
  width: 26rem;
  height: 26rem;
  pointer-events: none;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(138, 92, 255, 0.14), transparent 64%);
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 200ms ease;
}

.site-header {
  position: fixed;
  top: 16px;
  left: 50%;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(calc(100% - 32px), var(--max));
  min-height: 60px;
  padding: 10px 12px 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(7, 7, 12, 0.58);
  box-shadow: 0 12px 44px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(22px);
  transform: translateX(-50%);
  transition: background 200ms ease, border-color 200ms ease, transform 200ms ease;
}

.site-header.is-scrolled {
  background: rgba(7, 7, 12, 0.82);
  border-color: rgba(255, 255, 255, 0.2);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-nav a,
.footer-links a {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
  transition: color 160ms ease, background 160ms ease;
}

.site-nav a {
  padding: 10px 14px;
  border-radius: 999px;
}

.site-nav a:hover,
.site-nav a.is-active,
.footer-links a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  border-radius: 999px;
  background: #fff;
  transition: transform 180ms ease;
}

.section-shell {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.88fr);
  align-items: center;
  min-height: 100svh;
  padding: 96px 0 64px;
  gap: clamp(32px, 6vw, 82px);
}

.hero__content {
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 16px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 18px rgba(124, 255, 196, 0.8);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 650px;
  margin-bottom: 18px;
  margin-inline: auto;
  font-size: clamp(2.7rem, 4.9vw, 4rem);
  line-height: 0.96;
  font-weight: 900;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.2rem, 6vw, 4.5rem);
  line-height: 0.96;
  font-weight: 900;
  letter-spacing: 0;
}

h3 {
  font-size: clamp(1.25rem, 2.2vw, 1.7rem);
  line-height: 1.05;
  font-weight: 850;
}

.hero__copy,
.section-heading p,
.about-copy p,
.contact-copy p {
  color: var(--muted);
  font-size: clamp(1rem, 1.8vw, 1.18rem);
}

.hero__copy {
  max-width: 590px;
  margin: 0 auto 20px;
}

.contact-copy a {
  color: #fff;
  font-weight: 850;
  text-decoration: underline;
  text-decoration-color: rgba(124, 255, 196, 0.55);
  text-underline-offset: 4px;
}

.store-row,
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: center;
}

.store-row {
  margin-bottom: 18px;
}

.store-button,
.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.store-button {
  flex-direction: column;
  min-width: 156px;
  padding: 10px 18px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  line-height: 1.1;
}

.store-button span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
}

.store-button strong {
  font-size: 1.05rem;
}

.button {
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 850;
}

.button--primary {
  border-color: transparent;
  background: linear-gradient(135deg, var(--pink), var(--violet), var(--blue));
  color: #fff;
  box-shadow: 0 14px 40px rgba(138, 92, 255, 0.32);
}

.button--ghost {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

.store-button:hover,
.button:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.28);
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.32);
}

.hero__visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 560px;
  perspective: 900px;
}

.phone {
  position: relative;
  width: min(100%, 310px);
  aspect-ratio: 0.49;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 42px;
  background: linear-gradient(145deg, #252631, #050508 48%, #181923);
  box-shadow: var(--shadow), inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.phone--screenshot {
  padding: 0;
  border: 0;
  border-radius: 44px;
  background: transparent;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.55);
}

.phone--hero {
  transform: rotateX(4deg) rotateY(-10deg) rotateZ(2deg);
  animation: phoneFloat 4.8s ease-in-out infinite alternate;
}

.phone__notch {
  position: absolute;
  top: 18px;
  left: 50%;
  z-index: 2;
  width: 96px;
  height: 24px;
  border-radius: 999px;
  background: #050508;
  transform: translateX(-50%);
}

.app-screen {
  position: relative;
  height: 100%;
  overflow: hidden;
  border-radius: 32px;
  background:
    radial-gradient(circle at 35% 15%, rgba(255, 79, 216, 0.26), transparent 28%),
    radial-gradient(circle at 90% 0%, rgba(46, 215, 255, 0.18), transparent 32%),
    linear-gradient(160deg, #141521, #080911 60%, #12131d);
}

.phone--screenshot .app-screen {
  border-radius: 44px;
  background: transparent;
}

.app-screen img,
.screen-mode img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.screen-top {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  padding: 58px 20px 0;
  color: #fff;
  font-weight: 850;
}

.screen-top button {
  width: 32px;
  height: 32px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
}

.map-glow {
  position: absolute;
  inset: 110px 20px 120px;
  border-radius: 26px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.09) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.09) 1px, transparent 1px),
    radial-gradient(circle at 62% 48%, var(--pink) 0 8px, transparent 9px),
    radial-gradient(circle at 36% 62%, var(--blue) 0 7px, transparent 8px),
    radial-gradient(circle at 52% 28%, var(--green) 0 6px, transparent 7px),
    rgba(255, 255, 255, 0.055);
  background-size: 38px 38px, 38px 38px, auto, auto, auto, auto;
  box-shadow: inset 0 0 36px rgba(255, 255, 255, 0.05);
}

.venue-sheet {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 18px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: rgba(9, 10, 17, 0.82);
  backdrop-filter: blur(18px);
}

.venue-sheet p,
.venue-sheet h3 {
  margin-bottom: 6px;
}

.venue-sheet p,
.rating-row,
.venue-sheet small {
  color: var(--muted);
  font-size: 0.78rem;
}

.rating-row,
.mini-avatars {
  display: flex;
  gap: 8px;
  align-items: center;
}

.mini-avatars {
  margin-top: 14px;
}

.mini-avatars span {
  width: 28px;
  height: 28px;
  margin-right: -13px;
  border: 2px solid #11121b;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink), var(--blue));
}

.experience,
.guides,
.about,
.merch,
.contact {
  padding: clamp(76px, 12vw, 128px) 0;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 42px;
  margin-inline: auto;
  text-align: center;
}

.section-heading--compact {
  margin-bottom: 22px;
}

.experience-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: start;
}

.sticky-phone {
  position: sticky;
  top: 116px;
  display: grid;
  place-items: center;
  min-height: 620px;
}

.phone--sticky {
  width: min(100%, 286px);
}

.screen-mode {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 64px 22px 28px;
  opacity: 0;
  transform: translateY(16px) scale(0.98);
  transition: opacity 260ms ease, transform 260ms ease;
}

.phone--screenshot .screen-mode {
  display: block;
  padding: 0;
}

.screen-mode--active {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.app-label {
  width: fit-content;
  margin-bottom: 16px;
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--green);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.venue-list {
  display: grid;
  gap: 12px;
}

.venue-list span,
.reservation-card,
.promo-ticket {
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.08);
}

.venue-list span {
  height: 74px;
}

.reservation-card,
.promo-ticket {
  padding: 18px;
}

.reservation-card span {
  display: block;
  color: var(--muted);
  font-size: 0.86rem;
}

.pulse-bars {
  display: flex;
  align-items: end;
  gap: 10px;
  height: 160px;
}

.pulse-bars span {
  flex: 1;
  border-radius: 999px 999px 10px 10px;
  background: linear-gradient(180deg, var(--pink), var(--blue));
  animation: pulseBar 900ms ease-in-out infinite alternate;
}

.pulse-bars span:nth-child(1) {
  height: 46%;
}

.pulse-bars span:nth-child(2) {
  height: 78%;
  animation-delay: -200ms;
}

.pulse-bars span:nth-child(3) {
  height: 58%;
  animation-delay: -500ms;
}

.pulse-bars span:nth-child(4) {
  height: 88%;
  animation-delay: -340ms;
}

.taste-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.taste-cloud span {
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-weight: 800;
}

.feature-stack {
  display: grid;
  gap: 18px;
}

.feature-card,
.stat-card,
.guide-card,
.product-card,
.contact-form,
.legal-card,
.faq {
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.045));
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
}

.feature-card {
  min-height: 260px;
  padding: clamp(24px, 5vw, 38px);
  border-radius: var(--radius);
  text-align: center;
}

.feature-card__number {
  display: block;
  margin-bottom: 34px;
  color: var(--dim);
  font-size: 0.82rem;
  font-weight: 900;
}

.feature-card p {
  max-width: 54ch;
  margin-inline: auto;
}

.feature-card p,
.guide-card p,
.product-card p,
.stat-card span {
  color: var(--muted);
}

.guides {
  overflow: hidden;
}

.guide-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.guide-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 380px;
  padding: clamp(22px, 4vw, 32px) clamp(22px, 4vw, 32px) 194px;
  border-radius: var(--radius);
  overflow: hidden;
  text-align: center;
}

.guide-card::before {
  content: "";
  position: absolute;
  inset: auto 18px 18px;
  height: 156px;
  border-radius: 22px;
  background:
    radial-gradient(circle at 24% 42%, rgba(124, 255, 196, 0.26), transparent 30%),
    radial-gradient(circle at 72% 52%, rgba(255, 79, 216, 0.28), transparent 34%),
    linear-gradient(135deg, rgba(46, 215, 255, 0.28), rgba(138, 92, 255, 0.28)),
    rgba(255, 255, 255, 0.06);
  opacity: 0.86;
}

.guide-card--featured::before {
  background:
    radial-gradient(circle at 28% 28%, rgba(255, 255, 255, 0.22), transparent 26%),
    radial-gradient(circle at 74% 44%, rgba(46, 215, 255, 0.34), transparent 34%),
    linear-gradient(135deg, rgba(255, 79, 216, 0.34), rgba(138, 92, 255, 0.44));
}

.guide-card__label {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--green);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.guide-card h3,
.guide-card p,
.guide-card__label {
  position: relative;
  z-index: 1;
}

.guide-card h3 {
  max-width: 16ch;
  margin-bottom: 0;
}

.guide-card p {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 156px;
  margin: 0;
  padding: 20px 26px;
  max-width: none;
}

.about-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.86fr);
  gap: clamp(28px, 6vw, 70px);
  align-items: start;
}

.about-copy p {
  max-width: 680px;
  margin-inline: auto;
}

.about-copy,
.contact-copy,
.stat-card {
  text-align: center;
}

.stat-grid {
  display: grid;
  gap: 14px;
}

.stat-card {
  padding: 22px;
  border-radius: 20px;
}

.stat-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.15rem;
}

.faq {
  margin-top: 42px;
  padding: clamp(22px, 4vw, 36px);
  border-radius: var(--radius);
  text-align: center;
}

.accordion {
  display: grid;
  gap: 10px;
}

.accordion__item {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.045);
  overflow: hidden;
}

.accordion__item button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: 100%;
  padding: 18px;
  border: 0;
  background: transparent;
  color: #fff;
  font-weight: 850;
  text-align: left;
}

.accordion__icon {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background:
    linear-gradient(#fff, #fff) center / 10px 2px no-repeat,
    linear-gradient(#fff, #fff) center / 2px 10px no-repeat,
    rgba(255, 255, 255, 0.12);
}

.accordion__item button[aria-expanded="true"] .accordion__icon {
  background:
    linear-gradient(#fff, #fff) center / 10px 2px no-repeat,
    rgba(255, 255, 255, 0.12);
}

.accordion__panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 220ms ease;
}

.accordion__panel p {
  margin: 0 auto;
  padding: 0 18px 18px;
  color: var(--muted);
  max-width: 72ch;
  text-align: center;
}

.merch {
  text-align: center;
}

.merch .section-heading {
  margin-inline: auto;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.product-card {
  padding: 14px;
  border-radius: var(--radius);
  text-align: left;
}

.product-card__visual {
  min-height: 270px;
  margin-bottom: 18px;
  border-radius: 18px;
  background:
    radial-gradient(circle at 50% 24%, rgba(255, 255, 255, 0.18), transparent 24%),
    linear-gradient(135deg, rgba(255, 79, 216, 0.18), rgba(46, 215, 255, 0.18)),
    #11121b;
}

.product-card__visual--cap {
  clip-path: polygon(8% 45%, 35% 25%, 70% 25%, 92% 46%, 82% 72%, 18% 72%);
}

.product-card__visual--hoodie {
  clip-path: polygon(25% 16%, 75% 16%, 95% 46%, 82% 92%, 18% 92%, 5% 46%);
}

.product-card__visual--tee {
  clip-path: polygon(27% 16%, 43% 26%, 57% 26%, 73% 16%, 96% 34%, 80% 52%, 75% 92%, 25% 92%, 20% 52%, 4% 34%);
}

.product-card h3 {
  margin-bottom: 6px;
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: clamp(18px, 4vw, 28px);
  border-radius: var(--radius);
}

.legal-page {
  padding: 132px 0 clamp(76px, 12vw, 128px);
}

.legal-hero {
  max-width: 820px;
  margin-bottom: 32px;
}

.legal-hero p:not(.eyebrow) {
  color: var(--muted);
  font-size: clamp(1rem, 1.8vw, 1.18rem);
}

.policy-content {
  display: grid;
  gap: 16px;
  max-width: 920px;
  padding: clamp(18px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.045));
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
}

.policy-content article {
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.policy-content article:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.policy-content h2 {
  margin-bottom: 8px;
  font-size: 1.15rem;
  line-height: 1.2;
}

.policy-content p {
  margin-bottom: 0;
  color: var(--muted);
}

.field {
  position: relative;
}

.field input,
.field textarea,
.signup-form input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
  outline: 0;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.field input,
.field textarea {
  padding: 24px 16px 10px;
}

.field textarea {
  resize: vertical;
}

.field span {
  position: absolute;
  top: 17px;
  left: 16px;
  color: var(--muted);
  pointer-events: none;
  transition: transform 160ms ease, color 160ms ease, font-size 160ms ease;
}

.field input:focus,
.field textarea:focus,
.signup-form input:focus {
  border-color: rgba(46, 215, 255, 0.62);
  background: rgba(255, 255, 255, 0.095);
  box-shadow: 0 0 0 4px rgba(46, 215, 255, 0.1);
}

.field input:focus + span,
.field textarea:focus + span,
.field input:not(:placeholder-shown) + span,
.field textarea:not(:placeholder-shown) + span {
  color: var(--green);
  font-size: 0.74rem;
  transform: translateY(-10px);
}

.form-status {
  display: none;
  padding: 12px 14px;
  border-radius: 14px;
  font-size: 0.9rem;
  font-weight: 800;
}

.form-status.is-success {
  display: block;
  background: rgba(124, 255, 196, 0.12);
  color: var(--green);
}

.form-status.is-error {
  display: block;
  background: rgba(255, 79, 216, 0.13);
  color: #ffb9ef;
}

.site-footer {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
  padding: 36px 0 44px;
  border-top: 1px solid var(--line);
}

.site-footer p {
  color: var(--muted);
}

.signup-form {
  justify-self: end;
  width: min(100%, 360px);
}

.signup-form label {
  display: block;
  margin-bottom: 10px;
  font-weight: 850;
}

.signup-form div {
  display: flex;
  gap: 8px;
}

.signup-form input {
  min-height: 48px;
  padding: 0 14px;
}

.signup-form button {
  min-width: 76px;
  border: 0;
  border-radius: 14px;
  background: #fff;
  color: #07070c;
  font-weight: 900;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
}

.copyright {
  grid-column: 1 / -1;
  justify-self: center;
  margin: 0;
  text-align: center;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes loaderPulse {
  to {
    transform: scale(1.08);
  }
}

@keyframes phoneFloat {
  to {
    transform: rotateX(1deg) rotateY(-6deg) rotateZ(-1deg) translateY(-14px);
  }
}

@keyframes pulseBar {
  to {
    filter: brightness(1.22);
    transform: scaleY(0.88);
  }
}

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

@media (max-width: 920px) {
  .hero,
  .experience-grid,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 118px;
    padding-bottom: 40px;
  }

  .hero__visual {
    min-height: auto;
    padding-top: 12px;
  }

  .phone--hero {
    width: min(62vw, 250px);
    animation: none;
    transform: none;
  }

  .sticky-phone {
    position: relative;
    top: auto;
    min-height: auto;
  }

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

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

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

  .product-card__visual {
    min-height: 220px;
  }
}

@media (max-width: 720px) {
  .site-header {
    top: 10px;
    width: min(calc(100% - 20px), var(--max));
    border-radius: 24px;
  }

  .nav-toggle {
    display: block;
  }

  .nav-open .nav-toggle span:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }

  .nav-open .nav-toggle span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    top: 78px;
    left: 10px;
    right: 10px;
    display: grid;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(7, 7, 12, 0.94);
    box-shadow: var(--shadow);
    backdrop-filter: blur(20px);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .nav-open .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 14px;
  }

  h1 {
    font-size: clamp(2.75rem, 15vw, 4.35rem);
  }

  .hero__visual {
    min-height: auto;
  }

  .phone {
    width: min(100%, 260px);
  }

  .phone--hero {
    width: min(58vw, 220px);
  }

  .store-button,
  .button {
    width: 100%;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .signup-form,
  .copyright {
    justify-self: center;
  }

  .copyright {
    text-align: center;
  }
}
