@import url("../shared/app-base.css");

:root {
  --bg: #090506;
  --text: #fff8f8;
  --muted: #b9a8aa;
  --accent: #ff303d;
  --accent-strong: #ff9ca4;
  --body-background:
    radial-gradient(circle at 76% 8%, rgba(210, 38, 53, 0.2), transparent 29rem),
    radial-gradient(circle at 10% 48%, rgba(118, 23, 32, 0.22), transparent 28rem),
    var(--bg);
  --header-background: rgba(9, 5, 6, 0.82);
  --brand-mark-border: 2px solid var(--accent);
  --brand-mark-background: transparent;
  --brand-mark-shadow: 0 0 22px rgba(255, 48, 61, 0.62);
  --button-primary-border: rgba(255, 48, 61, 0.74);
  --button-primary-text: #160204;
  --support-border: 1px solid rgba(255, 48, 61, 0.25);
  --support-background:
    radial-gradient(circle at 100% 0%, rgba(255, 48, 61, 0.14), transparent 22rem),
    var(--surface);
  --policy-content-color: #f3e9ea;
  --policy-copy-color: #c8b8ba;
}

.availability {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 4px 0 0;
  color: var(--accent-strong);
  font-size: 0.78rem;
  font-weight: 720;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.availability span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 18px rgba(255, 48, 61, 0.7);
}

.explanation-section .section-heading {
  max-width: 850px;
  margin-bottom: clamp(28px, 4vw, 40px);
}

.explanation-section .section-heading p:not(.eyebrow) {
  max-width: 72ch;
}

.explanation-section .section-heading p:last-child {
  margin-bottom: 0;
}

.explanation-steps {
  display: grid;
  gap: 16px;
  max-width: 920px;
  margin: 0;
  padding: clamp(24px, 3vw, 32px) 0 0;
  border-top: 1px solid var(--line);
  list-style-position: outside;
}

.explanation-steps li {
  padding-left: 8px;
  color: var(--accent-strong);
}

.explanation-steps li::marker {
  font-family: ui-monospace, "SFMono-Regular", Menlo, monospace;
  font-size: 0.82rem;
  font-weight: 700;
}

.explanation-steps strong,
.explanation-steps span {
  display: block;
}

.explanation-steps strong {
  margin-bottom: 3px;
  color: var(--text);
  font-size: clamp(1.08rem, 1.6vw, 1.3rem);
}

.explanation-steps span {
  max-width: 66ch;
  color: var(--muted);
}

.hero-shot,
.story-poster {
  display: flex;
  justify-content: center;
  margin: 0;
}

.hero-shot img {
  width: auto;
  height: auto;
  max-height: 650px;
  border: 1px solid rgba(255, 48, 61, 0.2);
  border-radius: var(--radius-large);
  background: #110809;
  box-shadow: 0 36px 120px rgba(0, 0, 0, 0.52), 0 0 90px rgba(186, 30, 43, 0.13);
}

.story-list {
  display: grid;
  gap: clamp(48px, 7vw, 86px);
}

.story-step {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(280px, 0.72fr);
  align-items: center;
  gap: clamp(32px, 5vw, 68px);
}

.story-step-reverse .story-poster { order: 2; }
.story-step-reverse .story-copy { order: 1; }

.story-poster img {
  width: auto;
  height: auto;
  max-height: 700px;
  border: 1px solid rgba(255, 48, 61, 0.16);
  border-radius: var(--radius-medium);
  background: #110809;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.44);
}

.story-copy { max-width: 470px; }

.story-number {
  display: block;
  margin-bottom: 18px;
  color: var(--accent-strong);
  font-family: ui-monospace, "SFMono-Regular", Menlo, monospace;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.story-copy h3 {
  margin-bottom: 14px;
  font-size: clamp(1.7rem, 2.5vw, 2.5rem);
}

.story-copy p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.2vw, 1.1rem);
}

.disclaimer-section > div {
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: var(--radius-large);
  background: rgba(255, 255, 255, 0.04);
}

.disclaimer-section h2 { max-width: 780px; }
.disclaimer-section p:last-child { max-width: 78ch; margin-bottom: 0; color: var(--muted); }

@media (max-width: 820px) {
  .hero-shot { order: -1; }
  .hero-shot img { max-height: 560px; }
  .story-step { grid-template-columns: 1fr; gap: 24px; }
  .story-step-reverse .story-poster,
  .story-step-reverse .story-copy { order: initial; }
  .story-poster { order: -1; }
  .story-poster img { max-height: 580px; }
  .story-copy { max-width: 620px; }
}

@media (max-width: 560px) {
  .hero-shot img,
  .story-poster img { width: 100%; max-height: none; }
  .explanation-section .section-heading { margin-bottom: 24px; }
  .explanation-steps { padding-top: 22px; }
  .story-list { gap: 48px; }
  .disclaimer-section > div { padding: 22px; }
}