:root {
  --ink: #172235;
  --ink-2: #26344c;
  --muted: #7a8498;
  --paper: #fff9fb;
  --card: rgba(255, 255, 255, 0.74);
  --white: #ffffff;
  --blue: #62a9ff;
  --blue-deep: #4b6bfb;
  --violet: #a466ff;
  --pink: #ff86bc;
  --coral: #ff8f8f;
  --mint: #9af4ed;
  --flame: #ff7a18;
  --shadow: 0 26px 70px rgba(38, 52, 76, 0.18);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  color-scheme: light dark;
}

.event-redirect {
  display: none;
}

.event-redirect-mode body {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
}

.event-redirect-mode .page-shell {
  display: none;
}

.event-redirect-mode .event-redirect {
  display: grid;
  width: min(620px, 100%);
}

.event-redirect-card {
  position: relative;
  overflow: hidden;
  padding: clamp(28px, 6vw, 52px);
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 38px;
  background: rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(24px);
  box-shadow: var(--shadow);
}

.event-redirect-card::before {
  content: "";
  position: absolute;
  inset: auto -12% -34% 32%;
  height: 260px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(98, 169, 255, 0.36), transparent 68%);
  pointer-events: none;
}

.event-redirect-card .brand-mark {
  margin-bottom: 24px;
}

.event-redirect-card h1 {
  max-width: 560px;
  margin-bottom: 16px;
  font-size: clamp(42px, 8vw, 72px);
  line-height: 0.92;
}

.event-redirect-card p {
  position: relative;
  max-width: 520px;
  color: var(--ink-2);
  font-size: 18px;
  line-height: 1.55;
}

.event-id-line {
  margin-top: 16px;
  padding: 12px 14px;
  border-radius: 18px;
  background: rgba(98, 169, 255, 0.12);
  overflow-wrap: anywhere;
}

.redirect-fallback-copy {
  opacity: 0;
  transform: translateY(8px);
  transition: 180ms ease;
}

.event-redirect-fallback .redirect-fallback-copy {
  opacity: 1;
  transform: translateY(0);
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Space Grotesk", sans-serif;
  color: var(--ink);
  overflow-x: hidden;
  background:
    radial-gradient(circle at 8% 12%, rgba(255, 143, 143, 0.55), transparent 27%),
    radial-gradient(circle at 82% 8%, rgba(154, 244, 237, 0.58), transparent 30%),
    radial-gradient(circle at 55% 5%, rgba(164, 102, 255, 0.44), transparent 26%),
    linear-gradient(135deg, #fff2f6 0%, #edf6ff 48%, #f6f0ff 100%);
}

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

.page-shell {
  width: min(1180px, calc(100% - 34px));
  margin: 0 auto;
}

main {
  padding-top: 92px;
}

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  width: min(1180px, calc(100% - 34px));
  z-index: 10;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 0;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
  backdrop-filter: blur(22px);
  box-shadow: 0 18px 50px rgba(38, 52, 76, 0.11);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-left: 4px;
  min-width: 180px;
}

.brand-mark {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 18px;
  font-family: "Outfit", sans-serif;
  font-weight: 900;
  color: var(--white);
  background: linear-gradient(135deg, var(--pink), var(--violet) 48%, var(--mint));
  box-shadow: 0 14px 28px rgba(164, 102, 255, 0.25);
}

.brand-logo {
  overflow: hidden;
  background: transparent;
}

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

.brand-name {
  font-family: "Outfit", sans-serif;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  flex: 1;
  justify-content: space-between;
  max-width: 760px;
  padding: 12px 24px;
  border: 1px solid rgba(38, 52, 76, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.42);
  color: var(--ink-2);
  font-size: 13px;
  font-weight: 800;
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 38px;
  padding: 0 10px;
  border-radius: 999px;
  opacity: 0.78;
  transition: color 160ms ease, background 160ms ease, opacity 160ms ease;
}

.nav-links span {
  color: var(--blue-deep);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.06em;
}

.nav-links a:hover {
  opacity: 1;
  color: var(--blue-deep);
  background: rgba(98, 169, 255, 0.12);
}

.header-cta,
.primary-button,
.secondary-button,
.store-row a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  font-weight: 800;
}

button.header-cta,
button.mobile-menu-cta,
button.primary-button {
  border: 0;
  font-family: inherit;
  cursor: pointer;
}

.header-cta,
.primary-button {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--violet));
  box-shadow: 0 15px 32px rgba(75, 107, 251, 0.24);
}

.menu-toggle {
  display: none;
  position: relative;
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  border: 1px solid rgba(38, 52, 76, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.64);
  cursor: pointer;
}

.menu-toggle span {
  position: absolute;
  left: 13px;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: var(--ink);
  transition: transform 180ms ease, opacity 180ms ease, top 180ms ease;
}

.menu-toggle span:nth-child(1) {
  top: 16px;
}

.menu-toggle span:nth-child(2) {
  top: 23px;
}

.menu-toggle span:nth-child(3) {
  top: 30px;
}

