/* Form2, marketing site
   Design tokens mirror the app (app_colors.dart / app_text_styles.dart). */

:root {
  --bg: #0D0F11;
  --bg-2: #111315;
  --surface: #171A1E;
  --surface-2: #1F242A;
  --border: #2C333B;
  --border-soft: #232a31;
  --text: #F2EFE8;
  --muted: #8B939D;
  --dim: #5B6470;
  --accent: #E57B31;
  --accent-bright: #FF7A1F;
  --accent-soft: rgba(229, 123, 49, 0.12);
  --success: #56B38A;
  --danger: #D66855;
  --amber: #D8A63D;
  --teal: #4FB8C9;
  --purple: #9B8CFF;
  --maxw: 1180px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --font: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text",
    system-ui, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
  letter-spacing: -0.01em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

.eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}
.eyebrow.muted { color: var(--dim); }

h1, h2, h3 { letter-spacing: -0.03em; line-height: 1.04; font-weight: 700; }

.grad-text {
  background: linear-gradient(120deg, var(--accent-bright), var(--accent) 60%, #f0a05a);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 600; font-size: 15px;
  padding: 13px 22px; border-radius: 13px;
  border: 1px solid transparent;
  transition: transform 0.25s var(--ease), background 0.25s, border-color 0.25s, opacity 0.25s;
  cursor: pointer; white-space: nowrap;
}
.btn:active { transform: scale(0.97); }
.btn-primary {
  background: linear-gradient(135deg, var(--accent-bright), var(--accent));
  color: #140d07;
  box-shadow: 0 10px 30px -10px rgba(229,123,49,0.6);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 40px -12px rgba(229,123,49,0.7); }
.btn-ghost { background: var(--surface); border-color: var(--border); color: var(--text); }
.btn-ghost:hover { border-color: var(--accent); background: var(--surface-2); }

.appstore-badge {
  display: inline-block;
  transition: transform 0.25s var(--ease), opacity 0.25s;
}
.appstore-badge:hover { transform: translateY(-2px); opacity: 0.88; }
.appstore-badge img { height: 52px; width: auto; display: block; }

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 100;
  backdrop-filter: saturate(160%) blur(18px);
  background: rgba(13,15,17,0.72);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, background 0.3s;
}
.nav.scrolled { border-color: var(--border-soft); background: rgba(13,15,17,0.9); }
.nav .row { display: flex; align-items: center; justify-content: space-between; height: 66px; }
.brand { display: flex; align-items: center; gap: 11px; font-weight: 700; font-size: 18px; letter-spacing: -0.02em; }
.logo-mark {
  width: 30px; height: 30px; border-radius: 8px;
  background: linear-gradient(135deg, var(--accent-bright), var(--accent));
  display: grid; place-items: center;
  font-weight: 800; font-style: italic; font-size: 15px; color: #100a05;
  box-shadow: 0 6px 16px -6px rgba(229,123,49,0.7);
  flex: none;
}
.logo-img {
  width: 30px; height: 30px; border-radius: 8px; flex: none;
  box-shadow: 0 6px 16px -6px rgba(229,123,49,0.5);
}
.brand-wordmark { height: 22px; width: auto; display: block; flex: none; }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a { color: var(--muted); font-size: 14px; font-weight: 500; transition: color 0.2s; }
.nav-links a:hover { color: var(--text); }
.nav-cta { display: flex; align-items: center; gap: 14px; }
@media (max-width: 860px) { .nav-links { display: none; } }

/* ---------- Hero ---------- */
.hero { position: relative; padding: 86px 0 40px; overflow: hidden; }
.hero-glow {
  position: absolute; top: -200px; left: 50%; transform: translateX(-50%);
  width: 900px; height: 700px;
  background: radial-gradient(ellipse at center, rgba(229,123,49,0.22), transparent 62%);
  filter: blur(20px); pointer-events: none; z-index: 0;
}
.hero .wrap { position: relative; z-index: 1; }
.hero-grid {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 40px; align-items: center;
}
.hero h1 { font-size: clamp(40px, 6vw, 68px); margin: 18px 0 22px; }
.hero p.sub { font-size: clamp(17px, 2vw, 20px); color: var(--muted); max-width: 520px; line-height: 1.55; }
.hero-cta { display: flex; align-items: center; gap: 14px; margin-top: 32px; flex-wrap: wrap; }
.hero-meta { display: flex; gap: 26px; margin-top: 30px; flex-wrap: wrap; }
.hero-meta .item { display: flex; flex-direction: column; gap: 3px; }
.hero-meta .k { font-size: 22px; font-weight: 700; letter-spacing: -0.02em; }
.hero-meta .l { font-size: 12px; color: var(--dim); text-transform: uppercase; letter-spacing: 0.1em; }
.hero-phones { display: flex; justify-content: center; align-items: center; position: relative; }
@media (max-width: 920px) {
  .hero-grid { grid-template-columns: 1fr; gap: 10px; }
  .hero-phones { margin-top: 20px; }
  .hero p.sub { max-width: none; }
}

