/* ============================================================
   DigitalCloud Ops Ltd — Editorial Dark Design System
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300..900;1,9..144,300..900&family=Manrope:wght@300;400;500;600;700;800&family=JetBrains+Mono:wght@300;400;500;600&display=swap');

:root {
  --bg: #0c0d0f;
  --bg-elevated: #131418;
  --surface: #15171b;
  --surface-2: #1a1d22;
  --border: #23262d;
  --border-bright: #2e323a;
  --text: #ebe7df;
  --text-dim: #b5b3ad;
  --text-muted: #7c7e84;
  --text-faint: #4a4d54;
  --accent: #c9f04a;
  --accent-dim: #8aa72d;
  --accent-glow: rgba(201, 240, 74, 0.15);
  --danger: #ff6b4a;

  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Manrope', -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', 'SF Mono', Menlo, monospace;

  --max-w: 1280px;
  --pad-x: clamp(20px, 4vw, 56px);

  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  font-weight: 400;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  letter-spacing: -0.005em;
  background-image:
    radial-gradient(ellipse 800px 600px at 80% -10%, rgba(201, 240, 74, 0.04), transparent 60%),
    radial-gradient(ellipse 600px 400px at 0% 30%, rgba(80, 100, 160, 0.04), transparent 60%);
  background-attachment: fixed;
}

::selection { background: var(--accent); color: var(--bg); }

a { color: inherit; text-decoration: none; transition: color 0.2s var(--ease); }
a:hover { color: var(--accent); }

img, svg { display: block; max-width: 100%; }

/* ============================================================
   LAYOUT
   ============================================================ */

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
}

.section {
  padding: clamp(80px, 12vw, 160px) 0;
  position: relative;
}

.section + .section { border-top: 1px solid var(--border); }

.section-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.section-label::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--accent);
}

.section-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  max-width: 900px;
  margin-bottom: 24px;
}

.section-title em {
  font-style: italic;
  color: var(--accent);
  font-weight: 300;
}

.section-intro {
  font-size: clamp(16px, 1.4vw, 19px);
  color: var(--text-dim);
  max-width: 640px;
  line-height: 1.6;
}

/* ============================================================
   NAVIGATION
   ============================================================ */

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(12, 13, 15, 0.78);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--text);
}

.brand-mark {
  width: 22px;
  height: 22px;
  border-radius: 5px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dim));
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg);
  font-weight: 800;
  font-size: 12px;
  font-family: var(--font-body);
}

.brand-mark::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 7px;
  background: var(--accent-glow);
  filter: blur(8px);
  z-index: -1;
}

.brand strong { font-weight: 600; color: var(--text); }
.brand span.dim { color: var(--text-muted); }

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
  font-size: 14px;
  color: var(--text-dim);
}

.nav-links a { font-weight: 500; }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  background: var(--accent);
  color: var(--bg);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  font-family: var(--font-body);
  border: 1px solid var(--accent);
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.nav-cta:hover {
  color: var(--bg);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px -8px var(--accent-glow);
}

@media (max-width: 760px) {
  .nav-links { display: none; }
}

/* ============================================================
   HERO
   ============================================================ */

.hero {
  padding: clamp(80px, 14vw, 180px) 0 clamp(80px, 12vw, 140px);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 90% 70% at 50% 40%, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 90% 70% at 50% 40%, black 30%, transparent 80%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: end;
}

@media (min-width: 960px) {
  .hero-inner { grid-template-columns: 1.4fr 1fr; gap: 80px; }
}

.hero-eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 36px;
  animation: fadeUp 0.8s var(--ease) both;
}

.hero-eyebrow .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent);
  animation: pulse 2s ease-in-out infinite;
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(44px, 8vw, 104px);
  line-height: 0.98;
  letter-spacing: -0.035em;
  margin-bottom: 32px;
  animation: fadeUp 0.9s var(--ease) 0.1s both;
}

.hero-title em {
  font-style: italic;
  color: var(--accent);
  font-weight: 300;
}

.hero-sub {
  font-size: clamp(17px, 1.5vw, 21px);
  color: var(--text-dim);
  max-width: 540px;
  line-height: 1.55;
  margin-bottom: 40px;
  animation: fadeUp 0.9s var(--ease) 0.2s both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  animation: fadeUp 0.9s var(--ease) 0.3s both;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  font-family: var(--font-body);
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.2s var(--ease), background 0.2s var(--ease), border-color 0.2s var(--ease);
}

.btn-primary {
  background: var(--accent);
  color: var(--bg);
  border-color: var(--accent);
}
.btn-primary:hover {
  color: var(--bg);
  transform: translateY(-1px);
  box-shadow: 0 12px 32px -10px var(--accent-glow);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border-bright);
}
.btn-ghost:hover {
  border-color: var(--text-dim);
  background: var(--surface);
  color: var(--text);
}