.mobile-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  right: 0;
  display: grid;
  gap: 8px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 22px 58px rgba(38, 52, 76, 0.16);
  backdrop-filter: blur(22px);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px) scale(0.98);
  transform-origin: top center;
  transition: opacity 180ms ease, transform 180ms ease;
}

.mobile-menu a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 48px;
  padding: 0 16px;
  border-radius: 18px;
  color: var(--ink-2);
  background: rgba(255, 255, 255, 0.48);
  font-weight: 900;
}

.mobile-menu span {
  color: var(--blue-deep);
  font-size: 12px;
  letter-spacing: 0.08em;
}

.mobile-menu .mobile-menu-cta {
  justify-content: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--violet));
}

.site-header.menu-open .mobile-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.site-header.menu-open .menu-toggle span:nth-child(1) {
  top: 23px;
  transform: rotate(45deg);
}

.site-header.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.menu-open .menu-toggle span:nth-child(3) {
  top: 23px;
  transform: rotate(-45deg);
}

.secondary-button {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(38, 52, 76, 0.1);
}

.hero-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 430px);
  gap: 44px;
  align-items: center;
  padding: 44px 0 64px;
}

#features,
#map,
#organizers,
#download {
  scroll-margin-top: 126px;
}

.eyebrow {
  display: inline-flex;
  margin: 0 0 18px;
  padding: 8px 13px;
  border-radius: 999px;
  color: var(--blue-deep);
  background: rgba(98, 169, 255, 0.14);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  font-family: "Outfit", sans-serif;
  letter-spacing: -0.055em;
}

h1 {
  max-width: 820px;
  margin-bottom: 22px;
  font-size: clamp(54px, 7.2vw, 94px);
  line-height: 0.9;
}

.hero-text {
  max-width: 650px;
  color: var(--ink-2);
  font-size: 20px;
  line-height: 1.55;
}

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

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 34px;
  max-width: 650px;
}

.hero-stats div,
.feature-card,
.organizer-card,
.organizer-metrics,
.download-section,
.split-section {
  border: 1px solid rgba(255, 255, 255, 0.75);
  background: var(--card);
  backdrop-filter: blur(22px);
  box-shadow: var(--shadow);
}

.hero-stats div {
  position: relative;
  overflow: hidden;
  padding: 18px;
  border-radius: 24px;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.hero-stats div::after {
  content: "";
  position: absolute;
  inset: auto -34px -46px auto;
  width: 104px;
  height: 104px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(98, 169, 255, 0.24), transparent 68%);
  pointer-events: none;
}

.hero-stats div:nth-child(2)::after {
  background: radial-gradient(circle, rgba(255, 122, 24, 0.24), transparent 68%);
}

.hero-stats div:nth-child(3)::after {
  background: radial-gradient(circle, rgba(164, 102, 255, 0.24), transparent 68%);
}

.hero-stats div:hover {
  transform: translateY(-4px);
  border-color: rgba(98, 169, 255, 0.32);
  box-shadow: 0 28px 72px rgba(38, 52, 76, 0.20);
}

.stat-icon {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  margin-bottom: 14px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(98, 169, 255, 0.18), rgba(164, 102, 255, 0.18));
  font-size: 18px;
}

.hero-stats strong,
.organizer-metrics strong {
  display: block;
  font-family: "Outfit", sans-serif;
  font-size: 28px;
  letter-spacing: -0.04em;
}

.hero-stats span,
.organizer-metrics span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.hero-visual {
  position: relative;
  display: flex;
  min-height: 650px;
  align-items: center;
  justify-content: flex-end;
}

.aurora {
  position: absolute;
  border-radius: 999px;
  filter: blur(24px);
}

.aurora-one {
  inset: 10% 4% auto auto;
  width: 280px;
  height: 280px;
  background: rgba(255, 134, 188, 0.5);
}

.aurora-two {
  inset: auto auto 12% 0;
  width: 300px;
  height: 300px;
  background: rgba(154, 244, 237, 0.55);
}

.phone-frame {
  position: relative;
  width: min(100%, 410px);
  min-height: 635px;
  margin-left: auto;
  padding: 20px;
  border: 12px solid rgba(23, 34, 53, 0.94);
  border-radius: 54px;
  background:
    radial-gradient(circle at 50% 46%, rgba(98, 169, 255, 0.26), transparent 9%),
    radial-gradient(circle at 68% 53%, rgba(255, 122, 24, 0.28), transparent 10%),
    linear-gradient(135deg, rgba(244, 251, 247, 0.96), rgba(231, 246, 255, 0.94));
  box-shadow: 0 32px 90px rgba(23, 34, 53, 0.34);
  overflow: hidden;
}

.phone-status {
  display: flex;
  justify-content: space-between;
  color: var(--white);
  font-weight: 900;
  mix-blend-mode: difference;
}

.map-card,
.event-sheet {
  margin-top: 22px;
  padding: 18px;
  border-radius: 30px;
  color: var(--white);
  background: rgba(23, 34, 53, 0.96);
  box-shadow: 0 20px 44px rgba(23, 34, 53, 0.24);
}

