:root {
  color-scheme: light;
  --blue: #9f7aea;
  --blue-focus: #b794f4;
  --blue-dark: #d7b46a;
  --ink: #1d1d1f;
  --muted: #6e6e73;
  --canvas: #ffffff;
  --parchment: #f5f5f7;
  --pearl: #fafafc;
  --tile-dark: #272729;
  --tile-dark-2: #2a2a2c;
  --black: #000000;
  --hairline: #e0e0e0;
  --content: 1100px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  height: 2px;
  background: var(--blue);
  pointer-events: none;
  transform: scaleX(0);
  transform-origin: left center;
  will-change: transform;
}

.motion-enabled [data-motion] {
  opacity: 0;
  transform: translate3d(0, 24px, 0);
  transition:
    opacity 700ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--motion-delay, 0ms);
  will-change: opacity, transform;
}

.motion-enabled [data-motion="hero"] {
  transform: translate3d(0, 18px, 0);
  transition-duration: 800ms;
}

.motion-enabled [data-motion="scale"] {
  transform: translate3d(0, 22px, 0) scale(0.975);
}

.motion-enabled [data-motion="from-left"] {
  transform: translate3d(-34px, 0, 0);
}

.motion-enabled [data-motion="from-right"] {
  transform: translate3d(34px, 0, 0) scale(0.98);
}

.motion-enabled [data-motion].is-motion-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  will-change: auto;
}

body {
  margin: 0;
  background: var(--canvas);
  color: var(--ink);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Yu Gothic", Meiryo, sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.47;
  letter-spacing: -0.01em;
}

a {
  color: var(--blue);
  text-underline-offset: 3px;
}

a:focus-visible {
  outline: 2px solid var(--blue-focus);
  outline-offset: 3px;
}

.site-header {
  height: 44px;
  background: var(--black);
  color: #fff;
}

.site-header-inner,
.sub-nav-inner,
.section-inner,
.site-footer-inner {
  width: min(var(--content), calc(100% - 40px));
  margin: 0 auto;
}

.site-header-inner {
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-brand {
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
}

.site-header nav,
.sub-nav nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.site-header nav a {
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  letter-spacing: -0.01em;
  text-decoration: none;
}

.sub-nav {
  position: sticky;
  top: 0;
  z-index: 20;
  height: 52px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  background: rgba(245, 245, 247, 0.82);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
}

.sub-nav-inner {
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.sub-nav-title {
  color: var(--ink);
  font-size: 21px;
  font-weight: 600;
  letter-spacing: -0.02em;
  text-decoration: none;
}

.sub-nav nav a:not(.button-primary) {
  color: var(--ink);
  font-size: 14px;
  text-decoration: none;
}

.button-primary {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 22px;
  border-radius: 9999px;
  background: var(--blue);
  color: #fff;
  font-size: 17px;
  line-height: 1;
  text-decoration: none;
  transition: transform 120ms ease, background-color 120ms ease;
}

.button-primary:active {
  transform: scale(0.95);
}

.button-primary:hover {
  background: var(--blue-focus);
}

.button-small {
  min-height: 32px;
  padding: 8px 15px;
  font-size: 14px;
}

.hero {
  min-height: calc(100svh - 96px);
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 18% 16%, rgba(87, 56, 144, 0.32), transparent 34%),
    radial-gradient(circle at 82% 72%, rgba(133, 92, 45, 0.22), transparent 38%),
    linear-gradient(145deg, #08070b 0%, #15111e 48%, #08080b 100%);
  color: #fff;
  text-align: center;
}

.hero-inner {
  width: min(900px, calc(100% - 40px));
  margin: 0 auto;
  padding: 96px 0 112px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  font-size: clamp(40px, 5.4vw, 64px);
  font-weight: 600;
  line-height: 1.07;
  letter-spacing: -0.035em;
}

.hero-copy {
  max-width: 760px;
  margin: 28px auto 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: clamp(20px, 2.3vw, 28px);
  font-weight: 400;
  line-height: 1.35;
  letter-spacing: -0.025em;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 32px;
}

.text-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 17px;
  text-decoration: none;
}

.text-link span {
  display: inline-block;
  font-size: 26px;
  line-height: 0;
  transition: transform 180ms ease;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 30px;
  padding: 8px 14px;
  border-radius: 11px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue);
}

.section {
  padding: 96px 0;
  background: var(--canvas);
}

.section.is-wash {
  background: var(--parchment);
}

.section.is-dark {
  background: var(--tile-dark);
  color: #fff;
}

.section.is-compact {
  padding: 64px 0;
}

