/* Journey page styles (Sarah story beats + screenshots) */

.container {
  width: min(var(--max), 92vw);
  margin: 0 auto;
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(15, 23, 42, 0.82);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.nav__brand {
  font: 700 1.25rem var(--mono);
  letter-spacing: 0.03em;
  text-decoration: none;
}

.nav__brand span {
  background: linear-gradient(90deg, var(--sky), var(--sea));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.nav__links {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.nav__links a {
  text-decoration: none;
  color: var(--muted);
  font-size: 0.95rem;
  transition: color 0.15s ease;
}

.nav__links a:hover {
  color: var(--text);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1rem;
  border-radius: 12px;
  font-weight: 700;
  border: 1px solid rgba(56, 189, 248, 0.35);
  text-decoration: none;
}

.btn--primary {
  background: linear-gradient(135deg, var(--sky), #0d9488);
  color: #0f172a;
  border: none;
}

.page {
  position: relative;
  z-index: 1;
  padding-top: 5.25rem;
}

.hero {
  padding: 3.25rem 0 2rem;
}

.hero__eyebrow {
  display: inline-flex;
  font: 600 0.8rem var(--mono);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sky);
  margin-bottom: 1rem;
}

.hero__title {
  font-family: var(--display);
  font-size: clamp(2.25rem, 4vw, 3.2rem);
  line-height: 1.1;
  margin-bottom: 1rem;
}

.hero__subtitle {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 70ch;
  margin-bottom: 0.75rem;
}

.hero__note {
  color: var(--muted);
  opacity: 0.95;
  font-size: 0.95rem;
  max-width: 70ch;
}

.story {
  padding: 2rem 0 2.5rem;
}

.journey-beats {
  display: flex;
  flex-direction: column;
  gap: 3.25rem;
}

.beat {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.25rem;
  align-items: center;
}

.beat--reversed {
  direction: rtl;
}

.beat--reversed > * {
  direction: ltr;
}

.beat__timestamp {
  display: inline-block;
  font: 600 0.75rem var(--mono);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sky);
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(56, 189, 248, 0.25);
  background: rgba(56, 189, 248, 0.08);
  margin-bottom: 0.85rem;
}

.beat__title {
  font-family: var(--display);
  font-size: clamp(1.55rem, 2.2vw, 2rem);
  line-height: 1.2;
  margin-bottom: 0.85rem;
}

.beat__text {
  color: var(--muted);
  font-size: 1.02rem;
  margin-bottom: 0.85rem;
  max-width: 62ch;
}

.beat__outcome {
  color: var(--muted);
  border-left: 2px solid rgba(45, 212, 191, 0.45);
  padding-left: 1rem;
  max-width: 62ch;
}

.beat__link a {
  color: var(--sky);
}

.beat__caption {
  margin-top: 0.75rem;
  color: var(--muted);
  text-align: center;
  font-size: 0.95rem;
}

.browser-frame {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: rgba(15, 23, 42, 0.35);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.45);
}

.browser-toolbar {
  background: rgba(15, 23, 42, 0.85);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.65rem 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.traffic-lights {
  display: flex;
  gap: 6px;
}

.light {
  width: 11px;
  height: 11px;
  border-radius: 50%;
}

.light--red {
  background: #ff5f56;
}

.light--yellow {
  background: #ffbd2e;
}

.light--green {
  background: #27ca40;
}

.browser-url {
  color: rgba(148, 163, 184, 0.9);
  font: 500 0.85rem var(--mono);
}

.screenshot-image {
  width: 100%;
  height: auto;
  display: block;
}

.after-story {
  margin-top: 3rem;
  padding: 1.5rem;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--glass);
}

.after-story__title {
  font-family: var(--display);
  font-size: 1.8rem;
  margin-bottom: 0.75rem;
}

.after-story__list {
  margin-left: 1.25rem;
  color: var(--muted);
}

.after-story__list li {
  margin: 0.4rem 0;
}

.after-story__links {
  margin-top: 0.85rem;
}

.after-story__links a {
  color: var(--sky);
}

.cta {
  padding: 2.5rem 0 3.5rem;
}

.cta__panel {
  border: 1px solid rgba(56, 189, 248, 0.22);
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.12), rgba(45, 212, 191, 0.08));
  padding: 2rem;
  text-align: center;
}

.cta__title {
  font-family: var(--display);
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.cta__subtitle {
  color: var(--muted);
  margin-bottom: 1.25rem;
}

.cta__note {
  margin-top: 1rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.footer {
  border-top: 1px solid var(--border);
  padding: 1.25rem 0 2rem;
  position: relative;
  z-index: 1;
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer__links {
  display: flex;
  gap: 1rem;
}

.footer__links a {
  color: var(--muted);
  text-decoration: none;
}

.footer__links a:hover {
  color: var(--text);
}

.footer__disclaimer {
  width: min(var(--max), 92vw);
  margin: 0.75rem auto 0;
  color: var(--muted);
  font-size: 0.9rem;
}

@media (max-width: 900px) {
  .beat {
    grid-template-columns: 1fr;
  }
  .nav__links a:not(.btn) {
    display: none;
  }
}