.map-card {
  position: relative;
  z-index: 2;
}

.live-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--blue);
  background: rgba(98, 169, 255, 0.12);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.live-pill i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #2de2a4;
}

.map-card h2 {
  margin: 24px 0 8px;
  font-size: 42px;
}

.map-card p {
  color: rgba(255, 255, 255, 0.76);
}

.search-pill {
  margin-top: 22px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  color: rgba(255, 255, 255, 0.68);
  background: rgba(7, 12, 24, 0.55);
}

.map-area {
  position: relative;
  height: 190px;
  margin: 8px 0 0;
  overflow: hidden;
}

.map-road {
  position: absolute;
  display: block;
  height: 3px;
  border-radius: 999px;
  background: rgba(38, 52, 76, 0.12);
  box-shadow: 0 0 0 7px rgba(255, 255, 255, 0.18);
}

.map-road-one {
  left: -24px;
  top: 70px;
  width: 250px;
  transform: rotate(-16deg);
}

.map-road-two {
  right: -28px;
  top: 116px;
  width: 260px;
  transform: rotate(18deg);
}

.map-road-three {
  left: 98px;
  top: 32px;
  width: 210px;
  transform: rotate(72deg);
}

.pin {
  position: absolute;
  display: grid;
  place-items: center;
}

.pin-blue {
  left: 62px;
  top: 92px;
  width: 42px;
  height: 42px;
  border-radius: 50% 50% 50% 0;
  background: var(--blue-deep);
  transform: rotate(-45deg);
  box-shadow: 0 16px 28px rgba(75, 107, 251, 0.34);
}

.pin-blue::after {
  content: "";
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--white);
}

.pin-hot {
  right: 78px;
  top: 62px;
  font-size: 42px;
  filter: drop-shadow(0 16px 18px rgba(255, 122, 24, 0.36));
  animation: float 1.9s ease-in-out infinite;
}

.pin-user {
  left: 188px;
  top: 44px;
  width: 28px;
  height: 28px;
  border: 4px solid var(--white);
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 12px rgba(98, 169, 255, 0.18);
}

.event-sheet {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  margin: 0;
  z-index: 2;
}

.sheet-handle {
  display: block;
  width: 46px;
  height: 5px;
  margin: 0 auto 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
}

.event-sheet p {
  margin-bottom: 4px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.event-sheet h3 {
  margin-bottom: 16px;
  font-size: 28px;
}

.sheet-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.sheet-actions span {
  padding: 13px 10px;
  border-radius: 16px;
  text-align: center;
  font-weight: 900;
  background: rgba(255, 255, 255, 0.1);
}

.sheet-actions span:first-child {
  background: var(--blue);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
  padding: 54px 0 64px;
  align-items: start;
}

.feature-card {
  min-height: 250px;
  padding: 28px;
  border-radius: var(--radius-lg);
}

.feature-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 22px;
}

.feature-card-wide {
  grid-column: span 2;
}

@media (min-width: 901px) {
  .feature-grid {
    grid-template-columns: repeat(12, 1fr);
  }

  .feature-card-wide {
    grid-column: 1 / span 7;
    min-height: 334px;
  }

  .feature-card:nth-child(2) {
    grid-column: 9 / span 4;
    margin-top: 0;
    min-height: 330px;
  }

  .feature-card:nth-child(3) {
    grid-column: 2 / span 4;
    margin-top: -6px;
    min-height: 324px;
  }

  .feature-card:nth-child(4) {
    grid-column: 6 / span 4;
    margin-top: 42px;
    min-height: 318px;
  }
}

.feature-icon {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(98, 169, 255, 0.18), rgba(255, 134, 188, 0.22));
  font-size: 24px;
}

.feature-tag {
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--blue-deep);
  background: rgba(98, 169, 255, 0.13);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.feature-card h2,
.split-section h2,
.organizer-card h2,
.download-section h2 {
  margin-bottom: 14px;
  font-size: clamp(30px, 3.3vw, 48px);
  line-height: 0.98;
}

.feature-card p,
.split-section p,
.organizer-card p,
.download-section p {
  color: var(--ink-2);
  font-size: 17px;
  line-height: 1.55;
}

.feature-list {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--ink-2);
  font-weight: 700;
}

.feature-list li::before {
  content: "";
  flex: 0 0 auto;
  width: 9px;
  height: 9px;
  margin-top: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--blue), var(--violet));
  box-shadow: 0 0 0 5px rgba(98, 169, 255, 0.12);
}

.split-section {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.68fr);
  gap: 40px;
  align-items: center;
  margin: 36px 0;
  padding: 42px;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 12% 18%, rgba(98, 169, 255, 0.16), transparent 28%),
    radial-gradient(circle at 92% 10%, rgba(164, 102, 255, 0.18), transparent 30%),
    rgba(255, 255, 255, 0.72);
}

.split-section::after {
  content: "";
  position: absolute;
  right: -70px;
  bottom: -90px;
  width: 280px;
  height: 220px;
  border-radius: 42px;
  background:
    linear-gradient(135deg, rgba(98, 169, 255, 0.16), rgba(154, 244, 237, 0.22)),
    rgba(255, 255, 255, 0.46);
  transform: rotate(-8deg);
  pointer-events: none;
}

