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

/* ── LIGHT THEME (default) ── */
:root,
[data-theme="light"] {
  --bg: #ffffff;
  --bg-2: #f7f8fc;
  --bg-3: #eef0f6;
  --border: rgba(0,0,0,0.08);
  --border-hover: rgba(0,0,0,0.16);
  --text: #0d0f14;
  --text-muted: #6b7280;
  --text-dim: #4b5563;
  --accent: #2563eb;
  --accent-glow: rgba(37,99,235,0.08);
  --accent-2: #059669;
  --hero-grid-color: rgba(0,0,0,0.05);
  --hero-glow-color: rgba(37,99,235,0.07);
  --nav-scrolled-bg: rgba(255,255,255,0.90);
  --nav-scrolled-shadow: 0 1px 24px rgba(0,0,0,0.06);
  --card-hover-glow: rgba(37,99,235,0.05);
  --status-live-bg: rgba(5,150,105,0.1);
  --status-live-color: #059669;
  --status-building-bg: rgba(37,99,235,0.1);
  --status-building-color: #2563eb;
  --status-planned-bg: rgba(0,0,0,0.05);
  --status-planned-color: #6b7280;
  --icon-placeholder-bg: rgba(0,0,0,0.04);
  --icon-live-bg: rgba(5,150,105,0.1);
  --icon-building-bg: rgba(37,99,235,0.1);
  --toast-bg: var(--accent-2);
  --toast-shadow: 0 8px 32px rgba(0,0,0,0.12);
  --filter-active-bg: #0d0f14;
  --filter-active-text: #ffffff;
  --filter-inactive-bg: transparent;
  --filter-inactive-text: #6b7280;
  --filter-inactive-border: rgba(0,0,0,0.1);
  --toggle-bg: #e5e7eb;
  --toggle-knob: #ffffff;
  --toggle-icon-color: #6b7280;
}

/* ── DARK THEME ── */
[data-theme="dark"] {
  --bg: #080a0e;
  --bg-2: #0d1017;
  --bg-3: #111520;
  --border: rgba(255,255,255,0.07);
  --border-hover: rgba(255,255,255,0.14);
  --text: #f0f2f7;
  --text-muted: #6b7280;
  --text-dim: #9ca3af;
  --accent: #4f7cff;
  --accent-glow: rgba(79,124,255,0.15);
  --accent-2: #00d4aa;
  --hero-grid-color: rgba(255,255,255,0.06);
  --hero-glow-color: rgba(79,124,255,0.12);
  --nav-scrolled-bg: rgba(8,10,14,0.85);
  --nav-scrolled-shadow: none;
  --card-hover-glow: rgba(79,124,255,0.12);
  --status-live-bg: rgba(0,212,170,0.12);
  --status-live-color: #00d4aa;
  --status-building-bg: rgba(79,124,255,0.12);
  --status-building-color: #7fa7ff;
  --status-planned-bg: rgba(255,255,255,0.06);
  --status-planned-color: #6b7280;
  --icon-placeholder-bg: rgba(255,255,255,0.05);
  --icon-live-bg: rgba(0,212,170,0.12);
  --icon-building-bg: rgba(79,124,255,0.12);
  --toast-bg: var(--accent-2);
  --toast-shadow: 0 8px 32px rgba(0,0,0,0.4);
  --filter-active-bg: #f0f2f7;
  --filter-active-text: #080a0e;
  --filter-inactive-bg: transparent;
  --filter-inactive-text: #6b7280;
  --filter-inactive-border: rgba(255,255,255,0.1);
  --toggle-bg: #1e2433;
  --toggle-knob: #4f7cff;
  --toggle-icon-color: #9ca3af;
}

html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  transition: background 0.35s ease, color 0.35s ease;
}
body::before {
  content: '';
  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.025'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1000;
  opacity: 0.35;
}

.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