/* ---------- Replaces strip ---------- */
.replaces { padding: 26px 0 6px; }
.replaces .inner {
  display: flex; align-items: center; justify-content: center; gap: 14px 34px; flex-wrap: wrap;
  color: var(--dim); font-size: 14px;
}
.replaces .label { text-transform: uppercase; letter-spacing: 0.14em; font-size: 11px; font-weight: 600; color: var(--dim); }
.replaces .name { color: var(--muted); font-weight: 600; font-size: 15px; }
.replaces .strike { position: relative; }
.replaces .strike::after {
  content: ""; position: absolute; left: -2px; right: -2px; top: 52%; height: 1.5px;
  background: var(--accent); transform: scaleX(0); transform-origin: left; opacity: 0.8;
}
.replaces.in .strike::after { animation: strike 0.5s var(--ease) forwards; }
.replaces .strike:nth-child(2)::after { animation-delay: 0.1s; }
.replaces .strike:nth-child(3)::after { animation-delay: 0.2s; }
.replaces .strike:nth-child(4)::after { animation-delay: 0.3s; }
.replaces .strike:nth-child(5)::after { animation-delay: 0.4s; }
@keyframes strike { to { transform: scaleX(1); } }

/* ---------- Sections ---------- */
section { position: relative; }
.band { padding: 96px 0; }
.band-head { max-width: 680px; margin-bottom: 52px; }
.band-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.band-head h2 { font-size: clamp(30px, 4.4vw, 46px); margin: 14px 0 16px; }
.band-head p { font-size: 18px; color: var(--muted); line-height: 1.6; }
.divider { height: 1px; background: var(--border-soft); }

/* feature split */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split.rev .copy { order: 2; }
.split.rev .art { order: 1; }
@media (max-width: 920px) { .split, .split.rev { grid-template-columns: 1fr; gap: 30px; }
  .split.rev .copy, .split.rev .art { order: initial; } }
.split .copy h3 { font-size: clamp(26px, 3.4vw, 36px); margin: 14px 0 16px; }
.split .copy p { color: var(--muted); font-size: 17px; line-height: 1.6; max-width: 460px; }
.feat-list { list-style: none; margin-top: 24px; display: flex; flex-direction: column; gap: 13px; }
.feat-list li { display: flex; gap: 12px; align-items: flex-start; font-size: 15px; color: var(--text); }
.feat-list li .dot { color: var(--accent); margin-top: 2px; flex: none; }
.feat-list li b { font-weight: 600; }
.feat-list li span.m { color: var(--muted); font-weight: 400; }

/* pillar cards */
.pillars { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
@media (max-width: 820px) { .pillars { grid-template-columns: 1fr; } }
.pillar {
  background: linear-gradient(180deg, var(--surface), var(--bg-2));
  border: 1px solid var(--border); border-radius: 20px; padding: 28px;
  transition: transform 0.3s var(--ease), border-color 0.3s;
}
.pillar:hover { transform: translateY(-4px); border-color: var(--accent); }
.pillar .ring-ico { width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; margin-bottom: 18px; font-size: 22px; }
.pillar h3 { font-size: 20px; margin-bottom: 8px; }
.pillar p { color: var(--muted); font-size: 15px; line-height: 1.55; }

/* feature grid */
.fgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
@media (max-width: 920px) { .fgrid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .fgrid { grid-template-columns: 1fr; } }
.fcard {
  background: var(--surface); border: 1px solid var(--border); border-radius: 16px;
  padding: 22px; transition: transform 0.3s var(--ease), border-color 0.3s, background 0.3s;
}
.fcard:hover { transform: translateY(-3px); border-color: var(--border); background: var(--surface-2); }
.fcard .ico { font-size: 20px; margin-bottom: 12px; display: block; }
.fcard h4 { font-size: 16px; font-weight: 650; margin-bottom: 7px; letter-spacing: -0.02em; }
.fcard p { color: var(--muted); font-size: 14px; line-height: 1.5; }

/* insight callout */
.insight-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: 18px; padding: 22px;
  max-width: 440px; box-shadow: 0 30px 60px -30px rgba(0,0,0,0.7);
}
.insight-card .ic-title { display: flex; align-items: center; gap: 9px; color: var(--accent); font-weight: 600; font-size: 15px; margin-bottom: 9px; }
.insight-card .ic-title .pip { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 4px var(--accent-soft); }
.insight-card .ic-body { color: var(--muted); font-size: 14.5px; line-height: 1.55; margin-bottom: 16px; }
.insight-card .ic-do {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  background: var(--accent-soft); border: 1px solid rgba(229,123,49,0.3); border-radius: 12px;
  padding: 13px 15px; font-size: 14px; font-weight: 600; color: var(--text);
}
.insight-card .ic-do .tag { color: var(--accent); font-size: 11px; letter-spacing: 0.12em; }
.insight-card .ic-do .arr { color: var(--accent); }

