/* ==========================================================================
   River Cruise Entertainment — Design Tokens & Base
   Signature idea: the river itself is the timeline. A single wavy line
   carries ports (dots) and, on the demo screens, the day's program blocks —
   the same motif used for the sales pitch and for the actual planning UI.
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,500;9..144,600;9..144,700&family=Inter:wght@400;500;600;700&family=IBM+Plex+Mono:wght@400;500&display=swap');

:root{
  /* --- Color: deep river teal + brass, not the templated cream/terracotta --- */
  --ink:        #0B2024;
  --river-950:  #08282A;
  --river-900:  #0F3D3E;
  --river-700:  #175856;
  --river-500:  #2C7A73;
  --river-200:  #CFE4DF;
  --river-100:  #E6F0EC;
  --parchment:  #F4F0E6;
  --parchment-2:#EDE7D6;
  --brass-700:  #9C7A2E;
  --brass-500:  #C6A15B;
  --brass-300:  #E4C687;
  --brass-100:  #F4E9CC;
  --rust-600:   #B24A34;
  --rust-100:   #F5DFD8;
  --sea-600:    #2E7A56;
  --sea-100:    #DCEEE1;
  --white:      #FFFDF8;

  --font-display: 'Fraunces', 'Iowan Old Style', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'IBM Plex Mono', ui-monospace, SFMono-Regular, monospace;

  --radius-s: 6px;
  --radius-m: 12px;
  --radius-l: 24px;

  --shadow-card: 0 1px 2px rgba(11,32,36,.06), 0 8px 24px rgba(11,32,36,.08);
  --shadow-lift: 0 4px 10px rgba(11,32,36,.10), 0 16px 40px rgba(11,32,36,.14);

  --container: 1180px;
}

*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  line-height: 1.55;
}
img,svg{ display:block; max-width:100%; }
a{ color: inherit; }
h1,h2,h3,h4{
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.08;
  margin: 0 0 .5em;
  letter-spacing: -0.01em;
}
p{ margin: 0 0 1em; }
ul{ margin:0; padding:0; list-style:none; }
button{ font: inherit; }

:focus-visible{
  outline: 3px solid var(--brass-500);
  outline-offset: 2px;
  border-radius: 4px;
}

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

.wrap{ max-width: var(--container); margin: 0 auto; padding: 0 28px; }
.eyebrow{
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--brass-700);
  display:flex; align-items:center; gap:10px;
  margin-bottom: 14px;
}
.eyebrow::before{
  content:""; width:22px; height:1px; background: var(--brass-500);
}