/* ── THEME TOGGLE ── */
.theme-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 6px 12px 6px 8px;
  cursor: pointer;
  color: var(--text-muted);
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  transition: all 0.2s;
  white-space: nowrap;
}
.theme-toggle:hover { border-color: var(--border-hover); color: var(--text); }
.toggle-track {
  width: 32px;
  height: 18px;
  background: var(--toggle-bg);
  border-radius: 100px;
  position: relative;
  transition: background 0.3s;
  flex-shrink: 0;
}
.toggle-knob {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 14px;
  height: 14px;
  background: var(--toggle-knob);
  border-radius: 50%;
  transition: transform 0.3s ease, background 0.3s;
  box-shadow: 0 1px 4px rgba(0,0,0,0.2);
}
[data-theme="dark"] .toggle-knob { transform: translateX(14px); }
.toggle-label { line-height: 1; }

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 16px 0;
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
}
nav.scrolled {
  background: var(--nav-scrolled-bg);
  border-bottom-color: var(--border);
  backdrop-filter: blur(16px);
  box-shadow: var(--nav-scrolled-shadow);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-mark {
  width: 34px; height: 34px;
  background: var(--accent);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-family: "Domine", serif;
  font-weight: 800; font-size: 14px;
  color: #fff; letter-spacing: -0.5px; flex-shrink: 0;
  transition: background 0.35s;
}
.logo-mark img { width: 100%; height: 100%; object-fit: contain; border-radius: 8px; }
.logo-text {
  font-family: 'Syne', sans-serif; font-weight: 700;
  font-size: 17px; color: var(--text); letter-spacing: -0.3px;
  transition: color 0.35s;
}
.nav-links { display: flex; align-items: center; gap: 28px; list-style: none; }
.nav-links a {
  color: var(--text-muted); text-decoration: none;
  font-size: 14px; font-weight: 400; transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }
.nav-cta {
  background: var(--accent); color: #fff !important;
  padding: 8px 18px; border-radius: 8px;
  font-weight: 500 !important; font-size: 14px !important;
  transition: opacity 0.2s, background 0.35s !important;
}
.nav-cta:hover { opacity: 0.85; }
.nav-right { display: flex; align-items: center; gap: 12px; }

/* ── HERO ── */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  position: relative; padding: 120px 0 80px; overflow: hidden;
}
.hero-glow {
  position: absolute; top: -200px; left: 50%; transform: translateX(-50%);
  width: 900px; height: 700px;
  background: radial-gradient(ellipse at center, var(--hero-glow-color) 0%, transparent 70%);
  pointer-events: none; transition: background 0.35s;
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--hero-grid-color) 1px, transparent 1px),
    linear-gradient(90deg, var(--hero-grid-color) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 0%, transparent 100%);
  pointer-events: none; transition: background 0.35s;
}
.hero-content { position: relative; z-index: 2; max-width: 760px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--status-building-bg);
  border: 1px solid color-mix(in srgb, var(--accent) 30%, transparent);
  border-radius: 100px; padding: 6px 14px;
  font-size: 13px; color: var(--accent); font-weight: 500;
  margin-bottom: 32px; animation: fadeUp 0.6s ease both;
}
.hero-badge::before {
  content: ''; width: 6px; height: 6px;
  background: var(--accent); border-radius: 50%;
  /**/
}
/**/
h1 {
  font-family: "Domine", serif;
  font-optical-sizing: auto;
  font-weight: 800;
  font-style: normal;
  font-size: clamp(45px, 5.5vw, 88px);

  line-height: 1.0; letter-spacing: -3px;
  color: var(--text); margin-bottom: 24px;
  animation: fadeUp 0.6s ease 0.1s both;
  transition: color 0.35s;
}
h1 span {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-sub {
  font-size: 18px; color: var(--text-dim); max-width: 540px;
  line-height: 1.65; margin-bottom: 40px; font-weight: 300;
  animation: fadeUp 0.6s ease 0.2s both; transition: color 0.35s;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; animation: fadeUp 0.6s ease 0.3s both; }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--accent); color: #fff;
  padding: 13px 26px; border-radius: 10px;
  font-family: 'DM Sans', sans-serif; font-size: 15px; font-weight: 500;
  text-decoration: none; border: none; cursor: pointer;
  transition: all 0.2s;
}
.btn-primary:hover { opacity: 0.88; transform: translateY(-1px); }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--text-dim);
  padding: 13px 26px; border-radius: 10px;
  font-family: 'DM Sans', sans-serif; font-size: 15px; font-weight: 500;
  text-decoration: none; border: 1px solid var(--border); cursor: pointer;
  transition: all 0.2s;
}
.btn-secondary:hover { border-color: var(--border-hover); color: var(--text); }

