:root {
  --ink: #0b1f3a;
  --ink-soft: #41516a;
  --blue: #1268f3;
  --blue-strong: #0754d3;
  --blue-soft: #eaf3ff;
  --blue-pale: #f6f9ff;
  --line: #dbe6f5;
  --white: #ffffff;
  --success: #0c8a5f;
  --warning: #b46a13;
  --shadow-sm: 0 12px 34px rgba(11, 31, 58, 0.08);
  --shadow-lg: 0 32px 90px rgba(11, 31, 58, 0.15);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 32px;
  --container: 1180px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

button,
input {
  font: inherit;
}

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

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

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.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;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -60px;
  z-index: 9999;
  padding: 12px 16px;
  border-radius: 10px;
  color: var(--white);
  background: var(--ink);
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(18px);
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.site-header.is-scrolled {
  border-color: rgba(219, 230, 245, 0.85);
  box-shadow: 0 8px 30px rgba(11, 31, 58, 0.06);
}

.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  flex: 0 0 auto;
}

.brand img {
  width: 218px;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--ink-soft);
  font-size: 0.93rem;
  font-weight: 650;
}

.main-nav > a:not(.button) {
  position: relative;
}

.main-nav > a:not(.button)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -8px;
  height: 2px;
  background: var(--blue);
  transition: right 0.2s ease;
}

.main-nav > a:not(.button):hover::after,
.main-nav > a:not(.button):focus-visible::after {
  right: 0;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 0;
  border-radius: 12px;
  color: var(--ink);
  background: var(--blue-pale);
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 2px;
  margin: 4px 0;
  border-radius: 99px;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 22px;
  border: 1px solid var(--blue);
  border-radius: 14px;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), #2d7bf5);
  box-shadow: 0 12px 28px rgba(18, 104, 243, 0.24);
  font-weight: 750;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(18, 104, 243, 0.3);
}

.button:focus-visible,
.text-link:focus-visible,
.main-nav a:focus-visible,
input:focus-visible {
  outline: 3px solid rgba(18, 104, 243, 0.25);
  outline-offset: 3px;
}

.button-small {
  min-height: 42px;
  padding: 10px 16px;
  border-radius: 12px;
  font-size: 0.88rem;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 82px 0 0;
  background:
    linear-gradient(180deg, #ffffff 0%, #f8fbff 72%, #ffffff 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(18, 104, 243, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 104, 243, 0.035) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(to bottom, black, transparent 80%);
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(4px);
  opacity: 0.5;
  pointer-events: none;
}

.hero-glow-one {
  width: 430px;
  height: 430px;
  right: -180px;
  top: -110px;
  background: radial-gradient(circle, rgba(18, 104, 243, 0.2), transparent 68%);
}

.hero-glow-two {
  width: 350px;
  height: 350px;
  left: -180px;
  bottom: -80px;
  background: radial-gradient(circle, rgba(85, 161, 255, 0.14), transparent 70%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  min-height: 610px;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(500px, 1.05fr);
  align-items: center;
  gap: 54px;
}

.eyebrow {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 12px;
  border: 1px solid #cfdef4;
  border-radius: 999px;
  color: #255a9f;
  background: rgba(255, 255, 255, 0.78);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 5px rgba(18, 104, 243, 0.1);
}

.hero h1 {
  max-width: 690px;
  margin: 25px 0 22px;
  font-size: clamp(3rem, 5.2vw, 5.25rem);
  line-height: 1.02;
  letter-spacing: -0.06em;
}

.hero h1 span {
  color: var(--blue);
}

.hero-lead {
  max-width: 660px;
  margin: 0;
  color: var(--ink-soft);
  font-size: clamp(1.04rem, 1.7vw, 1.22rem);
  line-height: 1.75;
}

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

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  font-weight: 750;
}

.text-link span {
  color: var(--blue);
  font-size: 1.25rem;
  transition: transform 0.2s ease;
}

.text-link:hover span {
  transform: translateX(4px);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  margin-top: 30px;
  color: #54657c;
  font-size: 0.87rem;
  font-weight: 650;
}

.trust-row span {
  position: relative;
  padding-left: 18px;
}

.trust-row span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue);
}

