:root {
  --bg: #06111d;
  --bg-soft: #0a1625;
  --surface: rgba(255,255,255,0.05);
  --surface-2: rgba(255,255,255,0.08);
  --surface-3: rgba(255,255,255,0.11);
  --panel: rgba(11, 20, 33, 0.84);
  --panel-strong: rgba(10, 18, 30, 0.94);
  --text: #edf4ff;
  --muted: #b7c6d8;
  --line: rgba(255,255,255,0.1);
  --primary: #8c1f42;
  --primary-2: #b93e65;
  --secondary: #5dc9d1;
  --accent: #d1a06b;
  --ok: #7ad0a9;
  --warn: #f1c47d;
  --shadow: 0 24px 60px rgba(0,0,0,0.3);
  --radius: 28px;
  --radius-sm: 18px;
  --max: 1180px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  font-family: Inter, Segoe UI, Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.65;
  background:
    radial-gradient(circle at 15% 0%, rgba(140,31,66,0.18), transparent 26%),
    radial-gradient(circle at 100% 12%, rgba(93,201,209,0.12), transparent 24%),
    linear-gradient(180deg, #06111d 0%, #081320 45%, #0a1624 100%);
}
a { color: inherit; }
img { max-width: 100%; display: block; }
.container { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }
.site-nav {
  position: sticky; top: 0; z-index: 80;
  background: rgba(6,17,29,0.78);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  backdrop-filter: blur(18px);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 16px 0;
}
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; font-weight: 800; }
.brand-mark {
  width: 14px; height: 14px; border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  box-shadow: 0 0 24px rgba(140,31,66,0.55);
}
.nav-links { display: flex; flex-wrap: wrap; align-items: center; gap: 18px; }
.nav-links a { text-decoration: none; color: rgba(237,244,255,0.82); font-size: 0.96rem; }
.nav-links a:hover, .nav-links a.active { color: white; }
.button, button.button {
  appearance: none; border: 0; cursor: pointer; text-decoration: none;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 22px; border-radius: 999px; font-weight: 700;
  transition: transform .18s ease, box-shadow .18s ease, opacity .18s ease, border-color .18s ease;
}
.button:hover, button.button:hover { transform: translateY(-2px); }
.button.primary { background: linear-gradient(135deg, var(--primary), var(--primary-2)); color: white; box-shadow: 0 14px 28px rgba(140,31,66,0.28); }
.button.secondary { background: rgba(255,255,255,0.08); color: white; border: 1px solid rgba(255,255,255,0.12); }
.button.ghost { background: transparent; color: white; border: 1px solid rgba(255,255,255,0.18); }
.button.small { padding: 10px 16px; font-size: .94rem; }
.button[aria-disabled="true"] { opacity: .55; pointer-events: none; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px; padding: 9px 14px; border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12); background: rgba(255,255,255,0.05);
  font-size: .74rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
}
.hero { position: relative; overflow: hidden; padding: 88px 0 76px; }
.hero::before, .hero::after { content: ""; position: absolute; border-radius: 999px; pointer-events: none; }
.hero::before { width: 360px; height: 360px; top: -140px; right: -80px; background: rgba(140,31,66,0.19); filter: blur(12px); }
.hero::after { width: 280px; height: 280px; bottom: -120px; left: -90px; background: rgba(93,201,209,0.14); filter: blur(14px); }
.hero-grid, .split-grid, .feature-grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: 34px; align-items: center; }
.hero h1 { margin: 18px 0 14px; max-width: 11ch; font-size: clamp(3rem, 7vw, 5.1rem); line-height: .98; letter-spacing: -.04em; }
.hero .lead { font-size: 1.12rem; color: rgba(237,244,255,0.84); max-width: 760px; margin: 0; }
.hero-actions, .stack-actions, .form-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.hero-meta, .inline-pills { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.info-pill, .mini-pill {
  display: inline-flex; align-items: center; padding: 10px 14px; border-radius: 999px;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); color: rgba(237,244,255,0.86);
  font-size: .93rem;
}
.section { padding: 74px 0; }
.section-tight { padding: 52px 0; }
.section-intro { max-width: 860px; margin-bottom: 28px; }
.section h2, .page-hero h1 { margin: 16px 0 10px; font-size: clamp(2rem, 4vw, 3.15rem); line-height: 1.05; letter-spacing: -.03em; }
.page-hero { padding: 72px 0 24px; }
.page-hero p, .muted { color: var(--muted); }
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 24px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 24px; }
.card, .panel, .hero-card, .form-shell, .policy-shell, .metric, .notice {
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.045));
  border: 1px solid var(--line); box-shadow: var(--shadow); border-radius: var(--radius);
}
.card, .panel, .form-shell, .policy-shell, .metric, .notice { padding: 28px; }
.hero-card { padding: 22px; }
.hero-card img, .panel img { width: 100%; height: 100%; min-height: 260px; object-fit: cover; border-radius: 20px; border: 1px solid rgba(255,255,255,0.09); }
.card h3, .panel h3 { margin: 14px 0 10px; font-size: 1.3rem; line-height: 1.2; }
.tag {
  display: inline-flex; align-items: center; padding: 8px 12px; border-radius: 999px; font-size: .77rem; font-weight: 700; letter-spacing: .02em;
  background: rgba(140,31,66,0.12); color: #ffc6d6;
}
.tag.alt { background: rgba(93,201,209,0.12); color: #bff6fb; }
.tag.warm { background: rgba(209,160,107,0.14); color: #ffe0b9; }
.list-clean { list-style: none; padding: 0; margin: 0; }
.list-clean li { padding-left: 22px; position: relative; margin: 0 0 12px; color: var(--muted); }
.list-clean li::before { content: "•"; position: absolute; left: 4px; color: var(--secondary); font-size: 1.1rem; }
.profile { display: flex; gap: 18px; align-items: flex-start; }
.profile-avatar {
  width: 88px; height: 88px; border-radius: 24px; object-fit: cover; object-position: center 18%;
  border: 1px solid rgba(255,255,255,0.14); background: rgba(255,255,255,0.05);
}
.founder-photo {
  width: 100%; aspect-ratio: 4 / 5; object-fit: cover; object-position: center 18%;
  border-radius: 24px; border: 1px solid rgba(255,255,255,0.12); background: rgba(255,255,255,0.05);
}
.text-link { color: #c9f6fb; text-decoration: none; font-weight: 700; }
.text-link span { transition: transform .16s ease; display: inline-block; }
.text-link:hover span { transform: translateX(3px); }
.code-note {
  padding: 2px 8px; border-radius: 10px; background: rgba(255,255,255,0.09); border: 1px solid rgba(255,255,255,0.08);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; font-size: .93rem;
}
.cta-band {
  position: relative; overflow: hidden; padding: 36px; border-radius: 34px;
  background: linear-gradient(135deg, rgba(14, 24, 40, 0.96), rgba(18, 31, 52, 0.98));
  border: 1px solid rgba(255,255,255,0.08); box-shadow: var(--shadow);
}
.cta-band::before, .cta-band::after { content: ""; position: absolute; border-radius: 999px; pointer-events: none; }
.cta-band::before { width: 280px; height: 280px; top: -110px; right: -90px; background: rgba(140,31,66,0.22); filter: blur(10px); }
.cta-band::after { width: 240px; height: 240px; bottom: -120px; left: -70px; background: rgba(93,201,209,0.18); filter: blur(14px); }
.small-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 18px; }
.small-note { font-size: .94rem; color: var(--muted); }
form { margin: 0; }
.field { display: grid; gap: 8px; margin-bottom: 16px; }
.field label, .checkbox-row label, .switch-row label { font-weight: 700; }
input[type="text"], input[type="email"], input[type="password"], textarea, select {
  width: 100%; padding: 14px 16px; border-radius: 16px; border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.05); color: white; font: inherit;
}
textarea { min-height: 132px; resize: vertical; }
input::placeholder, textarea::placeholder { color: rgba(237,244,255,0.48); }
.checkbox-list, .switch-list { display: grid; gap: 12px; }
.checkbox-row, .switch-row {
  display: flex; align-items: flex-start; gap: 12px; padding: 14px 16px; border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.08); background: rgba(255,255,255,0.04);
}
.checkbox-row input, .switch-row input { margin-top: 4px; }
.form-message {
  display: none; margin-top: 18px; padding: 14px 16px; border-radius: 18px;
  background: rgba(122,208,169,0.12); border: 1px solid rgba(122,208,169,0.22); color: #d8fff0;
}
.form-message.show { display: block; }
.policy-shell h2, .policy-shell h3 { margin-top: 0; }
.policy-grid { display: grid; gap: 22px; }
.kicker { color: var(--warn); font-weight: 700; }
.footer { padding: 30px 0 40px; border-top: 1px solid rgba(255,255,255,0.06); margin-top: 24px; }
.footer-inner { display: flex; justify-content: space-between; gap: 20px; align-items: center; color: rgba(237,244,255,0.7); }
.footer-links { display: flex; gap: 16px; flex-wrap: wrap; }
.notice.warn { border-color: rgba(241,196,125,0.22); background: rgba(241,196,125,0.08); }
.notice.ok { border-color: rgba(122,208,169,0.22); background: rgba(122,208,169,0.08); }
.metric-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 18px; }
.metric strong { display: block; font-size: 2rem; line-height: 1; margin-bottom: 8px; }
.inline-divider { height: 1px; background: rgba(255,255,255,0.08); margin: 24px 0; }
.hero-photo-shell {
  padding: 20px; border-radius: 30px; border: 1px solid rgba(255,255,255,0.08);
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.04)); box-shadow: var(--shadow);
}
.hero-photo-shell .small-note { margin-top: 12px; }
.mono { font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; }
.table-like { display: grid; gap: 10px; }
.table-row {
  display: grid; grid-template-columns: 170px 1fr; gap: 12px; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.06);
}
.table-row:last-child { border-bottom: 0; }
.tiny { font-size: .9rem; }
@media (max-width: 980px) {
  .hero-grid, .split-grid, .feature-grid, .grid-3, .grid-2, .metric-grid { grid-template-columns: 1fr; }
  .hero h1 { max-width: none; }
  .profile { flex-direction: column; }
}
@media (max-width: 760px) {
  .nav-inner { flex-direction: column; align-items: stretch; }
  .nav-links { justify-content: center; }
  .hero, .section, .page-hero { padding-top: 58px; padding-bottom: 58px; }
  .cta-band { padding: 24px; }
  .footer-inner, .table-row { grid-template-columns: 1fr; display: grid; }
}