/* comparison table */
.compare { overflow-x: auto; border: 1px solid var(--border); border-radius: 18px; }
table.cmp { width: 100%; border-collapse: collapse; min-width: 640px; }
table.cmp th, table.cmp td { padding: 15px 16px; text-align: center; font-size: 14px; border-bottom: 1px solid var(--border-soft); }
table.cmp thead th { font-size: 12px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); font-weight: 600; }
table.cmp tbody td:first-child, table.cmp thead th:first-child { text-align: left; font-weight: 500; color: var(--text); }
table.cmp .us { background: var(--accent-soft); color: var(--accent); font-weight: 700; position: relative; }
table.cmp thead .us { color: var(--accent); }
table.cmp .yes { color: var(--success); font-weight: 700; }
table.cmp .no { color: var(--dim); }
table.cmp .part { color: var(--amber); }
table.cmp tbody tr:last-child td { border-bottom: none; }

/* CTA band */
.cta-band {
  margin: 0 auto; text-align: center; padding: 88px 0;
  position: relative; overflow: hidden;
}
.cta-band .glow {
  position: absolute; inset: 0; background: radial-gradient(ellipse at center, rgba(229,123,49,0.18), transparent 60%);
  pointer-events: none;
}
.cta-band h2 { font-size: clamp(32px, 5vw, 54px); position: relative; }
.cta-band p { color: var(--muted); font-size: 18px; margin: 16px auto 30px; max-width: 540px; position: relative; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; }

/* ---------- Cinematic band ---------- */
.cinematic {
  position: relative;
  min-height: 84vh;
  display: flex; align-items: flex-end; justify-content: center;
  text-align: center;
  padding-bottom: clamp(40px, 7vh, 84px);
  background: #000 url('cinematic.jpg') center center / cover no-repeat;
  overflow: hidden;
}
/* athlete centered + full-body; the scrim stays clear over his face/torso and
   darkens from his thighs down so the text sits on a clean stage. */
.cinematic::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg,
    var(--bg) 0%, rgba(13,15,17,0) 18%, rgba(13,15,17,0) 46%,
    rgba(13,15,17,0.5) 68%, rgba(13,15,17,0.88) 87%, var(--bg) 100%);
}
.cinematic-inner { position: relative; z-index: 1; max-width: 940px; }
.cinematic h2 {
  font-size: clamp(26px, 3.6vw, 44px); margin: 14px 0 28px;
  white-space: nowrap;
  text-shadow: 0 2px 30px rgba(0,0,0,0.6);
}
@media (max-width: 620px) { .cinematic h2 { white-space: normal; } }
.cinematic .eyebrow { text-shadow: 0 2px 18px rgba(0,0,0,0.6); }
@media (max-width: 760px) { .cinematic { min-height: 70vh; } }

/* footer */
footer { border-top: 1px solid var(--border-soft); padding: 54px 0 40px; color: var(--muted); }
.foot-grid { display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.foot-brand { max-width: 320px; }
.foot-brand p { color: var(--muted); font-size: 14px; line-height: 1.6; margin-top: 14px; }
.foot-cols { display: flex; gap: 56px; flex-wrap: wrap; }
.foot-col h5 { font-size: 12px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--dim); margin-bottom: 14px; }
.foot-col a { display: block; color: var(--muted); font-size: 14px; margin-bottom: 10px; transition: color 0.2s; }
.foot-col a:hover { color: var(--text); }
.foot-bottom { margin-top: 44px; padding-top: 22px; border-top: 1px solid var(--border-soft); display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 13px; color: var(--dim); }

