@font-face {
  font-family: "Open Runde";
  src: url("assets/fonts/OpenRunde-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Open Runde";
  src: url("assets/fonts/OpenRunde-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Vela Sans";
  src: url("assets/fonts/VelaSans-GX.ttf") format("truetype");
  font-weight: 400 800;
  font-style: normal;
  font-display: swap;
}

:root {
  --sky: #5bbfff;
  --sky-soft: #dcebff;
  --cyan: #43d6e9;
  --blue: #239dec;
  --ink: #102840;
  --muted: #5f7f99;
  --line: rgba(91, 191, 255, 0.22);
  --white: #ffffff;
  --green: #70f0c6;
  --shadow: 0 24px 60px rgba(24, 102, 165, 0.22);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #f6fbff;
  font-family: "Vela Sans", "Open Runde", Arial, sans-serif;
  letter-spacing: 0;
}

body.no-smooth {
  scroll-behavior: auto;
}

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

img,
svg {
  display: block;
}

.shell {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.hero {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 78% 12%, rgba(67, 214, 233, 0.65), transparent 38%),
    linear-gradient(112deg, #4eb8f6 0%, var(--sky) 48%, var(--cyan) 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("assets/img/post1_1.png");
  background-size: cover;
  background-position: center;
  opacity: 0.07;
  pointer-events: none;
}

.orbit-field {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.9;
  pointer-events: none;
}

.orbit-field path,
.orbit-field circle {
  fill: none;
  stroke: rgba(255, 255, 255, 0.18);
  stroke-width: 8;
  stroke-linecap: round;
}

.orbit-field circle {
  fill: rgba(255, 255, 255, 0.14);
  stroke: none;
}

.topbar {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 0;
}

.brand,
.nav,
.nav-action {
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.14);
  box-shadow: 0 12px 30px rgba(38, 128, 196, 0.12);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 52px;
  padding: 8px;
  border-radius: 999px;
  font-family: "Open Runde", sans-serif;
  font-weight: 700;
}

.brand-mark {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
}

.brand-mark img {
  width: 26px;
  height: 26px;
  object-fit: contain;
}

.nav {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px;
  border-radius: 999px;
}

.nav a {
  padding: 11px 14px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 15px;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.nav a:hover,
.nav a.is-active {
  color: var(--blue);
  background: rgba(255, 255, 255, 0.86);
}

.nav-action {
  margin-right: clamp(24px, 4vw, 62px);
  padding: 16px 22px;
  border-radius: 999px;
  color: var(--blue);
  font-weight: 800;
  background: rgba(255, 255, 255, 0.9);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 58px;
  align-items: center;
  padding: 72px 0 104px;
}

.eyebrow {
  margin: 0 0 16px;
  color: rgba(255, 255, 255, 0.8);
  font-family: "Open Runde", sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1,
.section h2,
.final-cta h2 {
  margin: 0;
  font-family: "Open Runde", "Vela Sans", sans-serif;
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 680px;
  font-size: 72px;
}

.lead {
  max-width: 580px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 21px;
  line-height: 1.45;
}

.app-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  max-width: 100%;
  margin-top: 24px;
  padding: 10px 16px 10px 10px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(16px);
}

.app-badge img {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  object-fit: contain;
  box-shadow: 0 10px 24px rgba(24, 115, 185, 0.18);
}

.app-badge strong,
.app-badge span {
  display: block;
}

.app-badge strong {
  font-family: "Open Runde", sans-serif;
  font-size: 17px;
}

.app-badge span {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 15px 22px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.button svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button-icon {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  object-fit: contain;
}

.chip-icon {
  width: 28px;
  height: 20px;
  flex: 0 0 auto;
  object-fit: contain;
  border-radius: 3px;
  transition: transform 0.22s ease;
}

.route-icon {
  width: 22px;
  height: 22px;
  border-radius: 0;
}

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

.button-primary {
  color: var(--blue);
  background: var(--white);
  box-shadow: 0 16px 36px rgba(24, 115, 185, 0.24);
}

.button-ghost {
  color: var(--white);
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.button-white {
  color: var(--blue);
  background: var(--white);
}

.button-outline-white {
  color: var(--white);
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.32);
}

.button-light {
  color: var(--blue);
  background: rgba(91, 191, 255, 0.13);
  border: 1px solid rgba(91, 191, 255, 0.22);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 580px;
  margin-top: 42px;
}

.hero-stats div {
  min-height: 108px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(18px);
}

.hero-stats strong {
  display: block;
  font-family: "Open Runde", sans-serif;
  font-size: 34px;
  line-height: 1;
}

.hero-stats span {
  display: block;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
}

.hero-visual {
  position: relative;
  min-height: 540px;
}

.signal-panel,
.bot-card {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.18);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.signal-panel {
  top: 10px;
  right: 18px;
  width: min(420px, 88%);
  padding: 24px;
}

.panel-head {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 800;
}

.status-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 8px rgba(112, 240, 198, 0.16);
}

.progress-ring {
  position: relative;
  display: grid;
  width: 230px;
  height: 230px;
  place-items: center;
  margin: 34px auto 28px;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.08) 0 53%, transparent 54%),
    conic-gradient(var(--white) 0 356deg, rgba(255, 255, 255, 0.2) 356deg 360deg);
}

.progress-ring::before {
  content: "";
  position: absolute;
  width: 176px;
  height: 176px;
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(91, 191, 255, 0.95), rgba(67, 214, 233, 0.72));
}

