:root {
  --ink: #151724;
  --ink-soft: #464c5f;
  --muted: #6b7284;
  --paper: #fbfaf7;
  --paper-2: #f3f1eb;
  --blue: #5b72de;
  --blue-dark: #3f54b8;
  --mint: #48cdb0;
  --coral: #ef806c;
  --line: rgba(21, 23, 36, 0.1);
  --serif: Georgia, "Times New Roman", serif;
  --sans: "Instrument Sans", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: "JetBrains Mono", "Cascadia Mono", Consolas, monospace;
  --shell: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  overflow-x: clip;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

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

::selection {
  background: rgba(91, 114, 222, 0.24);
}

.home-shell {
  width: min(var(--shell), calc(100% - 48px));
  margin-inline: auto;
}

.hero {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(135deg, #fffdfa 0%, #fbf8f4 100%);
}

.hero::before {
  content: none;
}

.hero-grid {
  display: grid;
  min-height: 760px;
  padding-block: 74px 68px;
  grid-template-columns: minmax(480px, 0.94fr) minmax(0, 1.06fr);
  align-items: center;
  gap: 44px;
}

.hero-copy {
  position: relative;
  z-index: 2;
  min-width: 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 23px;
  color: var(--blue-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.13em;
  line-height: 1;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 5px rgba(72, 205, 176, 0.13);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: var(--serif);
  font-weight: 600;
  text-wrap: balance;
}

h1 {
  max-width: 720px;
  margin-bottom: 26px;
  font-size: clamp(2.8rem, 3.55vw, 3.45rem);
  letter-spacing: -0.045em;
  line-height: 1.01;
}

.hero-rotator {
  display: inline-block;
  color: var(--blue-dark);
  font-style: italic;
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.hero-chat-line {
  white-space: nowrap;
}

.hero-rotator.is-changing {
  opacity: 0;
  transform: translateY(8px);
}

.hero-lede {
  max-width: 580px;
  margin-bottom: 31px;
  color: var(--ink-soft);
  font-size: 19px;
  line-height: 1.55;
}

.hero-actions,
.cta-actions {
  display: flex;
  align-items: center;
  gap: 13px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  min-height: 52px;
  padding: 0 22px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 750;
  line-height: 1;
  text-decoration: none;
  transition: transform 0.16s ease, box-shadow 0.16s ease, border-color 0.16s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  border-color: rgba(255, 255, 255, 0.12);
  background: linear-gradient(145deg, #282d40 0%, #151825 52%, #0b0d14 100%);
  box-shadow:
    0 14px 32px rgba(21, 23, 36, 0.21),
    inset 0 1px 0 rgba(255, 255, 255, 0.13),
    inset 0 -1px 0 rgba(0, 0, 0, 0.32);
  color: #fff;
}

.button-primary:hover {
  border-color: rgba(110, 139, 255, 0.4);
  background: linear-gradient(145deg, #303650 0%, #191d2c 52%, #0d1019 100%);
  box-shadow:
    0 19px 42px rgba(21, 23, 36, 0.26),
    0 0 0 1px rgba(91, 114, 222, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.button-add-peers {
  gap: 10px;
}

.button-add-peers::before {
  content: "";
  width: 19px;
  height: 19px;
  flex: none;
  background: url("/brand/favicon.svg") center / contain no-repeat;
  filter: drop-shadow(0 2px 6px rgba(72, 205, 176, 0.24));
}

.button-secondary {
  border-color: rgba(21, 23, 36, 0.16);
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
}

.button-secondary:hover {
  border-color: rgba(91, 114, 222, 0.42);
  box-shadow: 0 12px 30px rgba(50, 59, 92, 0.08);
}

.hero-note {
  display: flex;
  margin-top: 22px;
  align-items: center;
  gap: 9px;
  color: var(--muted);
  font-size: 13px;
}

.hero-note strong {
  color: var(--ink-soft);
  font-weight: 700;
}

.hero-note .mini-check {
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border-radius: 50%;
  background: rgba(72, 205, 176, 0.17);
  color: #19715f;
  font-size: 12px;
  font-weight: 900;
}

.hero-visual {
  position: relative;
  z-index: 1;
  min-width: 0;
  margin: 0;
}

.hero-visual::before,
.hero-visual::after {
  content: none;
}

.hero-frame {
  position: relative;
  background: transparent;
}

.hero-frame::after {
  content: none;
}

.hero-frame img {
  width: 100%;
  height: auto;
  image-rendering: auto;
}

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

.provider-inner {
  display: flex;
  min-height: 86px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.provider-label {
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
  white-space: nowrap;
}

.provider-list {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  flex-wrap: wrap;
  color: #404658;
  font-size: 14px;
  font-weight: 750;
}

.provider {
  display: inline-flex;
  min-height: 45px;
  padding: 8px 13px 8px 10px;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(21, 23, 36, 0.09);
  border-radius: 13px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(31, 38, 64, 0.055);
  white-space: nowrap;
}

.provider img {
  width: 25px;
  height: 25px;
  object-fit: contain;
}

.section {
  position: relative;
  padding-block: 112px;
  border-bottom: 1px solid var(--line);
}

.section-wash {
  background: linear-gradient(135deg, #fdf5ed 0%, #f3efeb 52%, #eae7e4 100%);
}

.section-journey {
  padding-block: 88px;
  background:
    radial-gradient(ellipse 72% 68% at 50% 58%, #fffdf9 0%, #faf4ef 54%, rgba(250, 244, 239, 0) 82%),
    linear-gradient(135deg, #fcf6ee 0%, #f2ece7 52%, #e9e4e2 100%);
}

.section-heading {
  display: grid;
  margin-bottom: 45px;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.55fr);
  align-items: end;
  gap: 60px;
}

.section-heading h2,
.split-copy h2,
.organizer-band h2,
.final-cta h2 {
  margin-bottom: 0;
  font-size: clamp(2.5rem, 4.5vw, 4.15rem);
  letter-spacing: -0.045em;
  line-height: 1.03;
}

.section-heading p {
  margin-bottom: 3px;
  color: var(--muted);
  font-size: 17px;
}

.section-heading-journey {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.54fr);
  align-items: center;
}

.journey-heading-copy h2 {
  font-size: clamp(2.6rem, 3.8vw, 3.65rem);
  line-height: 1;
}

.journey-heading-copy h2 span {
  display: block;
}

.journey-heading-accent {
  color: var(--blue);
  font-style: italic;
}

.section-heading-journey > p {
  max-width: 39ch;
  padding-left: 20px;
  border-left: 2px solid rgba(72, 205, 176, 0.46);
  line-height: 1.65;
}

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

.journey-visual {
  position: relative;
  width: 100vw;
  margin: 0;
  margin-left: calc(50% - 50vw);
  overflow: hidden;
}

.journey-visual picture {
  position: relative;
  z-index: 1;
  display: block;
  width: min(100%, 1680px);
  margin-inline: auto;
}

.journey-visual img {
  display: block;
  width: 100%;
  height: auto;
  image-rendering: auto;
}

.step-card {
  position: relative;
  min-height: 310px;
  padding: 30px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 22px 55px rgba(37, 46, 78, 0.07);
}

.step-card::after {
  content: "";
  position: absolute;
  right: -55px;
  bottom: -65px;
  width: 160px;
  height: 160px;
  border: 28px solid rgba(91, 114, 222, 0.06);
  border-radius: 50%;
}

.step-number {
  display: grid;
  width: 39px;
  height: 39px;
  margin-bottom: 55px;
  place-items: center;
  border: 1px solid rgba(91, 114, 222, 0.25);
  border-radius: 50%;
  background: rgba(91, 114, 222, 0.08);
  color: var(--blue-dark);
  font: 800 13px/1 var(--mono);
}

.step-card:nth-child(2) .step-number {
  border-color: rgba(72, 205, 176, 0.28);
  background: rgba(72, 205, 176, 0.1);
  color: #1f7867;
}

.step-card:nth-child(3) .step-number {
  border-color: rgba(239, 128, 108, 0.28);
  background: rgba(239, 128, 108, 0.1);
  color: #ae5545;
}

.step-card h3 {
  margin-bottom: 10px;
  font-size: 22px;
  letter-spacing: -0.025em;
}

.step-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 15px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.72fr);
  align-items: center;
  gap: 72px;
}

.split-media {
  position: relative;
  min-width: 0;
}

.split-media img {
  display: block;
  width: 100%;
  height: auto !important;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  image-rendering: auto;
}

.hero-frame img {
  -webkit-mask-image: radial-gradient(ellipse 56% 55% at center, #000 84%, rgba(0, 0, 0, 0.95) 90%, transparent 100%);
  mask-image: radial-gradient(ellipse 56% 55% at center, #000 84%, rgba(0, 0, 0, 0.95) 90%, transparent 100%);
}

.split-copy .eyebrow {
  margin-bottom: 20px;
}

.split-copy h2 {
  margin-bottom: 22px;
}

.split-copy > p {
  margin-bottom: 26px;
  color: var(--muted);
}

.proof-list {
  display: grid;
  gap: 13px;
}

.proof {
  display: grid;
  padding: 16px 17px;
  grid-template-columns: 25px 1fr;
  gap: 11px;
  border: 1px solid rgba(21, 23, 36, 0.08);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.65);
  color: var(--ink-soft);
  font-size: 14px;
}

.proof b {
  color: var(--ink);
}

.proof-mark {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 50%;
  background: rgba(72, 205, 176, 0.16);
  color: #217663;
  font-size: 12px;
  font-weight: 900;
}

.control-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 18px;
}

.control-card {
  min-height: 248px;
  padding: 29px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
}

.control-card:first-child {
  color: #fff;
  background:
    radial-gradient(circle at 90% 10%, rgba(72, 205, 176, 0.18), transparent 35%),
    #121725;
  box-shadow: 0 26px 65px rgba(18, 23, 37, 0.19);
}

.control-icon {
  display: grid;
  width: 45px;
  height: 45px;
  margin-bottom: 46px;
  place-items: center;
  border-radius: 14px;
  background: rgba(91, 114, 222, 0.1);
  color: var(--blue-dark);
  font-size: 19px;
  font-weight: 850;
}

.control-card:first-child .control-icon {
  background: rgba(72, 205, 176, 0.14);
  color: #69e0c6;
}

.control-card h3 {
  margin-bottom: 9px;
  font-size: 21px;
}

.control-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

.control-card:first-child p {
  color: #bec5d8;
}

.organizer-wrap {
  padding-block: 72px;
}

.organizer-band {
  position: relative;
  display: grid;
  padding: 46px 50px;
  overflow: hidden;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 45px;
  border: 1px solid rgba(91, 114, 222, 0.16);
  border-radius: 27px;
  background:
    radial-gradient(circle at 92% 18%, rgba(91, 114, 222, 0.15), transparent 32%),
    linear-gradient(130deg, #f0efff 0%, #edf8f4 100%);
}

.organizer-band::after {
  content: "";
  position: absolute;
  top: -70px;
  right: 110px;
  width: 180px;
  height: 180px;
  border: 34px solid rgba(239, 128, 108, 0.08);
  border-radius: 50%;
}

.organizer-band .eyebrow {
  position: relative;
  z-index: 1;
  margin-bottom: 16px;
}

.organizer-band h2 {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin-bottom: 14px;
  font-size: clamp(2.1rem, 3.4vw, 3.2rem);
}

.organizer-band p {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin-bottom: 0;
  color: var(--ink-soft);
}

.organizer-band .button {
  position: relative;
  z-index: 1;
  white-space: nowrap;
}

.final-cta {
  padding-block: 118px 125px;
  text-align: center;
}

.final-cta h2 {
  max-width: 760px;
  margin-inline: auto;
  margin-bottom: 19px;
}

.final-cta p {
  max-width: 620px;
  margin-inline: auto;
  margin-bottom: 30px;
  color: var(--muted);
}

.final-cta .cta-actions {
  justify-content: center;
}

.site-footer-light {
  border-top: 1px solid var(--line);
  background: #fff;
}

.footer-inner-light {
  display: flex;
  min-height: 96px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  color: var(--muted);
  font-size: 13px;
}

.footer-links-light {
  display: flex;
  align-items: center;
  gap: 24px;
}

.footer-links-light a {
  text-decoration: none;
}

.footer-links-light a:hover {
  color: var(--ink);
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
  }
}

@media (max-width: 1050px) {
  .hero-grid {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 50px;
  }

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

  .split {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .control-grid {
    grid-template-columns: 1fr 1fr;
  }

  .control-card:first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  .home-shell {
    width: min(var(--shell), calc(100% - 28px));
  }

  .hero-grid {
    padding-block: 55px 48px;
    gap: 39px;
  }

  h1 {
    font-size: clamp(2.7rem, 12.5vw, 3.85rem);
  }

  .hero-lede {
    font-size: 17px;
  }

  .hero-frame {
    border-radius: 19px;
  }

  .provider-inner {
    padding-block: 22px;
    align-items: flex-start;
    flex-direction: column;
    gap: 13px;
  }

  .provider-list {
    justify-content: flex-start;
    gap: 10px;
    font-size: 13px;
  }

  .section {
    padding-block: 78px;
  }

  .section-journey {
    padding-block: 68px;
  }

  .journey-visual {
    width: calc(100% + 28px);
    margin-left: -14px;
    overflow: visible;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .section-heading-journey > p {
    max-width: 34ch;
    padding-left: 15px;
  }

  .step-grid,
  .control-grid {
    grid-template-columns: 1fr;
  }

  .control-card:first-child {
    grid-column: auto;
  }

  .step-card,
  .control-card {
    min-height: 0;
  }

  .step-number,
  .control-icon {
    margin-bottom: 34px;
  }

  .organizer-band {
    padding: 34px 28px;
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .organizer-band .button {
    width: 100%;
  }

  .footer-inner-light {
    padding-block: 28px;
    align-items: flex-start;
    flex-direction: column;
    gap: 17px;
  }

  .footer-links-light {
    flex-wrap: wrap;
  }
}

@media (max-width: 520px) {
  .hero-chat-line {
    white-space: normal;
  }

  .hero-actions,
  .cta-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-note {
    align-items: flex-start;
  }
}