.product-scene {
  position: relative;
  min-height: 540px;
  perspective: 1000px;
}

.dashboard-card {
  position: absolute;
  width: min(100%, 555px);
  right: 0;
  top: 28px;
  padding: 24px;
  border: 1px solid rgba(206, 221, 240, 0.94);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.93);
  box-shadow: var(--shadow-lg);
  transform: rotateY(-3deg) rotateX(1deg);
  backdrop-filter: blur(16px);
}

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

.dashboard-top > div {
  display: grid;
  gap: 3px;
}

.dashboard-top strong {
  font-size: 1.18rem;
}

.mini-label,
.phone-kicker,
.panel-kicker,
.card-label {
  color: var(--blue);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.live-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--success);
  background: #eafaf4;
  font-size: 0.74rem;
  font-weight: 800;
}

.live-pill i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 0 4px rgba(12, 138, 95, 0.11);
}

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

.metric {
  min-width: 0;
  padding: 15px;
  border: 1px solid #e1eaf6;
  border-radius: 16px;
  background: #fbfdff;
}

.metric span,
.metric small {
  display: block;
  color: #63728a;
  font-size: 0.72rem;
}

.metric strong {
  display: block;
  margin: 4px 0 2px;
  font-size: 1.55rem;
  letter-spacing: -0.04em;
}

.operation-list {
  display: grid;
  gap: 10px;
}

.operation-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 13px;
  border-radius: 15px;
  background: #f7faff;
}

.route-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: var(--blue);
  background: var(--blue-soft);
  font-size: 0.75rem;
  font-weight: 850;
}

.operation-row div {
  min-width: 0;
}

.operation-row strong,
.operation-row small {
  display: block;
}

.operation-row strong {
  font-size: 0.84rem;
}

.operation-row small {
  overflow: hidden;
  color: #6c7a8f;
  font-size: 0.7rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.status {
  padding: 6px 8px;
  border-radius: 999px;
  font-size: 0.66rem;
  font-weight: 800;
}

.status-route {
  color: #0a62db;
  background: #e7f1ff;
}

.status-assigned {
  color: var(--warning);
  background: #fff4e4;
}

.status-done {
  color: var(--success);
  background: #e8f8f2;
}

.phone-card {
  position: absolute;
  z-index: 3;
  width: 230px;
  min-height: 250px;
  padding: 17px;
  border: 1px solid rgba(216, 228, 243, 0.98);
  border-radius: 27px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 22px 55px rgba(11, 31, 58, 0.19);
}

.phone-card strong {
  display: block;
  margin: 8px 0 16px;
  line-height: 1.2;
}

.phone-bar {
  width: 52px;
  height: 5px;
  margin: 0 auto 18px;
  border-radius: 999px;
  background: #dbe4ef;
}

.phone-client {
  left: 0;
  bottom: 18px;
  transform: rotate(-3.5deg);
}

.phone-courier {
  right: 18px;
  bottom: -6px;
  transform: rotate(3.5deg);
}

.progress-track {
  height: 7px;
  overflow: hidden;
  border-radius: 999px;
  background: #e8eef7;
}

.progress-track span {
  display: block;
  width: 72%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--blue), #4b91f9);
}

.phone-route {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  padding: 13px;
  border-radius: 14px;
  background: var(--blue-pale);
}

.phone-route i {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 6px rgba(18, 104, 243, 0.12);
}

.phone-route small,
.phone-route b {
  display: block;
}

.phone-route small {
  color: #6c7a8f;
  font-size: 0.68rem;
}

.phone-route b {
  font-size: 0.76rem;
}

.courier-stop {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 14px 0 18px;
  padding: 13px;
  border-radius: 14px;
  background: #f6f9fe;
}