.progress-ring img {
  position: relative;
  width: 74px;
  height: 74px;
  opacity: 0.95;
}

.progress-ring span {
  position: absolute;
  bottom: 18px;
  color: var(--white);
  font-family: "Open Runde", sans-serif;
  font-size: 38px;
  font-weight: 700;
}

.soft-progress {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: 72px;
  overflow: hidden;
  padding-right: 32px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
}

.soft-progress span {
  position: absolute;
  inset: 0 auto 0 0;
  width: 0;
  border-radius: inherit;
  background: rgba(255, 255, 255, 0.44);
  animation: loadBar 1.4s ease forwards;
}

.soft-progress b {
  position: relative;
  color: var(--blue);
  font-family: "Open Runde", sans-serif;
  font-size: 38px;
}

.bot-card {
  right: 120px;
  bottom: 0;
  width: 340px;
  padding: 20px;
}

.bot-card-head {
  display: flex;
  align-items: center;
  gap: 14px;
}

.bot-card-head img {
  width: 58px;
  height: 58px;
  border-radius: 50%;
}

.bot-card-head strong,
.bot-card-head span {
  display: block;
}

.bot-card-head strong {
  font-family: "Open Runde", sans-serif;
  font-size: 20px;
}

.bot-card-head span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
}

.chat-list {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.chat-list span {
  padding: 15px 16px;
  border-radius: 8px;
  color: var(--blue);
  font-weight: 800;
  background: rgba(255, 255, 255, 0.82);
}

.section {
  padding: 96px 0;
}

.reveal {
  opacity: 0;
  filter: blur(8px);
  translate: 0 24px;
}

.reveal.is-visible {
  animation: revealUp 0.72s cubic-bezier(0.2, 0.72, 0.18, 1) both;
  animation-delay: var(--reveal-delay, 0ms);
}

.section-light {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), #f4fbff),
    radial-gradient(circle at 0% 20%, rgba(91, 191, 255, 0.16), transparent 30%);
}

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

.section-heading-center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section .eyebrow {
  color: var(--blue);
}

.section h2,
.final-cta h2 {
  font-size: 48px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 18px;
}

.compact-feature-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.feature-card {
  position: relative;
  overflow: hidden;
  min-height: 250px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 48px rgba(42, 141, 214, 0.1);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease, background-color 0.24s ease;
}

.feature-card::after {
  content: "";
  position: absolute;
  inset: auto -22% -60% auto;
  width: 160px;
  height: 160px;
  border: 2px solid rgba(91, 191, 255, 0.12);
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.24s ease, transform 0.24s ease;
}

.feature-icon {
  width: 44px;
  height: 44px;
  color: var(--blue);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.24s ease;
}

.feature-card h3,
.price-card h3 {
  margin: 26px 0 12px;
  font-family: "Open Runde", sans-serif;
  font-size: 25px;
}

.feature-card p,
.price-card p,
.bot-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
}

.pricing-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(112deg, #e7f3ff 0%, #f8fcff 45%, #e5fbff 100%);
}

