/* Veldi Landing — Static CSS */
/* Converted from Landing.tsx inline styles */

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

.landing-page {
  --gold: #c8960c;
  --gold-light: #e8b42a;
  --gold-dim: rgba(200, 150, 12, 0.15);
  --l-bg: #151310;
  --l-surface: #1c1a15;
  --l-surface-2: #242118;
  --l-border: #2e2b20;
  --l-border-warm: #3d3928;
  --l-text: #f0ead8;
  --l-body: #b0a898;
  --l-muted: #6e6a58;

  background: var(--l-bg);
  color: var(--l-text);
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

/* Grain overlay */
.grain-overlay {
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 999;
  opacity: 0.6;
}

/* NAV */
.landing-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 24px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(to bottom, rgba(21,19,16,0.95) 0%, transparent 100%);
  backdrop-filter: blur(2px);
}

.landing-page .nav-logo {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 0.08em;
  text-decoration: none;
}

.landing-page .nav-links {
  display: flex;
  gap: 40px;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.landing-page .nav-links a {
  color: var(--l-body);
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.04em;
  transition: color 0.2s;
}

.landing-page .nav-links a:hover { color: var(--l-text); }

.landing-page .nav-cta {
  background: transparent;
  border: 1px solid var(--l-border-warm);
  color: var(--gold) !important;
  padding: 10px 22px;
  border-radius: 2px;
  font-size: 13px !important;
  letter-spacing: 0.08em !important;
  transition: all 0.2s !important;
}

.landing-page .nav-cta:hover {
  background: var(--gold-dim) !important;
  border-color: var(--gold) !important;
  color: var(--gold-light) !important;
}

/* HERO */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  left: -10%;
  width: 60%;
  height: 80%;
  background: radial-gradient(ellipse, rgba(200,150,12,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 10%;
  right: 5%;
  width: 40%;
  height: 50%;
  background: radial-gradient(ellipse, rgba(200,150,12,0.04) 0%, transparent 70%);
  pointer-events: none;
}

/* LEFT COLUMN */
.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 140px 64px 80px 80px;
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 40px;
  opacity: 0;
  animation: landingFadeUp 0.8s ease forwards 0.2s;
}

.eyebrow-line {
  width: 32px;
  height: 1px;
  background: var(--gold);
  opacity: 0.6;
}

.eyebrow-text {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.8;
}

.hero-heading {
  font-family: 'Fraunces', serif !important;
  font-size: clamp(52px, 5.5vw, 80px) !important;
  font-weight: 300 !important;
  line-height: 1.05 !important;
  letter-spacing: -0.02em;
  color: var(--l-text);
  margin-bottom: 32px;
  opacity: 0;
  animation: landingFadeUp 0.9s ease forwards 0.4s;
}

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

.hero-body {
  font-size: 17px;
  line-height: 1.7;
  color: var(--l-body);
  max-width: 420px;
  margin-bottom: 52px;
  font-weight: 300;
  opacity: 0;
  animation: landingFadeUp 0.9s ease forwards 0.6s;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  opacity: 0;
  animation: landingFadeUp 0.9s ease forwards 0.8s;
}

.btn-primary {
  background: var(--gold);
  color: var(--l-bg);
  border: none;
  padding: 16px 36px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.06em;
  border-radius: 2px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 60%);
  pointer-events: none;
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 8px 32px rgba(200,150,12,0.25);
}

.btn-secondary {
  color: var(--l-body);
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.03em;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s;
}

.btn-secondary:hover { color: var(--l-text); }
.btn-secondary svg { transition: transform 0.2s; }
.btn-secondary:hover svg { transform: translateX(3px); }

/* Social proof */
.hero-proof {
  margin-top: 64px;
  padding-top: 40px;
  border-top: 1px solid var(--l-border);
  display: flex;
  align-items: center;
  gap: 32px;
  opacity: 0;
  animation: landingFadeUp 0.9s ease forwards 1.0s;
}

.proof-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.proof-number {
  font-family: 'Fraunces', serif;
  font-size: 28px;
  font-weight: 400;
  color: var(--l-text);
  letter-spacing: -0.02em;
}

.proof-label {
  font-size: 12px;
  color: var(--l-muted);
  letter-spacing: 0.05em;
}

.proof-divider {
  width: 1px;
  height: 36px;
  background: var(--l-border);
}

/* RIGHT COLUMN */
.hero-right {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 80px 80px 40px;
  overflow: hidden;
}

.hero-right::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(200,150,12,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200,150,12,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 0%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 0%, transparent 100%);
}

