:root {
  --bg: #050914;
  --panel: rgba(9, 18, 32, 0.88);
  --line: rgba(255,255,255,.11);
  --text: #f5f8ff;
  --muted: #a7b7cd;
  --blue: #168fe4;
  --green: #20c76a;
  --yellow: #ffb000;
  --red: #f04a2a;
  --gradient: linear-gradient(135deg, var(--blue), var(--green));
  --launch-gradient: linear-gradient(90deg, var(--blue), var(--green), var(--yellow), var(--red));
  --radius: 30px;
  --shadow: 0 34px 100px rgba(0,0,0,.48);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 14% 6%, rgba(22,143,228,.20), transparent 28%),
    radial-gradient(circle at 84% 8%, rgba(32,199,106,.15), transparent 28%),
    radial-gradient(circle at 80% 88%, rgba(255,176,0,.10), transparent 22%),
    linear-gradient(180deg, #030711 0%, #07111d 56%, #030711 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.028) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: radial-gradient(circle at 50% 10%, black, transparent 72%);
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  padding: 30px 0 54px;
}

.orb {
  position: absolute;
  filter: blur(62px);
  opacity: .30;
  border-radius: 999px;
  pointer-events: none;
}
.orb-blue { width: 390px; height: 390px; background: var(--blue); top: 80px; left: -150px; }
.orb-green { width: 430px; height: 430px; background: var(--green); top: 90px; right: -180px; }
.orb-yellow { width: 260px; height: 260px; background: var(--yellow); bottom: 180px; right: 12%; opacity: .18; }
.orb-red { width: 220px; height: 220px; background: var(--red); bottom: -40px; left: 10%; opacity: .16; }

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.header {
  min-height: 94px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand { display: inline-flex; align-items: center; line-height: 0; overflow: visible; }

.brand img {
  width: 292px;
  height: auto;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
}

.header-cta {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  color: #f0f6ff;
  background: rgba(255,255,255,.05);
  font-weight: 800;
  backdrop-filter: blur(14px);
}

.hero-grid {
  margin-top: clamp(34px, 5.5vh, 72px);
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(340px, .88fr);
  gap: 28px;
  align-items: start;
}

.copy-card,
.optin-card,
.audience-strip,
.founder-note {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px);
}

.copy-card,
.optin-card {
  padding: clamp(30px, 5vw, 58px);
}

.copy-card {
  position: relative;
  overflow: hidden;
  padding-bottom: clamp(48px, 5vw, 68px);
  background:
    linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.018)),
    radial-gradient(circle at 50% 0%, rgba(22,143,228,.11), transparent 42%),
    var(--panel);
}

.copy-card::before,
.optin-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 5px;
  background: var(--launch-gradient);
}

.date-line {
  margin: 0 0 18px;
  color: #86d0ff;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.4;
  letter-spacing: .24em;
  text-transform: uppercase;
}

h1, h2, h3 {
  margin: 0;
  font-family: "Space Grotesk", Inter, ui-sans-serif, system-ui, sans-serif;
  letter-spacing: -.045em;
}

h1 {
  max-width: 720px;
  font-size: clamp(3.2rem, 7vw, 6.7rem);
  line-height: .95;
}

h2 {
  max-width: 780px;
  margin-top: 26px;
  color: #eef5ff;
  font-size: clamp(1.42rem, 2.6vw, 2.45rem);
  line-height: 1.14;
}

h2 span {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  white-space: nowrap;
}

.ai-era {
  display: inline-block;
  margin-left: .28em;
}

.intro {
  max-width: 760px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.12rem);
  line-height: 1.78;
}

.notice-box {
  width: 100%;
  max-width: 100%;
  margin: 44px 0 0;
  padding: 26px 28px 30px;
  border: 1px solid rgba(22,143,228,.22);
  border-radius: 22px;
  background: rgba(0,0,0,.22);
  overflow-wrap: break-word;
}

.notice-box strong {
  display: block;
  margin: 0 0 14px;
  color: var(--text);
  font-size: 1.08rem;
  line-height: 1.35;
}

.notice-box p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
  max-width: 100%;
}

.optin-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(18,34,58,.94), rgba(8,17,31,.94)),
    radial-gradient(circle at 80% 0%, rgba(32,199,106,.18), transparent 36%),
    radial-gradient(circle at 10% 15%, rgba(22,143,228,.18), transparent 34%);
  color: var(--text);
}

.optin-kicker {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}

.optin-kicker img {
  width: 46px;
  height: 46px;
}

.optin-kicker span {
  color: #86d0ff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .24em;
  text-transform: uppercase;
}

.optin-card h3 {
  color: var(--text);
  font-size: clamp(2rem, 4vw, 3.55rem);
  line-height: 1.03;
}

.optin-copy {
  margin: 32px 0 0;
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.78;
}

.launch-form {
  margin-top: 30px;
  padding: 12px;
  border: 1px solid rgba(134,208,255,.18);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.026)),
    rgba(3,8,16,.38);
  box-shadow: 0 20px 70px rgba(0,0,0,.32);
}