.pricing-section::before {
  content: "";
  position: absolute;
  right: -140px;
  top: 80px;
  width: 520px;
  height: 520px;
  border: 8px solid rgba(91, 191, 255, 0.12);
  border-radius: 50%;
}

.pricing-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.pricing-note {
  position: relative;
  max-width: 820px;
  margin: 26px auto 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.5;
  text-align: center;
}

.price-card {
  --price-offset: 0px;
  position: relative;
  display: flex;
  min-height: 370px;
  flex-direction: column;
  overflow: hidden;
  isolation: isolate;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 18px 48px rgba(42, 141, 214, 0.1);
  transform: translateY(var(--price-offset));
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.price-card::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: -40%;
  left: -70%;
  width: 44%;
  height: 190%;
  background: linear-gradient(105deg, transparent 0%, rgba(91, 191, 255, 0.2) 50%, transparent 100%);
  opacity: 0;
  pointer-events: none;
  transform: translateX(0) rotate(16deg);
  transition: transform 0.72s ease, opacity 0.24s ease;
}

.price-card > * {
  position: relative;
  z-index: 1;
}

.price-card-featured {
  --price-offset: -16px;
  color: var(--white);
  background: linear-gradient(142deg, var(--blue), var(--cyan));
  border-color: rgba(255, 255, 255, 0.42);
}

.price-card-featured::before {
  background: linear-gradient(105deg, transparent 0%, rgba(255, 255, 255, 0.42) 50%, transparent 100%);
}

.price-period,
.price-badge {
  display: inline-flex;
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 800;
  background: rgba(91, 191, 255, 0.14);
  transition: transform 0.22s ease, background-color 0.22s ease, color 0.22s ease;
}

.price-badge {
  position: absolute;
  top: 22px;
  right: 22px;
  color: var(--ink);
  background: var(--green);
}

.price-card-featured .price-period {
  color: var(--blue);
  background: rgba(255, 255, 255, 0.88);
}

.price {
  margin: 18px 0 16px;
  color: var(--blue);
  font-family: "Open Runde", sans-serif;
  font-size: 26px;
}

.price span {
  display: inline-block;
  font-size: 52px;
  line-height: 1;
  transition: transform 0.22s ease;
}

.price-card-featured .price,
.price-card-featured p {
  color: var(--white);
}

.price-link {
  display: inline-flex;
  justify-content: center;
  margin-top: auto;
  padding: 16px 18px;
  border-radius: 999px;
  color: var(--white);
  font-weight: 800;
  background: var(--blue);
  transition: transform 0.22s ease, box-shadow 0.22s ease, background-color 0.22s ease, color 0.22s ease;
}

.price-card-featured .price-link {
  color: var(--blue);
  background: var(--white);
}

@media (hover: hover) and (pointer: fine) {
  .price-card:hover,
  .price-card:focus-within {
    border-color: rgba(91, 191, 255, 0.42);
    box-shadow: 0 28px 70px rgba(42, 141, 214, 0.2);
    transform: translateY(calc(var(--price-offset) - 10px));
  }

  .price-card:hover::before,
  .price-card:focus-within::before {
    opacity: 1;
    transform: translateX(420%) rotate(16deg);
  }

  .price-card:hover .price-period,
  .price-card:focus-within .price-period,
  .price-card:hover .price-badge,
  .price-card:focus-within .price-badge {
    transform: translateY(-2px);
  }

  .price-card:hover .price span,
  .price-card:focus-within .price span {
    transform: translateY(-3px) scale(1.04);
  }

  .price-card:hover .price-link,
  .price-card:focus-within .price-link {
    background: #168fe0;
    box-shadow: 0 14px 28px rgba(35, 157, 236, 0.22);
    transform: translateY(-2px);
  }

  .price-card-featured:hover,
  .price-card-featured:focus-within {
    border-color: rgba(255, 255, 255, 0.66);
    box-shadow: 0 32px 80px rgba(35, 157, 236, 0.3);
  }

  .price-card-featured:hover .price-link,
  .price-card-featured:focus-within .price-link {
    color: #168fe0;
    background: var(--white);
    box-shadow: 0 14px 30px rgba(16, 40, 64, 0.16);
  }

  .feature-card:hover {
    border-color: rgba(91, 191, 255, 0.38);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 28px 70px rgba(42, 141, 214, 0.16);
    transform: translateY(-7px);
  }

  .feature-card:hover::after {
    opacity: 1;
    transform: translate(-18px, -16px) scale(1.06);
  }

  .feature-card:hover .feature-icon {
    transform: translateY(-3px) rotate(-4deg) scale(1.08);
  }

  .location-grid span:hover,
  .platform:hover {
    border-color: rgba(91, 191, 255, 0.36);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 24px 56px rgba(42, 141, 214, 0.14);
    transform: translateY(-5px);
  }

  .location-grid span:hover .chip-icon {
    transform: translateY(-2px) scale(1.08);
  }

  .platform:hover .platform-icon {
    transform: translateY(-3px) scale(1.08);
  }
}