.split-section > div,
.split-section > p {
  position: relative;
  z-index: 1;
}

.split-section > p {
  justify-self: end;
  max-width: 420px;
  margin: 0;
  padding: 24px;
  border: 1px solid rgba(38, 52, 76, 0.08);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.56);
  box-shadow: 0 18px 42px rgba(38, 52, 76, 0.08);
}

.organizer-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 390px);
  gap: 30px;
  padding: 54px 0;
}

.organizer-card,
.organizer-metrics,
.download-section {
  border-radius: var(--radius-xl);
  padding: 36px;
}

.organizer-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.58fr);
  gap: 34px;
  align-items: center;
  min-height: 392px;
  background:
    linear-gradient(135deg, rgba(255, 134, 188, 0.22), rgba(154, 244, 237, 0.2)),
    var(--card);
}

.organizer-card::before {
  content: "";
  position: absolute;
  right: -110px;
  top: -130px;
  width: 310px;
  height: 310px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(98, 169, 255, 0.26), transparent 68%);
  pointer-events: none;
}

.organizer-card::after {
  content: "";
  position: absolute;
  left: 34px;
  bottom: -82px;
  width: 220px;
  height: 140px;
  border-radius: 42px;
  background: linear-gradient(135deg, rgba(255, 134, 188, 0.20), rgba(164, 102, 255, 0.16));
  transform: rotate(-8deg);
  pointer-events: none;
}

.organizer-copy,
.organizer-points {
  position: relative;
  z-index: 1;
}

.organizer-points {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 26px;
  background:
    radial-gradient(circle at 90% 0%, rgba(98, 169, 255, 0.12), transparent 36%),
    rgba(255, 255, 255, 0.52);
  list-style: none;
}

.organizer-points li {
  display: flex;
  gap: 10px;
  color: var(--ink-2);
  font-weight: 800;
  line-height: 1.35;
}

.organizer-points li::before {
  content: "";
  flex: 0 0 auto;
  width: 9px;
  height: 9px;
  margin-top: 6px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--blue), var(--violet));
  box-shadow: 0 0 0 5px rgba(98, 169, 255, 0.12);
}

.organizer-metrics {
  display: grid;
  gap: 16px;
  align-content: center;
  padding: 34px;
}

.organizer-metrics div {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 7px 15px;
  align-items: center;
  min-height: 106px;
  padding: 20px;
  border: 1px solid rgba(38, 52, 76, 0.06);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.70), rgba(238, 248, 255, 0.66));
}

.organizer-metrics div::after {
  content: "";
  position: absolute;
  right: -22px;
  bottom: -38px;
  width: 100px;
  height: 100px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(98, 169, 255, 0.18), transparent 68%);
}

.metric-kicker {
  display: grid;
  grid-row: 1 / span 2;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 0;
  padding: 0;
  border-radius: 999px;
  color: var(--blue-deep);
  background: rgba(98, 169, 255, 0.14);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.organizer-metrics strong,
.organizer-metrics div > span:not(.metric-kicker) {
  position: relative;
  z-index: 1;
  grid-column: 2;
}

.organizer-metrics div > span:not(.metric-kicker) {
  max-width: 260px;
  line-height: 1.35;
}

.ticket-section {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(330px, 0.68fr);
  gap: 34px;
  align-items: stretch;
  margin: 52px 0 40px;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 8% 10%, rgba(98, 169, 255, 0.18), transparent 28%),
    radial-gradient(circle at 92% 18%, rgba(255, 134, 188, 0.22), transparent 32%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.74), rgba(238, 248, 255, 0.72));
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px);
}

.ticket-section::before {
  content: "";
  position: absolute;
  left: -80px;
  bottom: -110px;
  width: 260px;
  height: 260px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(164, 102, 255, 0.22), transparent 66%);
  pointer-events: none;
}

.ticket-section::after {
  content: "";
  position: absolute;
  right: 38%;
  top: 8%;
  width: 220px;
  height: 220px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(154, 244, 237, 0.18), transparent 68%);
  pointer-events: none;
}

.ticket-copy,
.ticket-preview,
.scanner-card {
  position: relative;
  z-index: 1;
}

.ticket-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 470px;
  padding: clamp(30px, 5vw, 58px);
}

.ticket-copy h2 {
  max-width: 650px;
  margin-bottom: 16px;
  font-size: clamp(38px, 5vw, 72px);
  line-height: 0.92;
}

.ticket-copy p {
  max-width: 650px;
  color: var(--ink-2);
  font-size: 18px;
  line-height: 1.62;
}

.ticket-flow {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-top: 28px;
}

.ticket-flow span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid rgba(38, 52, 76, 0.08);
  font-weight: 900;
}

.ticket-flow i {
  display: block;
  width: 28px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue), var(--violet));
}

.ticket-preview {
  display: grid;
  place-items: center;
  min-height: 470px;
  padding: 18px 22px;
}

.ticket-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(20px);
}

