/* odysadv.com — site styles
   Imports the design-system tokens. Uses Bone as the page canvas
   so the brand has a non-green anchor distinct from the in-app surfaces. */

@import url('./colors_and_type.css');

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-system);
  font-weight: var(--fw-semibold);
  background: var(--day-surface);
  color: var(--day-text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: var(--lh-body);
}


/* ── SVG mark colors — applied via CSS, not the fill attribute ── */
.cairn-mark--accent { fill: var(--accent); }
.cairn-mark--bone   { fill: var(--bone); }
.cairn-mark--dark   { fill: var(--day-text); }

/* ── Layout ─────────────────────────────────────────────────────── */
.wrap { max-width: 1080px; margin: 0 auto; padding: 0 28px; }
.wrap--narrow { max-width: 720px; }

section { padding: 96px 0; }
section + section { border-top: 1px solid rgba(60, 50, 30, 0.08); }
@media (max-width: 720px) {
  section { padding: 64px 0; }
}

/* ── Topbar ─────────────────────────────────────────────────────── */
.topbar {
  position: sticky; top: 0; z-index: 10;
  background: var(--accent);
  color: var(--on-accent);
}
.topbar__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
.topbar a { color: var(--on-accent); text-decoration: none; }
.topbar__brand { display: flex; align-items: center; gap: 12px; font-weight: 900; letter-spacing: 0.06em; }
.topbar__brand svg { width: 22px; height: 28px; fill: var(--on-accent) !important; }
.topbar__nav { display: flex; gap: 28px; font-size: 14px; font-weight: 700; color: rgba(255, 255, 255, 0.78); }
.topbar__nav a { transition: color 150ms; }
.topbar__nav a:hover { color: var(--on-accent); }
@media (max-width: 560px) { .topbar__nav { display: none; } }

/* ── Hero ───────────────────────────────────────────────────────── */
.hero {
  position: relative;
  padding-top: 96px; padding-bottom: 80px;
  background-color: var(--espresso);
  color: var(--day-surface);
  overflow: hidden;
  isolation: isolate;
}
.hero__bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: right center;
  /* lift the photo's mid-tones so the rider, bike, and horizon read */
  filter: brightness(1.55) contrast(1.05) saturate(1.05);
  z-index: 0;
}
.hero__scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg,
      rgba(20, 14, 8, 0.78) 0%,
      rgba(20, 14, 8, 0.48) 38%,
      rgba(20, 14, 8, 0.14) 70%,
      rgba(20, 14, 8, 0.00) 100%),
    linear-gradient(180deg,
      rgba(0, 0, 0, 0.00) 70%,
      var(--espresso) 100%);
  pointer-events: none;
  z-index: 1;
}
.hero > .wrap { position: relative; z-index: 2; }
@media (max-width: 880px) {
  .hero__bg { object-position: center; }
  .hero__scrim {
    background:
      linear-gradient(180deg,
        rgba(20, 14, 8, 0.45) 0%,
        rgba(20, 14, 8, 0.75) 55%,
        var(--espresso) 100%);
  }
}
.hero .hero__wordmark { color: var(--day-surface); }
.hero .hero__tagline  { color: var(--day-surface); }
.hero .hero__sub      { color: rgba(255, 255, 255, 0.72); }
.hero .store-btn { background: var(--day-surface); color: var(--day-text); }
.hero .store-btn:hover { opacity: 1; background: rgba(255, 255, 255, 0.92); }
.hero__mark { width: 96px; height: 120px; margin-bottom: 28px; fill: var(--accent); }
.hero + section { border-top: none; }
.hero__wordmark {
  font-size: 80px; font-weight: 900; letter-spacing: 0.06em;
  line-height: 0.95; color: var(--day-text);
  margin: 0;
}
.hero__wordmark--sub {
  font-size: 22px; font-weight: 900; letter-spacing: 0.45em;
  color: var(--accent); margin-top: 4px; padding-left: 0.04em;
}
.hero__tagline {
  font-size: 40px; font-weight: 900; line-height: 1.15;
  letter-spacing: -0.01em; max-width: 14ch;
  margin: 40px 0 16px;
}
.hero__sub {
  font-size: 18px; font-weight: 500; color: var(--day-text-muted);
  line-height: 1.5; max-width: 52ch;
  margin-bottom: 36px;
}
@media (max-width: 560px) {
  .hero__wordmark { font-size: 56px; }
  .hero__tagline { font-size: 30px; }
  /* Drop the hero photo on phones — the espresso background carries it,
     and this avoids the object-fit: cover zoom-crop on tall narrow screens. */
  .hero__bg,
  .hero__scrim { display: none; }
  .hero { padding-top: 56px; padding-bottom: 56px; }
}

