/* ==============================
   RESET & CUSTOM PROPERTIES
============================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Brand */
  --obsidian:     #0A1628;
  --signal:       #2563EB;
  --signal-hover: #1D4ED8;
  --signal-bg:    #EFF6FF;
  --signal-glow:  rgba(37,99,235,.18);
  --light-blue:   #60A5FA;

  /* Surfaces */
  --white:     #FFFFFF;
  --bg:        #F0F4F8;

  /* Text scale — all pass WCAG AA on white */
  --gray-100:  #F8FAFC;
  --gray-200:  #E2E8F0;
  --gray-300:  #CBD5E1;
  --gray-400:  #64748B;
  --gray-500:  #475569;
  --gray-700:  #1E293B;
  --gray-900:  #0A1628;
  --border:    #E2E8F0;

  /* Tokens */
  --r-sm: 8px;
  --r:    14px;
  --r-lg: 20px;
  --sh-sm: 0 1px 3px rgba(10,22,40,.08);
  --sh-md: 0 4px 20px rgba(10,22,40,.10);
  --sh-lg: 0 12px 40px rgba(10,22,40,.14);
  --sh-xl: 0 24px 64px rgba(10,22,40,.18);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--gray-900);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ==============================
   LAYOUT
============================== */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ==============================
   BUTTONS
============================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--r-sm);
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all .22s cubic-bezier(.4,0,.2,1);
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: -.01em;
}

.btn-primary {
  background: var(--signal);
  color: white;
  border-color: var(--signal);
}
.btn-primary:hover {
  background: var(--signal-hover);
  border-color: var(--signal-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px var(--signal-glow);
}

.btn-secondary {
  background: transparent;
  color: var(--gray-700);
  border-color: var(--gray-300);
}
.btn-secondary:hover {
  border-color: var(--gray-700);
  color: var(--gray-900);
  background: var(--gray-100);
}

.btn-lg { padding: 16px 36px; font-size: 16px; }
.btn-sm { padding: 9px 18px; font-size: 14px; }

/* ==============================
   NAVBAR
============================== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10,22,40,.98);        /* Light Mode: dunkle Navbar */
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: box-shadow .2s;
}
.navbar.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,.35); }

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  text-decoration: none;
}
.logo-img-wrap { flex-shrink: 0; line-height: 0; }
.logo-img-wrap img,
img.logo-img { width: 36px; height: 36px; border-radius: 10px; display: block; }

.logo-hear {
  font-family: 'Source Serif 4', Georgia, serif;
  font-weight: 500;
  font-style: italic;
  font-size: 22px;
  color: white;
  letter-spacing: -.02em;
}
.logo-space {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: white;
  letter-spacing: -.05em;
}

.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-link {
  padding: 8px 14px;
  color: rgba(255,255,255,.62);
  font-size: 14px;
  font-weight: 500;
  border-radius: var(--r-sm);
  transition: all .18s;
}
.nav-link:hover { color: white; background: rgba(255,255,255,.09); }

.nav-login {
  color: rgba(255,255,255,.62);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--r-sm);
  transition: all .18s;
}
.nav-login:hover { color: white; background: rgba(255,255,255,.09); }

.nav-cta { margin-left: 8px; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--r-sm);
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: all .2s;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 12px 24px 24px;
  border-top: 1px solid rgba(255,255,255,.1);
  background: #0A1628;
  gap: 4px;
}
.mobile-menu.open { display: flex; }
.mobile-menu .nav-link,
.mobile-menu .nav-login { padding: 12px 16px; font-size: 15px; }
.mobile-menu .btn { width: 100%; margin-top: 8px; justify-content: center; }

/* ==============================
   HERO
============================== */
.hero {
  padding: 100px 0 88px;
  background: linear-gradient(160deg, #EEF4FF 0%, #FFFFFF 55%);
  overflow: hidden;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px 6px 10px;
  background: var(--signal-bg);
  color: var(--signal-hover);
  font-size: 13px;
  font-weight: 600;
  border-radius: 100px;
  margin-bottom: 26px;
  border: 1px solid rgba(37,99,235,.2);
}
.badge-dot {
  width: 7px;
  height: 7px;
  background: var(--signal);
  border-radius: 50%;
  animation: blink 2.4s ease-in-out infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .5; transform: scale(.8); }
}