.ticket-glow-one {
  top: 44px;
  right: 26px;
  width: 170px;
  height: 170px;
  background: rgba(98, 169, 255, 0.28);
}

.ticket-glow-two {
  left: 24px;
  bottom: 48px;
  width: 190px;
  height: 190px;
  background: rgba(255, 134, 188, 0.22);
}

.digital-ticket {
  position: relative;
  overflow: hidden;
  width: min(100%, 390px);
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 34px;
  background:
    radial-gradient(circle at 78% 12%, rgba(154, 244, 237, 0.24), transparent 24%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.90), rgba(238, 244, 255, 0.78));
  box-shadow: 0 30px 78px rgba(38, 52, 76, 0.20);
}

.digital-ticket::after {
  content: "";
  position: absolute;
  inset: auto -24px -58px -24px;
  height: 150px;
  border-radius: 46% 46% 0 0;
  background: linear-gradient(135deg, rgba(98, 169, 255, 0.22), rgba(255, 134, 188, 0.24));
  pointer-events: none;
}

.ticket-head,
.ticket-main,
.ticket-details,
.ticket-bottom {
  position: relative;
  z-index: 1;
}

.ticket-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
}

.ticket-head .brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 15px;
}

.ticket-head > span:last-child {
  padding: 9px 12px;
  border-radius: 999px;
  color: var(--blue-deep);
  background: rgba(98, 169, 255, 0.12);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.ticket-main {
  padding: 24px;
  border-radius: 26px;
  color: var(--white);
  background: linear-gradient(135deg, #172235, #263f66);
}

.ticket-main p {
  margin-bottom: 8px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ticket-main h3 {
  margin-bottom: 14px;
  font-size: 34px;
  line-height: 0.95;
}

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

.ticket-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 12px;
}

.ticket-details span {
  min-height: 74px;
  padding: 14px;
  border-radius: 20px;
  color: var(--ink-2);
  background: rgba(255, 255, 255, 0.72);
  font-weight: 900;
}

.ticket-details strong {
  display: block;
  margin-bottom: 5px;
  color: var(--blue-deep);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ticket-details span:last-child {
  grid-column: 1 / -1;
}

.ticket-bottom {
  display: grid;
  grid-template-columns: 128px minmax(0, 1fr);
  gap: 20px;
  align-items: center;
  margin-top: 12px;
  padding: 18px 20px 18px 18px;
  border-radius: 28px;
  color: var(--white);
  background: rgba(23, 34, 53, 0.96);
}

.ticket-bottom strong,
.ticket-bottom span {
  display: block;
}

.ticket-bottom span {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.70);
  font-size: 13px;
  line-height: 1.35;
}

.fake-qr {
  display: grid;
  width: 128px;
  height: 128px;
  place-items: center;
  overflow: hidden;
  padding: 0;
  border: 0;
  border-radius: 30px;
  background: #f8fbff;
  box-shadow:
    inset 0 0 0 1px rgba(23, 34, 53, 0.08),
    0 14px 30px rgba(38, 52, 76, 0.18);
}

.fake-qr img {
  display: block;
  width: 112px;
  height: 112px;
  object-fit: none;
}

.scanner-card {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: auto minmax(0, 0.36fr) minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.70);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.54);
}

.scanner-card h3 {
  margin: 0;
  font-size: 30px;
}

.scanner-card p {
  margin: 0;
  color: var(--ink-2);
  line-height: 1.55;
}

.scanner-icon {
  position: relative;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--blue), var(--violet));
  box-shadow: 0 16px 34px rgba(75, 107, 251, 0.22);
}

.scanner-icon::before,
.scanner-icon::after {
  content: "";
  position: absolute;
  width: 28px;
  height: 28px;
  border: 3px solid var(--white);
  border-right-color: transparent;
  border-bottom-color: transparent;
  border-radius: 7px;
}

.scanner-icon::after {
  transform: rotate(180deg);
}

.download-section {
  margin: 36px 0 26px;
  text-align: center;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 134, 188, 0.35), transparent 28%),
    radial-gradient(circle at 80% 15%, rgba(154, 244, 237, 0.38), transparent 32%),
    rgba(255, 255, 255, 0.72);
}

.download-section p {
  max-width: 680px;
  margin-inline: auto;
}

.store-row {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}

.store-row a {
  min-width: 160px;
  color: var(--white);
  background: var(--ink);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 28px 0 40px;
  color: var(--muted);
  font-weight: 700;
}

.site-footer a {
  color: var(--blue-deep);
}

.policy-main {
  display: grid;
  gap: 18px;
  padding-bottom: 36px;
}

.policy-hero {
  position: relative;
  overflow: hidden;
  margin-top: 28px;
  padding: clamp(34px, 7vw, 72px);
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 134, 188, 0.34), transparent 30%),
    radial-gradient(circle at 82% 10%, rgba(154, 244, 237, 0.36), transparent 31%),
    rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px);
}

.policy-hero h1 {
  max-width: 780px;
  margin-bottom: 18px;
}