/* ── Store buttons ──────────────────────────────────────────────── */
.stores { display: flex; gap: 14px; flex-wrap: wrap; }
.store-btn {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 12px 18px;
  background: var(--day-text);
  color: var(--bone);
  border-radius: 12px;
  text-decoration: none;
  min-width: 200px;
  transition: opacity 180ms;
}
.store-btn:hover { opacity: 0.85; }
.store-btn__sm { font-size: 11px; font-weight: 600; opacity: 0.75; letter-spacing: 0.04em; }
.store-btn__lg { font-size: 19px; font-weight: 700; letter-spacing: -0.01em; }
.store-btn__txt { display: flex; flex-direction: column; line-height: 1.15; }
.store-btn svg { flex-shrink: 0; }

/* ── Section heads ──────────────────────────────────────────────── */
.section-eyebrow {
  font-size: 11px; font-weight: 800; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--accent);
  margin-bottom: 14px;
}
.section-title {
  font-size: 36px; font-weight: 900; line-height: 1.15;
  letter-spacing: -0.01em; max-width: 18ch;
  margin: 0 0 36px;
  position: relative; padding-bottom: 18px;
}
.section-title::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 56px; height: 4px; border-radius: 2px;
  background: var(--accent);
}
@media (max-width: 560px) { .section-title { font-size: 28px; } }

/* ── Features grid ──────────────────────────────────────────────── */
.features { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
@media (max-width: 720px) { .features { grid-template-columns: 1fr; } }

.feature {
  padding: 28px;
  background: var(--day-surface-muted);
  border-radius: 18px;
  border: 1px solid rgba(60, 50, 30, 0.06);
}
.feature__head {
  display: flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 800; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--day-text-muted);
  margin-bottom: 16px;
}
.feature__head-dot {
  width: 10px; height: 10px; border-radius: 999px;
  background: var(--accent);
}
.feature__title { font-size: 22px; font-weight: 900; margin: 0 0 8px; line-height: 1.2; }
.feature__body { font-size: 15px; font-weight: 500; color: var(--day-text-muted); line-height: 1.55; margin: 0; }

/* ── Manifesto ──────────────────────────────────────────────────── */
.manifesto { background: var(--day-text); color: var(--day-surface); }
.manifesto .section-eyebrow { color: var(--night-accent-teal); }
.manifesto .section-title::after { background: var(--night-accent-teal); }
.manifesto__body {
  font-size: 24px; font-weight: 600; line-height: 1.5;
  max-width: 38ch;
}
.manifesto__body strong { color: var(--bone); font-weight: 900; }

/* ── Pricing ────────────────────────────────────────────────────── */
.pricing { text-align: center; }
.pricing__price {
  font-size: 96px; font-weight: 900; line-height: 1;
  letter-spacing: -0.03em;
  color: var(--accent);
  font-variant-numeric: tabular-nums;
}
.pricing__once {
  font-size: 22px; font-weight: 800; letter-spacing: -0.005em;
  margin-top: 12px;
}
.pricing__sub {
  font-size: 15px; font-weight: 500; color: var(--day-text-muted);
  margin-top: 14px; line-height: 1.5;
}
@media (max-width: 560px) { .pricing__price { font-size: 72px; } }

/* ── Screenshots row ───────────────────────────────────────────── */
.shots {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
  align-items: end;
}
@media (max-width: 720px) { .shots { grid-template-columns: 1fr; max-width: 320px; margin: 0 auto; } }

