/* ═══════════════════════════════════════════
   GeoPix Documentation Site — styles.css
   Dark photography aesthetic · Gold accent
═══════════════════════════════════════════ */

/* ── Reset & Tokens ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ── Skip-to-content (accessibility + SEO) ── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 9999;
  padding: .5rem 1.2rem;
  background: var(--gold);
  color: #1a1206;
  font-weight: 700;
  font-size: .875rem;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  text-decoration: none;
  transition: top .2s ease;
}
.skip-link:focus { top: 0; }

:root {
  --gold:       #c8a96e;
  --gold-light: #e8c88a;
  --gold-pale:  #f0d8a0;
  --bg:         #0d0d0f;
  --bg2:        #111115;
  --bg3:        #18181e;
  --bg4:        #1e1e26;
  --surface:    #22222c;
  --border:     rgba(200,169,110,.15);
  --border2:    rgba(200,169,110,.25);
  --text:       #e8e4dc;
  --text2:      #a09888;
  --text3:      #6a6258;
  --radius:     14px;
  --radius-sm:  8px;
  --shadow:     0 8px 40px rgba(0,0,0,.6);
  --transition: .3s cubic-bezier(.4,0,.2,1);
  --max-w:      1200px;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg2); }
::-webkit-scrollbar-thumb { background: var(--border2); border-radius: 3px; }

/* ── Selection ── */
::selection { background: rgba(200,169,110,.25); color: var(--gold-pale); }

/* ── Typography ── */
h1,h2,h3,h4 {
  font-weight: 600;
  letter-spacing: -.02em;
  line-height: 1.25;
  color: var(--text);
}
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-size: 1.15rem; color: var(--gold-light); margin: 1.5rem 0 .5rem; }
h4 { font-size: 1rem; color: var(--text); margin-bottom: .25rem; }
p  { color: var(--text2); margin-bottom: .75rem; }
a  { color: var(--gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-pale); }
ul,ol { padding-left: 1.4rem; color: var(--text2); }
li { margin-bottom: .35rem; }
code {
  font-family: "SF Mono", "Fira Code", "Fira Mono", monospace;
  font-size: .85em;
  background: rgba(200,169,110,.1);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: .1em .4em;
  color: var(--gold-light);
}
strong { color: var(--text); font-weight: 600; }

/* ── Container ── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2.5rem);
}

/* ── Section base ── */
.section { padding: clamp(4rem, 8vw, 7rem) 0; }