.policy-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.policy-meta span {
  padding: 12px 14px;
  border-radius: 999px;
  color: var(--ink-2);
  background: rgba(255, 255, 255, 0.58);
  font-weight: 800;
}

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

.policy-summary article,
.policy-card {
  border: 1px solid rgba(255, 255, 255, 0.75);
  background: var(--card);
  backdrop-filter: blur(22px);
  box-shadow: var(--shadow);
}

.policy-summary article {
  padding: 20px;
  border-radius: 24px;
}

.policy-summary strong {
  display: block;
  margin-bottom: 8px;
  font-family: "Outfit", sans-serif;
  font-size: 22px;
  letter-spacing: -0.04em;
}

.policy-summary span {
  color: var(--muted);
  font-weight: 700;
  line-height: 1.45;
}

.policy-card {
  padding: clamp(24px, 4vw, 38px);
  border-radius: var(--radius-lg);
}

.policy-card h2 {
  margin-bottom: 16px;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1;
}

.policy-card p {
  max-width: 920px;
  color: var(--ink-2);
  font-size: 17px;
  line-height: 1.68;
}

.policy-card p:last-child {
  margin-bottom: 0;
}

.policy-card a {
  color: var(--blue-deep);
  font-weight: 800;
}

.inline-policy-button {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 0 16px;
  border-radius: 999px;
  color: var(--white) !important;
  background: linear-gradient(135deg, var(--blue), var(--violet));
}

.policy-contact {
  background:
    linear-gradient(135deg, rgba(98, 169, 255, 0.16), rgba(255, 134, 188, 0.16)),
    var(--card);
}

.report-modal {
  position: fixed;
  inset: 0;
  z-index: 30;
  display: grid;
  place-items: center;
  padding: 18px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.report-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.report-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.58);
  backdrop-filter: blur(10px);
}

.report-dialog {
  position: relative;
  width: min(620px, 100%);
  max-height: min(760px, calc(100vh - 36px));
  overflow: auto;
  padding: clamp(24px, 5vw, 38px);
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 32px;
  background:
    radial-gradient(circle at 10% 0%, rgba(98, 169, 255, 0.18), transparent 35%),
    rgba(255, 255, 255, 0.96);
  box-shadow: 0 34px 90px rgba(23, 34, 53, 0.28);
  transform: translateY(10px) scale(0.98);
  transition: transform 180ms ease;
}

.report-modal.is-open .report-dialog {
  transform: translateY(0) scale(1);
}

.report-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 16px;
  color: var(--ink);
  background: rgba(38, 52, 76, 0.08);
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}

.report-dialog h2 {
  margin-bottom: 12px;
  font-size: clamp(32px, 5vw, 46px);
}

.report-dialog p,
.report-dialog small {
  color: var(--ink-2);
  line-height: 1.55;
}

.report-form {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.report-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 900;
}

.report-form input,
.report-form textarea {
  width: 100%;
  border: 1px solid rgba(38, 52, 76, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.84);
  color: var(--ink);
  font: inherit;
  font-weight: 600;
  outline: none;
}

.report-form input {
  min-height: 50px;
  padding: 0 15px;
}

.report-form textarea {
  resize: vertical;
  padding: 14px 15px;
}

.report-submit {
  margin-top: 6px;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-7px);
  }
}

