:root {
  --bg-top: #05040a;
  --bg-mid: #100d20;
  --bg-bottom: #080712;
  --panel: rgba(31, 25, 48, 0.78);
  --panel-strong: rgba(16, 13, 31, 0.9);
  --border: rgba(169, 150, 255, 0.2);
  --text: #ffffff;
  --muted: #d2c9e4;
  --faint: #9489aa;
  --violet: #8d5bff;
  --lavender: #c9b8ff;
  --cyan: #8ef3ff;
  --cyan-strong: #00c2ff;
  --pink: #e9a8ff;
  --gold: #ffd06e;
  --danger: #ff5c5c;
  --radius: 28px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background:
    linear-gradient(124deg, rgba(141, 91, 255, 0.16), transparent 32%),
    linear-gradient(236deg, rgba(0, 194, 255, 0.11), transparent 34%),
    linear-gradient(180deg, rgba(5, 4, 10, 0.2), rgba(8, 7, 18, 0.95)),
    linear-gradient(180deg, var(--bg-top), var(--bg-mid) 42%, var(--bg-bottom));
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    "Apple SD Gothic Neo", "Noto Sans KR", sans-serif;
  overflow-x: hidden;
  word-break: keep-all;
  overflow-wrap: break-word;
}

h1,
h2,
h3 {
  text-wrap: balance;
}

p,
li,
span,
strong,
em,
a {
  word-break: keep-all;
  overflow-wrap: break-word;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(201, 184, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 184, 255, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, transparent, #000 12%, #000 72%, transparent);
}

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

.ambient {
  position: fixed;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.star {
  position: absolute;
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background: var(--lavender);
  opacity: 0.45;
  box-shadow: 0 0 18px rgba(201, 184, 255, 0.7);
  animation: drift 11s ease-in-out infinite alternate;
}

.s1 { left: 7%; top: 16%; }
.s2 { left: 82%; top: 10%; animation-delay: -3s; }
.s3 { left: 92%; top: 48%; animation-delay: -6s; }
.s4 { left: 18%; top: 74%; animation-delay: -2s; }
.s5 { left: 62%; top: 88%; animation-delay: -5s; }
.s6 { left: 42%; top: 28%; animation-delay: -8s; }

@keyframes drift {
  to { transform: translate3d(18px, -22px, 0); opacity: 0.75; }
}

.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px clamp(20px, 5vw, 64px);
  background: linear-gradient(180deg, rgba(5, 4, 10, 0.78), rgba(5, 4, 10, 0));
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand img {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  box-shadow: 0 0 28px rgba(201, 184, 255, 0.24);
}

.topbar nav {
  display: flex;
  gap: 8px;
}

.topbar nav a {
  padding: 9px 13px;
  border: 1px solid transparent;
  border-radius: 999px;
  color: var(--muted);
  font-size: 13px;
}

.topbar nav a:hover,
.topbar nav a.active {
  border-color: var(--border);
  background: rgba(31, 25, 48, 0.58);
  color: var(--text);
}

.journey-section {
  min-height: auto;
  padding-top: 92px;
}

.journey-heading {
  max-width: 880px;
}

.journey-heading p:last-child {
  margin-top: 18px;
  color: var(--muted);
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.75;
}

.journey-map {
  display: grid;
  grid-template-columns: repeat(9, minmax(128px, 1fr));
  gap: 12px;
  margin: 44px 0 0;
  padding: 0;
  list-style: none;
  overflow-x: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(201, 184, 255, 0.38) transparent;
}

.journey-map li {
  min-height: 148px;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(31, 25, 48, 0.78), rgba(5, 4, 10, 0.36));
}

.journey-map span,
.journey-map strong,
.journey-map em {
  display: block;
}

.journey-map span {
  color: var(--cyan);
  font-size: 12px;
  font-weight: 900;
}

.journey-map strong {
  margin-top: 28px;
  font-size: 19px;
}

.journey-map em {
  margin-top: 8px;
  color: var(--faint);
  font-size: 13px;
  font-style: normal;
  line-height: 1.45;
}

.section {
  position: relative;
  z-index: 1;
  min-height: 100svh;
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 116px clamp(20px, 4vw, 34px) 80px;
}

.hero {
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  align-items: center;
  gap: 48px;
}

.eyebrow,
.step {
  display: inline-flex;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  margin-top: 12px;
  font-size: clamp(64px, 10vw, 132px);
  line-height: 0.94;
  letter-spacing: 0;
}

h2 {
  margin-top: 14px;
  font-size: clamp(34px, 5vw, 66px);
  line-height: 1.08;
  letter-spacing: 0;
}

.hero-subtitle,
.section-copy p,
.final-copy p {
  margin-top: 22px;
  max-width: 660px;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.75;
}

.hero-kicker {
  margin-top: 18px;
  color: var(--lavender);
  font-size: clamp(20px, 3vw, 34px);
  font-weight: 900;
  line-height: 1.25;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 34px;
  max-width: 620px;
}

.hero-proof div,
.story-grid article,
.tool-grid article,
.resource-grid article,
.audience-list article,
.max-card {
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(31, 25, 48, 0.72), rgba(5, 4, 10, 0.32));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.07),
    0 20px 64px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px);
}

