:root {
  color-scheme: dark;
  --bg: #090013;
  --panel: rgba(18, 9, 38, 0.82);
  --panel-strong: rgba(20, 9, 42, 0.94);
  --text: #ffffff;
  --muted: #bcb3d6;
  --pink: #ff1588;
  --cyan: #18d7ff;
  --magenta: #ff4fc3;
  --purple: #9c4cff;
  --green: #15d76d;
  --border: rgba(255, 21, 136, 0.42);
  --radius: 8px;
  --shadow-pink: 0 0 24px rgba(255, 21, 136, 0.34);
  --shadow-cyan: 0 0 24px rgba(24, 215, 255, 0.28);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 16% 18%, rgba(255, 21, 136, 0.2), transparent 30%),
    radial-gradient(circle at 78% 10%, rgba(24, 215, 255, 0.16), transparent 26%),
    linear-gradient(180deg, #090013 0%, #130020 48%, #07000f 100%);
  color: var(--text);
  font-family: Inter, system-ui, sans-serif;
}

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

.site-shell {
  position: relative;
  overflow: hidden;
}

.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 760px;
  padding: clamp(28px, 5vw, 64px) clamp(20px, 6vw, 86px) 44px;
  border-bottom: 1px solid rgba(255, 21, 136, 0.36);
  overflow: hidden;
}

.sky {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, 0.9) 0 1px, transparent 1.5px),
    linear-gradient(120deg, rgba(255, 21, 136, 0.12), transparent 40%, rgba(24, 215, 255, 0.08));
  background-size: 86px 86px, auto;
  opacity: 0.12;
  animation: starDrift 28s linear infinite;
}

.grid-floor {
  position: absolute;
  left: -10%;
  right: -10%;
  bottom: -80px;
  height: 320px;
  background-image:
    linear-gradient(rgba(255, 21, 136, 0.52) 1px, transparent 1px),
    linear-gradient(90deg, rgba(24, 215, 255, 0.46) 1px, transparent 1px);
  background-size: 64px 42px;
  transform: perspective(620px) rotateX(62deg);
  transform-origin: bottom;
  opacity: 0.28;
  animation: gridPulse 5.6s ease-in-out infinite;
}

.hero-top,
.hero-kosmatic-watermark,
.proof-band,
.panel,
.shop-band,
.booking-panel,
.tour-panel,
.page-hero,
.video-feature {
  position: relative;
  z-index: 1;
}

.hero-top {
  display: flex;
  justify-content: center;
  max-width: 1180px;
  margin: 0 auto;
  width: 100%;
  z-index: 2;
}

.hero-copy {
  max-width: 760px;
  width: 100%;
  text-align: center;
}

h1,
h2,
h3 {
  font-family: Orbitron, Inter, sans-serif;
  letter-spacing: 0;
}

h1 {
  margin: 0;
  line-height: 0;
}

.kos-logo {
  --logo-shift: 16px;
  display: block;
  width: min(100%, 640px);
  margin: 0 auto;
  transform: translateX(var(--logo-shift));
  filter:
    drop-shadow(0 12px 18px rgba(0, 0, 0, 0.45))
    drop-shadow(0 0 22px rgba(24, 215, 255, 0.5));
  animation: logoArrival 900ms cubic-bezier(0.16, 1, 0.3, 1) both, logoGlow 4.8s ease-in-out 900ms infinite;
}

.tagline {
  margin: 26px 0 16px;
  color: var(--cyan);
  font-size: clamp(1.18rem, 2.1vw, 1.6rem);
  font-weight: 800;
  letter-spacing: 0;
}

.hook {
  max-width: 980px;
  margin: 26px auto 20px;
  font-size: clamp(2.25rem, 3.8vw, 3.42rem);
  line-height: 1.02;
  font-weight: 900;
  color: #f4fbff;
  -webkit-text-fill-color: #f4fbff;
  text-transform: uppercase;
  -webkit-text-stroke: 0.35px rgba(255, 255, 255, 0.72);
  text-shadow:
    0 2px 0 rgba(1, 8, 22, 0.92),
    0 4px 0 rgba(2, 11, 30, 0.78),
    0 7px 10px rgba(0, 0, 0, 0.62),
    0 0 16px rgba(24, 215, 255, 0.42),
    0 0 34px rgba(24, 215, 255, 0.24);
  filter: drop-shadow(0 0 14px rgba(24, 215, 255, 0.28));
  animation: riseIn 820ms cubic-bezier(0.16, 1, 0.3, 1) 180ms both;
}

