:root {
  --bg: #0e0e12;
  --bg-1: #121216;
  --bg-2: #18181d;
  --bg-3: #1f1f25;
  --bg-4: #27272e;

  --border: rgba(255, 255, 255, 0.072);
  --border-md: rgba(255, 255, 255, 0.12);
  --border-hi: rgba(255, 255, 255, 0.18);

  --text-1: #eeeee9;
  --text-2: #8c8c98;
  --text-3: #525260;

  --red: #c4192c;
  --red-hover: #d41f33;
  --red-dim: rgba(196, 24, 44, 0.1);
  --red-bdr: rgba(196, 24, 44, 0.22);
  --red-text: #e07078;

  --gold: #c89030;
  --gold-dim: rgba(200, 144, 48, 0.1);
  --gold-bdr: rgba(200, 144, 48, 0.22);

  --green: #52b86a;
  --green-dim: rgba(82, 184, 106, 0.1);
  --green-bdr: rgba(82, 184, 106, 0.22);

  --blue: #6090e0;
  --blue-dim: rgba(96, 144, 224, 0.1);
  --blue-bdr: rgba(96, 144, 224, 0.22);

  --r-sm: 6px;
  --r: 10px;
  --r-lg: 14px;

  --shadow: 0 4px 16px rgba(0, 0, 0, 0.35);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.45);

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ─── Reset & base ────────────────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}
body {
  font-family:
    "Inter",
    system-ui,
    -apple-system,
    sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-1);
  background: var(--bg);
}
a {
  color: var(--red-text);
  text-decoration: none;
}
a:hover {
  color: var(--text-1);
}
p {
  color: var(--text-2);
  margin-bottom: 10px;
}
h1,
h2,
h3,
h4 {
  color: var(--text-1);
  line-height: 1.25;
}
strong {
  color: var(--text-1);
  font-weight: 600;
}

/* ─── Layout ──────────────────────────────────────────────────────────── */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
.section {
  padding: 48px 0;
  border-top: 1px solid var(--border);
}

/* ─── Header ──────────────────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 0;
  transition:
    background 0.25s var(--ease),
    border-color 0.25s;
}
.site-header.scrolled {
  background: rgba(14, 14, 18, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 56px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text-1);
  flex-shrink: 0;
}
.logo-mark {
  width: 28px;
  height: 28px;
  border-radius: var(--r-sm);
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.logo-mark svg {
  width: 14px;
  height: 14px;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 2px;
}
.site-nav a {
  padding: 7px 13px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-2);
  border-radius: var(--r-sm);
  transition:
    color 0.15s,
    background 0.15s;
}
.site-nav a:hover {
  color: var(--text-1);
  background: rgba(255, 255, 255, 0.055);
}
.nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 600;
  background: var(--red);
  color: #fff;
  border-radius: var(--r-sm);
  transition:
    background 0.15s,
    transform 0.15s;
  margin-left: 6px;
}
.nav-cta:hover {
  background: var(--red-hover);
  color: #fff;
  transform: translateY(-1px);
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--text-1);
  border-radius: 2px;
}

/* ─── Breadcrumb ──────────────────────────────────────────────────────── */
.breadcrumb-bar {
  padding: 12px 0 0;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--text-3);
}
.breadcrumb a {
  color: var(--text-3);
  transition: color 0.15s;
}
.breadcrumb a:hover {
  color: var(--text-2);
}
.breadcrumb-sep {
  color: var(--text-3);
  font-size: 10px;
}
.breadcrumb span:last-child {
  color: var(--text-2);
}

/* ─── Hero block ──────────────────────────────────────────────────────── */
.hero-block {
  position: relative;
  padding: 40px 0 0;
  overflow: hidden;
}
.hero-block::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(
    ellipse 80% 100% at 50% 50%,
    black 0%,
    transparent 80%
  );
}
.hero-block::after {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(196, 24, 44, 0.07) 0%,
    transparent 65%
  );
  top: -80px;
  left: 30%;
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 40px;
  align-items: end;
}
.hero-text {
  padding-bottom: 48px;
}
.hero-photo-col {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}
.hero-photo {
  width: 100%;
  max-width: 360px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center top;
  transform: scaleX(-1);
  border-radius: var(--r-lg) var(--r-lg) 0 0;
  display: block;
  mask-image: linear-gradient(to bottom, black 70%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, black 70%, transparent 100%);
}
.page-label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 12px;
}
.page-label-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--red);
}
.beta-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 100px;
  background: var(--gold-dim);
  border: 1px solid var(--gold-bdr);
  color: var(--gold);
  margin-left: 10px;
  vertical-align: middle;
}
h1.page-title {
  font-size: clamp(26px, 3.5vw, 42px);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 14px;
}
.hero-intro {
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-2);
  max-width: 600px;
  margin-bottom: 32px;
}
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.stat-box {
  display: flex;
  flex-direction: column;
  padding: 14px 20px;
  min-width: 128px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--r);
  transition: border-color 0.2s;
}
.stat-box:hover {
  border-color: var(--border-md);
}
.stat-value {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text-1);
}
.stat-label {
  font-size: 11px;
  color: var(--text-3);
  margin-top: 3px;
}

