:root {
  --night: #091529;
  --night-2: #10233b;
  --ink: #101828;
  --paper: #f8fbff;
  --white: #ffffff;
  --cyan: #22d3ee;
  --cyan-deep: #087f95;
  --coral: #ff5d73;
  --coral-deep: #d92f4a;
  --mist: #e8f0f7;
  --line: #cfdae4;
  --muted: #667085;
  --success: #0f9f79;
  --warning: #d57c0d;
  --danger: #d92f4a;
  --max: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Pretendard", "Noto Sans KR", "Apple SD Gothic Neo", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: 0;
  word-break: keep-all;
}
body.menu-open { overflow: hidden; }
button, input, select, textarea { font: inherit; letter-spacing: 0; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; }
img { display: block; max-width: 100%; }
svg { display: block; }
[hidden] { display: none !important; }

.container { width: min(var(--max), calc(100% - 48px)); margin-inline: auto; }
.skip-link {
  position: fixed;
  left: 12px;
  top: -80px;
  z-index: 1000;
  background: var(--cyan);
  color: var(--night);
  padding: 12px 16px;
  font-weight: 800;
}
.skip-link:focus { top: 12px; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-signal { background: var(--cyan); color: #06121f; }
.site-signal .container {
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 13px;
  font-weight: 800;
}
.site-signal a { display: inline-flex; align-items: center; gap: 6px; }

.site-header { background: var(--white); border-bottom: 1px solid var(--line); position: relative; z-index: 30; }
.site-header .container { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.site-header.is-overlay { background: rgba(5, 15, 33, .84); border-bottom-color: rgba(255, 255, 255, .2); color: var(--white); }
.brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; font-weight: 900; font-size: 22px; line-height: 1; }
.brand-mark { width: 14px; height: 14px; background: var(--cyan); box-shadow: 7px 7px 0 var(--coral); margin-right: 7px; }
.desktop-nav { display: flex; align-items: center; gap: 28px; }
.desktop-nav > a { min-height: 44px; display: inline-flex; align-items: center; text-decoration: none; font-size: 15px; font-weight: 700; border-bottom: 2px solid transparent; }
.desktop-nav > a[aria-current="page"] { border-bottom-color: var(--cyan); }
.nav-actions { display: flex; align-items: center; gap: 8px; }
.icon-button {
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  border: 1px solid currentColor;
  background: transparent;
  color: inherit;
  cursor: pointer;
  text-decoration: none;
}
.header-ticket {
  min-height: 44px;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--cyan);
  border: 1px solid var(--cyan);
  color: var(--night);
  text-decoration: none;
  font-size: 14px;
  font-weight: 900;
}
.menu-toggle { display: none; }
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: var(--night);
  color: var(--white);
  padding: 24px;
  transform: translateX(100%);
  transition: transform .28s ease;
}
.mobile-menu.is-open { transform: translateX(0); }
.mobile-menu-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 54px; }
.mobile-menu nav { display: grid; }
.mobile-menu nav a { padding: 18px 0; border-bottom: 1px solid #2d4258; text-decoration: none; font-size: 25px; font-weight: 800; }

.home-hero {
  min-height: 690px;
  color: var(--white);
  background-image: url("skychord-hero.webp");
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}
.home-hero::before { content: ""; position: absolute; inset: 0; background: rgba(4, 14, 31, .62); }
.home-hero .site-header { position: relative; }
.home-hero-content {
  min-height: 572px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 70px;
  align-items: end;
  padding-block: 72px 58px;
  position: relative;
  z-index: 2;
}
.eyebrow { margin: 0 0 16px; color: var(--cyan); font-family: "Space Grotesk", sans-serif; font-size: 13px; font-weight: 800; text-transform: uppercase; }
.hero-problem { margin: 0 0 12px; color: #d3e1ec; font-size: 16px; }
.hero-brand { margin: 0; font-family: "Space Grotesk", sans-serif; font-size: 80px; line-height: .98; font-weight: 700; }
.hero-value { margin: 22px 0 0; max-width: 760px; font-size: 38px; line-height: 1.26; font-weight: 800; }
.hero-support { margin: 18px 0 0; max-width: 650px; color: #d6e3ee; font-size: 18px; }
.button-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }
.button {
  min-height: 50px;
  padding: 0 20px;
  border: 1px solid var(--ink);
  background: transparent;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  font-weight: 800;
  cursor: pointer;
}
.button.primary { background: var(--cyan); border-color: var(--cyan); color: var(--night); }
.button.coral { background: var(--coral); border-color: var(--coral); color: #26050b; }
.button.light { color: var(--white); border-color: rgba(255, 255, 255, .55); }
.button.dark { color: var(--white); border-color: var(--night); background: var(--night); }
.button:focus-visible, .icon-button:focus-visible, .tab-button:focus-visible, .filter-button:focus-visible, input:focus-visible { outline: 3px solid var(--coral); outline-offset: 2px; }
.hero-status {
  background: rgba(7, 20, 40, .9);
  border-top: 3px solid var(--coral);
  padding: 24px;
  align-self: end;
}
.hero-status small { color: #ff8da0; font-size: 12px; font-weight: 900; }
.hero-status strong { display: block; margin: 12px 0 8px; font-size: 24px; }
.hero-status p { margin: 0; color: #c6d5e2; }
.status-line { display: flex; align-items: center; gap: 8px; margin-top: 16px; color: var(--cyan); font-size: 13px; font-weight: 800; }
.status-dot { width: 8px; height: 8px; border-radius: 50%; background: currentColor; }

.quick-links { background: var(--white); border-bottom: 1px solid var(--line); }
.quick-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.quick-link { min-height: 104px; padding: 22px; display: flex; align-items: center; gap: 14px; border-left: 1px solid var(--line); text-decoration: none; }
.quick-link:last-child { border-right: 1px solid var(--line); }
.quick-link > .quick-icon { width: 44px; height: 44px; flex: 0 0 auto; display: grid; place-items: center; background: #e8fbfe; color: var(--cyan-deep); line-height: 0; }
.quick-link > .quick-icon > svg { display: block; width: 21px; height: 21px; margin: 0; }
.quick-link > span:not(.quick-icon),
.quick-link > span:not(.quick-icon) > strong,
.quick-link > span:not(.quick-icon) > span { display: block; }
.quick-link strong { font-size: 16px; }
.quick-link span { margin-top: 2px; color: var(--muted); font-size: 12px; }

.section { padding: 96px 0; }
.section.white { background: var(--white); }
.section.mist { background: #eef4f8; }
.section.night { background: var(--night); color: var(--white); }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 32px; margin-bottom: 36px; }
.section-kicker { margin: 0 0 8px; color: var(--cyan-deep); font-family: "Space Grotesk", sans-serif; font-size: 12px; font-weight: 800; text-transform: uppercase; }
.night .section-kicker { color: var(--cyan); }
.section h2 { margin: 0; font-size: 40px; line-height: 1.3; }
.section-intro { max-width: 580px; margin: 0; color: var(--muted); font-size: 16px; }
.night .section-intro { color: #b9c9d6; }

.notice-list { border-top: 2px solid var(--ink); }
.notice-row { min-height: 76px; display: grid; grid-template-columns: 90px minmax(0, 1fr) 120px; align-items: center; gap: 20px; border-bottom: 1px solid var(--line); }
.notice-row a { text-decoration: none; font-weight: 750; }
.notice-row time { text-align: right; color: var(--muted); font-size: 13px; }
.tag { display: inline-flex; align-items: center; width: max-content; min-height: 28px; padding: 0 9px; border: 1px solid currentColor; color: var(--cyan-deep); font-size: 11px; font-weight: 900; }
.tag.important { color: var(--coral-deep); }
.tag.neutral { color: #526474; }

.role-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.role-card { min-height: 260px; border: 1px solid #30465d; padding: 28px; display: flex; flex-direction: column; align-items: flex-start; }
.role-card:nth-child(2) { border-top-color: var(--coral); }
.role-card .number { color: var(--cyan); font-family: "Space Grotesk", sans-serif; font-size: 13px; font-weight: 800; }
.role-card:nth-child(2) .number { color: #ff8799; }
.role-card h3 { margin: 18px 0 8px; font-size: 23px; }
.role-card p { margin: 0; color: #b9c9d6; }
.role-card a { margin-top: auto; padding-top: 28px; font-weight: 800; text-decoration: none; }

.flow-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.flow-step { min-height: 260px; padding: 34px 28px; border-right: 1px solid var(--line); }
.flow-step:last-child { border-right: 0; }
.flow-step .step-number { color: var(--cyan-deep); font-family: "Space Grotesk", sans-serif; font-size: 32px; font-weight: 700; }
.flow-step h3 { margin: 28px 0 10px; font-size: 22px; }
.flow-step p { margin: 0; color: var(--muted); }

.metric-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: #2f455b; border: 1px solid #2f455b; }
.metric { background: var(--night); padding: 34px; }
.metric strong { display: block; color: var(--cyan); font-family: "Space Grotesk", sans-serif; font-size: 42px; }
.metric:nth-child(2) strong { color: #ff8799; }
.metric p { margin: 10px 0 0; color: #bccbd8; }
.demo-label { display: inline-flex; margin-top: 16px; color: #8ea3b5; font-size: 11px; }

.tabs { display: flex; flex-wrap: wrap; border-bottom: 1px solid var(--line); margin-bottom: 30px; }
.tab-button, .filter-button {
  min-height: 46px;
  padding: 0 18px;
  border: 0;
  border-bottom: 3px solid transparent;
  background: transparent;
  color: var(--muted);
  font-weight: 800;
  cursor: pointer;
}
.tab-button[aria-selected="true"], .filter-button.is-active { color: var(--ink); border-bottom-color: var(--cyan-deep); }
.tab-panel-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.tab-panel h3 { margin: 0 0 14px; font-size: 30px; }
.check-list { list-style: none; padding: 0; margin: 0; border-top: 1px solid var(--line); }
.check-list li { min-height: 58px; display: flex; align-items: center; gap: 12px; border-bottom: 1px solid var(--line); }
.check-list svg { color: var(--success); flex: 0 0 auto; }

.final-cta { background: var(--cyan); color: var(--night); padding: 74px 0; }
.final-cta .container { display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.final-cta h2 { max-width: 700px; margin: 0; font-size: 40px; line-height: 1.28; }

.page-hero { background: var(--white); border-bottom: 1px solid var(--line); padding: 74px 0 64px; position: relative; overflow: hidden; }
.page-hero::after { content: ""; position: absolute; left: 52%; right: -8%; bottom: 54px; height: 1px; background: var(--cyan-deep); box-shadow: 0 18px 0 var(--coral), 0 36px 0 #9eb1c0; transform: rotate(-4deg); transform-origin: right; }
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { max-width: 850px; margin: 0; font-size: 52px; line-height: 1.2; }
.page-hero p:not(.eyebrow) { max-width: 650px; margin: 18px 0 0; color: var(--muted); font-size: 18px; }
.breadcrumb { margin-bottom: 24px; color: var(--muted); font-size: 13px; }
.breadcrumb a { text-decoration: none; }

.status-banner { background: #eafafe; border-left: 4px solid var(--cyan-deep); padding: 18px 20px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.status-banner strong { font-size: 15px; }
.status-banner span { color: var(--cyan-deep); font-size: 12px; font-weight: 900; }

.ticket-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.ticket-card { background: var(--white); border: 1px solid var(--line); border-top: 4px solid var(--cyan-deep); padding: 28px; min-height: 390px; display: flex; flex-direction: column; }
.ticket-card:nth-child(2) { border-top-color: var(--coral); }
.ticket-card small { color: var(--muted); font-weight: 800; }
.ticket-card h2, .ticket-card h3 { margin: 14px 0 6px; font-size: 25px; }
.ticket-price { font-size: 18px; font-weight: 900; }
.ticket-card ul { padding: 0; list-style: none; margin: 24px 0; }
.ticket-card li { padding: 10px 0; border-bottom: 1px solid var(--mist); display: flex; gap: 8px; align-items: center; }
.ticket-card li svg { color: var(--success); flex: 0 0 auto; }
.ticket-card .button { margin-top: auto; }
.table-scroll { overflow-x: auto; border: 1px solid var(--line); background: var(--white); }
.comparison { width: 100%; min-width: 760px; border-collapse: collapse; }
.comparison th, .comparison td { padding: 17px 18px; text-align: left; border-bottom: 1px solid var(--line); }
.comparison thead th { background: var(--night); color: var(--white); font-size: 13px; }
.comparison tbody th { width: 190px; }

.ticket-demo { display: grid; grid-template-columns: 1fr 400px; gap: 52px; align-items: center; }
.phone-ticket { background: var(--white); border: 8px solid var(--night); border-radius: 28px; padding: 22px; max-width: 380px; margin-inline: auto; box-shadow: 0 20px 50px rgba(9, 21, 41, .14); }
.phone-head { display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid var(--line); padding-bottom: 14px; }
.qr-wrap { margin: 24px auto 16px; width: 220px; min-height: 220px; display: grid; place-items: center; border: 1px solid var(--line); background: var(--white); }
.qr-wrap canvas { width: 200px !important; height: 200px !important; }
.ticket-state { display: flex; align-items: center; gap: 8px; color: var(--success); font-weight: 900; }
.ticket-meta { margin-top: 18px; border-top: 1px solid var(--line); }
.ticket-meta div { display: flex; justify-content: space-between; gap: 14px; padding: 11px 0; border-bottom: 1px solid var(--line); font-size: 13px; }
.ticket-meta span { color: var(--muted); }

.guide-grid { display: grid; grid-template-columns: 280px minmax(0, 1fr); gap: 54px; }
.guide-side { position: sticky; top: 24px; align-self: start; }
.guide-side h2 { font-size: 24px; }
.timeline { border-top: 2px solid var(--ink); }
.timeline-row { display: grid; grid-template-columns: 110px 1fr; gap: 24px; padding: 28px 0; border-bottom: 1px solid var(--line); }
.timeline-row time { color: var(--cyan-deep); font-family: "Space Grotesk", sans-serif; font-weight: 800; }
.timeline-row h3 { margin: 0 0 6px; font-size: 20px; }
.timeline-row p { margin: 0; color: var(--muted); }
.download-list { border-top: 1px solid var(--line); }
.download-row { display: grid; grid-template-columns: 1fr 130px 50px; gap: 16px; align-items: center; padding: 18px 0; border-bottom: 1px solid var(--line); }
.download-row a { width: 44px; height: 44px; justify-self: end; display: grid; place-items: center; border: 1px solid var(--ink); text-decoration: none; }
.download-row span { color: var(--muted); font-size: 13px; }

.news-tools { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-bottom: 26px; }
.filters { display: flex; flex-wrap: wrap; border-bottom: 1px solid var(--line); }
.search-field { width: min(330px, 100%); position: relative; }
.search-field input { width: 100%; height: 46px; padding: 0 46px 0 14px; border: 1px solid var(--line); background: var(--white); }
.search-field svg { position: absolute; right: 14px; top: 13px; color: var(--muted); }
.news-list { border-top: 2px solid var(--ink); }
.news-item { min-height: 106px; display: grid; grid-template-columns: 100px minmax(0, 1fr) 110px; gap: 22px; align-items: center; border-bottom: 1px solid var(--line); }
.news-item a { text-decoration: none; }
.news-item h2 { margin: 0; font-size: 19px; }
.news-item p { margin: 6px 0 0; color: var(--muted); font-size: 14px; }
.news-item time { text-align: right; color: var(--muted); font-size: 12px; }
.empty-state { padding: 60px 20px; text-align: center; border: 1px solid var(--line); background: var(--white); }

.event-feature { display: grid; grid-template-columns: 1.1fr .9fr; min-height: 520px; }
.event-image { min-height: 480px; background: url("skychord-hero.webp") center/cover; }
.event-copy { background: var(--night); color: var(--white); padding: 54px; display: flex; flex-direction: column; justify-content: center; }
.event-copy h2 { margin: 12px 0; font-size: 38px; }
.event-copy p { color: #bfd0dd; }
.event-facts { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid #2b435a; margin-top: 28px; }
.event-facts div { padding: 18px 14px 0 0; }
.event-facts small, .event-facts strong { display: block; }
.event-facts small { color: #8fa6b7; }
.event-facts strong { margin-top: 5px; }

.my-layout { display: grid; grid-template-columns: minmax(0, 1fr) 360px; gap: 38px; align-items: start; }
.my-ticket-panel { background: var(--white); border: 1px solid var(--line); padding: 32px; }
.my-ticket-head { display: flex; justify-content: space-between; align-items: start; gap: 20px; }
.my-ticket-head h2 { margin: 8px 0 0; font-size: 28px; }
.state-badge { display: inline-flex; min-height: 32px; align-items: center; gap: 7px; padding: 0 10px; background: #e8f8f3; color: #08785c; font-size: 12px; font-weight: 900; }
.my-ticket-body { display: grid; grid-template-columns: 260px 1fr; gap: 36px; margin-top: 30px; }
.my-ticket-body .qr-wrap { width: 250px; min-height: 250px; margin: 0; }
.my-ticket-body .qr-wrap canvas { width: 226px !important; height: 226px !important; }
.help-panel { border-top: 3px solid var(--coral); background: var(--night); color: var(--white); padding: 28px; }
.help-panel h2 { margin: 0 0 16px; font-size: 22px; }
.help-panel ol { padding-left: 20px; color: #c1d1dd; }
.help-panel li { margin: 10px 0; }
.state-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.state-card { background: var(--white); border: 1px solid var(--line); padding: 20px; }
.state-card svg { margin-bottom: 24px; }
.state-card strong { display: block; }
.state-card p { margin: 6px 0 0; color: var(--muted); font-size: 13px; }
.state-card.valid svg { color: var(--success); }
.state-card.used svg { color: var(--cyan-deep); }
.state-card.cancelled svg { color: var(--danger); }
.state-card.wrong svg { color: var(--warning); }

.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { min-height: 68px; display: flex; align-items: center; justify-content: space-between; gap: 20px; cursor: pointer; font-weight: 800; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; font-size: 24px; font-weight: 400; }
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p { margin: 0; padding: 0 0 24px; max-width: 780px; color: var(--muted); }

.site-footer { background: #07111f; color: var(--white); padding: 64px 0 34px; }
.footer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; }
.footer-brand { font-family: "Space Grotesk", sans-serif; font-size: 30px; font-weight: 700; }
.footer-copy { max-width: 420px; color: #9fb2c1; }
.footer-links { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px 40px; }
.footer-links a { color: #d8e3ec; text-decoration: none; }
.footer-bottom { margin-top: 48px; padding-top: 22px; border-top: 1px solid #263a4e; display: flex; justify-content: space-between; gap: 20px; color: #8fa4b4; font-size: 12px; }
.demo-disclaimer { background: #020914; color: #9eb1bf; padding: 13px 24px 84px; text-align: center; font-size: 11px; }

.bottom-nav { display: none; }
.modal-backdrop { position: fixed; inset: 0; z-index: 100; background: rgba(2, 9, 20, .76); display: grid; place-items: center; padding: 20px; }
.modal { width: min(520px, 100%); max-height: calc(100vh - 40px); overflow: auto; background: var(--white); color: var(--ink); border-top: 5px solid var(--cyan); padding: 28px; }
.modal-head { display: flex; justify-content: space-between; align-items: start; gap: 20px; }
.modal h2 { margin: 0; font-size: 26px; }
.modal p { color: var(--muted); }
.field { margin-top: 18px; }
.field label { display: block; margin-bottom: 7px; font-size: 13px; font-weight: 800; }
.field input { width: 100%; height: 48px; border: 1px solid var(--line); padding: 0 14px; }
.consent { display: flex; gap: 10px; align-items: start; margin: 18px 0; font-size: 13px; }
.consent input { width: 18px; height: 18px; margin-top: 2px; }
.toast { position: fixed; right: 20px; bottom: 20px; z-index: 120; background: var(--night); color: var(--white); padding: 14px 18px; border-left: 4px solid var(--cyan); box-shadow: 0 10px 30px rgba(0,0,0,.22); }

@media (max-width: 980px) {
  .desktop-nav { gap: 16px; }
  .desktop-nav > a:nth-child(4) { display: none; }
  .home-hero-content { grid-template-columns: 1fr; gap: 34px; align-items: center; }
  .hero-status { max-width: 420px; }
  .hero-brand { font-size: 68px; }
  .hero-value { font-size: 34px; }
  .quick-grid { grid-template-columns: 1fr 1fr; }
  .quick-link { border-bottom: 1px solid var(--line); }
  .quick-link:nth-child(2) { border-right: 1px solid var(--line); }
  .role-grid, .ticket-grid { grid-template-columns: 1fr; }
  .role-card { min-height: 220px; }
  .ticket-card { min-height: 350px; }
  .ticket-demo, .event-feature, .my-layout { grid-template-columns: 1fr; }
  .event-copy { padding: 40px; }
  .state-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  .container { width: min(100% - 28px, var(--max)); }
  body { padding-bottom: 68px; }
  .site-signal .container { min-height: 46px; }
  .site-signal .signal-link { display: none; }
  .site-header .container { min-height: 68px; }
  .desktop-nav, .header-ticket, .nav-actions .icon-button:not(.menu-toggle) { display: none; }
  .menu-toggle { display: inline-grid; }
  .home-hero { min-height: 0; }
  .home-hero-content { min-height: 0; gap: 18px; padding: 30px 0 24px; }
  .hero-problem { display: none; }
  .hero-brand { font-size: 48px; }
  .hero-value { font-size: 30px; }
  .hero-support { font-size: 16px; }
  .home-hero .button-row { flex-wrap: nowrap; margin-top: 22px; }
  .home-hero .button-row .button { flex: 1 1 0; padding-inline: 10px; font-size: 13px; }
  .hero-status { padding: 14px 16px; }
  .hero-status strong { margin: 6px 0 3px; font-size: 18px; }
  .hero-status p { font-size: 12px; }
  .hero-status .status-line { display: none; }
  .quick-grid { grid-template-columns: 1fr 1fr; }
  .quick-link { min-height: 94px; padding: 16px 12px; gap: 10px; }
  .quick-icon { width: 38px; height: 38px; }
  .quick-link strong { font-size: 14px; }
  .quick-link > span:not(.quick-icon) { display: block; }
  .quick-link > span:not(.quick-icon) > span { display: none; }
  .section { padding: 66px 0; }
  .section-head { align-items: start; display: grid; gap: 18px; }
  .section h2 { font-size: 31px; }
  .notice-row { grid-template-columns: 68px 1fr; min-height: 88px; gap: 12px; }
  .notice-row time { display: none; }
  .flow-grid, .metric-grid { grid-template-columns: 1fr; }
  .flow-step { min-height: auto; border-right: 0; border-bottom: 1px solid var(--line); }
  .flow-step:last-child { border-bottom: 0; }
  .tab-panel-grid { grid-template-columns: 1fr; gap: 30px; }
  .final-cta .container { display: grid; }
  .final-cta h2 { font-size: 31px; }
  .page-hero { padding: 52px 0 48px; }
  .page-hero::after { display: none; }
  .page-hero h1 { font-size: 36px; }
  .page-hero p:not(.eyebrow) { font-size: 16px; }
  .status-banner { align-items: start; display: grid; }
  .ticket-demo { gap: 34px; }
  .guide-grid { grid-template-columns: 1fr; gap: 34px; }
  .guide-side { position: static; }
  .news-tools { display: grid; }
  .search-field { width: 100%; }
  .news-item { grid-template-columns: 72px 1fr; padding: 18px 0; }
  .news-item time { display: none; }
  .event-feature { min-height: 0; }
  .event-image { min-height: 330px; }
  .event-copy { padding: 34px 24px; }
  .event-copy h2 { font-size: 30px; }
  .event-facts { grid-template-columns: 1fr; }
  .my-ticket-panel { padding: 22px; }
  .my-ticket-head { display: grid; }
  .my-ticket-body { grid-template-columns: 1fr; }
  .my-ticket-body .qr-wrap { margin: auto; }
  .state-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 38px; }
  .footer-bottom { display: grid; }
  .demo-disclaimer { padding-bottom: 20px; text-align: left; }
  .bottom-nav { position: fixed; left: 0; right: 0; bottom: 0; z-index: 60; height: 68px; display: grid; grid-template-columns: repeat(4, 1fr); background: var(--white); border-top: 1px solid var(--line); }
  .bottom-nav a { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 3px; color: #627584; text-decoration: none; font-size: 10px; font-weight: 800; }
  .bottom-nav a[aria-current="page"] { color: var(--cyan-deep); }
}

@media (max-width: 420px) {
  .hero-brand { font-size: 44px; }
  .hero-value { font-size: 28px; }
  .tabs { flex-wrap: nowrap; overflow-x: auto; }
  .tab-button, .filter-button { white-space: nowrap; padding-inline: 14px; }
  .timeline-row { grid-template-columns: 1fr; gap: 8px; }
  .download-row { grid-template-columns: 1fr 46px; }
  .download-row > span { display: none; }
}

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