.hero h1 {
  font-size: clamp(30px, 3.8vw, 50px);
  font-weight: 800;
  color: var(--gray-900);
  line-height: 1.12;
  letter-spacing: -.035em;
  margin-bottom: 22px;
}
.hero h1 .hl { color: var(--signal); }

.hero-sub {
  font-size: 17px;
  color: var(--gray-500);
  line-height: 1.72;
  margin-bottom: 40px;
  max-width: 470px;
}

.hero-actions { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }

.hero-trust { display: flex; align-items: center; gap: 14px; margin-top: 48px; }
.avatars { display: flex; }
.avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2.5px solid white;
  margin-right: -11px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: white;
}
.trust-text { font-size: 13px; color: var(--gray-500); line-height: 1.45; }
.trust-text strong { color: var(--gray-900); }

/* ==============================
   DASHBOARD MOCKUP
============================== */
.mockup-wrapper { position: relative; }
.mockup-glow {
  position: absolute;
  inset: -48px;
  background: radial-gradient(ellipse at 50% 50%, rgba(37,99,235,.1) 0%, transparent 68%);
  pointer-events: none;
}
.mockup-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-xl);
  overflow: hidden;
  position: relative;
}

.mockup-bar {
  background: var(--obsidian);
  padding: 14px 18px;
  display: flex;
  align-items: center;
}
.m-dots { display: flex; gap: 6px; }
.m-dot { width: 11px; height: 11px; border-radius: 50%; }
.d-r { background: #FF5F56; }
.d-y { background: #FFBD2E; }
.d-g { background: #27C93F; }
.m-title {
  font-size: 12.5px;
  color: rgba(255,255,255,.6);
  font-weight: 500;
  margin: 0 auto;
  letter-spacing: .01em;
}

.mockup-chat {
  padding: 20px 18px;
  background: var(--bg);
  min-height: 240px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.chat-row { display: flex; }
.chat-row.user  { justify-content: flex-end; }
.chat-row.ai    { justify-content: flex-start; flex-direction: column; gap: 7px; }

.ai-header { display: flex; align-items: center; gap: 7px; }
.ai-av {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--obsidian) 0%, var(--signal) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  font-weight: 800;
  color: white;
  flex-shrink: 0;
}
.ai-name { font-size: 12px; font-weight: 600; color: var(--gray-400); }

.bubble { display: inline-block; padding: 11px 15px; border-radius: 12px; font-size: 13px; line-height: 1.5; }
.bubble.user-b {
  background: var(--obsidian);
  color: white;
  border-bottom-right-radius: 4px;
}
.bubble.ai-b {
  background: white;
  color: var(--gray-700);
  border: 1px solid var(--border);
  border-bottom-left-radius: 4px;
  box-shadow: var(--sh-sm);
  max-width: 88%;
}

.chip-group { display: flex; flex-wrap: wrap; gap: 5px; margin-top: 8px; }
.chip {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 10px;
  background: var(--signal-bg);
  color: var(--signal-hover);
  border-radius: 100px;
  font-size: 11.5px;
  font-weight: 600;
}
.chip::before { content: '✓'; }

.source-note { font-size: 11px; color: var(--gray-400); margin-top: 8px; }

.mockup-input-row {
  display: flex;
  gap: 8px;
  padding: 14px 18px;
  background: white;
  border-top: 1px solid var(--border);
  align-items: center;
}
.m-input {
  flex: 1;
  padding: 9px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  font-size: 13px;
  color: var(--gray-400);
  font-family: inherit;
  background: var(--bg);
  outline: none;
}
.m-send {
  width: 34px;
  height: 34px;
  background: var(--signal);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.float-badge {
  position: absolute;
  bottom: -18px;
  right: -18px;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 12px 16px;
  box-shadow: var(--sh-md);
  display: flex;
  align-items: center;
  gap: 11px;
}
.fb-icon {
  width: 38px;
  height: 38px;
  background: var(--signal-bg);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
}
.fb-text strong { display: block; font-size: 14px; font-weight: 700; color: var(--gray-900); }
.fb-text span   { font-size: 11px; color: var(--gray-400); }

/* ==============================
   SECTION COMMONS
============================== */
.sec-label {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--signal);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.sec-title {
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 800;
  color: var(--gray-900);
  letter-spacing: -.032em;
  line-height: 1.18;
  margin-bottom: 16px;
}
.sec-sub { font-size: 17px; color: var(--gray-500); line-height: 1.72; }
.sec-head { text-align: center; margin-bottom: 60px; }
.sec-head .sec-sub { max-width: 520px; margin: 0 auto; }

/* ==============================
   FEATURES
============================== */
.features { padding: 104px 0; background: var(--white); }

.feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.feat-card {
  padding: 36px 32px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  position: relative;
  overflow: hidden;
  transition: all .25s ease;
}
.feat-card::after {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, var(--obsidian) 0%, var(--signal) 100%);
  opacity: 0;
  transition: opacity .25s;
}
.feat-card:hover { transform: translateY(-5px); box-shadow: var(--sh-lg); border-color: var(--gray-200); }
.feat-card:hover::after { opacity: 1; }

.feat-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--obsidian) 0%, var(--signal) 100%);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.feat-card h3 { font-size: 19px; font-weight: 700; color: var(--gray-900); margin-bottom: 12px; letter-spacing: -.02em; }
.feat-card p  { color: var(--gray-500); font-size: 15px; line-height: 1.72; }

/* ==============================
   TRUST BANNER
============================== */
.trust-strip { padding: 52px 0; background: var(--obsidian); }
.trust-inner { display: flex; align-items: center; gap: 56px; }
.trust-label {
  color: rgba(255,255,255,.62);
  font-size: 12.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .09em;
  white-space: nowrap;
  flex-shrink: 0;
  line-height: 1.5;
}
.trust-sep { width: 1px; height: 44px; background: rgba(255,255,255,.18); flex-shrink: 0; }
.trust-logos { display: flex; align-items: center; gap: 44px; flex-wrap: wrap; }
.t-logo { display: flex; align-items: center; gap: 9px; opacity: .7; transition: opacity .2s; cursor: default; }
.t-logo:hover { opacity: 1; }
.t-mark {
  width: 38px; height: 38px; border-radius: 10px;
  background: rgba(255,255,255,.12);
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; font-weight: 800; color: white;
}
.t-name { font-size: 15px; font-weight: 700; color: white; letter-spacing: -.02em; }

/* ==============================
   PRICING
============================== */
.pricing { padding: 104px 0; background: var(--bg); }

.toggle-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 52px;
}
.t-label { font-size: 15px; font-weight: 500; color: var(--gray-400); cursor: pointer; transition: color .18s; user-select: none; }
.t-label.on { color: var(--gray-900); font-weight: 600; }