.dashboard-card {
  background: var(--l-surface);
  border: 1px solid var(--l-border-warm);
  border-radius: 8px;
  width: 100%;
  max-width: 480px;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(200,150,12,0.08),
    0 40px 80px rgba(0,0,0,0.6),
    0 0 120px rgba(200,150,12,0.05);
  opacity: 0;
  animation: landingCardReveal 1.2s ease forwards 0.6s;
  position: relative;
  z-index: 2;
}

.card-header {
  padding: 20px 24px;
  border-bottom: 1px solid var(--l-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--l-surface-2);
}

.card-title {
  font-size: 13px;
  font-weight: 500;
  color: var(--l-body);
  letter-spacing: 0.04em;
}

.card-badge {
  font-size: 11px;
  color: var(--gold);
  background: var(--gold-dim);
  border: 1px solid rgba(200,150,12,0.2);
  padding: 3px 10px;
  border-radius: 2px;
  letter-spacing: 0.06em;
  font-weight: 500;
}

.net-worth {
  padding: 32px 24px 24px;
  border-bottom: 1px solid var(--l-border);
}

.net-worth-label {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--l-muted);
  margin-bottom: 8px;
}

.net-worth-value {
  font-family: 'Fraunces', serif;
  font-size: 42px;
  font-weight: 300;
  color: var(--l-text);
  letter-spacing: -0.02em;
  line-height: 1;
}

.net-worth-value span {
  font-size: 20px;
  color: var(--l-muted);
  margin-right: 4px;
  font-weight: 300;
}

.net-worth-change {
  margin-top: 8px;
  font-size: 13px;
  color: #7ab87a;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* Asset list */
.asset-list {
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.asset-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(46,43,32,0.6);
  opacity: 0;
  animation: landingSlideIn 0.5s ease forwards;
}

.asset-row:nth-child(1) { animation-delay: 1.2s; }
.asset-row:nth-child(2) { animation-delay: 1.4s; }
.asset-row:nth-child(3) { animation-delay: 1.6s; }
.asset-row:nth-child(4) { animation-delay: 1.8s; }
.asset-row:last-child { border-bottom: none; }

.asset-icon {
  width: 36px;
  height: 36px;
  border-radius: 6px;
  background: var(--l-surface-2);
  border: 1px solid var(--l-border-warm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.asset-info { flex: 1; min-width: 0; }

.asset-name {
  font-size: 14px;
  font-weight: 400;
  color: var(--l-text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.asset-sub {
  font-size: 12px;
  color: var(--l-muted);
  margin-top: 2px;
}

.asset-value {
  font-family: 'Fraunces', serif;
  font-size: 16px;
  font-weight: 400;
  color: var(--l-text);
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.asset-alert {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  box-shadow: 0 0 6px rgba(200,150,12,0.5);
}

.asset-ok {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: transparent;
  flex-shrink: 0;
}

/* Reminder strip */
.reminder-strip {
  margin: 0 24px 24px;
  background: rgba(200,150,12,0.06);
  border: 1px solid rgba(200,150,12,0.15);
  border-radius: 4px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: 0;
  animation: landingSlideIn 0.5s ease forwards 2s;
}

.reminder-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  animation: landingPulse 2s ease-in-out infinite;
}

.reminder-text {
  font-size: 13px;
  color: var(--l-body);
  line-height: 1.4;
}

.reminder-text strong {
  color: var(--gold);
  font-weight: 500;
}

/* Floating cards */
.float-card {
  position: absolute;
  background: var(--l-surface-2);
  border: 1px solid var(--l-border-warm);
  border-radius: 6px;
  padding: 14px 18px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
  opacity: 0;
  z-index: 3;
}

.float-card-1 {
  top: 18%;
  right: 10%;
  animation: landingFloatIn 0.7s ease forwards 1.8s;
}

.float-card-2 {
  bottom: 22%;
  left: 4%;
  animation: landingFloatIn 0.7s ease forwards 2.2s;
}

.float-label {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--l-muted);
  margin-bottom: 6px;
}

.float-value {
  font-family: 'Fraunces', serif;
  font-size: 20px;
  font-weight: 400;
  color: var(--l-text);
}

.float-sub {
  font-size: 11px;
  color: var(--gold);
  margin-top: 2px;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 80px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  opacity: 0;
  animation: landingFadeUp 0.8s ease forwards 1.4s;
}

.scroll-text {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--l-muted);
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: landingScrollPulse 2s ease-in-out infinite;
}

/* ANIMATIONS */
@keyframes landingFadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes landingCardReveal {
  from { opacity: 0; transform: translateY(30px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes landingSlideIn {
  from { opacity: 0; transform: translateX(-8px); }
  to   { opacity: 1; transform: translateX(0); }
}

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

@keyframes landingScrollPulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

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

/* Language switcher */
.lang-switcher { position: relative; }

.lang-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: 1px solid var(--l-border);
  color: var(--l-body);
  padding: 6px 12px;
  border-radius: 2px;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: all 0.2s;
}

.lang-toggle:hover {
  border-color: var(--l-border-warm);
  color: var(--l-text);
}

.lang-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--l-surface-2);
  border: 1px solid var(--l-border-warm);
  border-radius: 4px;
  list-style: none;
  margin: 0;
  padding: 4px 0;
  min-width: 56px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.5);
  z-index: 200;
  display: none;
}

.lang-dropdown.open { display: block; }

.lang-option {
  display: block;
  width: 100%;
  background: none;
  border: none;
  color: var(--l-body);
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.06em;
  padding: 8px 16px;
  cursor: pointer;
  text-align: center;
  transition: all 0.15s;
}

.lang-option:hover {
  background: var(--gold-dim);
  color: var(--l-text);
}

.lang-option--active {
  color: var(--gold);
  font-weight: 500;
}

/* Hamburger button */
.nav-hamburger {
  display: none;
  background: none;
  border: none;
  color: var(--l-body);
  cursor: pointer;
  padding: 4px;
  z-index: 101;
}

/* ===== SHARED SECTION LAYOUT ===== */
.section-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 80px;
}

.section-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 56px;
}

