:root {
  --brand-teal: #189ea5;
  --brand-teal-deep: #11767c;
  --ink: #202528;
  --muted: #6d7678;
  --soft-muted: #99a3a1;
  --paper: #f6f8f7;
  --paper-deep: #edf2f1;
  --white: #ffffff;
  --mint: #dff4ef;
  --mint-strong: #c7e9df;
  --lime: #dbf163;
  --line: #d9e1df;
  --line-strong: #cbd7d4;
  --shadow-soft: 0 18px 46px rgba(35, 67, 64, 0.09);
  --shadow-card: 0 12px 28px rgba(35, 67, 64, 0.07);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --content-width: 1180px;
  font-family: Pretendard, "Noto Sans KR", "Apple SD Gothic Neo", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  font-synthesis: none;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  min-width: 320px;
  margin: 0;
  background:
    radial-gradient(circle at 86% 9%, rgba(223, 244, 239, 0.8), transparent 27rem),
    var(--paper);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.5;
}

button, a { font: inherit; }

button { border: 0; cursor: pointer; }

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

button:focus-visible, a:focus-visible {
  outline: 3px solid var(--lime);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  z-index: 10;
  top: 10px;
  left: 10px;
  padding: 9px 13px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  transform: translateY(-160%);
}

.skip-link:focus { transform: translateY(0); }

.site-shell {
  width: min(calc(100% - 56px), var(--content-width));
  margin: 0 auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 92px;
  gap: 22px;
}

.brand-mark {
  display: flex;
  align-items: center;
  width: 150px;
  height: 52px;
  overflow: hidden;
  border-radius: 12px;
  background: var(--white);
}

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

.site-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-left: auto;
  margin-right: 18px;
}

.site-nav__link {
  position: relative;
  padding: 9px 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.site-nav__link.is-active { color: var(--ink); }

.site-nav__link.is-active::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--brand-teal);
  content: "";
}

.header-actions { display: flex; align-items: center; gap: 10px; }

.store-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: #53605f;
  font-size: 12px;
  font-weight: 800;
}

.store-pill__dot, .meta-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--brand-teal);
  box-shadow: 0 0 0 4px rgba(24, 158, 165, 0.11);
}

.account-chip {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: var(--lime);
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
}

#app { min-height: 640px; }

.screen { animation: screen-in 260ms ease both; }

