/* ─── DR.Machines · Home Page Styles ─── */

/* ─── TOKENS ─── */
:root {
  --font-display: 'Space Grotesk', sans-serif;
  --font-body:    'Inter', sans-serif;
  --font-mono:    'JetBrains Mono', monospace;

  --navy:       #0B1628;
  --navy-mid:   #112030;
  --navy-deep:  #060E1C;
  --cyan:       #00D4FF;
  --amber:      #FFB340;
  --green:      #4ADE80;
  --steel:      #8CA0B8;
  --steel-dim:  #4A6080;
  --white:      #F0F4F8;

  --border:       rgba(140,160,184,0.14);
  --border-hover: rgba(140,160,184,0.32);
  --cyan-dim:     rgba(0,212,255,0.10);
  --amber-dim:    rgba(255,179,64,0.12);
}

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--navy);
  color: var(--white);
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: var(--font-body); cursor: pointer; }

/* ─── SKIP LINK ─── */
.skip-link {
  position: absolute; left: -9999px; top: auto;
  background: var(--cyan); color: var(--navy);
  padding: 8px 16px; font-weight: 700; z-index: 9999;
}
.skip-link:focus { left: 16px; top: 16px; }

/* ─── NAV ─── */
nav {
  position: sticky; top: 0; z-index: 200;
  background: rgba(11,22,40,0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  padding: 0 clamp(20px, 3.5vw, 48px); height: 64px;
}
.nav-logo {
  flex-shrink: 0; display: flex; align-items: center; margin-right: 20px;
  font-family: var(--font-display); font-weight: 700; font-size: 20px;
  color: var(--white); letter-spacing: -0.5px;
}
.nav-logo a { display: flex; align-items: center; text-decoration: none; color: inherit; }
.nav-logo span { color: var(--cyan); }

.nav-links {
  display: flex; align-items: center; justify-content: center; gap: 2px;
}
.nav-links a {
  display: inline-flex; align-items: center;
  font-size: 13px; font-weight: 500;
  color: var(--steel); padding: 6px 10px;
  border-radius: 6px; transition: color 0.15s, background 0.15s;
  white-space: nowrap; text-decoration: none;
}
.nav-links a:hover { color: var(--white); background: rgba(255,255,255,0.05); }
.nav-links a.active { color: var(--cyan); background: rgba(0,212,255,0.08); }


.nav-hamburger {
  display: none; align-items: center; justify-content: center;
  background: none; border: none; color: var(--steel);
  font-size: 18px; padding: 8px;
  transition: color 0.15s;
}
.nav-hamburger:hover { color: var(--white); }

.nav-cta-wrap {
  display: flex; align-items: center; gap: 8px; margin-left: 20px;
}
.nav-cta-outline {
  font-family: var(--font-display); font-weight: 600; font-size: 13px;
  color: var(--white); border: 1px solid rgba(240,244,248,0.18);
  border-radius: 6px; padding: 7px 16px;
  transition: border-color 0.2s, color 0.2s; text-decoration: none;
}
.nav-cta-outline:hover { border-color: var(--cyan); color: var(--cyan); }
.nav-cta {
  font-family: var(--font-display); font-weight: 700; font-size: 13px;
  background: var(--cyan); color: var(--navy);
  border: none; border-radius: 6px; padding: 8px 18px;
  transition: background 0.2s; text-decoration: none;
}
.nav-cta:hover { background: #33DDFF; }

/* ─── NAV PROFILE (logged-in state) ─── */
.nav-profile { position: relative; display: none; align-items: center; }
.nav-profile.visible { display: flex; }
.nav-profile-btn {
  display: flex; align-items: center; gap: 9px;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(140,160,184,0.15);
  border-radius: 8px; padding: 5px 12px 5px 6px;
  cursor: pointer; color: var(--white); transition: background 0.2s, border-color 0.2s;
}
.nav-profile-btn:hover { background: rgba(255,255,255,0.1); border-color: rgba(0,212,255,0.3); }
.nav-avatar {
  width: 30px; height: 30px; border-radius: 50%;
  background: linear-gradient(135deg, #0052a8 0%, #00aadc 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700; color: #fff; flex-shrink: 0;
  letter-spacing: 0.5px;
}
.nav-profile-name {
  font-family: var(--font-ui); font-size: 13px; font-weight: 500;
  color: var(--white); max-width: 100px;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.nav-profile-chevron {
  width: 13px; height: 13px; color: rgba(255,255,255,0.45);
  transition: transform 0.2s; flex-shrink: 0;
}
.nav-profile-btn[aria-expanded="true"] .nav-profile-chevron { transform: rotate(180deg); }
.nav-profile-menu {
  position: absolute; right: 0; top: calc(100% + 8px);
  background: #0e1c2e; border: 1px solid rgba(140,160,184,0.16);
  border-radius: 9px; padding: 6px; min-width: 170px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.45);
  display: none; z-index: 200;
}
.nav-profile-menu.open { display: block; }
.nav-profile-menu a {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 11px; color: rgba(240,244,248,0.75);
  font-size: 13px; text-decoration: none; border-radius: 6px;
  transition: background 0.15s, color 0.15s;
}
.nav-profile-menu a:hover { background: rgba(255,255,255,0.07); color: var(--white); }
.nav-profile-menu .menu-divider {
  height: 1px; background: rgba(140,160,184,0.12); margin: 5px 0;
}
.nav-profile-menu .menu-signout { color: rgba(248,113,113,0.8); }
.nav-profile-menu .menu-signout:hover { background: rgba(248,113,113,0.08); color: #f87171; }

@media (max-width: 1100px) {
  .nav-links a { font-size: 12px; padding: 6px 8px; }
}
@media (max-width: 900px) {
  nav { grid-template-columns: auto auto; }
  .nav-hamburger { display: flex; justify-self: end; }
  .nav-links {
    display: none; position: absolute; top: 64px; left: 0; right: 0;
    background: rgba(11,22,40,0.98); backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border); flex-direction: column;
    align-items: stretch; padding: 12px 20px 20px; gap: 2px; z-index: 99;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 10px 12px; }
  .nav-cta-wrap { display: none; }
}

/* ─── UTILS ─── */
.container { max-width: 1280px; margin: 0 auto; padding: 0 clamp(20px, 4vw, 56px); }

.eyebrow {
  font-size: 11px; font-weight: 700; letter-spacing: 2.5px;
  color: var(--cyan); text-transform: uppercase; margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-display);
  font-size: 28px; font-weight: 700; color: var(--white);
  letter-spacing: -0.4px; margin-bottom: 8px;
}
.section-sub { color: var(--steel); font-size: 15px; line-height: 1.6; }
.link-cyan { color: var(--cyan); text-decoration: none; font-size: 14px; font-weight: 500; }
.link-cyan:hover { text-decoration: underline; }

.btn-primary {
  display: inline-block; background: var(--cyan); color: var(--navy);
  border: none; border-radius: 6px;
  padding: 13px 28px; font-weight: 700; font-size: 15px;
  font-family: var(--font-display); cursor: pointer; text-decoration: none;
  transition: background 0.2s, transform 0.1s;
}
.btn-primary:hover { background: #33DDFF; }
.btn-primary:active { transform: scale(0.98); }

.btn-outline {
  display: inline-block; background: transparent; color: var(--white);
  border: 1px solid rgba(240,244,248,0.2); border-radius: 6px;
  padding: 13px 28px; font-weight: 500; font-size: 15px;
  font-family: var(--font-display); cursor: pointer; text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}
.btn-outline:hover { border-color: var(--cyan); color: var(--cyan); }

.divider { border: none; border-top: 1px solid var(--border); }

/* ─── HERO ─── */
.hero {
  padding: 88px clamp(20px, 4vw, 56px) 80px; max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
.hero h1 {
  font-family: var(--font-display); font-size: 52px; font-weight: 700;
  line-height: 1.08; letter-spacing: -1.5px; color: var(--white); margin-bottom: 22px;
}
.hero h1 em { font-style: normal; color: var(--cyan); }
.hero p { color: var(--steel); font-size: 16px; line-height: 1.7; margin-bottom: 36px; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

@media (max-width: 800px) {
  .hero { grid-template-columns: 1fr; padding: 56px clamp(16px, 4vw, 32px) 48px; gap: 36px; }
  .hero h1 { font-size: 36px; }
}

/* ─── TERMINAL ─── */
.terminal {
  background: var(--navy-deep);
  border: 1px solid rgba(0,212,255,0.18);
  border-radius: 12px; overflow: hidden;
  box-shadow: 0 0 60px rgba(0,212,255,0.05);
}
.term-bar {
  background: #0D1E36; padding: 12px 16px;
  display: flex; align-items: center; gap: 8px;
  border-bottom: 1px solid rgba(0,212,255,0.1);
}
.dot { width: 11px; height: 11px; border-radius: 50%; }
.term-label { font-size: 12px; color: var(--steel-dim); font-family: var(--font-mono); margin-left: 6px; }
.term-body { padding: 22px 24px; font-family: var(--font-mono); font-size: 13px; line-height: 2.1; }
.t-m { color: #3A5272; }
.t-c { color: var(--cyan); }
.t-a { color: var(--amber); }
.t-g { color: var(--green); }
.t-w { color: var(--white); }
.cursor {
  display: inline-block; width: 8px; height: 15px;
  background: var(--cyan); vertical-align: middle;
  animation: blink 1.1s step-end infinite;
}
@keyframes blink { 50% { opacity: 0; } }

/* ─── STATS BAR ─── */
.stats-bar {
  background: var(--navy-deep);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stats-inner {
  max-width: 1280px; margin: 0 auto; padding: 28px clamp(20px, 4vw, 56px);
  display: grid; grid-template-columns: repeat(4,1fr);
}
.stat {
  text-align: center; padding: 0 20px;
  border-right: 1px solid rgba(140,160,184,0.12);
}
.stat:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-display); font-size: 32px; font-weight: 700;
  color: var(--cyan); letter-spacing: -1px; display: block;
}
.stat-label {
  font-size: 12px; color: var(--steel); text-transform: uppercase;
  letter-spacing: 1.2px; margin-top: 2px; display: block;
}
@media (max-width: 600px) {
  .stats-inner { grid-template-columns: repeat(2,1fr); padding: 20px 16px; }
  .stat { border-right: none; border-bottom: 1px solid var(--border); padding: 16px 0; }
  .stat:nth-child(odd) { border-right: 1px solid rgba(140,160,184,0.12); }
  .stat:nth-last-child(-n+2) { border-bottom: none; }
}

/* ─── PHOTO BAND ─── */
.photo-band { padding: 0; overflow: hidden; }
.photo-grid {
  display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 2px; height: 240px;
}
.photo-grid figure { margin: 0; position: relative; overflow: hidden; height: 100%; }
.photo-grid svg { width: 100%; height: 100%; display: block; transition: transform 0.4s; }
.photo-grid figure:hover svg { transform: scale(1.03); }
.photo-grid figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 14px 18px;
  background: linear-gradient(to top, rgba(6,14,28,0.95), transparent);
  font-family: var(--font-mono); font-size: 11px; color: var(--cyan); letter-spacing: 0.5px;
}
@media (max-width: 600px) {
  .photo-grid { grid-template-columns: 1fr; height: auto; }
  .photo-grid figure { height: 160px; }
  .photo-grid figure:nth-child(n+2) { display: none; }
}

/* ─── PRODUCTS SECTION ─── */
.products-section { padding: 72px 0; }
.section-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  flex-wrap: wrap; gap: 16px; margin-bottom: 36px;
}
.product-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 12px;
}
.product-card {
  background: var(--navy-mid); border: 1px solid var(--border); border-radius: 10px;
  padding: 20px; cursor: pointer; position: relative; overflow: hidden;
  transition: border-color 0.2s, background 0.2s;
}
.product-card::after {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: var(--cyan); opacity: 0; transition: opacity 0.2s;
}
.product-card:hover { border-color: var(--border-hover); background: #112234; }
.product-card:hover::after { opacity: 1; }
.card-tag {
  display: inline-block; font-size: 10px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--cyan); background: var(--cyan-dim);
  border-radius: 4px; padding: 3px 8px; margin-bottom: 12px;
}
.card-tag.amber { color: var(--amber); background: var(--amber-dim); }
.card-tag.gray { color: var(--steel); background: rgba(140,160,184,0.1); }
.card-title {
  font-family: var(--font-display); font-size: 14px; font-weight: 700;
  color: var(--white); margin-bottom: 6px; line-height: 1.35;
}
.card-mono { font-family: var(--font-mono); font-size: 11.5px; color: var(--steel-dim); line-height: 1.6; }
.card-soon {
  position: absolute; top: 14px; right: 14px;
  font-size: 10px; font-weight: 700;
  color: var(--amber); background: var(--amber-dim);
  border: 1px solid rgba(255,179,64,0.25); border-radius: 4px; padding: 2px 7px;
}
.card-ghost { border-style: dashed; opacity: 0.45; cursor: default; }
.card-ghost:hover { border-color: var(--border); background: var(--navy-mid); }
.card-ghost:hover::after { opacity: 0; }

@media (max-width: 480px) {
  .product-grid { grid-template-columns: repeat(2,1fr); gap: 8px; }
}

/* ─── FEATURES SECTION ─── */
.features-section {
  background: var(--navy-deep);
  border-top: 1px solid rgba(0,212,255,0.07);
  border-bottom: 1px solid rgba(0,212,255,0.07);
  padding: 72px 0;
}
.features-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 40px; margin-top: 52px; }
.feature-icon {
  width: 46px; height: 46px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; margin-bottom: 18px;
  background: var(--cyan-dim); color: var(--cyan);
}
.feature-icon.amber { background: var(--amber-dim); color: var(--amber); }
.feature-icon.green { background: rgba(74,222,128,0.1); color: var(--green); }
.feature h3 {
  font-family: var(--font-display); font-size: 16px; font-weight: 700;
  color: var(--white); margin-bottom: 10px;
}
.feature p { color: var(--steel); font-size: 14px; line-height: 1.65; }
@media (max-width: 860px) { .features-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 560px) { .features-grid { grid-template-columns: 1fr; gap: 28px; } }

/* ─── CTA SECTION ─── */
.cta-section { padding: 72px 0; }
.cta-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 48px; }
.cta-card {
  background: var(--navy-mid); border: 1px solid var(--border); border-radius: 14px;
  padding: 36px; transition: border-color 0.2s;
}
.cta-card:hover { border-color: var(--border-hover); }
.cta-card h3 {
  font-family: var(--font-display); font-size: 20px; font-weight: 700;
  color: var(--white); margin-bottom: 14px;
}
.cta-card p { color: var(--steel); font-size: 14px; line-height: 1.65; margin-bottom: 28px; }
@media (max-width: 700px) { .cta-grid { grid-template-columns: 1fr; } }