/* ── SECTION BASICS ── */
section { padding: 100px 0; }
.section-label {
  font-family: "Domine", serif; font-size: 16px; font-weight: 600;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--accent); margin-bottom: 16px; transition: color 0.35s;
}
.section-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(30px, 4vw, 44px); font-weight: 700;
  letter-spacing: -1.5px; line-height: 1.1;
  color: var(--text); margin-bottom: 16px; transition: color 0.35s;
}
.section-sub {
  font-size: 16px; color: var(--text-muted);
  max-width: 620px; line-height: 1.75; font-weight: 300;
  transition: color 0.35s;
}

/* ── VISION ── */
.vision {
  background: var(--bg-2);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  transition: background 0.35s;
}
.vision-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.vision-quote {
  font-family: "Domine", serif;
  font-size: clamp(22px, 3vw, 32px); font-weight: 600;
  line-height: 1.3; letter-spacing: -0.8px; color: var(--text);
  transition: color 0.35s;
}
.vision-quote em { font-style: normal; color: var(--accent-2); }
.vision-right p {
  font-size: 16px; color: var(--text-muted); line-height: 1.8;
  font-weight: 300; margin-bottom: 20px; transition: color 0.35s;
}
.vision-right p:last-child { margin-bottom: 0; }

/* ── LXT ECOSYSTEM ── */
.ecosystem { background: var(--bg); transition: background 0.35s; }
.ecosystem-intro {
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: 64px; align-items: start; margin-bottom: 56px;
}
.ecosystem-desc {
  font-size: 16px; color: var(--text-muted);
  line-height: 1.8; font-weight: 300; transition: color 0.35s;
}
.ecosystem-desc p { margin-bottom: 14px; }
.ecosystem-desc p:last-child { margin-bottom: 0; }

/* Filter tabs */
.filter-tabs {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-bottom: 40px;
}
.filter-tab {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 8px 16px; border-radius: 100px;
  font-family: 'DM Sans', sans-serif; font-size: 13px; font-weight: 500;
  cursor: pointer; border: 1px solid var(--filter-inactive-border);
  background: var(--filter-inactive-bg); color: var(--filter-inactive-text);
  transition: all 0.2s; white-space: nowrap;
}
.filter-tab:hover { color: var(--text); border-color: var(--border-hover); }
.filter-tab.active {
  background: var(--filter-active-bg); color: var(--filter-active-text);
  border-color: transparent;
}
.filter-tab .tab-count {
  display: inline-flex; align-items: center; justify-content: center;
  width: 18px; height: 18px; border-radius: 50%;
  font-size: 11px; font-weight: 700;
  background: rgba(255,255,255,0.15); color: inherit;
  transition: background 0.2s;
}
.filter-tab:not(.active) .tab-count {
  background: var(--border); color: var(--text-muted);
}

