:root {
  --bg: #03070a;
  --text: #edf4ff;
  --muted: #9aa8b8;
  --accent: #00e5ff;
  --accent-soft: rgba(0,229,255,0.11);
  --border: rgba(255,255,255,0.10);
  --panel: rgba(7,13,18,0.58);
  --max: 1180px;
  --shadow: 0 30px 100px rgba(0,0,0,0.55);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    linear-gradient(180deg, rgba(3,7,10,0.92), rgba(6,11,16,0.98)),
    #03070a;
  color: var(--text);
  line-height: 1.5;
  letter-spacing: 0.01em;
  min-height: 100vh;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-shell {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(3,7,10,0.82);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.nav-inner {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.brand span {
  color: var(--accent);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

.nav-links a {
  color: var(--muted);
  font-size: 0.95rem;
  transition: color 0.2s ease, text-shadow 0.2s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--text);
  text-shadow: 0 0 12px rgba(0,229,255,0.25);
}

.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding: 88px 0 72px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 100vw;
  height: 100%;
  transform: translateX(-50%);
  background:
    linear-gradient(90deg,
      rgba(3,7,10,1) 0%,
      rgba(3,7,10,1) 32%,
      rgba(3,7,10,0.82) 46%,
      rgba(3,7,10,0.25) 68%,
      rgba(3,7,10,0.05) 100%
    ),
    url("./wave-bg.png") no-repeat right center;
  background-size: 100% auto;
  background-position: right center;
  opacity: 0.86;
  z-index: 0;
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: end;
}

.eyebrow {
  color: var(--accent);
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

h1 {
  font-size: clamp(3.1rem, 7vw, 6.8rem);
  line-height: 0.94;
  letter-spacing: -0.055em;
  max-width: 9ch;
  text-shadow: 0 0 40px rgba(255,255,255,0.08);
}

.hero-copy p {
  margin-top: 24px;
  max-width: 42rem;
  color: var(--muted);
  font-size: 1.08rem;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid var(--border);
  border-radius: 999px;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.button:hover {
  transform: translateY(-1px);
  border-color: rgba(0,229,255,0.55);
  box-shadow: 0 0 0 1px rgba(0,229,255,0.18), 0 0 30px rgba(0,229,255,0.10);
}

.button.primary {
  background: rgba(0,229,255,0.12);
  border-color: rgba(0,229,255,0.38);
}

.button.secondary {
  color: var(--muted);
  background: rgba(0,0,0,0.16);
}

.hero-panel {
  padding: 30px;
  border: 1px solid var(--border);
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0.018)),
    rgba(5,10,15,0.62);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
}

.hero-panel .label,
.mini-card .label {
  color: var(--accent);
  font-size: 0.76rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.hero-panel strong {
  color: var(--text);
  display: block;
  margin-bottom: 10px;
  font-size: 1.1rem;
  line-height: 1.3;
}

.hero-panel p,
.mini-card p {
  color: var(--muted);
  font-size: 0.98rem;
}

section {
  padding: 96px 0;
  border-top: 1px solid rgba(255,255,255,0.045);
}

.section-head {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 32px;
  margin-bottom: 38px;
}

.section-kicker {
  color: var(--accent);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding-top: 8px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1;
  letter-spacing: -0.045em;
  max-width: 11ch;
}

.section-intro {
  margin-top: 10px;
  color: var(--muted);
  max-width: 48rem;
  font-size: 1.04rem;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
}

.text-block p {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 42rem;
  margin-bottom: 18px;
}

.center-statement {
  max-width: 760px;
  font-size: clamp(1.4rem, 2.6vw, 2.15rem);
  line-height: 1.35;
  letter-spacing: -0.03em;
}

.center-statement strong {
  color: var(--text);
}

.build-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.build-card,
.mini-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 22px;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.01);
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.build-card:hover,
.mini-card:hover {
  transform: translateY(-2px);
  border-color: rgba(0,229,255,0.32);
  box-shadow: 0 0 0 1px rgba(0,229,255,0.08), 0 0 24px rgba(0,229,255,0.07);
}

.build-card h3 {
  font-size: 1.15rem;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.build-card p {
  color: var(--muted);
  font-size: 0.98rem;
}

.invitation-band {
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 36px;
  background:
    linear-gradient(180deg, rgba(0,229,255,0.06), rgba(255,255,255,0.016));
  box-shadow: var(--shadow);
}

.invitation-band h3 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 16px;
  max-width: 16ch;
}

.invitation-band p {
  max-width: 44rem;
  color: var(--muted);
  font-size: 1.05rem;
}

.founder-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.75fr;
  gap: 36px;
  align-items: start;
}

.founder-note {
  text-align: right;
  font-size: 0.98rem;
  color: var(--muted);
  margin-top: 12px;
  line-height: 1.45;
}

.cta-panel {
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 34px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.025), rgba(0,229,255,0.035));
  box-shadow: var(--shadow);
}