@keyframes screen-in {
  from { opacity: 0; transform: translateY(9px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(330px, 0.96fr);
  min-height: 418px;
  overflow: hidden;
  border: 1px solid rgba(24, 158, 165, 0.1);
  border-radius: var(--radius-lg);
  background: linear-gradient(122deg, #f1fbf7 0%, var(--mint) 54%, #eaf5bf 100%);
  box-shadow: var(--shadow-soft);
}

.hero__copy { z-index: 1; align-self: center; padding: 58px 28px 58px 58px; }

.eyebrow {
  margin: 0 0 11px;
  color: var(--brand-teal-deep);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.14em;
  line-height: 1.2;
}

.hero h1, .detail-panel h1, .success-intro h1 {
  margin: 0;
  font-size: clamp(42px, 5.2vw, 68px);
  font-weight: 850;
  letter-spacing: -0.085em;
  line-height: 0.98;
}

.hero h1 em {
  color: var(--brand-teal);
  font-style: normal;
}

.hero__description {
  max-width: 390px;
  margin: 20px 0 25px;
  color: #5f6f6d;
  font-size: 14px;
  line-height: 1.7;
}

.hero__actions { display: flex; align-items: center; flex-wrap: wrap; gap: 18px; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 850;
  letter-spacing: -0.02em;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover { transform: translateY(-2px); box-shadow: 0 9px 18px rgba(32, 37, 40, 0.12); }
.button--dark { background: var(--ink); color: var(--white); }
.button--teal { background: var(--brand-teal); color: var(--white); }
.button--small { min-height: 38px; padding: 9px 13px; font-size: 11px; }

.hero__meta { display: inline-flex; align-items: center; gap: 8px; color: #60706d; font-size: 11px; font-weight: 700; }

.hero__visual { position: relative; min-height: 418px; }

.hero__orb {
  position: absolute;
  top: 26%;
  right: 12%;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.36);
  filter: blur(1px);
}

.hero__tile {
  position: absolute;
  width: 174px;
  height: 174px;
  border-radius: 43px;
  transform: rotate(22deg);
  box-shadow: 0 22px 34px rgba(39, 99, 90, 0.16);
}

.hero__tile--back { top: 32%; right: 26%; background: #f0c39d; opacity: 0.73; transform: rotate(-18deg); }
.hero__tile--front { top: 30%; right: 14%; display: grid; place-items: center; background: #fff; color: var(--brand-teal); font-size: 26px; font-weight: 900; letter-spacing: -0.08em; line-height: 0.85; text-align: center; }
.hero__stamp { position: absolute; right: 7%; bottom: 14%; padding: 10px; border: 1px solid rgba(32, 37, 40, 0.22); border-radius: 50%; color: var(--ink); font-size: 8px; font-weight: 900; letter-spacing: 0.1em; line-height: 1.1; text-align: center; transform: rotate(-12deg); }

.section-block { margin-top: 78px; }
.section-block--compact { margin-top: 62px; }

.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 16px; margin-bottom: 19px; }
.section-heading .eyebrow { margin-bottom: 7px; }
.section-heading h2 { margin: 0; font-size: 27px; letter-spacing: -0.065em; line-height: 1.1; }
.section-heading__note { color: var(--soft-muted); font-size: 12px; font-weight: 700; }
.text-button { padding: 0; background: transparent; color: var(--brand-teal-deep); font-size: 12px; font-weight: 850; }

.featured-card {
  display: grid;
  grid-template-columns: minmax(300px, 0.95fr) minmax(0, 1.05fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-card);
}

.featured-card__visual, .campaign-card__visual {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
  background: transparent;
  text-align: left;
}

.featured-card__visual { min-height: 314px; }
.featured-card__badge { position: absolute; top: 18px; left: 18px; padding: 7px 9px; border-radius: 999px; background: rgba(255, 255, 255, 0.84); color: var(--ink); font-size: 9px; font-weight: 900; letter-spacing: 0.04em; }
.featured-card__copy { display: flex; flex-direction: column; justify-content: center; padding: 38px 42px; }
.featured-card__copy h3, .campaign-card__copy h3 { margin: 14px 0 7px; font-size: 28px; letter-spacing: -0.07em; line-height: 1.08; }
.featured-card__copy p { max-width: 390px; margin: 0; color: var(--muted); font-size: 13px; line-height: 1.65; }
.featured-card__bottom { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-top: 35px; color: var(--muted); font-size: 11px; font-weight: 700; }

.card-meta { display: flex; align-items: center; gap: 10px; color: var(--soft-muted); font-size: 10px; font-weight: 700; }
.status { display: inline-flex; align-items: center; gap: 5px; font-weight: 900; }
.status::before { width: 6px; height: 6px; border-radius: 50%; background: currentColor; content: ""; }
.status--urgent { color: #c97948; }
.status--active { color: var(--brand-teal); }
.status--upcoming { color: #7c79b6; }
.status--completed { color: #4f716a; }
.status--cancelled { color: #855b65; }

.campaign-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.campaign-card { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--white); box-shadow: var(--shadow-card); }
.campaign-card__visual { aspect-ratio: 1.45 / 1; }
.campaign-card__arrow { position: absolute; top: 14px; right: 14px; display: grid; width: 30px; height: 30px; place-items: center; border-radius: 50%; background: rgba(255, 255, 255, 0.85); color: var(--ink); font-size: 14px; }
.campaign-card__copy { padding: 18px 18px 21px; }
.campaign-card__copy h3 { margin: 12px 0 5px; font-size: 20px; }
.campaign-card__copy p { margin: 0; color: var(--muted); font-size: 11px; }

.product-art { position: relative; display: grid; height: 100%; min-height: 210px; place-items: center; overflow: hidden; background: linear-gradient(135deg, #f8edcf, #e7aa88 54%, #b5d2c9); }
.product-art--featured { min-height: 314px; }
.product-art--detail { min-height: 580px; border-radius: var(--radius-md); }
.product-art--blue { background: linear-gradient(135deg, #e9f3f8, #b5cbed 56%, #9cb0d8); }
.product-art--peach { background: linear-gradient(135deg, #fcf2e6, #f0c19e 58%, #d19b84); }
.product-art::before { position: absolute; width: 56%; aspect-ratio: 1; border-radius: 30% 42% 32% 48%; background: rgba(255, 255, 255, 0.82); box-shadow: 0 20px 32px rgba(75, 67, 45, 0.12); content: ""; transform: rotate(21deg); }
.product-art::after { position: absolute; right: 8%; bottom: 8%; width: 28%; aspect-ratio: 1; border: 1px solid rgba(32, 37, 40, 0.2); border-radius: 50%; content: ""; transform: rotate(-19deg); }
.product-art span { position: relative; z-index: 1; color: var(--brand-teal); font-size: 27px; font-weight: 900; letter-spacing: -0.08em; line-height: 0.82; text-align: center; transform: rotate(-7deg); }
.product-art--card span { font-size: 18px; }
.product-art i { position: absolute; z-index: 1; bottom: 17%; left: 24%; width: 28px; height: 28px; border-radius: 9px; background: var(--lime); transform: rotate(16deg); }

.back-button { display: inline-flex; align-items: center; gap: 8px; margin: 10px 0 25px; padding: 0; background: transparent; color: var(--muted); font-size: 12px; font-weight: 800; }
.detail-layout { display: grid; grid-template-columns: minmax(0, 1.06fr) minmax(350px, 0.94fr); align-items: center; gap: clamp(42px, 7vw, 100px); }
.detail-visual { position: relative; }
.detail-visual__index, .detail-visual__tag { position: absolute; top: 18px; padding: 7px 10px; border-radius: 999px; font-size: 9px; font-weight: 900; }
.detail-visual__index { right: 18px; background: rgba(255, 255, 255, 0.78); color: var(--muted); }
.detail-visual__tag { left: 18px; background: var(--ink); color: var(--white); }
.detail-panel h1 { max-width: 450px; margin-top: 16px; font-size: clamp(42px, 5vw, 64px); }
.detail-panel__description { max-width: 430px; margin: 18px 0 24px; color: var(--muted); font-size: 14px; line-height: 1.7; }
.price-row { display: flex; align-items: baseline; gap: 10px; padding-bottom: 21px; border-bottom: 1px solid var(--line); }
.price-row strong { font-size: 25px; letter-spacing: -0.06em; }
.price-row span { color: var(--muted); font-size: 11px; font-weight: 700; }
.store-selector { display: flex; align-items: center; justify-content: space-between; gap: 18px; margin-top: 21px; padding: 15px 16px; border: 1px solid var(--line); border-radius: var(--radius-sm); background: rgba(255, 255, 255, 0.7); }
.store-selector > div { display: grid; gap: 2px; }
.selector-label, .detail-stats span, .reservation-summary span { color: var(--soft-muted); font-size: 10px; }
.store-selector strong { font-size: 14px; }
.store-selector small { color: var(--muted); font-size: 10px; }
.detail-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 16px; }
.detail-stats > div { display: grid; gap: 3px; padding: 11px 12px; border-radius: 10px; background: var(--paper); }
.detail-stats strong { font-size: 12px; }
.policy-note, .success-note { display: flex; gap: 10px; align-items: flex-start; margin-top: 18px; padding: 13px 14px; border-radius: var(--radius-sm); background: var(--mint); color: #397271; }
.policy-note p, .success-note p { margin: 0; font-size: 11px; line-height: 1.55; }
.policy-note strong { display: block; margin-bottom: 1px; color: var(--brand-teal-deep); font-size: 11px; }
.policy-note__icon { flex: 0 0 auto; display: grid; width: 19px; height: 19px; place-items: center; border: 1px solid currentColor; border-radius: 50%; font-size: 11px; font-weight: 900; }
.detail-cta { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-top: 22px; color: var(--muted); font-size: 10px; font-weight: 700; }

.screen-success { max-width: 650px; margin: 46px auto 70px; }
.success-intro { text-align: center; }
.success-mark { display: grid; width: 48px; height: 48px; margin: 0 auto 18px; place-items: center; border-radius: 50%; background: var(--lime); color: var(--ink); font-size: 24px; font-weight: 900; }
.success-intro h1 { font-size: clamp(40px, 5vw, 58px); }
.success-intro p:last-child { margin: 14px 0 28px; color: var(--muted); font-size: 14px; }
.qr-card { padding: 25px; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--white); box-shadow: var(--shadow-card); }
.qr-card__top { display: flex; align-items: flex-start; justify-content: space-between; gap: 18px; }
.qr-card__top h2 { margin: 0; font-size: 24px; letter-spacing: -0.06em; line-height: 1.1; }
.qr-card__top p:last-child { margin: 7px 0 0; color: var(--muted); font-size: 11px; }
.qr-card__status { padding: 7px 9px; border-radius: 999px; background: var(--mint); color: var(--brand-teal-deep); font-size: 10px; font-weight: 900; white-space: nowrap; }
.qr-code { display: grid; grid-template-columns: repeat(21, 1fr); width: min(100%, 286px); aspect-ratio: 1; gap: 2px; margin: 25px auto 20px; padding: 14px; border: 1px solid var(--line); border-radius: 16px; background: var(--paper); }
.qr-cell { min-width: 0; min-height: 0; border-radius: 1px; background: #e9efed; }
.qr-cell.is-dark { background: var(--ink); }
.reservation-id { display: flex; align-items: center; justify-content: space-between; gap: 15px; padding: 13px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.reservation-id span { color: var(--soft-muted); font-size: 11px; }
.reservation-id strong { color: var(--brand-teal-deep); font-size: 12px; letter-spacing: 0.06em; }
.reservation-summary { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; padding-top: 17px; }
.reservation-summary > div { display: grid; gap: 3px; }
.reservation-summary strong { font-size: 12px; }
.success-note { margin-top: 14px; background: #f8f5e6; color: #81764e; }
.success-home { display: flex; margin: 20px auto 0; }

.screen-support {
  padding: clamp(2rem, 5vw, 5rem) 0;
}

.support-intro {
  max-width: 44rem;
  margin-bottom: 2rem;
}

.support-intro h1 {
  margin: 0;
  font-size: clamp(40px, 5.2vw, 64px);
  font-weight: 850;
  letter-spacing: -0.085em;
  line-height: 0.98;
}

.support-intro > p:last-child {
  max-width: 34rem;
  margin: 1.1rem 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.support-grid,
.support-list {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.support-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 1.5rem;
  background: var(--paper);
  padding: 1.5rem;
  box-shadow: var(--shadow-card);
}

.support-card--teal { border-top: 5px solid var(--brand-teal); }
.support-card--lime { border-top: 5px solid var(--lime); }
.support-card--peach { border-top: 5px solid #e7aa88; }

.support-card .eyebrow { margin-bottom: 0.9rem; }

.support-card h2,
.support-contact h2,
.support-contact-panel h2 {
  margin: 0;
  font-size: clamp(22px, 2.2vw, 30px);
  letter-spacing: -0.07em;
  line-height: 1.1;
}

.support-card > p:not(.eyebrow) {
  margin: 0.85rem 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.support-card__steps,
.support-card > ol {
  display: grid;
  gap: 0.65rem;
  margin: 1.25rem 0;
  padding-left: 1.25rem;
}

.support-card__step,
.support-card > ol > li {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.support-card__action,
.support-card > .button {
  align-self: flex-start;
  margin-top: auto;
}

.support-contact-panel,
.support-contact {
  margin-top: 1rem;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: var(--mint);
  padding: 1rem;
}

.support-contact dl {
  display: grid;
  gap: 0.6rem;
  margin: 1rem 0 0;
}

.support-contact dl > div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid rgba(17, 118, 124, 0.14);
  padding-top: 0.6rem;
}

.support-contact dt,
.support-contact dd {
  margin: 0;
  font-size: 11px;
}

.support-contact dt { color: var(--brand-teal-deep); font-weight: 800; }
.support-contact dd { color: var(--muted); text-align: right; }

.support-contact > p {
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.55;
}

.support-card button:focus-visible,
.support-contact a:focus-visible,
.support-contact button:focus-visible {
  outline: 3px solid var(--lime);
  outline-offset: 3px;
}

.screen-history {
  max-width: 980px;
  margin: 45px auto 70px;
}

.history-intro {
  max-width: 640px;
  margin-bottom: 29px;
}

.history-intro h1 {
  margin: 0;
  font-size: clamp(42px, 5.2vw, 62px);
  font-weight: 850;
  letter-spacing: -0.085em;
  line-height: 0.98;
}

.history-intro p:last-child {
  max-width: 520px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.history-filters {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  max-width: 100%;
  margin-bottom: 24px;
  padding: 5px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 7px 18px rgba(35, 67, 64, 0.04);
}

.history-filter {
  min-height: 36px;
  padding: 8px 14px;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: -0.02em;
  transition: background 160ms ease, color 160ms ease, box-shadow 160ms ease;
}

.history-filter:hover { color: var(--ink); }

.history-filter.is-active {
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 5px 12px rgba(32, 37, 40, 0.14);
}

.history-filter:focus-visible {
  outline: 3px solid var(--lime);
  outline-offset: 3px;
}

.history-panel {
  min-width: 0;
  margin: 0 -3px;
  padding: 3px;
  overflow: visible;
}

.history-panel:focus-visible {
  outline: 3px solid var(--lime);
  outline-offset: 3px;
  border-radius: var(--radius-md);
}

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

.history-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-card);
}

.history-card--active {
  border-color: rgba(74, 128, 111, 0.34);
  background: linear-gradient(145deg, var(--white), rgba(238, 248, 241, 0.72));
}

.history-card--completed {
  border-color: rgba(116, 133, 128, 0.3);
  background: linear-gradient(145deg, var(--white), rgba(244, 247, 245, 0.9));
}

.history-card--cancelled {
  border-color: rgba(183, 126, 101, 0.3);
  background: linear-gradient(145deg, var(--white), rgba(252, 243, 239, 0.82));
}

.history-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.history-card__date {
  color: var(--soft-muted);
  font-size: 10px;
  font-weight: 750;
  white-space: nowrap;
}

.history-card h2 {
  margin: 18px 0 7px;
  font-size: 23px;
  letter-spacing: -0.065em;
  line-height: 1.12;
}

.history-card__description {
  min-height: 42px;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.65;
}

.history-card__details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 22px 0 0;
  padding-top: 17px;
  border-top: 1px solid var(--line);
}

.history-card__details > div {
  display: grid;
  min-width: 0;
  gap: 3px;
}

.history-card__details dt {
  color: var(--soft-muted);
  font-size: 10px;
}

.history-card__details dd {
  min-width: 0;
  margin: 0;
  overflow-wrap: anywhere;
  color: var(--ink);
  font-size: 11px;
  font-weight: 750;
}

.history-card > .button {
  align-self: flex-start;
  margin-top: 21px;
}

.history-empty {
  padding: 58px 24px;
  border: 1px dashed var(--line-strong);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.6);
  text-align: center;
}

.history-empty__icon {
  display: grid;
  width: 52px;
  height: 52px;
  margin: 0 auto 20px;
  place-items: center;
  border: 1px solid rgba(74, 128, 111, 0.28);
  border-radius: 50%;
  background: rgba(224, 240, 229, 0.72);
}

.history-empty__icon::after {
  width: 17px;
  height: 17px;
  border: 2px solid var(--brand-teal);
  border-radius: 50%;
  content: '';
}

.history-empty h2 {
  margin: 0;
  font-size: 24px;
  letter-spacing: -0.06em;
  line-height: 1.15;
}

.history-empty p {
  margin: 10px 0 20px;
  color: var(--muted);
  font-size: 12px;
}

.site-footer { display: flex; justify-content: space-between; gap: 20px; padding: 38px 0 34px; margin-top: 86px; border-top: 1px solid var(--line); color: var(--soft-muted); font-size: 10px; }
noscript { display: block; margin: 20px 0; color: var(--muted); }

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr 0.8fr; }
  .hero__copy { padding-left: 36px; }
  .hero__tile { width: 140px; height: 140px; }
  .detail-layout { gap: 36px; }
}

@media (max-width: 720px) {
  .site-shell { width: min(calc(100% - 32px), var(--content-width)); }
  .site-header { min-height: 78px; gap: 10px; }
  .brand-mark { width: 118px; height: 42px; }
  .site-nav { display: none; }
  .store-pill { padding: 7px 9px; font-size: 10px; }
  .account-chip { width: 31px; height: 31px; }
  #app { min-height: 560px; }
  .hero { display: block; min-height: 0; }
  .hero__copy { padding: 34px 25px 30px; }
  .hero h1 { font-size: clamp(39px, 12vw, 55px); }
  .hero__description { margin: 17px 0 22px; font-size: 12px; }
  .hero__actions { align-items: flex-start; flex-direction: column; gap: 14px; }
  .hero__visual { min-height: 188px; }
  .hero__orb { top: 8%; right: 15%; width: 166px; height: 166px; }
  .hero__tile { width: 116px; height: 116px; border-radius: 29px; }
  .hero__tile--back { top: 21%; right: 42%; }
  .hero__tile--front { top: 19%; right: 21%; font-size: 18px; }
  .hero__stamp { right: 10%; bottom: 10%; font-size: 7px; }
  .section-block { margin-top: 52px; }
  .section-block--compact { margin-top: 49px; }
  .section-heading h2 { font-size: 23px; }
  .section-heading__note { display: none; }
  .featured-card { grid-template-columns: 1fr; }
  .featured-card__visual { min-height: 242px; }
  .product-art--featured { min-height: 242px; }
  .featured-card__copy { padding: 25px 23px 23px; }
  .featured-card__copy h3 { font-size: 24px; }
  .featured-card__bottom { align-items: flex-start; flex-direction: column; margin-top: 24px; }
  .campaign-grid { grid-template-columns: 1fr; gap: 12px; }
  .campaign-card { display: grid; grid-template-columns: 0.88fr 1.12fr; }
  .campaign-card__visual { aspect-ratio: auto; min-height: 148px; }
  .campaign-card__copy { display: flex; flex-direction: column; justify-content: center; }
  .campaign-card__copy h3 { font-size: 18px; }
  .product-art--card { min-height: 148px; }
  .back-button { margin-top: 0; }
  .detail-layout { display: block; }
  .product-art--detail { min-height: 340px; }
  .detail-panel { padding: 27px 2px 0; }
  .detail-panel h1 { font-size: clamp(40px, 12vw, 56px); }
  .detail-panel__description { font-size: 12px; }
  .detail-cta { position: sticky; bottom: 12px; z-index: 2; margin: 22px -2px 0; padding: 12px; border: 1px solid rgba(217, 225, 223, 0.88); border-radius: 16px; background: rgba(255, 255, 255, 0.92); box-shadow: 0 14px 30px rgba(35, 67, 64, 0.12); backdrop-filter: blur(12px); }
  .screen-history { margin: 30px auto 50px; }
  .history-intro { margin-bottom: 24px; }
  .history-intro h1 { font-size: clamp(40px, 12vw, 55px); }
  .history-intro p:last-child { margin-top: 15px; font-size: 12px; }
  .history-filters { display: flex; width: 100%; margin-bottom: 18px; }
  .history-filter { flex: 1 1 0; min-width: 0; padding-right: 8px; padding-left: 8px; }
  .history-list { grid-template-columns: 1fr; gap: 12px; }
  .history-card { padding: 19px; }
  .history-card h2 { margin-top: 15px; font-size: 21px; }
  .history-card__description { min-height: 0; }
  .history-card__details { margin-top: 18px; padding-top: 15px; }
  .history-empty { padding: 45px 18px; }
  .screen-support { padding: 30px 0 50px; }
  .support-intro { margin-bottom: 24px; }
  .support-intro h1 { font-size: clamp(40px, 12vw, 55px); }
  .support-intro > p:last-child { margin-top: 15px; font-size: 12px; }
  .support-grid,
  .support-list { grid-template-columns: 1fr; }
  .support-card { padding: 1.25rem; }
  .support-card__action,
  .support-card > .button { width: 100%; }
  .screen-success { margin: 30px auto 50px; }
  .success-intro h1 { font-size: clamp(38px, 11vw, 52px); }
  .qr-card { padding: 19px; }
  .qr-card__top h2 { font-size: 21px; }
  .reservation-summary { grid-template-columns: 1fr; gap: 12px; }
  .site-footer { align-items: flex-start; flex-direction: column; gap: 6px; margin-top: 58px; padding-bottom: 25px; }
}

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