/* Products grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 16px;
}
.product-card {
  background: var(--bg-2); border: 1px solid var(--border);
  border-radius: 16px; padding: 28px;
  transition: all 0.25s ease, background 0.35s, border-color 0.35s;
  position: relative; overflow: hidden;
}
.product-card::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at top left, var(--card-hover-glow), transparent 60%);
  opacity: 0; transition: opacity 0.3s;
}
.product-card:hover { border-color: var(--border-hover); transform: translateY(-2px); }
.product-card:hover::before { opacity: 1; }
.product-card.placeholder { border-style: dashed; opacity: 0.55; }
.product-card.placeholder:hover { opacity: 0.75; }
/* hide/show animation */
.product-card.hidden {
  display: none;
}
.card-top {
  display: flex; align-items: flex-start;
  justify-content: space-between; margin-bottom: 16px;
}
.product-icon {
  width: 44px; height: 44px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; flex-shrink: 0;
}
.status-badge {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 11px; font-weight: 600; letter-spacing: 0.8px;
  text-transform: uppercase; padding: 4px 10px; border-radius: 100px;
}
.status-live { background: var(--status-live-bg); color: var(--status-live-color); }
.status-live::before { content: ''; width: 5px; height: 5px; background: var(--status-live-color); border-radius: 50%; animation: pulse 2s infinite; }
.status-building { background: var(--status-building-bg); color: var(--status-building-color); }
.status-building::before { content: ''; width: 5px; height: 5px; background: var(--status-building-color); border-radius: 50%; }
.status-beta { background: rgba(234,88,12,0.1); color: #ea580c; }
.status-beta::before { content: ''; width: 5px; height: 5px; background: #ea580c; border-radius: 50%; }
.status-planned { background: var(--status-planned-bg); color: var(--status-planned-color); }
.status-planned::before { content: ''; width: 5px; height: 5px; background: var(--status-planned-color); border-radius: 50%; }
.product-name {
  font-family: "Domine", serif; font-size: 18px; font-weight: 700;
  color: var(--text); margin-bottom: 8px; letter-spacing: -0.3px;
  transition: color 0.35s;
}
.product-desc {
  font-size: 14px; color: var(--text-muted); line-height: 1.6;
  font-weight: 300; transition: color 0.35s;
}
.product-link {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 20px; font-size: 13px; color: var(--accent);
  text-decoration: none; font-weight: 500; transition: gap 0.2s, color 0.35s;
}
.product-link:hover { gap: 10px; }

/* empty state */
.empty-state {
  grid-column: 1 / -1;
  text-align: center; padding: 64px 32px;
  color: var(--text-muted); font-size: 15px;
  border: 1px dashed var(--border); border-radius: 16px;
  display: none;
}
.empty-state.visible { display: block; }

/* ── APPROACH ── */
.approach {
  background: var(--bg-2);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  transition: background 0.35s;
}
.approach-inner { display: grid; grid-template-columns: 1fr 1.6fr; gap: 80px; align-items: start; }
.approach-steps { display: flex; flex-direction: column; gap: 0; margin-top: 8px; }
.approach-step {
  display: flex; gap: 20px; padding: 24px 0;
  border-bottom: 1px solid var(--border); transition: border-color 0.35s;
}
.approach-step:last-child { border-bottom: none; }
.step-num {
  font-family: "Domine", serif; font-size: 11px; font-weight: 700;
  color: var(--accent); letter-spacing: 1px; padding-top: 3px;
  flex-shrink: 0; width: 28px; transition: color 0.35s;
}
.step-content h4 {
  font-family: "Domine", serif; font-size: 16px; font-weight: 600;
  color: var(--text); margin-bottom: 6px; letter-spacing: -0.2px;
  transition: color 0.35s;
}
.step-content p { font-size: 14px; color: var(--text-muted); line-height: 1.6; font-weight: 300; }

/* ── ROADMAP ── */
.roadmap-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 14px; margin-top: 48px; }
.roadmap-item {
  background: var(--bg-2); border: 1px solid var(--border);
  border-radius: 12px; padding: 22px 24px;
  display: flex; align-items: flex-start; gap: 16px;
  transition: border-color 0.2s, background 0.35s;
}
.roadmap-item:hover { border-color: var(--border-hover); }
.roadmap-icon { font-size: 22px; flex-shrink: 0; margin-top: 2px; }
.roadmap-name {
  font-family: "Domine", serif; font-size: 15px; font-weight: 600;
  color: var(--text); margin-bottom: 4px; letter-spacing: -0.2px;
  transition: color 0.35s;
}
.roadmap-desc { font-size: 13px; color: var(--text-muted); line-height: 1.5; font-weight: 300; }

/* ── FOUNDER ── */
.founder {
  background: var(--bg-2);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  transition: background 0.35s;
}
.founder-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.founder-left { max-width: 560px; }
.founder-name {
  font-family: 'Syne', sans-serif;
  font-size: clamp(28px, 3.5vw, 40px); font-weight: 700;
  letter-spacing: -1px; color: var(--text); margin-bottom: 14px;
  transition: color 0.35s;
}
.founder-name span { color: var(--accent); }
.founder-bio { font-size: 16px; color: var(--text-muted); line-height: 1.75; font-weight: 300; }

/* ── CONTACT ── */
.contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.contact-form { display: flex; flex-direction: column; gap: 14px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 13px; font-weight: 500; color: var(--text-dim); letter-spacing: 0.2px; }
.form-group input,
.form-group textarea,
.form-group select {
  background: var(--bg-3); border: 1px solid var(--border);
  border-radius: 8px; color: var(--text);
  font-family: 'DM Sans', sans-serif; font-size: 14px;
  padding: 11px 14px; outline: none; transition: border-color 0.2s, background 0.35s, color 0.35s;
  -webkit-appearance: none; width: 100%;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--text-muted); }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--accent); }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-group select option { background: var(--bg-3); }