.cta-panel h3 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
  letter-spacing: -0.045em;
  max-width: 11ch;
  margin-bottom: 14px;
}

.cta-panel p {
  color: var(--muted);
  max-width: 38rem;
  font-size: 1.02rem;
}

.footer {
  padding: 28px 0 44px;
  color: rgba(148,163,184,0.78);
  font-size: 0.9rem;
}

.footer-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  align-items: center;
}

.ghost-egg {
  opacity: 0.08;
  transition: opacity 0.2s ease;
  user-select: none;
}

.ghost-egg:hover {
  opacity: 0.3;
}

@media (max-width: 980px) {
  .hero-grid,
  .section-head,
  .two-col,
  .build-grid,
  .founder-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 72px;
  }

  .hero::before {
    opacity: 0.45;
    background-position: center center;
  }

  h1 {
    max-width: 10ch;
  }

  .founder-note {
    text-align: left;
  }
}

@media (max-width: 640px) {
  .nav-inner {
    padding: 18px 0;
    align-items: flex-start;
    flex-direction: column;
    min-height: auto;
  }

  .nav-links {
    gap: 14px 18px;
  }

  .hero,
  section {
    padding: 72px 0;
  }

  .hero::before {
    opacity: 0.25;
  }

  .hero-panel,
  .build-card,
  .mini-card,
  .invitation-band,
  .cta-panel {
    border-radius: 20px;
  }
}

/* CONTACT PAGE */

.page-hero {
  min-height: 42vh;
  padding: 88px 0 48px;
}

.contact-wrap {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  align-items: start;
}

.contact-card,
.contact-side {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 30px;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.01);
}

.contact-card h2,
.contact-side h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 14px;
}

.contact-card p,
.contact-side p,
.contact-side li {
  color: var(--muted);
  font-size: 1rem;
}

.form-grid {
  display: grid;
  gap: 16px;
  margin-top: 20px;
}

label {
  display: block;
  font-size: 0.9rem;
  color: var(--text);
  margin-bottom: 8px;
}

input,
textarea {
  width: 100%;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 14px 16px;
  color: var(--text);
  font: inherit;
  outline: none;
}

textarea {
  min-height: 180px;
  resize: vertical;
}

input::placeholder,
textarea::placeholder {
  color: rgba(148,163,184,0.72);
}

input:focus,
textarea:focus {
  border-color: rgba(0,229,255,0.42);
  box-shadow: 0 0 0 1px rgba(0,229,255,0.12), 0 0 22px rgba(0,229,255,0.06);
  background: rgba(255,255,255,0.03);
}

.contact-side ul {
  list-style: none;
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.contact-side li strong {
  color: var(--text);
  display: block;
  margin-bottom: 4px;
}

.note {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.06);
  color: var(--muted);
}

.note strong {
  color: var(--text);
}

@media (max-width: 980px) {
  .contact-wrap {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .contact-card,
  .contact-side {
    border-radius: 22px;
  }
}

