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

:root {
  --bg: #04070a;
  --text: #f4fbff;
  --muted: #9aaab4;
  --accent: #36d7ff;
  --accent-strong: #9beeff;
  --timing: #ff9d3d;
  --body-background:
    radial-gradient(circle at 78% 8%, rgba(54, 215, 255, 0.15), transparent 28rem),
    radial-gradient(circle at 12% 54%, rgba(18, 83, 112, 0.18), transparent 25rem),
    var(--bg);
  --header-background: rgba(4, 7, 10, 0.8);
  --brand-mark-border: 2px solid var(--accent);
  --brand-mark-radius: 4px;
  --brand-mark-background: transparent;
  --brand-mark-shadow: 0 0 24px rgba(54, 215, 255, 0.72);
  --brand-mark-transform: rotate(45deg);
  --button-primary-border: rgba(54, 215, 255, 0.7);
  --button-primary-text: #021017;
  --support-margin: 20px 60px;
  --support-padding: 32px;
  --support-border: 1px solid rgba(54, 215, 255, 0.25);
  --support-background: radial-gradient(circle at 100% 0%, rgba(54, 215, 255, 0.16), transparent 20rem), var(--surface);
  --policy-content-color: #dfe9ed;
  --policy-copy-color: #b3c0c7;
}

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

.hero-shot img {
  width: auto;
  max-height: 560px;
  height: auto;
  border: 1px solid rgba(54, 215, 255, 0.24);
  border-radius: var(--radius-large);
  background: #071015;
  box-shadow: 0 36px 120px rgba(0, 0, 0, 0.5), 0 0 90px rgba(54, 215, 255, 0.1);
}

.timing-kicker { color: var(--timing); }

.story-list {
  display: grid;
  gap: clamp(44px, 6vw, 72px);
}

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

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

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

.story-poster img {
  width: auto;
  max-height: 620px;
  height: auto;
  border: 1px solid rgba(54, 215, 255, 0.18);
  border-radius: var(--radius-medium);
  background: #020506;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.42);
}

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

.story-step-timing .story-number { color: var(--timing); }

@media (max-width: 820px) {
  .hero-shot { order: -1; }
  .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: 560px; }
  .story-copy { max-width: 620px; }
}

@media (max-width: 560px) {
  .hero-shot img,
  .story-poster img { width: 100%; max-height: none; }
  .story-list { gap: 44px; }
  .story-step { gap: 24px; }
  .story-number { margin-bottom: 18px; }
}
