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

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

a { text-decoration: none; }

.landing-page tr th,
.landing-page tr td { border: 1px solid var(--l-border); }

.landing-page tr th { background-color: var(--l-surface-2); }

.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;
  align-items: center;
  gap: 32px;
  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 32px 80px 80px;
  position: relative;
  z-index: 2;
}

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

.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.6vw, 78px) !important;
  font-weight: 300 !important;
  line-height: 1.02 !important;
  letter-spacing: -0.02em;
  color: var(--l-text);
  max-width: 640px;
  margin-bottom: 24px;
  opacity: 1;
  animation: landingFadeUp 0.9s ease 0.4s both;
}

.hero-body {
  font-size: 19px;
  line-height: 1.65;
  color: var(--l-body);
  max-width: 560px;
  margin-bottom: 32px;
  font-weight: 300;
  opacity: 1;
  animation: landingFadeUp 0.9s ease 0.6s both;
}

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

.hero-meta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  margin-top: 18px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(200,150,12,0.16);
  background: rgba(200,150,12,0.06);
  font-size: 12px;
  color: var(--l-body);
  letter-spacing: 0.04em;
  opacity: 1;
  animation: landingFadeUp 0.9s ease 0.85s both;
}

.btn-primary {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
  padding: 14px 32px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.04em;
  border-radius: 8px;
  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.05) 0%, transparent 60%);
  pointer-events: none;
}

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

.btn-secondary {
  color: var(--l-body);
  text-decoration: none;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.03em;
  display: inline-flex;
  align-items: center;
  padding: 14px 24px;
  border: 1px solid rgba(176, 168, 152, 0.3);
  border-radius: 8px;
  transition: all 0.2s;
}

.btn-secondary:hover {
  color: var(--l-text);
  border-color: rgba(176, 168, 152, 0.6);
  background: rgba(176, 168, 152, 0.05);
}
/* RIGHT COLUMN */
.hero-right {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 80px 80px 24px;
  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%);
}

.product-shot {
  position: relative;
  width: 100%;
  max-width: 560px;
  z-index: 2;
}

.product-shot::before {
  content: '';
  position: absolute;
  inset: 10% -6% -8% 12%;
  background: radial-gradient(circle, rgba(200,150,12,0.18) 0%, rgba(200,150,12,0.04) 42%, transparent 72%);
  filter: blur(30px);
  pointer-events: none;
}

.product-window {
  position: relative;
  padding: 18px;
  border-radius: 30px;
  border: 1px solid rgba(200,150,12,0.14);
  background: linear-gradient(180deg, rgba(36,33,24,0.92) 0%, rgba(20,18,14,0.96) 100%);
  box-shadow:
    0 0 0 1px rgba(200,150,12,0.08),
    0 48px 90px rgba(0,0,0,0.55),
    0 0 140px rgba(200,150,12,0.08);
  opacity: 1;
  animation: landingCardReveal 1.2s ease 0.6s both;
}

.product-window-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 16px;
  margin-bottom: 16px;
  border-radius: 18px;
  border: 1px solid rgba(200,150,12,0.12);
  background: rgba(15,14,11,0.65);
}

.window-dots {
  display: flex;
  align-items: center;
  gap: 6px;
}

.window-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(240,234,216,0.18);
}

.window-dots span:first-child { background: rgba(255,154,139,0.8); }
.window-dots span:nth-child(2) { background: rgba(255,206,111,0.8); }
.window-dots span:last-child { background: rgba(122,184,122,0.8); }

.product-window-title {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--l-muted);
  margin-right: auto;
}

.product-window-status {
  font-size: 11px;
  color: var(--gold);
  background: var(--gold-dim);
  border: 1px solid rgba(200,150,12,0.2);
  padding: 4px 10px;
  border-radius: 999px;
  letter-spacing: 0.06em;
  font-weight: 500;
}

