
:root {
  --nav: #9ca3af;

  --heroA: #0b1220;
  --heroB: #0a1830;
  --heroC: #07101e;

  --panelStroke: rgba(255, 255, 255, 0.12);

  --textSoft: rgba(255, 255, 255, 0.75);
  --textFaint: rgba(255, 255, 255, 0.55);

  --accent: #34b6ff;
  --accentBtn: #2563eb;
  --accentBtnHover: #3b82f6;

  /* Lighter Bolt style panel and card tones */
  --panelBlueA: rgba(41, 88, 140, 0.45);
  --panelBlueB: rgba(25, 62, 105, 0.35);
  --cardTint: rgba(64, 128, 186, 0.30);
  --cardBorder: rgba(255, 255, 255, 0.14);
  
}


html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont,
  "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

body {
  background: #ffffff;
  font-family: inherit;
}
.hero h1 {
  font-weight: 700;              /* closer to reference headline weight */
  letter-spacing: -0.02em;       /* slightly tighter like the example */
  line-height: 1.05;             /* more breathing room */
}

.hero h1 .hero-accent {
  font-weight: 800;
}

/* Header */
/* Default state blends with hero */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(0, 0, 0, 0.35);
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

/* Scrolled state becomes solid nav */
.site-header.is-scrolled {
  background: var(--nav);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

@media (max-width: 640px) {
  .btn-primary,
  .btn-secondary {
    width: 100%;
    justify-content: center;
    padding: 18px 28px;
    font-size: 17px;
  }
}

.brand-name {
  font-weight: 700;
  letter-spacing: -0.01em;
}

/* Text colours differ depending on header state */
.site-header:not(.is-scrolled) .brand-name {
  color: rgba(255, 255, 255, 0.92);
}

.site-header.is-scrolled .brand-name {
  color: #0f172a;
}

.nav-links {
  color: rgba(255, 255, 255, 0.72);
}

.site-header.is-scrolled .nav-links {
  color: rgba(15, 23, 42, 0.70);
}

.nav-link:hover {
  color: rgba(255, 255, 255, 0.95);
}

.site-header.is-scrolled .nav-link:hover {
  color: rgba(15, 23, 42, 0.95);
}
/* Header exact screenshot style */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: #ffffff;
  border-bottom: 1px solid rgba(15, 23, 42, 0.10);
}

.header-inner {
  height: 72px;
  max-width: 1152px;
  margin: 0 auto;
  padding: 0 24px;

  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  overflow: visible;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  justify-self: start;
  white-space: nowrap;
  min-width: max-content;
}

.brand-name {
  color: #0f172a !important;
  font-weight: 800;
  letter-spacing: -0.01em;
  font-size: 20px;
}

.brand-icon {
  height: 40px;
  width: 40px;
  border-radius: 12px;
  background: #1d4ed8;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 22px rgba(37, 99, 235, 0.25);
}

.brand-icon-svg {
  height: 20px;
  width: 20px;
}

.header-nav {
  justify-self: center;
  display: inline-flex;
  align-items: center;
  gap: 28px;
}

.nav-link {
  color: rgba(15, 23, 42, 0.78);
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
}

.nav-link:hover {
  color: rgba(15, 23, 42, 0.98);
}

.nav-link.subtle {
  color: rgba(15, 23, 42, 0.72);
}

.header-actions {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 18px;
}

.btn-header-primary {
  background: #2563eb;
  color: #ffffff;
  padding: 10px 18px;
  border-radius: 12px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 14px 30px rgba(37, 99, 235, 0.28);
}

.btn-header-primary:hover {
  background: #3b82f6;
}



.logo-badge {
  height: 40px;
  width: 40px;
  border-radius: 14px;

  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: #ffffff;

  display: flex;
  align-items: center;
  justify-content: center;

  border: none;
  box-shadow:
    0 8px 20px rgba(37, 99, 235, 0.35);
}
.brand-ico {
  height: 18px;
  width: 18px;
  color: #ffffff;
}
.logo-badge:hover {
  transform: translateY(-1px);
  box-shadow:
    0 12px 28px rgba(37, 99, 235, 0.45);
}