.contact-info h3 {
  font-family: "Domine", serif; font-size: 22px; font-weight: 700;
  letter-spacing: -0.5px; color: var(--text); margin-bottom: 14px; transition: color 0.35s;
}
.contact-info p { font-size: 15px; color: var(--text-muted); line-height: 1.7; font-weight: 300; margin-bottom: 32px; }
.contact-email {
  display: flex; align-items: center; gap: 10px; padding: 14px 18px;
  background: var(--bg-3); border: 1px solid var(--border); border-radius: 10px;
  margin-bottom: 28px; text-decoration: none; color: var(--text); font-size: 14px;
  font-weight: 500; transition: border-color 0.2s, background 0.35s, color 0.35s;
}
.contact-email:hover { border-color: var(--border-hover); }
.contact-email svg { color: var(--accent); flex-shrink: 0; }
.socials-label { font-size: 12px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-muted); margin-bottom: 14px; }
.socials { display: flex; gap: 10px; }
.social-link {
  width: 40px; height: 40px; border: 1px solid var(--border);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  color: var(--text-muted); text-decoration: none; font-size: 16px;
  transition: all 0.2s;
}
.social-link:hover { border-color: var(--accent); color: var(--accent); }

/* ── FOOTER ── */
footer { padding: 40px 0; border-top: 1px solid var(--border); transition: border-color 0.35s; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.footer-copy { font-size: 13px; color: var(--text-muted); }
.footer-links { display: flex; gap: 24px; }
.footer-links a { font-size: 13px; color: var(--text-muted); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--text); }

/* ── TOAST ── */
.toast {
  position: fixed; bottom: 32px; right: 32px;
  background: var(--toast-bg); border: 1px solid var(--border);
  box-shadow: var(--toast-shadow); border-radius: 10px;
  padding: 14px 20px; font-size: 14px; color: white;
  display: flex; align-items: center; gap: 10px;
  transform: translateY(80px); opacity: 0;
  transition: all 0.3s ease; z-index: 999;
}
.toast.show { transform: translateY(0); opacity: 1; }
.toast-dot { width: 8px; height: 8px; background: white; border-radius: 50%; flex-shrink: 0; }

/* ── PRIVACY POLICY MODAL ── */
.modal-overlay {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  opacity: 0; pointer-events: none;
  transition: opacity 0.25s ease;
}
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  width: 100%; max-width: 680px;
  max-height: 85vh;
  display: flex; flex-direction: column;
  transform: translateY(24px) scale(0.98);
  transition: transform 0.25s ease;
  overflow: hidden;
}
.modal-overlay.open .modal { transform: translateY(0) scale(1); }
.modal-header {
  display: flex; align-items: flex-start;
  justify-content: space-between; gap: 16px;
  padding: 28px 32px 20px;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}