/* ─── Section header ──────────────────────────────────────────────────── */
.section-overline {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 8px;
}
.section-desc {
  font-size: 14px;
  color: var(--text-2);
  margin-bottom: 28px;
  max-width: 600px;
}

/* ─── Buttons ─────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  font-family: inherit;
  padding: 8px 16px;
  border-radius: var(--r-sm);
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-2);
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.15s var(--ease);
}
.btn:hover {
  border-color: var(--border-md);
  color: var(--text-1);
  background: rgba(255, 255, 255, 0.05);
}
.btn-primary {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
  font-weight: 600;
}
.btn-primary:hover {
  background: var(--red-hover);
  border-color: var(--red-hover);
  color: #fff;
}
.btn-lg {
  padding: 11px 24px;
  font-size: 14px;
  border-radius: var(--r);
}

/* ─── Mission block ───────────────────────────────────────────────────── */
.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.mission-text h2 {
  font-size: clamp(22px, 2.8vw, 32px);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
  line-height: 1.2;
}
.mission-text p {
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 14px;
}
.mission-text p:last-of-type {
  margin-bottom: 24px;
}
.mission-visual {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.mission-quote {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--text-1);
  line-height: 1.5;
  position: relative;
  padding-left: 18px;
}
.mission-quote::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 3px;
  background: var(--red);
  border-radius: 2px;
}
.mission-quote-attr {
  font-size: 12px;
  color: var(--text-3);
  padding-left: 18px;
}
.mission-quote-attr strong {
  color: var(--text-2);
  font-weight: 500;
}
.pain-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pain-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--r);
}
.pain-icon {
  width: 30px;
  height: 30px;
  border-radius: var(--r-sm);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pain-icon.red {
  background: var(--red-dim);
  border: 1px solid var(--red-bdr);
  color: var(--red-text);
}
.pain-icon.gold {
  background: var(--gold-dim);
  border: 1px solid var(--gold-bdr);
  color: var(--gold);
}
.pain-icon.blue {
  background: var(--blue-dim);
  border: 1px solid var(--blue-bdr);
  color: var(--blue);
}
.pain-body {
  flex: 1;
  min-width: 0;
}
.pain-body strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-1);
  margin-bottom: 2px;
}
.pain-body span {
  font-size: 12px;
  color: var(--text-3);
  line-height: 1.55;
}

/* ─── Values (simplified) ─────────────────────────────────────────────── */
.values-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.value-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 24px 20px;
  transition:
    border-color 0.2s,
    transform 0.2s;
}
.value-card:hover {
  border-color: var(--border-md);
  transform: translateY(-2px);
}
.value-num {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--red);
  margin-bottom: 10px;
  line-height: 1;
}
.value-card h3 {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 7px;
}
.value-card p {
  font-size: 13px;
  line-height: 1.65;
  margin-bottom: 0;
}

/* ─── Timeline ────────────────────────────────────────────────────────── */
.timeline {
  display: flex;
  flex-direction: column;
  max-width: 720px;
}
.timeline-item {
  display: grid;
  grid-template-columns: 96px 28px 1fr;
  gap: 0;
  position: relative;
  padding-bottom: 28px;
}
/* vertical line: sits in the 28px dot column */
.timeline-item::before {
  content: "";
  position: absolute;
  left: 109px;
  top: 22px;
  bottom: 0;
  width: 1px;
  background: var(--border);
}
.timeline-item:last-child::before {
  display: none;
}
.timeline-year {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-3);
  padding-top: 6px;
  text-align: right;
  padding-right: 0;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.timeline-dot-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 6px;
  gap: 0;
}
.timeline-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
  background: var(--bg-4);
  border: 1.5px solid var(--border-md);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.timeline-item.active .timeline-dot {
  background: var(--red);
  border-color: var(--red);
  box-shadow: 0 0 0 4px var(--red-dim);
}
.timeline-body {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 18px 20px;
  transition: border-color 0.2s;
}
.timeline-body:hover {
  border-color: var(--border-md);
}
.timeline-body h3 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
}
.timeline-body p {
  font-size: 13px;
  color: var(--text-2);
  margin-bottom: 0;
  line-height: 1.65;
}
.timeline-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 100px;
  margin-top: 10px;
  background: var(--red-dim);
  border: 1px solid var(--red-bdr);
  color: var(--red-text);
}
.timeline-tag.gold {
  background: var(--gold-dim);
  border-color: var(--gold-bdr);
  color: var(--gold);
}
.timeline-tag.green {
  background: var(--green-dim);
  border-color: var(--green-bdr);
  color: var(--green);
}