.hook span {
  display: inline;
}

.hero-photo-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(4, 8, 22, 0.48) 0%, rgba(4, 8, 22, 0.2) 48%, rgba(4, 8, 22, 0.5) 100%),
    linear-gradient(180deg, rgba(1, 5, 18, 0.12), rgba(1, 5, 18, 0.74)),
    url("./assets/kos-hero-blue-stage.png") center center / cover no-repeat;
  filter: saturate(1.18) contrast(1.08) brightness(0.9);
  transform: scale(1.04);
  animation: heroDrift 18s ease-in-out infinite alternate;
}

.hero-photo-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 42%, rgba(24, 215, 255, 0.08), transparent 42%),
    linear-gradient(90deg, rgba(255, 21, 136, 0.18), transparent 46%, rgba(24, 215, 255, 0.12));
}

.meta {
  margin: 0 0 28px;
  color: white;
  font-size: 1.2rem;
  font-weight: 600;
  animation: riseIn 760ms cubic-bezier(0.16, 1, 0.3, 1) 330ms both;
}

.hero-actions,
.booking-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-actions {
  justify-content: center;
  margin-top: 28px;
  animation: riseIn 760ms cubic-bezier(0.16, 1, 0.3, 1) 360ms both;
}

.supported-by {
  margin-top: 20px;
  animation: riseIn 760ms cubic-bezier(0.16, 1, 0.3, 1) 600ms both;
}

.supported-by > span {
  display: block;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.supported-by div {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.supported-by img {
  width: auto;
  height: 42px;
  object-fit: contain;
  filter: drop-shadow(0 0 14px rgba(255, 255, 255, 0.2));
}

.supported-footer {
  position: relative;
  z-index: 1;
  max-width: 1260px;
  margin: 0 auto 48px;
  padding: 8px 20px 0;
  text-align: center;
}

.supported-footer div {
  gap: 26px;
}

.supported-footer img {
  height: 72px;
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 28px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 0.98rem;
  font-weight: 900;
  text-transform: uppercase;
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.button::after {
  content: "";
  position: absolute;
  inset: -60% auto -60% -42%;
  width: 34%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.38), transparent);
  transform: skewX(-18deg);
  animation: buttonSweep 4.8s ease-in-out infinite;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  border-color: rgba(24, 215, 255, 0.82);
  background: rgba(24, 215, 255, 0.08);
  box-shadow: var(--shadow-cyan);
}

.button.secondary,
.button.outline {
  border-color: rgba(24, 215, 255, 0.82);
  background: rgba(24, 215, 255, 0.08);
  box-shadow: var(--shadow-cyan);
}

.button.neon {
  color: white;
  background: linear-gradient(135deg, var(--pink), var(--purple));
  box-shadow: var(--shadow-pink);
}

.feature-nav {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  justify-content: center;
  gap: clamp(16px, 5vw, 70px);
  padding: 14px 20px;
  border-bottom: 1px solid rgba(255, 21, 136, 0.28);
  background: rgba(7, 0, 15, 0.86);
  backdrop-filter: blur(12px);
  box-shadow: 0 0 24px rgba(255, 21, 136, 0.14);
}

.feature-nav a {
  flex: 0 0 auto;
  color: var(--cyan);
  font-family: Orbitron, Inter, sans-serif;
  font-size: 0.88rem;
  font-weight: 900;
  white-space: nowrap;
  text-transform: uppercase;
}

.feature-nav a:hover {
  color: var(--pink);
}

.panel h2,
.shop-band h2,
.booking-panel h2 {
  margin: 0;
  color: var(--pink);
  font-size: 1.4rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-kosmatic-watermark {
  display: block;
  position: absolute;
  left: 50%;
  bottom: 22px;
  width: min(26vw, 220px);
  margin: 0;
  opacity: 0.34;
  filter: drop-shadow(0 0 26px rgba(255, 21, 136, 0.45));
  transform: translateX(-50%);
}

.card-grid,
.social-row {
  display: grid;
  gap: 10px;
}

.mini-card,
.social-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 48px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 21, 136, 0.48);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  color: white;
  font-weight: 800;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.mini-card:hover,
.social-link:hover {
  transform: translateX(3px);
  border-color: var(--cyan);
  background: rgba(24, 215, 255, 0.1);
  box-shadow: 0 0 20px rgba(24, 215, 255, 0.16);
}

.link-left > span:first-child {
  display: inline-grid;
  min-width: 34px;
  height: 28px;
  place-items: center;
  margin-right: 10px;
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.42);
}