.courier-stop > span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  color: var(--white);
  background: var(--ink);
  font-size: 0.72rem;
  font-weight: 850;
}

.courier-stop b,
.courier-stop small {
  display: block;
}

.courier-stop b {
  font-size: 0.74rem;
}

.courier-stop small {
  color: #718098;
  font-size: 0.62rem;
}

.phone-card button {
  width: 100%;
  min-height: 40px;
  border: 0;
  border-radius: 12px;
  color: var(--white);
  background: var(--blue);
  font-size: 0.75rem;
  font-weight: 800;
}

.hero-proof {
  position: relative;
  z-index: 2;
  min-height: 94px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 28px;
  padding: 22px 28px;
  border: 1px solid #e0e9f5;
  border-radius: 22px 22px 0 0;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 -8px 32px rgba(11, 31, 58, 0.035);
}

.hero-proof p {
  margin: 0;
  color: #596a80;
  font-size: 0.9rem;
}

.hero-proof div {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.hero-proof span {
  padding: 7px 11px;
  border-radius: 999px;
  color: #446181;
  background: #f0f6ff;
  font-size: 0.76rem;
  font-weight: 750;
}

.section {
  padding: 112px 0;
}

.section-heading {
  margin-bottom: 54px;
}

.section-heading.centered {
  max-width: 790px;
  margin-inline: auto;
  margin-bottom: 56px;
  text-align: center;
}

.section-heading.compact {
  margin-bottom: 42px;
}

.section-tag {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--blue);
  font-size: 0.73rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-heading h2,
.difference-copy h2,
.readiness-grid h2,
.waitlist-copy h2 {
  margin: 0;
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  line-height: 1.08;
  letter-spacing: -0.05em;
}

.section-heading p,
.difference-copy > p,
.waitlist-copy p {
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.section-heading.centered p {
  max-width: 720px;
  margin: 20px auto 0;
}

.problem-section {
  background: var(--white);
}

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

.problem-card {
  min-height: 280px;
  padding: 27px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.problem-card:hover {
  transform: translateY(-5px);
  border-color: #bfd5f2;
  box-shadow: var(--shadow-sm);
}

.card-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 52px;
  border-radius: 14px;
  color: var(--blue);
  background: var(--blue-soft);
  font-size: 0.78rem;
  font-weight: 850;
}

.problem-card h3 {
  margin: 0 0 10px;
  font-size: 1.15rem;
}

.problem-card p {
  margin: 0;
  color: #5d6b80;
  font-size: 0.93rem;
}

.problem-callout {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  align-items: center;
  gap: 46px;
  margin-top: 24px;
  padding: 31px 34px;
  border-radius: var(--radius-md);
  color: var(--white);
  background:
    linear-gradient(120deg, #091d39, #113b76);
}

.problem-callout div {
  display: grid;
}

.problem-callout span {
  color: #8fbaf8;
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.problem-callout strong {
  margin-top: 7px;
  font-size: 1.55rem;
}

.problem-callout p {
  margin: 0;
  color: #d7e4f7;
}

.platform-section {
  background: var(--blue-pale);
}

.split-heading {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: end;
  gap: 70px;
}

.split-heading p {
  margin: 0 0 7px;
}

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

.platform-card {
  position: relative;
  overflow: hidden;
  padding: 22px 25px 28px;
  border: 1px solid #d9e5f5;
  border-radius: 28px;
  background: var(--white);
  box-shadow: 0 16px 45px rgba(11, 31, 58, 0.06);
}

.platform-card.featured {
  border-color: #a9c9f8;
  box-shadow: 0 22px 56px rgba(18, 104, 243, 0.13);
}

.platform-number {
  position: absolute;
  right: 22px;
  top: 20px;
  color: #c7d8ec;
  font-size: 0.78rem;
  font-weight: 850;
}

.platform-visual {
  min-height: 265px;
  display: grid;
  place-items: center;
  margin: -2px -5px 24px;
  overflow: hidden;
  border-radius: 20px;
  background: linear-gradient(145deg, #edf5ff, #f9fbff);
}

.client-visual {
  background:
    radial-gradient(circle at 75% 20%, rgba(18, 104, 243, 0.18), transparent 37%),
    linear-gradient(145deg, #edf5ff, #fbfdff);
}

.courier-visual {
  background:
    radial-gradient(circle at 25% 20%, rgba(18, 104, 243, 0.2), transparent 37%),
    linear-gradient(145deg, #f4f8ff, #eaf2ff);
}

.mini-phone {
  width: 162px;
  min-height: 222px;
  padding: 17px;
  border: 7px solid var(--white);
  border-radius: 27px;
  background: var(--white);
  box-shadow: 0 19px 42px rgba(11, 31, 58, 0.15);
}

.mini-notch {
  display: block;
  width: 44px;
  height: 5px;
  margin: -5px auto 15px;
  border-radius: 999px;
  background: #dde5ef;
}

.mini-phone > small,
.mini-phone > strong {
  display: block;
}

.mini-phone > small {
  color: #6d7b90;
  font-size: 0.64rem;
}

.mini-phone > strong {
  margin-top: 2px;
  font-size: 1.02rem;
}

.map-line {
  position: relative;
  height: 70px;
  margin: 17px 0;
}

.map-line::before {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  top: 35px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue), #9bc1f8);
  transform: rotate(-14deg);
}

.map-line i {
  position: absolute;
  z-index: 1;
  width: 11px;
  height: 11px;
  border: 3px solid var(--white);
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 2px rgba(18, 104, 243, 0.25);
}

.map-line i:nth-child(1) {
  left: 10px;
  top: 44px;
}

.map-line i:nth-child(2) {
  left: 62px;
  top: 29px;
}

.map-line i:nth-child(3) {
  right: 10px;
  top: 18px;
}

.mini-detail {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 9px;
  border-radius: 11px;
  background: #f1f6fd;
}

.mini-detail > span {
  width: 26px;
  height: 26px;
  border-radius: 9px;
  background: var(--blue-soft);
}

.mini-detail b,
.mini-detail small {
  display: block;
}

.mini-detail b {
  font-size: 0.63rem;
}

.mini-detail small {
  color: #738198;
  font-size: 0.54rem;
}

.operations-visual {
  background:
    radial-gradient(circle at 50% 10%, rgba(18, 104, 243, 0.17), transparent 50%),
    linear-gradient(150deg, #ecf4ff, #fdfefe);
}

.ops-window {
  width: 260px;
  height: 174px;
  display: grid;
  grid-template-columns: 44px 1fr;
  overflow: hidden;
  border: 6px solid var(--white);
  border-radius: 16px;
  background: var(--white);
  box-shadow: 0 20px 45px rgba(11, 31, 58, 0.15);
}

.ops-sidebar {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 16px 12px;
  background: var(--ink);
}

.ops-sidebar i {
  width: 18px;
  height: 7px;
  border-radius: 99px;
  background: #51627a;
}

.ops-sidebar i:first-child {
  background: #65a2fa;
}

.ops-content {
  padding: 17px;
}

.ops-title {
  display: block;
  width: 78px;
  height: 9px;
  border-radius: 99px;
  background: #253c5c;
}

.ops-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
  margin: 17px 0;
}

.ops-stats i {
  height: 42px;
  border-radius: 8px;
  background: #eef4fb;
}

.ops-lines {
  display: grid;
  gap: 8px;
}

.ops-lines span {
  display: block;
  height: 17px;
  border-radius: 7px;
  background: #f1f5fa;
}

.dark-phone {
  color: var(--white);
  background: var(--ink);
  border-color: #17304f;
}

.dark-phone .mini-notch {
  background: #45607f;
}

.dark-phone > small {
  color: #9fb1c8;
}

.stop-list {
  display: grid;
  gap: 9px;
  margin: 15px 0;
}

.stop-list div {
  display: flex;
  align-items: center;
  gap: 8px;
}

.stop-list i {
  width: 23px;
  height: 23px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: #b9d5ff;
  background: #17365f;
  font-size: 0.56rem;
  font-style: normal;
}

.stop-list span {
  height: 8px;
  flex: 1;
  border-radius: 99px;
  background: #2d4665;
}

.mini-action {
  padding: 9px;
  border-radius: 10px;
  color: var(--white);
  background: var(--blue);
  text-align: center;
  font-size: 0.63rem;
  font-weight: 800;
}

.platform-card h3 {
  margin: 9px 0 18px;
  font-size: 1.3rem;
  line-height: 1.3;
}

.platform-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  color: #5f6f84;
  font-size: 0.9rem;
  list-style: none;
}

.platform-card li {
  position: relative;
  padding-left: 18px;
}

.platform-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue);
}

.flow-section {
  padding-top: 102px;
  padding-bottom: 102px;
}

.flow-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.flow-grid::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 29px;
  height: 1px;
  background: #cddced;
}

.flow-grid article {
  position: relative;
  z-index: 1;
  padding: 0 17px;
  text-align: center;
}

.flow-grid article > span {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin: 0 auto 24px;
  border: 8px solid var(--white);
  border-radius: 50%;
  color: var(--white);
  background: var(--blue);
  box-shadow: 0 0 0 1px #cddced;
  font-size: 0.82rem;
  font-weight: 850;
}

.flow-grid h3 {
  margin: 0 0 10px;
  font-size: 1.05rem;
  line-height: 1.35;
}

.flow-grid p {
  margin: 0;
  color: #65748a;
  font-size: 0.88rem;
}

.difference-section {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 5% 0%, rgba(48, 124, 239, 0.26), transparent 28%),
    radial-gradient(circle at 95% 100%, rgba(48, 124, 239, 0.19), transparent 30%),
    linear-gradient(135deg, #07182f, #0d2d57);
}

.difference-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 72px;
}

.light-tag {
  color: #87b8ff;
}

.difference-copy > p {
  margin: 24px 0 0;
  color: #c6d5e8;
}

.difference-highlight {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.difference-highlight span {
  padding: 9px 12px;
  border: 1px solid rgba(144, 184, 238, 0.24);
  border-radius: 999px;
  color: #dcebff;
  background: rgba(255, 255, 255, 0.06);
  font-size: 0.78rem;
  font-weight: 750;
}

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

.difference-list article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  padding: 20px;
  border: 1px solid rgba(171, 201, 241, 0.17);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.055);
  backdrop-filter: blur(10px);
}

