:root {
  --ink: #0b0b0d;
  --ink-2: #16161a;
  --paper: #f4f4f6;
  --paper-2: #ffffff;
  --line: #d8d8de;
  --line-dark: #2a2a30;
  --muted: #5c5c66;
  --navy: #242b4b;
  --orange: #fd6331;
  --blue: #4550f8;
  --magenta: #9f5996;
  --header: 72px;
  --max: 1180px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header) + 16px);
}

body {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: var(--ink);
  background: var(--paper-2);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.nav-open { overflow: hidden; }

a { color: inherit; }
button, input, textarea { font: inherit; }

:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
}

.section:not(.section--invert) h2,
.section:not(.section--invert) h3 {
  color: var(--navy);
}

.section--invert h2,
.section--invert h3,
.cta h2 {
  color: #fff;
}

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

.stripe {
  height: 3px;
  background: linear-gradient(90deg, var(--orange) 0 34%, var(--blue) 34% 67%, var(--magenta) 67% 100%);
  position: sticky;
  top: 0;
  z-index: 40;
}

.header {
  position: sticky;
  top: 3px;
  z-index: 30;
  min-height: var(--header);
  background: rgba(11, 11, 13, 0.92);
  color: #fff;
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line-dark);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo__mark {
  color: var(--orange);
  display: grid;
  place-items: center;
}

.logo__text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.logo__text strong {
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.logo__text small {
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
  color: #9a9aa4;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav a {
  text-decoration: none;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.nav a:not(.nav__cta):hover { color: var(--orange); }

.nav__cta {
  padding: 0 18px;
  border: 1px solid var(--orange);
  background: var(--orange);
  color: #fff !important;
  border-radius: 12px;
}

.nav__cta:hover { filter: brightness(1.08); }

.menu-btn {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line-dark);
  background: transparent;
  color: #fff;
  padding: 0;
  cursor: pointer;
  border-radius: 10px;
}

.menu-btn span {
  display: block;
  width: 18px;
  height: 1.5px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  position: relative;
  background: var(--ink);
  color: #fff;
  overflow: hidden;
  padding: 0 0 88px;
}

.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse at 30% 20%, #000 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at 30% 20%, #000 20%, transparent 70%);
  pointer-events: none;
}

.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: center;
  padding-top: 48px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 18px;
}

.section--invert .eyebrow,
.hero .eyebrow,
.cta .eyebrow { color: #9a9aa4; }

.dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 4px rgba(253, 99, 49, 0.18);
}

.dot--blue { background: var(--blue); box-shadow: 0 0 0 4px rgba(69, 80, 248, 0.18); }
.dot--magenta { background: var(--magenta); box-shadow: 0 0 0 4px rgba(159, 89, 150, 0.2); }

.hero h1 {
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.12;
  letter-spacing: -0.03em;
  font-weight: 800;
  margin: 0 0 22px;
}

.hero h1 em {
  font-style: normal;
  color: transparent;
  background: linear-gradient(90deg, var(--orange), #ff8a5b 45%, #fff 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.lead {
  font-size: 16px;
  color: #d0d0d6;
  max-width: 54ch;
  margin: 0 0 28px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 36px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 24px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 12px;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease, filter 0.2s ease;
}

.btn--primary {
  background: var(--orange);
  color: #fff;
  border-color: var(--orange);
}

.btn--primary:hover { filter: brightness(1.06); }

.btn--ghost {
  background: transparent;
  color: #fff;
  border-color: #3a3a42;
}

.btn--ghost:hover { border-color: #fff; }

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 28px;
  padding: 0;
  margin: 0;
  list-style: none;
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  color: #9a9aa4;
}

.hero__meta .k { color: #fff; margin-right: 6px; }

.panel {
  border: 1px solid var(--line-dark);
  background: #111114;
  box-shadow: 24px 24px 0 0 rgba(253, 99, 49, 0.12);
  border-radius: 16px;
  overflow: hidden;
}

.panel__bar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-bottom: 1px solid var(--line-dark);
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #8c8c96;
}

.panel__dots { display: flex; gap: 6px; }
.panel__dots i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #2c2c32;
  display: block;
}
.panel__dots i:nth-child(1) { background: var(--orange); }
.panel__dots i:nth-child(2) { background: var(--blue); }
.panel__dots i:nth-child(3) { background: var(--magenta); }