.section-header {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.section-header h2 { margin-bottom: .75rem; }
.section-desc { max-width: 560px; margin: 0 auto; color: var(--text2); }

.label-tag {
  display: inline-block;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(200,169,110,.08);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: .25rem .85rem;
  margin-bottom: 1rem;
}

/* ════════════════════════════
   NAV
════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(13,13,15,.85);
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}
.nav.scrolled { background: rgba(13,13,15,.97); }

.nav-inner {
  display: flex;
  align-items: center;
  height: 62px;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(1rem,4vw,2.5rem);
  gap: 2rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gold-light);
  text-decoration: none;
  letter-spacing: -.01em;
  flex-shrink: 0;
}
.nav-logo:hover { color: var(--gold-pale); }
.nav-logo-img {
  width: 28px;
  height: 28px;
  border-radius: 7px;
  object-fit: cover;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
  padding: 0;
  margin: 0 auto 0 1.5rem;
}
.nav-links a {
  font-size: .9rem;
  color: var(--text2);
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--gold-light); }

.lang-toggle {
  font-size: .82rem;
  font-weight: 600;
  color: var(--gold);
  background: rgba(200,169,110,.08);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: .3rem .9rem;
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition);
  letter-spacing: .04em;
  white-space: nowrap;
}
.lang-toggle:hover {
  background: rgba(200,169,110,.16);
  border-color: var(--border2);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  flex-direction: column;
  padding: .5rem clamp(1rem,4vw,2.5rem) 1rem;
  gap: .25rem;
  border-top: 1px solid var(--border);
}
.mobile-menu a {
  font-size: .95rem;
  color: var(--text2);
  padding: .55rem 0;
  border-bottom: 1px solid var(--border);
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu.open { display: flex; }

@media(max-width:768px){
  .nav-links, .lang-toggle { display: none; }
  .hamburger { display: flex; }
}

/* ════════════════════════════
   HERO
════════════════════════════ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 5rem 1.5rem 4rem;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(100,70,20,.35) 0%, transparent 70%),
              radial-gradient(ellipse 60% 40% at 80% 80%, rgba(60,40,10,.2) 0%, transparent 60%),
              var(--bg);
}

#starfield {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

/* Aperture */
.aperture-wrap {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.aperture {
  width: min(520px, 80vw);
  height: min(520px, 80vw);
  opacity: .22;
  animation: aperture-spin 32s linear infinite;
}
.ap-blades { animation: blades-pulse 4s ease-in-out infinite; transform-origin: 100px 100px; }
@keyframes aperture-spin { to { transform: rotate(360deg); } }
@keyframes blades-pulse {
  0%,100% { opacity: .85; }
  50%      { opacity: .4; }
}
.pin-pulse {
  animation: ping 2.4s ease-in-out infinite;
  transform-origin: 100px 100px;
}
@keyframes ping {
  0%   { transform: scale(1);   opacity: 1; }
  60%  { transform: scale(2.8); opacity: 0; }
  100% { transform: scale(1);   opacity: 0; }
}

.hero-text { position: relative; z-index: 2; max-width: 700px; }

.hero-eyebrow {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.hero-title {
  font-size: clamp(3.5rem, 10vw, 7rem);
  font-weight: 800;
  letter-spacing: -.04em;
  line-height: 1;
  margin-bottom: 1.5rem;
}
.brand {
  background: linear-gradient(135deg, #c8a96e 0%, #f0d8a0 45%, #c8a96e 80%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s linear infinite;
}
@keyframes shimmer { to { background-position: 200% center; } }

.hero-sub {
  font-size: clamp(.95rem, 2vw, 1.15rem);
  color: var(--text2);
  max-width: 520px;
  margin: 0 auto 2.5rem;
}

.hero-cta { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .8rem 2rem;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: #1a1206;
  font-weight: 700;
  font-size: .95rem;
  border-radius: 100px;
  transition: transform var(--transition), box-shadow var(--transition), filter var(--transition);
  box-shadow: 0 4px 24px rgba(200,169,110,.3);
  letter-spacing: .02em;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(200,169,110,.45);
  filter: brightness(1.08);
  color: #1a1206;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  padding: .8rem 2rem;
  border: 1px solid var(--border2);
  color: var(--text2);
  font-size: .95rem;
  border-radius: 100px;
  transition: border-color var(--transition), color var(--transition), background var(--transition);
  letter-spacing: .02em;
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(200,169,110,.06);
}

/* App Store download button */
.btn-appstore {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .8rem 2rem;
  background: #000;
  color: #fff;
  font-weight: 700;
  font-size: .95rem;
  border-radius: 100px;
  border: 1.5px solid rgba(255,255,255,.15);
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  box-shadow: 0 4px 20px rgba(0,0,0,.45);
  letter-spacing: .02em;
  white-space: nowrap;
}
.btn-appstore:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,0,0,.55);
  background: #111;
  color: #fff;
}
.btn-appstore svg { flex-shrink: 0; }

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  opacity: .45;
  animation: bob 2.5s ease-in-out infinite;
}
.scroll-dot { animation: scroll-bounce 2.5s ease-in-out infinite; }
@keyframes scroll-bounce {
  0%,100% { transform: translateY(0); opacity: 1; }
  50%      { transform: translateY(14px); opacity: .3; }
}
@keyframes bob {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(4px); }
}

/* ════════════════════════════
   FEATURES
════════════════════════════ */
.features { background: var(--bg2); }

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 260px), 1fr));
  gap: 1.25rem;
}

.feat-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  cursor: default;
}
.feat-card:hover {
  border-color: var(--border2);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,.5), 0 0 0 1px rgba(200,169,110,.1);
}

.feat-icon {
  width: 48px; height: 48px;
  margin-bottom: 1.1rem;
}
.feat-icon svg { width: 100%; height: 100%; }

.feat-card h3 {
  font-size: 1rem;
  color: var(--text);
  margin: 0 0 .5rem;
}
.feat-card p { font-size: .9rem; color: var(--text2); margin: 0; }

/* ════════════════════════════
   HOW IT WORKS
════════════════════════════ */
.how { background: var(--bg); }