.link-left {
  display: flex;
  align-items: center;
  min-width: 0;
}

.proof-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  max-width: 1260px;
  margin: 28px auto 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255, 21, 136, 0.28);
  overflow: hidden;
}

.proof-band article {
  padding: 22px;
  background: rgba(10, 2, 24, 0.94);
}

.proof-band span {
  color: var(--magenta);
  font-family: Orbitron, Inter, sans-serif;
  font-size: 1.6rem;
  font-weight: 900;
  text-shadow: 0 0 16px rgba(255, 21, 136, 0.45);
}

.proof-band h2 {
  margin: 10px 0 8px;
  color: var(--cyan);
  font-size: 1rem;
  text-transform: uppercase;
}

.proof-band p,
.shop-band p,
.booking-panel p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.content-grid,
.shop-band,
.social-panel,
.booking-panel,
.tour-panel,
.page-hero,
.spotify-panel,
.support-panel,
.product-panel,
.booking-form-panel,
.video-feature {
  max-width: 1260px;
  margin: 28px auto 0;
}

.video-feature {
  padding: 0 clamp(20px, 5vw, 40px);
}

.video-frame {
  overflow: hidden;
  max-width: 980px;
  margin: 0 auto;
  border: 1px solid rgba(24, 215, 255, 0.44);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.48);
  box-shadow:
    0 0 34px rgba(24, 215, 255, 0.18),
    0 0 42px rgba(255, 21, 136, 0.12);
}

.video-frame iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
}

.content-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 22px;
}

.panel,
.shop-band,
.booking-panel,
.tour-panel {
  border: 1px solid rgba(24, 215, 255, 0.34);
  border-radius: var(--radius);
  background: var(--panel);
  padding: 22px;
}

.panel h2 {
  margin-bottom: 16px;
  color: var(--cyan);
  text-align: center;
}

.spotify-panel {
  max-width: 720px;
}

.spotify-direct {
  width: fit-content;
  margin: 16px auto 0;
}

.spotify-showcase {
  display: block;
  overflow: hidden;
  border: 1px solid rgba(24, 215, 255, 0.34);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(32, 32, 32, 0.98), rgba(12, 12, 12, 0.98)),
    #141414;
  box-shadow: 0 0 28px rgba(24, 215, 255, 0.18);
}

.spotify-head {
  display: grid;
  grid-template-columns: 128px 1fr auto;
  align-items: center;
  gap: 22px;
  padding: 24px;
  background: linear-gradient(135deg, rgba(24, 215, 255, 0.18), rgba(255, 21, 136, 0.1));
}

.spotify-head img {
  display: block;
  width: 128px;
  aspect-ratio: 1 / 1;
  border-radius: 7px;
  object-fit: cover;
}

.spotify-mark {
  display: inline-block;
  margin-bottom: 6px;
  color: #1ed760;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.spotify-head h3 {
  margin: 0;
  color: white;
  font-family: Inter, system-ui, sans-serif;
  font-size: clamp(1.7rem, 4vw, 2.35rem);
  font-weight: 900;
}

.spotify-head p {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 1.1rem;
  font-weight: 800;
}

.spotify-play {
  display: grid;
  width: 72px;
  height: 72px;
  place-items: center;
  border-radius: 50%;
  background: white;
  color: #101010;
  font-size: 1.65rem;
  box-shadow: 0 0 20px rgba(30, 215, 96, 0.28);
}

.spotify-tracks {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  background: rgba(4, 4, 4, 0.72);
}

