:root {
  --ink: #0f1216;
  --ink-soft: #151920;
  --panel: #191e26;
  --red: #c00000;
  --neon: #ff2b2b;
  --pearl: #f9f9f9;
  --pink: #f9dad5;
  --gray: #d8d8d8;
  --muted: #9ca3af;
  --line: rgba(249, 249, 249, 0.12);
  --max-width: 1220px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--pearl);
  font-family:
    "Segoe UI Variable", "Segoe UI", Helvetica, Arial, sans-serif;
  text-rendering: optimizeLegibility;
}

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

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

::selection {
  background: var(--neon);
  color: var(--pearl);
}

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 50%;
  display: flex;
  width: min(calc(100% - 48px), var(--max-width));
  height: 92px;
  transform: translateX(-50%);
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}

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

.brand img {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 43, 43, 0.3);
  border-radius: 13px;
  box-shadow: 0 0 28px rgba(255, 43, 43, 0.2);
}

.brand span {
  display: grid;
  gap: 3px;
}

.brand strong {
  font-size: 15px;
  font-weight: 760;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.brand small {
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.header-link {
  color: var(--gray);
  font-size: 14px;
  font-weight: 620;
  transition: color 180ms ease;
}

.header-link:hover {
  color: var(--pearl);
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0 23px;
  font-size: 14px;
  font-weight: 760;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

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

.button:focus-visible,
.text-link:focus-visible,
.header-link:focus-visible,
.brand:focus-visible {
  outline: 3px solid var(--pink);
  outline-offset: 4px;
}

.button--small {
  min-height: 42px;
  border-color: rgba(255, 43, 43, 0.45);
  background: rgba(255, 43, 43, 0.09);
  padding: 0 18px;
}

.button--small:hover {
  background: rgba(255, 43, 43, 0.16);
  box-shadow: 0 0 30px rgba(255, 43, 43, 0.14);
}

.button--primary {
  background: linear-gradient(135deg, #d10000, var(--neon));
  box-shadow:
    0 12px 34px rgba(255, 43, 43, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.button--primary:hover {
  box-shadow:
    0 16px 40px rgba(255, 43, 43, 0.33),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  grid-template-columns: minmax(0, 0.98fr) minmax(440px, 1.02fr);
  align-content: center;
  column-gap: 72px;
  overflow: hidden;
  padding: 150px max(24px, calc((100vw - var(--max-width)) / 2)) 118px;
  background:
    radial-gradient(circle at 79% 42%, rgba(192, 0, 0, 0.18), transparent 25%),
    radial-gradient(circle at 12% 100%, rgba(249, 218, 213, 0.06), transparent 30%),
    linear-gradient(130deg, #0f1216 0%, #10141a 54%, #0c0e12 100%);
}

.hero::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 44px 44px;
  content: "";
  mask-image: linear-gradient(to bottom, black, transparent 86%);
}

.hero-thread {
  position: absolute;
  top: 22%;
  right: -7%;
  width: 56%;
  height: 54%;
  border-top: 1px solid rgba(255, 43, 43, 0.7);
  border-radius: 50%;
  opacity: 0.65;
  filter: drop-shadow(0 0 8px rgba(255, 43, 43, 0.8));
  transform: rotate(-11deg);
}

.hero-thread::before,
.hero-thread::after {
  position: absolute;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--neon);
  box-shadow: 0 0 20px var(--neon);
  content: "";
}

.hero-thread::before {
  top: -5px;
  left: 18%;
}

.hero-thread::after {
  top: 13%;
  right: 7%;
}

.hero-content {
  position: relative;
  z-index: 3;
  align-self: center;
}

.event-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 27px;
  border: 1px solid rgba(249, 218, 213, 0.22);
  border-radius: 999px;
  background: rgba(249, 218, 213, 0.06);
  padding: 8px 13px;
  color: var(--pink);
  font-size: 12px;
  font-weight: 680;
  letter-spacing: 0.05em;
}

.event-pill span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--neon);
  box-shadow: 0 0 11px rgba(255, 43, 43, 0.95);
  animation: pulse 2.3s infinite;
}

.eyebrow {
  margin: 0 0 17px;
  color: #b9c0ca;
  font-size: 12px;
  font-weight: 720;
  letter-spacing: 0.15em;
  line-height: 1.6;
  text-transform: uppercase;
}

h1 {
  max-width: 660px;
  margin: 0;
  font-size: clamp(3.1rem, 5.5vw, 5.6rem);
  font-weight: 730;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

h1 em {
  color: var(--pink);
  font-style: normal;
}

.hero-copy {
  max-width: 635px;
  margin: 28px 0 0;
  color: #bac0c9;
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  line-height: 1.75;
}

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

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--gray);
  font-size: 14px;
  font-weight: 680;
  transition: color 180ms ease;
}

.text-link:hover {
  color: var(--pearl);
}

.coffee-icon {
  display: inline-grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  font-size: 14px;
}

.trust-note {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 23px;
  color: #8f98a5;
  font-size: 12px;
}

.trust-note > span:first-child {
  display: inline-grid;
  width: 18px;
  height: 18px;
  place-items: center;
  border: 1px solid rgba(255, 43, 43, 0.35);
  border-radius: 50%;
  color: var(--pink);
  font-size: 10px;
}

.trust-divider {
  width: 1px;
  height: 12px;
  background: var(--line);
}

.hero-visual {
  position: relative;
  z-index: 2;
  min-height: 520px;
  align-self: center;
}

.network-art {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  width: 110%;
  max-width: none;
  height: auto;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 34px;
  box-shadow:
    0 50px 100px rgba(0, 0, 0, 0.48),
    inset 0 0 60px rgba(255, 255, 255, 0.025);
  transform: translate(-50%, -50%);
}

.visual-halo {
  position: absolute;
  z-index: 0;
  inset: 19% 10%;
  border-radius: 50%;
  background: rgba(255, 43, 43, 0.2);
  filter: blur(90px);
}

.route-card,
.platform-card {
  position: absolute;
  z-index: 4;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  background: rgba(17, 20, 26, 0.84);
  box-shadow: 0 24px 44px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(16px);
}

.route-card {
  right: -3%;
  bottom: 3%;
  width: 250px;
  padding: 19px;
}

.route-card > p {
  margin: 0 0 13px;
  color: #8f98a5;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.route-card > div {
  display: grid;
  grid-template-columns: 29px 1fr;
  align-items: center;
  border-top: 1px solid var(--line);
  padding: 9px 0;
}

.route-card span {
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 7px;
  background: rgba(255, 43, 43, 0.13);
  color: var(--neon);
  font-size: 11px;
  font-weight: 850;
}

.route-card strong {
  font-size: 13px;
  font-weight: 670;
}

.platform-card {
  top: 9%;
  left: -7%;
  width: 190px;
  padding: 15px 17px 17px;
}

.platform-card small {
  display: block;
  margin-bottom: 9px;
  color: #8f98a5;
  font-size: 10px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.platform-card img {
  display: block;
  width: 100%;
  height: auto;
}

.hero-proof {
  position: absolute;
  z-index: 5;
  right: max(24px, calc((100vw - var(--max-width)) / 2));
  bottom: 32px;
  left: max(24px, calc((100vw - var(--max-width)) / 2));
  display: flex;
  min-height: 64px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--line);
  color: #8f98a5;
  font-size: 12px;
}

.hero-proof p {
  margin: 0;
}

.hero-proof strong {
  color: var(--gray);
  font-weight: 640;
}

.hero-proof > div {
  display: flex;
  gap: 8px;
}

.hero-proof > div span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 11px;
  color: #b8bec7;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section {
  position: relative;
  padding: 126px max(24px, calc((100vw - var(--max-width)) / 2));
}