.bot-section,
.product-section,
.setup-section {
  overflow: hidden;
  background: #f8fcff;
}

.bot-layout,
.product-layout {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 44px;
  align-items: center;
}

.bot-copy,
.product-copy {
  max-width: 430px;
}

.bot-copy .button,
.product-copy .button {
  margin-top: 28px;
}

.product-copy p {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.58;
}

.product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.product-panel {
  position: relative;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(239, 249, 255, 0.86)),
    radial-gradient(circle at 86% 8%, rgba(112, 240, 198, 0.22), transparent 32%);
  box-shadow: 0 24px 70px rgba(42, 141, 214, 0.14);
}

.product-panel::before {
  content: "";
  position: absolute;
  inset: 22px;
  border: 2px solid rgba(91, 191, 255, 0.12);
  border-radius: 8px;
  pointer-events: none;
}

.route-map {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 18px;
}

.route-map::before {
  content: "";
  position: absolute;
  left: 6%;
  right: 6%;
  top: 24px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(91, 191, 255, 0.58), transparent);
}

.route-map span {
  position: relative;
  display: grid;
  min-height: 70px;
  place-items: center;
  padding: 12px;
  border: 1px solid rgba(91, 191, 255, 0.22);
  border-radius: 8px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 800;
  text-align: center;
  background: rgba(255, 255, 255, 0.78);
}

.route-map span::before {
  content: "";
  position: absolute;
  top: -6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 7px rgba(112, 240, 198, 0.18);
}

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

.product-points article {
  min-height: 152px;
  padding: 20px;
  border: 1px solid rgba(91, 191, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
}

.product-points strong,
.product-points span {
  display: block;
}

.product-points strong {
  font-family: "Open Runde", sans-serif;
  font-size: 20px;
  line-height: 1.18;
}

.product-points span {
  margin-top: 12px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.45;
}

.setup-section {
  background:
    linear-gradient(180deg, #f8fcff, #edf8ff),
    radial-gradient(circle at 12% 10%, rgba(112, 240, 198, 0.16), transparent 30%);
}

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

.setup-steps article {
  position: relative;
  min-height: 250px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 48px rgba(42, 141, 214, 0.1);
}

.setup-steps span {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 50%;
  color: var(--blue);
  font-family: "Open Runde", sans-serif;
  font-weight: 700;
  background: rgba(91, 191, 255, 0.14);
}

.setup-steps h3 {
  margin: 28px 0 12px;
  font-family: "Open Runde", sans-serif;
  font-size: 25px;
}

.setup-steps p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
}

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

.screenshot-rail figure {
  position: relative;
  height: 210px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: linear-gradient(112deg, var(--sky), var(--cyan));
  box-shadow: 0 18px 46px rgba(42, 141, 214, 0.14);
}

.screenshot-rail img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.screenshot-rail figcaption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.9);
}

.final-cta {
  position: relative;
  overflow: hidden;
  padding: 72px 0;
  color: var(--white);
  background: linear-gradient(112deg, var(--blue), var(--sky), var(--cyan));
}

.final-cta::before,
.final-cta::after {
  content: "";
  position: absolute;
  border: 8px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
}

.final-cta::before {
  width: 500px;
  height: 500px;
  left: -170px;
  top: -260px;
}

.final-cta::after {
  width: 330px;
  height: 330px;
  right: -80px;
  bottom: -180px;
}