.toggle-track {
  position: relative;
  width: 50px; height: 26px;
  background: var(--gray-200);
  border-radius: 100px;
  cursor: pointer;
  transition: background .2s;
}
.toggle-track.yearly { background: var(--signal); }
.toggle-thumb {
  position: absolute;
  top: 3px; left: 3px;
  width: 20px; height: 20px;
  background: white;
  border-radius: 50%;
  box-shadow: 0 1px 4px rgba(0,0,0,.2);
  transition: transform .22s cubic-bezier(.4,0,.2,1);
}
.toggle-track.yearly .toggle-thumb { transform: translateX(24px); }

.save-badge {
  padding: 4px 11px;
  background: var(--signal-bg);
  color: var(--signal-hover);
  font-size: 12px; font-weight: 700;
  border-radius: 100px;
  display: none;
}

.price-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; max-width: 860px; margin: 0 auto; }

.price-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 40px 36px;
  position: relative;
  transition: all .25s ease;
}
.price-card:hover { transform: translateY(-5px); box-shadow: var(--sh-lg); }

.price-card.feat { background: var(--obsidian); border-color: var(--obsidian); }
.feat-label {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--signal); color: white;
  font-size: 11px; font-weight: 700; letter-spacing: .05em;
  padding: 4px 14px; border-radius: 100px; white-space: nowrap;
}