.section-kicker {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 44px;
  color: #6f7680;
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-kicker span {
  display: grid;
  width: 31px;
  height: 31px;
  place-items: center;
  border: 1px solid rgba(192, 0, 0, 0.25);
  border-radius: 50%;
  color: var(--red);
  font-size: 9px;
}

.section-kicker--dark {
  color: #858e9b;
}

.section-kicker--dark span {
  border-color: rgba(255, 43, 43, 0.3);
  color: var(--neon);
}

.section-heading h2 {
  max-width: 760px;
  margin: 0;
  color: #181b20;
  font-size: clamp(2.5rem, 4.1vw, 4.6rem);
  font-weight: 730;
  letter-spacing: -0.05em;
  line-height: 1.03;
}

.section-heading h2 em {
  color: var(--red);
  font-style: normal;
}

.section-heading > p:last-child {
  max-width: 650px;
  margin: 27px 0 0;
  color: #616872;
  font-size: 16px;
  line-height: 1.75;
}

.section-heading--dark h2 {
  color: var(--pearl);
}

.section-heading--dark h2 em {
  color: var(--pink);
}

.section-heading--dark > p:last-child {
  color: #aeb5bf;
}

.eyebrow--red {
  color: var(--red);
}

.problem-section {
  background: #f5f4f1;
  color: #181b20;
}

.problem-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 0.85fr);
  gap: 100px;
  align-items: start;
}