.shot-frame {
  position: relative;
  aspect-ratio: 9 / 19.5;
  background: var(--day-text);
  border-radius: 36px;
  padding: 8px;
  box-shadow: 0 24px 60px rgba(60, 40, 20, 0.25), 0 2px 0 1px rgba(0,0,0,0.4);
}
.shot-screen {
  width: 100%; height: 100%;
  background: var(--day-map-bg);
  border-radius: 28px;
  display: flex; align-items: center; justify-content: center;
  color: var(--day-text-muted); font-size: 12px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  overflow: hidden;
}
.shot--tall  { margin-bottom: -36px; }
.shot--short { margin-bottom: 36px; }

/* ── Footer ─────────────────────────────────────────────────────── */
.footer {
  padding: 56px 0 80px;
  border-top: 1px solid rgba(60, 50, 30, 0.10);
  color: var(--day-text-muted);
  font-size: 13px;
  font-weight: 500;
}
.footer__inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 20px; }
.footer__brand { display: flex; align-items: center; gap: 10px; font-weight: 800; color: var(--day-text); letter-spacing: 0.06em; }
.footer__brand svg { width: 18px; height: 22px; }
.footer__links { display: flex; gap: 24px; }
.footer__links a { color: var(--day-text-muted); text-decoration: none; font-weight: 600; }
.footer__links a:hover { color: var(--accent); }

/* ── Legal pages (terms / privacy) ─────────────────────────────── */
.legal { padding: 80px 0 120px; }
.legal h1 {
  font-size: 36px; font-weight: 900; line-height: 1.15;
  letter-spacing: -0.01em; margin: 0 0 8px;
}
.legal .legal__eyebrow {
  font-size: 11px; font-weight: 800; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--accent);
  margin-bottom: 18px;
}
.legal .legal__date {
  font-size: 13px; font-weight: 600; color: var(--day-text-muted);
  margin-bottom: 48px;
}
.legal h2 {
  font-size: 20px; font-weight: 900; margin: 40px 0 12px;
  letter-spacing: -0.005em;
}
.legal h3 {
  font-size: 15px; font-weight: 800; margin: 24px 0 8px;
}
.legal p, .legal li {
  font-size: 15px; line-height: 1.65; font-weight: 500;
  color: var(--day-text); margin: 0 0 14px;
}
.legal ul { padding-left: 22px; margin: 0 0 14px; }
.legal li { margin-bottom: 6px; }
.legal a { color: var(--accent); text-decoration: underline; text-decoration-thickness: 1.5px; text-underline-offset: 2px; }
.legal strong { font-weight: 800; }
.legal .legal__callout {
  border-left: 4px solid var(--accent);
  padding: 14px 18px;
  margin: 28px 0;
  background: rgba(29, 158, 117, 0.06);
  border-radius: 4px;
  font-size: 15px; line-height: 1.55; font-weight: 600;
}
.legal .legal__callout p { margin: 0; font-size: 15px; }


/* ── Pricing grid (two cards side-by-side) ─────────────────────── */
.pricing { text-align: left; }
.pricing__title { margin: 0 auto 36px; max-width: 18ch; text-align: center; }
.pricing__title::after { left: 50%; transform: translateX(-50%); }
.pricing .section-eyebrow { text-align: center; }
.pricing-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px;
  max-width: 720px; margin: 0 auto;
}
@media (max-width: 560px) {
  .pricing-grid { grid-template-columns: 1fr; }
}
.pricing-card {
  background: var(--day-surface);
  border: 1px solid rgba(60, 50, 30, 0.10);
  border-radius: 18px;
  padding: 28px 24px;
  text-align: left;
}
.pricing-card__eyebrow {
  font-size: 11px; font-weight: 800; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--day-text-muted);
  margin-bottom: 12px;
}
.pricing-card__price {
  font-size: 44px; font-weight: 900;
  letter-spacing: -0.02em; line-height: 1;
  color: var(--day-text);
  display: flex; align-items: baseline;
}
.pricing-card__per {
  font-size: 17px; font-weight: 700;
  color: var(--day-text-muted);
  margin-left: 4px; letter-spacing: 0;
}
.pricing-card__equiv {
  font-size: 13px; font-weight: 600; color: var(--day-text-muted);
  margin-top: 6px;
}
.pricing-card__list {
  list-style: none; padding: 0; margin: 22px 0 0;
  font-size: 14px; font-weight: 500; line-height: 1.6;
  color: var(--day-text);
}
.pricing-card__list li { padding-left: 22px; position: relative; margin-bottom: 6px; }
.pricing-card__list li::before {
  content: "✓"; position: absolute; left: 0; top: 0;
  color: var(--accent); font-weight: 900;
}
.pricing__compare {
  text-align: center; margin-top: 36px;
  font-size: 14px; font-weight: 500; line-height: 1.6;
  color: var(--day-text-muted); max-width: 50ch; margin-left: auto; margin-right: auto;
}