.hero-proof div {
  padding: 16px;
  border-radius: 20px;
}

.hero-proof strong,
.hero-proof span {
  display: block;
}

.hero-proof strong {
  font-size: 22px;
}

.hero-proof span {
  margin-top: 4px;
  color: var(--faint);
  font-size: 12px;
  line-height: 1.45;
}

.detail-list {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.detail-list li {
  position: relative;
  padding-left: 22px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.detail-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 16px rgba(142, 243, 255, 0.45);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.primary-link,
.ghost-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
  white-space: nowrap;
}

.primary-link {
  background: linear-gradient(135deg, rgba(141, 91, 255, 0.95), rgba(0, 194, 255, 0.72));
  box-shadow: 0 18px 46px rgba(141, 91, 255, 0.22);
}

.ghost-link {
  border: 1px solid var(--border);
  color: var(--muted);
  background: rgba(16, 13, 31, 0.48);
}

.hero-stage {
  display: grid;
  place-items: center;
  min-height: 620px;
  perspective: 1200px;
}

.device,
.phone-screen,
.assist-card,
.metadata-board,
.analytics-panel,
.report-preview,
.community-feed article,
.metric-strip {
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(31, 25, 48, 0.86), rgba(16, 13, 31, 0.82));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 24px 80px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(18px);
}

.device {
  width: min(380px, 86vw);
  min-height: 690px;
  border-radius: 44px;
  padding: 18px;
  transform: rotateX(5deg) rotateY(-9deg);
  animation: deviceFloat 6s ease-in-out infinite;
}

.service-device {
  min-height: 640px;
}

.mini-panels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 16px;
}

.mini-panels div {
  padding: 15px;
  border: 1px solid rgba(201, 184, 255, 0.16);
  border-radius: 20px;
  background: rgba(5, 4, 10, 0.32);
}

.mini-panels span,
.mini-panels strong {
  display: block;
}

.mini-panels span {
  color: var(--faint);
  font-size: 12px;
  font-weight: 800;
}

.mini-panels strong {
  margin-top: 6px;
}

@keyframes deviceFloat {
  50% { transform: rotateX(3deg) rotateY(-5deg) translateY(-10px); }
}

.device-status {
  display: flex;
  justify-content: space-between;
  padding: 6px 10px 18px;
  color: var(--faint);
  font-size: 12px;
  font-weight: 700;
}

.app-logo-card {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 18px;
  border-radius: 26px;
  background: rgba(5, 4, 10, 0.4);
  border: 1px solid var(--border);
}

.app-logo-card img {
  width: 58px;
  height: 58px;
  border-radius: 18px;
}

.app-logo-card strong,
.app-logo-card span {
  display: block;
}