.friction-list {
  border-top: 1px solid rgba(15, 18, 22, 0.15);
}

.friction-list article {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 16px;
  border-bottom: 1px solid rgba(15, 18, 22, 0.15);
  padding: 27px 0;
}

.friction-list article > span {
  color: var(--red);
  font-size: 11px;
  font-weight: 800;
}

.friction-list h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 720;
  letter-spacing: -0.015em;
  line-height: 1.35;
}

.friction-list p {
  margin: 10px 0 0;
  color: #6b717b;
  font-size: 14px;
  line-height: 1.65;
}

.method-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 100% 0%, rgba(192, 0, 0, 0.17), transparent 28%),
    linear-gradient(140deg, #11151a, #0d1014);
}

.method-thread {
  position: absolute;
  top: 33%;
  right: -9%;
  width: 70%;
  height: 38%;
  border-top: 1px solid rgba(255, 43, 43, 0.48);
  border-radius: 50%;
  filter: drop-shadow(0 0 9px rgba(255, 43, 43, 0.45));
  transform: rotate(-8deg);
}

.method-header {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.6fr);
  gap: 100px;
  align-items: end;
}

.method-header > p {
  margin: 0 0 8px;
  color: #aab1bc;
  font-size: 15px;
  line-height: 1.75;
}

.method-cards {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 17px;
  margin-top: 66px;
}

.method-card {
  position: relative;
  min-height: 450px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 25px;
  background: rgba(255, 255, 255, 0.035);
  padding: 40px 33px 34px;
}

.method-card--featured {
  border-color: rgba(255, 43, 43, 0.37);
  background:
    linear-gradient(180deg, rgba(255, 43, 43, 0.09), transparent 70%),
    rgba(255, 255, 255, 0.04);
  box-shadow: 0 22px 80px rgba(192, 0, 0, 0.14);
}

.method-letter {
  position: absolute;
  top: -20px;
  right: 8px;
  color: rgba(255, 255, 255, 0.035);
  font-size: 190px;
  font-weight: 850;
  line-height: 1;
}

.method-number {
  margin: 0 0 58px;
  color: var(--neon);
  font-size: 11px;
  font-weight: 820;
  letter-spacing: 0.16em;
}

.method-card h3 {
  margin: 0;
  font-size: 31px;
  font-weight: 710;
  letter-spacing: -0.035em;
}

.method-card > p:not(.method-number) {
  margin: 15px 0 0;
  color: #aeb5bf;
  font-size: 14px;
  line-height: 1.65;
}

.method-card ul {
  display: grid;
  gap: 12px;
  margin: 31px 0 0;
  padding: 22px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.method-card li {
  position: relative;
  padding-left: 19px;
  color: #d1d5db;
  font-size: 13px;
  line-height: 1.45;
}

.method-card li::before {
  position: absolute;
  top: 7px;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--neon);
  box-shadow: 0 0 8px rgba(255, 43, 43, 0.7);
  content: "";
}

