:root {
  --ink: #0f172a;
  --navy: #1e3a8a;
  --navy-deep: #0b1737;
  --navy-soft: #294c9b;
  --blue: #2563eb;
  --sky: #e0f2fe;
  --cyan: #5eead4;
  --teal: #14b8a6;
  --orange: #f97316;
  --paper: #f8fafc;
  --mist: #eaf4fb;
  --white: #fff;
  --muted: #526277;
  --line: rgba(15, 23, 42, 0.14);
  --radius: 20px;
  --shadow: 0 24px 70px rgba(30, 58, 138, 0.14);
  --font-sans: "Montserrat", "Avenir Next", "Arial Nova", "Segoe UI", Arial,
    Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans);
  text-rendering: optimizeLegibility;
}

::selection {
  color: var(--white);
  background: var(--blue);
}

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

button,
input,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

main {
  min-height: 100vh;
  overflow: hidden;
}

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 50%;
  width: min(1440px, calc(100% - 64px));
  height: 96px;
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.brand,
.mini-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 760;
  letter-spacing: -0.03em;
}

.brand img,
.mini-brand img,
.footer-brand img {
  border-radius: 13px;
}

.brand span {
  font-size: 1.18rem;
}

sup {
  position: relative;
  top: -0.1em;
  font-size: 0.45em;
  letter-spacing: 0;
}

.site-header nav {
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: 0.78rem;
  font-weight: 680;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.site-header nav a,
.footer-links a {
  transition: color 180ms ease, opacity 180ms ease;
}

.site-header nav a:hover,
.site-header nav a:focus-visible {
  color: var(--cyan);
}

.header-cta {
  justify-self: end;
  padding: 12px 18px;
  color: var(--ink);
  background: var(--cyan);
  border-radius: 12px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.hero {
  position: relative;
  min-height: 860px;
  padding: 184px max(32px, calc((100vw - 1440px) / 2 + 32px)) 100px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(460px, 0.88fr);
  align-items: center;
  gap: 7vw;
  color: var(--white);
  background:
    radial-gradient(circle at 83% 24%, rgba(37, 99, 235, 0.38), transparent 30%),
    radial-gradient(circle at 42% 100%, rgba(20, 184, 166, 0.2), transparent 30%),
    linear-gradient(135deg, #08132e 0%, #1e3a8a 57%, #0b1737 100%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.34;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.042) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.042) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, black, transparent 82%);
}

.hero-copy,
.hero-visual {
  position: relative;
  z-index: 2;
}

.eyebrow {
  margin: 0 0 26px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #b8c9dd;
  font-size: 0.76rem;
  font-weight: 780;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 32px;
  height: 2px;
  background: var(--cyan);
}

.hero h1 {
  max-width: 780px;
  margin: 0;
  font-family: var(--font-sans);
  font-size: clamp(4rem, 7.1vw, 7.4rem);
  font-weight: 850;
  line-height: 0.9;
  letter-spacing: -0.065em;
}

.hero h1 em {
  color: var(--cyan);
  font-style: normal;
  font-weight: 850;
}

.hero-lede {
  max-width: 650px;
  margin: 36px 0 0;
  color: #c7d4e3;
  font-size: clamp(1.08rem, 1.45vw, 1.35rem);
  line-height: 1.65;
}

.hero-actions {
  margin-top: 38px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 14px;
  font-size: 0.88rem;
  font-weight: 800;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover:not(.button-disabled),
.button:focus-visible:not(.button-disabled) {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--ink);
  background: var(--cyan);
  box-shadow: 0 14px 36px rgba(113, 230, 221, 0.18);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #9af0e9;
  box-shadow: 0 18px 42px rgba(113, 230, 221, 0.25);
}

.button-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(14px);
}

.availability-note {
  margin: 22px 0 0;
  color: #8da1b9;
  font-size: 0.78rem;
}

.hero-visual {
  min-height: 560px;
  display: grid;
  place-items: center;
}

.orbit {
  position: absolute;
  border: 1px solid rgba(113, 230, 221, 0.2);
  border-radius: 50%;
}

.orbit-one {
  width: 530px;
  height: 530px;
  animation: rotate 24s linear infinite;
}

.orbit-two {
  width: 390px;
  height: 390px;
  border-style: dashed;
  animation: rotate 18s linear infinite reverse;
}

.orbit-one::before,
.orbit-two::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 50%;
  width: 11px;
  height: 11px;
  background: var(--orange);
  border-radius: 50%;
  box-shadow: 0 0 24px var(--orange);
}

.orbit-two::before {
  background: var(--cyan);
  box-shadow: 0 0 24px var(--cyan);
}

.signal {
  position: absolute;
  width: 74px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan));
}

