/* Design tokens ported 1:1 from client/src/styles.css (light + dark only,
     the app also has dusk/gallery themes, not needed for a marketing page). */
  :root {
    --color-page: #ffffff;
    --color-surface: #ffffff;
    --color-ink: #111827;
    --color-prose: #1f2937;
    --color-muted: #667085;
    --color-soft: #4b5563;
    --color-nav-muted: #5b6472;
    --color-faint: #9aa4b2;
    --color-accent: #2296f3;
    --color-brand-blue: #2296f3;
    --color-brand-cyan: #64c7ef;
    --color-brand-orange: #ff9b21;
    --color-brand-gold: #f7c94f;
    --color-media: #eef2f7;
    --color-paper: #f7f4ee;
    --color-paper-warm: #eee9df;
    --color-photo-shell: #111827;
    --color-nav-glass: rgba(255, 255, 255, 0.9);
    --color-nav-pill: rgba(255, 255, 255, 0.72);
    --color-hover-soft: #eef1f5;
    --color-border: rgba(0, 0, 0, 0.06);
    --color-border-strong: rgba(0, 0, 0, 0.08);
    --shadow-nav: 0 16px 40px rgba(15, 23, 42, 0.05);
    --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    --font-serif: "Newsreader", Georgia, serif;
    color-scheme: light;
  }
  * { box-sizing: border-box; }
  html, body { margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  section[id] { scroll-margin-top: 76px; }
  body {
    background: var(--color-page);
    color: var(--color-ink);
    font-family: var(--font-sans);
    -webkit-font-smoothing: antialiased;
  }
  a { color: inherit; }
  img { max-width: 100%; display: block; }
  a:focus-visible { outline: 3px solid var(--color-brand-cyan); outline-offset: 3px; }
  .skip-link { position: fixed; left: 16px; top: -60px; z-index: 100; border-radius: 8px; background: #fff; color: #111827; padding: 10px 14px; font-weight: 700; }
  .skip-link:focus { top: 12px; }

  .wrap { max-width: 1180px; margin: 0 auto; padding-inline: 24px; }
  @media (min-width: 640px) { .wrap { padding-inline: 48px; } }

  /* ---------- Header / nav (mirrors Layout.tsx) ---------- */
  header.site {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 40;
    background: var(--color-nav-glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--color-border);
  }
  header.site::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 5%, var(--color-brand-blue) 32%, var(--color-brand-cyan) 47%, var(--color-brand-gold) 67%, var(--color-brand-orange) 82%, transparent 96%);
    opacity: 0.55;
  }
  .nav-row {
    max-width: 1180px;
    margin: 0 auto;
    padding: 14px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  }
  @media (min-width: 640px) { .nav-row { padding: 16px 48px; } }
  .wordmark {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-serif);
    font-size: 1.375rem;
    font-weight: 600;
    letter-spacing: -0.03em;
    text-decoration: none;
    color: var(--color-ink);
  }
  .wordmark-logo {
    width: 34px;
    height: 34px;
    flex: 0 0 auto;
    object-fit: contain;
  }
  .pill-nav {
    display: flex;
    align-items: center;
    gap: 4px;
    border-radius: 999px;
    border: 1px solid var(--color-border);
    background: var(--color-nav-glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: var(--shadow-nav);
    padding: 4px;
    font-size: 13px;
    font-weight: 500;
    color: var(--color-nav-muted);
  }
  .pill-nav a {
    display: none;
    padding: 8px 14px;
    border-radius: 999px;
    transition: background-color 0.15s, color 0.15s;
    white-space: nowrap;
    text-decoration: none;
    color: inherit;
  }
  @media (min-width: 860px) { .pill-nav a { display: inline-flex; } }
  @media (max-width: 859px) {
    .nav-row { align-items: flex-start; }
    .pill-nav { max-width: calc(100vw - 190px); overflow-x: auto; scrollbar-width: none; }
    .pill-nav::-webkit-scrollbar { display: none; }
    .pill-nav a { display: inline-flex; padding-inline: 10px; }
  }
  .pill-nav a:hover { background: var(--color-hover-soft); color: var(--color-ink); }
  .pill-nav a.cta { display: inline-flex; background: var(--color-photo-shell); color: #fff; }

  /* ---------- Full-bleed blocks ---------- */
  section.block {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
  }
  @media (min-width: 900px) { section.block { padding: 150px 0; } }
  section.block.tight { padding: 72px 0; }
  @media (min-width: 900px) { section.block.tight { padding: 96px 0; } }

  .on-dark { background: var(--color-photo-shell); color: #fdfdfd; }
  .on-accent { background: linear-gradient(145deg, #173f91 0%, var(--color-brand-blue) 72%, #35b6dc 100%); color: #fff; }
  .on-warm { background: var(--color-paper); color: var(--color-ink); }
  .on-light { background: var(--color-page); color: var(--color-ink); }

  .eyebrow { font-size: 14px; font-weight: 700; letter-spacing: 0.015em; margin: 0 0 18px; color: var(--color-brand-blue); }
  .on-dark .eyebrow, .on-accent .eyebrow { color: var(--color-brand-gold); }
  h1.big, h2.big {
    font-family: var(--font-serif);
    font-weight: 600;
    letter-spacing: -0.03em;
    line-height: 0.98;
    margin: 0 0 28px;
  }
  h1.big { font-size: clamp(2.75rem, 8vw, 6.5rem); }
  h2.big { font-size: clamp(2.25rem, 6vw, 4.75rem); }
  .sub {
    font-size: clamp(1.0625rem, 2vw, 1.375rem);
    line-height: 1.55;
    max-width: 640px;
    margin: 0 0 40px;
    opacity: 0.85;
  }
  .on-dark .sub, .on-accent .sub { color: rgba(255, 255, 255, 0.82); }
  .center { text-align: center; margin-inline: auto; }

  .audience { width: min(760px, 100%); margin: -12px auto 34px; }
  .audience-label { margin: 0 0 10px; color: rgba(255,255,255,.48); font-size: .6875rem; font-weight: 700; letter-spacing: .11em; text-transform: uppercase; }
  .audience-items { display: grid; grid-template-columns: 1fr; gap: 8px; text-align: left; }
  @media (min-width: 700px) { .audience-items { grid-template-columns: repeat(2, 1fr); } }
  .audience-items div { padding: 14px 16px; border: 1px solid rgba(255,255,255,.11); border-radius: 12px; background: rgba(255,255,255,.045); }
  .audience-items strong { display: block; color: #fff; font-size: .875rem; }
  .audience-items span { display: block; margin-top: 4px; color: rgba(255,255,255,.62); font-size: .8125rem; line-height: 1.45; }

  .btn-row { display: flex; flex-wrap: wrap; gap: 14px; }
  .center .btn-row { justify-content: center; }

  .license-row { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 28px; }
  .center .license-row { justify-content: center; }
  .source-row { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 14px; margin-top: 20px; }
  .license-row.compact { gap: 6px; margin: 0; }
  .license-row.compact .chip {
    padding: 4px 9px;
    border-color: rgba(100,199,239,.38);
    background: rgba(34,150,243,.10);
    color: rgba(220,241,255,.82);
    box-shadow: none;
    font-size: .6875rem;
    font-weight: 600;
    letter-spacing: .035em;
  }
  .license-row.compact .chip + .chip {
    border-color: rgba(255,255,255,.20);
    background: rgba(255,255,255,.055);
    color: rgba(255,255,255,.68);
  }
  .chip {
    font-size: 0.9375rem;
    font-weight: 700;
    letter-spacing: -0.005em;
    padding: 8px 18px;
    border-radius: 999px;
    border: 1px solid #e7ae27;
    background: linear-gradient(135deg, var(--color-brand-gold) 0%, var(--color-brand-orange) 100%);
    color: #30230a;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.5), 0 8px 24px rgba(218,164,45,.18);
  }
  .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 15px 30px;
    border-radius: 999px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.15s, opacity 0.15s;
  }
  .btn:hover { transform: translateY(-1px); opacity: 0.94; }
  .btn.light { background: linear-gradient(135deg, var(--color-brand-gold), var(--color-brand-orange)); color: #241703; box-shadow: 0 12px 30px rgba(255, 155, 33, 0.22); }
  .btn.dark { background: linear-gradient(135deg, #167fd8, var(--color-brand-blue)); color: #fff; box-shadow: 0 12px 30px rgba(34, 150, 243, 0.2); }
  .btn.outline-dark { background: transparent; color: inherit; border: 1.5px solid currentColor; }
  .btn.outline-light { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,0.55); }
  .btn.disabled { opacity: 0.45; cursor: default; }
  .btn.disabled:hover { transform: none; opacity: 0.45; }
  .link-inline { font-size: 0.9375rem; font-weight: 600; text-decoration: underline; text-decoration-color: var(--color-brand-orange); text-decoration-thickness: 2px; text-underline-offset: 4px; opacity: 0.82; }
  .link-inline:hover { opacity: 1; }

  /* ---------- Placeholder image blocks (real screenshots drop in later) ---------- */
  .shot {
    margin-top: 64px;
    border-radius: 22px;
    border: 1.5px dashed rgba(127, 127, 127, 0.4);
    background:
      repeating-linear-gradient(135deg, rgba(127,127,127,0.06) 0 2px, transparent 2px 14px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 28px;
    aspect-ratio: 16 / 9;
  }
  .shot.wide { aspect-ratio: 21 / 8; }
  .shot.tall { aspect-ratio: 4 / 5; }

  .benchmark-label { margin: 64px 0 -46px; text-align: center; color: rgba(255,255,255,.5); font-size: .75rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
  .big-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 44px 24px;
    margin-top: 72px;
    padding-top: 56px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    text-align: center;
  }
  @media (min-width: 780px) { .big-stats { grid-template-columns: repeat(4, 1fr); } }
  .big-stat-num {
    font-family: var(--font-serif);
    font-weight: 600;
    font-size: clamp(2.5rem, 5vw, 3.75rem);
    letter-spacing: -0.02em;
    line-height: 1;
  }
  .big-stat-label { margin-top: 10px; font-size: 0.9375rem; color: rgba(255, 255, 255, 0.65); line-height: 1.4; }
  .on-dark .report-details li { color: rgba(255,255,255,.82); }
  .on-dark .fact-label { color: rgba(255,255,255,.68); }
  .on-dark .shot, .on-accent .shot { border-color: rgba(255,255,255,0.28); background: repeating-linear-gradient(135deg, rgba(255,255,255,0.05) 0 2px, transparent 2px 14px); }
  .shot .label { font-size: 0.9375rem; font-weight: 600; opacity: 0.6; max-width: 32ch; }
  .shot .label small { display: block; font-weight: 400; margin-top: 6px; opacity: 0.8; font-size: 0.8125rem; }
  .shot { box-shadow: inset 0 0 0 1px rgba(255,255,255,.03), 0 28px 80px rgba(15,23,42,.10); }
  .preview-ui { width: min(88%, 760px); text-align: left; }
  .preview-bar { display: flex; align-items: center; gap: 7px; margin-bottom: 16px; }
  .preview-dot { width: 8px; height: 8px; border-radius: 50%; background: currentColor; opacity: .28; }
  .preview-title { margin-left: 7px; font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; opacity: .52; }
  .preview-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
  .preview-tile { aspect-ratio: 4/3; border-radius: 8px; background: linear-gradient(145deg, rgba(34,150,243,.42), rgba(100,199,239,.12)); }
  .preview-tile:nth-child(2n) { background: linear-gradient(145deg, rgba(247,201,79,.45), rgba(255,155,33,.18)); }
  .preview-tile:nth-child(3n) { background: linear-gradient(145deg, rgba(127,127,127,.32), rgba(255,255,255,.08)); }
  .preview-caption { margin: 14px 0 0; font-size: .8rem; font-weight: 600; opacity: .58; }

  .shot-pair { display: grid; grid-template-columns: 1fr; gap: 20px; margin-top: 64px; }
  @media (min-width: 780px) { .shot-pair { grid-template-columns: 1.3fr 1fr; } }
  .shot-pair .shot { margin-top: 0; aspect-ratio: auto; height: 100%; min-height: 300px; }
  .hero-screen { margin: 64px 0 0; }
  .hero-screen img { width: 100%; height: auto; border-radius: 18px; border: 1px solid rgba(255,255,255,.18); box-shadow: 0 32px 90px rgba(0,0,0,.32); }

  /* ---------- Plain text sections (specs / trust, no image needed) ---------- */
  .plain-copy p { font-size: 1.0625rem; line-height: 1.7; color: var(--color-prose); max-width: 640px; }
  .fact-grid { display: grid; grid-template-columns: 1fr; gap: 28px; margin-top: 48px; }
  @media (min-width: 700px) { .fact-grid { grid-template-columns: repeat(3, 1fr); } }
  .fact-grid .fact-num { font-family: var(--font-serif); font-size: 2.5rem; font-weight: 600; letter-spacing: -0.02em; }
  .fact-grid .fact-label { font-size: 0.9375rem; color: var(--color-muted); margin-top: 6px; line-height: 1.5; max-width: 30ch; }

  ul.plain { margin: 22px 0; padding-left: 22px; max-width: 640px; }
  ul.plain li { margin-bottom: 10px; line-height: 1.65; color: var(--color-prose); }

  .format-list { columns: 2; column-gap: 32px; margin: 28px 0 0; padding-left: 20px; font-size: 0.9375rem; color: var(--color-soft); max-width: 620px; }
  .on-dark .format-list { color: rgba(255,255,255,.82); font-weight: 500; }
  @media (min-width: 640px) { .format-list { columns: 3; } }
  .format-list li { margin-bottom: 7px; break-inside: avoid; }

  /* A plain, bordered list instead of a grid of identical icon cards -
     the repeated icon-square-card pattern is one of the most common
     AI-template tells, doubly so floating as white cards on a gradient. */
  .term-list { list-style: none; margin: 48px 0 0; padding: 0; border-top: 1px solid rgba(255, 255, 255, 0.2); }
  @media (min-width: 780px) { .term-list { display: grid; grid-template-columns: repeat(2, 1fr); column-gap: 40px; } }
  .term-list li { padding: 22px 0; border-bottom: 1px solid rgba(255, 255, 255, 0.2); }
  .term-list strong { display: block; font-size: 1.0625rem; font-weight: 600; margin-bottom: 6px; }
  .term-list span { display: block; font-size: 0.9375rem; line-height: 1.6; color: rgba(255, 255, 255, 0.75); }
  .feature-index li { padding: 0; }
  .feature-index a { display: block; min-height: 100%; padding: 24px 4px; text-decoration: none; border-radius: 10px; transition: background-color .15s, padding .15s; }
  .feature-index .feature-static { min-height: 100%; padding: 24px 4px; }
  .feature-index a:hover { background: rgba(255,255,255,.07); padding-inline: 14px; }
  .feature-index em { display: inline-block; margin-top: 12px; color: var(--color-brand-gold); font-size: .8125rem; font-style: normal; font-weight: 700; }


  .benchmark-note { max-width: 720px; margin: 22px auto 0; color: rgba(255,255,255,.48); font-size: .75rem; line-height: 1.55; }
  .platform-note { margin: 22px 0 0; color: rgba(255,255,255,.58); font-size: .82rem; line-height: 1.6; }
  .privacy-note { margin-top: 36px; padding: 22px 24px; border-left: 4px solid var(--color-brand-orange); background: var(--color-paper); color: var(--color-prose); line-height: 1.65; }
  .cleanup-flow { margin: 24px 0; font-weight: 700; color: var(--color-brand-blue); line-height: 1.8; }
  .steps { list-style: none; margin: 52px 0 0; padding: 0; border-top: 1px solid var(--color-border-strong); }
  .steps li { display: grid; grid-template-columns: 52px 1fr; gap: 18px; padding: 26px 0; border-bottom: 1px solid var(--color-border-strong); }
  .steps b { color: var(--color-brand-blue); font-size: .8rem; letter-spacing: .1em; }
  .steps strong { display: block; margin-bottom: 7px; font-size: 1.05rem; }
  .steps span { color: var(--color-soft); font-size: .9375rem; line-height: 1.6; }

  .product-screen { margin: 64px 0 52px; }
  .product-screen img { width: 100%; height: auto; border-radius: 16px; border: 1px solid rgba(255,255,255,.18); box-shadow: 0 28px 80px rgba(0,0,0,.24); }
  .product-screen figcaption { max-width: 760px; margin-top: 22px; }
  .product-screen figcaption strong { display: block; margin-bottom: 7px; font-family: var(--font-serif); font-size: 1.6rem; line-height: 1.15; }
  .product-screen figcaption span { display: block; color: rgba(255,255,255,.72); font-size: .975rem; line-height: 1.65; }
  .product-screen.compact { max-width: 720px; }
  .ai-tagging-screen { text-align: left; }
  .on-light .product-screen img, .on-warm .product-screen img { border-color: var(--color-border-strong); box-shadow: 0 28px 80px rgba(15,23,42,.12); }
  .on-light .product-screen figcaption span, .on-warm .product-screen figcaption span { color: var(--color-soft); }
  .product-video { margin: 56px 0 48px; }
  .product-video video { width: 100%; height: auto; display: block; border-radius: 16px; border: 1px solid var(--color-border-strong); background: var(--color-photo-shell); box-shadow: 0 28px 80px rgba(15,23,42,.14); }
  .product-video figcaption { margin-top: 18px; color: var(--color-soft); font-size: .975rem; line-height: 1.65; }
  .product-video figcaption strong { color: var(--color-ink); }
  .shot-pair .product-video { margin: 0; }
  .video-feature-hero { margin-top: 64px; }
  .text-feature-copy { max-width: 760px; margin-top: 64px; padding-top: 38px; border-top: 1px solid var(--color-border-strong); }
  .text-feature-copy h3 { margin: 0 0 12px; font-family: var(--font-serif); font-size: clamp(1.75rem, 4vw, 2.5rem); line-height: 1.1; }
  .text-feature-copy p { margin: 0; color: var(--color-soft); font-size: 1.0625rem; line-height: 1.7; }
  footer.site { background: var(--color-photo-shell); color: rgba(255,255,255,0.6); padding: 56px 0; }
  .footer-row { display: flex; flex-wrap: wrap; align-items: baseline; justify-content: space-between; gap: 16px; }
  .footer-links { display: flex; flex-wrap: wrap; gap: 22px; font-size: 0.875rem; }
  .footer-links a { text-decoration: none; color: rgba(255,255,255,0.6); }
  .footer-links a:hover { color: #fff; }
  footer .wordmark { color: #fff; }
  @media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } .btn { transition: none; } }

  /* ---------- Shared footer ---------- */
  .footer-grid { display: grid; grid-template-columns: 1fr; gap: 36px; }
  @media (min-width: 720px) { .footer-grid { grid-template-columns: minmax(240px, 1.7fr) repeat(3, 1fr); } }
  .footer-brand p { max-width: 34ch; margin: 16px 0 0; font-size: .875rem; line-height: 1.6; }
  .footer-group { display: flex; flex-direction: column; align-items: flex-start; gap: 11px; font-size: .875rem; }
  .footer-group strong { color: #fff; font-size: .75rem; letter-spacing: .08em; text-transform: uppercase; }
  .footer-group a { color: rgba(255,255,255,.62); text-decoration: none; }
  .footer-group a:hover { color: #fff; }
  .pill-nav a[aria-current="page"] { background: var(--color-hover-soft); color: var(--color-ink); }

  /* ---------- Guides and articles ---------- */
  .article-wrap { width: min(100% - 48px, 760px); margin-inline: auto; }
  .article-hero { padding: clamp(150px, 20vw, 210px) 0 88px; }
  .article-hero h1 { max-width: 900px; margin: 0; font-family: var(--font-serif); font-size: clamp(2.65rem, 7vw, 5.5rem); font-weight: 600; letter-spacing: -.035em; line-height: .98; }
  .article-deck { max-width: 690px; margin: 28px 0 0; color: rgba(255,255,255,.76); font-size: clamp(1.1rem, 2vw, 1.35rem); line-height: 1.6; }
  .article-meta { display: flex; flex-wrap: wrap; gap: 8px 20px; margin-top: 26px; color: rgba(255,255,255,.52); font-size: .8125rem; }
  .article-body { padding: 76px 0 100px; }
  .article-body h2 { margin: 64px 0 18px; font-family: var(--font-serif); font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 600; letter-spacing: -.025em; line-height: 1.1; }
  .article-body h3 { margin: 38px 0 12px; font-size: 1.15rem; line-height: 1.35; }
  .article-body p, .article-body li { color: var(--color-prose); font-size: 1.0625rem; line-height: 1.78; }
  .article-body p { margin: 0 0 24px; }
  .article-body ul, .article-body ol { margin: 0 0 28px; padding-left: 25px; }
  .article-body li { margin-bottom: 10px; }
  .article-body a { text-decoration-color: var(--color-brand-orange); text-decoration-thickness: 2px; text-underline-offset: 3px; }
  .article-body .lede { font-family: var(--font-serif); font-size: 1.45rem; line-height: 1.55; }
  .article-note { margin: 38px 0; padding: 24px 26px; border-left: 4px solid var(--color-brand-blue); background: var(--color-paper); }
  .article-note p:last-child { margin-bottom: 0; }
  .article-figure { width: min(100% - 32px, 1100px); margin: 56px auto; }
  .article-figure img { width: 100%; height: auto; border: 1px solid var(--color-border-strong); border-radius: 16px; box-shadow: 0 24px 70px rgba(15,23,42,.13); }
  .article-figure figcaption { width: min(100%, 760px); margin: 16px auto 0; color: var(--color-muted); font-size: .875rem; line-height: 1.6; }
  .archive-model { display: grid; grid-template-columns: 1fr; gap: 12px; margin: 36px 0; }
  @media (min-width: 640px) { .archive-model { grid-template-columns: repeat(3, 1fr); } }
  .archive-model div { padding: 22px; border: 1px solid var(--color-border-strong); border-radius: 12px; background: var(--color-paper); }
  .archive-model strong { display: block; margin-bottom: 7px; color: var(--color-ink); }
  .archive-model span { color: var(--color-soft); font-size: .875rem; line-height: 1.55; }
  .article-cta { margin-top: 72px; padding: 38px; border-radius: 18px; background: var(--color-photo-shell); color: #fff; }
  .article-cta h2 { margin-top: 0; }
  .article-cta p { color: rgba(255,255,255,.72); }
  .article-cta .btn-row { margin-top: 26px; }
  .related-guides { margin-top: 64px; padding-top: 38px; border-top: 1px solid var(--color-border-strong); }
  .related-guides h2 { margin-top: 0; }
  .guide-index-section { padding: 76px 0 110px; }
  .guide-index-section h2 { margin: 58px 0 18px; font-family: var(--font-serif); font-size: 2.1rem; }
  .guide-index-section h2:first-child { margin-top: 0; }
  .guide-list { border-top: 1px solid var(--color-border-strong); }
  .guide-list a { display: block; padding: 28px 0; border-bottom: 1px solid var(--color-border-strong); text-decoration: none; }
  .guide-list a:hover strong { color: var(--color-brand-blue); }
  .guide-list strong, .guide-list span { display: block; }
  .guide-list strong { margin: 7px 0 8px; font-family: var(--font-serif); font-size: 1.6rem; line-height: 1.2; }
  .guide-list span:last-child, .coming-soon { color: var(--color-muted); line-height: 1.65; }
  .guide-list-label { color: var(--color-brand-blue); font-size: .75rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