.delivery-section {
  background: #f8f7f5;
}

.delivery-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(460px, 0.85fr);
  gap: 105px;
  align-items: center;
}

.delivery-checks {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 13px 20px;
  margin-top: 40px;
}

.delivery-checks > div {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #3d434b;
  font-size: 13px;
  font-weight: 620;
}

.delivery-checks span {
  display: grid;
  flex: 0 0 auto;
  width: 21px;
  height: 21px;
  place-items: center;
  border-radius: 50%;
  background: rgba(192, 0, 0, 0.08);
  color: var(--red);
  font-size: 10px;
}

.store-preview {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(15, 18, 22, 0.12);
  border-radius: 28px;
  background: #10141a;
  box-shadow: 0 35px 80px rgba(15, 18, 22, 0.22);
  transform: rotate(1.5deg);
}

.store-toolbar {
  display: flex;
  height: 44px;
  align-items: center;
  gap: 7px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0 15px;
}

.store-toolbar > span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #404650;
}

.store-toolbar > span:first-child {
  background: var(--red);
}

.store-toolbar p {
  margin: 0 0 0 10px;
  color: #89919c;
  font-size: 9px;
}

.store-body {
  margin: 8px;
  overflow: hidden;
  border-radius: 19px;
  background: #f5f1ee;
  color: #17191d;
}

.store-nav {
  display: flex;
  height: 56px;
  align-items: center;
  justify-content: space-between;
  padding: 0 23px;
}

.store-nav strong {
  font-size: 13px;
  letter-spacing: 0.14em;
}

.store-nav > div {
  display: flex;
  gap: 12px;
}

.store-nav span {
  width: 23px;
  height: 3px;
  border-radius: 3px;
  background: #c6c1be;
}

.store-banner {
  min-height: 220px;
  background:
    linear-gradient(90deg, rgba(5, 7, 9, 0.82), rgba(5, 7, 9, 0.2)),
    radial-gradient(circle at 79% 45%, #ce1717, transparent 25%),
    linear-gradient(135deg, #2e343d, #101419);
  padding: 43px 35px;
  color: white;
}

.store-banner p {
  margin: 0;
  color: var(--pink);
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.2em;
}

.store-banner strong {
  display: block;
  max-width: 330px;
  margin-top: 14px;
  font-size: 30px;
  letter-spacing: -0.04em;
  line-height: 1.04;
}

.store-banner span {
  display: inline-block;
  margin-top: 23px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.45);
  padding-bottom: 3px;
  font-size: 10px;
  font-weight: 700;
}

.store-products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 11px;
  padding: 17px;
}

.store-products > div > span {
  display: block;
  aspect-ratio: 0.88;
  border-radius: 8px;
  background:
    linear-gradient(145deg, transparent 35%, rgba(192, 0, 0, 0.14)),
    #dedbd8;
}

.store-products > div:nth-child(2) > span {
  background:
    linear-gradient(145deg, transparent 35%, rgba(249, 218, 213, 0.5)),
    #c9c5c2;
}

.store-products > div:nth-child(3) > span {
  background:
    linear-gradient(145deg, transparent 35%, rgba(15, 18, 22, 0.25)),
    #e6e3df;
}

.store-products p {
  margin: 8px 0 2px;
  font-size: 9px;
  font-weight: 720;
}

.store-products small {
  color: #88827e;
  font-size: 7px;
}

.preview-status {
  position: absolute;
  right: 20px;
  bottom: 19px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  background: rgba(12, 15, 19, 0.84);
  padding: 9px 13px;
  color: #c7ccd3;
  font-size: 9px;
  backdrop-filter: blur(9px);
}

.preview-status span {
  display: grid;
  width: 17px;
  height: 17px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 43, 43, 0.18);
  color: var(--pink);
  font-size: 9px;
}

.fit-section {
  background:
    radial-gradient(circle at 15% 100%, rgba(249, 218, 213, 0.08), transparent 30%),
    #11151a;
}

.fit-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 70px;
}

.fit-heading .section-heading h2 {
  max-width: 850px;
}