.workflow-tabs {
  display: flex;
  justify-content: center;
  gap: .5rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.tab {
  padding: .55rem 1.4rem;
  font-size: .875rem;
  font-weight: 600;
  border-radius: 100px;
  border: 1px solid var(--border);
  color: var(--text2);
  background: var(--bg3);
  cursor: pointer;
  transition: all var(--transition);
  letter-spacing: .02em;
}
.tab:hover { border-color: var(--border2); color: var(--gold); }
.tab.active {
  background: linear-gradient(135deg, rgba(200,169,110,.18), rgba(200,169,110,.08));
  border-color: var(--gold);
  color: var(--gold-light);
}

.workflow-panel { display: none; max-width: 680px; margin: 0 auto; }
.workflow-panel.active { display: block; animation: fadeUp .35s ease; }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

.steps { display: flex; flex-direction: column; gap: 1.5rem; }
.step  { display: flex; gap: 1.25rem; align-items: flex-start; }
.step-num {
  flex-shrink: 0;
  width: 42px; height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid var(--border2);
  font-weight: 700;
  font-size: .8rem;
  color: var(--gold);
  letter-spacing: .04em;
  background: rgba(200,169,110,.06);
}
.step h4 { margin-bottom: .25rem; font-size: 1rem; color: var(--text); }
.step p  { font-size: .9rem; color: var(--text2); margin: 0; }

/* ════════════════════════════
   MANUAL
════════════════════════════ */
.manual { background: var(--bg2); }

.manual-inner {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: start;
}
@media(max-width:900px){
  .manual-inner { grid-template-columns: 1fr; }
  .manual-nav   { position: static !important; }
}

.manual-nav {
  position: sticky;
  top: 80px;
}
.manual-nav .label-tag { margin-bottom: 1.25rem; }
.manual-nav ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: .15rem; }
.manual-nav a {
  display: block;
  font-size: .875rem;
  color: var(--text3);
  padding: .45rem .85rem;
  border-left: 2px solid transparent;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  transition: all var(--transition);
}
.manual-nav a:hover { color: var(--gold-light); border-left-color: var(--border2); background: rgba(200,169,110,.04); }
.manual-nav a.active { color: var(--gold); border-left-color: var(--gold); background: rgba(200,169,110,.06); }

.manual-content { min-width: 0; }
.manual-section {
  padding-top: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border);
}
.manual-section:last-child { border-bottom: none; }
.manual-section h2 {
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  margin-bottom: 1rem;
}
.manual-section p,
.manual-section li { font-size: .94rem; }

.callout {
  display: flex;
  gap: .75rem;
  align-items: flex-start;
  background: rgba(200,169,110,.07);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: .85rem 1rem;
  margin-top: 1.25rem;
}
.callout svg { flex-shrink: 0; margin-top: 2px; }
.callout p   { margin: 0; font-size: .875rem; color: var(--text2); }

.settings-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .9rem;
  margin-top: 1rem;
}
.settings-table th {
  text-align: left;
  padding: .65rem 1rem;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid var(--border);
}
.settings-table td {
  padding: .75rem 1rem;
  vertical-align: top;
  border-bottom: 1px solid var(--border);
  color: var(--text2);
}
.settings-table td:first-child { color: var(--text); font-weight: 500; white-space: nowrap; }
.settings-table tr:last-child td { border-bottom: none; }
.settings-table tr:hover td { background: rgba(200,169,110,.03); }

/* ════════════════════════════
   FAQ
════════════════════════════ */
.faq { background: var(--bg); }

.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

.faq-item {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item[open] { border-color: var(--border2); }

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  cursor: pointer;
  list-style: none;
  font-weight: 600;
  font-size: .95rem;
  color: var(--text);
  transition: color var(--transition);
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--gold-light); }
.faq-item summary .chevron {
  width: 18px; height: 18px;
  flex-shrink: 0;
  color: var(--gold);
  transition: transform var(--transition);
}
.faq-item[open] summary .chevron { transform: rotate(180deg); }

.faq-item p {
  padding: 0 1.25rem 1.1rem;
  font-size: .9rem;
  color: var(--text2);
  margin: 0;
  border-top: 1px solid var(--border);
  padding-top: 1rem;
}