@media (max-width: 980px) {
  .nav-links {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  main {
    padding-top: 88px;
  }

  .site-header {
    width: min(100% - 22px, 1180px);
  }

  .hero-section,
  .split-section,
  .organizer-section,
  .ticket-section,
  .policy-summary {
    grid-template-columns: 1fr;
  }

  .split-section > p {
    justify-self: stretch;
    max-width: none;
  }

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

  .ticket-copy {
    min-height: auto;
  }

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

  .scanner-card p {
    grid-column: 1 / -1;
  }

  .split-section::after {
    right: -120px;
    bottom: -120px;
  }

  .hero-section {
    padding-top: 34px;
  }

  .hero-visual {
    min-height: auto;
    justify-content: center;
  }

  .phone-frame {
    margin: 0 auto;
  }

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

  .feature-card-wide {
    grid-column: auto;
  }
}

@media (max-width: 640px) {
  .page-shell {
    width: min(100% - 22px, 1180px);
  }

  .site-header {
    top: 10px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.94);
    border-color: rgba(255, 255, 255, 0.92);
    box-shadow: 0 18px 44px rgba(23, 34, 53, 0.18);
  }

  .mobile-menu {
    background: rgba(255, 255, 255, 0.96);
    border-color: rgba(255, 255, 255, 0.94);
    box-shadow: 0 24px 58px rgba(23, 34, 53, 0.22);
  }

  .mobile-menu a {
    background: rgba(246, 248, 252, 0.96);
  }

  .menu-toggle {
    background: rgba(246, 248, 252, 0.96);
  }

  .header-cta {
    display: none;
  }

  .brand {
    min-width: 0;
  }

  .brand-name {
    font-size: 18px;
  }

  .hero-section {
    padding-top: 28px;
  }

  h1 {
    font-size: 56px;
  }

  .hero-stats,
  .sheet-actions,
  .store-row {
    grid-template-columns: 1fr;
  }

  .hero-stats,
  .store-row {
    display: grid;
  }

  .phone-frame {
    min-height: 620px;
    border-radius: 44px;
  }

  .hero-visual {
    min-height: 0;
    padding: 0 0 4px;
  }

  .phone-frame {
    width: min(100%, 340px);
    min-height: 590px;
    max-height: none;
    padding: 14px;
    border-width: 8px;
    border-radius: 42px;
  }

  .phone-status {
    margin-bottom: 10px;
    font-size: 13px;
  }

  .map-card,
  .event-sheet {
    padding: 14px;
    border-radius: 24px;
  }

  .map-card {
    margin: 10px 8px 0;
  }

  .live-pill {
    padding: 6px 9px;
    font-size: 9px;
  }

  .map-card h2 {
    margin: 14px 0 6px;
    font-size: 28px;
  }

  .map-card p {
    font-size: 13px;
    line-height: 1.3;
  }

  .search-pill {
    margin-top: 12px;
    padding: 10px 12px;
    border-radius: 16px;
    font-size: 13px;
  }

  .map-area {
    height: 128px;
    margin-top: 0;
    opacity: 0.9;
  }

  .pin-blue {
    left: 42px;
    top: 72px;
    width: 28px;
    height: 28px;
  }

  .pin-blue::after {
    width: 11px;
    height: 11px;
  }

  .pin-hot {
    right: 68px;
    top: 58px;
    font-size: 28px;
  }

  .pin-user {
    left: 144px;
    top: 50px;
    width: 22px;
    height: 22px;
    box-shadow: 0 0 0 8px rgba(98, 169, 255, 0.16);
  }

  .event-sheet {
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: 18px;
    margin: 0;
  }

  .sheet-handle {
    width: 30px;
    margin-bottom: 8px;
  }

  .event-sheet p {
    font-size: 9px;
  }

  .event-sheet h3 {
    margin-bottom: 10px;
    font-size: 20px;
  }

  .sheet-actions {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .sheet-actions span {
    padding: 9px 7px;
    border-radius: 13px;
    font-size: 12px;
  }

  .split-section,
  .organizer-card,
  .organizer-metrics,
  .ticket-section,
  .download-section {
    padding: 26px;
  }

  .ticket-section {
    gap: 14px;
  }

  .ticket-copy {
    padding: 8px 4px 0;
  }

  .ticket-copy h2 {
    font-size: 42px;
  }

  .ticket-preview {
    min-height: auto;
    padding: 6px 0;
  }

  .digital-ticket {
    width: 100%;
    border-radius: 28px;
  }

  .ticket-details {
    grid-template-columns: 1fr;
  }

  .ticket-bottom {
    grid-template-columns: 128px minmax(0, 1fr);
  }

  .fake-qr {
    width: 128px;
    height: 128px;
  }

  .ticket-flow {
    align-items: stretch;
  }

  .ticket-flow span {
    flex: 1 1 100%;
    justify-content: center;
  }

  .ticket-flow i {
    width: 2px;
    height: 18px;
    margin: 0 auto;
  }

  .split-section {
    gap: 18px;
  }

  .split-section > p {
    padding: 20px;
    border-radius: 24px;
    font-size: 18px;
    line-height: 1.58;
  }

  .split-section::after {
    right: -160px;
    bottom: -150px;
    width: 250px;
    height: 190px;
    opacity: 0.72;
  }

  .site-footer {
    flex-direction: column;
  }
}

@media (max-width: 640px) and (prefers-color-scheme: dark) {
  .site-header {
    background: rgba(19, 28, 44, 0.96);
    border-color: rgba(255, 255, 255, 0.16);
  }

  .brand-name {
    color: var(--white);
  }

  .menu-toggle {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.16);
  }

  .menu-toggle span {
    background: var(--white);
  }

  .mobile-menu {
    background: rgba(19, 28, 44, 0.98);
    border-color: rgba(255, 255, 255, 0.16);
  }

  .mobile-menu a {
    color: var(--white);
    background: rgba(255, 255, 255, 0.10);
  }

  .report-dialog {
    background:
      radial-gradient(circle at 10% 0%, rgba(98, 169, 255, 0.20), transparent 35%),
      rgba(19, 28, 44, 0.98);
  }

  .report-dialog h2,
  .report-form label {
    color: var(--white);
  }

  .report-dialog p,
  .report-dialog small {
    color: rgba(255, 255, 255, 0.74);
  }

  .report-close {
    color: var(--white);
    background: rgba(255, 255, 255, 0.12);
  }

  .report-form input,
  .report-form textarea {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.10);
  }
}