.button--dark {
  flex: 0 0 auto;
  background: var(--pearl);
  color: var(--ink);
}

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

.fit-card {
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.035);
  padding: 32px;
}

.fit-card > p {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 25px;
  color: var(--pearl);
  font-size: 15px;
  font-weight: 720;
}

.fit-card > p span {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  font-size: 11px;
}

.fit-card--yes > p span {
  background: rgba(255, 43, 43, 0.15);
  color: var(--pink);
}

.fit-card--not-yet > p span {
  background: rgba(255, 255, 255, 0.08);
  color: #aeb5bf;
}

.fit-card ul {
  display: grid;
  gap: 13px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.fit-card li {
  position: relative;
  padding-left: 19px;
  color: #aeb5bf;
  font-size: 13px;
  line-height: 1.55;
}

.fit-card li::before {
  position: absolute;
  top: 8px;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #555d68;
  content: "";
}

.fit-card--yes li::before {
  background: var(--neon);
}

.lead-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(500px, 0.8fr);
  gap: 105px;
  align-items: start;
  background: #f5f4f1;
}

.lead-steps {
  display: grid;
  gap: 17px;
  margin: 41px 0 0;
  padding: 0;
  list-style: none;
}

.lead-steps li {
  display: grid;
  grid-template-columns: 29px 1fr;
  align-items: center;
  gap: 12px;
  color: #555c65;
  font-size: 13px;
  line-height: 1.5;
}

.lead-steps span {
  display: grid;
  width: 29px;
  height: 29px;
  place-items: center;
  border: 1px solid rgba(192, 0, 0, 0.2);
  border-radius: 50%;
  color: var(--red);
  font-size: 10px;
  font-weight: 800;
}

.lead-form {
  display: grid;
  gap: 20px;
  border: 1px solid rgba(15, 18, 22, 0.1);
  border-radius: 28px;
  background: white;
  box-shadow: 0 30px 75px rgba(15, 18, 22, 0.12);
  padding: 36px;
  color: #1a1d22;
}

.form-heading {
  display: grid;
  gap: 7px;
  margin-bottom: 8px;
  border-bottom: 1px solid rgba(15, 18, 22, 0.1);
  padding-bottom: 24px;
}

.form-heading span {
  color: var(--red);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.form-heading strong {
  font-size: 25px;
  letter-spacing: -0.025em;
}

.lead-form label {
  display: grid;
  gap: 8px;
  color: #3f454d;
  font-size: 12px;
  font-weight: 700;
}

.lead-form input,
.lead-form select {
  width: 100%;
  min-height: 51px;
  border: 1px solid rgba(15, 18, 22, 0.15);
  border-radius: 12px;
  outline: none;
  background: #faf9f7;
  padding: 0 15px;
  color: #1c2025;
  font: inherit;
  font-size: 14px;
  font-weight: 520;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.lead-form input:focus,
.lead-form select:focus {
  border-color: rgba(192, 0, 0, 0.6);
  background: white;
  box-shadow: 0 0 0 4px rgba(192, 0, 0, 0.08);
}

.lead-form input::placeholder {
  color: #989da4;
}

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

.lead-form .consent-check {
  display: grid;
  grid-template-columns: 19px 1fr;
  gap: 10px;
  align-items: start;
  color: #737981;
  font-size: 10px;
  font-weight: 520;
  line-height: 1.5;
}

.consent-check input {
  width: 17px;
  min-height: 17px;
  height: 17px;
  margin: 1px 0 0;
  accent-color: var(--red);
}

.consent-check a {
  color: var(--red);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.form-submit {
  width: 100%;
  border: 0;
  cursor: pointer;
}

.form-note {
  margin: -7px 0 0;
  color: #858b93;
  font-size: 9px;
  line-height: 1.55;
  text-align: center;
}

.routes-section {
  background:
    radial-gradient(circle at 95% 15%, rgba(192, 0, 0, 0.16), transparent 25%),
    #0f1216;
}

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

.route-option {
  display: flex;
  min-height: 500px;
  align-items: flex-start;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.035);
  padding: 39px;
}

.route-option--primary {
  border-color: rgba(255, 43, 43, 0.34);
  background:
    linear-gradient(160deg, rgba(255, 43, 43, 0.12), transparent 62%),
    rgba(255, 255, 255, 0.035);
}

.route-tag {
  display: inline-block;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  padding: 7px 10px;
  color: var(--pink);
  font-size: 9px;
  font-weight: 760;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.route-option h3 {
  margin: 22px 0 0;
  font-size: 36px;
  letter-spacing: -0.04em;
}

.route-option > div > p {
  max-width: 490px;
  margin: 14px 0 0;
  color: #aeb5bf;
  font-size: 14px;
  line-height: 1.65;
}

.route-option ul {
  display: grid;
  gap: 13px;
  width: 100%;
  margin: 31px 0 35px;
  padding: 25px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.route-option li {
  position: relative;
  padding-left: 21px;
  color: #d0d4da;
  font-size: 13px;
}

.route-option li::before {
  position: absolute;
  top: 5px;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--neon);
  content: "";
}

.route-option .button {
  margin-top: auto;
}

.route-option > small {
  display: block;
  margin-top: 15px;
  color: #7f8792;
  font-size: 9px;
}

.button--outline-dark {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.06);
}

.button--outline-dark:hover {
  background: rgba(255, 255, 255, 0.1);
}

.faq-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.65fr) minmax(500px, 1fr);
  gap: 110px;
  background: #f8f7f5;
}

