:root {
  color-scheme: light;
  --habito-font: "Pretendard Variable", Pretendard, "Apple SD Gothic Neo", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --ink: #1f2430;
  --muted: #697386;
  --paper: #ffffff;
  --canvas: #f5f7fb;
  --line: #e5e9f2;
  --violet: #6e5ae6;
  --violet-dark: #5141bd;
  --mint: #dff8ee;
  --sun: #ffd86b;
  font-family: var(--habito-font);
}

* { box-sizing: border-box; }

html {
  font-family: var(--habito-font);
  font-kerning: normal;
}

h1, h2, h3, h4 {
  word-break: keep-all;
  text-wrap: balance;
}

p, li, dd, figcaption {
  text-wrap: pretty;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--ink);
  background: var(--canvas);
}

a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

:is(a, button):active { transform: translateY(1px); }

:is(.c01-eyebrow, .c01-kicker, .theater-kicker, .orbit-label, .mag-kicker, .day-kicker, .workshop-kicker, .pov-kicker, .scene-overline, .village-kicker, .map-kicker, .film-kicker) {
  letter-spacing: .035em !important;
  text-transform: none !important;
}

.page-shell {
  width: min(100%, 1200px);
  margin: 0 auto;
  padding: 32px 24px 64px;
}

.concept-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.concept-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: var(--paper);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.concept-nav a[aria-current] { color: var(--paper); border-color: var(--violet); background: var(--violet); }

.event-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--paper);
  box-shadow: 0 18px 48px rgb(40 45 70 / 8%);
}

.eyebrow { margin: 0 0 8px; color: var(--violet); font-size: 13px; font-weight: 800; letter-spacing: .04em; }
.title { margin: 0; font-size: clamp(30px, 5vw, 56px); line-height: 1.1; letter-spacing: -.045em; }
.subtitle { color: var(--muted); font-size: 17px; line-height: 1.55; }

.store-buttons { display: flex; flex-wrap: wrap; gap: 10px; }
.store-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border-radius: 14px;
  color: var(--paper);
  background: var(--ink);
  font-weight: 800;
  text-decoration: none;
}
.store-button.is-primary { background: var(--violet); }

.mockup-toast {
  position: fixed;
  z-index: 20;
  right: 20px;
  bottom: 20px;
  max-width: calc(100% - 40px);
  padding: 13px 16px;
  border-radius: 12px;
  color: var(--paper);
  background: rgb(31 36 48 / 94%);
  box-shadow: 0 8px 28px rgb(31 36 48 / 20%);
  font-size: 14px;
  font-weight: 700;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity .2s ease, transform .2s ease;
}
.mockup-toast.is-visible { opacity: 1; transform: translateY(0); }

.concept-switcher {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(calc(100% - 32px), 248px);
  margin: 24px auto 32px;
  grid-template-columns: 72px minmax(104px, 1fr) 72px;
  overflow: hidden;
  border: 1px solid rgb(31 36 48 / 24%);
  border-radius: 999px;
  background: rgb(255 255 255 / 96%);
  box-shadow: 0 10px 30px rgb(31 36 48 / 16%);
}

.concept-switcher a {
  display: inline-flex;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  color: #1f2430;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

.concept-switcher a + a { border-left: 1px solid rgb(31 36 48 / 16%); }
.concept-switcher a:focus-visible { position: relative; outline: 3px solid #6e5ae6; outline-offset: -3px; }

@media (prefers-reduced-motion: reduce) {
  .mockup-toast { transition: none; }
}

@media (max-width: 600px) {
  .page-shell { padding: 16px 16px 40px; }
  .event-card { border-radius: 22px; }
  .subtitle { font-size: 15px; }
  .store-buttons { display: grid; grid-template-columns: 1fr; }
  .concept-switcher { width: calc(100% - 24px); grid-template-columns: 64px 1fr 64px; }
}