.check-mark {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: #a8cbff;
  background: rgba(18, 104, 243, 0.19);
  font-weight: 900;
}

.difference-list h3 {
  margin: 0 0 4px;
  font-size: 1.03rem;
}

.difference-list p {
  margin: 0;
  color: #c3d2e4;
  font-size: 0.9rem;
}

.value-section {
  background: var(--white);
}

.value-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 24px;
}

.value-main {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.value-card {
  min-height: 222px;
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--white);
}

.value-index {
  display: inline-block;
  margin-bottom: 44px;
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 850;
}

.value-card h3 {
  margin: 0 0 9px;
  font-size: 1.15rem;
}

.value-card p {
  margin: 0;
  color: #617086;
  font-size: 0.9rem;
}

.value-panel {
  min-height: 460px;
  padding: 34px;
  border-radius: 26px;
  color: var(--white);
  background:
    radial-gradient(circle at 100% 0%, rgba(70, 143, 251, 0.36), transparent 35%),
    linear-gradient(145deg, #0a2242, #123d77);
  box-shadow: var(--shadow-lg);
}

.value-panel .panel-kicker {
  color: #9dc4fb;
}

.value-panel h3 {
  margin: 15px 0 27px;
  font-size: 1.75rem;
  line-height: 1.2;
}

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

.panel-list span {
  padding: 11px 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.07);
  font-size: 0.79rem;
  font-weight: 750;
}