/* ════════════════════════════
   FOOTER
════════════════════════════ */
.footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 3rem 0 2.5rem;
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 3rem;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-logo-img {
  width: 52px;
  height: 52px;
  border-radius: 13px;
  object-fit: cover;
  display: block;
  margin-bottom: .5rem;
}
.footer-brand .brand {
  font-size: 1.3rem;
  font-weight: 700;
  display: block;
  margin-bottom: .35rem;
}
.footer-brand p { font-size: .875rem; color: var(--text3); margin: 0; }
.footer-links {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  flex-wrap: wrap;
}
.footer-links a { font-size: .875rem; color: var(--text3); transition: color var(--transition); }
.footer-links a:hover { color: var(--gold); }
.footer-copy {
  width: 100%;
  font-size: .8rem;
  color: var(--text3);
  margin: 0;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

/* ════════════════════════════
   ROADMAP TIMELINE
════════════════════════════ */
.roadmap { background: var(--bg2); }

.timeline {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
  padding-left: 36px;
}

/* The animated vertical line */
.timeline::before {
  content: '';
  position: absolute;
  left: 10px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(to bottom,
    var(--gold) 0%,
    rgba(200,169,110,.5) 45%,
    rgba(106,98,88,.25) 75%,
    transparent 100%);
  transform-origin: top center;
  transform: scaleY(0);
  transition: transform 1.4s cubic-bezier(.4,0,.2,1);
}
.timeline.tl-visible::before { transform: scaleY(1); }

/* Each timeline row */
.tl-item {
  position: relative;
  padding: 0 0 3rem 1.75rem;
  opacity: 0;
  transform: translateX(-18px);
  transition: opacity .55s ease, transform .55s ease;
}
.tl-item.tl-visible {
  opacity: 1;
  transform: translateX(0);
}
.tl-item:last-child { padding-bottom: 0; }

/* Staggered delays */
.tl-item:nth-child(1) { transition-delay: .2s; }
.tl-item:nth-child(2) { transition-delay: .5s; }
.tl-item:nth-child(3) { transition-delay: .8s; }

/* Dot on the line */
.tl-dot {
  position: absolute;
  left: -26px;
  top: 4px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  z-index: 1;
}

.tl-shipped .tl-dot {
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(200,169,110,.2), 0 0 16px rgba(200,169,110,.3);
}
.tl-next .tl-dot {
  background: var(--bg3);
  border: 2px solid var(--gold);
  box-shadow: 0 0 0 4px rgba(200,169,110,.12), 0 0 14px rgba(200,169,110,.2);
  animation: pulse-dot 2.4s ease-in-out infinite;
}
.tl-planned .tl-dot {
  background: var(--bg3);
  border: 2px solid var(--text3);
}

@keyframes pulse-dot {
  0%,100% { box-shadow: 0 0 0 4px rgba(200,169,110,.12), 0 0 14px rgba(200,169,110,.2); }
  50%      { box-shadow: 0 0 0 8px rgba(200,169,110,.07), 0 0 28px rgba(200,169,110,.3); }
}

/* Card */
.tl-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.4rem 1.6rem;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.tl-item:hover .tl-card {
  border-color: var(--border2);
  box-shadow: 0 8px 32px rgba(0,0,0,.4);
}
.tl-next .tl-card {
  border-color: rgba(200,169,110,.28);
  background: linear-gradient(135deg, rgba(200,169,110,.06) 0%, var(--bg3) 60%);
}

.tl-meta {
  display: flex;
  align-items: center;
  gap: .65rem;
  margin-bottom: .75rem;
}

/* Badges */
.tl-badge {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .2rem .7rem;
  border-radius: 100px;
  border: 1px solid transparent;
}
.tl-badge-shipped {
  background: rgba(200,169,110,.15);
  border-color: rgba(200,169,110,.3);
  color: var(--gold-light);
}
.tl-badge-next {
  background: rgba(200,169,110,.12);
  border-color: var(--gold);
  color: var(--gold);
  animation: badge-glow 2.4s ease-in-out infinite;
}
@keyframes badge-glow {
  0%,100% { box-shadow: none; }
  50%      { box-shadow: 0 0 8px rgba(200,169,110,.4); }
}
.tl-badge-planned {
  background: rgba(106,98,88,.12);
  border-color: rgba(106,98,88,.3);
  color: var(--text3);
}

.tl-version {
  font-size: .75rem;
  color: var(--text3);
  letter-spacing: .05em;
}

.tl-card h3 {
  font-size: 1.05rem;
  color: var(--text);
  margin: 0 0 .8rem;
}
.tl-planned .tl-card h3 { color: var(--text2); }

.tl-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: .4rem;
}
.tl-list li {
  font-size: .875rem;
  color: var(--text2);
  padding-left: 1.1rem;
  position: relative;
  margin: 0;
}
.tl-list li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--gold);
  opacity: .6;
}
.tl-planned .tl-list li { color: var(--text3); }
.tl-planned .tl-list li::before { color: var(--text3); opacity: .5; }

/* ════════════════════════════
   Responsive tweaks
════════════════════════════ */
@media(max-width:600px){
  .hero-cta { flex-direction: column; align-items: center; }
  .btn-primary, .btn-ghost, .btn-appstore { width: 100%; max-width: 280px; justify-content: center; }
  .workflow-tabs { gap: .35rem; }
}
