/* Starstuck Lab kit — forsyth theme overrides */
:root {
  --sl-bg:        #0b0c0e;
  --sl-surface:   #12141a;
  --sl-border:    #1c1f26;
  --sl-text:      #e6e7e4;
  --sl-text-dim:  #878b8f;
  --sl-text-mute: #565a60;
  --sl-accent:    #7fa2c4;
  --sl-accent-2:  #b8a06a;
  --sl-font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --sl-font-body:    'Inter', system-ui, -apple-system, sans-serif;
  --sl-font-mono:    'JetBrains Mono', ui-monospace, Menlo, monospace;
  --sl-maxw:      1180px;
}

/* ============================================================
   forsyth / station 000
   marketing site — barometer brass meets rain on a tin roof
   ============================================================ */

:root {
  --bg:        #0b0c0e;
  --bg-elev:   #12141a;
  --bg-card:   #14171d;
  --text:      #e6e7e4;
  --text-dim:  #878b8f;
  --text-mute: #565a60;
  --accent:    #7fa2c4;   /* rain-slate blue */
  --accent-2:  #b8a06a;   /* old barometer brass */
  --border:    #242832;
  --border-2:  #1c1f26;

  --mono: 'JetBrains Mono', 'SFMono-Regular', ui-monospace, Menlo, monospace;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  --serif: 'Fraunces', Georgia, 'Times New Roman', serif;

  --maxw: 1180px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid rgba(127,162,196,0.3);
  transition: border-color 120ms ease, color 120ms ease;
}
a:hover { border-color: var(--accent); }
h1 a, h2 a, h3 a { border-bottom: none; }
h1 a:hover, h2 a:hover, h3 a:hover { border-bottom: none; opacity: 0.8; }

::selection { background: var(--accent); color: #0b0c0e; }

/* ---------- layout ---------- */

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 28px;
  position: relative;
}

section.text { padding: 110px 0; }

p { color: var(--text); max-width: 64ch; }

.kicker {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.22em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 22px;
  display: inline-block;
}

h2.headline {
  font-family: var(--serif);
  font-size: clamp(34px, 5vw, 60px);
  letter-spacing: -0.015em;
  font-weight: 500;
  margin: 0 0 28px;
  line-height: 1.06;
  max-width: 22ch;
}

/* ---------- top bar ---------- */

.topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 20;
  backdrop-filter: blur(10px) saturate(120%);
  -webkit-backdrop-filter: blur(10px) saturate(120%);
  background: rgba(11,12,14,0.55);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.topbar-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 14px 28px;
  display: flex;
  align-items: center;
  gap: 22px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.topbar .brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text);
  font-weight: 600;
  letter-spacing: 0.14em;
  border: none;
}
.topbar .brand img { height: 18px; width: auto; }
.topbar .status {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.topbar .status-text { color: var(--accent); }
.topbar .status .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent);
  animation: pulse 4.5s ease-in-out infinite; /* slower than jigawatt; forsyth is calm */
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.35; }
}

/* ---------- hero (no photography yet — sky built from CSS) ---------- */

.hero {
  position: relative;
  min-height: 100vh;
  width: 100%;
  background:
    radial-gradient(ellipse 120% 60% at 50% 108%, rgba(184,160,106,0.10) 0%, transparent 55%),
    radial-gradient(ellipse 80% 45% at 70% 20%, rgba(127,162,196,0.10) 0%, transparent 60%),
    linear-gradient(180deg, #0d1016 0%, #0b0c0e 55%, #0b0c0e 100%);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

/* fine slanted drizzle, barely there */
.hero .rain {
  position: absolute;
  inset: -10% -10%;
  pointer-events: none;
  background: repeating-linear-gradient(
    112deg,
    transparent 0px,
    transparent 46px,
    rgba(127,162,196,0.075) 46px,
    rgba(127,162,196,0.075) 47px
  );
  animation: drizzle 26s linear infinite;
}
@keyframes drizzle {
  from { transform: translate3d(0, -48px, 0); }
  to   { transform: translate3d(-120px, 48px, 0); }
}
@media (prefers-reduced-motion: reduce) {
  .hero .rain { animation: none; }
}

.hero-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 28px 90px;
  width: 100%;
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.22em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 24px;
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}
.hero-eyebrow .sep { color: var(--text-mute); }

.hero h1 {
  font-family: var(--serif);
  font-size: clamp(72px, 14vw, 190px);
  line-height: 0.92;
  letter-spacing: -0.03em;
  margin: 0 0 22px;
  font-weight: 500;
  color: var(--text);
}
.hero h1 .tail { color: var(--accent); }

.hero-tag {
  font-family: var(--sans);
  font-size: clamp(24px, 2.8vw, 36px);
  font-weight: 400;
  color: var(--text);
  max-width: 28ch;
  letter-spacing: -0.018em;
  line-height: 1.22;
  margin: 0;
}

.hero-scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-mute);
  z-index: 2;
}