@media (max-width: 900px) and (prefers-color-scheme: dark) {
  :root {
    --ink: #f8fbff;
    --ink-2: #d7deea;
    --muted: #9aa7bd;
    --paper: #111827;
    --card: rgba(19, 28, 44, 0.78);
    --shadow: 0 26px 70px rgba(0, 0, 0, 0.34);
  }

  body {
    color: var(--ink);
    background:
      radial-gradient(circle at 8% 12%, rgba(255, 134, 188, 0.22), transparent 28%),
      radial-gradient(circle at 84% 8%, rgba(154, 244, 237, 0.18), transparent 30%),
      radial-gradient(circle at 54% 4%, rgba(98, 169, 255, 0.18), transparent 28%),
      linear-gradient(135deg, #111827 0%, #151f31 48%, #21192d 100%);
  }

  .site-header,
  .mobile-menu {
    background: rgba(19, 28, 44, 0.94);
    border-color: rgba(255, 255, 255, 0.16);
    box-shadow: 0 22px 58px rgba(0, 0, 0, 0.30);
  }

  .brand-name,
  .nav-link,
  .mobile-menu a,
  .secondary-button,
  .store-button,
  .policy-card h2,
  .feature-card h2,
  .split-section h2,
  .organizer-card h2,
  .download-section h2 {
    color: var(--ink);
  }

  .nav-links,
  .mobile-menu a,
  .menu-toggle,
  .secondary-button,
  .store-button,
  .organizer-metrics div,
  .event-redirect-card,
  .report-dialog {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.14);
  }

  .menu-toggle span {
    background: var(--ink);
  }

  .hero-stats div,
  .feature-card,
  .organizer-card,
  .organizer-metrics,
  .ticket-section,
  .download-section,
  .split-section,
  .policy-summary article,
  .policy-card {
    border-color: rgba(255, 255, 255, 0.13);
    background: var(--card);
  }

  .split-section {
    background:
      radial-gradient(circle at 12% 18%, rgba(98, 169, 255, 0.18), transparent 28%),
      radial-gradient(circle at 92% 10%, rgba(164, 102, 255, 0.16), transparent 30%),
      rgba(19, 28, 44, 0.78);
  }

  .split-section > p {
    color: #f8fbff;
    background: rgba(9, 15, 29, 0.78);
    border-color: rgba(255, 255, 255, 0.14);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 20px 46px rgba(0, 0, 0, 0.18);
  }

  .split-section::after {
    opacity: 0.26;
  }

  .organizer-card {
    background:
      linear-gradient(135deg, rgba(255, 134, 188, 0.16), rgba(154, 244, 237, 0.12)),
      rgba(19, 28, 44, 0.78);
  }

  .organizer-points {
    color: var(--ink);
    border-color: rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.08);
  }

  .organizer-points li {
    color: var(--ink-2);
  }

  .download-section {
    background:
      radial-gradient(circle at 20% 20%, rgba(255, 134, 188, 0.20), transparent 28%),
      radial-gradient(circle at 80% 15%, rgba(154, 244, 237, 0.18), transparent 32%),
      rgba(19, 28, 44, 0.78);
  }

  .ticket-section {
    background:
      radial-gradient(circle at 8% 10%, rgba(98, 169, 255, 0.18), transparent 28%),
      radial-gradient(circle at 92% 18%, rgba(255, 134, 188, 0.16), transparent 32%),
      rgba(19, 28, 44, 0.78);
  }

  .ticket-copy p,
  .scanner-card p {
    color: var(--ink-2);
  }

  .ticket-flow span,
  .scanner-card,
  .digital-ticket,
  .ticket-details span {
    color: var(--ink);
    border-color: rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.08);
  }

  .digital-ticket {
    background:
      radial-gradient(circle at 78% 12%, rgba(154, 244, 237, 0.13), transparent 24%),
      linear-gradient(145deg, rgba(19, 28, 44, 0.96), rgba(29, 39, 60, 0.88));
  }

  .ticket-head > span:last-child {
    color: #9ccaff;
    background: rgba(98, 169, 255, 0.13);
  }

  .hero-copy p,
  .feature-card p,
  .split-section p,
  .organizer-card p,
  .download-section p,
  .policy-card p,
  .event-redirect-card p,
  .report-dialog p,
  .report-dialog small {
    color: var(--ink-2);
  }

  .hero-stats span,
  .organizer-metrics span,
  .policy-summary span,
  .site-footer {
    color: var(--muted);
  }

  .report-close {
    color: var(--ink);
    background: rgba(255, 255, 255, 0.10);
  }

  .report-form label {
    color: var(--ink);
  }

  .report-form input,
  .report-form textarea {
    color: var(--ink);
    border-color: rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.08);
  }

  .report-form input::placeholder,
  .report-form textarea::placeholder {
    color: rgba(248, 251, 255, 0.50);
  }

  .store-row a {
    color: #ffffff;
    background: linear-gradient(135deg, #4f9cff, #8b5cf6);
    box-shadow: 0 18px 38px rgba(79, 156, 255, 0.28);
  }

  .store-row a:nth-child(2) {
    color: #f8fbff;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
  }
}

@media (max-width: 900px) and (prefers-color-scheme: dark) {
  .nav-links {
    gap: 8px;
    padding: 8px;
  }

  .nav-link {
    padding: 11px 16px;
    border-radius: 999px;
  }

  .nav-link.active {
    background: rgba(98, 169, 255, 0.12);
  }
}