.spotify-tracks li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  color: white;
  font-weight: 800;
}

.spotify-tracks b {
  color: rgba(255, 255, 255, 0.58);
  font-weight: 700;
}

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

.mini-card {
  min-height: 64px;
  border-color: rgba(24, 215, 255, 0.42);
}

.shop-band {
  display: block;
  border-color: rgba(255, 21, 136, 0.48);
}

.shop-band article {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 140px;
  padding: 22px;
  border: 1px solid rgba(255, 21, 136, 0.42);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(255, 21, 136, 0.12), rgba(156, 76, 255, 0.08));
}

.shop-band h2 {
  color: var(--magenta);
}

.product-panel {
  border-color: rgba(255, 21, 136, 0.44);
}

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

.product-card {
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 12px;
  min-height: 100%;
  padding: 14px;
  border: 1px solid rgba(24, 215, 255, 0.34);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 21, 136, 0.1), rgba(24, 215, 255, 0.06)),
    rgba(255, 255, 255, 0.035);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.product-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 21, 136, 0.72);
  box-shadow: 0 0 26px rgba(255, 21, 136, 0.2);
}

.product-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 7px;
  background: rgba(0, 0, 0, 0.4);
  object-fit: contain;
}

.product-card span,
.product-card strong {
  font-family: Orbitron, Inter, sans-serif;
  text-transform: uppercase;
}

.product-card span {
  color: white;
  font-size: 0.86rem;
  font-weight: 900;
  line-height: 1.25;
}

.product-card strong {
  color: var(--cyan);
  font-size: 0.92rem;
}

.full-shop {
  width: fit-content;
  margin: 18px auto 0;
}

.booking-hero {
  padding-bottom: 0;
}

.booking-form-panel {
  max-width: 720px;
  border-color: rgba(255, 21, 136, 0.46);
}

.booking-form-panel form {
  display: grid;
  gap: 16px;
}

.booking-form-panel label {
  display: grid;
  gap: 8px;
  color: var(--cyan);
  font-family: Orbitron, Inter, sans-serif;
  font-size: 0.88rem;
  font-weight: 900;
  text-transform: uppercase;
}

.booking-form-panel input,
.booking-form-panel textarea {
  width: 100%;
  border: 1px solid rgba(24, 215, 255, 0.44);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.34);
  color: white;
  font: 700 1rem/1.45 Inter, system-ui, sans-serif;
  outline: none;
  padding: 14px 15px;
  box-shadow: inset 0 0 18px rgba(24, 215, 255, 0.08);
}

.booking-form-panel textarea {
  resize: vertical;
}

.booking-form-panel input:focus,
.booking-form-panel textarea:focus {
  border-color: rgba(255, 21, 136, 0.82);
  box-shadow:
    inset 0 0 18px rgba(24, 215, 255, 0.1),
    0 0 20px rgba(255, 21, 136, 0.16);
}

.booking-form-panel button {
  width: fit-content;
  margin: 4px auto 0;
  cursor: pointer;
}

.confirmation-panel {
  text-align: center;
}

.confirmation-panel p {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 1.1rem;
  font-weight: 700;
}

.social-row {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.social-link {
  justify-content: center;
  min-height: 52px;
  border-color: rgba(24, 215, 255, 0.48);
}

.booking-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 52px;
  border-color: rgba(255, 21, 136, 0.5);
  background: linear-gradient(135deg, rgba(255, 21, 136, 0.12), rgba(24, 215, 255, 0.06));
}

.booking-panel h2 {
  margin-bottom: 10px;
}

.tour-panel {
  margin-bottom: 52px;
  border-color: rgba(24, 215, 255, 0.5);
  background:
    linear-gradient(180deg, rgba(10, 3, 24, 0.88), rgba(3, 4, 16, 0.96)),
    radial-gradient(circle at 50% 0%, rgba(24, 215, 255, 0.16), transparent 42%);
}

.section-title {
  display: flex;
  justify-content: center;
  margin-bottom: 18px;
}

.section-title h2,
.page-hero h1 {
  margin: 0;
  color: var(--cyan);
  font-family: Orbitron, Inter, sans-serif;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
  text-shadow: 0 0 18px rgba(24, 215, 255, 0.38);
}

