:root {
  --ink: #0a2540;
  --muted: #425466;
  --blue: #635bff;
  --blue-dark: #4f46e5;
  --coral: #ff6b6b;
  --mint: #00b8a9;
  --sky: #00a9e8;
  --orange: #ffb000;
  --magenta: #ff4fd8;
  --line: #d9e2ec;
  --soft-blue: #f0efff;
  --soft-coral: #fff0f0;
  --soft-mint: #e9fbf8;
  --white: #ffffff;
  --radius: 16px;
  --max-width: 1240px;
  --shadow: 0 18px 44px rgba(50, 50, 93, 0.12), 0 4px 12px rgba(0, 0, 0, 0.05);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--white);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Helvetica Neue", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

.site-header {
  position: relative;
  z-index: 10;
  isolation: isolate;
  width: min(calc(100% - 64px), var(--max-width));
  height: 94px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 36px;
}

.site-header::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  border-bottom: 1px solid rgba(10, 37, 64, 0.08);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px);
}

.site-header > * {
  position: relative;
  z-index: 1;
}

.brand {
  justify-self: start;
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-name {
  font-size: 21px;
  font-weight: 800;
  letter-spacing: 0.025em;
}

.brand-mark {
  display: block;
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 42px;
}

.nav-links a,
.text-link {
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
}

.nav-links a:hover,
.text-link:hover {
  color: var(--blue);
}

.site-header > .button {
  justify-self: end;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 28px;
  border: 0;
  border-radius: 7px;
  background: linear-gradient(135deg, #635bff 0%, #5145e6 100%);
  color: var(--white);
  font: inherit;
  font-size: 16px;
  font-weight: 750;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(99, 91, 255, 0.24);
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #5145e6 0%, #4438ca 100%);
  box-shadow: 0 12px 28px rgba(99, 91, 255, 0.3);
}

.button:focus-visible,
a:focus-visible,
summary:focus-visible,
input:focus-visible,
select:focus-visible {
  outline: 3px solid rgba(11, 80, 255, 0.26);
  outline-offset: 4px;
}

.button-small {
  min-height: 50px;
  padding: 0 22px;
  font-size: 14px;
}

.section {
  width: min(calc(100% - 64px), var(--max-width));
  margin: 0 auto;
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: 760px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 72px;
  padding: 72px 0 88px;
}

.hero::before {
  content: "";
  position: absolute;
  z-index: -2;
  top: -166px;
  right: calc((var(--max-width) - 100vw) / 2);
  width: min(60vw, 920px);
  height: 860px;
  background:
    radial-gradient(circle at 35% 70%, rgba(0, 212, 255, 0.88), transparent 34%),
    radial-gradient(circle at 63% 57%, rgba(99, 91, 255, 0.94), transparent 42%),
    radial-gradient(circle at 70% 28%, rgba(255, 79, 216, 0.92), transparent 42%),
    linear-gradient(145deg, #ffb000 4%, #ff7a59 30%, #ff4fd8 53%, #635bff 74%, #00d4ff 100%);
  clip-path: polygon(25% 0, 100% 0, 100% 100%, 67% 100%, 43% 68%, 0 16%);
  opacity: 0.94;
  filter: saturate(110%);
}

.hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -166px calc((var(--max-width) - 100vw) / 2) 0 40%;
  background: linear-gradient(90deg, #fff 0%, rgba(255,255,255,.84) 24%, rgba(255,255,255,0) 64%);
  pointer-events: none;
}

.hero h1 {
  max-width: 680px;
  margin: 0;
  font-size: clamp(58px, 5.1vw, 78px);
  line-height: 1.04;
  letter-spacing: -0.045em;
}

.hero-copy > p {
  max-width: 610px;
  margin: 30px 0 38px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.58;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 34px;
}

.text-link {
  border-bottom: 1px solid currentColor;
}

.team-map {
  position: relative;
  min-height: 610px;
}

.team-lines {
  position: absolute;
  inset: 25px 0 auto;
  width: 100%;
  height: 520px;
}

.team-lines path {
  fill: none;
  stroke: #cbd5e6;
  stroke-width: 2;
  stroke-dasharray: 5 7;
}

.company-node {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 146px;
  height: 146px;
  display: grid;
  place-items: center;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(99, 91, 255, 0.22);
  border-radius: 50%;
  text-align: center;
  font-size: 26px;
  font-weight: 800;
  line-height: 1.05;
  background: rgba(255,255,255,0.94);
  box-shadow: 0 22px 55px rgba(50, 50, 93, 0.18);
}

.map-specialist {
  position: absolute;
  width: 180px;
  min-height: 178px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
}

.map-specialist::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  border-radius: var(--radius) 0 0 var(--radius);
  background: var(--blue);
}

.map-specialist strong {
  font-size: 18px;
  margin-bottom: 12px;
}

.specialist-symbol {
  margin-bottom: 8px;
  font-size: 32px;
  font-weight: 500;
  line-height: 1;
  color: var(--blue);
}

.map-specialist small {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  padding-top: 7px;
  border-top: 1px solid #edf1f6;
  color: var(--muted);
  font-size: 10px;
}

.map-specialist small b {
  color: var(--blue);
  font-weight: 700;
}

.map-commercial { left: 0; top: 12px; }
.map-marketing { right: 0; top: 12px; }
.map-people { left: 0; bottom: 12px; }
.map-finance { right: 0; bottom: 12px; }
.map-marketing .specialist-symbol { color: var(--coral); }
.map-people .specialist-symbol { color: var(--mint); }
.map-finance .specialist-symbol { color: var(--sky); }
.map-marketing::before { background: var(--magenta); }
.map-people::before { background: var(--sky); }
.map-finance::before { background: var(--orange); }

.intro-band {
  padding: 68px max(32px, calc((100vw - var(--max-width)) / 2));
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 88px;
  align-items: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
  background: linear-gradient(172deg, #ffffff 0 20%, #f2f0ff 20.2% 100%);
}

.intro-band p {
  margin: 0;
  font-size: clamp(34px, 3vw, 50px);
  font-weight: 780;
  line-height: 1.12;
  letter-spacing: -0.04em;
}

.intro-band span {
  padding-left: 54px;
  border-left: 1px solid var(--line);
  color: var(--muted);
}

.team-section {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 90px;
  padding: 170px 0 126px;
}

.section-heading h2,
.prompts-heading h2 {
  margin: 0;
  font-size: clamp(48px, 4.5vw, 68px);
  line-height: 1.03;
  letter-spacing: -0.05em;
}

.section-heading > p,
.prompts-heading > p {
  max-width: 490px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.chile-line {
  margin-top: 80px;
}

.chile-line svg {
  width: 250px;
}

.chile-line path {
  fill: none;
  stroke: #9cb0d5;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.specialist-list {
  border-top: 1px solid var(--line);
}

.specialist-row {
  display: grid;
  grid-template-columns: 80px 1fr 1.2fr 28px;
  align-items: center;
  gap: 26px;
  min-height: 142px;
  border-bottom: 1px solid var(--line);
}

.row-icon {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--soft-blue);
  color: var(--blue);
  font-size: 28px;
  font-weight: 700;
}

.specialist-row h3,
.specialist-row p {
  margin: 0;
}

.specialist-row h3 {
  font-size: 25px;
  line-height: 1.15;
}

.specialist-row p {
  color: var(--muted);
}

.row-arrow {
  color: var(--blue);
  font-size: 26px;
  transition: transform 180ms ease;
}

.specialist-row:hover .row-arrow {
  transform: translateX(5px);
}

.marketing .row-icon { background: var(--soft-coral); color: var(--coral); }
.people .row-icon { background: var(--soft-mint); color: var(--mint); }
.finance .row-icon { background: #f2f5fb; color: #5f89df; }

.how-section {
  padding: 118px max(32px, calc((100vw - var(--max-width)) / 2)) 92px;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 58px;
  text-align: left;
  position: relative;
  border-top: 1px solid var(--line);
  background: linear-gradient(175deg, #fff 0 4%, #f4f2ff 4.2% 100%);
  width: 100%;
  max-width: none;
}

.how-copy h2 {
  margin: 0;
  font-size: clamp(38px, 3.2vw, 50px);
  letter-spacing: -0.045em;
}

.how-copy p {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  text-align: left;
}

.step {
  min-width: 0;
}

.step-heading {
  min-height: 150px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 17px;
  align-items: start;
}

.step-number {
  display: block;
  color: var(--blue);
  font-size: 35px;
  font-weight: 650;
  line-height: 1;
}

.step h3 {
  margin: 3px 0 10px;
  font-size: 17px;
  line-height: 1.15;
}

.step p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.step-preview {
  height: 156px;
  min-height: 156px;
  padding: 15px;
  border: 1px solid #d8ddea;
  border-radius: 8px;
  background: rgba(255,255,255,.9);
  box-shadow: 0 10px 30px rgba(50,50,93,.06);
}

.step-preview strong {
  display: block;
  margin-bottom: 12px;
  font-size: 10px;
}

.step-preview span {
  min-height: 23px;
  display: grid;
  grid-template-columns: minmax(0,1fr) 70px;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 9px;
}

.step-preview small {
  font-size: inherit;
}

.step-preview i {
  display: block;
  height: 7px;
  border-radius: 4px;
  background: #edf0f5;
}

.roster-preview span,
.plan-preview span {
  grid-template-columns: 9px minmax(0,1fr) 34px;
}

.step-preview b {
  color: var(--blue);
  font-weight: 700;
}

.dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
}

.dot-sales { background: var(--sky); }
.dot-marketing { background: var(--magenta); }
.dot-people { background: var(--orange); }
.dot-finance { background: var(--blue); }

.how-cta {
  grid-column: 2;
  justify-self: center;
  margin-top: 6px;
}

.prompts-section {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 95px;
  align-items: center;
  padding: 150px 0;
  border-top: 0;
}

.prompt-list {
  display: grid;
  gap: 24px;
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255,255,255,.96);
  box-shadow: var(--shadow);
}

.prompt {
  min-height: 128px;
  padding: 26px 32px;
  display: grid;
  grid-template-columns: 66px 1fr;
  align-items: center;
  gap: 28px;
  border: 1.5px solid;
  border-radius: 9px;
  background: var(--white);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.prompt:hover {
  transform: translateX(8px);
  box-shadow: var(--shadow);
}

.prompt p {
  margin: 0;
  font-size: clamp(24px, 2.15vw, 34px);
  line-height: 1.18;
  letter-spacing: -0.025em;
}

.avatar {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-size: 22px;
  font-weight: 800;
}

.prompt-coral { border-color: var(--coral); }
.prompt-mint { border-color: var(--mint); }
.prompt-blue { border-color: var(--blue); }
.avatar-coral { background: var(--soft-coral); color: var(--coral); }
.avatar-mint { background: var(--soft-mint); color: var(--mint); }
.avatar-blue { background: var(--soft-blue); color: var(--blue); }

.trust-section {
  display: flex;
  align-items: center;
  gap: 34px;
  padding: 70px 0 90px;
}

.shield svg {
  width: 72px;
}

.shield path {
  fill: none;
  stroke: var(--mint);
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.trust-section h2,
.trust-section p {
  margin: 0;
}

.trust-section h2 {
  font-size: 28px;
}

.trust-section p {
  max-width: 630px;
  margin-top: 8px;
  color: var(--muted);
}

.waitlist-section {
  padding: 84px max(32px, calc((100vw - var(--max-width)) / 2));
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 76px;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: #0a2540;
  color: var(--white);
}

.waitlist-section::after {
  content: "";
  position: absolute;
  top: -260px;
  right: -150px;
  width: 620px;
  height: 650px;
  background: linear-gradient(145deg, rgba(0,212,255,.8), rgba(99,91,255,.95) 42%, rgba(255,79,216,.85) 68%, rgba(255,176,0,.9));
  clip-path: polygon(48% 0, 100% 0, 100% 100%, 0 35%);
  opacity: .68;
  pointer-events: none;
}

.waitlist-copy,
.waitlist-form {
  position: relative;
  z-index: 1;
}

.form-honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
}

.waitlist-copy h2 {
  margin: 0;
  font-size: clamp(46px, 4vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.waitlist-copy p {
  max-width: 480px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
}

.waitlist-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.waitlist-form label {
  display: grid;
  gap: 9px;
  font-size: 13px;
  font-weight: 700;
}

.waitlist-form input,
.waitlist-form select {
  width: 100%;
  height: 58px;
  padding: 0 16px;
  border: 1px solid transparent;
  border-radius: 9px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
  font-size: 15px;
}

.button-inverse {
  align-self: end;
  background: var(--white);
  color: var(--white);
  background: linear-gradient(135deg, #7a73ff, #635bff 45%, #5a43ed);
  box-shadow: none;
}

.button-inverse:hover {
  background: linear-gradient(135deg, #6d65ff, #5145e6);
  color: var(--white);
}

.form-status {
  grid-column: 1 / -1;
  min-height: 24px;
  margin: 2px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
}

.form-status[data-state="success"] {
  color: #7fffd8;
}

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

.form-note {
  grid-column: 1 / -1;
  margin: -10px 0 0;
  color: rgba(255,255,255,.62);
  font-size: 12px;
}

.waitlist-form button:disabled {
  cursor: wait;
  opacity: .72;
  transform: none;
}

.faq-section {
  display: grid;
  grid-template-columns: 0.42fr 1fr;
  gap: 90px;
  padding: 110px 0 130px;
}

.faq-section > h2 {
  margin: 0;
  font-size: 42px;
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 28px 46px 28px 0;
  list-style: none;
  cursor: pointer;
  font-weight: 700;
}

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

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 4px;
  font-size: 24px;
  font-weight: 400;
  transition: transform 180ms ease;
}

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

.faq-list details p {
  max-width: 680px;
  margin: -6px 0 28px;
  color: var(--muted);
}

footer {
  padding: 38px max(32px, calc((100vw - var(--max-width)) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--line);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

footer p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.reveal {
  opacity: 1;
  transform: none;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

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

  .nav-links {
    display: none;
  }

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

  .hero::before {
    right: calc(50% - 50vw);
    width: 100vw;
    opacity: .45;
  }

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

  .team-map {
    width: min(100%, 690px);
    margin: 0 auto;
  }

  .team-section,
  .prompts-section {
    grid-template-columns: 1fr;
  }

  .section-heading > p,
  .prompts-heading > p {
    max-width: 650px;
  }

  .chile-line {
    display: none;
  }

  .waitlist-section {
    grid-template-columns: 1fr;
  }

  .waitlist-copy {
    max-width: 740px;
  }
}

@media (max-width: 760px) {
  body {
    font-size: 16px;
  }

  .site-header,
  .section {
    width: min(calc(100% - 36px), var(--max-width));
  }

  .site-header {
    height: 76px;
  }

  .site-header > .button {
    min-height: 44px;
    padding: 0 15px;
    font-size: 12px;
  }

  .hero {
    min-height: auto;
    gap: 48px;
    padding: 54px 0 70px;
    overflow-x: hidden;
  }

  .hero::before {
    top: -96px;
    right: calc(50% - 50vw);
    width: 100vw;
    height: 700px;
    opacity: .27;
  }

  .hero::after {
    display: none;
  }

  .hero h1 {
    font-size: clamp(47px, 14vw, 66px);
  }

  .hero-copy > p {
    font-size: 18px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 22px;
  }

  .team-map {
    min-height: 480px;
  }

  .team-lines {
    display: none;
  }

  .company-node {
    width: 122px;
    height: 122px;
    font-size: 22px;
  }

  .map-specialist {
    width: 138px;
    min-height: 138px;
    padding: 16px;
  }

  .specialist-symbol {
    font-size: 46px;
  }

  .map-specialist strong {
    font-size: 14px;
  }

  .intro-band {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 54px 18px;
  }

  .intro-band span {
    padding: 26px 0 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .team-section,
  .prompts-section {
    gap: 60px;
    padding: 100px 0;
  }

  .section-heading h2,
  .prompts-heading h2 {
    font-size: 48px;
  }

  .specialist-row {
    grid-template-columns: 58px 1fr 24px;
    gap: 14px;
    padding: 24px 0;
  }

  .specialist-row p {
    grid-column: 2;
  }

  .row-arrow {
    grid-column: 3;
    grid-row: 1 / span 2;
  }

  .row-icon {
    width: 50px;
    height: 50px;
    font-size: 22px;
  }

  .specialist-row h3 {
    font-size: 22px;
  }

  .how-section {
    grid-template-columns: 1fr;
    gap: 44px;
    padding: 90px 18px 100px;
  }

  .steps {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .step-heading {
    min-height: auto;
    margin-bottom: 18px;
  }

  .step-preview {
    height: 156px;
    min-height: 156px;
  }

  .how-cta {
    grid-column: 1;
    justify-self: start;
  }

  .prompt {
    grid-template-columns: 50px 1fr;
    gap: 16px;
    min-height: 112px;
    padding: 22px;
  }

  .avatar {
    width: 48px;
    height: 48px;
  }

  .prompt p {
    font-size: 23px;
  }

  .trust-section {
    align-items: flex-start;
  }

  .waitlist-section {
    padding: 70px 18px;
  }

  .waitlist-form {
    grid-template-columns: 1fr;
  }

  .faq-section {
    grid-template-columns: 1fr;
    gap: 46px;
    padding: 90px 0 100px;
  }

  footer {
    padding: 32px 18px;
    align-items: flex-start;
    gap: 28px;
  }

  footer p {
    max-width: 230px;
    text-align: right;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