.panel__title { flex: 1; }

.status {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #d0d0d6;
}

.status__icon {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d8d8de;
  box-shadow: 0 0 0 3px rgba(255,255,255,0.08);
}

.panel__body { padding: 18px 16px 16px; display: grid; gap: 14px; }

.metric strong {
  display: block;
  font-size: 20px;
  letter-spacing: -0.03em;
  line-height: 1.3;
}

.metric__label {
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #8c8c96;
}

.bar {
  margin-top: 8px;
  height: 2px;
  background: #2a2a30;
}

.bar span {
  display: block;
  width: var(--w);
  height: 100%;
  background: var(--orange);
}

.bar--blue span { background: var(--blue); }
.bar--magenta span { background: var(--magenta); }

.feed {
  list-style: none;
  margin: 8px 0 0;
  padding: 12px 0 0;
  border-top: 1px solid var(--line-dark);
  display: grid;
  gap: 10px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  color: #b8b8c0;
}

.feed li { display: grid; grid-template-columns: 28px auto 1fr; gap: 8px; align-items: baseline; }
.feed time { color: #6e6e78; }

.tag {
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 1px 6px;
  border: 1px solid currentColor;
  justify-self: start;
}
.tag--ok { color: #cfcfd6; }
.tag--warn { color: var(--orange); }
.tag--info { color: var(--blue); }

.strip {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.strip__inner {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px 28px;
  padding: 18px 0;
}

.strip p {
  margin: 0;
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.strip ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.strip li {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 8px 12px;
  border: 1px solid var(--ink);
  border-radius: 999px;
}

.strip li:nth-child(2) { border-color: var(--orange); color: var(--orange); }
.strip li:nth-child(4) { border-color: var(--blue); color: var(--blue); }

.section { padding: 88px 0; }

.section--invert {
  background: var(--ink);
  color: #fff;
}

.section__head {
  max-width: 680px;
  margin-bottom: 40px;
}

.section h2 {
  font-size: clamp(26px, 3.2vw, 40px);
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin: 0 0 16px;
}

.section__head p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
}

.section--invert .section__head p:not(.eyebrow),
.section--invert .muted { color: #c4c4cc; }

.section--invert a { color: #fff; }

.section__note {
  margin: 32px 0 0;
  color: var(--muted);
}

.section__note a { color: var(--navy); font-weight: 700; }
.section__note--invert { color: #c4c4cc; }
.section__note--invert a { color: #fff; }

.audience {
  margin-top: 40px;
  padding: 28px 24px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--paper);
}

.audience h3 {
  margin: 0 0 18px;
  font-size: 18px;
}

.audience ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.audience li {
  display: grid;
  gap: 6px;
}

.audience strong {
  color: var(--navy);
  font-size: 15px;
}

.audience span {
  color: var(--muted);
  font-size: 15px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.card {
  padding: 28px 24px;
  border: 1px solid var(--line);
  background: var(--paper-2);
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--ink);
}

.card[data-accent="orange"]::before { background: var(--orange); }
.card[data-accent="blue"]::before { background: var(--blue); }
.card[data-accent="magenta"]::before { background: var(--magenta); }

.card__idx {
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--muted);
}

.section--invert .card__idx { color: var(--orange); }

.card h3 {
  margin: 8px 0 10px;
  font-size: 18px;
  letter-spacing: -0.02em;
}

.card p {
  margin: 0;
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: start;
}

.methods--stack {
  display: grid;
  gap: 24px;
  border: 0;
}

.methods--stack article {
  padding: 24px;
  border: 1px solid var(--line-dark);
  border-radius: 16px;
}

.methods--stack h3 {
  margin: 8px 0 10px;
  font-size: 18px;
}

.methods--stack p {
  margin: 0;
  color: #c4c4cc;
}

.mid-cta {
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.mid-cta__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 28px 0;
}

.mid-cta p {
  margin: 0;
  max-width: 52ch;
  color: var(--navy);
  font-weight: 700;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.step {
  border: 1px solid var(--line);
  padding: 24px 20px;
  border-radius: 16px;
}

#connect .step {
  border-color: var(--line);
}

.step span {
  display: inline-grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border: 1px solid var(--orange);
  color: var(--orange);
  font-family: "IBM Plex Mono", monospace;
  font-size: 13px;
  margin-bottom: 16px;
}

.step:nth-child(2) span { border-color: var(--blue); color: var(--blue); }
.step:nth-child(3) span { border-color: var(--navy); color: var(--navy); }
.step:nth-child(4) span { border-color: var(--magenta); color: var(--magenta); }

.step h3 { margin: 0 0 8px; font-size: 17px; }
.step p { margin: 0; color: var(--muted); }

.pricing__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.pricing__list li {
  border: 1px solid var(--line-dark);
  padding: 24px;
  display: grid;
  gap: 8px;
  border-radius: 16px;
}

.pricing__list strong {
  color: #fff;
  font-size: 18px;
}

.pricing__list span { color: #c4c4cc; }

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 28px;
}

.about h3 { margin: 0 0 10px; font-size: 20px; }
.about p { margin: 0; color: var(--muted); }

.disclaimer {
  border-left: 3px solid var(--orange);
  padding: 16px 20px;
  background: var(--paper);
}

.disclaimer p { margin: 0; color: var(--navy); }

.faq-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 48px;
}

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

.faq summary {
  cursor: pointer;
  font-weight: 700;
  font-size: 16px;
  color: var(--navy);
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  min-height: 44px;
  align-items: center;
}

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

.faq summary::after {
  content: "+";
  font-family: "IBM Plex Mono", monospace;
  color: var(--orange);
  flex-shrink: 0;
}

.faq details[open] summary::after { content: "–"; }

.faq p {
  margin: 12px 0 4px;
  color: var(--muted);
  max-width: 62ch;
}

.cta {
  background: var(--ink);
  color: #fff;
  padding: 80px 0;
  border-top: 1px solid var(--line-dark);
}

.cta__inner {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 48px;
  align-items: start;
}

.cta h2 {
  font-size: clamp(26px, 3vw, 38px);
  letter-spacing: -0.03em;
  margin: 0 0 14px;
}

.cta p { color: #c4c4cc; }

.form {
  display: grid;
  gap: 8px;
  padding: 24px;
  border: 1px solid var(--line-dark);
  border-radius: 16px;
  position: relative;
}

.form > label:not(.form__check) {
  display: block;
  margin-top: 8px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #b0b0b8;
}

.optional {
  text-transform: none;
  letter-spacing: 0;
  color: #8c8c96;
}

.form input:not([type="checkbox"]),
.form textarea {
  width: 100%;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line-dark);
  color: #fff;
  padding: 10px 0 12px;
  outline: none;
  min-height: 44px;
}

.form textarea { min-height: 88px; resize: vertical; }

.form input:focus,
.form textarea:focus { border-bottom-color: var(--orange); }

.form input.is-invalid,
.form textarea.is-invalid { border-bottom-color: #e24b4b; }

.form .btn { width: 100%; margin-top: 12px; }
.form .btn:disabled { opacity: 0.7; cursor: wait; }

.form__check {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-top: 16px;
  color: #d0d0d6;
  text-transform: none;
  letter-spacing: 0;
  font-size: 14px;
  line-height: 1.45;
}

.form__check input {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--orange);
}

.form__check a { color: #fff; }

.form__error {
  margin: 8px 0 0;
  color: #ffb4a8;
  font-size: 14px;
}

.form__note {
  margin: 8px 0 0;
  font-size: 14px;
  color: #d0d0d6;
}

.footer {
  background: #070708;
  color: #b0b0b8;
  padding: 40px 0 calc(28px + env(safe-area-inset-bottom, 0px));
  font-size: 16px;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.3fr 1.4fr auto;
  gap: 24px;
  align-items: start;
}

.footer--simple .footer__inner {
  grid-template-columns: 1fr auto;
}

.footer strong {
  display: block;
  color: #fff;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 12px;
  margin-bottom: 8px;
}

.footer p { margin: 0; max-width: 48ch; }
.footer p a { color: #fff; }

.footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.footer nav a {
  text-decoration: none;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.footer nav a:hover { color: var(--orange); }

.copy {
  justify-self: end;
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
}

.footer__legal {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid #1c1c20;
}

.footer__legal p {
  max-width: 80ch;
  font-size: 14px;
  color: #8c8c96;
}

.page {
  min-height: calc(100vh - 180px);
  padding: 48px 0 80px;
}

.page h1 {
  font-size: clamp(28px, 3vw, 40px);
  letter-spacing: -0.03em;
  color: var(--navy);
  margin: 0 0 16px;
}

.page h2 {
  font-size: 22px;
  color: var(--navy);
  margin: 32px 0 12px;
}

.page p, .page li { color: var(--muted); }
.page ul { padding-left: 20px; }
.page a { color: var(--orange); }
.page .btn { color: #fff; text-decoration: none; display: inline-flex; margin-top: 8px; }

@media (max-width: 1280px) {
  :root { --max: 1080px; }
}

@media (max-width: 1100px) {
  :root { --header: 64px; }

  .menu-btn { display: block; }

  .nav {
    position: fixed;
    inset: calc(var(--header) + 3px) 0 auto 0;
    background: #111114;
    color: #fff;
    flex-direction: column;
    align-items: stretch;
    padding: 8px 20px 24px;
    gap: 0;
    border-bottom: 1px solid var(--line-dark);
    display: none;
    z-index: 31;
    max-height: calc(100vh - var(--header));
    overflow: auto;
  }

  .nav.is-open { display: flex; }

  .nav a {
    padding: 12px 0;
    border-bottom: 1px solid var(--line-dark);
  }

  .nav__cta {
    margin-top: 12px;
    justify-content: center;
  }

  .feed li { grid-template-columns: 1fr; }
}

.nav--lite {
  display: flex !important;
  position: static;
  inset: auto;
  flex-direction: row;
  padding: 0;
  border: 0;
  background: transparent;
  max-height: none;
  overflow: visible;
}

.nav--lite a {
  padding: 0;
  border: 0;
}

.nav--lite .nav__cta {
  margin-top: 0;
  padding: 0 18px;
}

@media (max-width: 1024px) {
  .hero__inner,
  .split,
  .faq-grid,
  .cta__inner,
  .footer__inner,
  .about__grid,
  .pricing__list,
  .audience ul {
    grid-template-columns: 1fr;
  }

  .steps { grid-template-columns: 1fr 1fr; }
  .copy { justify-self: start; }
  .footer--simple .footer__inner { grid-template-columns: 1fr auto; }
}

@media (max-width: 768px) {
  .cards,
  .steps { grid-template-columns: 1fr; }
  .hero { padding-bottom: 56px; }
  .section { padding: 64px 0; }
  .hero h1 { font-size: clamp(26px, 8vw, 36px); }
  .mid-cta__inner .btn { width: 100%; }
  .faq summary { font-size: 15px; align-items: flex-start; padding: 4px 0; }
}

@media (max-width: 420px) {
  .logo__text small { display: none; }
  .nav--lite .nav__cta { padding: 0 12px; font-size: 12px; }
}

@media (max-width: 360px) {
  .wrap { width: calc(100% - 24px); }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; }
  .btn { padding-left: 16px; padding-right: 16px; }
}

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