:root {
  /* Theme tokens – change these 4 values to re-skin the site */
  --color-accent: #f11154; /* Accent */
  --color-primary: #faecff; /* Primary background */
  --color-secondary: #cdacff; /* Secondary / soft sections */
  --color-font: #190221; /* Main text */

  --color-background: #0d0d11;
  --color-surface: #181820;
  --color-soft-surface: #242433;
  --color-border-subtle: rgba(250, 236, 255, 0.16);

  --font-family-sans: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text",
    "Inter", "Segoe UI", sans-serif;

  --radius-lg: 18px;
  --radius-md: 12px;
  --radius-pill: 999px;

  --shadow-soft: 0 18px 40px rgba(0, 0, 0, 0.45);
  --shadow-subtle: 0 1px 0 rgba(255, 255, 255, 0.06);

  --space-xs: 0.5rem;
  --space-sm: 0.75rem;
  --space-md: 1.25rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
}

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

html,
body {
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  font-family: var(--font-family-sans);
  background: radial-gradient(circle at top left, #2a213f 0, #050509 40%, #000);
  color: var(--color-primary);
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1120px, 100% - 2.5rem);
  margin-inline: auto;
}

.container.narrow {
  width: min(720px, 100% - 2.5rem);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(20px);
  background: linear-gradient(
    to bottom,
    rgba(5, 5, 10, 0.92),
    rgba(5, 5, 10, 0.8),
    transparent
  );
  border-bottom: 1px solid rgba(250, 236, 255, 0.08);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 1rem;
}

.logo {
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.95rem;
}

.nav-link {
  position: relative;
  color: rgba(250, 236, 255, 0.72);
  font-weight: 500;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--color-accent), var(--color-secondary));
  transition: width 160ms ease-out;
}

.nav-link:hover::after,
.nav-link.is-active::after {
  width: 100%;
}

.hero {
  padding: 5.5rem 0 4rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 3rem;
  align-items: center;
}

.hero-copy h1 {
  font-size: clamp(2.4rem, 3vw + 1.8rem, 3.2rem);
  line-height: 1.05;
  margin-bottom: 1rem;
  color: var(--color-primary);
}

.hero-copy .lead {
  font-size: 1.02rem;
  max-width: 34rem;
  color: rgba(250, 236, 255, 0.76);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.7rem;
  color: rgba(250, 236, 255, 0.65);
  margin-bottom: 0.75rem;
}

.lead {
  font-size: 1.05rem;
}

.waitlist-form {
  margin-top: 2rem;
}

.field-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.waitlist-form input {
  flex: 1 1 180px;
  padding: 0.85rem 0.95rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(250, 236, 255, 0.28);
  background: rgba(3, 3, 7, 0.8);
  color: var(--color-primary);
  font-size: 0.95rem;
}

.waitlist-form input::placeholder {
  color: rgba(250, 236, 255, 0.5);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.6rem;
  margin-top: 0.75rem;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  font-size: 0.96rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: transform 120ms ease-out, box-shadow 120ms ease-out,
    filter 120ms ease-out;
}

.btn-accent {
  background: linear-gradient(135deg, var(--color-accent), var(--color-secondary));
  color: #fff;
  box-shadow: 0 14px 40px rgba(241, 17, 84, 0.52);
}

.btn-accent:hover {
  transform: translateY(-1px);
  filter: brightness(1.03);
}

.form-helper {
  margin-top: 0.6rem;
  font-size: 0.78rem;
  color: rgba(250, 236, 255, 0.6);
  transition: color 0.3s ease;
  min-height: 1.2rem;
}

.hero-card {
  background: radial-gradient(circle at top left, #cdacff33 0, #151524 55%);
  border-radius: 26px;
  padding: 1.8rem 1.6rem 1.9rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(250, 236, 255, 0.18);
}

.hero-card h2 {
  font-size: 1.15rem;
  margin-bottom: 0.9rem;
}

.hero-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hero-list li {
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: 0.55rem;
  font-size: 0.93rem;
}

.hero-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--color-accent), var(--color-secondary));
}

.section {
  padding: 3.5rem 0 3.75rem;
}

.section-soft {
  background: linear-gradient(
      120deg,
      rgba(205, 172, 255, 0.11),
      rgba(25, 2, 33, 0.94)
    ),
    radial-gradient(circle at bottom, rgba(250, 236, 255, 0.06), transparent 55%);
}

.section-header {
  text-align: left;
  margin-bottom: 2.4rem;
}

.section-header h2 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.section-header p {
  max-width: 32rem;
  color: rgba(250, 236, 255, 0.7);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.6rem;
}

.card {
  background: rgba(12, 12, 18, 0.9);
  border-radius: var(--radius-lg);
  padding: 1.4rem 1.4rem 1.5rem;
  border: 1px solid var(--color-border-subtle);
  box-shadow: var(--shadow-subtle);
}

.card h3 {
  font-size: 1.05rem;
  margin: 0 0 0.5rem;
}

.card p {
  margin: 0;
  font-size: 0.92rem;
  color: rgba(250, 236, 255, 0.74);
}

.social-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.social-link {
  padding: 0.55rem 0.95rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(250, 236, 255, 0.3);
  font-size: 0.86rem;
  background: rgba(11, 11, 18, 0.9);
}

.page-hero {
  padding: 4.25rem 0 2.75rem;
}

.page-hero h1 {
  font-size: clamp(2rem, 2.6vw + 1.4rem, 2.6rem);
  margin-bottom: 1rem;
}

.page-hero .lead {
  color: rgba(250, 236, 255, 0.75);
}

.founders-grid {
  margin-top: 0.5rem;
}

.founder-card {
  position: relative;
}

.founder-role {
  margin-top: 0.35rem;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(250, 236, 255, 0.6);
}

.role-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.role-card {
  padding: 1.3rem 1.4rem 1.4rem;
  border-radius: var(--radius-lg);
  background: rgba(9, 9, 15, 0.96);
  border: 1px solid rgba(250, 236, 255, 0.25);
}

.role-card h3 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.role-card p {
  margin: 0;
  font-size: 0.92rem;
  color: rgba(250, 236, 255, 0.76);
}

.site-footer {
  border-top: 1px solid rgba(250, 236, 255, 0.08);
  padding: 1.4rem 0 1.6rem;
  font-size: 0.8rem;
  color: rgba(250, 236, 255, 0.6);
}

.footer-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-cta {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(250, 236, 255, 0.8);
}

@media (max-width: 880px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-card {
    order: -1;
  }
}

@media (max-width: 640px) {
  .nav-links {
    gap: 1rem;
    font-size: 0.86rem;
  }

  .hero {
    padding-top: 4.5rem;
  }

  .section {
    padding: 3rem 0 3.25rem;
  }

  .social-grid {
    flex-direction: column;
    align-items: flex-start;
  }
}