.faq-header {
  align-self: start;
}

.faq-list {
  border-top: 1px solid rgba(15, 18, 22, 0.15);
  color: #171a1e;
}

.faq-list details {
  border-bottom: 1px solid rgba(15, 18, 22, 0.15);
}

.faq-list summary {
  display: grid;
  grid-template-columns: 1fr 28px;
  gap: 25px;
  align-items: center;
  padding: 25px 0;
  cursor: pointer;
  font-size: 16px;
  font-weight: 680;
  line-height: 1.45;
  list-style: none;
}

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

.faq-list summary span {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 1px solid rgba(15, 18, 22, 0.15);
  border-radius: 50%;
  color: var(--red);
  transition: transform 180ms ease;
}

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

.faq-list details p {
  max-width: 670px;
  margin: -7px 0 26px;
  color: #68707a;
  font-size: 14px;
  line-height: 1.7;
}

.final-cta {
  position: relative;
  display: grid;
  overflow: hidden;
  min-height: 680px;
  place-items: center;
  align-content: center;
  background:
    radial-gradient(circle at 50% 40%, rgba(192, 0, 0, 0.3), transparent 25%),
    linear-gradient(150deg, #0d1014, #13171d);
  padding: 100px 24px;
  text-align: center;
}

.final-cta > img {
  width: 76px;
  height: 76px;
  margin-bottom: 24px;
  border: 1px solid rgba(255, 43, 43, 0.28);
  border-radius: 21px;
  box-shadow: 0 0 55px rgba(255, 43, 43, 0.28);
}

.final-cta .eyebrow {
  position: relative;
  z-index: 2;
  margin-bottom: 16px;
  color: var(--pink);
}

.final-cta h2 {
  position: relative;
  z-index: 2;
  max-width: 930px;
  margin: 0;
  font-size: clamp(2.7rem, 5.1vw, 5.4rem);
  font-weight: 730;
  letter-spacing: -0.055em;
  line-height: 1.01;
}

.final-cta > p:not(.eyebrow) {
  position: relative;
  z-index: 2;
  margin: 25px 0 0;
  color: #aab1bc;
  font-size: 16px;
}

.final-cta > div:not(.final-thread) {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 12px;
  margin-top: 34px;
}

.button--ghost {
  border-color: rgba(255, 255, 255, 0.17);
  background: rgba(255, 255, 255, 0.04);
}

.final-thread {
  position: absolute;
  top: 39%;
  left: -9%;
  width: 118%;
  height: 36%;
  border-top: 1px solid rgba(255, 43, 43, 0.46);
  border-radius: 50%;
  filter: drop-shadow(0 0 8px rgba(255, 43, 43, 0.65));
  transform: rotate(-6deg);
}

footer {
  background: #090b0e;
  padding: 77px max(24px, calc((100vw - var(--max-width)) / 2)) 33px;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.5fr 0.65fr 0.8fr;
  gap: 75px;
  padding-bottom: 55px;
  border-bottom: 1px solid var(--line);
}

.footer-brand > p {
  max-width: 330px;
  margin: 23px 0 0;
  color: #858d98;
  font-size: 13px;
  line-height: 1.65;
}

.footer-links {
  display: grid;
  align-content: start;
  gap: 12px;
}

.footer-links > p {
  margin: 0 0 6px;
  color: #646c77;
  font-size: 9px;
  font-weight: 780;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.footer-links a {
  color: #c4c9d0;
  font-size: 12px;
  transition: color 180ms ease;
}

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

.privacy-note {
  border-bottom: 1px solid var(--line);
  color: #8b939e;
}

.privacy-note summary {
  padding: 20px 0;
  cursor: pointer;
  color: #a6adb6;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  list-style: none;
  text-transform: uppercase;
}

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

.privacy-note p {
  max-width: 900px;
  margin: -4px 0 22px;
  font-size: 10px;
  line-height: 1.65;
}

.footer-legal {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
  padding-top: 27px;
  color: #626a74;
  font-size: 9px;
  line-height: 1.55;
}

.footer-legal p {
  margin: 0;
}

.footer-legal p:last-child {
  max-width: 610px;
  text-align: right;
}

.mobile-cta {
  display: none;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.55;
    transform: scale(0.78);
  }
}

@media (max-width: 1040px) {
  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(380px, 0.82fr);
    column-gap: 35px;
  }

  .network-art {
    width: 126%;
  }

  .platform-card {
    left: -2%;
  }

  .route-card {
    right: -2%;
  }

  .problem-grid,
  .delivery-grid,
  .lead-section {
    gap: 55px;
  }

  .problem-grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(380px, 0.85fr);
  }

  .method-header {
    gap: 55px;
  }

  .method-card {
    padding-right: 25px;
    padding-left: 25px;
  }

  .delivery-grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(400px, 0.85fr);
  }

  .lead-section {
    grid-template-columns: minmax(0, 0.8fr) minmax(460px, 0.9fr);
  }

  .faq-section {
    gap: 60px;
  }
}