/* ---------- text sections ---------- */

section.text .kicker { margin-bottom: 14px; }

.cols-two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 800px) {
  .cols-two { grid-template-columns: 1fr; gap: 32px; }
}

.prose p { font-size: 17px; color: var(--text); }
.prose p + p { margin-top: 16px; }
.prose em { color: var(--accent-2); font-style: italic; }

/* ---------- mood band ---------- */

.band {
  position: relative;
  width: 100%;
  min-height: 52vh;
  display: flex;
  align-items: center;
}
.band.mood {
  background:
    radial-gradient(ellipse 90% 80% at 50% 120%, rgba(127,162,196,0.09) 0%, transparent 60%),
    var(--bg-elev);
  border-top: 1px solid var(--border-2);
  border-bottom: 1px solid var(--border-2);
}
.band-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 120px 28px;
  position: relative;
  z-index: 2;
}
.band-quote {
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 48px);
  letter-spacing: -0.01em;
  line-height: 1.14;
  font-weight: 500;
  font-style: italic;
  max-width: 24ch;
  margin: 0;
  color: var(--text);
}
.band-attribution {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: 28px;
  display: inline-block;
}

/* ---------- timeline ---------- */

.timeline-section {
  padding: 120px 0;
  border-top: 1px solid var(--border-2);
}
.timeline { margin-top: 60px; position: relative; }
.timeline-track {
  position: relative;
  height: 2px;
  background: var(--border);
  margin-bottom: 28px;
  overflow: visible;
}
.timeline-track::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent) 80%, rgba(127,162,196,0) 100%);
  box-shadow: 0 0 12px rgba(127,162,196,0.4);
  transition: width 1.8s cubic-bezier(.22,.61,.36,1);
}
.timeline.in-view .timeline-track::before { width: 100%; }

.timeline-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.timeline-step { position: relative; padding-top: 8px; }
.timeline-step .dot {
  position: absolute;
  top: -33px; left: 0;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--bg);
  border: 1.5px solid var(--border);
  transition: background 200ms ease, border-color 200ms ease, box-shadow 300ms ease;
}
.timeline.in-view .timeline-step .dot {
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 0 14px rgba(127,162,196,0.6);
}
.timeline-step:nth-child(1) .dot { transition-delay: 0.10s; }
.timeline-step:nth-child(2) .dot { transition-delay: 0.55s; }
.timeline-step:nth-child(3) .dot { transition-delay: 1.00s; }
.timeline-step:nth-child(4) .dot { transition-delay: 1.45s; }

.timeline-step .num {
  font-family: var(--mono);
  font-size: 14px;
  letter-spacing: 0.18em;
  color: var(--text-mute);
  display: block;
  margin-bottom: 14px;
  transition: color 300ms ease;
}
.timeline.in-view .timeline-step .num { color: var(--accent); }
.timeline-step:nth-child(1) .num { transition-delay: 0.10s; }
.timeline-step:nth-child(2) .num { transition-delay: 0.55s; }
.timeline-step:nth-child(3) .num { transition-delay: 1.00s; }
.timeline-step:nth-child(4) .num { transition-delay: 1.45s; }