.app-logo-card span {
  margin-top: 4px;
  color: var(--faint);
  font-size: 13px;
  line-height: 1.5;
}

.dream-note {
  margin-top: 18px;
  padding: 22px;
  border-radius: 28px;
  background: rgba(5, 4, 10, 0.38);
  border: 1px solid rgba(201, 184, 255, 0.16);
}

.note-label,
.badge {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(141, 91, 255, 0.16);
  color: var(--lavender);
  font-size: 12px;
  font-weight: 800;
}

.dream-note p,
.assist-card p,
.report-preview p,
.community-feed p {
  color: var(--muted);
  line-height: 1.75;
}

.pulse-list {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.pulse-list span {
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(201, 184, 255, 0.08), rgba(142, 243, 255, 0.35), rgba(201, 184, 255, 0.08));
  background-size: 200% 100%;
  animation: lineFlow 3.8s linear infinite;
}

.pulse-list span:nth-child(2) { width: 72%; animation-delay: -1.2s; }
.pulse-list span:nth-child(3) { width: 54%; animation-delay: -2.1s; }

@keyframes lineFlow {
  to { background-position: -200% 0; }
}

.feature {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  align-items: center;
  gap: clamp(32px, 7vw, 96px);
}

.service-story,
.tool-section,
.resource-section,
.max-section,
.audience-section {
  min-height: auto;
}

.story-copy,
.tool-heading,
.resource-copy,
.audience-copy {
  max-width: 880px;
}

.story-copy p,
.tool-heading p,
.resource-copy p,
.max-card p {
  margin-top: 20px;
  color: var(--muted);
  font-size: clamp(16px, 2vw, 21px);
  line-height: 1.78;
}

.story-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 42px;
}

.story-grid article {
  min-height: 230px;
  padding: 26px;
  border-radius: 28px;
}

.story-grid span,
.tool-grid span {
  color: var(--cyan);
  font-size: 12px;
  font-weight: 900;
}

.story-grid h3,
.tool-grid h3 {
  margin-top: 38px;
  font-size: 28px;
}

.story-grid p,
.tool-grid p,
.resource-grid span {
  margin-top: 12px;
  color: var(--muted);
  line-height: 1.68;
}

.feature-showcase {
  display: grid;
  gap: 16px;
}

.section-copy {
  position: sticky;
  top: 126px;
  align-self: start;
}

.screen-grid,
.assist-stack,
.metadata-board,
.analytics-panel,
.report-preview,
.community-feed {
  width: 100%;
}

.flow-note {
  margin-top: 16px;
  padding: 22px;
  border: 1px solid rgba(142, 243, 255, 0.18);
  border-radius: 24px;
  background: rgba(0, 194, 255, 0.06);
}

.flow-note span,
.source-row span {
  color: var(--cyan);
  font-size: 12px;
  font-weight: 900;
}

.flow-note p {
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.65;
}

.phone-screen {
  border-radius: 34px;
  padding: 24px;
}

.screen-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 22px;
  font-weight: 800;
}

.screen-top .mock-save {
  border: 0;
  border-radius: 999px;
  padding: 8px 12px;
  color: var(--text);
  background: rgba(141, 91, 255, 0.7);
  font-weight: 800;
}

label,
.metadata-row span,
.analytics-list span,
.community-feed span {
  display: block;
  color: var(--faint);
  font-size: 12px;
  font-weight: 800;
}

.input-line,
.textarea {
  margin: 8px 0 18px;
  padding: 15px 16px;
  border-radius: 18px;
  background: rgba(5, 4, 10, 0.4);
  color: var(--muted);
  line-height: 1.65;
}

.textarea {
  min-height: 148px;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chips span,
.chips em {
  display: inline-flex;
  padding: 8px 11px;
  border-radius: 999px;
  border: 1px solid rgba(201, 184, 255, 0.24);
  color: var(--lavender);
  background: rgba(141, 91, 255, 0.12);
  font-style: normal;
  font-size: 13px;
  font-weight: 700;
}

.metric-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 16px;
  overflow: hidden;
  border-radius: 24px;
}