/* ── Section background variants ───────────────────────────────── */
.section--paper { background: var(--day-surface-muted); }
.section--paper + .footer { border-top-color: rgba(60, 50, 30, 0.10); }

/* ── Feature card: thicker left accent in Trail Green ───────────── */
.feature {
  border-left: 4px solid var(--accent);
}
.feature__head-dot {
  width: 14px; height: 14px;
}

/* ── Pricing: make the Annual card the visual lead ─────────────── */
.pricing-card--primary {
  background: var(--accent);
  color: var(--on-accent);
  border-color: var(--accent);
}
.pricing-card--primary .pricing-card__eyebrow { color: rgba(255, 255, 255, 0.85); }
.pricing-card--primary .pricing-card__price   { color: var(--on-accent); }
.pricing-card--primary .pricing-card__per     { color: rgba(255, 255, 255, 0.85); }
.pricing-card--primary .pricing-card__equiv   { color: rgba(255, 255, 255, 0.85); }
.pricing-card--primary .pricing-card__list    { color: var(--on-accent); }
.pricing-card--primary .pricing-card__list li::before { color: var(--on-accent); }

.pricing-card__badge {
  display: inline-block;
  padding: 3px 8px;
  background: rgba(255, 255, 255, 0.22);
  color: var(--on-accent);
  border-radius: 4px;
  font-size: 10px; font-weight: 800; letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-left: 8px;
  vertical-align: 2px;
}

/* ── Manifesto: stronger Trail Green presence on the dark surface ── */
.manifesto__body strong { color: var(--night-accent-teal); }

/* ── Topbar nav link active state in Trail Green ─────────────────── */


/* ── Footer: paper bg + Trail Green brand mark ───────────────────── */
.footer { background: var(--day-surface-muted); }
.footer__brand svg { fill: var(--accent); }

/* ── Site footer: expanded with sitemap + BDR legal block ──────── */
.footer--site { padding: 64px 0 48px; }
.footer__top {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.footer__col h4 {
  font-size: 11px; font-weight: 800; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--day-text);
  margin: 0 0 14px;
}
.footer__col a {
  display: block; padding: 4px 0;
  color: var(--day-text-muted); text-decoration: none;
  font-size: 14px; font-weight: 600;
}
.footer__col a:hover { color: var(--accent); }
.footer__about p {
  font-size: 13px; font-weight: 500; line-height: 1.6;
  color: var(--day-text-muted); margin: 0;
  max-width: 32ch;
}
.footer__about .footer__brand { margin-bottom: 14px; }
.footer__bottom {
  margin-top: 48px; padding-top: 24px;
  border-top: 1px solid rgba(60, 50, 30, 0.10);
  display: flex; flex-wrap: wrap; justify-content: space-between;
  gap: 16px;
  font-size: 12px; color: var(--day-text-muted);
}
.footer__legal {
  font-size: 12px; font-weight: 500; line-height: 1.6;
  color: var(--day-text-muted);
  margin-top: 18px;
  max-width: 80ch;
}
@media (max-width: 720px) {
  .footer__top { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer__about { grid-column: 1 / -1; }
}

/* ── Page hero (sub-pages — espresso band, no photo) ────────────── */
.page-hero {
  background: var(--espresso);
  color: var(--day-surface);
  padding: 80px 0 64px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.page-hero::before {
  /* faint topo-line texture using repeating radial */
  content: ""; position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(29,158,117,0.10) 0, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(93,202,165,0.08) 0, transparent 45%);
  pointer-events: none; z-index: 0;
}
.page-hero > .wrap { position: relative; z-index: 1; }
.page-hero__eyebrow {
  font-size: 11px; font-weight: 800; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--night-accent-teal);
  margin-bottom: 18px;
}
.page-hero h1 {
  font-size: 56px; font-weight: 900; line-height: 1.05;
  letter-spacing: -0.015em; margin: 0 0 18px;
  max-width: 18ch;
}
.page-hero__sub {
  font-size: 19px; font-weight: 500; line-height: 1.5;
  color: rgba(255,255,255,0.78);
  max-width: 56ch; margin: 0;
}
@media (max-width: 560px) { .page-hero h1 { font-size: 38px; } }