.value-panel p {
  margin: 27px 0 0;
  color: #cbd9eb;
  font-size: 0.92rem;
}

.readiness-section {
  padding-top: 92px;
  padding-bottom: 92px;
  border-top: 1px solid #e6edf7;
  background: #f7faff;
}

.readiness-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: center;
  gap: 72px;
}

.readiness-grid h2 {
  font-size: clamp(2rem, 3.5vw, 3.2rem);
}

.readiness-points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.readiness-points article {
  padding: 20px;
  border: 1px solid #dfe9f5;
  border-radius: 18px;
  background: var(--white);
}

.readiness-points strong {
  display: block;
  margin-bottom: 6px;
  font-size: 0.98rem;
}

.readiness-points p {
  margin: 0;
  color: #647389;
  font-size: 0.86rem;
}

.waitlist-section {
  position: relative;
  overflow: hidden;
  padding: 108px 0;
  color: var(--white);
  background:
    linear-gradient(135deg, #0a2140 0%, #0b3167 56%, #0d55bf 140%);
}

.waitlist-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.waitlist-orb-one {
  width: 420px;
  height: 420px;
  right: -150px;
  top: -170px;
  background: radial-gradient(circle, rgba(91, 159, 255, 0.4), transparent 65%);
}

.waitlist-orb-two {
  width: 360px;
  height: 360px;
  left: -130px;
  bottom: -180px;
  background: radial-gradient(circle, rgba(18, 104, 243, 0.3), transparent 66%);
}

.waitlist-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  align-items: center;
  gap: 65px;
}