.pc-plan { font-size: 12.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .09em; color: var(--gray-400); margin-bottom: 6px; }
.price-card.feat .pc-plan { color: rgba(255,255,255,.58); }

.pc-name { font-size: 24px; font-weight: 800; color: var(--gray-900); letter-spacing: -.03em; margin-bottom: 24px; }
.price-card.feat .pc-name { color: white; }

.pc-price-row { line-height: 1; margin-bottom: 6px; }
.pc-cur { font-size: 20px; font-weight: 600; color: var(--gray-400); vertical-align: top; display: inline-block; margin-top: 8px; }
.price-card.feat .pc-cur { color: rgba(255,255,255,.55); }
.pc-amount { font-size: 52px; font-weight: 800; color: var(--gray-900); letter-spacing: -.04em; }
.price-card.feat .pc-amount { color: white; }
.pc-period { font-size: 14px; color: var(--gray-400); margin-bottom: 28px; }
.price-card.feat .pc-period { color: rgba(255,255,255,.55); }

.pc-div { height: 1px; background: var(--border); margin-bottom: 28px; }
.price-card.feat .pc-div { background: rgba(255,255,255,.14); }

.pc-feats { margin-bottom: 36px; display: flex; flex-direction: column; gap: 2px; }
.pc-feat { display: flex; align-items: flex-start; gap: 10px; padding: 7px 0; font-size: 14px; color: var(--gray-700); }
.price-card.feat .pc-feat { color: rgba(255,255,255,.85); }

.check {
  width: 18px; height: 18px;
  background: var(--signal-bg);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 1px;
}
.price-card.feat .check { background: rgba(37,99,235,.28); }
.check svg { width: 10px; height: 10px; stroke: var(--signal); stroke-width: 2.5; fill: none; }

.price-card .btn { width: 100%; justify-content: center; }
.price-card.feat .btn-primary { background: var(--signal); border-color: var(--signal); }
.price-card.feat .btn-secondary { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.22); color: rgba(255,255,255,.9); }
.price-card.feat .btn-secondary:hover { background: rgba(255,255,255,.14); border-color: rgba(255,255,255,.36); }

/* ==============================
   FOOTER
============================== */
.footer { background: var(--obsidian); padding: 56px 0 40px; }

.foot-upper { display: flex; align-items: flex-start; justify-content: space-between; gap: 40px; margin-bottom: 44px; flex-wrap: wrap; }

.foot-brand .logo-hear,
.foot-brand .logo-space { color: white; }
.foot-slogan { margin-top: 10px; font-size: 14px; color: rgba(255,255,255,.55); max-width: 220px; line-height: 1.6; }

.foot-links { display: flex; gap: 24px; flex-wrap: wrap; align-items: center; }
.foot-link { font-size: 14px; font-weight: 500; color: rgba(255,255,255,.58); transition: color .18s; }
.foot-link:hover { color: white; }

.foot-link-btn {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-family: inherit;
}

.foot-bottom {
  border-top: 1px solid rgba(255,255,255,.10);
  padding-top: 28px;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px;
}
.foot-copy { font-size: 13px; color: rgba(255,255,255,.5); }
.foot-made { font-size: 13px; color: rgba(255,255,255,.4); }

/* ==============================
   RESPONSIVE
============================== */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 52px; }
  .mockup-wrapper { max-width: 500px; margin: 0 auto; }
  .feat-grid { grid-template-columns: 1fr; gap: 20px; }
  .trust-inner { flex-direction: column; gap: 28px; text-align: center; }
  .trust-sep { display: none; }
  .price-grid { grid-template-columns: 1fr; max-width: 420px; }
}