/* ── Prose (long-form pages: features, faq, about, mesh, etc.) ─── */
.prose { padding: 80px 0 96px; }
.prose .wrap--narrow { max-width: 760px; }
.prose h2 {
  font-size: 28px; font-weight: 900; line-height: 1.2;
  letter-spacing: -0.01em; margin: 56px 0 14px;
  padding-top: 0;
}
.prose h2:first-child { margin-top: 0; }
.prose h3 {
  font-size: 18px; font-weight: 800; letter-spacing: -0.005em;
  margin: 32px 0 10px;
}
.prose p, .prose li {
  font-size: 16px; font-weight: 500; line-height: 1.65;
  color: var(--day-text); margin: 0 0 14px;
}
.prose p strong { font-weight: 800; color: var(--day-text); }
.prose ul { padding-left: 22px; margin: 0 0 14px; }
.prose ul li { margin-bottom: 6px; }
.prose ul.checks {
  list-style: none; padding: 0;
}
.prose ul.checks li {
  padding-left: 28px; position: relative;
  margin-bottom: 10px;
}
.prose ul.checks li::before {
  content: "✓"; position: absolute; left: 0; top: 0;
  color: var(--accent); font-weight: 900;
}
.prose ul.crosses {
  list-style: none; padding: 0;
}
.prose ul.crosses li {
  padding-left: 28px; position: relative;
  margin-bottom: 10px;
  color: var(--day-text);
}
.prose ul.crosses li::before {
  content: "✕"; position: absolute; left: 0; top: 0;
  color: var(--day-text-muted); font-weight: 900;
}
.prose a {
  color: var(--accent); text-decoration: underline;
  text-decoration-thickness: 1.5px; text-underline-offset: 2px;
}

/* Two-column "What's in / What's not" block */
.duo {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 28px; margin: 32px 0;
}
@media (max-width: 720px) { .duo { grid-template-columns: 1fr; } }
.duo__col {
  padding: 28px;
  border-radius: 18px;
  background: var(--day-surface-muted);
  border-left: 4px solid var(--accent);
}
.duo__col--neg { border-left-color: var(--day-text); background: #1d1a16; color: var(--day-surface); }
.duo__col--neg h3 { color: var(--day-surface); }
.duo__col--neg ul.crosses li { color: rgba(255,255,255,0.85); }
.duo__col--neg ul.crosses li::before { color: var(--night-accent-teal); }
.duo h3 {
  font-size: 14px; font-weight: 800; letter-spacing: 0.08em;
  text-transform: uppercase; margin: 0 0 18px;
  color: var(--day-text);
}
.duo__col--neg h3 { color: var(--night-accent-teal); }

/* ── Comparison table ─────────────────────────────────────────── */
.cmp-table {
  width: 100%; border-collapse: collapse;
  margin: 24px 0; font-size: 15px;
  background: var(--day-surface);
  border-radius: 14px; overflow: hidden;
  border: 1px solid rgba(60,50,30,0.10);
}
.cmp-table th, .cmp-table td {
  padding: 14px 18px; text-align: left;
  border-bottom: 1px solid rgba(60,50,30,0.08);
  font-weight: 600;
}
.cmp-table th {
  background: var(--day-surface-muted);
  font-size: 11px; font-weight: 800; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--day-text-muted);
}
.cmp-table td.num { font-variant-numeric: tabular-nums; text-align: right; }
.cmp-table tr.is-us td {
  background: rgba(29,158,117,0.08);
  font-weight: 800;
  color: var(--day-text);
}
.cmp-table tr:last-child td { border-bottom: none; }
.cmp-table caption {
  caption-side: bottom; padding-top: 12px;
  font-size: 12px; font-weight: 500; color: var(--day-text-muted);
  text-align: left;
}