.site-header.is-scrolled .logo-badge {
  color: rgba(15, 23, 42, 0.90);
}

/* =========================
 BUTTON BASE
 ========================= */

.btn {
  border-radius: 8px;
  padding: 24px 32px;
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-decoration: none;
  cursor: pointer;
  transition:
    background 160ms ease,
    transform 160ms ease,
    box-shadow 160ms ease,
    color 160ms ease,
    border-color 160ms ease,
    filter 160ms ease;
}

/* =========================
   PRIMARY BUTTON
   ========================= */

.btn-primary {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: #ffffff;

  box-shadow:
    0 14px 32px rgba(37, 99, 235, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow:
    0 22px 50px rgba(37, 99, 235, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
  filter: brightness(1.05);
}

.btn-primary:active {
  transform: translateY(0);
  box-shadow:
    0 12px 24px rgba(37, 99, 235, 0.35);
}

/* =========================
   SECONDARY / GHOST BUTTON
   ========================= */

.btn-secondary {
  background: rgba(255, 255, 255, 0.10);
  color: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.18);

  backdrop-filter: blur(6px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-2px);
  box-shadow:
    0 14px 30px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

/* =========================
   HEADER SCROLLED STATE
   ========================= */

.site-header.is-scrolled .btn-secondary {
  background: rgba(255, 255, 255, 0.35);
  color: rgba(15, 23, 42, 0.92);
  border-color: rgba(255, 255, 255, 0.22);
}

.site-header.is-scrolled .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.46);
}

/* =========================
   ICONS INSIDE BUTTONS
   ========================= */