.dashboard-card {
  background: linear-gradient(180deg, rgba(28,26,21,0.96) 0%, rgba(20,18,15,0.96) 100%);
  border: 1px solid rgba(61,57,40,0.8);
  border-radius: 24px;
  width: 100%;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.card-header {
  padding: 18px 22px;
  border-bottom: 1px solid rgba(46,43,32,0.9);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(36,33,24,0.82);
}

.card-title {
  font-size: 12px;
  font-weight: 500;
  color: var(--l-body);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.card-updated {
  font-size: 11px;
  color: var(--l-muted);
  letter-spacing: 0.06em;
}

.net-worth {
  padding: 28px 22px 18px;
  border-bottom: 1px solid rgba(46,43,32,0.7);
}

.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: clamp(38px, 4vw, 50px);
  font-weight: 300;
  color: var(--l-text);
  letter-spacing: -0.02em;
  line-height: 1;
}

.net-worth-value span {
  font-size: 16px;
  color: var(--l-muted);
  display: block;
  margin-bottom: 8px;
  font-weight: 300;
}

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

.hero-highlights {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 18px 22px 6px;
}

.hero-highlight {
  padding: 16px;
  border-radius: 18px;
  border: 1px solid rgba(61,57,40,0.72);
  background: rgba(36,33,24,0.68);
}

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

.hero-highlight-value {
  font-family: 'Fraunces', serif;
  font-size: 24px;
  color: var(--l-text);
}

.hero-highlight-sub {
  margin-top: 6px;
  font-size: 11px;
  color: var(--gold);
  line-height: 1.4;
}

/* Asset list */
.asset-list {
  padding: 18px 22px 8px;
}

.asset-list-title {
  font-size: 13px;
  color: var(--l-text);
  line-height: 1.4;
  margin-bottom: 14px;
}

.asset-showcase {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.asset-card {
  padding: 16px;
  border-radius: 20px;
  border: 1px solid rgba(61,57,40,0.78);
  background: rgba(36,33,24,0.76);
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 182px;
  opacity: 1;
  animation: landingSlideIn 0.5s ease both;
}

.asset-card:nth-child(1) { animation-delay: 1.2s; }
.asset-card:nth-child(2) { animation-delay: 1.4s; }
.asset-card:nth-child(3) { animation-delay: 1.6s; }
.asset-card:nth-child(4) { animation-delay: 1.8s; }

.asset-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

.asset-card-identity {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.asset-status {
  padding: 5px 9px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}

.asset-status--upcoming {
  color: #f4d27b;
  background: rgba(200,150,12,0.14);
  border: 1px solid rgba(200,150,12,0.24);
}

.asset-status--urgent {
  color: #ffb1a8;
  background: rgba(194,78,64,0.18);
  border: 1px solid rgba(194,78,64,0.28);
}

.asset-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(36,33,24,0.9);
  border: 1px solid rgba(61,57,40,0.8);
  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);
  line-height: 1.3;
}

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

.asset-card-value-label {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--l-muted);
}

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

.asset-card-meta {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  font-size: 12px;
  color: var(--l-body);
}

.asset-card-meta span:first-child {
  color: var(--l-muted);
}

.asset-card-note {
  margin-top: auto;
  font-size: 12px;
  line-height: 1.45;
  color: var(--l-body);
}

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

.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 */
/* 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;
}

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

.pain-heading {
  font-family: 'Fraunces', serif;
  font-size: clamp(28px, 3.2vw, 44px);
  font-weight: 300;
  color: var(--l-text);
  line-height: 1.15;
  letter-spacing: -0.02em;
  max-width: 640px;
  margin-bottom: 48px;
}

.pain-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 56px;
  max-width: 560px;
}

.pain-item {
  font-size: 18px;
  line-height: 1.5;
  color: var(--l-body);
  font-weight: 300;
  display: flex;
  align-items: center;
  gap: 18px;
}

.pain-item::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  opacity: 0.55;
}

.pain-close {
  font-family: 'Fraunces', serif;
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 300;
  font-style: italic;
  color: var(--l-text);
  line-height: 1.55;
  max-width: 560px;
  border-left: 2px solid rgba(200,150,12,0.3);
  padding-left: 24px;
}

/* ===== 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;
}

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

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

.testimonial-card {
  background: var(--l-surface);
  border: 1px solid var(--l-border);
  border-radius: 12px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
}

.testimonial-card::before {
  content: "\201C";
  position: absolute;
  top: 20px;
  right: 28px;
  font-family: 'Fraunces', serif;
  font-size: 64px;
  line-height: 1;
  color: var(--gold-dim);
  pointer-events: none;
}

.testimonial-quote {
  font-size: 15px;
  line-height: 1.7;
  color: var(--l-text);
  font-weight: 300;
  font-style: italic;
  flex: 1;
}

.testimonial-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-top: 16px;
  border-top: 1px solid var(--l-border);
}

.testimonial-name {
  font-size: 13px;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.04em;
}

.testimonial-role {
  font-size: 12px;
  color: var(--l-muted);
  letter-spacing: 0.04em;
}

.testimonials-context {
  font-size: 13px;
  color: var(--l-muted);
  text-align: center;
  letter-spacing: 0.04em;
}

/* ===== 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; }
  .product-shot { max-width: 640px; }
  .section-inner { padding: 0 40px; }
  .features-grid { grid-template-columns: 1fr; gap: 24px; }
  .steps-grid { grid-template-columns: 1fr; gap: 40px; }
  .testimonials-grid { grid-template-columns: 1fr; gap: 24px; }
}

@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-body { font-size: 17px; }
  .hero-actions { gap: 16px; }
  .hero-meta { width: 100%; justify-content: center; text-align: center; }
  .product-window { padding: 14px; border-radius: 24px; }
  .product-window-bar { padding: 10px 12px; }
  .product-window-title { letter-spacing: 0.08em; }
  .hero-highlights { grid-template-columns: 1fr; }
  .card-header { gap: 12px; }
  .card-title,
  .card-updated { font-size: 10px; }
  .net-worth { padding-top: 24px; }
  .asset-list { padding-top: 16px; }
  .asset-card { padding: 14px; min-height: 168px; }
  .asset-showcase { gap: 10px; }
  .asset-status { font-size: 9px; letter-spacing: 0.08em; }
  .asset-value { font-size: 22px; }
  .section-inner { padding: 0 24px; }
  .features-section,
  .pain-section,
  .how-section,
  .about-section { padding: 80px 0; }
  .pain-item { font-size: 16px; }
  .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);
}