.btn .arrow { transition: transform 0.25s var(--ease); }
.btn:hover .arrow { transform: translateX(3px); }

/* Hero side panel: status / receipts */
.hero-meta {
  border: 1px solid var(--border);
  background: linear-gradient(180deg, var(--surface), var(--bg-elevated));
  border-radius: 16px;
  padding: 28px;
  font-family: var(--font-mono);
  font-size: 12.5px;
  animation: fadeUp 0.9s var(--ease) 0.4s both;
  position: relative;
  overflow: hidden;
}

.hero-meta::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.5;
}

.hero-meta h4 {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-meta h4::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--accent);
}

.hero-meta ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.hero-meta li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  color: var(--text-dim);
  padding-bottom: 12px;
  border-bottom: 1px dashed var(--border);
}
.hero-meta li:last-child { border-bottom: none; padding-bottom: 0; }
.hero-meta li span:first-child { color: var(--text-muted); font-size: 11.5px; }
.hero-meta li span:last-child { color: var(--text); font-weight: 500; text-align: right; }

/* ============================================================
   CLIENTS / TRUST STRIP
   ============================================================ */

.trust {
  padding: 40px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.trust-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 32px;
}

.trust-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.trust-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 18px;
  color: var(--text-dim);
  letter-spacing: -0.01em;
}

.trust-logos span { opacity: 0.7; transition: opacity 0.2s; }
.trust-logos span:hover { opacity: 1; color: var(--text); }

/* ============================================================
   SERVICES GRID
   ============================================================ */

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  margin-top: 64px;
}

@media (min-width: 720px) { .services-grid { grid-template-columns: 1fr 1fr; } }

.service-card {
  background: var(--bg);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  transition: background 0.3s var(--ease);
}

.service-card:hover { background: var(--bg-elevated); }

.service-num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.1em;
}

.service-title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text);
}

.service-desc {
  color: var(--text-dim);
  font-size: 15px;
  line-height: 1.6;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.service-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  padding: 5px 10px;
  border: 1px solid var(--border-bright);
  border-radius: 4px;
  color: var(--text-dim);
  background: var(--surface);
}

/* ============================================================
   STACK / CAPABILITIES
   ============================================================ */

.stack-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-top: 64px;
}

@media (min-width: 720px) { .stack-grid { grid-template-columns: repeat(3, 1fr); } }

.stack-col h3 {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.stack-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.stack-col li {
  font-size: 15px;
  color: var(--text-dim);
  display: flex;
  align-items: center;
  gap: 10px;
}

.stack-col li::before {
  content: '→';
  color: var(--text-faint);
  font-family: var(--font-mono);
}

/* ============================================================
   PRICING
   ============================================================ */

.pricing-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}

.pricing-tab {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 8px 0;
  border-bottom: 1px solid transparent;
}

.pricing-tab.active {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 32px;
  margin-bottom: 80px;
}

@media (min-width: 760px) { .pricing-grid { grid-template-columns: repeat(3, 1fr); } }

.pricing-card {
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 28px;
  background: var(--bg-elevated);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: border-color 0.2s var(--ease), transform 0.2s var(--ease);
}

.pricing-card:hover { border-color: var(--border-bright); }

.pricing-card.featured {
  border-color: var(--accent-dim);
  background: linear-gradient(180deg, rgba(201, 240, 74, 0.04), var(--bg-elevated));
}

.pricing-card.featured::before {
  content: attr(data-badge);
  position: absolute;
  top: -10px;
  left: 24px;
  background: var(--accent);
  color: var(--bg);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
}

.pricing-name {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 8px;
}

.pricing-amount {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 400;
  letter-spacing: -0.03em;
  color: var(--text);
}

.pricing-amount.poa {
  font-size: 28px;
  font-style: italic;
  color: var(--text-dim);
  line-height: 1;
}

.pricing-amount-prefix {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--text-muted);
  font-style: italic;
  font-weight: 300;
}

.pricing-period {
  font-size: 14px;
  color: var(--text-muted);
}

.pricing-desc {
  font-size: 14px;
  color: var(--text-dim);
  margin: 16px 0 24px;
  line-height: 1.55;
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
  flex: 1;
}

.pricing-features li {
  font-size: 14px;
  color: var(--text-dim);
  padding-left: 22px;
  position: relative;
  line-height: 1.5;
}

.pricing-features li::before {
  content: '';
  position: absolute;
  left: 0; top: 8px;
  width: 12px;
  height: 1.5px;
  background: var(--accent);
}

.pricing-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 12px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  font-family: var(--font-body);
  background: transparent;
  border: 1px solid var(--border-bright);
  color: var(--text);
  cursor: pointer;
  transition: all 0.2s var(--ease);
}

.pricing-btn:hover {
  background: var(--accent);
  color: var(--bg);
  border-color: var(--accent);
}

