:root {
  color-scheme: light;
  --ink: #06152a;
  --muted: #58677d;
  --soft: #eef4fb;
  --line: #dce5ef;
  --paper: #ffffff;
  --brand: #0968e8;
  --brand-strong: #0756c1;
  --teal: #1fb89a;
  --purple: #5b35db;
  --amber: #e5a127;
  --shadow: 0 24px 80px rgba(6, 21, 42, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, #f8fbff 0%, #ffffff 42%, #f5f8fc 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
}

code {
  padding: 0.1rem 0.35rem;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #f7fafc;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.92em;
}

.site-header,
.site-footer {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  text-decoration: none;
}

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

nav {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-size: 0.95rem;
}

nav a,
.site-footer a {
  text-decoration: none;
}

nav a:hover,
.site-footer a:hover {
  color: var(--brand);
}

main {
  overflow: hidden;
}

.hero {
  width: min(1120px, calc(100% - 32px));
  min-height: calc(100vh - 76px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  align-items: center;
  gap: 42px;
  padding: 36px 0 84px;
}

.wordmark {
  display: block;
  width: min(360px, 78vw);
  height: auto;
  margin: 0 0 30px;
  padding: 16px 18px;
  border-radius: 8px;
  background: #06152a;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--brand);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 20px;
  font-size: clamp(3rem, 8vw, 5.8rem);
  line-height: 0.95;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 4.6vw, 3.55rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.08rem;
}

.lede {
  max-width: 660px;
  color: var(--muted);
  font-size: 1.24rem;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 0 18px;
  border: 1px solid var(--line);
  font-weight: 750;
  text-decoration: none;
}

.button.primary {
  border-color: var(--brand);
  background: var(--brand);
  color: white;
}

.button.primary:hover {
  background: var(--brand-strong);
}

.button.secondary {
  background: white;
}

.phone-stage {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 620px;
}

.phone {
  width: min(390px, 86vw);
  aspect-ratio: 0.5;
  border: 12px solid #0b1322;
  border-radius: 48px;
  background: #0b1322;
  box-shadow: var(--shadow);
  position: relative;
}

.island {
  position: absolute;
  z-index: 2;
  top: 14px;
  left: 50%;
  width: 112px;
  height: 34px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: #05070c;
}

.screen {
  height: 100%;
  overflow: hidden;
  border-radius: 36px;
  padding: 62px 20px 20px;
  background:
    radial-gradient(circle at 20% 12%, rgba(31, 184, 154, 0.24), transparent 28%),
    linear-gradient(160deg, #f9fbff 0%, #dcecff 48%, #f5f0ff 100%);
}

.status-bar {
  display: flex;
  justify-content: space-between;
  color: #26364b;
  font-size: 0.82rem;
  font-weight: 750;
}

.widget-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 22px;
}

.widget,
.live-activity {
  min-height: 142px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 8px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 14px 32px rgba(6, 21, 42, 0.12);
  backdrop-filter: blur(16px);
}

.widget strong,
.live-activity strong {
  display: block;
  margin-top: 18px;
  font-size: 1.35rem;
  line-height: 1.05;
}

.label,
.trend,
.live-activity span {
  color: #607086;
  font-size: 0.78rem;
  font-weight: 700;
}

.trend {
  display: block;
  margin-top: 8px;
}

.metric strong {
  color: var(--teal);
}

.status strong {
  color: var(--purple);
}

.wide,
.live-activity {
  grid-column: 1 / -1;
}

.progress {
  height: 8px;
  margin-top: 18px;
  overflow: hidden;
  border-radius: 999px;
  background: #d9e2ee;
}

.progress span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--brand), var(--teal));
}

.live-activity {
  min-height: 86px;
  color: white;
  background: #0b1322;
}

.live-activity strong {
  margin-top: 8px;
  font-size: 1rem;
}

.band,
.story-art,
.agent-callout,
.split,
.legal {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 84px 0;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 30px;
}

.story-art {
  padding-top: 0;
}

.story-art .section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.12rem;
}

.story-art figure {
  margin: 0;
}

.story-art img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

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

.steps article {
  min-height: 250px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.step-number {
  display: inline-grid;
  width: 34px;
  height: 34px;
  margin-bottom: 26px;
  place-items: center;
  border-radius: 999px;
  background: #e9f2ff;
  color: var(--brand);
  font-weight: 850;
}

.steps p,
.agent-callout p,
.split p,
.legal p {
  color: var(--muted);
}

.agent-callout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  margin-bottom: 84px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #06152a;
  color: white;
}

.agent-callout h2 {
  margin-bottom: 12px;
  font-size: clamp(2rem, 4.2vw, 3.25rem);
}

.agent-callout p {
  max-width: 740px;
  margin-bottom: 0;
  color: #b9c6d6;
}

.split {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 56px;
  align-items: start;
  border-top: 1px solid var(--line);
}

.template-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.template-list span {
  padding: 18px;
  border-left: 4px solid var(--brand);
  border-radius: 8px;
  background: white;
  box-shadow: 0 10px 28px rgba(6, 21, 42, 0.06);
  font-weight: 800;
}

.template-list span:nth-child(2n) {
  border-left-color: var(--teal);
}

.template-list span:nth-child(3n) {
  border-left-color: var(--purple);
}

.template-list span:nth-child(5n) {
  border-left-color: var(--amber);
}

.legal {
  max-width: 820px;
  padding-top: 56px;
}

.legal h1 {
  font-size: clamp(2.7rem, 8vw, 4.9rem);
}

.legal h2 {
  margin-top: 38px;
  font-size: 1.45rem;
  line-height: 1.2;
}

.legal a {
  color: var(--brand);
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: center;
  padding: 28px 0 40px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.92rem;
}

@media (max-width: 860px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  nav {
    width: 100%;
    justify-content: space-between;
    gap: 10px;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 34px;
  }

  .phone-stage {
    min-height: auto;
  }

  .steps,
  .agent-callout,
  .split {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .site-header,
  .site-footer,
  .hero,
  .band,
  .story-art,
  .agent-callout,
  .split,
  .legal {
    width: min(100% - 24px, 1120px);
  }

  .wordmark {
    width: 100%;
  }

  .actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .phone {
    width: min(360px, 94vw);
  }

  .screen {
    padding-inline: 14px;
  }

  .widget-grid {
    gap: 10px;
  }

  .widget {
    min-height: 128px;
    padding: 12px;
  }

  .widget strong {
    font-size: 1.08rem;
  }

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

  .steps article,
  .agent-callout {
    padding: 22px;
  }
}
