/* ============================================================
   Focusfuse — Personal site
   Brand: dark canvas · electric-violet → warm-amber "fuse" accent
   ============================================================ */

:root {
  --bg:        #07070B;
  --bg-soft:   #0C0C13;
  --card:      rgba(255,255,255,0.025);
  --card-hover:rgba(255,255,255,0.045);
  --border:    rgba(255,255,255,0.07);
  --border-lit:rgba(255,255,255,0.14);
  --text:      #F4F4F7;
  --muted:     rgba(255,255,255,0.46);
  --muted-2:   rgba(255,255,255,0.30);

  --accent:      #FF7A2F;   /* brand orange (primary)      */
  --accent-warm: #FFB24D;   /* amber / gold (the glow)     */
  --accent-soft: rgba(255,122,47,0.14);
  --grad: linear-gradient(120deg, #FF6A2C 0%, #FF8A3D 50%, #FFB24D 100%);

  --radius:   18px;
  --radius-sm:13px;
  --maxw:     1080px;
  --ease:     cubic-bezier(0.22, 1, 0.36, 1);
}

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

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: inherit; }

.ms-icon {
  font-family: "Material Symbols Rounded";
  font-weight: normal;
  font-style: normal;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  -webkit-font-smoothing: antialiased;
  font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 24;
  user-select: none;
  vertical-align: middle;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  background: var(--accent);
  color: #07070B;
  padding: 10px 18px;
  border-radius: 0 0 10px 0;
  font-weight: 700;
  font-size: 14px;
}
.skip-link:focus { left: 0; }

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

.grad-text {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* ─────────────── NAV ─────────────── */
nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 28px;
  transition: background .35s var(--ease), backdrop-filter .35s, padding .35s, border-color .35s;
  border-bottom: 1px solid transparent;
}
nav.scrolled {
  background: rgba(7,7,11,0.72);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-bottom: 1px solid var(--border);
  padding: 13px 28px;
}

.nav-logo { display: inline-flex; align-items: center; gap: 11px; text-decoration: none; }
.nav-mark {
  width: 28px; height: 28px; border-radius: 8px;
  display: block; flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(255,122,47,0.30);
}
.nav-word { font-size: 13px; font-weight: 800; letter-spacing: 3.5px; color: var(--text); }

.nav-links { display: flex; gap: 30px; }
.nav-links a {
  font-size: 14px; font-weight: 500; color: var(--muted);
  text-decoration: none; transition: color .2s;
}
.nav-links a:hover { color: var(--text); }