.final-cta-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 26px;
  align-items: center;
}

.final-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.final-actions .button {
  white-space: nowrap;
}

.final-cta-inner > img {
  width: 88px;
  height: 88px;
}

.final-cta .eyebrow {
  margin-bottom: 10px;
}

.final-cta h2 {
  max-width: 760px;
}

.hero-grid-minimal {
  grid-template-columns: 1fr 0.78fr;
  min-height: 620px;
}

.hero-mini {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.hero-mini span {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  padding: 9px 14px;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.13);
  backdrop-filter: blur(14px);
  font-weight: 800;
}

.hero-visual-minimal {
  display: flex;
  min-height: 420px;
  align-items: center;
  justify-content: center;
}

.hero-card {
  position: relative;
  width: min(430px, 100%);
  overflow: hidden;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.15);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  animation: heroFloat 7s ease-in-out infinite;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: auto -80px -130px auto;
  width: 280px;
  height: 280px;
  border: 34px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
}

.hero-card-top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}

.hero-card-mark {
  position: relative;
  z-index: 1;
  width: 92px;
  height: 92px;
  margin: 62px auto 44px;
  opacity: 0.95;
}

.hero-card-locations {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-card-locations span,
.location-grid span,
.platform {
  border: 1px solid rgba(91, 191, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--blue);
  font-weight: 800;
}

.hero-card-locations span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 14px;
  animation: chipRise 0.52s ease both;
}

.hero-card-locations .chip-icon {
  width: 24px;
  height: 18px;
}

.hero-card-locations .route-icon {
  width: 20px;
  height: 20px;
}

.hero-card-locations span:nth-child(2) {
  animation-delay: 60ms;
}

.hero-card-locations span:nth-child(3) {
  animation-delay: 120ms;
}

.hero-card-locations span:nth-child(4) {
  animation-delay: 180ms;
}

.hero-card-locations span:nth-child(5) {
  animation-delay: 240ms;
}

.hero-card-locations span:nth-child(6) {
  animation-delay: 300ms;
}

.hero-card-locations span:nth-child(7) {
  animation-delay: 360ms;
}

.hero-card-locations span:nth-child(8) {
  animation-delay: 420ms;
}

.hero-card-locations span:nth-child(9) {
  animation-delay: 480ms;
}

.hero-card-locations .route-special {
  flex: 0 1 auto;
  color: var(--blue);
  background: rgba(255, 255, 255, 0.84);
  border-color: rgba(255, 255, 255, 0.5);
}

.compact-feature-grid .feature-card {
  min-height: 220px;
}

.section-copy {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.58;
}

.locations-section {
  background:
    linear-gradient(180deg, #f8fcff, #edf8ff),
    radial-gradient(circle at 8% 16%, rgba(91, 191, 255, 0.14), transparent 30%);
}

.devices-section {
  background: #f8fcff;
}

.split-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 44px;
  align-items: center;
}

.split-layout-reverse {
  grid-template-columns: 1.15fr 0.85fr;
}

.split-layout .section-heading {
  margin-bottom: 0;
}

.location-grid {
  --location-min: 260px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, var(--location-min)), 1fr));
  grid-auto-flow: dense;
  gap: 12px;
}

.location-grid span {
  display: flex;
  min-height: 66px;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  border-radius: 8px;
  box-shadow: 0 16px 40px rgba(42, 141, 214, 0.09);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, background-color 0.22s ease;
}

.location-grid .chip-icon {
  width: 34px;
  height: 25px;
}

.location-grid .route-icon {
  width: 28px;
  height: 28px;
}

.location-grid .location-wide {
  grid-column: span 2;
  justify-content: center;
  color: var(--blue);
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(91, 191, 255, 0.26);
}

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

.platform {
  display: grid;
  min-height: 142px;
  place-items: center;
  padding: 22px 10px;
  border-radius: 8px;
  color: #1f79ba;
  text-align: center;
  box-shadow: 0 16px 40px rgba(42, 141, 214, 0.09);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, background-color 0.22s ease;
}

.platform-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 16px;
  color: var(--blue);
  fill: currentColor;
  stroke: none;
  transition: transform 0.22s ease;
}

.platform-icon-apple {
  width: 50px;
}