.section-heading {
  max-width: 800px;
  margin: 0 auto 48px;
  text-align: center;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(34px, 4vw, 48px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.035em;
}

.section-heading p {
  margin: 20px auto 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.47;
}

.is-dark .eyebrow {
  color: var(--blue-dark);
}

.is-dark .section-heading p,
.is-dark .screen-copy ul {
  color: #ccc;
}

.ticket-prices {
  background:
    radial-gradient(circle at 50% 0%, rgba(159, 122, 234, 0.13), transparent 44%),
    #101013;
  color: #fff;
}

.ticket-prices .eyebrow {
  color: var(--blue-dark);
}

.ticket-prices .section-heading p,
.ticket-prices .price-note {
  color: #ccc;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.price-grid.is-single {
  grid-template-columns: minmax(0, 720px);
  justify-content: center;
}

.price-card {
  min-height: 340px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 64px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 24px;
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025));
  color: #fff;
  text-align: center;
  text-decoration: none;
  transition: background-color 160ms ease, transform 120ms ease;
}

.price-card {
  background: linear-gradient(150deg, rgba(215, 180, 106, 0.13), rgba(255, 255, 255, 0.025));
}

.price-card:active {
  transform: scale(0.98);
}

.price-card:hover .price-link span,
.text-link:hover span {
  transform: translateX(4px);
}

.price-label {
  margin: 0 0 12px;
  color: var(--blue-dark);
  font-size: 14px;
  font-weight: 600;
}

.price-card h3 {
  margin: 0;
  font-size: 28px;
  font-weight: 600;
  line-height: 1.14;
  letter-spacing: -0.025em;
}

.price {
  margin: 28px 0 0;
  color: #fff;
  font-weight: 600;
}

.price span {
  font-size: clamp(56px, 7vw, 84px);
  line-height: 1;
  letter-spacing: -0.055em;
}

.price small,
.price-unit,
.price-note {
  font-size: 14px;
}

.price small,
.price-unit {
  color: #ccc;
}

.price-unit {
  margin: 10px 0 0;
}

.cash-purchase-note {
  max-width: 720px;
  margin: 20px auto 0;
  padding: 32px;
  border: 1px solid rgba(215, 180, 106, 0.24);
  border-radius: 20px;
  background: rgba(215, 180, 106, 0.08);
  text-align: center;
}

.cash-purchase-note .eyebrow {
  margin-bottom: 8px;
  color: var(--blue-dark);
}

.cash-purchase-note h3 {
  margin: 0;
  color: #fff;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.cash-purchase-note p:not(.eyebrow) {
  margin: 12px auto 10px;
  color: #ccc;
  font-size: 15px;
  line-height: 1.7;
}

.cash-purchase-note .text-link {
  color: var(--blue-dark);
}

.ticket-includes {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.ticket-includes li {
  padding: 7px 11px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  color: #d8d8dc;
  font-size: 12px;
}

.price-link {
  margin: 28px 0 0;
  color: var(--blue-dark);
  font-size: 17px;
}

.price-link span {
  display: inline-block;
  font-size: 24px;
  line-height: 0;
  transition: transform 180ms ease;
}

.price-note {
  margin: 24px 0 0;
  text-align: center;
}

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

.card {
  padding: 32px 28px;
  border: 1px solid var(--hairline);
  border-radius: 18px;
  background: var(--canvas);
}

.card-number {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--parchment);
  color: var(--blue);
  font-size: 14px;
  font-weight: 600;
}

.card h3 {
  margin: 24px 0 12px;
  font-size: 21px;
  font-weight: 600;
  line-height: 1.19;
  letter-spacing: -0.02em;
}

.card p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.47;
}

.screen-preview {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  gap: 80px;
  align-items: center;
}

.screen-preview .section-heading {
  margin: 0;
  text-align: left;
}

.screen-copy ul {
  margin: 32px 0 0;
  padding-left: 1.25em;
  font-size: 17px;
  line-height: 1.8;
}

.phone {
  padding: 12px;
  border-radius: 32px;
  background: var(--black);
  box-shadow: rgba(0, 0, 0, 0.22) 3px 5px 30px 0;
}

.phone-screen {
  overflow: hidden;
  border-radius: 23px;
  background: var(--parchment);
  color: var(--ink);
}

.phone-head {
  padding: 28px 24px 24px;
  background: var(--black);
  color: #fff;
}

.phone-head small {
  display: block;
  margin-bottom: 8px;
  color: #ccc;
  font-size: 12px;
}

.phone-head strong {
  display: block;
  font-size: 21px;
  font-weight: 600;
  line-height: 1.19;
}

.phone-body {
  padding: 22px;
}