/* reveal animation */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.08s; }
.reveal.d2 { transition-delay: 0.16s; }
.reveal.d3 { transition-delay: 0.24s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ============ PHONE MOCKUPS ============ */
.phone {
  position: relative; width: 300px; aspect-ratio: 300 / 620;
  background: #04070a; border-radius: 46px; padding: 11px;
  box-shadow: 0 50px 90px -30px rgba(0,0,0,0.85), 0 0 0 2px #1b1f24, inset 0 0 0 2px #000;
  flex: none;
}
.phone .notch {
  position: absolute; top: 16px; left: 50%; transform: translateX(-50%);
  width: 98px; height: 26px; background: #000; border-radius: 16px; z-index: 5;
}
.phone .screen {
  width: 100%; height: 100%; border-radius: 36px; overflow: hidden;
  background: var(--bg-2); position: relative;
  display: flex; flex-direction: column;
}
.screen-img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: top center;
  display: block;
}
.phone.tilt-l { transform: rotate(-5deg); }
.phone.tilt-r { transform: rotate(5deg); }
.phone.small { width: 226px; }
.phone.behind { position: absolute; z-index: 0; opacity: 0.85; }

/* in-screen app UI */
.scr { padding: 44px 16px 16px; font-size: 11px; color: var(--text); height: 100%; overflow: hidden; }
.scr .topbar { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 14px; }
.scr .topbar .ttl { font-size: 17px; font-weight: 700; letter-spacing: -0.02em; }
.scr .topbar .sub { font-size: 9px; letter-spacing: 0.14em; color: var(--dim); text-transform: uppercase; }
.scr .card { background: var(--surface); border: 1px solid var(--border); border-radius: 16px; padding: 14px; margin-bottom: 11px; }
.scr .chip { display: inline-flex; align-items: center; gap: 5px; font-size: 8.5px; font-weight: 700; letter-spacing: 0.06em; padding: 4px 8px; border-radius: 7px; }
.scr .chip.green { background: rgba(86,179,138,0.16); color: var(--success); }
.scr .chip.amber { background: rgba(216,166,61,0.16); color: var(--amber); }
.scr .chip.accent { background: var(--accent-soft); color: var(--accent); }
.scr .streak { font-size: 40px; font-weight: 800; letter-spacing: -0.04em; line-height: 1; }
.scr .streak small { font-size: 9px; letter-spacing: 0.12em; color: var(--dim); font-weight: 600; display: block; margin-top: 4px; text-transform: uppercase; }

.rings { display: flex; justify-content: space-around; margin: 14px 0 4px; }
.ring { width: 58px; text-align: center; }
.ring .r {
  width: 52px; height: 52px; border-radius: 50%; margin: 0 auto 6px;
  display: grid; place-items: center; font-size: 13px; font-weight: 800;
}
.ring .lbl { font-size: 8px; letter-spacing: 0.08em; color: var(--dim); text-transform: uppercase; font-weight: 600; }
.ring.train .r { background: conic-gradient(var(--accent) 78%, var(--surface-2) 0); }
.ring.fuel .r  { background: conic-gradient(var(--success) 64%, var(--surface-2) 0); }
.ring.rec .r   { background: conic-gradient(var(--teal) 88%, var(--surface-2) 0); }
.ring .r span { width: 40px; height: 40px; border-radius: 50%; background: var(--bg-2); display: grid; place-items: center; }

.statrow { display: flex; gap: 8px; margin-top: 8px; }
.statrow .s { flex: 1; background: var(--surface-2); border-radius: 10px; padding: 8px; }
.statrow .s .v { font-size: 14px; font-weight: 700; }
.statrow .s .k { font-size: 7.5px; color: var(--dim); text-transform: uppercase; letter-spacing: 0.08em; margin-top: 2px; }

.scr .insight .it { display: flex; align-items: center; gap: 6px; color: var(--accent); font-weight: 700; font-size: 11px; margin-bottom: 6px; }
.scr .insight .it .p { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }
.scr .insight .ib { color: var(--muted); font-size: 10px; line-height: 1.45; margin-bottom: 9px; }
.scr .insight .ido { display: flex; justify-content: space-between; background: var(--accent-soft); border: 1px solid rgba(229,123,49,0.3); border-radius: 9px; padding: 8px 10px; font-size: 9px; font-weight: 700; }
.scr .insight .ido .tg { color: var(--accent); }

/* macro donut */
.donut { width: 58px; height: 58px; border-radius: 50%; flex: none;
  background: conic-gradient(var(--accent) 0 38%, var(--success) 38% 70%, var(--amber) 70% 100%);
  display: grid; place-items: center; }