/* ─── Team grid ───────────────────────────────────────────────────────── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.team-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 26px 22px;
  transition:
    border-color 0.2s,
    transform 0.2s,
    box-shadow 0.2s;
}
.team-card:hover {
  border-color: var(--border-md);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.team-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--bg-3);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-2);
}
.team-avatar.founder {
  background: var(--red-dim);
  border-color: var(--red-bdr);
  color: var(--red-text);
}
.team-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}
.team-card h3 {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 3px;
}
.team-role {
  font-size: 12px;
  color: var(--red-text);
  font-weight: 500;
  margin-bottom: 10px;
}
.team-bio {
  font-size: 12px;
  color: var(--text-3);
  line-height: 1.65;
  margin-bottom: 14px;
}
.team-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 100px;
  background: var(--bg-3);
  border: 1px solid var(--border);
  color: var(--text-3);
}

/* ─── FAQ ─────────────────────────────────────────────────────────────── */
.faq-list {
  max-width: 720px;
}
details {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--r);
  margin-bottom: 6px;
  transition: border-color 0.15s;
}
details:hover {
  border-color: var(--border-md);
}
details[open] {
  border-color: var(--border-md);
}
summary {
  padding: 14px 16px;
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
  color: var(--text-1);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
summary::-webkit-details-marker {
  display: none;
}
.faq-icon {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--text-3);
  flex-shrink: 0;
  margin-left: 12px;
  transition:
    border-color 0.15s,
    transform 0.2s;
}
details[open] .faq-icon {
  transform: rotate(45deg);
  border-color: var(--border-md);
}
details[open] summary {
  border-bottom: 1px solid var(--border);
}
.faq-answer {
  padding: 14px 16px;
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.68;
}

/* ─── CTA banner ──────────────────────────────────────────────────────── */
.cta-banner {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(196, 24, 44, 0.07) 0%,
    transparent 65%
  );
  top: -150px;
  right: -100px;
  pointer-events: none;
}
.cta-text {
  position: relative;
  z-index: 1;
}
.cta-text h2 {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.cta-text p {
  font-size: 14px;
  color: var(--text-2);
  margin-bottom: 0;
}
.cta-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

/* ─── Footer ──────────────────────────────────────────────────────────── */
.site-footer {
  background: #0a0a0d;
  border-top: 1px solid var(--border);
  padding: 40px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
}
.footer-brand .logo {
  margin-bottom: 10px;
}
.footer-tagline {
  font-size: 12px;
  color: var(--text-3);
  line-height: 1.6;
  max-width: 200px;
}
.footer-col h4 {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 12px;
}
.footer-col a {
  display: block;
  font-size: 13px;
  color: var(--text-3);
  margin-bottom: 7px;
  transition: color 0.15s;
}
.footer-col a:hover {
  color: var(--text-2);
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding: 16px 0;
  font-size: 12px;
  color: var(--text-3);
}

/* ─── Responsive ──────────────────────────────────────────────────────── */
@media (max-width: 960px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }
  .hero-photo-col {
    display: none;
  }
  .hero-text {
    padding-bottom: 48px;
  }
}
@media (max-width: 900px) {
  .mission-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .values-row {
    grid-template-columns: 1fr 1fr;
  }
  .team-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .site-nav {
    display: none;
  }
  .nav-toggle {
    display: flex;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  .cta-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 28px 24px;
  }
  .cta-actions {
    flex-direction: column;
    width: 100%;
  }
  .cta-actions .btn {
    justify-content: center;
  }
}
@media (max-width: 600px) {
  .values-row {
    grid-template-columns: 1fr;
  }
  .team-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .timeline-item {
    grid-template-columns: 76px 24px 1fr;
  }
  .timeline-item::before {
    left: 88px;
  }
  .timeline-year {
    font-size: 11px;
  }
}
@media (max-width: 420px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}