.preview-row,
.preview-total,
.preview-payment {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--hairline);
  font-size: 14px;
}

.preview-total {
  font-size: 17px;
  font-weight: 600;
}

.preview-payment {
  display: block;
  margin-top: 12px;
  padding: 16px;
  border: 1px solid var(--hairline);
  border-radius: 11px;
  background: var(--canvas);
  color: var(--muted);
}

.preview-button {
  margin-top: 16px;
  padding: 13px 18px;
  border-radius: 9999px;
  background: var(--blue);
  color: #fff;
  text-align: center;
  font-size: 14px;
}

.notice-box {
  max-width: 900px;
  margin: 0 auto;
  color: var(--muted);
  text-align: center;
}

.notice-box p {
  margin: 0;
}

.notice-box strong {
  color: var(--ink);
  font-weight: 600;
}

.site-footer {
  padding: 64px 0;
  background: var(--parchment);
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
  letter-spacing: -0.01em;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--hairline);
}

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

.legal-main {
  width: min(920px, calc(100% - 40px));
  margin: 0 auto;
  padding: 80px 0 104px;
}

.legal-main .eyebrow {
  margin-bottom: 20px;
}

.legal-title {
  margin: 0;
  font-size: clamp(40px, 5vw, 56px);
  font-weight: 600;
  line-height: 1.07;
  letter-spacing: -0.035em;
}

.legal-lead {
  max-width: 760px;
  margin: 24px 0 56px;
  color: var(--muted);
  font-size: 21px;
  line-height: 1.47;
}

.legal-table {
  width: 100%;
  border-collapse: collapse;
  border-top: 1px solid var(--hairline);
}

.legal-table th,
.legal-table td {
  padding: 24px 20px;
  border-bottom: 1px solid var(--hairline);
  text-align: left;
  vertical-align: top;
}

.legal-table th {
  width: 230px;
  background: var(--parchment);
  font-size: 14px;
  font-weight: 600;
}

.legal-section {
  padding: 32px 0;
  border-top: 1px solid var(--hairline);
}

.legal-section:first-of-type {
  border-top: 0;
}

.legal-section h2 {
  margin: 0 0 14px;
  font-size: 21px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.legal-section p,
.legal-section ul {
  margin-top: 0;
  margin-bottom: 0;
  color: #333;
}

.legal-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--hairline);
  font-size: 14px;
}

@media (max-width: 833px) {
  .site-header nav {
    display: none;
  }

  .sub-nav nav a:not(.button-primary) {
    display: none;
  }

  .section {
    padding: 72px 0;
  }

  .price-grid,
  .card-grid,
  .screen-preview {
    grid-template-columns: 1fr;
  }

  .price-card {
    min-height: 300px;
    padding: 48px 32px;
  }

  .screen-preview {
    gap: 48px;
  }

  .screen-preview .section-heading {
    text-align: center;
  }

  .phone {
    width: min(100%, 420px);
    margin: 0 auto;
  }
}

@media (max-width: 640px) {
  .site-header-inner,
  .sub-nav-inner,
  .section-inner,
  .site-footer-inner {
    width: min(100% - 32px, var(--content));
  }

  .sub-nav-title {
    font-size: 18px;
  }

  .hero {
    min-height: auto;
  }

  .hero-inner {
    width: min(100% - 32px, 900px);
    padding: 80px 0 88px;
  }

  .hero h1 {
    font-size: 34px;
  }

  .hero-copy {
    font-size: 20px;
  }

  .hero-actions {
    flex-direction: column;
    gap: 6px;
  }

  .section-heading {
    margin-bottom: 36px;
  }

  .section-heading h2 {
    font-size: 34px;
  }

  .price-card h3 {
    font-size: 24px;
  }

  .price span {
    font-size: 56px;
  }

  .legal-main {
    width: calc(100% - 32px);
    padding: 64px 0 80px;
  }

  .legal-title {
    font-size: 40px;
  }

  .legal-table,
  .legal-table tbody,
  .legal-table tr,
  .legal-table th,
  .legal-table td {
    display: block;
    width: 100%;
  }

  .legal-table th {
    padding-bottom: 10px;
    border-bottom: 0;
  }
}

@media (max-width: 419px) {
  .button-small {
    min-height: 30px;
    padding: 7px 12px;
    font-size: 12px;
  }

  .hero h1,
  .section-heading h2 {
    font-size: 28px;
  }

  .hero-copy {
    font-size: 18px;
  }

  .section {
    padding: 56px 0;
  }

  .price-card {
    min-height: 260px;
    padding: 40px 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
  }

  .scroll-progress {
    display: none;
  }
}