.donut span { width: 40px; height: 40px; background: var(--surface); border-radius: 50%; display: grid; place-items: center; font-size: 9px; font-weight: 700; }
.bars { flex: 1; display: flex; flex-direction: column; gap: 7px; }
.bars .b .top { display: flex; justify-content: space-between; font-size: 8px; color: var(--muted); margin-bottom: 3px; text-transform: uppercase; letter-spacing: 0.06em; }
.bars .b .track { height: 5px; background: var(--surface-2); border-radius: 4px; overflow: hidden; }
.bars .b .track i { display: block; height: 100%; border-radius: 4px; }

/* gauge */
.gauge { height: 8px; border-radius: 6px; background: linear-gradient(90deg, var(--danger), var(--amber), var(--success)); position: relative; margin: 10px 0 6px; }
.gauge .pin { position: absolute; top: -4px; width: 3px; height: 16px; background: var(--text); border-radius: 2px; box-shadow: 0 0 0 2px var(--bg-2); }

/* sparkline area */
.spark { height: 46px; width: 100%; }

/* sleep stage bar */
.stages { display: flex; height: 14px; border-radius: 5px; overflow: hidden; margin-top: 10px; }
.stages i { height: 100%; }

.muscle-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 6px; margin-top: 8px; }
.muscle-grid .m { background: var(--surface-2); border-radius: 8px; padding: 7px 5px; text-align: center; }
.muscle-grid .m .d { width: 7px; height: 7px; border-radius: 50%; margin: 0 auto 4px; }
.muscle-grid .m .n { font-size: 7px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.04em; }

/* ============ LEGAL PAGES ============ */
.legal { max-width: 800px; margin: 0 auto; padding: 60px 24px 100px; }
.legal .back { display: inline-flex; align-items: center; gap: 7px; color: var(--muted); font-size: 14px; margin-bottom: 34px; transition: color 0.2s; }
.legal .back:hover { color: var(--accent); }
.legal h1 { font-size: clamp(32px, 5vw, 46px); margin-bottom: 10px; }
.legal .updated { color: var(--dim); font-size: 14px; margin-bottom: 14px; }
.legal .intro { color: var(--muted); font-size: 17px; line-height: 1.65; margin-bottom: 34px; padding-bottom: 34px; border-bottom: 1px solid var(--border-soft); }
.legal h2 { font-size: 22px; margin: 40px 0 14px; letter-spacing: -0.02em; }
.legal h3 { font-size: 17px; margin: 26px 0 10px; font-weight: 650; }
.legal p { color: var(--muted); font-size: 15.5px; line-height: 1.7; margin-bottom: 14px; }
.legal ul { margin: 0 0 16px 0; padding-left: 4px; list-style: none; }
.legal ul li { color: var(--muted); font-size: 15.5px; line-height: 1.65; margin-bottom: 10px; padding-left: 22px; position: relative; }
.legal ul li::before { content: "›"; position: absolute; left: 4px; color: var(--accent); font-weight: 700; }
.legal a { color: var(--accent); }
.legal strong, .legal b { color: var(--text); font-weight: 600; }
.legal .callout { background: var(--surface); border: 1px solid var(--border); border-radius: 14px; padding: 18px 20px; margin: 22px 0; }
.legal .callout p { margin: 0; color: var(--text); font-size: 14.5px; }
.legal table { width: 100%; border-collapse: collapse; margin: 18px 0; font-size: 14px; }
.legal table th, .legal table td { text-align: left; padding: 12px 14px; border-bottom: 1px solid var(--border-soft); vertical-align: top; }
.legal table th { color: var(--muted); font-size: 12px; text-transform: uppercase; letter-spacing: 0.06em; }
.legal table td { color: var(--muted); }
.legal table td:first-child { color: var(--text); font-weight: 600; white-space: nowrap; }
.legal .legal-foot { margin-top: 50px; padding-top: 26px; border-top: 1px solid var(--border-soft); display: flex; gap: 18px; justify-content: space-between; flex-wrap: wrap; font-size: 13px; color: var(--dim); }
.legal .legal-foot a { color: var(--muted); }

/* ---------- Line icons (replaces emoji) ---------- */
.ring-ico svg { width: 24px; height: 24px; }
.fcard .ico { color: var(--accent); }
.fcard .ico svg { width: 22px; height: 22px; }
.ico-lock { color: var(--accent); display: inline-flex; margin-bottom: 12px; }
.ico-lock svg { width: 40px; height: 40px; }
table.cmp .mark { display: inline-flex; vertical-align: middle; }
table.cmp .mark svg { width: 18px; height: 18px; }