/* ─── FOOTER ─── */
.footer-full {
  background: var(--navy-deep); border-top: 1px solid var(--border); padding: 56px 0 0;
}
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px;
}
.footer-logo {
  font-family: 'Barlow Semi Condensed', 'Arial Narrow', Impact, sans-serif;
  font-weight: 800; font-size: 22px; color: var(--white); letter-spacing: -0.5px;
}
.footer-logo span { color: var(--cyan); }
.footer-brand p { font-size: 13px; color: var(--steel); line-height: 1.7; margin: 12px 0 20px; }
.footer-social { display: flex; gap: 10px; }
.social-icon {
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: var(--steel); font-size: 14px; text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.social-icon:hover { background: var(--cyan-dim); border-color: rgba(0,212,255,0.3); color: var(--cyan); }
.footer-col h4 {
  font-family: var(--font-display); font-size: 12px; font-weight: 700; letter-spacing: 1.8px;
  text-transform: uppercase; color: var(--steel); margin-bottom: 16px;
}
.footer-col a {
  display: block; font-size: 13px; color: var(--steel-dim); text-decoration: none;
  margin-bottom: 8px; transition: color 0.2s;
}
.footer-col a:hover { color: var(--cyan); }
.footer-bottom {
  border-top: 1px solid rgba(140,160,184,0.1); padding: 20px 0;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px;
}
.footer-bottom-copy { font-size: 12px; color: var(--steel-dim); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 12px; color: var(--steel-dim); text-decoration: none; }
.footer-bottom-links a:hover { color: var(--cyan); }
@media (max-width: 800px) { .footer-top { grid-template-columns: 1fr 1fr; gap: 28px; } }
@media (max-width: 480px) {
  .footer-top { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* ─── COOKIE CONSENT ─── */
#cookie-banner {
  position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%);
  background: #0D1E36; border: 1px solid rgba(0,212,255,0.2);
  border-radius: 14px; padding: 18px 24px; z-index: 9000;
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
  max-width: min(600px, calc(100vw - 40px));
  box-shadow: 0 16px 48px rgba(0,0,0,0.5);
}
#cookie-banner p { font-size: 13px; color: var(--steel); line-height: 1.5; flex: 1; min-width: 200px; }
.cookie-btns { display: flex; gap: 8px; flex-shrink: 0; }
.cookie-accept {
  background: var(--cyan); color: var(--navy); border: none; border-radius: 6px;
  padding: 9px 18px; font-weight: 700; font-size: 13px; font-family: var(--font-display); cursor: pointer;
}
.cookie-accept:hover { background: #33DDFF; }
.cookie-decline {
  background: none; color: var(--steel-dim); border: 1px solid var(--border);
  border-radius: 6px; padding: 9px 18px; font-size: 13px; font-family: var(--font-body); cursor: pointer;
}
.cookie-decline:hover { color: var(--white); border-color: var(--steel); }

/* ─── PRICING SECTION ─── */
.pricing-section {
  padding: 80px 0;
  background: var(--navy-deep);
  border-top: 1px solid rgba(0,212,255,0.07);
  border-bottom: 1px solid rgba(0,212,255,0.07);
}
.pricing-header {
  text-align: center; max-width: 560px; margin: 0 auto 52px;
}
.pricing-header .section-title { margin-bottom: 10px; }
.pricing-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: start;
}
.pricing-card {
  background: var(--navy-mid); border: 1px solid var(--border); border-radius: 16px;
  padding: 32px; position: relative; transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}
.pricing-card:hover {
  border-color: var(--border-hover); transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}
.pricing-card.featured {
  border-color: rgba(0,212,255,0.35); background: linear-gradient(160deg,#0f1e34 0%,#102030 100%);
  box-shadow: 0 0 48px rgba(0,212,255,0.09); transform: translateY(-4px);
}
.pricing-card.featured:hover {
  transform: translateY(-7px); border-color: rgba(0,212,255,0.55);
  box-shadow: 0 16px 60px rgba(0,212,255,0.14);
}
.pricing-badge-top {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--cyan); color: var(--navy);
  font-size: 10px; font-weight: 800; letter-spacing: 1.8px; text-transform: uppercase;
  padding: 4px 14px; border-radius: 20px; white-space: nowrap;
}
.pricing-label {
  font-family: var(--font-display); font-size: 18px; font-weight: 700;
  color: var(--white); margin-bottom: 14px;
}
.pricing-price {
  display: flex; align-items: baseline; gap: 6px; margin-bottom: 8px;
}
.pricing-price span {
  font-family: var(--font-display); font-size: 44px; font-weight: 700;
  color: var(--white); letter-spacing: -2px; line-height: 1;
}
.pricing-price small { font-size: 14px; color: var(--steel); font-weight: 400; }
.pricing-tagline { font-size: 13px; color: var(--steel); margin-bottom: 24px; line-height: 1.5; }
.pricing-list { list-style: none; margin-bottom: 28px; }
.pricing-list li {
  display: flex; align-items: center; gap: 10px;
  font-size: 13.5px; padding: 7px 0;
  border-bottom: 1px solid rgba(140,160,184,0.07); color: var(--white);
}
.pricing-list li:last-child { border-bottom: none; }
.pricing-list li i { width: 15px; text-align: center; font-size: 11px; flex-shrink: 0; }
.pricing-list li.yes i { color: var(--cyan); }
.pricing-list li.no { color: var(--steel-dim); }
.pricing-list li.no i { color: var(--steel-dim); }
.pricing-cta {
  display: block; text-align: center; padding: 13px 24px;
  border-radius: 8px; font-family: var(--font-display); font-weight: 700;
  font-size: 14px; text-decoration: none; transition: all 0.2s;
}
.pricing-cta.primary {
  background: var(--cyan); color: var(--navy); border: none;
}
.pricing-cta.primary:hover { background: #33DDFF; transform: scale(1.02); }
.pricing-cta.outline {
  background: transparent; color: var(--white); border: 1px solid rgba(240,244,248,0.2);
}
.pricing-cta.outline:hover { border-color: var(--cyan); color: var(--cyan); }
@media (max-width: 900px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .pricing-card.featured { transform: none; }
  .pricing-card.featured:hover { transform: translateY(-3px); }
}

/* ─── STORY SECTION ─── */
.story-section { padding: 80px 0; }
.story-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start;
}
.story-lead {
  color: var(--white); font-size: 16px; line-height: 1.75; margin-bottom: 16px;
}
.story-body {
  color: var(--steel); font-size: 15px; line-height: 1.7; margin-bottom: 28px;
}
.story-milestones {
  display: flex; flex-direction: column; gap: 0;
  position: relative; padding-left: 28px; padding-top: 6px;
}
.story-milestones::before {
  content: ''; position: absolute; left: 0; top: 8px; bottom: 8px; width: 2px;
  background: linear-gradient(to bottom, var(--cyan), rgba(0,212,255,0.05));
}
.milestone {
  position: relative; padding: 0 0 32px 24px;
}
.milestone::before {
  content: ''; position: absolute; left: -5px; top: 5px;
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--navy); border: 2px solid var(--cyan);
  box-shadow: 0 0 10px rgba(0,212,255,0.35);
}
.milestone:last-child { padding-bottom: 0; }
.milestone-year {
  font-family: var(--font-display); font-size: 12px; font-weight: 700;
  color: var(--cyan); letter-spacing: 1.5px; margin-bottom: 4px; text-transform: uppercase;
}
.milestone-text { font-size: 14px; color: var(--steel); line-height: 1.55; }
@media (max-width: 800px) {
  .story-inner { grid-template-columns: 1fr; gap: 44px; }
}