.modal-header-left .modal-label {
  font-size: 11px; font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; color: var(--accent); margin-bottom: 6px;
}
.modal-header-left h2 {
  font-family: "Domine", serif; font-size: 22px; font-weight: 700;
  letter-spacing: -0.5px; color: var(--text); line-height: 1.2;
}
.modal-close {
  width: 34px; height: 34px; flex-shrink: 0;
  background: var(--bg-3); border: 1px solid var(--border);
  border-radius: 8px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted); transition: all 0.2s; margin-top: 2px;
}
.modal-close:hover { color: var(--text); border-color: var(--border-hover); }
.modal-body {
  overflow-y: auto; padding: 28px 32px 32px;
  flex: 1;
}
.modal-body::-webkit-scrollbar { width: 4px; }
.modal-body::-webkit-scrollbar-track { background: transparent; }
.modal-body::-webkit-scrollbar-thumb { background: var(--border-hover); border-radius: 4px; }
.modal-updated {
  font-size: 12px; color: var(--text-muted);
  margin-bottom: 24px; padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.policy-section { margin-bottom: 28px; }
.policy-section h3 {
  font-family: "Domine", serif; font-size: 15px; font-weight: 700;
  color: var(--text); margin-bottom: 10px; letter-spacing: -0.2px;
}
.policy-section p, .policy-section li {
  font-size: 14px; color: var(--text-muted); line-height: 1.75;
  font-weight: 300; margin-bottom: 8px;
}
.policy-section ul { padding-left: 18px; }
.policy-section li { margin-bottom: 4px; }
.policy-section a { color: var(--accent); text-decoration: none; }
.policy-section a:hover { text-decoration: underline; }
.policy-highlight {
  background: var(--bg-2); border: 1px solid var(--border);
  border-radius: 10px; padding: 14px 18px; margin-bottom: 10px;
  font-size: 13px; color: var(--text-dim); line-height: 1.65;
}

/* ── HAMBURGER BUTTON ── */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 38px; height: 38px;
  background: none;
  border: 1px solid var(--border);
  border-radius: 8px;
  cursor: pointer;
  padding: 0;
  transition: border-color 0.2s;
  flex-shrink: 0;
}
.hamburger:hover { border-color: var(--border-hover); }
.hamburger span {
  display: block;
  width: 16px; height: 1.5px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── MOBILE DRAWER ── */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 99;
  display: flex;
  flex-direction: column;
  background: var(--bg);
  padding: 88px 24px 40px;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}
.mobile-nav-links li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  font-family: "Domine", serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}
.mobile-nav-links li a:hover { color: var(--accent); }
.mobile-nav-links li a svg { color: var(--text-muted); }
.mobile-cta-wrap { margin-top: 32px; }
.mobile-cta-wrap .btn-primary { width: 100%; justify-content: center; font-size: 16px; padding: 15px; }
.mobile-theme-wrap {
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  border-top: 1px solid var(--border);
}
.mobile-theme-label { font-size: 14px; color: var(--text-muted); font-weight: 400; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero { padding-top: 80px }
  .hero-badge { margin-bottom: 22px; }
  .hero-sub { font-size: 14px; margin-bottom: 20px; }
  .nav-right .theme-toggle { display: none }
  h1 { margin-bottom: 14px; }
  .ecosystem-intro { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 768px) {
  section { padding: 72px 0; }
  .vision-inner, .approach-inner, .contact-inner { grid-template-columns: 1fr; gap: 40px; }
  .founder-inner { flex-direction: column; }
  .form-row { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  h1 { letter-spacing: -2px; }
  .filter-tabs { gap: 6px; }
  .filter-tab { font-size: 12px; padding: 7px 12px; }
}