@media (max-width: 820px) {
  .site-header {
    width: min(calc(100% - 32px), var(--max-width));
    height: 78px;
  }

  .header-link {
    display: none;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding: 116px 18px 138px;
  }

  .hero-content {
    z-index: 6;
  }

  h1 {
    font-size: clamp(3rem, 12vw, 4.6rem);
  }

  .hero-copy {
    font-size: 1rem;
    line-height: 1.65;
  }

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

  .button--primary {
    width: 100%;
  }

  .hero-visual {
    min-height: 430px;
    margin-top: 36px;
  }

  .network-art {
    width: 100%;
  }

  .platform-card {
    top: 10%;
    left: 2%;
  }

  .route-card {
    right: 1%;
    bottom: 1%;
  }

  .hero-proof {
    bottom: 26px;
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    padding-top: 20px;
  }

  .section {
    padding: 90px 18px;
  }

  .section-kicker {
    margin-bottom: 33px;
  }

  .section-heading h2 {
    font-size: clamp(2.5rem, 9vw, 4rem);
  }

  .problem-grid,
  .method-header,
  .delivery-grid,
  .lead-section,
  .faq-section {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .method-cards {
    grid-template-columns: 1fr;
    margin-top: 48px;
  }

  .method-card {
    min-height: 0;
  }

  .method-number {
    margin-bottom: 38px;
  }

  .store-preview {
    width: min(100%, 580px);
    margin: 0 auto;
    transform: none;
  }

  .fit-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 28px;
  }

  .fit-grid,
  .routes-grid {
    grid-template-columns: 1fr;
  }

  .fit-grid {
    margin-top: 45px;
  }

  .lead-section {
    display: grid;
  }

  .lead-form {
    width: min(100%, 600px);
    margin: 0 auto;
  }

  .route-option {
    min-height: 450px;
  }

  .faq-section {
    display: grid;
  }

  .final-cta {
    min-height: 610px;
    padding-right: 18px;
    padding-left: 18px;
  }

  .final-cta > div:not(.final-thread) {
    width: min(100%, 430px);
    align-items: stretch;
    flex-direction: column;
  }

  .footer-main {
    grid-template-columns: 1.2fr 0.8fr;
    gap: 45px;
  }

  .footer-main .footer-links:last-child {
    grid-column: 1 / -1;
  }

  .footer-legal {
    flex-direction: column;
  }

  .footer-legal p:last-child {
    text-align: left;
  }

  footer {
    padding-bottom: 112px;
  }

  .mobile-cta {
    position: fixed;
    z-index: 50;
    right: 12px;
    bottom: 10px;
    left: 12px;
    display: block;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 18px;
    background: rgba(13, 16, 20, 0.9);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.35);
    padding: 7px;
    backdrop-filter: blur(18px);
  }

  .mobile-cta a {
    display: flex;
    min-height: 58px;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    border-radius: 13px;
    background: linear-gradient(135deg, #d10000, var(--neon));
    padding: 10px 18px;
  }

  .mobile-cta span {
    display: grid;
    gap: 2px;
    font-size: 14px;
    font-weight: 760;
  }

  .mobile-cta small {
    color: rgba(255, 255, 255, 0.74);
    font-size: 9px;
    font-weight: 620;
    letter-spacing: 0.04em;
  }

  .mobile-cta strong {
    font-size: 19px;
  }
}