/* ===== FEATURES ===== */
.features-section {
  padding: 120px 0;
  border-top: 1px solid var(--l-border);
  position: relative;
}

.features-section::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 1px;
  background: var(--gold);
  opacity: 0.3;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}

.feature-card {
  padding: 40px 32px;
  background: var(--l-surface);
  border: 1px solid var(--l-border);
  border-radius: 8px;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
  border-color: var(--l-border-warm);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3), 0 0 40px rgba(200,150,12,0.04);
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: var(--gold-dim);
  border: 1px solid rgba(200,150,12,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: 24px;
}

.feature-title {
  font-family: 'Fraunces', serif;
  font-size: 20px;
  font-weight: 400;
  color: var(--l-text);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.feature-body {
  font-size: 15px;
  line-height: 1.7;
  color: var(--l-body);
  font-weight: 300;
}

/* ===== HOW IT WORKS ===== */
.how-section {
  padding: 120px 0;
  border-top: 1px solid var(--l-border);
  position: relative;
  background: var(--l-surface);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  counter-reset: step;
}

.step-card { position: relative; padding: 0 8px; }

.step-number {
  font-family: 'Fraunces', serif;
  font-size: 56px;
  font-weight: 300;
  color: var(--gold);
  opacity: 0.15;
  line-height: 1;
  display: block;
  margin-bottom: 16px;
  letter-spacing: -0.04em;
}

.step-title {
  font-family: 'Fraunces', serif;
  font-size: 20px;
  font-weight: 400;
  color: var(--l-text);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.step-body {
  font-size: 15px;
  line-height: 1.7;
  color: var(--l-body);
  font-weight: 300;
}

/* ===== ABOUT ===== */
.about-section {
  padding: 120px 0;
  border-top: 1px solid var(--l-border);
  position: relative;
}

.about-inner { max-width: 720px; }

.about-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.about-line {
  font-size: 17px;
  line-height: 1.8;
  color: var(--l-body);
  font-weight: 300;
}

.about-line--lead {
  font-family: 'Fraunces', serif;
  font-size: 24px;
  line-height: 1.5;
  color: var(--l-text);
  font-weight: 300;
}

.about-line--em {
  color: var(--gold);
  font-weight: 400;
  font-size: 17px;
}

/* ===== WAITLIST ===== */
.waitlist-section {
  padding: 120px 0;
  border-top: 1px solid var(--l-border);
  position: relative;
  background: var(--l-surface);
}

.waitlist-inner {
  max-width: 560px;
  text-align: center;
}

.waitlist-inner .section-eyebrow {
  justify-content: center;
  margin-bottom: 32px;
}

.waitlist-heading {
  font-family: 'Fraunces', serif !important;
  font-size: clamp(28px, 3vw, 40px) !important;
  font-weight: 300 !important;
  line-height: 1.2 !important;
  color: var(--l-text);
  margin-bottom: 16px;
}

.waitlist-body {
  font-size: 16px;
  line-height: 1.7;
  color: var(--l-body);
  font-weight: 300;
  margin-bottom: 40px;
}

.waitlist-form {
  display: flex;
  gap: 12px;
  max-width: 480px;
  margin: 0 auto;
}

.waitlist-input {
  flex: 1;
  background: var(--l-bg);
  border: 1px solid var(--l-border-warm);
  color: var(--l-text);
  padding: 14px 20px;
  border-radius: 2px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s;
}

.waitlist-input::placeholder { color: var(--l-muted); }
.waitlist-input:focus { border-color: var(--gold); }

.waitlist-btn { white-space: nowrap; flex-shrink: 0; }

.waitlist-success {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 16px;
  color: #7ab87a;
  font-weight: 400;
}

.waitlist-error {
  margin-top: 12px;
  font-size: 13px;
  color: #D94B4B;
}

/* ===== FOOTER ===== */
.landing-footer {
  padding: 48px 0;
  border-top: 1px solid var(--l-border);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer-tagline {
  font-size: 14px;
  color: var(--l-muted);
  font-weight: 300;
  font-style: italic;
  padding-left: 20px;
  border-left: 1px solid var(--l-border);
}

.footer-links { display: flex; gap: 24px; }

.footer-legal-link {
  font-size: 13px;
  color: var(--l-muted);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}

.footer-legal-link:hover { color: var(--l-body); }

.footer-copy {
  font-size: 13px;
  color: var(--l-muted);
  letter-spacing: 0.02em;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .landing-nav { padding: 20px 32px; }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { padding: 140px 40px 60px; }
  .hero-right { padding: 40px 40px 80px; }
  .float-card { display: none; }
  .scroll-indicator { display: none; }
  .section-inner { padding: 0 40px; }
  .features-grid { grid-template-columns: 1fr; gap: 24px; }
  .steps-grid { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 640px) {
  .landing-nav {
    padding: 20px 24px;
    flex-wrap: wrap;
  }
  .nav-hamburger { display: block; }
  .landing-page .nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
    gap: 16px;
    padding-top: 20px;
  }
  .landing-page .nav-links.nav-links--open { display: flex; }
  .lang-dropdown {
    left: 0;
    transform: none;
  }
  .hero-left { padding: 120px 24px 48px; }
  .hero-right { padding: 0 24px 64px; }
  .hero-heading { font-size: 42px !important; }
  .hero-proof { flex-wrap: wrap; gap: 20px; }
  .section-inner { padding: 0 24px; }
  .features-section,
  .how-section,
  .about-section { padding: 80px 0; }
  .section-eyebrow { margin-bottom: 40px; }
  .footer-inner { flex-direction: column; gap: 16px; text-align: center; }
  .footer-brand { flex-direction: column; gap: 8px; }
  .footer-tagline { border-left: none; padding-left: 0; }
  .footer-links { gap: 16px; }
  .waitlist-form { flex-direction: column; }
  .waitlist-section { padding: 80px 0; }
}

/* ===== LEGAL PAGES ===== */
.legal-page {
  background: var(--l-bg);
  color: var(--l-text);
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  min-height: 100vh;
}

.legal-page .legal-nav {
  padding: 24px 48px;
  border-bottom: 1px solid var(--l-border);
}

.legal-page .nav-logo {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 0.08em;
  text-decoration: none;
}

.legal-content {
  max-width: 720px;
  margin: 0 auto;
  padding: 80px 40px;
}

.legal-content h1 {
  font-family: 'Fraunces', serif;
  font-size: 36px;
  font-weight: 300;
  color: var(--l-text);
  margin-bottom: 12px;
}

.legal-content .legal-date {
  font-size: 14px;
  color: var(--l-muted);
  margin-bottom: 48px;
}

.legal-content h2 {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--l-text);
  margin-top: 48px;
  margin-bottom: 16px;
}

.legal-content h3 {
  font-size: 16px;
  font-weight: 500;
  color: var(--l-text);
  margin-top: 32px;
  margin-bottom: 12px;
}

.legal-content p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--l-body);
  margin-bottom: 16px;
}

.legal-content ul {
  margin: 12px 0 16px 24px;
  color: var(--l-body);
  font-size: 15px;
  line-height: 1.8;
}

.legal-content a {
  color: var(--gold);
  text-decoration: none;
}

.legal-content a:hover {
  color: var(--gold-light);
}