.platform-icon-android,
.platform-icon-tv {
  width: 66px;
}

.platform-icon-linux {
  width: 60px;
}

.price-card {
  min-height: 330px;
}

@keyframes revealUp {
  from {
    opacity: 0;
    filter: blur(8px);
    translate: 0 24px;
  }

  to {
    opacity: 1;
    filter: blur(0);
    translate: 0 0;
  }
}

@keyframes heroFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes chipRise {
  from {
    opacity: 0;
    transform: translateY(10px) scale(0.96);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes loadBar {
  to {
    width: 99%;
  }
}

@media (max-width: 980px) {
  .topbar {
    flex-wrap: wrap;
  }

  .nav {
    order: 3;
    width: 100%;
    justify-content: center;
  }

  .nav-action {
    margin-right: 0;
  }

  .hero-grid,
  .bot-layout,
  .product-layout {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 40px;
    padding-top: 42px;
  }

  .hero h1 {
    font-size: 56px;
  }

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

  .signal-panel {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
  }

  .bot-card {
    right: auto;
    left: 50%;
    transform: translateX(-50%);
  }

  .feature-grid,
  .pricing-grid,
  .setup-steps {
    grid-template-columns: 1fr;
  }

  .price-card-featured {
    transform: none;
  }

  .bot-copy,
  .product-copy {
    max-width: none;
  }

  .route-map {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .route-map::before {
    display: none;
  }
}

@media (max-width: 720px) {
  .shell {
    width: min(100% - 28px, 1160px);
  }

  .hero {
    min-height: auto;
  }

  .topbar {
    gap: 12px;
    padding-top: 18px;
  }

  .brand {
    min-height: 48px;
    padding-right: 14px;
  }

  .nav-action {
    padding: 14px 16px;
  }

  .nav {
    overflow-x: auto;
    justify-content: flex-start;
  }

  .nav a {
    white-space: nowrap;
  }

  .hero-grid {
    padding-bottom: 76px;
  }

  .hero h1 {
    font-size: 42px;
  }

  .lead {
    font-size: 18px;
  }

  .app-badge {
    border-radius: 8px;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .hero-stats div {
    min-height: 86px;
  }

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

  .signal-panel {
    width: 100%;
    padding: 18px;
  }

  .progress-ring {
    width: 190px;
    height: 190px;
  }

  .progress-ring::before {
    width: 144px;
    height: 144px;
  }

  .bot-card {
    width: 92%;
  }

  .section {
    padding: 72px 0;
  }

  .section h2,
  .final-cta h2 {
    font-size: 36px;
  }

  .feature-card,
  .price-card,
  .setup-steps article {
    min-height: auto;
    padding: 22px;
  }

  .product-panel {
    padding: 18px;
  }

  .product-panel::before {
    display: none;
  }

  .product-points {
    grid-template-columns: 1fr;
  }

  .route-map {
    grid-template-columns: 1fr;
  }

  .screenshot-rail {
    grid-template-columns: 1fr;
  }

  .final-cta-inner {
    grid-template-columns: 1fr;
  }

  .final-actions {
    justify-content: flex-start;
  }

  .final-cta-inner > img {
    width: 72px;
    height: 72px;
  }
}

@media (max-width: 980px) {
  .hero-grid-minimal,
  .split-layout,
  .split-layout-reverse {
    grid-template-columns: 1fr;
  }

  .hero-visual-minimal {
    min-height: 360px;
  }

  .devices-section .section-heading {
    order: -1;
  }

  .devices-section .platform-grid {
    order: 1;
  }

  .platform-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .hero-grid-minimal {
    min-height: auto;
  }

  .hero-visual-minimal {
    display: none;
  }

  .hero-card {
    padding: 22px;
  }

  .hero-card-mark {
    width: 72px;
    height: 72px;
    margin: 42px auto 34px;
  }

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

  .location-grid .location-wide {
    grid-column: auto;
  }

  .platform {
    min-height: 92px;
    grid-template-columns: auto 1fr;
    justify-items: start;
    gap: 12px;
    padding: 16px 18px;
    text-align: left;
  }

  .platform-icon {
    margin: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    filter: none;
    translate: 0 0;
  }

  .hero-card,
  .hero-card-locations span {
    animation: none !important;
  }
}