@media (max-width: 520px) {
  .brand small {
    display: none;
  }

  .brand strong {
    font-size: 12px;
  }

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

  .button--small {
    min-height: 40px;
    padding: 0 15px;
    font-size: 12px;
  }

  .event-pill {
    margin-bottom: 22px;
    font-size: 10px;
  }

  .eyebrow {
    font-size: 10px;
  }

  h1 {
    font-size: 3.25rem;
  }

  .trust-note {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .trust-divider {
    display: none;
  }

  .hero-visual {
    min-height: 350px;
  }

  .network-art {
    top: 44%;
    width: 111%;
    border-radius: 24px;
  }

  .platform-card {
    top: 2%;
    left: 0;
    width: 158px;
  }

  .route-card {
    right: 0;
    bottom: 0;
    width: 210px;
  }

  .hero-proof > div {
    flex-wrap: wrap;
  }

  .section {
    padding-top: 76px;
    padding-bottom: 76px;
  }

  .section-heading h2 {
    font-size: 2.7rem;
  }

  .problem-grid,
  .method-header,
  .delivery-grid,
  .lead-section,
  .faq-section {
    gap: 38px;
  }

  .friction-list article {
    grid-template-columns: 32px 1fr;
  }

  .method-card,
  .fit-card,
  .route-option,
  .lead-form {
    border-radius: 21px;
    padding: 26px 22px;
  }

  .method-letter {
    font-size: 150px;
  }

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

  .store-banner {
    min-height: 185px;
    padding: 34px 25px;
  }

  .store-banner strong {
    font-size: 25px;
  }

  .store-products {
    gap: 7px;
    padding: 11px;
  }

  .preview-status {
    right: 12px;
    bottom: 12px;
  }

  .fit-grid,
  .routes-grid {
    gap: 12px;
  }

  .fit-card li {
    font-size: 12px;
  }

  .lead-form {
    gap: 17px;
  }

  .route-option {
    min-height: 430px;
  }

  .route-option h3 {
    font-size: 31px;
  }

  .faq-list summary {
    font-size: 14px;
  }

  .final-cta {
    min-height: 600px;
  }

  .final-cta h2 {
    font-size: 2.8rem;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .footer-main .footer-links:last-child {
    grid-column: auto;
  }
}

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

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