:root {
  --cream: #f2eadb;
  --cream-deep: #e9deca;
  --paper: #fffaf2;
  --paper-soft: rgba(255, 252, 246, .78);
  --forest: #173522;
  --forest-soft: #49634f;
  --green: #64aa26;
  --lime: #a8f94d;
  --line: rgba(35, 64, 40, .12);
  --shadow: 0 18px 40px rgba(55, 55, 36, .11);
  --shadow-soft: 0 9px 24px rgba(55, 55, 36, .09);
  --radius: 28px;
  color-scheme: light;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  background: var(--cream);
  color: var(--forest);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
button, input, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }
button { color: inherit; }

.skip-link {
  position: fixed;
  z-index: 100;
  left: 1rem;
  top: -5rem;
  padding: .75rem 1rem;
  background: var(--forest);
  color: #fff;
  border-radius: 10px;
}
.skip-link:focus { top: 1rem; }

.site-header {
  position: absolute;
  z-index: 30;
  top: 18px;
  left: 50%;
  width: min(1180px, calc(100% - 48px));
  min-height: 72px;
  padding: 9px 10px 9px 24px;
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1.5rem;
  background: rgba(255, 251, 244, .82);
  border: 1px solid rgba(255, 255, 255, .88);
  border-radius: 25px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}