.launch-form label {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin: 12px 6px 8px;
  color: #dce9ff;
  font-size: 13px;
  font-weight: 900;
}

.launch-form label:first-of-type {
  margin-top: 0;
}

.launch-form label span {
  color: #8fa0b8;
  font-weight: 800;
}

.launch-form input,
.launch-button {
  width: 100%;
  min-height: 60px;
  border-radius: 15px;
  padding: 0 18px;
  font-size: 1rem;
}

.launch-form input {
  color: var(--text);
  background: rgba(3,8,16,.62);
  border: 1px solid rgba(255,255,255,.10);
  outline: none;
}

.launch-form input::placeholder {
  color: #7f91aa;
}

.launch-form input:focus {
  border-color: rgba(134,208,255,.5);
  box-shadow: 0 0 0 4px rgba(22,143,228,.12);
}

.honeypot {
  position: absolute;
  left: -9999px;
}

.launch-button {
  margin-top: 12px;
  border: 0;
  color: #ffffff;
  background: linear-gradient(135deg, var(--blue), var(--green));
  font-weight: 900;
  box-shadow: 0 12px 32px rgba(22,143,228,.28);
}

.launch-button:disabled {
  cursor: wait;
  opacity: .66;
}

.form-status {
  min-height: 22px;
  margin: 12px 6px 0;
  color: #94a7c0;
  font-size: 14px;
  line-height: 1.5;
}

.form-status[data-type="success"] {
  color: #77e6a9;
}

.form-status[data-type="error"] {
  color: #ff987f;
}

.form-status[data-type="pending"] {
  color: #86d0ff;
}

.optin-card small {
  margin-top: 14px;
  color: #94a7c0;
  line-height: 1.55;
}

.audience-strip {
  margin-top: 64px;
  padding: clamp(20px, 3vw, 28px);
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  background: rgba(255,255,255,.04);
  clear: both;
}

.audience-strip span {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border-radius: 999px;
  color: #dce9ff;
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(255,255,255,.11);
  font-size: 14px;
  font-weight: 800;
}

.founder-note {
  margin-top: 28px;
  display: grid;
  grid-template-columns: 108px minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  padding: clamp(24px, 4vw, 36px);
  background:
    radial-gradient(circle at 0% 50%, rgba(22,143,228,.10), transparent 36%),
    rgba(12,22,38,.86);
}

.founder-symbol {
  width: 108px;
  height: 108px;
  display: grid;
  place-items: center;
  border-radius: 26px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
}

.founder-symbol img {
  width: 82px;
  background: transparent !important;
}

.founder-note > div:last-child {
  min-width: 0;
}

.founder-note h3 {
  font-size: clamp(1.3rem, 3vw, 2rem);
  line-height: 1.15;
  max-width: 100%;
  overflow-wrap: anywhere;
}

.founder-note p:last-child {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.75;
  max-width: 100%;
  overflow-wrap: anywhere;
}

.footer {
  margin-top: 34px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px 24px;
  color: #8fa0b8;
  font-size: 14px;
  text-align: center;
}

.footer p { margin: 0; }
.footer div { display: inline-flex; gap: 10px; }
.footer a { color: #d7e7ff; font-weight: 700; }

@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .audience-strip {
    margin-top: 52px;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .header {
    min-height: 82px;
  }

  .brand img {
    width: 230px;
  }

  .header-cta {
    display: none;
  }

  .copy-card,
  .optin-card {
    padding: 28px 22px;
  }

  .copy-card {
    padding-bottom: 44px;
  }

  .notice-box {
    margin-top: 36px;
    padding: 22px 20px 26px;
  }

  .audience-strip {
    margin-top: 48px;
  }

  .founder-note {
    grid-template-columns: 1fr;
  }

  .founder-symbol {
    width: 94px;
    height: 94px;
  }

  .founder-symbol img {
    width: 70px;
  }
}


/* FINAL Founder Note heading overflow fix */
.founder-note {
  overflow: hidden;
}

.founder-copy {
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
}

.founder-note h3 {
  max-width: 820px;
  width: 100%;
  color: var(--text);
  font-size: clamp(1.18rem, 1.85vw, 1.52rem);
  line-height: 1.24;
  letter-spacing: -0.02em;
  white-space: normal;
  overflow-wrap: break-word;
  word-break: normal;
}

.founder-note p:last-child {
  max-width: 900px;
  width: 100%;
  margin: 16px 0 0;
  color: var(--muted);
  line-height: 1.75;
  white-space: normal;
  overflow-wrap: break-word;
  word-break: normal;
}

.desktop-break {
  display: block;
}

@media (max-width: 980px) {
  .desktop-break {
    display: none;
  }

  .founder-note h3 {
    max-width: 100%;
    font-size: clamp(1.25rem, 4vw, 1.8rem);
  }
}


/* Clean transparent logo safeguard */
.brand,
.brand img {
  background: transparent !important;
  background-color: transparent !important;
  box-shadow: none !important;
  border: 0 !important;
  outline: 0 !important;
}