.nav-cta {
  background: var(--text); color: #07070B;
  font-size: 13.5px; font-weight: 700;
  padding: 9px 18px; border-radius: 999px;
  text-decoration: none;
  transition: transform .15s var(--ease), box-shadow .2s, opacity .15s;
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 8px 24px rgba(255,255,255,0.12); }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 6px;
}
.nav-toggle span { width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: transform .3s, opacity .3s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed; top: 0; right: 0; z-index: 99;
  width: min(78vw, 320px); height: 100svh;
  background: rgba(10,10,16,0.97);
  backdrop-filter: blur(20px);
  border-left: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 4px;
  padding: 96px 26px 26px;
  transform: translateX(100%);
  transition: transform .4s var(--ease);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a {
  font-size: 18px; font-weight: 600; color: var(--text);
  text-decoration: none; padding: 14px 8px;
  border-bottom: 1px solid var(--border);
}
.mobile-menu .mobile-cta {
  margin-top: 16px; border: none; text-align: center;
  background: var(--grad); color: #07070B; border-radius: 12px; font-weight: 700;
}

/* ─────────────── HERO ─────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center;
  padding: 120px 24px 80px;
  overflow: hidden;
}
#orb-canvas { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; }
.hero-fade-top {
  position: absolute; top: 0; left: 0; right: 0; height: 180px; z-index: 1; pointer-events: none;
  background: linear-gradient(to bottom, var(--bg), transparent);
}
.hero-fade-bottom {
  position: absolute; bottom: 0; left: 0; right: 0; height: 320px; z-index: 1; pointer-events: none;
  background: linear-gradient(to top, var(--bg), transparent);
}

.hero-content { position: relative; z-index: 2; max-width: 820px; }

/* soft dark scrim behind hero text so it stays legible over the orb glow,
   while the glow still shows around the edges (applies to home + app hero) */
.hero-content::before, .page-hero-content::before {
  content: "";
  position: absolute;
  inset: -12% -20%;
  z-index: -1;
  background: radial-gradient(62% 60% at 50% 50%,
    rgba(7,7,11,0.66) 0%,
    rgba(7,7,11,0.40) 46%,
    transparent 78%);
  pointer-events: none;
}

.hero-eyebrow {
  font-size: 12px; font-weight: 700; letter-spacing: 4px; color: var(--accent);
  margin-bottom: 22px;
  opacity: 0; animation: fadeIn 1s var(--ease) .2s forwards;
}
.hero-headline {
  font-size: clamp(38px, 7.4vw, 76px);
  font-weight: 900; line-height: 1.05; letter-spacing: -2px;
  text-shadow: 0 2px 40px rgba(0,0,0,0.6);
  opacity: 0; animation: riseIn 1.2s var(--ease) .35s forwards;
}
.hero-tagline {
  font-size: clamp(15px, 2vw, 18px);
  color: rgba(255,255,255,0.74); max-width: 600px; margin: 24px auto 0;
  line-height: 1.7;
  text-shadow: 0 1px 22px rgba(0,0,0,0.65);
  opacity: 0; animation: fadeIn 1s var(--ease) .7s forwards;
}
.hero-tagline strong { color: var(--text); font-weight: 700; }

.hero-actions {
  display: flex; gap: 13px; justify-content: center; flex-wrap: wrap;
  margin-top: 38px;
  opacity: 0; animation: fadeIn 1s var(--ease) .9s forwards;
}

.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 15px; font-weight: 700; font-family: inherit;
  padding: 14px 24px; border-radius: 999px;
  text-decoration: none; cursor: pointer; border: none;
  transition: transform .15s var(--ease), box-shadow .25s, opacity .15s, background .2s;
}
.btn .ms-icon { font-size: 19px; }
.btn-primary { background: var(--grad); color: #1a0f06; box-shadow: 0 8px 30px rgba(255,122,47,0.30); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(255,122,47,0.45); }
.btn-ghost { background: rgba(255,255,255,0.06); color: var(--text); border: 1px solid var(--border-lit); }
.btn-ghost:hover { background: rgba(255,255,255,0.1); transform: translateY(-2px); }
.btn-block { width: 100%; justify-content: center; }

.hero-stats {
  list-style: none; display: flex; justify-content: center; flex-wrap: wrap;
  gap: 14px 46px; margin-top: 56px;
  opacity: 0; animation: fadeIn 1s var(--ease) 1.1s forwards;
}
.hero-stats li { display: flex; flex-direction: column; align-items: center; gap: 3px; }
.stat-num {
  font-size: clamp(30px, 5vw, 42px); font-weight: 800; letter-spacing: -1px;
  background: var(--grad); -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  line-height: 1;
}
.stat-num.stat-static { font-size: clamp(24px, 4vw, 34px); }
.stat-label { font-size: 12px; color: var(--muted); letter-spacing: .5px; }

.scroll-hint {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 8px;
  text-decoration: none;
  opacity: 0; animation: fadeIn 1s var(--ease) 1.8s forwards;
}
.scroll-hint span:first-child { font-size: 10px; letter-spacing: 2.5px; color: var(--muted-2); }
.scroll-hint-arrow {
  width: 1px; height: 34px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.3), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse { 0%,100%{opacity:.3;transform:scaleY(1);} 50%{opacity:.85;transform:scaleY(1.25);} }

/* ─────────────── SECTIONS ─────────────── */
.section { padding: 92px 0; }
.section-eyebrow {
  font-size: 11.5px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--accent); margin-bottom: 14px;
}
.section-heading {
  font-size: clamp(28px, 4.6vw, 44px); font-weight: 800; letter-spacing: -1px;
  line-height: 1.1; margin-bottom: 18px;
}
.section-body { font-size: 16px; color: var(--muted); max-width: 580px; line-height: 1.75; }
.section-body strong { color: var(--text); font-weight: 600; }
.divider { height: 1px; background: var(--border); }

/* ─────────────── APPS ─────────────── */
.apps-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
  margin-top: 46px;
}
.app-card {
  position: relative;
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 26px 24px 24px;
  display: flex; flex-direction: column;
  transition: border-color .25s, transform .25s var(--ease), background .25s;
  overflow: hidden;
}
.app-card::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 3px;
  background: var(--app); opacity: .55; transition: opacity .25s;
}
.app-card:hover { border-color: var(--border-lit); transform: translateY(-4px); background: var(--card-hover); }
.app-card:hover::before { opacity: 1; }