.waitlist-copy p {
  margin: 22px 0 0;
  color: #ccdaeb;
}

.waitlist-form-card {
  padding: 29px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.09);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.19);
  backdrop-filter: blur(15px);
}

.waitlist-form > label:first-child {
  display: block;
  margin-bottom: 9px;
  color: #f0f6ff;
  font-size: 0.82rem;
  font-weight: 750;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.form-row input {
  width: 100%;
  min-width: 0;
  min-height: 54px;
  padding: 13px 15px;
  border: 1px solid rgba(205, 223, 247, 0.38);
  border-radius: 14px;
  color: var(--ink);
  background: var(--white);
}

.form-row input::placeholder {
  color: #8997aa;
}

.form-row .button {
  min-width: 212px;
}

.consent {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 9px;
  margin-top: 15px;
  color: #bdcce0;
  font-size: 0.76rem;
}

.consent input {
  width: 16px;
  height: 16px;
  margin-top: 2px;
  accent-color: #6aa6ff;
}

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

.form-status {
  min-height: 24px;
  margin: 13px 0 0;
  color: #d8e7fa;
  font-size: 0.82rem;
  font-weight: 650;
}

.form-status.is-success {
  color: #9ef0cf;
}

.form-status.is-error {
  color: #ffd0d0;
}

.waitlist-form.is-loading button {
  opacity: 0.78;
  pointer-events: none;
}

.form-note {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 17px;
}

.form-note span {
  padding: 6px 9px;
  border-radius: 999px;
  color: #c7d9ef;
  background: rgba(255, 255, 255, 0.07);
  font-size: 0.68rem;
  font-weight: 700;
}

.site-footer {
  padding: 52px 0 28px;
  border-top: 1px solid #e6edf7;
  background: var(--white);
}

.footer-main {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
}

.footer-brand img {
  width: 205px;
}

.footer-brand p {
  margin: 13px 0 0;
  color: #637187;
  font-size: 0.88rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px 24px;
  color: #4e5f76;
  font-size: 0.84rem;
  font-weight: 650;
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 38px;
  padding-top: 24px;
  border-top: 1px solid #e7edf5;
  color: #7a8798;
  font-size: 0.76rem;
}

@media (max-width: 1060px) {
  .main-nav {
    gap: 18px;
  }

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

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

  .product-scene {
    width: min(100%, 740px);
    min-height: 570px;
    margin-inline: auto;
  }

  .dashboard-card {
    width: min(100%, 610px);
  }

  .problem-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .platform-card {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    column-gap: 34px;
    align-items: center;
  }

  .platform-visual {
    grid-row: 1 / 6;
    min-height: 320px;
    margin: 0;
  }

  .platform-number {
    display: none;
  }

  .flow-grid {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 45px;
  }

  .flow-grid::before {
    display: none;
  }

  .difference-grid,
  .waitlist-inner {
    grid-template-columns: 1fr;
  }

  .difference-copy,
  .waitlist-copy {
    max-width: 750px;
  }

  .value-layout,
  .readiness-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .nav-toggle {
    display: block;
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(2) {
    transform: translateY(6px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(3) {
    opacity: 0;
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(4) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .main-nav {
    position: fixed;
    inset: 82px 20px auto;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 5px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--white);
    box-shadow: var(--shadow-lg);
  }

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

  .main-nav > a {
    padding: 12px;
  }

  .main-nav > a::after {
    display: none;
  }

  .main-nav .button {
    margin-top: 4px;
  }

  .split-heading,
  .problem-callout {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .hero-proof {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-proof div {
    justify-content: flex-start;
  }

  .value-main {
    grid-template-columns: 1fr;
  }
}

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

  .header-inner {
    min-height: 74px;
  }

  .brand img {
    width: 190px;
  }

  .main-nav {
    inset: 74px 14px auto;
  }

  .hero {
    padding-top: 58px;
  }

  .hero-grid {
    min-height: auto;
  }

  .hero h1 {
    font-size: clamp(2.65rem, 14vw, 4.1rem);
  }

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

  .hero-actions .button,
  .text-link {
    justify-content: center;
  }

  .product-scene {
    min-height: 630px;
  }

  .dashboard-card {
    top: 0;
    padding: 18px;
    transform: none;
  }

  .metric-grid {
    gap: 7px;
  }

  .metric {
    padding: 11px;
  }

  .metric strong {
    font-size: 1.25rem;
  }

  .phone-card {
    width: 206px;
  }

  .phone-client {
    left: -2px;
    bottom: 28px;
  }

  .phone-courier {
    right: -2px;
    bottom: -35px;
  }

  .hero-proof {
    margin-top: 55px;
    padding-inline: 20px;
  }

  .section {
    padding: 82px 0;
  }

  .problem-grid,
  .flow-grid,
  .readiness-points {
    grid-template-columns: 1fr;
  }

  .problem-card {
    min-height: auto;
  }

  .card-icon {
    margin-bottom: 30px;
  }

  .platform-card {
    display: block;
    padding: 18px 18px 25px;
  }

  .platform-visual {
    min-height: 285px;
    margin-bottom: 24px;
  }

  .flow-grid article {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0 16px;
    text-align: left;
  }

  .flow-grid article > span {
    grid-row: 1 / 3;
    width: 48px;
    height: 48px;
    margin: 0;
    border-width: 6px;
  }

  .flow-grid h3 {
    margin-top: 2px;
  }

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

  .value-panel {
    min-height: auto;
  }

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

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

  .footer-main,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 440px) {
  .brand img {
    width: 172px;
  }

  .product-scene {
    min-height: 705px;
  }

  .metric small {
    display: none;
  }

  .operation-row {
    grid-template-columns: auto 1fr;
  }

  .operation-row .status {
    grid-column: 2;
    width: fit-content;
  }

  .phone-card {
    width: 198px;
  }

  .phone-client {
    bottom: 80px;
  }

  .phone-courier {
    bottom: -30px;
  }

  .waitlist-form-card {
    padding: 21px;
  }
}

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

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