.site-header-solid { position: relative; margin-bottom: 0; }
.wordmark { display: inline-flex; align-items: center; gap: .7rem; width: max-content; font-weight: 700; letter-spacing: -.025em; }
.wordmark b { color: var(--green); }
.header-brand { font-size: 1.02rem; }
.wordmark-mark {
  display: grid;
  place-items: center;
  width: 38px;
  aspect-ratio: 1;
  background: var(--forest);
  color: #fff;
  border-radius: 13px 7px 13px 7px;
  font-weight: 850;
  box-shadow: 0 7px 14px rgba(23,53,34,.18);
}
.desktop-nav { display: flex; align-items: center; gap: .3rem; padding: .3rem; background: rgba(239, 232, 218, .7); border-radius: 999px; }
.desktop-nav a { padding: .62rem 1rem; color: #607061; font-size: .88rem; font-weight: 650; border-radius: 999px; transition: background .2s ease, color .2s ease; }
.desktop-nav a:hover, .desktop-nav a.is-active { background: var(--paper); color: var(--forest); box-shadow: 0 5px 14px rgba(50,50,30,.07); }
.header-logo { justify-self: end; width: 54px; height: 54px; border-radius: 17px; object-fit: cover; border: 3px solid rgba(255,255,255,.9); box-shadow: 0 8px 18px rgba(34,53,33,.16); }

.menu-button { display: none; width: 50px; height: 50px; border: 0; background: var(--paper); border-radius: 16px; box-shadow: var(--shadow-soft); align-items: center; justify-content: center; flex-direction: column; gap: 5px; cursor: pointer; }
.menu-button span { width: 19px; height: 2px; background: var(--forest); border-radius: 2px; transition: transform .2s ease, opacity .2s ease; }
.menu-button[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-button[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-button[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 0;
  right: 0;
  padding: 14px;
  background: rgba(255,251,244,.97);
  border: 1px solid rgba(255,255,255,.9);
  border-radius: 26px;
  box-shadow: var(--shadow);
}
.mobile-menu a { display: flex; align-items: center; min-height: 56px; padding: 0 1rem; color: var(--forest-soft); border-radius: 17px; font-weight: 680; }
.mobile-menu a::before { content: ""; width: 8px; height: 8px; margin-right: .8rem; border: 1.5px solid currentColor; border-radius: 50%; }
.mobile-menu a.is-active, .mobile-menu a:hover { background: #fff; color: var(--forest); box-shadow: var(--shadow-soft); }

.hero {
  position: relative;
  min-height: 920px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 185px 20px 125px;
  text-align: center;
  isolation: isolate;
}
.hero-image {
  position: absolute;
  z-index: -2;
  top: 120px;
  right: -130px;
  width: min(620px, 55vw);
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 50%;
  opacity: .085;
  filter: saturate(.6);
}
.hero-shade {
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    radial-gradient(circle at 12% 27%, rgba(255,255,255,.92) 0 58px, transparent 60px),
    radial-gradient(circle at 83% 30%, rgba(255,255,255,.72) 0 37px, transparent 39px),
    radial-gradient(circle at 78% 76%, rgba(255,255,255,.72) 0 92px, transparent 94px),
    radial-gradient(circle at 19% 83%, rgba(255,255,255,.63) 0 27px, transparent 29px),
    linear-gradient(180deg, #f4eddf, var(--cream));
}
.hero-content { width: min(820px, 100%); }
.eyebrow, .kicker {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: .45rem .9rem;
  background: rgba(255,252,246,.84);
  color: #57705a;
  border: 1px solid rgba(255,255,255,.88);
  border-radius: 999px;
  box-shadow: var(--shadow-soft);
  font-size: .72rem;
  font-weight: 760;
  letter-spacing: .13em;
}
.hero h1 { margin: 1.45rem 0 1rem; font-size: clamp(3.2rem, 7vw, 6.2rem); line-height: .96; letter-spacing: -.068em; font-weight: 830; }
.hero h1 span { color: var(--green); }
.hero-content > p { max-width: 650px; margin: 0 auto; color: #657666; font-size: 1.06rem; line-height: 1.75; }
.hero-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: .8rem; margin-top: 2rem; }
.button { min-height: 54px; display: inline-flex; align-items: center; justify-content: center; gap: 1rem; padding: .85rem 1.45rem; border: 0; border-radius: 18px; cursor: pointer; font-weight: 760; font-size: .92rem; transition: transform .2s ease, box-shadow .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: linear-gradient(135deg, var(--lime), #8ee92e); color: #173522; box-shadow: 0 14px 28px rgba(111,185,42,.23); }
.button-ghost { background: var(--paper); color: var(--forest); box-shadow: var(--shadow-soft); }

.live-panel {
  display: flex;
  align-items: center;
  gap: .55rem;
  min-height: 42px;
  margin-bottom: 1rem;
  padding: .55rem .85rem;
  background: rgba(255,252,246,.86);
  border: 1px solid rgba(255,255,255,.9);
  border-radius: 999px;
  box-shadow: var(--shadow-soft);
  color: #607061;
  font-size: .875rem;
}
.live-panel strong { font-size: .875rem; }
.status-orb { width: 8px; height: 8px; flex: 0 0 auto; border-radius: 50%; background: #d29c3b; box-shadow: 0 0 0 4px rgba(210,156,59,.12); }
.status-orb.is-online { background: var(--green); box-shadow: 0 0 0 4px rgba(100,170,38,.12); }
.status-orb.is-offline { background: #c95d58; box-shadow: 0 0 0 4px rgba(201,93,88,.12); }
.status-orb.is-loading { animation: pulse 1.2s infinite; }
.player-count { padding-left: .5rem; border-left: 1px solid var(--line); }
.player-count b { color: var(--forest); }
.live-meta { display: flex; gap: .55rem; padding-left: .5rem; border-left: 1px solid var(--line); }
.text-button { border: 0; padding: 0; background: none; color: var(--green); cursor: pointer; font-size: .75rem; }

.server-strip { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .75rem; width: min(620px, 100%); margin-top: 1.6rem; }
.address-item { min-height: 66px; display: flex; align-items: center; justify-content: center; gap: .7rem; padding: .7rem 1rem; background: rgba(255,252,246,.88); border: 1px solid rgba(255,255,255,.9); border-radius: 21px; box-shadow: var(--shadow-soft); }
.address-item span { color: #718074; font-size: .67rem; font-weight: 780; letter-spacing: .1em; }
.address-item button { padding: 0; background: none; border: 0; cursor: pointer; font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: .82rem; font-weight: 700; }
.address-item button:hover { color: var(--green); }
.address-item b { color: #718074; font-family: inherit; }
.hero-index { position: absolute; left: 20px; right: 20px; bottom: 48px; overflow: hidden; color: #7d8a7d; font-size: .68rem; font-weight: 680; letter-spacing: .1em; white-space: nowrap; }

.content-section { max-width: 1180px; margin: 0 auto; padding: 7rem 30px; }
.about-section { display: grid; grid-template-columns: 55px .8fr 1.2fr; gap: clamp(1.5rem, 5vw, 5rem); align-items: start; }
.section-number { color: #8a988b; font-size: .78rem; letter-spacing: .14em; padding-top: .6rem; }
.section-copy h2, .store-callout h2 { margin: 1rem 0 0; font-size: clamp(2.5rem, 5vw, 4.6rem); line-height: 1; letter-spacing: -.058em; }
.about-body { padding: clamp(1.4rem, 3vw, 2.5rem); background: rgba(255,251,244,.72); border: 1px solid rgba(255,255,255,.86); border-radius: var(--radius); box-shadow: var(--shadow-soft); }
.about-body > p { margin: 0 0 2.3rem; color: #627264; font-size: 1.03rem; line-height: 1.8; }
.feature-lines { border-top: 1px solid var(--line); }
.feature-lines > div { display: grid; grid-template-columns: 42px 110px 1fr; gap: .8rem; align-items: baseline; padding: 1.15rem 0; border-bottom: 1px solid var(--line); }
.feature-lines span { color: var(--green); font-size: .72rem; font-weight: 800; }
.feature-lines strong { font-size: .93rem; }
.feature-lines p { margin: 0; color: #718075; font-size: .85rem; }

.edition-status { max-width: 1180px; margin: 0 auto; padding: 0 30px 7rem; display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.edition-status article { min-height: 145px; padding: 1.5rem; background: rgba(255,251,244,.8); border: 1px solid rgba(255,255,255,.9); border-radius: 24px; box-shadow: var(--shadow-soft); display: flex; align-items: flex-end; justify-content: space-between; gap: 1rem; }
.edition-tag { display: inline-block; margin-bottom: .8rem; color: var(--green); font-size: .67rem; font-weight: 800; letter-spacing: .13em; }
.edition-status h3 { margin: 0; font-size: 1.3rem; }
.edition-state { color: #718075; font-size: .82rem; }
.edition-state.online { color: var(--green); }
.edition-state.offline { color: #bd5c57; }

.store-callout { max-width: 1120px; margin: 0 auto 6rem; padding: clamp(2rem, 5vw, 4.5rem); min-height: 340px; background: var(--forest); color: #fff; border-radius: 34px; box-shadow: 0 22px 50px rgba(23,53,34,.2); display: grid; grid-template-columns: 1.3fr .7fr; gap: 2rem 4rem; align-items: end; position: relative; overflow: hidden; }
.store-callout::after { content: "V"; position: absolute; right: -1rem; top: -5rem; color: rgba(255,255,255,.045); font-size: 25rem; line-height: 1; font-weight: 900; }
.store-callout > * { position: relative; z-index: 1; }
.store-callout .kicker { color: var(--forest); }
.store-callout p { color: #bed0c0; max-width: 420px; }
.arrow-link { grid-column: 2; width: max-content; color: var(--lime); font-weight: 760; border-bottom: 1px solid rgba(168,249,77,.45); padding-bottom: .3rem; }
.arrow-link span { margin-left: .6rem; }

.site-footer { min-height: 180px; padding: 2.5rem max(24px, calc((100% - 1120px)/2)); border-top: 1px solid var(--line); display: grid; grid-template-columns: 1fr 1fr 1fr; align-items: center; gap: 2rem; color: #667568; font-size: .8rem; }
.site-footer p { margin: 0; }
.site-footer > div { display: flex; justify-content: flex-end; gap: 1.5rem; }
.site-footer a:hover { color: var(--green); }

.store-main { min-height: 75vh; max-width: 1180px; margin: 0 auto; padding: 7.5rem 30px 7rem; }
.store-intro { display: flex; flex-direction: column; align-items: center; max-width: 760px; margin: 0 auto; padding: 3rem 0 3.8rem; text-align: center; }
.store-intro h1 { margin: 1rem 0 .8rem; font-size: clamp(3rem, 7vw, 5.8rem); line-height: .96; letter-spacing: -.065em; }
.store-intro p { max-width: 580px; margin: 0; color: #657566; line-height: 1.75; }

.buyer-panel { margin-bottom: 2.5rem; padding: clamp(1.3rem, 3vw, 2rem); background: rgba(255,251,244,.78); border: 1px solid rgba(255,255,255,.9); border-radius: 30px; box-shadow: var(--shadow); }
.buyer-panel-head { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.3rem; }
.buyer-icon { width: 52px; height: 52px; flex: 0 0 auto; display: grid; place-items: center; background: var(--forest); color: #fff; border-radius: 16px 9px 16px 9px; font-weight: 850; }
.buyer-panel h2 { margin: 0; font-size: 1.25rem; }
.buyer-panel-head p { margin: .15rem 0 0; color: #718075; font-size: .84rem; }
.buyer-fields { display: grid; grid-template-columns: 1.4fr .6fr; gap: 1rem; }
.buyer-input, .buyer-edition { min-width: 0; margin: 0; padding: 0; border: 0; }
.buyer-input > span, .buyer-edition legend { display: block; margin-bottom: .45rem; color: #5f7163; font-size: .78rem; font-weight: 740; }
.buyer-input input { width: 100%; min-height: 54px; padding: .85rem 1rem; border: 1px solid var(--line); background: #fffdf9; color: var(--forest); border-radius: 16px; outline: none; box-shadow: inset 0 2px 4px rgba(55,55,36,.035); }
.buyer-input input:focus { border-color: var(--green); box-shadow: 0 0 0 4px rgba(100,170,38,.1); }
.buyer-edition { display: grid; grid-template-columns: repeat(2, 1fr); gap: .5rem; }
.buyer-edition legend { grid-column: 1 / -1; }
.buyer-edition label { position: relative; }
.buyer-edition input { position: absolute; opacity: 0; }
.buyer-edition span { min-height: 54px; display: grid; place-items: center; background: #fffdf9; border: 1px solid var(--line); border-radius: 16px; cursor: pointer; font-weight: 730; font-size: .86rem; }
.buyer-edition input:checked + span { background: #eef8df; border-color: var(--green); color: #397716; }
.buyer-help { margin: .8rem 0 0; color: #7b887d; font-size: .75rem; }

.store-toolbar { position: sticky; z-index: 10; top: 8px; display: flex; justify-content: space-between; align-items: center; gap: 1rem; margin-bottom: 1.5rem; padding: .65rem; background: rgba(255,251,244,.84); border: 1px solid rgba(255,255,255,.9); border-radius: 20px; box-shadow: var(--shadow-soft); backdrop-filter: blur(14px); }
.category-tabs { display: flex; gap: .35rem; }
.category-tab { min-height: 44px; border: 0; background: transparent; color: #6a796c; padding: .65rem 1.15rem; border-radius: 14px; cursor: pointer; font-weight: 700; }
.category-tab.is-active { background: var(--forest); color: #fff; }
.product-total { padding-right: .8rem; color: #748176; font-size: .82rem; }
.product-total b { color: var(--green); }
.product-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; }
.product-card { min-width: 0; min-height: 350px; padding: 1.5rem; background: rgba(255,251,244,.8); border: 1px solid rgba(255,255,255,.92); border-radius: 28px; box-shadow: var(--shadow-soft); display: flex; flex-direction: column; align-items: center; text-align: center; transition: transform .2s ease, box-shadow .2s ease; }
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.product-topline { width: 100%; display: flex; align-items: center; justify-content: space-between; color: #849087; font-size: .68rem; font-weight: 760; letter-spacing: .1em; }
.product-symbol { width: 64px; height: 64px; display: grid; place-items: center; margin: 1.3rem 0 1rem; background: linear-gradient(145deg, #fff, #edf5e8); color: var(--green); border-radius: 20px; box-shadow: var(--shadow-soft); font-weight: 850; font-size: 1.15rem; }
.product-name small { color: var(--green); font-size: .67rem; font-weight: 800; letter-spacing: .12em; }
.product-name h2 { margin: .3rem 0 .55rem; font-size: 1.45rem; letter-spacing: -.035em; }
.product-price { margin-bottom: 1.1rem; font-weight: 820; font-size: 1.3rem; }
.product-price small { color: #7a887d; font-size: .72rem; font-weight: 650; }
.benefit-list { width: 100%; display: grid; gap: .45rem; margin-bottom: 1.3rem; text-align: left; }
.benefit-list span { color: #657567; font-size: .85rem; }
.benefit-list span::before { content: "✓"; margin-right: .55rem; color: var(--green); font-weight: 900; }
.buy-button { width: 100%; min-height: 48px; margin-top: auto; border: 0; background: #eaf5df; color: #397716; border-radius: 15px; cursor: pointer; font-weight: 780; transition: background .2s ease, color .2s ease; }
.buy-button:hover { background: var(--lime); color: var(--forest); }
.purchase-note { margin-top: 3rem; padding: 1.5rem; background: rgba(255,251,244,.62); border: 1px solid rgba(255,255,255,.82); border-radius: 24px; display: grid; grid-template-columns: 1fr 4fr; gap: 2rem; }
.purchase-note > span { color: #758278; font-size: .7rem; font-weight: 760; letter-spacing: .13em; }
.purchase-note ol { list-style: none; counter-reset: purchase; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin: 0; padding: 0; }
.purchase-note li { counter-increment: purchase; color: #596b5d; font-size: .82rem; }
.purchase-note li::before { content: "0" counter(purchase); display: block; margin-bottom: .25rem; color: var(--green); font-size: .7rem; font-weight: 800; }

.checkout-dialog { width: min(560px, calc(100% - 2rem)); max-height: calc(100dvh - 2rem); padding: 0; border: 1px solid rgba(255,255,255,.9); border-radius: 28px; background: var(--paper); color: var(--forest); box-shadow: 0 35px 90px rgba(35,53,34,.25); }
.checkout-dialog::backdrop { background: rgba(25,42,28,.42); backdrop-filter: blur(6px); }
.checkout-form { padding: clamp(1.25rem, 4vw, 2rem); }
.dialog-head { display: flex; align-items: start; justify-content: space-between; gap: 1rem; }
.dialog-head h2 { margin: .65rem 0 0; font-size: 1.7rem; }
.dialog-close { width: 42px; height: 42px; padding: 0; border: 0; border-radius: 14px; background: var(--cream); font-size: 1.5rem; cursor: pointer; }
.selected-product { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin: 1.4rem 0; padding: 1rem; background: #eef6e8; border-radius: 17px; }
.selected-product span { display: block; color: #718075; font-size: .7rem; margin-bottom: .15rem; }
.field { display: block; margin: 1.1rem 0; border: 0; padding: 0; }
.field > span, .field legend { display: block; margin-bottom: .45rem; font-weight: 720; font-size: .82rem; }
.field input[type="text"], .field select { width: 100%; min-height: 50px; border: 1px solid var(--line); background: #fff; color: var(--forest); border-radius: 15px; padding: .75rem .9rem; outline: none; }
.field input:focus, .field select:focus { border-color: var(--green); box-shadow: 0 0 0 4px rgba(100,170,38,.1); }
.field small { display: block; margin-top: .4rem; color: #7b887d; font-size: .72rem; }
.edition-choice { display: grid; grid-template-columns: repeat(2, 1fr); gap: .6rem; }
.edition-choice legend { grid-column: 1 / -1; }
.edition-choice label { position: relative; }
.edition-choice input { position: absolute; opacity: 0; pointer-events: none; }
.edition-choice label span { min-height: 48px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 15px; cursor: pointer; }
.edition-choice input:checked + span { border-color: var(--green); color: #397716; background: #eef8df; }
.checkout-submit { width: 100%; margin-top: .7rem; }
.form-note { margin: .8rem 0 0; color: #7b887d; text-align: center; font-size: .7rem; }

.toast { position: fixed; z-index: 90; left: 50%; bottom: 1.5rem; transform: translate(-50%, 120px); padding: .8rem 1rem; background: var(--forest); color: #fff; border-radius: 13px; box-shadow: 0 18px 45px rgba(35,53,34,.25); font-size: .84rem; font-weight: 720; opacity: 0; transition: transform .25s ease, opacity .25s ease; }
.toast.is-visible { transform: translate(-50%, 0); opacity: 1; }

@keyframes pulse { 50% { opacity: .45; } }

@media (max-width: 900px) {
  .site-header { grid-template-columns: 1fr auto; padding: 9px 11px; }
  .desktop-nav { display: none; }
  .menu-button { display: flex; grid-column: 1; justify-self: start; }
  .header-brand { display: none; }
  .header-logo { grid-column: 2; width: 50px; height: 50px; }
  .about-section { grid-template-columns: 40px 1fr; }
  .about-body { grid-column: 2; }
  .store-callout { grid-template-columns: 1fr; margin-inline: 24px; }
  .arrow-link { grid-column: 1; }
  .purchase-note { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  .site-header { top: 14px; width: calc(100% - 28px); min-height: 66px; border-radius: 22px; }
  .site-header-solid { position: relative; margin-bottom: 0; }
  .menu-button { width: 46px; height: 46px; border-radius: 15px; }
  .header-logo { width: 46px; height: 46px; border-radius: 15px; }
  .mobile-menu { top: calc(100% + 12px); }
  .hero { min-height: 930px; padding: 205px 18px 135px; justify-content: center; }
  .hero-image { top: 130px; right: -145px; width: 440px; opacity: .07; }
  .hero-shade { background: radial-gradient(circle at 14% 30%, rgba(255,255,255,.92) 0 43px, transparent 45px), radial-gradient(circle at 86% 25%, rgba(255,255,255,.72) 0 29px, transparent 31px), radial-gradient(circle at 83% 77%, rgba(255,255,255,.72) 0 62px, transparent 64px), radial-gradient(circle at 18% 84%, rgba(255,255,255,.63) 0 22px, transparent 24px), linear-gradient(180deg, #f4eddf, var(--cream)); }
  .live-panel { flex-wrap: wrap; justify-content: center; max-width: 310px; border-radius: 19px; }
  .live-meta { width: 100%; justify-content: center; padding: .45rem 0 0; border-left: 0; border-top: 1px solid var(--line); }
  .hero h1 { font-size: clamp(3rem, 14vw, 4.4rem); }
  .hero-content > p { font-size: .95rem; }
  .hero-actions { display: grid; grid-template-columns: 1fr 1fr; width: 100%; }
  .button { padding-inline: .8rem; }
  .server-strip { grid-template-columns: 1fr; max-width: 350px; }
  .hero-index { bottom: 45px; }
  .content-section { padding: 5.5rem 20px; }
  .about-section { display: block; }
  .section-number { margin-bottom: 1.2rem; }
  .about-body { margin-top: 2rem; }
  .feature-lines > div { grid-template-columns: 34px 1fr; }
  .feature-lines p { grid-column: 2; }
  .edition-status { grid-template-columns: 1fr; padding: 0 20px 5rem; }
  .store-callout { margin-inline: 14px; margin-bottom: 4rem; padding: 2.1rem 1.3rem; border-radius: 28px; }
  .store-callout h2 { font-size: 2.45rem; }
  .site-footer { grid-template-columns: 1fr; gap: 1.25rem; padding-inline: 24px; }
  .site-footer > div { justify-content: flex-start; flex-wrap: wrap; }
  .store-main { padding: 4.5rem 14px 5rem; }
  .store-intro { padding: 3rem 0; }
  .store-intro h1 { font-size: 3rem; }
  .buyer-panel { border-radius: 25px; }
  .buyer-fields { grid-template-columns: 1fr; }
  .store-toolbar { top: 6px; }
  .category-tabs { flex: 1; }
  .category-tab { flex: 1; padding-inline: .6rem; font-size: .82rem; }
  .product-total { display: none; }
  .product-list { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .7rem; }
  .product-card { min-height: 340px; padding: 1.1rem .9rem; border-radius: 23px; }
  .product-symbol { width: 54px; height: 54px; margin-block: 1rem .75rem; border-radius: 17px; font-size: .95rem; }
  .product-name h2 { font-size: 1.12rem; }
  .product-price { font-size: 1.05rem; }
  .benefit-list span { font-size: .78rem; }
  .purchase-note ol { grid-template-columns: repeat(2, 1fr); gap: 1.2rem; }
}

@media (max-width: 390px) {
  .product-list { grid-template-columns: 1fr; }
  .product-card { min-height: 320px; }
}

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