@media (max-width: 640px) {
  .nav-links, .nav-login, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .hero { padding: 68px 0 60px; }
  .features { padding: 76px 0; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .float-badge { display: none; }
  .hero h1 { font-size: clamp(26px, 7vw, 36px); }
  .hero-sub { font-size: 15px; }
  .hero-trust { flex-wrap: wrap; }
  .foot-upper { flex-direction: column; gap: 24px; }
  .foot-links { flex-direction: column; gap: 12px; align-items: flex-start; }
}

/* ==============================
   WIP TOAST
============================== */
.wip-toast {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--obsidian);
  color: white;
  font-size: 14px;
  font-weight: 500;
  padding: 13px 22px;
  border-radius: var(--r);
  box-shadow: var(--sh-lg);
  z-index: 9999;
  white-space: nowrap;
  pointer-events: none;
}
.wip-in  { animation: wipIn  .28s cubic-bezier(.4,0,.2,1) forwards; }
.wip-out { animation: wipOut .28s cubic-bezier(.4,0,.2,1) forwards; }
@keyframes wipIn  { from { opacity:0; transform:translateX(-50%) translateY(12px); } to { opacity:1; transform:translateX(-50%) translateY(0); } }
@keyframes wipOut { from { opacity:1; transform:translateX(-50%) translateY(0); } to { opacity:0; transform:translateX(-50%) translateY(12px); } }

@media (max-width: 480px) {
  .wip-toast { bottom: 20px; font-size: 13px; padding: 11px 18px; white-space: normal; max-width: calc(100vw - 40px); text-align: center; }
}

/* ==============================
   DARK MODE — muss am Ende stehen,
   damit es die obigen Regeln überschreibt
============================== */
@media (prefers-color-scheme: dark) {
  :root {
    --white:        #0F1E35;
    --bg:           #0A1628;
    --border:       rgba(255,255,255,.10);
    --gray-100:     rgba(255,255,255,.05);
    --gray-200:     rgba(255,255,255,.09);
    --gray-300:     rgba(255,255,255,.18);
    --gray-400:     rgba(255,255,255,.5);
    --gray-500:     rgba(255,255,255,.65);
    --gray-700:     rgba(255,255,255,.82);
    --gray-900:     #FFFFFF;
    --signal:       #60A5FA;
    --signal-hover: #93C5FD;
    --signal-bg:    rgba(96,165,250,.14);
    --signal-glow:  rgba(96,165,250,.22);
    --sh-sm: 0 1px 3px rgba(0,0,0,.4);
    --sh-md: 0 4px 20px rgba(0,0,0,.5);
    --sh-lg: 0 12px 40px rgba(0,0,0,.6);
    --sh-xl: 0 24px 64px rgba(0,0,0,.7);
  }

  body  { background: var(--bg); }
  .hero { background: linear-gradient(160deg, #060E1D 0%, #0F1E35 55%); }

  .hero-badge { border-color: rgba(96,165,250,.25); }

  /* Dark Mode: Navbar wird hell (invertiert zur dunklen Seite) */
  .navbar {
    background: rgba(255,255,255,.97);
    border-bottom-color: rgba(0,0,0,.08);
    box-shadow: 0 1px 0 rgba(0,0,0,.06);
  }
  .navbar.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,.15); }
  .logo-hear,
  .logo-space { color: #0A1628; }
  .nav-link        { color: #475569; }
  .nav-link:hover  { color: #0A1628; background: #F1F5F9; }
  .nav-login       { color: #475569; }
  .nav-login:hover { color: #0A1628; background: #F1F5F9; }
  .hamburger span  { background: #0A1628; }
  .mobile-menu {
    background: white;
    border-top-color: #E2E8F0;
  }
  .mobile-menu .nav-link,
  .mobile-menu .nav-login { color: #475569; }

  .mockup-bar       { background: #060E1D; }
  .bubble.ai-b      { background: var(--white); }
  .mockup-input-row { background: #060E1D; }
  .m-input          { background: var(--bg); }
  .float-badge      { background: var(--white); }

  .trust-strip {
    border-top: 1px solid rgba(255,255,255,.07);
    border-bottom: 1px solid rgba(255,255,255,.07);
  }

  .foot-brand .logo-hear,
  .foot-brand .logo-space { color: white !important; }
}