.app-card-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.app-icon {
  width: 56px; height: 56px; border-radius: 15px; object-fit: cover;
  background: #fff; box-shadow: 0 6px 18px rgba(0,0,0,0.4);
}
.app-icon-svg {
  display: flex; align-items: center; justify-content: center;
  background: rgba(70,200,232,0.1); box-shadow: none;
}

.status-pill {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 11.5px; font-weight: 700; letter-spacing: .3px;
  padding: 6px 12px; border-radius: 999px;
}
.status-dot { width: 7px; height: 7px; border-radius: 50%; }
.status-live { background: rgba(64,220,140,0.12); color: #5be39a; }
.status-live .status-dot { background: #5be39a; box-shadow: 0 0 0 0 rgba(91,227,154,0.7); animation: livePulse 2s infinite; }
.status-soon { background: rgba(255,255,255,0.06); color: var(--muted); }
.status-soon .status-dot { background: var(--muted); }
@keyframes livePulse {
  0% { box-shadow: 0 0 0 0 rgba(91,227,154,0.55); }
  70% { box-shadow: 0 0 0 7px rgba(91,227,154,0); }
  100% { box-shadow: 0 0 0 0 rgba(91,227,154,0); }
}

.app-name { font-size: 21px; font-weight: 800; letter-spacing: -.3px; }
.app-category { font-size: 12.5px; font-weight: 600; color: var(--app); margin: 4px 0 12px; }
.app-desc { font-size: 14px; color: var(--muted); line-height: 1.65; }

.chip-row { list-style: none; display: flex; flex-wrap: wrap; gap: 7px; margin: 18px 0 22px; }
.chip-row li {
  font-size: 11.5px; font-weight: 500; color: rgba(255,255,255,0.62);
  background: rgba(255,255,255,0.04); border: 1px solid var(--border);
  padding: 5px 11px; border-radius: 8px;
}

.app-link {
  margin-top: auto;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-size: 14px; font-weight: 700; text-decoration: none;
  padding: 12px 16px; border-radius: 12px;
  transition: transform .15s var(--ease), box-shadow .2s, background .2s;
}
.app-link .ms-icon { font-size: 18px; }
.app-link.play { background: var(--text); color: #07070B; }
.app-link.play:hover { transform: translateY(-2px); box-shadow: 0 10px 26px rgba(255,255,255,0.16); }
.app-link.disabled {
  background: rgba(255,255,255,0.035); color: var(--muted);
  border: 1px solid var(--border); cursor: default;
}

/* secondary "learn more" link on an app card */
.app-more {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 12px; align-self: flex-start;
  font-size: 13px; font-weight: 700; color: var(--accent);
  text-decoration: none; transition: gap .2s var(--ease);
}
.app-more:hover { gap: 10px; text-decoration: underline; }
.app-more .ms-icon { font-size: 16px; }

/* ─────────────── ABOUT ─────────────── */
.about-grid { display: grid; grid-template-columns: 1.35fr 1fr; gap: 44px; align-items: start; }
.about-text .section-body { margin-bottom: 18px; }
.about-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.about-tags span {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.74);
  background: var(--card); border: 1px solid var(--border);
  padding: 9px 14px; border-radius: 999px;
}
.about-tags .ms-icon { font-size: 17px; color: var(--accent); }

.about-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 10px 22px;
}
.about-card-row {
  display: flex; align-items: center; gap: 15px;
  padding: 16px 0; border-bottom: 1px solid var(--border);
}
.about-card-row:last-child { border-bottom: none; }
.about-card-row > .ms-icon {
  font-size: 20px; color: var(--accent);
  width: 40px; height: 40px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: var(--accent-soft); border-radius: 11px;
}
.about-card-row div { display: flex; flex-direction: column; }
.ac-label { font-size: 11.5px; color: var(--muted); letter-spacing: .4px; }
.ac-value { font-size: 15px; font-weight: 600; }

/* ─────────────── STACK ─────────────── */
.stack-groups { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 46px; }
.stack-group { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 26px 24px; }
.stack-group-title {
  font-size: 13px; font-weight: 700; letter-spacing: .5px; color: var(--text);
  margin-bottom: 18px; padding-bottom: 14px; border-bottom: 1px solid var(--border);
}
.stack-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.stack-list li {
  position: relative; padding-left: 22px;
  font-size: 14.5px; color: rgba(255,255,255,0.78);
}
.stack-list li::before {
  content: ""; position: absolute; left: 0; top: 8px;
  width: 7px; height: 7px; border-radius: 50%; background: var(--grad);
}

/* ─────────────── PROCESS ─────────────── */
.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 46px; }
.process-card {
  position: relative;
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 30px 26px;
  transition: border-color .25s, transform .25s var(--ease);
}
.process-card:hover { border-color: var(--border-lit); transform: translateY(-4px); }
.process-num {
  font-size: 13px; font-weight: 800; letter-spacing: 1px;
  background: var(--grad); -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.process-title {
  display: flex; align-items: center; gap: 10px;
  font-size: 19px; font-weight: 800; margin: 12px 0 12px;
}
.process-title .ms-icon { font-size: 22px; color: var(--accent); }
.process-desc { font-size: 14px; color: var(--muted); line-height: 1.7; }

/* ─────────────── CONTACT ─────────────── */
.contact-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 18px; margin-top: 46px; }
.contact-form {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 30px 28px;
}
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 12.5px; font-weight: 600; color: var(--muted); margin-bottom: 7px; }
.field input, .field textarea {
  width: 100%; background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-lit); border-radius: 11px;
  padding: 13px 15px; color: var(--text); font-size: 15px; font-family: inherit;
  outline: none; transition: border-color .2s, background .2s; resize: vertical;
}
.field input::placeholder, .field textarea::placeholder { color: var(--muted-2); }
.field input:focus, .field textarea:focus { border-color: var(--accent); background: rgba(255,122,47,0.06); }
.form-note { font-size: 12.5px; color: var(--muted); text-align: center; margin-top: 14px; }
.form-note.success { color: #5be39a; }
.form-note.error { color: #ff8a8a; }

.contact-side { display: flex; flex-direction: column; gap: 12px; }
.contact-link {
  display: flex; align-items: center; gap: 15px;
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 17px 20px;
  text-decoration: none; transition: border-color .2s, transform .2s var(--ease), background .2s;
}
.contact-link:hover { border-color: var(--border-lit); transform: translateX(3px); background: var(--card-hover); }
.contact-link > .ms-icon {
  font-size: 20px; color: var(--accent);
  width: 42px; height: 42px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: var(--accent-soft); border-radius: 11px;
}
.contact-link span span { display: block; }
.cl-label { font-size: 11.5px; color: var(--muted); }
.cl-value { font-size: 14.5px; font-weight: 600; color: var(--text); }

/* ─────────────── FOOTER ─────────────── */
footer { border-top: 1px solid var(--border); padding: 34px 0; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap; }
.footer-copy { font-size: 13px; color: var(--muted); }
.footer-links { display: flex; gap: 22px; }
.footer-links a { font-size: 13px; color: var(--muted); text-decoration: none; transition: color .2s; }
.footer-links a:hover { color: var(--text); }

/* ─────────────── SCROLL REVEAL ─────────────── */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.visible { opacity: 1; transform: none; }

/* ─────────────── KEYFRAMES ─────────────── */
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes riseIn { from { opacity: 0; transform: translateY(22px) scale(.98); } to { opacity: 1; transform: none; } }

/* ─────────────── RESPONSIVE ─────────────── */
@media (max-width: 900px) {
  .apps-grid, .stack-groups, .process-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 30px; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .apps-grid, .stack-groups, .process-grid { grid-template-columns: 1fr; }
  .section { padding: 70px 0; }
  .container { padding: 0 22px; }
  .hero-stats { gap: 14px 32px; }
}
@media (max-width: 460px) {
  .hero { padding: 110px 20px 70px; }
  .footer-inner { flex-direction: column; text-align: center; }
}

/* ─────────────── REDUCED MOTION ─────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
  [style*="animation"], .hero-eyebrow, .hero-headline, .hero-tagline, .hero-actions, .hero-stats, .scroll-hint { opacity: 1 !important; }
}

/* ============================================================
   SUBPAGES — app landing + legal (privacy / terms)
   ============================================================ */

/* page hero (clears the fixed nav) */
.page-hero {
  position: relative;
  padding: 150px 24px 56px;
  text-align: center;
  overflow: hidden;
}
.page-hero-content { position: relative; z-index: 2; max-width: 760px; margin: 0 auto; }

.back-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 600; color: var(--muted);
  text-decoration: none; margin-bottom: 24px; transition: color .2s, transform .2s var(--ease);
}
.back-link:hover { color: var(--text); transform: translateX(-3px); }
.back-link .ms-icon { font-size: 18px; }

.app-hero-icon {
  width: 92px; height: 92px; border-radius: 22px; object-fit: cover;
  background: #fff; box-shadow: 0 14px 44px rgba(0,0,0,0.5);
  margin: 0 auto 24px; display: block;
}

/* ratings/quick facts row under app hero */
.hero-facts {
  list-style: none; display: flex; justify-content: center; flex-wrap: wrap;
  gap: 12px 34px; margin-top: 34px;
}
.hero-facts li { display: flex; flex-direction: column; align-items: center; gap: 3px; }
.hero-facts .hf-num {
  font-size: 22px; font-weight: 800; letter-spacing: -.5px;
  background: var(--grad); -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.hero-facts .hf-label { font-size: 12px; color: var(--muted); letter-spacing: .4px; }

/* feature grid */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 46px; }
.feature-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 26px 24px;
  transition: border-color .25s, transform .25s var(--ease), background .25s;
}
.feature-card:hover { border-color: var(--border-lit); transform: translateY(-4px); background: var(--card-hover); }
.feature-ic {
  width: 46px; height: 46px; border-radius: 13px;
  display: flex; align-items: center; justify-content: center;
  background: var(--accent-soft); margin-bottom: 16px;
}
.feature-ic .ms-icon { font-size: 24px; color: var(--accent); }
.feature-card h3 { font-size: 17px; font-weight: 800; letter-spacing: -.2px; margin-bottom: 8px; }
.feature-card p { font-size: 13.5px; color: var(--muted); line-height: 1.65; }