.tour-list {
  display: grid;
  gap: 8px;
}

.tour-row {
  display: grid;
  grid-template-columns: 62px 1.05fr 1fr 0.9fr auto;
  align-items: center;
  gap: 16px;
  min-height: 64px;
  padding: 12px 18px;
  border: 1px solid rgba(24, 215, 255, 0.58);
  border-radius: 7px;
  background:
    linear-gradient(90deg, rgba(24, 215, 255, 0.08), rgba(255, 255, 255, 0.03) 50%, rgba(24, 215, 255, 0.08)),
    rgba(5, 6, 16, 0.88);
  box-shadow:
    inset 0 0 18px rgba(24, 215, 255, 0.12),
    0 0 18px rgba(24, 215, 255, 0.16);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.tour-row:hover {
  transform: translateX(4px);
  border-color: rgba(255, 21, 136, 0.8);
  box-shadow:
    inset 0 0 22px rgba(24, 215, 255, 0.18),
    0 0 26px rgba(255, 21, 136, 0.22);
}

.tour-state {
  display: inline-grid;
  min-width: 42px;
  height: 36px;
  place-items: center;
  border-right: 1px solid rgba(21, 215, 109, 0.58);
  color: var(--cyan);
  font-family: Orbitron, Inter, sans-serif;
  font-size: 0.78rem;
  font-weight: 900;
}

.tour-row strong,
.tour-row span,
.tour-row b {
  font-family: Orbitron, Inter, sans-serif;
  text-transform: uppercase;
}

.tour-row strong {
  color: #f4fbff;
  font-size: clamp(1rem, 2vw, 1.35rem);
}

.tour-row span {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 900;
}

.tour-row b {
  color: var(--cyan);
  font-size: clamp(1rem, 2vw, 1.3rem);
}

.tour-row small {
  display: block;
  color: var(--cyan);
  font-size: 0.7rem;
  line-height: 1.1;
}

.ticket-button,
.ticket-status {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  min-width: 112px;
  padding: 0 14px;
  border-radius: 7px;
  font-family: Orbitron, Inter, sans-serif;
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
}

.ticket-button {
  border: 1px solid rgba(255, 21, 136, 0.74);
  background: linear-gradient(135deg, rgba(255, 21, 136, 0.94), rgba(156, 76, 255, 0.82));
  color: white;
  box-shadow: 0 0 18px rgba(255, 21, 136, 0.24);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.ticket-button:hover {
  transform: translateY(-2px);
  border-color: rgba(24, 215, 255, 0.9);
  box-shadow: 0 0 24px rgba(24, 215, 255, 0.28);
}

.ticket-status {
  border: 1px solid rgba(24, 215, 255, 0.46);
  background: rgba(24, 215, 255, 0.08);
  color: #f4fbff;
}

.page-hero {
  padding: 58px 20px 12px;
  text-align: center;
}

.page-logo {
  --logo-shift: 10px;
  display: block;
  width: min(72vw, 420px);
  margin: 0 auto 18px;
  transform: translateX(var(--logo-shift));
  filter:
    drop-shadow(0 12px 18px rgba(0, 0, 0, 0.45))
    drop-shadow(0 0 22px rgba(24, 215, 255, 0.5));
  animation: logoArrival 780ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.subpage {
  min-height: calc(100vh - 78px);
  padding-bottom: 52px;
}

.location {
  margin-top: 12px !important;
  color: var(--magenta) !important;
  font-weight: 800;
  text-shadow: 0 0 14px rgba(255, 21, 136, 0.42);
}

footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  padding: 24px clamp(20px, 5vw, 72px);
  border-top: 1px solid rgba(255, 21, 136, 0.28);
  color: var(--muted);
  background: #07000f;
}

footer p {
  margin: 0;
}

footer a {
  color: var(--cyan);
  font-weight: 800;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 680ms ease var(--reveal-delay, 0ms),
    transform 680ms cubic-bezier(0.16, 1, 0.3, 1) var(--reveal-delay, 0ms),
    border-color 180ms ease,
    box-shadow 180ms ease;
}

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

@keyframes heroDrift {
  from {
    transform: scale(1.04) translate3d(-10px, 0, 0);
  }

  to {
    transform: scale(1.09) translate3d(12px, -8px, 0);
  }
}

@keyframes starDrift {
  from {
    background-position: 0 0, 0 0;
  }

  to {
    background-position: 86px 172px, 0 0;
  }
}

@keyframes gridPulse {
  0%,
  100% {
    opacity: 0.2;
    filter: drop-shadow(0 0 10px rgba(24, 215, 255, 0.12));
  }

  50% {
    opacity: 0.36;
    filter: drop-shadow(0 0 18px rgba(255, 21, 136, 0.18));
  }
}

@keyframes logoArrival {
  from {
    opacity: 0;
    transform: translateX(var(--logo-shift)) translateY(18px) scale(0.96);
  }

  to {
    opacity: 1;
    transform: translateX(var(--logo-shift)) translateY(0) scale(1);
  }
}

@keyframes logoGlow {
  0%,
  100% {
    filter:
      drop-shadow(0 12px 18px rgba(0, 0, 0, 0.45))
      drop-shadow(0 0 18px rgba(24, 215, 255, 0.42));
  }

  50% {
    filter:
      drop-shadow(0 12px 18px rgba(0, 0, 0, 0.45))
      drop-shadow(0 0 32px rgba(24, 215, 255, 0.68));
  }
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes buttonSweep {
  0%,
  42% {
    left: -42%;
  }

  56%,
  100% {
    left: 112%;
  }
}

@media (max-width: 1120px) {
  .proof-band {
    margin-top: 28px;
    grid-template-columns: repeat(2, 1fr);
  }

  .social-row {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 820px) {
  .hero {
    padding-top: 28px;
  }

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

  .card-grid,
  .social-row,
  .proof-band {
    grid-template-columns: 1fr;
  }

  .shop-band article,
  .booking-panel {
    align-items: flex-start;
    flex-direction: column;
  }

  .tour-row {
    grid-template-columns: 46px 1fr;
    gap: 8px 12px;
  }

  .tour-row span:not(.tour-state),
  .tour-row b,
  .ticket-button,
  .ticket-status {
    grid-column: 2;
  }

  .ticket-button,
  .ticket-status {
    justify-self: start;
    margin-top: 4px;
  }

  .tour-state {
    grid-row: span 4;
    align-self: stretch;
    height: auto;
  }
}

@media (max-width: 520px) {
  .hero {
    padding-left: 20px;
    padding-right: 20px;
  }

  .feature-nav {
    gap: 22px;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 12px;
    scrollbar-width: none;
  }

  .feature-nav::-webkit-scrollbar {
    display: none;
  }

  .feature-nav a {
    font-size: 0.78rem;
  }

  .feature-nav .mobile-hide {
    display: none;
  }

  .kos-logo {
    --logo-shift: 0px;
    width: min(86vw, 306px);
  }

  .hook {
    max-width: 340px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.5rem;
    line-height: 1.12;
  }

  .hook span {
    display: block;
  }

  .meta {
    max-width: 270px;
    margin-left: auto;
    margin-right: auto;
    font-size: 0.9rem;
    line-height: 1.4;
  }

  .hero-kosmatic-watermark {
    width: 160px;
  }

  .button {
    width: 100%;
  }

  .proof-band article,
  .panel,
  .shop-band,
  .booking-panel,
  .tour-panel {
    padding: 16px;
  }

  .page-hero {
    padding-top: 42px;
  }

  .page-logo {
    --logo-shift: 0px;
    width: min(84vw, 310px);
  }

  .page-hero h1 {
    max-width: 340px;
    margin: 0 auto;
    font-size: 1.35rem;
    line-height: 1.16;
  }

  .spotify-head {
    grid-template-columns: 82px 1fr;
    gap: 14px;
    padding: 16px;
  }

  .spotify-head img {
    width: 82px;
  }

  .spotify-play {
    grid-column: 1 / -1;
    width: 54px;
    height: 54px;
    margin-left: auto;
    font-size: 1.2rem;
  }

  .spotify-tracks li {
    padding: 14px 16px;
    font-size: 0.9rem;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