.step-icon {
  display: block;
  width: 26px;
  height: 26px;
  margin: 0 0 14px;
  color: var(--text-mute);
  transition: color 400ms ease;
}
.step-icon path:not([fill="none"]),
.step-icon circle:not([fill="none"]) { fill: currentColor; }
.step-icon path[fill="none"],
.step-icon circle[fill="none"],
.step-icon line {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
}
.timeline.in-view .step-icon { color: var(--accent); }
.timeline-step:nth-child(1) .step-icon { transition-delay: 0.10s; }
.timeline-step:nth-child(2) .step-icon { transition-delay: 0.55s; }
.timeline-step:nth-child(3) .step-icon { transition-delay: 1.00s; }
.timeline-step:nth-child(4) .step-icon { transition-delay: 1.45s; }

/* MEASURE — the gauge needle settles */
.icon-measure .needle {
  transform-origin: 12px 12px;
  transition: transform 900ms cubic-bezier(.34,1.4,.42,1) 0.15s;
  transform: rotate(-70deg);
}
.timeline.in-view .icon-measure .needle { transform: rotate(0deg); }

/* SPEAK — waves ripple outward once */
.icon-speak .wave { opacity: 0.35; }
.timeline.in-view .icon-speak .wave:nth-of-type(2) { animation: speak-wave 2.6s ease-out 0.60s infinite; }
.timeline.in-view .icon-speak .wave:nth-of-type(3) { animation: speak-wave 2.6s ease-out 0.85s infinite; }
.timeline.in-view .icon-speak .wave:nth-of-type(4) { animation: speak-wave 2.6s ease-out 1.10s infinite; }
@keyframes speak-wave {
  0%   { opacity: 0.35; }
  18%  { opacity: 1; }
  40%  { opacity: 0.35; }
  100% { opacity: 0.35; }
}

@media (prefers-reduced-motion: reduce) {
  .timeline-track::before { transition: none !important; width: 100% !important; }
  .timeline-step .dot, .timeline-step .num, .step-icon { transition: none !important; }
  .icon-measure .needle { transition: none !important; transform: rotate(0deg) !important; }
  .icon-speak .wave { animation: none !important; opacity: 1; }
}

.timeline-step h3 {
  font-size: 22px;
  letter-spacing: -0.02em;
  margin: 0 0 10px;
  font-weight: 600;
  color: var(--text);
}
.timeline-step p {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.5;
  margin: 0;
  max-width: 26ch;
}

@media (max-width: 800px) {
  .timeline-steps { grid-template-columns: 1fr 1fr; gap: 36px 24px; }
}
@media (max-width: 480px) {
  .timeline-steps { grid-template-columns: 1fr; gap: 28px; }
  .timeline-track { display: none; }
  .timeline-step { padding-left: 22px; }
  .timeline-step .dot { top: 14px; left: 0; }
}

/* ---------- the senses ---------- */

.senses {
  padding: 120px 0;
  border-top: 1px solid var(--border-2);
}
.senses-grid {
  list-style: none;
  margin: 48px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border-2);
  border: 1px solid var(--border-2);
}
.senses-grid li {
  background: var(--bg);
  padding: 30px 26px 34px;
}
.senses-grid li.wide { grid-column: span 3; background: var(--bg-elev); }
.senses-grid h3 {
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin: 0 0 10px;
  color: var(--text);
}
.senses-grid li.wide h3 { color: var(--accent); }
.senses-grid p {
  font-size: 14.5px;
  color: var(--text-dim);
  line-height: 1.55;
  margin: 0;
  max-width: 60ch;
}
@media (max-width: 900px) {
  .senses-grid { grid-template-columns: 1fr 1fr; }
  .senses-grid li.wide { grid-column: span 2; }
}
@media (max-width: 540px) {
  .senses-grid { grid-template-columns: 1fr; }
  .senses-grid li.wide { grid-column: span 1; }
}

/* ---------- the numbers ---------- */