/* download / CTA band */
.cta-band {
  background:
    radial-gradient(120% 140% at 50% 0%, rgba(255,122,47,0.10), transparent 60%),
    var(--card);
  border: 1px solid var(--border-lit);
  border-radius: var(--radius);
  padding: 52px 32px; text-align: center; margin-top: 8px;
}
.cta-band h2 { font-size: clamp(24px, 4vw, 34px); font-weight: 800; letter-spacing: -1px; margin-bottom: 12px; }
.cta-band p { font-size: 15px; color: var(--muted); max-width: 520px; margin: 0 auto 26px; line-height: 1.7; }

/* ─────────────── LEGAL / PROSE ─────────────── */
.legal { max-width: 820px; margin: 0 auto; }
.legal .lead { font-size: 16px; color: var(--muted); line-height: 1.85; margin-bottom: 14px; }
.legal h2 {
  font-size: 21px; font-weight: 800; letter-spacing: -.3px;
  margin: 40px 0 12px; scroll-margin-top: 90px;
}
.legal h3 { font-size: 16px; font-weight: 700; margin: 24px 0 8px; color: var(--text); }
.legal p { font-size: 15px; color: rgba(255,255,255,0.72); line-height: 1.85; margin-bottom: 14px; }
.legal ul { margin: 0 0 16px; padding: 0; list-style: none; }
.legal li {
  position: relative; padding-left: 22px; margin-bottom: 10px;
  font-size: 15px; color: rgba(255,255,255,0.72); line-height: 1.7;
}
.legal li::before { content: ""; position: absolute; left: 0; top: 9px; width: 7px; height: 7px; border-radius: 50%; background: var(--grad); }
.legal a { color: var(--accent); text-decoration: none; }
.legal a:hover { text-decoration: underline; }
.legal strong { color: var(--text); font-weight: 600; }

.legal-meta {
  display: flex; flex-wrap: wrap; gap: 8px 22px; align-items: center;
  font-size: 13px; color: var(--muted-2); margin-bottom: 30px;
  padding-bottom: 22px; border-bottom: 1px solid var(--border);
}

.note-card {
  background: var(--accent-soft); border: 1px solid rgba(255,122,47,0.22);
  border-radius: var(--radius-sm); padding: 16px 18px; margin: 8px 0 18px;
}
.note-card p { margin: 0; color: rgba(255,255,255,0.82); font-size: 14px; }

/* table of contents for legal pages */
.toc {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 18px 22px; margin-bottom: 30px;
}
.toc-title { font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--muted); margin-bottom: 12px; }
.toc ol { margin: 0; padding-left: 20px; columns: 2; column-gap: 28px; }
.toc li { margin-bottom: 7px; font-size: 13.5px; }
.toc a { color: rgba(255,255,255,0.72); text-decoration: none; }
.toc a:hover { color: var(--accent); }

@media (max-width: 900px) { .feature-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 720px) {
  .feature-grid { grid-template-columns: 1fr; }
  .page-hero { padding: 128px 22px 44px; }
  .toc ol { columns: 1; }
}