/* ---------------------------------- Nav ---------------------------------- */
.site-header{
  position: sticky; top:0; z-index: 40;
  background: rgba(244,240,230,.86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(11,32,36,.08);
}
.nav{
  display:flex; align-items:center; justify-content:space-between;
  padding: 16px 28px;
  max-width: var(--container); margin:0 auto;
}
.brand{
  display:flex; align-items:center; gap:10px;
  font-family: var(--font-display); font-weight:600; font-size:19px;
  text-decoration:none; color:var(--river-950);
}
.brand em{ font-style:normal; color: var(--brass-700); }
.nav-links{ display:flex; gap:28px; align-items:center; }
.nav-links a{
  text-decoration:none; font-size:14.5px; font-weight:500; color: var(--river-900);
  opacity:.82;
}
.nav-links a:hover{ opacity:1; }
.nav-cta{
  background: var(--river-900); color: var(--white) !important;
  padding: 10px 18px; border-radius: 100px; font-size:14px; font-weight:600;
  opacity:1 !important;
}
.nav-cta:hover{ background: var(--river-700); }
.nav-toggle{ display:none; }

.lang-switch{ display:flex; align-items:center; gap:2px; background: var(--river-100); border-radius:100px; padding:3px; }
.lang-switch a{
  font-family: var(--font-mono); font-size:12px; font-weight:600; letter-spacing:.03em;
  padding: 6px 12px; border-radius:100px; text-decoration:none; color: var(--river-700); opacity:.7;
}
.lang-switch a.is-active{ background: var(--river-950); color: var(--white); opacity:1; }
.lang-switch a:hover:not(.is-active){ opacity:1; }
.app-account .lang-switch{ background: rgba(244,253,248,.12); }
.app-account .lang-switch a{ color: rgba(244,253,248,.75); }
.app-account .lang-switch a.is-active{ background: var(--brass-500); color: var(--river-950); }

/* ---------------------------------- Buttons ---------------------------------- */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  padding: 13px 24px; border-radius: 100px; font-weight:600; font-size:15px;
  text-decoration:none; cursor:pointer; border:1px solid transparent;
  transition: transform .15s ease, background .15s ease, box-shadow .15s ease;
}
.btn:active{ transform: translateY(1px); }
.btn-brass{ background: var(--brass-500); color: var(--river-950); }
.btn-brass:hover{ background: var(--brass-300); box-shadow: var(--shadow-lift); }
.btn-outline{ background: transparent; border-color: rgba(244,253,248,.4); color: var(--white); }
.btn-outline:hover{ border-color: var(--white); }
.btn-dark{ background: var(--river-950); color:var(--white); }
.btn-dark:hover{ background: var(--river-700); }
.btn-ghost{ background: transparent; color: var(--river-900); border-color: var(--river-200); }
.btn-ghost:hover{ background: var(--river-100); }
.btn-sm{ padding: 8px 16px; font-size: 13.5px; border-radius:100px; }
.btn-block{ width:100%; }
.btn[disabled]{ opacity:.45; cursor:not-allowed; }