.numbers {
  padding: 140px 0;
  border-top: 1px solid var(--border-2);
  border-bottom: 1px solid var(--border-2);
}
.numbers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
@media (max-width: 800px) {
  .numbers-grid { grid-template-columns: repeat(2, 1fr); }
}
.numbers-grid > div {
  padding: 28px 24px;
  border-right: 1px solid var(--border-2);
}
.numbers-grid > div:last-child { border-right: none; }
@media (max-width: 800px) {
  .numbers-grid > div:nth-child(2) { border-right: none; }
  .numbers-grid > div { border-bottom: 1px solid var(--border-2); }
  .numbers-grid > div:nth-last-child(-n+2) { border-bottom: none; }
}
.numbers .label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin-bottom: 16px;
}
.numbers .big {
  font-family: var(--mono);
  font-size: clamp(36px, 5vw, 62px);
  font-weight: 500;
  letter-spacing: -0.03em;
  color: var(--text);
  line-height: 1;
}
.numbers .big .u {
  color: var(--text-mute);
  font-size: 0.45em;
  margin-left: 2px;
}
.numbers .sub {
  font-size: 13px;
  color: var(--text-dim);
  margin-top: 12px;
  line-height: 1.45;
}

/* ---------- the lay of the land (comparison) ---------- */

.compare { padding: 120px 0; }
.compare-lead {
  font-size: 17px;
  color: var(--text-dim);
  max-width: 52ch;
  margin: 0 0 48px;
}
.table-scroll {
  overflow-x: auto;
  border: 1px solid var(--border-2);
  -webkit-overflow-scrolling: touch;
}
.compare-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  font-size: 14px;
}
.compare-table th,
.compare-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--border-2);
  text-align: center;
  vertical-align: middle;
}
.compare-table thead th {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-mute);
  font-weight: 500;
  background: var(--bg-elev);
  line-height: 1.5;
}
.compare-table tbody th {
  text-align: left;
  font-weight: 500;
  color: var(--text);
  font-size: 14.5px;
  max-width: 24ch;
}
.compare-table tbody tr:last-child th,
.compare-table tbody tr:last-child td { border-bottom: none; }
.compare-table .us {
  background: rgba(127,162,196,0.06);
  border-left: 1px solid var(--border-2);
  border-right: 1px solid var(--border-2);
}
.compare-table thead th.us { color: var(--accent); }
.compare-table .y { color: var(--accent); font-size: 16px; }
.compare-table .m { color: var(--accent-2); font-size: 16px; }
.compare-table .n { color: var(--text-mute); font-size: 16px; }
.compare-table .note {
  display: block;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin-top: 4px;
}
.compare-key {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--text-mute);
  margin-top: 18px;
  letter-spacing: 0.04em;
}

/* ---------- honesty ---------- */

.honesty {
  padding: 120px 0;
  border-top: 1px solid var(--border-2);
}
.honesty .kicker { color: var(--text-dim); }
.honesty p {
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.35;
  letter-spacing: -0.015em;
  max-width: 42ch;
  color: var(--text);
  font-weight: 400;
}
.honesty p + p { margin-top: 22px; }
.honesty em { color: var(--accent); font-style: normal; }

/* ---------- provenance / limits ---------- */

.provenance {
  padding: 120px 0;
  border-top: 1px solid var(--border-2);
}
.provenance .cols-two { gap: 64px; }
.provenance h2 {
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 38px);
  letter-spacing: -0.01em;
  margin: 0 0 22px;
  font-weight: 500;
}
.provenance p {
  font-size: 17px;
  color: var(--text-dim);
  max-width: 38ch;
}
.provenance p + p { margin-top: 14px; }

.cant-list {
  list-style: none;
  padding: 0;
  margin: 0;
  max-width: 42ch;
}
.cant-list li {
  padding: 22px 0;
  border-bottom: 1px solid var(--border-2);
  font-size: 16px;
  line-height: 1.5;
  color: var(--text-dim);
}
.cant-list li:first-child { padding-top: 0; }
.cant-list li:last-child { border-bottom: none; padding-bottom: 0; }
.cant-list li strong {
  display: block;
  color: var(--text);
  font-weight: 500;
  font-size: 17px;
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}