.signal-a {
  top: 19%;
  right: 2%;
  transform: rotate(-20deg);
}

.signal-b {
  bottom: 16%;
  left: 0;
  transform: rotate(18deg);
}

.conversation-card {
  position: relative;
  z-index: 3;
  width: min(100%, 430px);
  padding: 22px;
  color: var(--ink);
  background: rgba(250, 252, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 22px;
  box-shadow: 0 38px 100px rgba(0, 0, 0, 0.34);
  transform: rotate(1.5deg);
  backdrop-filter: blur(18px);
}

.conversation-topline,
.context-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mini-brand {
  font-size: 0.92rem;
}

.ready-pill {
  padding: 7px 10px;
  color: #0c6259;
  background: #d8f7f2;
  border-radius: 999px;
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.message {
  max-width: 88%;
  margin-top: 26px;
  padding: 14px 16px;
  font-size: 0.85rem;
  line-height: 1.55;
  border-radius: 18px;
}

.message-user {
  margin-left: auto;
  color: var(--white);
  background: var(--blue);
  border-bottom-right-radius: 5px;
}

.message-norm {
  color: #20344b;
  background: #e8eef3;
  border-bottom-left-radius: 5px;
}

.context-row {
  margin-top: 26px;
  padding: 14px 4px 2px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.7rem;
}

.context-row strong {
  margin-left: auto;
  color: var(--ink);
}

.pulse-dot {
  width: 8px;
  height: 8px;
  margin-left: 10px;
  background: var(--teal);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(29, 184, 169, 0.12);
}

.visual-caption {
  position: absolute;
  z-index: 4;
  right: 0;
  bottom: 5%;
  width: 260px;
  padding: 16px 18px;
  background: rgba(7, 17, 31, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 17px;
  backdrop-filter: blur(16px);
}

.visual-caption strong,
.visual-caption span {
  display: block;
}

.visual-caption strong {
  color: var(--cyan);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.visual-caption span {
  margin-top: 7px;
  color: #c6d3e1;
  font-size: 0.72rem;
  line-height: 1.5;
}

.focus-band {
  padding: 24px max(32px, calc((100vw - 1440px) / 2 + 32px));
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 42px;
  color: #c5d5e6;
  background: #11265c;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.focus-band p {
  margin: 0;
  color: var(--cyan);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.focus-band div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  overflow: hidden;
}

.focus-band span {
  white-space: nowrap;
  font-size: 0.78rem;
}

.section {
  padding: 116px max(32px, calc((100vw - 1440px) / 2 + 32px));
}

.section-kicker {
  margin-bottom: 30px;
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 820;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-kicker.light {
  color: var(--cyan);
}

.section-heading-row {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(300px, 0.7fr);
  align-items: end;
  gap: 8vw;
}

.section h2 {
  margin: 0;
  max-width: 860px;
  font-family: var(--font-sans);
  font-size: clamp(2.8rem, 4.9vw, 5.1rem);
  font-weight: 830;
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.section-heading-row > p,
.science-copy > p,
.join-copy > p,
.trust-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.75;
}

.principles-grid {
  margin-top: 78px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.principle-card {
  min-height: 330px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(7, 17, 31, 0.11);
  border-radius: 24px;
}

.principle-number {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: var(--blue);
  background: var(--sky);
  border-radius: 10px;
  font-size: 0.72rem;
  font-weight: 800;
}

.principle-card h3 {
  margin: auto 0 14px;
  max-width: 320px;
  font-size: 1.4rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.035em;
}

.principle-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.science-section {
  min-height: 760px;
  display: grid;
  grid-template-columns: minmax(400px, 1fr) minmax(0, 0.9fr);
  align-items: center;
  gap: 8vw;
  background: linear-gradient(135deg, #eef8ff 0%, #e0f2fe 100%);
}

.science-visual {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle, rgba(46, 114, 255, 0.1), transparent 60%);
}

.axis {
  position: absolute;
  opacity: 0.5;
  background: var(--line);
}

.axis-x {
  width: 96%;
  height: 1px;
}

.axis-y {
  width: 1px;
  height: 96%;
}

.science-ring {
  position: absolute;
  border: 1px solid rgba(46, 114, 255, 0.26);
  border-radius: 50%;
}

.science-ring-one {
  width: 410px;
  height: 410px;
}

.science-ring-two {
  width: 275px;
  height: 275px;
  border-color: rgba(29, 184, 169, 0.35);
  border-style: dashed;
}

.center-core {
  position: relative;
  z-index: 3;
  width: 144px;
  height: 144px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(7, 17, 31, 0.12);
  border-radius: 36px;
  box-shadow: var(--shadow);
}

.center-core img {
  border-radius: 24px;
}

.data-node {
  position: absolute;
  z-index: 2;
  width: 15px;
  height: 15px;
  background: var(--orange);
  border: 3px solid #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 7px rgba(255, 120, 95, 0.13);
}

.node-a { top: 15%; left: 47%; }
.node-b { right: 13%; bottom: 30%; background: var(--blue); }
.node-c { left: 18%; bottom: 23%; background: var(--teal); }

.plot-label {
  position: absolute;
  margin: 0;
  padding: 9px 12px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 760;
}

.label-one { top: 10%; right: 8%; }
.label-two { left: 5%; top: 42%; }
.label-three { right: 5%; bottom: 12%; }

.dark-eyebrow {
  color: var(--muted);
}

.science-copy h2 {
  font-size: clamp(2.8rem, 4.2vw, 4.6rem);
}

.science-copy > p {
  margin-top: 30px;
}

.science-copy ul {
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.science-copy li {
  position: relative;
  padding: 14px 0 14px 30px;
  border-bottom: 1px solid var(--line);
  color: #31445a;
}

.science-copy li::before {
  content: "";
  position: absolute;
  top: 22px;
  left: 4px;
  width: 8px;
  height: 8px;
  background: var(--teal);
  border-radius: 50%;
}

.access-section {
  background: #f8fafc;
}

.platform-grid {
  margin-top: 70px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.platform-card {
  min-height: 390px;
  padding: 34px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: var(--radius);
}

.platform-android {
  color: var(--white);
  background:
    radial-gradient(circle at 90% 10%, rgba(113, 230, 221, 0.2), transparent 34%),
    linear-gradient(145deg, var(--navy-deep), var(--navy));
}

.platform-ios {
  background: var(--sky);
  border: 1px solid var(--line);
}

.platform-status {
  display: inline-flex;
  padding: 8px 11px;
  color: var(--cyan);
  background: rgba(113, 230, 221, 0.1);
  border-radius: 999px;
  font-size: 0.66rem;
  font-weight: 820;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.platform-status.coming {
  color: var(--blue);
  background: #dbe6ff;
}

.platform-card h3 {
  margin: 28px 0 14px;
  font-family: var(--font-sans);
  font-size: clamp(2.1rem, 3vw, 3.3rem);
  font-weight: 820;
  letter-spacing: -0.045em;
}

.platform-card p {
  max-width: 520px;
  margin: 0;
  color: #aebfd1;
  line-height: 1.7;
}

.platform-ios p {
  color: var(--muted);
}

.button-platform {
  align-self: flex-start;
  color: var(--ink);
  background: var(--cyan);
}

.button-disabled {
  align-self: flex-start;
  color: #748397;
  background: rgba(7, 17, 31, 0.07);
  cursor: not-allowed;
}

.trust-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8vw;
  color: var(--white);
  background:
    radial-gradient(circle at 15% 100%, rgba(29, 184, 169, 0.18), transparent 32%),
    var(--navy-deep);
}

.trust-section h2 {
  max-width: 620px;
}

.trust-copy {
  display: grid;
  gap: 24px;
}

.trust-copy p {
  color: #b6c6d7;
}

.join-section {
  display: grid;
  grid-template-columns: 0.82fr 1fr;
  gap: 9vw;
  align-items: start;
}

.join-copy {
  position: sticky;
  top: 40px;
}

.join-copy h2 {
  font-size: clamp(2.8rem, 4.5vw, 4.8rem);
}

.join-copy > p {
  margin-top: 28px;
}

.join-points {
  margin-top: 36px;
  display: grid;
  gap: 14px;
}

.join-points span {
  padding-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 16px;
  color: #34475d;
  border-bottom: 1px solid var(--line);
}

.join-points b {
  color: var(--blue);
  font-size: 0.72rem;
}

.interest-form {
  padding: 36px;
  display: grid;
  gap: 22px;
  background: linear-gradient(180deg, #ffffff, #f6fbff);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.form-heading {
  padding-bottom: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid var(--line);
}

.form-heading span {
  font-size: 1.25rem;
  font-weight: 760;
  letter-spacing: -0.03em;
}

.form-heading small {
  color: var(--muted);
}

.interest-form > label {
  display: grid;
  gap: 9px;
  color: #20344b;
  font-size: 0.78rem;
  font-weight: 760;
}

.interest-form > label > span:first-child,
.interest-form > label > span {
  color: var(--muted);
  font-weight: 500;
}

.interest-form input[type="text"],
.interest-form input[type="email"],
.interest-form select {
  width: 100%;
  min-height: 54px;
  padding: 0 16px;
  color: var(--ink);
  background: #f5f7f9;
  border: 1px solid rgba(7, 17, 31, 0.12);
  border-radius: 12px;
  outline: 0;
  transition: border 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.interest-form input:focus,
.interest-form select:focus {
  background: #fff;
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(46, 114, 255, 0.1);
}

.consent-row {
  grid-template-columns: 20px 1fr !important;
  align-items: start;
  gap: 12px !important;
  padding: 16px;
  background: #f5f7f9;
  border-radius: 12px;
}

.consent-row input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: var(--blue);
}

.consent-row span {
  color: #53657a !important;
  font-size: 0.74rem;
  line-height: 1.55;
}

.honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-button {
  width: 100%;
  border: 0;
}

.form-button:disabled {
  opacity: 0.65;
  cursor: wait;
}

.form-status {
  min-height: 22px;
  margin: -8px 0 0;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.5;
}

.form-status.success { color: #0b7569; }
.form-status.error { color: #a53f2d; }

.faq-section {
  background: #eaf4fb;
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 9vw;
}

.faq-layout h2 {
  font-size: clamp(2.8rem, 4.1vw, 4.5rem);
}

.faq-list details {
  border-top: 1px solid rgba(7, 17, 31, 0.18);
}

.faq-list details:last-child {
  border-bottom: 1px solid rgba(7, 17, 31, 0.18);
}

.faq-list summary {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  font-size: 1rem;
  font-weight: 720;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  color: var(--blue);
  background: rgba(46, 114, 255, 0.09);
  border-radius: 50%;
  transition: transform 180ms ease;
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-list details p {
  margin: -6px 52px 24px 0;
  color: var(--muted);
  line-height: 1.7;
}

footer {
  padding: 58px max(32px, calc((100vw - 1440px) / 2 + 32px)) 36px;
  color: #c3d0dd;
  background: #08132e;
}

.footer-brand,
.footer-links {
  display: flex;
  align-items: center;
}

.footer-brand {
  gap: 14px;
}

.footer-brand strong,
.footer-brand span {
  display: block;
}

.footer-brand strong {
  color: #fff;
  font-size: 1.05rem;
}

.footer-brand span {
  margin-top: 3px;
  font-size: 0.72rem;
}

.footer-links {
  margin: 40px 0 32px;
  flex-wrap: wrap;
  gap: 28px;
  font-size: 0.76rem;
  font-weight: 700;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--cyan);
}

.legal-line {
  margin: 0;
  padding-top: 24px;
  color: #74869a;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.68rem;
  line-height: 1.6;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.founder-shell {
  min-height: 100vh;
  padding: 48px clamp(20px, 5vw, 72px);
  background: #eef6fb;
}

.founder-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  padding: 34px;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy-deep), var(--navy));
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.founder-header h1,
.founder-denied h1 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
  letter-spacing: -0.05em;
}

.founder-header p:not(.section-kicker),
.founder-denied p {
  max-width: 760px;
  margin: 18px 0 0;
  color: #c9d9ed;
  line-height: 1.65;
}

.founder-identity {
  display: grid;
  justify-items: end;
  gap: 10px;
  font-size: 0.8rem;
}

.founder-identity a,
.founder-denied a {
  padding: 9px 12px;
  color: var(--ink);
  background: var(--cyan);
  border-radius: 10px;
  font-weight: 800;
}

.founder-metrics {
  margin: 24px 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.founder-metrics div {
  padding: 22px;
  display: grid;
  gap: 7px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
}

.founder-metrics strong {
  color: var(--navy);
  font-size: 2rem;
}

.founder-metrics span,
.founder-status {
  color: var(--muted);
  font-size: 0.78rem;
}

.founder-status {
  min-height: 20px;
  margin: 0 0 10px;
}

.founder-table-wrap {
  overflow-x: auto;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 16px 50px rgba(30, 58, 138, 0.08);
}

.founder-table {
  width: 100%;
  min-width: 1120px;
  border-collapse: collapse;
}

.founder-table th,
.founder-table td {
  padding: 15px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  font-size: 0.78rem;
}

.founder-table th {
  color: var(--navy);
  background: #edf6ff;
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.founder-table td:first-child span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.7rem;
}

.founder-table select {
  min-width: 130px;
  padding: 9px 10px;
  color: var(--ink);
  background: #f8fafc;
  border: 1px solid var(--line);
  border-radius: 9px;
}

.founder-table button {
  padding: 9px 13px;
  color: var(--white);
  background: var(--blue);
  border: 0;
  border-radius: 9px;
  font-weight: 800;
  cursor: pointer;
}

.founder-table button:disabled {
  opacity: 0.55;
  cursor: wait;
}

.delivery-pill {
  display: inline-flex;
  padding: 6px 9px;
  border-radius: 999px;
  color: #475569;
  background: #e2e8f0;
  font-size: 0.66rem;
  font-weight: 800;
}

.delivery-sent {
  color: #076357;
  background: #ccfbf1;
}

.delivery-failed {
  color: #9a3412;
  background: #ffedd5;
}

.founder-empty,
.founder-denied {
  padding: 48px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

@keyframes rotate {
  to { transform: rotate(360deg); }
}

@media (max-width: 1100px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .site-header nav {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 170px;
  }

  .hero-copy {
    max-width: 800px;
  }

  .hero-visual {
    min-height: 600px;
  }

  .focus-band {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .focus-band div {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .section-heading-row,
  .science-section,
  .join-section,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .section-heading-row {
    align-items: start;
    gap: 28px;
  }

  .section-heading-row > p {
    max-width: 720px;
  }

  .science-visual {
    min-height: 540px;
  }

  .join-copy {
    position: static;
  }
}

@media (max-width: 760px) {
  .site-header {
    width: calc(100% - 36px);
    height: 78px;
  }

  .brand span {
    font-size: 1rem;
  }

  .brand img {
    width: 38px;
    height: 38px;
  }

  .header-cta {
    padding: 10px 14px;
    font-size: 0.68rem;
  }

  .hero {
    min-height: auto;
    padding: 138px 20px 70px;
    gap: 45px;
  }

  .hero h1 {
    font-size: clamp(3.8rem, 20vw, 5.7rem);
  }

  .hero-lede {
    margin-top: 28px;
  }

  .hero-actions,
  .hero-actions .button {
    width: 100%;
  }

  .hero-visual {
    min-height: 470px;
  }

  .orbit-one {
    width: 410px;
    height: 410px;
  }

  .orbit-two {
    width: 310px;
    height: 310px;
  }

  .conversation-card {
    width: calc(100% - 18px);
    padding: 18px;
  }

  .visual-caption {
    right: 4px;
    bottom: -3%;
    width: 230px;
  }

  .focus-band,
  .section,
  footer {
    padding-left: 20px;
    padding-right: 20px;
  }

  .focus-band div {
    gap: 12px 20px;
  }

  .section {
    padding-top: 82px;
    padding-bottom: 82px;
  }

  .section h2 {
    font-size: clamp(2.9rem, 14vw, 4.5rem);
  }

  .principles-grid,
  .platform-grid,
  .trust-section {
    grid-template-columns: 1fr;
  }

  .principle-card {
    min-height: 270px;
  }

  .science-section {
    gap: 30px;
  }

  .science-visual {
    min-height: 410px;
  }

  .science-ring-one {
    width: 320px;
    height: 320px;
  }

  .science-ring-two {
    width: 220px;
    height: 220px;
  }

  .platform-card {
    min-height: 380px;
    padding: 26px;
  }

  .platform-card .button {
    width: 100%;
    text-align: center;
  }

  .interest-form {
    padding: 24px 18px;
  }

  .form-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
  }

  .faq-list summary {
    font-size: 0.94rem;
  }

  .founder-shell {
    padding: 20px;
  }

  .founder-header {
    flex-direction: column;
    padding: 26px 22px;
  }

  .founder-identity {
    justify-items: start;
  }

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

/* Ask Norm product-site expansion: real app, youth example, and tester feedback */
.button-light {
  color: #18233a;
  background: #fff;
  border-color: #d8dcec;
}

.experience-section {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(420px, 1.12fr);
  align-items: center;
  gap: clamp(52px, 8vw, 120px);
  overflow: hidden;
  background: #fff;
}

.experience-copy p,
.youth-intro p,
.feedback-copy p {
  color: #526176;
  font-size: 1.08rem;
  line-height: 1.75;
}

.experience-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 32px;
}

.text-link {
  color: #3d51cf;
  font-weight: 750;
  text-decoration: none;
}

.app-screen {
  position: relative;
  margin: 0;
  padding: 26px 26px 0;
  border-radius: 34px;
  background: linear-gradient(145deg, #081220, #182540);
  box-shadow: 0 34px 80px rgba(8,18,32,.24);
}

.app-screen::before {
  content: "";
  position: absolute;
  inset: -70px -90px auto auto;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: rgba(84, 91, 235, .22);
  filter: blur(3px);
}

.app-screen img {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  max-height: 610px;
  object-fit: cover;
  object-position: top;
  border-radius: 22px 22px 0 0;
}

.app-screen figcaption {
  position: relative;
  padding: 16px 2px 18px;
  color: #bdc9df;
  font-size: .76rem;
  line-height: 1.45;
}

.youth-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(420px, 1.2fr);
  gap: clamp(40px, 7vw, 100px);
  color: #fff;
  background:
    radial-gradient(circle at 8% 8%, rgba(56,130,246,.38), transparent 30%),
    radial-gradient(circle at 92% 90%, rgba(136,92,246,.34), transparent 34%),
    #081220;
}

.youth-intro h2,
.feedback-copy h2 {
  color: #fff;
}

.youth-intro p,
.feedback-copy p {
  color: #becae0;
}

.youth-demo {
  padding: 28px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 20px;
  background: rgba(255,255,255,.07);
  backdrop-filter: blur(14px);
}

.demo-label {
  margin-bottom: 20px;
  color: #99b7ff;
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.demo-message {
  width: min(86%, 620px);
  padding: 18px 20px;
  border-radius: 16px;
  line-height: 1.58;
}

.demo-question {
  margin-left: auto;
  color: #fff;
  background: linear-gradient(135deg, #3882f6, #885cf6);
  border-bottom-right-radius: 4px;
}

.demo-answer {
  margin-top: 16px;
  color: #172035;
  background: #fff;
  border-bottom-left-radius: 4px;
}

.demo-answer strong { color: #4a50d9; }
.demo-answer p { margin: 8px 0 0; }

.youth-boundary {
  grid-column: 1 / -1;
  margin: 0;
  padding: 16px 18px;
  border: 1px solid rgba(147,179,255,.22);
  border-radius: 12px;
  color: #b9c7df;
  background: rgba(8,18,32,.5);
  font-size: .9rem;
  line-height: 1.6;
}

.feedback-section {
  display: grid;
  grid-template-columns: minmax(0, .74fr) minmax(480px, 1.26fr);
  gap: clamp(46px, 7vw, 100px);
  align-items: start;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(56,130,246,.1), transparent 40%),
    #111b2d;
}

.feedback-copy ul {
  display: grid;
  gap: 14px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.feedback-copy li::before {
  content: "✓";
  margin-right: 11px;
  color: #80a7ff;
  font-weight: 900;
}

.feedback-form {
  display: grid;
  gap: 18px;
  padding: 30px;
  color: #172035;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 26px 70px rgba(0,0,0,.2);
}

.feedback-form label,
.rating-field legend {
  display: grid;
  gap: 8px;
  font-weight: 720;
}

.feedback-form label > span,
.rating-field small {
  color: #748196;
  font-size: .76rem;
  font-weight: 500;
}

.feedback-form input[type="text"],
.feedback-form input[type="email"],
.feedback-form select,
.feedback-form textarea {
  box-sizing: border-box;
  width: 100%;
  padding: 13px 14px;
  font: inherit;
  color: #172035;
  border: 1px solid #cfd6e2;
  border-radius: 12px;
  background: #fbfcff;
}

.feedback-form textarea { resize: vertical; }
.feedback-form input:focus,
.feedback-form select:focus,
.feedback-form textarea:focus {
  outline: 0;
  border-color: #5b72ed;
  box-shadow: 0 0 0 4px rgba(56,130,246,.11);
}

.field-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.rating-field {
  margin: 0;
  padding: 0;
  border: 0;
}

.rating-options {
  display: flex;
  gap: 9px;
}

.rating-options label { position: relative; }
.rating-options input { position: absolute; opacity: 0; }
.rating-options span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: #4f5a6c;
  border: 1px solid #ccd4e1;
  border-radius: 10px;
  cursor: pointer;
}
.rating-options input:checked + span {
  color: #fff;
  border-color: #5c5be7;
  background: linear-gradient(135deg, #3882f6, #885cf6);
}

@media (max-width: 960px) {
  .experience-section,
  .youth-section,
  .feedback-section { grid-template-columns: 1fr; }
  .site-header nav { display: none; }
}

@media (max-width: 620px) {
  .app-screen { padding: 14px 14px 0; border-radius: 22px; }
  .youth-demo,
  .feedback-form { padding: 20px; }
  .field-pair { grid-template-columns: 1fr; }
  .demo-message { width: auto; }
  .rating-options { justify-content: space-between; }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Canonical AskNorm UX Blueprint — founder supplied August 7, 2026 */
@font-face {
  font-family: "Inter";
  src: url("/fonts/InterVariable.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

:root {
  --ink: #081220;
  --navy: #081220;
  --navy-deep: #050b16;
  --navy-soft: #1e293b;
  --blue: #3882f6;
  --sky: #eef3ff;
  --cyan: #4bc8f5;
  --teal: #3882f6;
  --orange: #885cf6;
  --paper: #ffffff;
  --mist: #f3f4f6;
  --white: #ffffff;
  --muted: #5d6878;
  --line: rgba(8, 18, 32, 0.12);
  --radius: 12px;
  --shadow: 0 20px 60px rgba(8, 18, 32, 0.1);
  --font-sans: "Inter", "Avenir Next", "Segoe UI", Arial, sans-serif;
}

body {
  background: #ffffff;
  font-family: var(--font-sans);
}

main {
  overflow: clip;
}

.site-header {
  width: min(1280px, calc(100% - 48px));
  height: 84px;
  grid-template-columns: 1fr auto 1fr;
  gap: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.brand,
.mini-brand,
.footer-brand {
  gap: 10px;
}

.brand img,
.mini-brand img,
.footer-brand img {
  border-radius: 0;
  object-fit: contain;
  box-shadow: none;
}

.brand span {
  font-size: 1.12rem;
  font-weight: 800;
  letter-spacing: -0.035em;
}

.site-header nav {
  gap: 30px;
  font-size: 0.72rem;
  letter-spacing: 0.035em;
  text-transform: none;
}

.header-cta,
.button {
  border-radius: 12px;
}

.header-cta {
  padding: 11px 18px;
  color: #ffffff;
  background: linear-gradient(135deg, #3882f6, #885cf6);
  box-shadow: 0 10px 28px rgba(79, 95, 238, 0.28);
}

.hero {
  min-height: 780px;
  padding: 150px max(24px, calc((100vw - 1280px) / 2)) 86px;
  grid-template-columns: minmax(0, 1.06fr) minmax(390px, 0.78fr);
  gap: clamp(52px, 7vw, 108px);
  background:
    radial-gradient(circle at 82% 18%, rgba(56, 130, 246, 0.25), transparent 27%),
    radial-gradient(circle at 74% 80%, rgba(136, 92, 246, 0.22), transparent 28%),
    linear-gradient(130deg, #081220 0%, #0b1830 54%, #12183d 100%);
}

.hero-grid {
  opacity: 0.18;
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black, transparent 90%);
}

.hero-copy {
  max-width: 760px;
}

.eyebrow {
  margin-bottom: 22px;
  gap: 10px;
  color: #c6d2e4;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
}

.eyebrow span {
  width: 28px;
  background: linear-gradient(90deg, #3882f6, #885cf6);
}

.hero h1 {
  max-width: none;
  font-size: clamp(4rem, 6.15vw, 6.4rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.06em;
}

.hero h1 span,
.hero h1 em {
  display: block;
}

.hero h1 span {
  white-space: nowrap;
}

.hero h1 em {
  margin-top: 0.1em;
  color: #ffffff;
  background: linear-gradient(90deg, #55c7fa 0%, #3882f6 46%, #a675ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-lede {
  max-width: 620px;
  margin-top: 30px;
  color: #c8d2e2;
  font-size: clamp(1rem, 1.25vw, 1.17rem);
  line-height: 1.65;
}

.hero-actions {
  margin-top: 34px;
}

.button {
  min-height: 52px;
  padding: 0 22px;
  gap: 16px;
  font-size: 0.84rem;
}

.button-primary,
.button-platform {
  color: #ffffff;
  background: linear-gradient(135deg, #3882f6, #885cf6);
  box-shadow: 0 12px 30px rgba(78, 89, 239, 0.24);
}

.button-primary:hover,
.button-primary:focus-visible {
  color: #ffffff;
  background: linear-gradient(135deg, #2875ef, #7549e8);
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.32);
  background: transparent;
}

.availability-note {
  margin-top: 20px;
  color: #91a0b5;
}

.hero-visual {
  min-height: 510px;
  display: grid;
  place-items: start center;
  padding-top: 8px;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 4% 0 8%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 32px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.025));
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(16px);
}

.hero-logo-mark {
  position: relative;
  z-index: 2;
  width: min(46%, 240px);
  height: auto;
  margin-top: 20px;
  object-fit: contain;
  filter: drop-shadow(0 24px 34px rgba(25, 65, 201, 0.3));
}

.orbit,
.signal {
  display: none;
}

.conversation-card {
  position: absolute;
  z-index: 3;
  left: 28px;
  right: 28px;
  bottom: 46px;
  width: auto;
  max-width: 430px;
  margin: 0 auto;
  padding: 22px;
  border: 1px solid rgba(8, 18, 32, 0.1);
  border-radius: 12px;
  transform: none;
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.2);
}

.mini-brand img {
  width: 28px;
  height: 33px;
}

.ready-pill {
  color: #2d5ac7;
  background: #eef3ff;
}

.message {
  border-radius: 12px;
}

.message-user {
  background: linear-gradient(135deg, #3882f6, #885cf6);
  border-bottom-right-radius: 4px;
}

.message-norm {
  background: #f0f2f6;
  border-bottom-left-radius: 4px;
}

.visual-caption {
  display: none;
}

.focus-band {
  padding: 22px max(24px, calc((100vw - 1280px) / 2));
  background: #111b2d;
}

.focus-band p {
  color: #8aaeff;
}

.section {
  padding: 100px max(24px, calc((100vw - 1280px) / 2));
}

.section-kicker {
  margin-bottom: 24px;
  color: #4e65e8;
}

.section-heading-row {
  grid-template-columns: minmax(0, 1.14fr) minmax(300px, 0.7fr);
  gap: clamp(42px, 7vw, 96px);
}

.section h2 {
  max-width: 780px;
  font-size: clamp(2.55rem, 4.25vw, 4.25rem);
  font-weight: 750;
  line-height: 1.03;
  letter-spacing: -0.05em;
}

.principles-grid {
  margin-top: 58px;
  gap: 18px;
}

.principle-card {
  min-height: 280px;
  padding: 28px;
  border-radius: 12px;
  box-shadow: 0 14px 44px rgba(8, 18, 32, 0.055);
}

.principle-number {
  color: #445ee3;
  background: #eef2ff;
  border-radius: 10px;
}

.science-section {
  min-height: 690px;
  background:
    radial-gradient(circle at 18% 22%, rgba(56, 130, 246, 0.11), transparent 28%),
    linear-gradient(135deg, #f8faff 0%, #eef1fb 100%);
}

.science-ring-one {
  border-color: rgba(56, 130, 246, 0.3);
}

.science-ring-two {
  border-color: rgba(136, 92, 246, 0.34);
}

.center-core {
  border-radius: 24px;
  background: #ffffff;
}

.center-core img {
  width: 80px;
  height: 94px;
  border-radius: 0;
  object-fit: contain;
}

.platform-grid {
  gap: 18px;
}

.platform-card {
  min-height: 360px;
  border-radius: 12px;
}

.platform-android {
  background:
    radial-gradient(circle at 88% 12%, rgba(56, 130, 246, 0.3), transparent 34%),
    linear-gradient(145deg, #081220, #17213c);
}

.platform-ios {
  background: #f3f4f6;
}

.platform-status {
  color: #93b3ff;
  background: rgba(56, 130, 246, 0.14);
}

.trust-section {
  background:
    radial-gradient(circle at 10% 100%, rgba(136, 92, 246, 0.16), transparent 30%),
    linear-gradient(135deg, #081220, #111c32);
}

.interest-form {
  border-radius: 12px;
  box-shadow: 0 18px 54px rgba(8, 18, 32, 0.09);
}

.interest-form input[type="text"],
.interest-form input[type="email"],
.interest-form select,
.consent-row {
  border-radius: 12px;
}

.interest-form input:focus,
.interest-form select:focus {
  border-color: #5b72ed;
  box-shadow: 0 0 0 4px rgba(56, 130, 246, 0.11);
}

.faq-section {
  background: #f3f4f6;
}

.faq-list summary span {
  color: #5d61df;
  background: #e7e9ff;
}

footer {
  background: #081220;
}

.footer-brand img {
  width: 38px;
  height: 44px;
}

@media (max-width: 1100px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 138px;
  }

  .hero-copy {
    max-width: 820px;
  }

  .hero-visual {
    width: min(100%, 680px);
    margin: 0 auto;
  }
}

@media (max-width: 760px) {
  .site-header {
    width: calc(100% - 32px);
    height: 76px;
  }

  .brand img {
    width: 31px;
    height: 37px;
  }

  .header-cta {
    padding: 9px 12px;
  }

  .hero {
    padding: 118px 18px 64px;
    gap: 42px;
  }

  .hero h1 {
    font-size: clamp(2.7rem, 12vw, 4.25rem);
    letter-spacing: -0.065em;
  }

  .hero h1 span {
    white-space: nowrap;
  }

  .hero-visual {
    min-height: 490px;
  }

  .hero-visual::before {
    inset: 0;
    border-radius: 20px;
  }

  .hero-logo-mark {
    width: 150px;
    margin-top: 22px;
  }

  .conversation-card {
    left: 14px;
    right: 14px;
    bottom: 22px;
    padding: 18px;
  }

  .focus-band,
  .section,
  footer {
    padding-left: 18px;
    padding-right: 18px;
  }

  .section {
    padding-top: 74px;
    padding-bottom: 74px;
  }

  .section h2 {
    font-size: clamp(2.35rem, 11.5vw, 3.55rem);
  }

  .principle-card,
  .platform-card {
    border-radius: 12px;
  }
}