.metric-strip div {
  padding: 18px;
  background: rgba(5, 4, 10, 0.22);
}

.metric-strip strong,
.metric-strip span {
  display: block;
}

.metric-strip strong {
  color: var(--faint);
  font-size: 12px;
}

.metric-strip span {
  margin-top: 8px;
  color: var(--text);
  font-weight: 800;
}

.assist-stack {
  display: grid;
  gap: 16px;
}

.assist-card {
  border-radius: 28px;
  padding: 24px;
}

.question-row {
  margin-top: 18px;
  padding: 16px;
  border: 1px solid rgba(255, 208, 110, 0.22);
  border-radius: 18px;
  background: rgba(255, 208, 110, 0.06);
}

.question-row span,
.question-row strong {
  display: block;
}

.question-row span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
}

.question-row strong {
  margin-top: 6px;
  color: var(--text);
  line-height: 1.55;
}

.assist-card .muted {
  color: var(--faint);
}

.badge.cyan {
  color: var(--cyan);
  background: rgba(0, 194, 255, 0.12);
}

.badge.gold {
  color: var(--gold);
  background: rgba(255, 208, 110, 0.12);
}

.scanbar {
  height: 5px;
  margin: 18px 0;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--lavender), var(--cyan), transparent);
  background-size: 220% 100%;
  animation: lineFlow 3.2s linear infinite;
}

mark {
  border-radius: 8px;
  padding: 2px 5px;
  color: var(--text);
  background: rgba(142, 243, 255, 0.18);
  box-shadow: 0 0 24px rgba(142, 243, 255, 0.16);
}

.metadata-board {
  border-radius: 32px;
  padding: 10px;
}

.metadata-row {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 18px;
  align-items: center;
  padding: 22px;
  border-bottom: 1px solid rgba(201, 184, 255, 0.12);
}

.metadata-row:last-child {
  border-bottom: 0;
}

.metadata-row strong {
  font-size: clamp(20px, 3vw, 30px);
}

.analytics-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: center;
  border-radius: 34px;
  padding: clamp(24px, 4vw, 42px);
}

.tool-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(170px, 1fr));
  gap: 14px;
  margin-top: 42px;
  overflow-x: auto;
  padding-bottom: 10px;
  scrollbar-width: thin;
  scrollbar-color: rgba(201, 184, 255, 0.38) transparent;
}

.tool-grid article {
  min-height: 250px;
  padding: 24px;
  border-radius: 28px;
}

.tool-grid h3 {
  margin-top: 34px;
  font-size: 21px;
  line-height: 1.3;
}

.resource-section {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: center;
  gap: clamp(32px, 7vw, 80px);
}

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

.resource-grid article {
  min-height: 180px;
  padding: 24px;
  border-radius: 28px;
}

.resource-grid strong,
.resource-grid span {
  display: block;
}

.resource-grid strong {
  font-size: 24px;
}

.max-section {
  display: grid;
  place-items: center;
}

.max-card {
  max-width: 920px;
  padding: clamp(28px, 5vw, 56px);
  border-radius: 36px;
}

.max-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.max-pills span {
  padding: 10px 13px;
  border: 1px solid rgba(255, 208, 110, 0.26);
  border-radius: 999px;
  color: var(--gold);
  background: rgba(255, 208, 110, 0.09);
  font-size: 13px;
  font-weight: 800;
}

.audience-section {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  align-items: center;
  gap: clamp(30px, 7vw, 88px);
}

.audience-list {
  display: grid;
  gap: 12px;
}

.audience-list article {
  padding: 22px 24px;
  border-radius: 24px;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.55;
}

.radar {
  position: relative;
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    repeating-radial-gradient(circle, rgba(201, 184, 255, 0.2) 0 1px, transparent 1px 28px),
    conic-gradient(from 20deg, rgba(141, 91, 255, 0.42), rgba(0, 194, 255, 0.22), rgba(255, 208, 110, 0.28), rgba(141, 91, 255, 0.42));
  opacity: 0.92;
}

