:root {
  --bg: #020305;
  --bg-soft: #080b11;
  --panel: rgba(4, 8, 14, 0.92);
  --panel-strong: rgba(7, 12, 20, 0.98);
  --gold: #d8a84d;
  --gold-strong: #ffd071;
  --blue: #1a86d9;
  --blue-soft: rgba(26, 134, 217, 0.18);
  --text: #f4f1e8;
  --muted: #a9a293;
  --line: rgba(216, 168, 77, 0.52);
  --line-blue: rgba(26, 134, 217, 0.46);
  --shadow: 0 0 34px rgba(12, 92, 166, 0.34);
  --corner-cut: 20px;
  --corner-cut-double: 40px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 72% 13%, rgba(13, 100, 181, 0.32), transparent 26rem),
    radial-gradient(circle at 18% 8%, rgba(216, 168, 77, 0.11), transparent 17rem),
    linear-gradient(180deg, #020305 0%, #05070a 48%, #020305 100%);
  color: var(--text);
  font-family: "Rajdhani", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 18px;
  line-height: 1.5;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, black, transparent 70%);
}

img {
  display: block;
  max-width: 100%;
}

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

p,
h1,
h2,
h3 {
  margin-top: 0;
}

.page-shell {
  width: min(1220px, calc(100% - 32px));
  margin: 0 auto;
  padding: 18px 0 28px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 14px 22px;
  background: rgba(2, 3, 5, 0.86);
  backdrop-filter: blur(18px);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - var(--corner-cut)), calc(100% - var(--corner-cut)) 100%, var(--corner-cut) 100%, 0 calc(100% - var(--corner-cut)));
}

.site-header::before {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(45deg, transparent calc(50% - 1px), var(--gold) 50%, transparent calc(50% + 1px)) bottom left / var(--corner-cut) var(--corner-cut) no-repeat,
    linear-gradient(135deg, transparent calc(50% - 1px), var(--gold) 50%, transparent calc(50% + 1px)) bottom right / var(--corner-cut) var(--corner-cut) no-repeat,
    linear-gradient(var(--gold), var(--gold)) top left / 100% 1px no-repeat,
    linear-gradient(var(--gold), var(--gold)) left top / 1px calc(100% - var(--corner-cut)) no-repeat,
    linear-gradient(var(--gold), var(--gold)) right top / 1px calc(100% - var(--corner-cut)) no-repeat,
    linear-gradient(var(--gold), var(--gold)) left var(--corner-cut) bottom / calc(100% - var(--corner-cut-double)) 1px no-repeat;
}

.site-header > * {
  position: relative;
  z-index: 3;
}