/* ---------------------------------- Hero ---------------------------------- */
.hero{
  position:relative; overflow:hidden;
  background: radial-gradient(120% 140% at 20% -10%, #164C49 0%, var(--river-950) 55%, var(--ink) 100%);
  color: var(--white);
  padding: 96px 0 40px;
}
.hero .wrap{ position:relative; z-index:2; }
.hero-grid{
  display:grid; grid-template-columns: 1.1fr .9fr; gap: 56px; align-items:center;
}
.hero h1{ font-size: clamp(34px, 4.6vw, 58px); color: var(--white); }
.hero h1 .accent{ color: var(--brass-300); font-style: italic; }
.hero p.lead{ font-size: 18px; color: rgba(244,253,248,.82); max-width: 46ch; }
.hero-actions{ display:flex; gap:14px; margin-top: 28px; flex-wrap:wrap; }
.hero-stats{ display:flex; gap:34px; margin-top:44px; flex-wrap:wrap; }
.hero-stats div{ font-family: var(--font-mono); }
.hero-stats b{ display:block; font-family:var(--font-display); font-size:26px; color:var(--brass-300); }
.hero-stats span{ font-size:12.5px; color: rgba(244,253,248,.6); text-transform:uppercase; letter-spacing:.08em; }

/* Signature river-route visual */
.river-route{ position:relative; width:100%; }
.river-route svg{ width:100%; height:auto; }
.route-port{ position:absolute; transform: translate(-50%,-50%); text-align:center; }
.route-port .dot{
  width:13px; height:13px; border-radius:50%; background: var(--brass-300);
  border: 3px solid var(--river-950); margin: 0 auto 8px; box-shadow: 0 0 0 3px rgba(230,192,135,.25);
}
.route-port .label{ font-family: var(--font-mono); font-size:11.5px; color: rgba(244,253,248,.8); white-space:nowrap; }
.route-port .slot{
  font-family:var(--font-mono); font-size:10px; color: var(--river-950); background: var(--brass-300);
  padding: 2px 7px; border-radius: 100px; white-space:nowrap; margin-top:6px; display:inline-block;
}

.hero-wave{ position:absolute; left:0; right:0; bottom:-2px; z-index:1; opacity:.5; }

/* ---------------------------------- Sections ---------------------------------- */
section{ padding: 88px 0; }
.section-head{ max-width: 640px; margin-bottom: 48px; }
.section-head h2{ font-size: clamp(26px,3vw,38px); color: var(--river-950); }
.section-head p{ font-size:16.5px; color: #3E5A5A; }
.on-dark .section-head h2, .on-dark .section-head p{ color: var(--white); }

.bg-parchment{ background: var(--parchment); }
.bg-river{ background: var(--river-950); color: var(--white); }
.bg-white{ background: var(--white); }

/* Feature / stop cards mirror the "port stop" idea from the product */
.stop-grid{ display:grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.stop-card{
  background: var(--white); border:1px solid var(--river-100); border-radius: var(--radius-l);
  padding: 30px; box-shadow: var(--shadow-card);
}
.stop-card .tag{
  font-family: var(--font-mono); font-size:11px; letter-spacing:.08em; text-transform:uppercase;
  color: var(--brass-700); background: var(--brass-100); padding:4px 10px; border-radius:100px;
  display:inline-block; margin-bottom:16px;
}
.stop-card h3{ font-size:20px; color: var(--river-950); }
.stop-card p{ color:#4A6363; font-size:14.5px; margin-bottom:0; }

/* Process rail (day-in-the-life) */
.rail{ display:grid; grid-template-columns: repeat(4,1fr); gap:0; position:relative; }
.rail::before{
  content:""; position:absolute; top:19px; left:6%; right:6%; height:2px;
  background: repeating-linear-gradient(90deg, var(--brass-500) 0 8px, transparent 8px 16px);
}
.rail-step{ padding: 0 18px; position:relative; }
.rail-step .num{
  width:40px; height:40px; border-radius:50%; background:var(--river-950); color:var(--brass-300);
  font-family:var(--font-mono); display:flex; align-items:center; justify-content:center; font-size:14px;
  margin-bottom:20px; position:relative; z-index:2;
}
.rail-step h4{ font-size:16.5px; color:var(--river-950); margin-bottom:8px; }
.rail-step p{ font-size:14px; color:#4A6363; }

/* Roles */
.role-grid{ display:grid; grid-template-columns: repeat(3,1fr); gap:24px; }
.role-card{
  border-radius: var(--radius-l); padding:32px; color:var(--white);
  display:flex; flex-direction:column; gap: 14px; min-height: 300px;
}
.role-card h3{ color:var(--white); font-size:22px; }
.role-card ul{ margin-top:auto; display:flex; flex-direction:column; gap:8px; }
.role-card li{ font-size:13.5px; opacity:.88; padding-left:18px; position:relative; }
.role-card li::before{ content:"—"; position:absolute; left:0; color:var(--brass-300); }
.role-1{ background: linear-gradient(160deg, var(--river-700), var(--river-950)); }
.role-2{ background: linear-gradient(160deg, #2C6350, var(--river-950)); }
.role-3{ background: linear-gradient(160deg, #6B4E22, var(--river-950)); }

/* Testimonial / quote strip */
.quote-strip{
  background: var(--brass-100); border-radius: var(--radius-l); padding: 44px 48px;
  display:grid; grid-template-columns: auto 1fr; gap:28px; align-items:center;
}
.quote-mark{ font-family: var(--font-display); font-size:72px; color: var(--brass-500); line-height:1; }
.quote-strip p{ font-family: var(--font-display); font-size:22px; color:var(--river-950); margin-bottom:8px;}
.quote-strip span{ font-family: var(--font-mono); font-size:12.5px; color:var(--brass-700); }

/* CTA band */
.cta-band{
  background: var(--river-950); color:var(--white); border-radius: var(--radius-l);
  padding: 56px; display:flex; align-items:center; justify-content:space-between; gap: 30px; flex-wrap:wrap;
}
.cta-band h2{ color:var(--white); font-size: 30px; max-width:22ch; }

/* ---------------------------------- Footer ---------------------------------- */
.site-footer{ background: var(--ink); color: rgba(244,253,248,.72); padding: 56px 0 28px; font-size:14px; }
.footer-grid{ display:grid; grid-template-columns: 1.4fr 1fr 1fr; gap:40px; margin-bottom:40px; }
.footer-grid h5{ color: var(--white); font-family: var(--font-mono); font-size:12px; text-transform:uppercase; letter-spacing:.1em; margin-bottom:16px; }
.footer-grid a{ text-decoration:none; color: inherit; display:block; padding:5px 0; }
.footer-grid a:hover{ color: var(--brass-300); }
.footer-bottom{ border-top:1px solid rgba(244,253,248,.12); padding-top:22px; display:flex; justify-content:space-between; flex-wrap:wrap; gap:10px; font-size:12.5px; }

/* ---------------------------------- Legal pages ---------------------------------- */
.legal{ padding: 64px 0 100px; }
.legal .wrap{ max-width: 760px; }
.legal h1{ font-size:34px; color:var(--river-950); }
.legal h2{ font-size:20px; color:var(--river-950); margin-top:2em; }
.legal p, .legal li{ color:#37504F; font-size:15px; }
.legal li{ margin-bottom:6px; list-style:disc; margin-left:20px; }

/* ==========================================================================
   Demo / Klick-Dummy — application chrome
   ========================================================================== */
.app-body{ background: var(--river-100); min-height:100vh; }
.demo-banner{
  background: var(--brass-500); color: var(--river-950); font-family: var(--font-mono);
  font-size:12.5px; text-align:center; padding:9px 12px; letter-spacing:.02em;
}
.demo-banner strong{ text-decoration: underline; }
.app-header{
  background: var(--river-950); color: var(--white); padding: 14px 0;
}
.app-header .wrap{ display:flex; align-items:center; justify-content:space-between; gap: 20px; }
.app-brand{ display:flex; align-items:center; gap:12px; font-family:var(--font-display); font-weight:600; font-size:17px; text-decoration:none; color:var(--white); }
.app-org{ font-family: var(--font-mono); font-size:12px; color: rgba(244,253,248,.65); border-left:1px solid rgba(244,253,248,.2); padding-left:14px; }
.app-account{ display:flex; align-items:center; gap:14px; }
.app-role-pill{ font-family:var(--font-mono); font-size:11.5px; background: rgba(198,161,91,.18); color:var(--brass-300); padding:5px 12px; border-radius:100px; }
.app-switch{ font-size:12.5px; text-decoration:none; color: rgba(244,253,248,.7); border:1px solid rgba(244,253,248,.25); padding:7px 14px; border-radius:100px; }
.app-switch:hover{ color:var(--white); border-color: var(--white); }

.app-shell{ display:grid; grid-template-columns: 230px 1fr; min-height: calc(100vh - 96px); }
.app-side{ background: var(--white); border-right:1px solid var(--river-200); padding: 26px 18px; }
.app-side a{
  display:flex; align-items:center; gap:10px; padding:11px 14px; border-radius:10px; text-decoration:none;
  color:#3E5A5A; font-size:14px; font-weight:500; margin-bottom:4px;
}
.app-side a.active{ background: var(--river-950); color:var(--white); }
.app-side a:hover:not(.active){ background: var(--river-100); }
.app-main{ padding: 34px 36px 80px; }
.app-title-row{ display:flex; justify-content:space-between; align-items:flex-end; margin-bottom: 28px; flex-wrap:wrap; gap:14px; }
.app-title-row h1{ font-size: 26px; color:var(--river-950); }
.app-title-row p{ color:#4A6363; font-size:14px; margin:4px 0 0; }

.card{ background:var(--white); border:1px solid var(--river-200); border-radius: var(--radius-m); }
.card-pad{ padding: 22px 24px; }

/* Status badges reuse the concept's traffic-light logic */
.badge{ font-family:var(--font-mono); font-size:11.5px; padding:4px 10px; border-radius:100px; display:inline-flex; align-items:center; gap:6px; }
.badge::before{ content:""; width:6px; height:6px; border-radius:50%; }
.badge-grey{ background:#EDF1F0; color:#4A6363; } .badge-grey::before{ background:#4A6363; }
.badge-amber{ background: var(--brass-100); color:var(--brass-700); } .badge-amber::before{ background:var(--brass-700); }
.badge-green{ background: var(--sea-100); color:var(--sea-600); } .badge-green::before{ background:var(--sea-600); }
.badge-red{ background: var(--rust-100); color:var(--rust-600); } .badge-red::before{ background:var(--rust-600); }

table.data{ width:100%; border-collapse: collapse; font-size:14px; }
table.data th{
  text-align:left; font-family:var(--font-mono); font-size:11px; text-transform:uppercase; letter-spacing:.06em;
  color:#6E8686; padding: 12px 16px; border-bottom:1px solid var(--river-200);
}
table.data td{ padding: 15px 16px; border-bottom:1px solid var(--river-100); vertical-align:middle; }
table.data tr:last-child td{ border-bottom:none; }
table.data tr.is-link{ cursor:pointer; }
table.data tr.is-link:hover{ background: var(--river-100); }

.stat-row{ display:grid; grid-template-columns: repeat(4,1fr); gap:18px; margin-bottom:28px; }
.stat-card{ background:var(--white); border:1px solid var(--river-200); border-radius: var(--radius-m); padding:20px 22px; }
.stat-card .num{ font-family:var(--font-display); font-size:30px; color:var(--river-950); }
.stat-card .lbl{ font-family:var(--font-mono); font-size:11.5px; text-transform:uppercase; letter-spacing:.06em; color:#6E8686; }

/* Filters (marketplace) */
.filter-bar{ display:flex; gap:12px; flex-wrap:wrap; margin-bottom:26px; }
.filter-bar select, .filter-bar input{
  font: inherit; font-size:13.5px; padding:10px 14px; border-radius:100px; border:1px solid var(--river-200);
  background: var(--white); color:var(--ink);
}
.offer-grid{ display:grid; grid-template-columns: repeat(3,1fr); gap:20px; }
.offer-card{ background:var(--white); border:1px solid var(--river-200); border-radius: var(--radius-m); overflow:hidden; display:flex; flex-direction:column; }
.offer-media{ height:120px; background: linear-gradient(135deg, var(--river-700), var(--river-950)); position:relative; }
.offer-media .art{ position:absolute; inset:0; display:flex; align-items:center; justify-content:center; font-family:var(--font-mono); font-size:11px; letter-spacing:.08em; color: rgba(244,253,248,.55); text-transform:uppercase; }
.offer-fav{
  position:absolute; top:12px; right:12px; width:32px; height:32px; border-radius:50%;
  background: rgba(11,32,36,.5); color: var(--white); border:none; cursor:pointer; font-size:15px;
  display:flex; align-items:center; justify-content:center;
}
.offer-fav.is-fav{ background: var(--brass-500); color: var(--river-950); }
.offer-body{ padding: 18px 18px 20px; display:flex; flex-direction:column; gap:8px; flex:1; }
.offer-body h4{ font-size:16px; color:var(--river-950); margin:0; }
.offer-meta{ font-family:var(--font-mono); font-size:11.5px; color:#6E8686; display:flex; gap:10px; flex-wrap:wrap; }
.offer-rating{ font-size:13px; color:var(--brass-700); }
.offer-price{ margin-top:auto; display:flex; justify-content:space-between; align-items:center; padding-top:10px; border-top:1px solid var(--river-100); }
.offer-price b{ font-family:var(--font-display); font-size:17px; color:var(--river-950); }

/* River timeline (planning detail) — reuses the hero's signature motif */
.timeline{ position:relative; padding: 30px 0 10px; }
.timeline-line{ position:relative; height:3px; background: var(--river-200); border-radius:2px; margin: 0 40px 46px; }
.timeline-line .fill{ position:absolute; left:0; top:0; bottom:0; background: var(--brass-500); border-radius:2px; }
.timeline-stops{ display:flex; justify-content:space-between; padding: 0 20px; }
.timeline-stop{ text-align:center; width: 140px; }
.timeline-stop .dot{ width:16px; height:16px; border-radius:50%; background:var(--white); border:3px solid var(--river-700); margin: -38px auto 10px; }
.timeline-stop.is-done .dot{ background: var(--sea-600); border-color:var(--sea-600); }
.timeline-stop .port{ font-weight:600; font-size:14px; color:var(--river-950); }
.timeline-stop .time{ font-family:var(--font-mono); font-size:11px; color:#6E8686; }

.slot-card{ background:var(--white); border:1px solid var(--river-200); border-radius: var(--radius-m); padding:20px 22px; margin-bottom:16px; }
.slot-head{ display:flex; justify-content:space-between; align-items:center; margin-bottom:12px; flex-wrap:wrap; gap:8px; }
.slot-time{ font-family:var(--font-mono); font-size:12px; color:var(--brass-700); background:var(--brass-100); padding:4px 10px; border-radius:100px; }
.slot-offer{ display:flex; justify-content:space-between; align-items:center; gap:14px; flex-wrap:wrap; }
.slot-offer .name{ font-weight:600; color:var(--river-950); }
.slot-offer .sub{ font-size:13px; color:#6E8686; }
.slot-actions{ display:flex; gap:10px; align-items:center; }
.slot-actions select{ font: inherit; font-size:13px; padding:8px 12px; border-radius:8px; border:1px solid var(--river-200); }

.request-row{ display:flex; justify-content:space-between; align-items:center; padding:16px 0; border-bottom:1px solid var(--river-100); gap:16px; flex-wrap:wrap; }
.request-row:last-child{ border-bottom:none; }
.request-info b{ display:block; color:var(--river-950); }
.request-info span{ font-family:var(--font-mono); font-size:12px; color:#6E8686; }
.request-actions{ display:flex; gap:10px; }

/* Toast */
.toast{
  position: fixed; bottom: 26px; left:50%; transform: translate(-50%, 20px);
  background: var(--river-950); color:var(--white); padding: 14px 22px; border-radius: 100px;
  font-size:14px; display:flex; align-items:center; gap:10px; box-shadow: var(--shadow-lift);
  opacity:0; pointer-events:none; transition: all .28s ease; z-index:100;
}
.toast.show{ opacity:1; transform: translate(-50%, 0); }
.toast .dot{ width:8px; height:8px; border-radius:50%; background: var(--sea-600); }

/* Role picker (demo entry) */
.picker-grid{ display:grid; grid-template-columns: repeat(2,1fr); gap:22px; max-width:760px; margin: 0 auto; }
.picker-card{
  background: var(--white); border:1px solid var(--river-200); border-radius: var(--radius-l);
  padding: 30px; text-align:left; text-decoration:none; color:var(--ink);
  display:flex; flex-direction:column; gap:10px; transition: box-shadow .2s ease, transform .2s ease;
}
.picker-card:hover{ box-shadow: var(--shadow-lift); transform: translateY(-2px); }
.picker-card .icon{ width:44px; height:44px; border-radius:12px; background: var(--river-950); color:var(--brass-300); display:flex; align-items:center; justify-content:center; font-family:var(--font-display); font-size:19px; margin-bottom:6px; }
.picker-card h3{ font-size:19px; color:var(--river-950); margin-bottom:2px; }
.picker-card p{ font-size:13.5px; color:#4A6363; margin:0; }

/* ---------------------------------- Demo login gate ---------------------------------- */
.login-gate{
  position:fixed; inset:0; z-index:200; display:flex; align-items:center; justify-content:center;
  background: rgba(11,32,36,.75); backdrop-filter: blur(5px); padding:20px;
}
.login-gate.is-hidden{ display:none; }
.login-gate-card{
  background: var(--white); border-radius: var(--radius-l); padding: 40px 38px;
  max-width: 440px; width:100%; text-align:center; box-shadow: var(--shadow-lift);
}
.login-gate-card .lock{
  width:52px; height:52px; border-radius:50%; background: var(--river-950); color: var(--brass-300);
  display:flex; align-items:center; justify-content:center; margin:0 auto 18px; font-size:22px;
}
.login-gate-card h2{ font-size:21px; color:var(--river-950); margin-bottom:10px; }
.login-gate-card p{ font-size:14.5px; color:#4A6363; }
.login-gate-role{
  font-family: var(--font-mono); font-size:12.5px; color:var(--river-900); background:var(--river-100);
  border-radius:100px; padding:7px 16px; display:inline-block; margin: 6px 0 4px;
}
.login-gate-note{
  background: var(--brass-100); border-radius: var(--radius-s); padding: 13px 15px; font-size:12.5px;
  color: var(--brass-700); margin: 20px 0; text-align:left; line-height:1.5;
}
.login-gate-card .btn{ margin-top:6px; }

/* ---------------------------------- Parallax dividers ---------------------------------- */
.parallax-divider{
  position:relative; height: 420px; background-position:center; background-size:cover;
  background-attachment: fixed; background-repeat:no-repeat; overflow:hidden;
  display:flex; align-items:flex-end;
}
.parallax-divider::before{
  content:""; position:absolute; inset:0;
  background: linear-gradient(180deg, rgba(8,40,42,.35) 0%, rgba(11,32,36,.15) 35%, rgba(11,32,36,.15) 65%, rgba(8,40,42,.55) 100%);
}
.parallax-1{ background-image: url('../img/parallax-1.jpg'); }
.parallax-2{ background-image: url('../img/parallax-2.jpg'); }
.parallax-caption{
  position:relative; z-index:2; padding: 0 28px 26px; max-width: var(--container); margin:0 auto; width:100%;
}
.parallax-caption span{
  font-family: var(--font-mono); font-size:12.5px; letter-spacing:.14em; text-transform:uppercase;
  color: var(--brass-300); background: rgba(11,32,36,.35); padding:7px 16px; border-radius:100px;
  backdrop-filter: blur(3px);
}
@media (max-width: 780px){
  .parallax-divider{ height: 220px; background-attachment: scroll; }
}
@media (prefers-reduced-motion: reduce){
  .parallax-divider{ background-attachment: scroll; }
}

/* ---------------------------------- Responsive ---------------------------------- */
@media (max-width: 980px){
  .hero-grid{ grid-template-columns:1fr; }
  .stop-grid, .role-grid, .offer-grid{ grid-template-columns: repeat(2,1fr); }
  .rail{ grid-template-columns: repeat(2,1fr); gap: 30px 0; }
  .rail::before{ display:none; }
  .footer-grid{ grid-template-columns: 1fr 1fr; }
  .app-shell{ grid-template-columns: 1fr; }
  .app-side{ display:flex; overflow-x:auto; border-right:none; border-bottom:1px solid var(--river-200); padding:12px; gap:6px; }
  .app-side a{ white-space:nowrap; margin-bottom:0; }
  .stat-row{ grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 640px){
  .nav-links{ display:none; }
  .stop-grid, .role-grid, .offer-grid, .picker-grid{ grid-template-columns: 1fr; }
  .footer-grid{ grid-template-columns: 1fr; }
  .quote-strip{ grid-template-columns:1fr; }
  .cta-band{ flex-direction:column; align-items:flex-start; }
  .timeline-stops{ flex-wrap:wrap; gap: 20px; justify-content:flex-start; }
  .timeline-stop{ width: 44%; }
}