/* ── FAQ accordion ────────────────────────────────────────────── */
.faq details {
  border-top: 1px solid rgba(60,50,30,0.10);
  padding: 18px 0;
}
.faq details:last-child { border-bottom: 1px solid rgba(60,50,30,0.10); }
.faq summary {
  font-size: 18px; font-weight: 800; cursor: pointer;
  list-style: none; padding-right: 32px; position: relative;
  letter-spacing: -0.005em;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; position: absolute; right: 0; top: -2px;
  font-size: 28px; font-weight: 700; color: var(--accent);
  line-height: 1;
  transition: transform 180ms;
}
.faq details[open] summary::after { content: "−"; }
.faq details p {
  margin: 14px 0 4px;
  font-size: 16px; font-weight: 500; line-height: 1.6;
  color: var(--day-text-muted);
}

/* ── Steps (how-it-works) ─────────────────────────────────────── */
.steps { margin: 32px 0; }
.step {
  display: grid; grid-template-columns: 56px 1fr;
  gap: 20px;
  padding: 24px 0;
  border-top: 1px solid rgba(60,50,30,0.10);
}
.step:last-child { border-bottom: 1px solid rgba(60,50,30,0.10); }
.step__num {
  font-size: 36px; font-weight: 900; line-height: 1;
  color: var(--accent); font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
}
.step__title {
  font-size: 20px; font-weight: 900; margin: 0 0 6px;
  letter-spacing: -0.005em;
}
.step__body {
  font-size: 16px; font-weight: 500; line-height: 1.6;
  color: var(--day-text-muted); margin: 0;
}

/* ── Inline CTA block ─────────────────────────────────────────── */
.cta-block {
  margin: 48px 0 0;
  padding: 36px;
  background: var(--accent);
  color: var(--on-accent);
  border-radius: 18px;
  text-align: center;
}
.cta-block h3 {
  font-size: 26px; font-weight: 900; margin: 0 0 8px;
  letter-spacing: -0.01em;
}
.cta-block p {
  font-size: 15px; font-weight: 500; opacity: 0.9;
  margin: 0 0 22px;
}
.cta-block .stores { justify-content: center; }
.cta-block .store-btn { background: var(--day-text); color: var(--bone); }

/* Trial nudge under hero CTA */
.hero__trial {
  margin-top: 16px;
  font-size: 13px; font-weight: 600;
  color: rgba(255,255,255,0.72);
  letter-spacing: 0.02em;
}
.hero__trial strong { color: var(--night-accent-teal); font-weight: 800; }

/* Specs table (mesh page) */
.specs-table {
  width: 100%; border-collapse: collapse;
  margin: 24px 0;
  background: var(--day-surface);
  border: 1px solid rgba(60,50,30,0.10);
  border-radius: 14px; overflow: hidden;
}
.specs-table td {
  padding: 14px 18px;
  border-bottom: 1px solid rgba(60,50,30,0.06);
  font-size: 15px; font-weight: 500;
  vertical-align: top;
}
.specs-table td:first-child {
  font-weight: 800; width: 38%;
  color: var(--day-text);
  background: var(--day-surface-muted);
}
.specs-table tr:last-child td { border-bottom: none; }