.brand {
  display: grid;
  gap: 0;
  color: var(--gold-strong);
  font-family: "Orbitron", sans-serif;
  font-size: clamp(1.2rem, 2vw, 1.7rem);
  line-height: 0.92;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand span {
  color: var(--text);
}

.brand strong {
  font-size: 0.7em;
  font-weight: 700;
  letter-spacing: 0.13em;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(14px, 2.7vw, 34px);
  color: var(--text);
  font-size: clamp(0.86rem, 0.78vw, 0.98rem);
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.nav-links a {
  position: relative;
  color: rgba(244, 241, 232, 0.82);
  transition:
    color 160ms ease,
    text-shadow 160ms ease;
}

.nav-links a::before {
  position: absolute;
  inset: -10px -16px;
  z-index: -1;
  pointer-events: none;
  content: "";
  background: radial-gradient(ellipse, rgba(26, 134, 217, 0.34), transparent 68%);
  filter: blur(8px);
  opacity: 0;
  transition: opacity 160ms ease;
}

.nav-links a:hover {
  color: #d7efff;
  text-shadow: 0 0 12px rgba(91, 185, 255, 0.62);
}

.nav-links a:hover::before {
  opacity: 1;
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 24px;
  border: 1px solid var(--gold);
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition:
    border-color 160ms ease,
    background 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
}

.header-cta:hover,
.button:hover {
  transform: translateY(-1px);
}

.header-cta:hover {
  border-color: var(--gold-strong);
  background: linear-gradient(90deg, #9b6a20, #ffd071 50%, #b47624);
  color: #080806;
  box-shadow: 0 0 22px rgba(216, 168, 77, 0.34);
}

.button-primary {
  background: linear-gradient(90deg, #9b6a20, #ffd071 50%, #b47624);
  color: #080806;
  box-shadow: 0 0 22px rgba(216, 168, 77, 0.25);
}

.button-primary:hover {
  box-shadow: 0 0 30px rgba(216, 168, 77, 0.42);
}

.button:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.button-secondary {
  border-color: var(--line-blue);
  background: rgba(10, 34, 54, 0.42);
  color: #9fd2ff;
}

.section-frame,
.section-block,
.stats-grid,
.feature-panel,
.edition-card,
.notify-panel {
  border: 1px solid var(--line);
  background:
    linear-gradient(140deg, rgba(216, 168, 77, 0.07), transparent 25%),
    linear-gradient(180deg, var(--panel), rgba(1, 3, 6, 0.95));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.025);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(360px, 1.12fr);
  align-items: center;
  gap: 24px;
  min-height: 455px;
  margin-top: 16px;
  padding: clamp(28px, 5vw, 62px);
  border: 0;
  overflow: hidden;
  clip-path: polygon(0 var(--corner-cut), var(--corner-cut) 0, 100% 0, 100% calc(100% - var(--corner-cut)), calc(100% - var(--corner-cut)) 100%, 0 100%);
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(135deg, transparent calc(50% - 1px), var(--gold) 50%, transparent calc(50% + 1px)) top left / var(--corner-cut) var(--corner-cut) no-repeat,
    linear-gradient(135deg, transparent calc(50% - 1px), var(--gold) 50%, transparent calc(50% + 1px)) bottom right / var(--corner-cut) var(--corner-cut) no-repeat,
    linear-gradient(var(--gold), var(--gold)) left var(--corner-cut) top / calc(100% - var(--corner-cut)) 1px no-repeat,
    linear-gradient(var(--gold), var(--gold)) left top var(--corner-cut) / 1px calc(100% - var(--corner-cut)) no-repeat,
    linear-gradient(var(--gold), var(--gold)) right top / 1px calc(100% - var(--corner-cut)) no-repeat,
    linear-gradient(var(--gold), var(--gold)) bottom left / calc(100% - var(--corner-cut)) 1px no-repeat;
}

.hero::after {
  position: absolute;
  z-index: 0;
  right: 7%;
  bottom: -14%;
  width: min(520px, 60vw);
  height: min(240px, 30vw);
  content: "";
  background: radial-gradient(ellipse, rgba(18, 112, 193, 0.5), transparent 68%);
  filter: blur(8px);
}

.hero-copy,
.hero-visual {
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin-bottom: 10px;
  color: var(--gold-strong);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 560px;
  margin-bottom: 20px;
  font-family: "Orbitron", sans-serif;
  font-size: clamp(2.55rem, 7vw, 5.6rem);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero h1::first-line {
  color: var(--text);
}

.hero-lead {
  max-width: 450px;
  color: rgba(244, 241, 232, 0.82);
  font-size: clamp(1.05rem, 2vw, 1.24rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.hero-visual {
  position: relative;
  display: grid;
  min-height: 320px;
  place-items: center;
}

.hero-visual::before {
  position: absolute;
  right: 5%;
  bottom: 5%;
  z-index: 0;
  width: min(680px, 92%);
  height: 66%;
  content: "";
  background:
    radial-gradient(ellipse at 54% 66%, rgba(34, 148, 255, 0.42), transparent 55%),
    radial-gradient(ellipse at 46% 48%, rgba(0, 35, 78, 0.72), transparent 68%);
  filter: blur(18px);
  opacity: 0.88;
}

.hero-product-media {
  position: relative;
  z-index: 1;
  display: block;
  width: min(720px, 100%);
}

.hero-product-media img {
  width: 100%;
  height: auto;
  filter:
    contrast(1.04)
    saturate(1.08)
    drop-shadow(0 26px 34px rgba(0, 0, 0, 0.72))
    drop-shadow(0 0 26px rgba(19, 123, 206, 0.28));
}

.age-mark {
  position: absolute;
  top: 12%;
  right: 0;
  color: #3aa7ff;
  font-family: "Orbitron", sans-serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  text-shadow: 0 0 18px rgba(58, 167, 255, 0.58);
}

.visual-note {
  position: absolute;
  right: 0;
  bottom: 10%;
  max-width: 155px;
  color: var(--gold-strong);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.25;
  text-align: right;
  text-transform: uppercase;
}

.stats-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin: 18px 0;
  border: 0;
  overflow: hidden;
  clip-path: polygon(0 var(--corner-cut), var(--corner-cut) 0, 100% 0, 100% calc(100% - var(--corner-cut)), calc(100% - var(--corner-cut)) 100%, 0 100%);
}

.stats-grid::before {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(135deg, transparent calc(50% - 1px), var(--gold) 50%, transparent calc(50% + 1px)) top left / var(--corner-cut) var(--corner-cut) no-repeat,
    linear-gradient(135deg, transparent calc(50% - 1px), var(--gold) 50%, transparent calc(50% + 1px)) bottom right / var(--corner-cut) var(--corner-cut) no-repeat,
    linear-gradient(var(--gold), var(--gold)) left var(--corner-cut) top / calc(100% - var(--corner-cut)) 1px no-repeat,
    linear-gradient(var(--gold), var(--gold)) left top var(--corner-cut) / 1px calc(100% - var(--corner-cut)) no-repeat,
    linear-gradient(var(--gold), var(--gold)) right top / 1px calc(100% - var(--corner-cut)) no-repeat,
    linear-gradient(var(--gold), var(--gold)) bottom left / calc(100% - var(--corner-cut)) 1px no-repeat;
}

.stats-grid article {
  position: relative;
  z-index: 1;
  min-height: 156px;
  padding: 24px 14px;
  border-right: 1px solid rgba(216, 168, 77, 0.22);
  text-align: center;
}

.stats-grid article:last-child {
  border-right: 0;
}

.stat-icon {
  display: inline-grid;
  width: 92px;
  height: 92px;
  margin-bottom: 14px;
  place-items: center;
  border: 1px solid rgba(216, 168, 77, 0.46);
  border-radius: 999px;
  color: var(--gold-strong);
  font-family: "Orbitron", sans-serif;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

.stats-grid h2,
.stats-grid p,
.component-card h3,
.component-card p,
.craft-grid h3,
.craft-grid p {
  margin-bottom: 0;
}

.stats-grid h2 {
  color: var(--gold-strong);
  font-size: 1.08rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.stats-grid p {
  color: var(--muted);
  font-size: 1.02rem;
}

.section-block {
  margin: 18px 0;
  padding: clamp(18px, 2.8vw, 28px);
}

.angled-block {
  position: relative;
  border: 0;
  overflow: hidden;
  clip-path: polygon(0 var(--corner-cut), var(--corner-cut) 0, 100% 0, 100% calc(100% - var(--corner-cut)), calc(100% - var(--corner-cut)) 100%, 0 100%);
}

.angled-block::before {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(135deg, transparent calc(50% - 1px), var(--gold) 50%, transparent calc(50% + 1px)) top left / var(--corner-cut) var(--corner-cut) no-repeat,
    linear-gradient(135deg, transparent calc(50% - 1px), var(--gold) 50%, transparent calc(50% + 1px)) bottom right / var(--corner-cut) var(--corner-cut) no-repeat,
    linear-gradient(var(--gold), var(--gold)) left var(--corner-cut) top / calc(100% - var(--corner-cut)) 1px no-repeat,
    linear-gradient(var(--gold), var(--gold)) left top var(--corner-cut) / 1px calc(100% - var(--corner-cut)) no-repeat,
    linear-gradient(var(--gold), var(--gold)) right top / 1px calc(100% - var(--corner-cut)) no-repeat,
    linear-gradient(var(--gold), var(--gold)) bottom left / calc(100% - var(--corner-cut)) 1px no-repeat;
}

.angled-block > * {
  position: relative;
  z-index: 1;
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
  margin-bottom: 22px;
  text-align: center;
}

.section-heading span {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.section-heading h2 {
  margin-bottom: 0;
  font-family: "Orbitron", sans-serif;
  font-size: clamp(1.05rem, 2.4vw, 1.5rem);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.box-grid,
.craft-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.component-card,
.craft-grid article,
.faq-grid article {
  min-width: 0;
  padding: 14px;
  border: 1px solid rgba(216, 168, 77, 0.28);
  background: rgba(0, 0, 0, 0.38);
}

.component-media {
  display: block;
  margin-bottom: 14px;
}

.component-media-link {
  position: relative;
  transition:
    box-shadow 160ms ease,
    transform 160ms ease;
}

.component-media-link::after {
  position: absolute;
  right: 10px;
  bottom: 10px;
  padding: 5px 8px;
  border: 1px solid rgba(216, 168, 77, 0.48);
  background: rgba(0, 0, 0, 0.72);
  color: var(--gold-strong);
  content: "Open page";
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.component-media-link:hover,
.component-media-link:focus-visible {
  box-shadow: 0 0 24px rgba(26, 134, 217, 0.28);
  transform: translateY(-1px);
}

.component-media-link:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
}

.component-card img {
  width: 100%;
  aspect-ratio: 3 / 2;
  height: auto;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.craft-grid img {
  width: 100%;
  height: 150px;
  margin-bottom: 14px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.component-card h3,
.craft-grid h3 {
  color: var(--gold-strong);
  font-size: 1rem;
  letter-spacing: 0.08em;
  line-height: 1.15;
  text-transform: uppercase;
}

.component-card p,
.craft-grid p,
.feature-panel p,
.edition-card li,
.faq-grid p,
.notify-form p {
  color: var(--muted);
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin: 18px 0;
}

.feature-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(160px, 0.9fr);
  align-items: center;
  gap: 16px;
  padding: clamp(20px, 3vw, 30px);
}

.feature-panel h2,
.notify-panel h2 {
  margin-bottom: 14px;
  font-family: "Orbitron", sans-serif;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  line-height: 1.1;
  text-transform: uppercase;
}

.feature-panel img {
  width: 100%;
  border-radius: 14px;
  filter: drop-shadow(var(--shadow));
}

.feature-panel .hero-product-media {
  width: 100%;
}

.feature-panel .hero-product-media img {
  border-radius: 0;
}

.feature-media-link {
  display: block;
  width: min(100%, 340px);
  aspect-ratio: 3 / 2;
  justify-self: center;
  overflow: hidden;
  border: 1px solid rgba(216, 168, 77, 0.34);
  border-radius: 14px;
}

.feature-media-link picture {
  display: block;
  width: 100%;
  height: 100%;
}

.feature-media-link img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 0;
  border-radius: 0;
}

.check-list {
  display: grid;
  gap: 8px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 26px;
}

.check-list li::before {
  position: absolute;
  left: 0;
  top: 0.05em;
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  border: 1px solid var(--line-blue);
  border-radius: 999px;
  color: #8cccff;
  content: "✓";
  font-size: 0.72rem;
}

.edition-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.edition-card {
  display: grid;
  grid-template-columns: minmax(150px, 0.72fr) minmax(280px, 1.28fr);
  align-items: center;
  gap: clamp(18px, 2vw, 28px);
  min-height: 320px;
  padding: clamp(20px, 2.6vw, 28px);
}

.edition-card-accent {
  border-color: rgba(216, 168, 77, 0.86);
  box-shadow: inset 0 0 40px rgba(216, 168, 77, 0.08);
}

.price {
  display: block;
  margin-bottom: 16px;
  color: var(--text);
  font-family: "Orbitron", sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
}

.edition-card img {
  width: 100%;
  aspect-ratio: 3 / 2;
  height: auto;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.edition-media {
  display: block;
  min-width: 0;
}

.edition-media img {
  display: block;
  border: 1px solid rgba(216, 168, 77, 0.18);
}

.launch-badge {
  display: inline-flex;
  margin-top: 18px;
  padding: 7px 12px;
  background: linear-gradient(90deg, #a97829, #ffd071);
  color: #050505;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.craft-grid article {
  text-align: center;
}

.notify-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 1.1fr);
  align-items: center;
  gap: 24px;
  margin: 18px 0;
  padding: clamp(22px, 4vw, 40px);
}

.notify-panel h2 {
  margin-bottom: 0;
}

.notify-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.notify-form input {
  min-height: 50px;
  width: 100%;
  border: 1px solid rgba(216, 168, 77, 0.34);
  background: rgba(0, 0, 0, 0.52);
  color: var(--text);
  font: inherit;
  padding: 0 16px;
  outline: none;
}

.notify-form input:focus {
  border-color: var(--gold-strong);
  box-shadow: 0 0 0 3px rgba(216, 168, 77, 0.14);
}

.notify-form p {
  grid-column: 1 / -1;
  margin: 0;
  font-size: 0.9rem;
}

.notify-form .notify-status {
  min-height: 1.2em;
  color: var(--gold-strong);
  font-weight: 700;
  letter-spacing: 0.04em;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.faq-grid h3 {
  margin-bottom: 8px;
  color: var(--gold-strong);
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.faq-grid p {
  margin-bottom: 0;
}

.faq-grid a {
  color: #9fd2ff;
  text-decoration: underline;
  text-decoration-color: rgba(159, 210, 255, 0.42);
  text-underline-offset: 3px;
}

.faq-grid a:hover {
  color: var(--gold-strong);
  text-decoration-color: currentColor;
}

.credits-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.credits-grid article {
  min-width: 0;
  padding: 16px;
  border: 1px solid rgba(216, 168, 77, 0.22);
  background: rgba(0, 0, 0, 0.28);
}

.credits-grid h3 {
  margin-bottom: 12px;
  color: var(--gold-strong);
  font-size: 0.92rem;
  letter-spacing: 0.1em;
  line-height: 1.25;
  text-transform: uppercase;
}

.credits-grid p {
  margin-bottom: 4px;
  color: var(--text);
  font-size: 1.02rem;
  line-height: 1.25;
}

.credits-grid p:last-child {
  margin-bottom: 0;
}

.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;
}

@media (max-width: 980px) {
  .page-shell {
    width: min(100% - 24px, 760px);
  }

  .site-header {
    flex-wrap: wrap;
  }

  .nav-links {
    order: 3;
    width: 100%;
  }

  .hero,
  .experience-grid,
  .edition-grid,
  .notify-panel {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-visual {
    min-height: 260px;
  }

  .stats-grid,
  .box-grid,
  .craft-grid,
  .credits-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-grid article:nth-child(2n) {
    border-right: 0;
  }

  .stats-grid article {
    border-bottom: 1px solid rgba(216, 168, 77, 0.18);
  }

  .stats-grid article:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    justify-self: center;
    width: min(100%, 50%);
    border-right: 0;
  }

  .feature-panel,
  .edition-card {
    grid-template-columns: 1fr;
  }

  .feature-panel > img {
    max-height: 270px;
    object-fit: cover;
  }
}

@media (max-width: 620px) {
  body {
    font-size: 16px;
  }

  .page-shell {
    width: min(100% - 20px, 460px);
    padding-top: 10px;
  }

  .site-header {
    position: static;
    justify-content: center;
    text-align: center;
  }

  .brand {
    width: 100%;
    place-items: center;
  }

  .nav-links {
    display: none;
  }

  .header-cta {
    width: 100%;
  }

  .hero {
    padding: 26px 18px;
    text-align: center;
  }

  .hero-lead {
    margin-right: auto;
    margin-left: auto;
  }

  .hero-actions,
  .notify-form {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    display: grid;
  }

  .button,
  .header-cta {
    width: 100%;
  }

  .hero-visual {
    min-height: 210px;
  }

  .age-mark,
  .visual-note {
    display: none;
  }

  .stats-grid,
  .box-grid,
  .craft-grid,
  .faq-grid,
  .credits-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid article {
    border-right: 0;
  }

  .stats-grid article:last-child:nth-child(odd) {
    width: 100%;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .section-heading span {
    width: 72px;
    margin: 0 auto;
  }

  .component-card img,
  .craft-grid img {
    height: 190px;
  }

  .component-card img {
    height: auto;
  }

  .feature-panel,
  .edition-card,
  .notify-panel {
    padding: 20px;
  }
}