.btn svg,
.btn i {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
/* =========================
 BUTTON ALIASES, KEEP OLD CLASS NAMES WORKING
 ========================= */

/* If your HTML uses these older classes, map them to the new styles */
.btn-primary-lg {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: #ffffff;
  border: none;
  box-shadow:
    0 14px 32px rgba(37, 99, 235, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.btn-primary-lg:hover {
  transform: translateY(-2px);
  box-shadow:
    0 22px 50px rgba(37, 99, 235, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
  filter: brightness(1.05);
}

.btn-primary-lg:active {
  transform: translateY(0);
  box-shadow:
    0 12px 24px rgba(37, 99, 235, 0.35);
}

/* Secondary older class */
.btn-secondary-lg {
  background: rgba(255, 255, 255, 0.10);
  color: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(6px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.btn-secondary-lg:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-2px);
  box-shadow:
    0 14px 30px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

/* Ghost older class, treat it as secondary */
.btn-ghost {
  background: rgba(255, 255, 255, 0.10);
  color: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(6px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-2px);
  box-shadow:
    0 14px 30px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}





/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(900px 500px at 25% 30%, rgba(52, 182, 255, 0.18), transparent 60%),
    radial-gradient(700px 450px at 80% 20%, rgba(37, 99, 235, 0.16), transparent 55%),
    linear-gradient(135deg, var(--heroA), var(--heroB), var(--heroC));
}

.hero-inner {
  position: relative;
}

.hero-accent {
  color: var(--accent);
}

.hero-subtext {
  color: var(--textSoft);
}

/* Hero pill with beacon dot */
.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(52, 182, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(52, 182, 255, 0.92);
  font-weight: 700;
  font-size: 14px;
  line-height: 1;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
}

.hero-pill-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(0, 255, 42, 0.95);
  box-shadow: 0 0 0 0 rgba(52, 182, 255, 0.35);
  animation: beaconPulse 1.8s ease-in-out infinite;
}

.hero p {
  font-weight: 400;              /* lighter */
  line-height: 1.65;             /* critical */
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.82);
  max-width: 52ch;               /* improves readability */
}

@keyframes beaconPulse {
  0% {
    opacity: 0.85;
    box-shadow: 0 0 0 0 rgba(52, 182, 255, 0.30);
  }
  50% {
    opacity: 1;
    box-shadow: 0 0 0 10px rgba(52, 182, 255, 0.00);
  }
  100% {
    opacity: 0.85;
    box-shadow: 0 0 0 0 rgba(52, 182, 255, 0.00);
  }
}

/* Right panel glass, lighter and bluer like Bolt */
.hero-panel {
  border-radius: 28px;
  background: rgba(52, 182, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
  padding: 24px;
}

.hero-panel-inner {
  border-radius: 22px;
  background: linear-gradient(180deg, var(--panelBlueA), var(--panelBlueB));
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 24px;
}

/* Message cards, lighter tint */
.hero-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  border-radius: 20px;
  padding: 16px 18px;
  background: var(--cardTint);
  border: 1px solid var(--cardBorder);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.hero-label {
  font-size: 12px;
  color: var(--textFaint);
}

.hero-status {
  margin-top: 10px;
  font-size: 14px;
  display: block;
}

.hero-status-green {
  color: rgba(74, 222, 128, 0.90);
}

.hero-status-cyan {
  color: rgba(52, 182, 255, 0.92);
}

.hero-status-orange {
  color: rgba(251, 146, 60, 0.92);
}

.hero-icon {
  height: 40px;
  width: 40px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Feature card icon base */
.feature-icon {
  height: 48px;
  width: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow:
    0 10px 25px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
}
/* Feature icon colour variants */
.feature-orange {
  background: linear-gradient(135deg, #f59e0b, #f97316);
}

.feature-blue {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
}

.feature-green {
  background: linear-gradient(135deg, #22c55e, #16a34a);
}

.feature-purple {
  background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.feature-amber {
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
}

.feature-rose {
  background: linear-gradient(135deg, #fb7185, #e11d48);
}

.feature-teal {
  background: linear-gradient(135deg, #14b8a6, #0d9488);
}

.feature-indigo {
  background: linear-gradient(135deg, #6366f1, #4f46e5);
}



/* SECTION: Comparison */
.comparison {
  background: #f8fafc;
  padding: 72px 0;
}

.comparison-wrap {
  max-width: 1152px;
  margin: 0 auto;
  padding: 0 24px;
}

.comparison-head {
  text-align: center;
  margin-bottom: 44px;
}

.comparison-title {
  font-size: clamp(36px, 4.2vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-weight: 900;
  color: #0f172a;
  margin: 0;
}

.comparison-subtitle {
  margin: 14px auto 0;
  max-width: 720px;
  color: rgba(15, 23, 42, 0.70);
  font-size: 18px;
  line-height: 1.6;
}

.comparison-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: stretch;
}

@media (min-width: 900px) {
  .comparison-grid {
    grid-template-columns: 1fr 1fr;
    gap: 34px;
  }
}

.comp-card {
  border-radius: 22px;
  padding: 28px;
  box-shadow: 0 14px 35px rgba(15, 23, 42, 0.10);
  position: relative;
  overflow: hidden;
}

.comp-card--without {
  background: #ffffff;
  border: 1px solid rgba(244, 63, 94, 0.22);
}

.comp-card--with {
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.comp-card-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(240px 240px at 86% 22%, rgba(255, 255, 255, 0.14), transparent 60%),
    radial-gradient(320px 320px at 96% 6%, rgba(255, 255, 255, 0.10), transparent 55%),
    linear-gradient(180deg, #1d4ed8, #0ea5e9);
  pointer-events: none;
}

.comp-card--with > *:not(.comp-card-bg) {
  position: relative;
  z-index: 1;
}

.comp-card-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.comp-badge {
  height: 44px;
  width: 44px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.comp-badge-ico {
  height: 22px;
  width: 22px;
}

.comp-badge--without {
  background: rgba(244, 63, 94, 0.12);
  color: #ef4444;
}

.comp-badge--with {
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
}

.comp-card-title {
  margin: 0;
  font-size: 26px;
  font-weight: 900;
  letter-spacing: -0.01em;
  color: #0f172a;
}

.comp-card-title--with {
  color: #ffffff;
}

.comp-list {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: grid;
  gap: 14px;
}

.comp-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 16px;
  line-height: 1.55;
}

.comp-mark {
  height: 26px;
  width: 26px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  flex: 0 0 auto;
  margin-top: 1px;
}

.comp-mark--bad {
  background: rgba(244, 63, 94, 0.10);
  color: #ef4444;
}

.comp-mark--good {
  background: rgba(34, 197, 94, 0.18);
  color: #86efac;
}

.comp-result {
  margin-top: 22px;
  border-radius: 14px;
  padding: 14px 16px;
  font-weight: 500;
  font-size: 14px;
  text-align: center;
}

.comp-result--without {
  background: rgba(244, 63, 94, 0.06);
  border: 1px solid rgba(244, 63, 94, 0.18);
  color: #b91c1c;
}

.comp-result--with {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.92);
}


/* SECTION: How It Works */
.hiw {
  background: #ffffff;
  padding: 72px 0;
}

.hiw-wrap {
  max-width: 1152px;
  margin: 0 auto;
  padding: 0 24px;
}

.hiw-head {
  text-align: center;
  margin-bottom: 44px;
}

.hiw-title {
  margin: 0;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-weight: 900;
  color: #0f172a;
}

.hiw-subtitle {
  margin: 14px auto 0;
  max-width: 760px;
  font-size: 18px;
  line-height: 1.65;
  color: rgba(15, 23, 42, 0.72);
}

.hiw-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: stretch;
}

@media (min-width: 900px) {
  .hiw-grid {
    grid-template-columns: 1fr 32px 1fr 32px 1fr 32px 1fr;
    gap: 0;
    align-items: center;
  }
}

.hiw-card {
  position: relative;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.10);
  box-shadow: 0 14px 35px rgba(15, 23, 42, 0.10);
  padding: 56px 22px 22px;
  min-height: 260px;
}

.hiw-card--raised {
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.14);
}

.hiw-step {
  position: absolute;
  top: -18px;
  left: 18px;
  height: 44px;
  width: 44px;
  border-radius: 999px;
  background: #2563eb;
  color: #ffffff;
  display: grid;
  place-items: center;
  font-weight: 900;
  box-shadow: 0 14px 28px rgba(37, 99, 235, 0.28);
}

.hiw-step span {
  line-height: 1;
  font-size: 16px;
}

.hiw-icon {
  height: 52px;
  width: 52px;
  border-radius: 14px;
  background: rgba(37, 99, 235, 0.06);
  border: 1px solid rgba(37, 99, 235, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2563eb;
  margin-bottom: 18px;
}

.hiw-ico {
  height: 24px;
  width: 24px;
}

.hiw-card-title {
  margin: 0;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: #0f172a;
}

.hiw-card-text {
  margin: 12px 0 0;
  font-size: 16px;
  line-height: 1.65;
  color: rgba(15, 23, 42, 0.72);
}

.hiw-conn {
  display: none;
}

@media (min-width: 900px) {
  .hiw-conn {
    display: block;
    height: 2px;
    width: 100%;
    background: linear-gradient(90deg, rgba(37, 99, 235, 0.25), rgba(14, 165, 233, 0.25));
    justify-self: center;
    align-self: center;
  }
}

/* Reusable interactive card hover */
/* Clean Bolt style card hover */
.card-hover {
  transition:
    transform 300ms ease,
    box-shadow 300ms ease,
    border-color 300ms ease;
}

.card-hover:hover {
  transform: translateY(-5px);
  border-color: rgba(59, 130, 246, 0.55);
  box-shadow:
    0 18px 40px rgba(15, 23, 42, 0.12);
}

/* Optional, keeps keyboard focus clean too */
.card-hover:focus-within {
  border-color: rgba(59, 130, 246, 0.55);
  box-shadow:
    0 18px 40px rgba(15, 23, 42, 0.12);
}


/* Header layout */
.nav-wrap {
max-width: 1152px;
margin: 0 auto;
padding: 14px 24px;
display: flex;
align-items: center;
justify-content: space-between;
gap: 14px;
}

.brand {
display: inline-flex;
align-items: center;
gap: 12px;
text-decoration: none;
}

.brand-ico {
height: 18px;
width: 18px;
}

.nav-desktop,
.nav-actions-desktop {
display: none;
}

.nav-toggle {
display: inline-flex;
align-items: center;
justify-content: center;
height: 44px;
width: 44px;
border-radius: 12px;
border: 1px solid rgba(15, 23, 42, 0.10);
background: #ffffff;
color: rgba(15, 23, 42, 0.85);
cursor: pointer;
transition: box-shadow 160ms ease, transform 160ms ease;
}

.nav-toggle:hover {
box-shadow: 0 10px 25px rgba(15, 23, 42, 0.10);
transform: translateY(-1px);
}

.nav-toggle-ico {
height: 20px;
width: 20px;
}

.sr-only {
position: absolute;
width: 1px;
height: 1px;
padding: 0;
margin: -1px;
overflow: hidden;
clip: rect(0, 0, 0, 0);
white-space: nowrap;
border: 0;
}

/* Mobile menu */
.mobile-menu {
border-top: 1px solid rgba(15, 23, 42, 0.08);
background: #ffffff;
}

.mobile-links {
padding: 10px 24px 6px;
display: grid;
gap: 6px;
}

.mobile-link {
padding: 12px 12px;
border-radius: 12px;
text-decoration: none;
color: rgba(15, 23, 42, 0.82);
font-weight: 650;
}

.mobile-link:hover {
background: rgba(15, 23, 42, 0.04);
color: rgba(15, 23, 42, 0.95);
}

.mobile-actions {
padding: 12px 24px 18px;
display: grid;
gap: 10px;
}

.btn-full {
width: 100%;
}

/* Desktop breakpoint */
@media (min-width: 900px) {
.nav-toggle,
.mobile-menu {
  display: none !important;
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: 28px;
  margin-right: auto;
}

.nav-actions-desktop {
  display: flex;
  align-items: center;
  gap: 12px;
}
}





.hero-icon-green { background: #22c55e; }
.hero-icon-blue { background: #3b82f6; }
.hero-icon-orange { background: #f97316; }

/* Legal / Policy Page */
.legal-wrapper {
  background: #ffffff;
  padding: 72px 0;
}

.legal-inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px;
}

.legal-heading h1 {
  margin: 0;
  font-size: clamp(32px, 3.2vw, 40px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-weight: 800;
  color: #0f172a;
}

.legal-updated {
  margin-top: 8px;
  font-size: 14px;
  color: rgba(15, 23, 42, 0.65);
}

.legal-toc {
  margin: 32px 0 40px;
  padding: 16px 18px;
  border-radius: 12px;
  border: 1px solid rgba(148, 163, 184, 0.4);
  background: #f8fafc;
}

.legal-toc-title {
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 8px;
  color: rgba(15, 23, 42, 0.8);
}

.legal-toc ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 4px;
}

.legal-toc a {
  text-decoration: none;
  color: rgba(37, 99, 235, 0.95);
  font-weight: 500;
}

.legal-toc a:hover {
  text-decoration: underline;
}

.legal-section {
  margin-top: 40px;
}

.legal-section h2 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #0f172a;
}

.legal-section h3 {
  font-size: 18px;
  font-weight: 600;
  margin-top: 24px;
  margin-bottom: 8px;
  color: #0f172a;
}

.legal-section p,
.legal-section ul {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(15, 23, 42, 0.8);
}

.legal-section ul {
  padding-left: 1.25rem;
  margin-top: 8px;
}

.legal-section li + li {
  margin-top: 4px;
}