.radar span {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 20px var(--cyan);
}

.radar span:nth-child(1) { transform: translate(46px, -86px); }
.radar span:nth-child(2) { transform: translate(88px, 28px); background: var(--gold); }
.radar span:nth-child(3) { transform: translate(-72px, 72px); background: var(--lavender); }
.radar span:nth-child(4) { transform: translate(-98px, -34px); background: var(--pink); }

.radar b {
  position: absolute;
  inset: 18%;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 38% 62% 44% 56%;
  background: rgba(5, 4, 10, 0.18);
}

.analytics-list {
  display: grid;
  gap: 12px;
}

.analytics-list div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(201, 184, 255, 0.12);
}

.analytics-list strong {
  text-align: right;
}

.report-preview {
  border-radius: 34px;
  padding: clamp(24px, 4vw, 42px);
}

.report-header {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 20px;
}

.report-header span {
  font-size: 22px;
  font-weight: 900;
}

.report-header small {
  color: var(--faint);
}

.opening {
  color: var(--text) !important;
  font-size: 20px;
}

.report-section {
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid rgba(201, 184, 255, 0.14);
}

.report-section strong {
  display: block;
  margin-bottom: 8px;
  color: var(--lavender);
}

.report-section.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.source-row {
  display: flex;
  gap: 16px;
  align-items: baseline;
  margin-top: 22px;
  padding: 16px;
  border-radius: 18px;
  background: rgba(5, 4, 10, 0.28);
  border: 1px solid rgba(201, 184, 255, 0.14);
}

.source-row p {
  color: var(--faint);
  font-size: 14px;
}

.community-feed {
  display: grid;
  gap: 16px;
}

.community-feed article {
  border-radius: 28px;
  padding: 24px;
}

.community-feed h3 {
  margin: 10px 0 12px;
  font-size: 24px;
}

.confirm-card {
  border-color: rgba(255, 208, 110, 0.28) !important;
  background: linear-gradient(180deg, rgba(65, 45, 14, 0.38), rgba(16, 13, 31, 0.82)) !important;
}

.final-section {
  display: grid;
  place-items: center;
  text-align: center;
}

.final-copy {
  max-width: 760px;
}

.final-copy img {
  width: 86px;
  height: 86px;
  border-radius: 24px;
  box-shadow: 0 0 42px rgba(201, 184, 255, 0.24);
}

.final-copy h2 {
  margin-top: 26px;
}

.final-copy .primary-link {
  margin-top: 34px;
}

.scroll-progress {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 40;
  height: 3px;
  background: rgba(201, 184, 255, 0.08);
}

.scroll-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--violet), var(--cyan));
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 860px) {
  .topbar {
    padding: 14px 18px;
  }

  .topbar nav {
    display: none;
  }

  .section {
    min-height: auto;
    padding: 92px 20px 56px;
  }

  .hero,
  .feature,
  .resource-section,
  .audience-section {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .hero {
    min-height: 100svh;
    align-content: center;
  }

  .section-copy {
    position: static;
  }

  .hero-stage {
    min-height: 520px;
  }

  .device {
    width: min(342px, 92vw);
    min-height: 570px;
    transform: none;
  }

  .hero-device {
    animation: none;
  }

  .metric-strip,
  .analytics-panel,
  .report-section.split,
  .story-grid,
  .resource-grid,
  .hero-proof {
    grid-template-columns: 1fr;
  }

  .tool-grid {
    grid-template-columns: 1fr;
    overflow: visible;
  }

  .story-grid article,
  .tool-grid article,
  .resource-grid article {
    min-height: auto;
  }

  .journey-map {
    grid-template-columns: repeat(9, 150px);
    margin-left: -4px;
    padding-bottom: 12px;
  }

  .metadata-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .primary-link,
  .ghost-link {
    width: 100%;
  }

  .source-row {
    display: block;
  }

  .source-row p {
    margin-top: 6px;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