.pricing-card.featured .pricing-btn {
  background: var(--accent);
  color: var(--bg);
  border-color: var(--accent);
}

.pricing-card.featured .pricing-btn:hover {
  background: var(--text);
  border-color: var(--text);
}

.pricing-note {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
  margin-top: 16px;
}

/* Sub-section heading for pricing split */
.pricing-subhead {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  margin-top: 64px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.pricing-subhead h3 {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 400;
  letter-spacing: -0.02em;
}

.pricing-subhead h3 em { font-style: italic; color: var(--accent); font-weight: 300; }

.pricing-subhead p {
  font-size: 14px;
  color: var(--text-muted);
  max-width: 360px;
  text-align: right;
}

/* ============================================================
   PROCESS
   ============================================================ */

.process-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin-top: 64px;
  border-top: 1px solid var(--border);
}

.process-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  padding: 36px 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}

@media (min-width: 720px) {
  .process-item { grid-template-columns: 120px 1fr 1fr; gap: 48px; }
}

.process-num {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--accent);
  letter-spacing: 0.1em;
  padding-top: 6px;
}

.process-item h3 {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.5vw, 28px);
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--text);
}

.process-item p {
  font-size: 15px;
  color: var(--text-dim);
  line-height: 1.6;
}

/* ============================================================
   ABOUT / COMPANY
   ============================================================ */

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  margin-top: 56px;
}

@media (min-width: 880px) {
  .about-grid { grid-template-columns: 1.3fr 1fr; gap: 80px; }
}

.about-prose p {
  font-size: 17px;
  color: var(--text-dim);
  line-height: 1.7;
  margin-bottom: 20px;
}

.about-prose p strong { color: var(--text); font-weight: 600; }

.company-card {
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  background: var(--surface);
  font-family: var(--font-mono);
  font-size: 13px;
}

.company-card h4 {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.company-card dl {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.company-card div { display: flex; flex-direction: column; gap: 4px; }

.company-card dt {
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.company-card dd {
  color: var(--text);
  font-size: 14px;
  font-weight: 500;
}

.company-card .placeholder { color: var(--accent); }

/* ============================================================
   CONTACT
   ============================================================ */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 56px;
}

@media (min-width: 760px) { .contact-grid { grid-template-columns: repeat(3, 1fr); } }

.contact-grid--single {
  grid-template-columns: 1fr !important;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.contact-card {
  padding: 32px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--bg-elevated);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-card h4 {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.contact-card p {
  font-size: 16px;
  color: var(--text);
  font-weight: 500;
}

.contact-card a { color: var(--accent); font-weight: 500; }

/* ============================================================
   FOOTER
   ============================================================ */

.footer {
  border-top: 1px solid var(--border);
  padding: 80px 0 40px;
  background: var(--bg);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 64px;
}

@media (min-width: 720px) {
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 56px; }
}

.footer-col h5 {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-col li a { color: var(--text-dim); font-size: 14px; }
.footer-col li a:hover { color: var(--accent); }

.footer-brand-block { max-width: 360px; }
.footer-brand-block p {
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.6;
  margin-top: 16px;
  font-family: var(--font-mono);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-muted);
}

/* ============================================================
   LEGAL PAGES (terms, privacy, refunds)
   ============================================================ */

.legal-hero {
  padding: 100px 0 60px;
  border-bottom: 1px solid var(--border);
}

.legal-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.legal-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.legal-title em { font-style: italic; color: var(--accent); font-weight: 300; }

.legal-meta {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-muted);
}

.legal-body {
  padding: 80px 0 120px;
  max-width: 760px;
  margin: 0 auto;
}

.legal-body h2 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin: 56px 0 16px;
  color: var(--text);
  scroll-margin-top: 100px;
}

.legal-body h2:first-child { margin-top: 0; }

.legal-body h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin: 32px 0 12px;
  color: var(--text);
}

.legal-body p, .legal-body li {
  font-size: 16px;
  color: var(--text-dim);
  line-height: 1.7;
  margin-bottom: 14px;
}

.legal-body ul, .legal-body ol { padding-left: 22px; margin-bottom: 16px; }

.legal-body strong { color: var(--text); font-weight: 600; }

.legal-body a { color: var(--accent); border-bottom: 1px solid var(--accent-dim); }

.legal-toc {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px 28px;
  margin-bottom: 48px;
  font-family: var(--font-mono);
  font-size: 13px;
}

.legal-toc h4 {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.legal-toc ol { padding-left: 20px; }
.legal-toc li { font-size: 13px; color: var(--text-dim); margin-bottom: 6px; }
.legal-toc li a { color: var(--text-dim); }
.legal-toc li a:hover { color: var(--accent); }

/* ============================================================
   ANIMATIONS
   ============================================================ */

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.5; transform: scale(0.85); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
}
