:root {
  --navy-950: #04141f;
  --navy-900: #071d2b;
  --navy-800: #0b2b3d;
  --navy-700: #123d51;
  --blue-700: #087ea4;
  --blue-600: #0b97c5;
  --blue-500: #1ab5df;
  --blue-300: #7edcf2;
  --blue-100: #dff7fc;
  --mint-400: #33d5bf;
  --green-600: #118c66;
  --ink: #102a39;
  --muted: #607684;
  --line: #dce7ec;
  --wash: #f3f9fb;
  --white: #ffffff;
  --shadow-sm: 0 12px 35px rgb(6 48 68 / 8%);
  --shadow-lg: 0 30px 90px rgb(2 21 32 / 22%);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 30px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

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

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

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

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

button {
  font: inherit;
}

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

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

h1,
h2,
h3 {
  letter-spacing: -0.04em;
}

h1 em,
h2 em {
  color: var(--blue-600);
  font-style: normal;
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  translate: 0 -150%;
  border-radius: 8px;
  padding: 10px 14px;
  background: var(--white);
  color: var(--navy-900);
  font-weight: 750;
  transition: translate .2s ease;
}

.skip-link:focus {
  translate: 0;
}

:focus-visible {
  outline: 3px solid var(--blue-500);
  outline-offset: 3px;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  border-bottom: 1px solid transparent;
  color: var(--white);
  transition: background .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  border-bottom-color: rgb(255 255 255 / 9%);
  background: rgb(4 20 31 / 94%);
  box-shadow: 0 8px 30px rgb(0 0 0 / 12%);
  backdrop-filter: blur(18px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 21px;
  font-weight: 850;
  letter-spacing: -0.04em;
}

.brand-mark {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 10px;
  background: linear-gradient(145deg, var(--blue-500), #37d6ea);
  color: var(--white);
  box-shadow: 0 9px 26px rgb(26 181 223 / 25%);
}

.brand-mark svg {
  width: 20px;
  height: 20px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 25px;
  font-size: 14px;
  font-weight: 650;
}

.site-nav > a:not(.button) {
  color: rgb(255 255 255 / 72%);
  transition: color .2s ease;
}

.site-nav > a:not(.button):hover {
  color: var(--white);
}

.nav-login {
  padding-left: 22px;
  border-left: 1px solid rgb(255 255 255 / 18%);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  gap: 4px;
  border: 1px solid rgb(255 255 255 / 20%);
  border-radius: 12px;
  background: rgb(255 255 255 / 7%);
  color: var(--white);
}

.menu-toggle span {
  display: block;
  width: 19px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition: transform .2s ease, opacity .2s ease;
}

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

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

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

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 13px;
  padding: 13px 21px;
  font-size: 15px;
  font-weight: 780;
  line-height: 1;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}

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

.button svg {
  width: 20px;
  height: 20px;
}

.button-small {
  min-height: 42px;
  padding: 11px 16px;
  font-size: 14px;
}

.button-whatsapp,
.button-primary {
  background: linear-gradient(135deg, var(--blue-500), #18c9d2);
  color: var(--navy-950);
  box-shadow: 0 14px 30px rgb(15 183 210 / 24%);
}

.button-primary:hover,
.button-whatsapp:hover {
  box-shadow: 0 18px 36px rgb(15 183 210 / 34%);
}

.button-ghost {
  border-color: rgb(255 255 255 / 19%);
  background: rgb(255 255 255 / 6%);
  color: var(--white);
}

.button-ghost:hover {
  border-color: rgb(255 255 255 / 34%);
  background: rgb(255 255 255 / 10%);
}

.button-dark-ghost {
  border-color: rgb(255 255 255 / 22%);
  background: transparent;
  color: var(--white);
}

.button-block {
  width: 100%;
}

.section-shell {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgb(10 38 53 / 12%), transparent 28%),
    linear-gradient(135deg, var(--navy-950), var(--navy-900) 58%, #08364b);
  color: var(--white);
}

.hero {
  min-height: 870px;
  padding: 150px 0 42px;
}

.hero::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgb(255 255 255 / 2.5%) 1px, transparent 1px),
    linear-gradient(90deg, rgb(255 255 255 / 2.5%) 1px, transparent 1px);
  background-size: 64px 64px;
  content: "";
  mask-image: linear-gradient(to bottom, black, transparent 84%);
}

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

.hero-glow-one {
  top: -250px;
  right: -180px;
  width: 620px;
  height: 620px;
  background: radial-gradient(circle, rgb(20 181 218 / 25%), transparent 67%);
}

.hero-glow-two {
  bottom: -280px;
  left: -220px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgb(42 219 190 / 14%), transparent 66%);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(470px, 1.1fr);
  gap: clamp(40px, 7vw, 92px);
  align-items: center;
}

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

.eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 17px;
  color: var(--blue-600);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.section-shell .eyebrow,
.section-heading-inverse .eyebrow,
.final-cta .eyebrow {
  color: var(--blue-300);
}

.eyebrow span {
  width: 24px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
}

.hero h1 {
  margin-bottom: 26px;
  font-size: clamp(51px, 5.2vw, 76px);
  font-weight: 860;
  line-height: .99;
}

.hero h1 em {
  background: linear-gradient(90deg, var(--blue-300), var(--mint-400));
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-lead {
  max-width: 600px;
  margin-bottom: 31px;
  color: rgb(230 244 249 / 72%);
  font-size: 18px;
  line-height: 1.65;
}

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

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin: 26px 0 0;
  padding: 0;
  color: rgb(231 245 250 / 65%);
  font-size: 13px;
  list-style: none;
}

.hero-trust span {
  margin-right: 5px;
  color: var(--mint-400);
  font-weight: 900;
}

.hero-product {
  position: relative;
  min-height: 520px;
}

.product-window {
  position: absolute;
  inset: 30px 0 auto 0;
  overflow: hidden;
  border: 1px solid rgb(255 255 255 / 13%);
  border-radius: 22px;
  background: #f8fbfc;
  color: var(--ink);
  box-shadow: var(--shadow-lg);
  transform: perspective(1300px) rotateY(-5deg) rotateX(2deg);
  transform-origin: center right;
}

.window-bar {
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  padding: 0 19px;
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.window-brand,
.window-status {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 800;
}

.mini-drop {
  width: 12px;
  height: 16px;
  border-radius: 50% 50% 55% 55%;
  background: var(--blue-500);
  clip-path: polygon(50% 0, 96% 67%, 94% 83%, 82% 96%, 50% 100%, 18% 96%, 6% 83%, 4% 67%);
}

.window-status {
  color: var(--green-600);
}

.window-status span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22c58b;
  box-shadow: 0 0 0 4px rgb(34 197 139 / 12%);
}

.window-body {
  display: grid;
  min-height: 390px;
  grid-template-columns: 70px 1fr;
}

.mini-sidebar {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 17px;
  padding-top: 26px;
  border-right: 1px solid var(--line);
  background: #f3f7f9;
}

.mini-sidebar span {
  width: 20px;
  height: 20px;
  border: 2px solid #b9cad2;
  border-radius: 6px;
}

.mini-sidebar span.active {
  border-color: var(--blue-600);
  background: var(--blue-600);
  box-shadow: 0 0 0 6px rgb(11 151 197 / 10%);
}

.mini-content {
  padding: 28px;
}

.mini-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.mini-heading div {
  display: grid;
  gap: 3px;
}

.mini-heading small,
.metric-row small,
.floating-card small {
  color: #7b919d;
  font-size: 10px;
}

.mini-heading strong {
  font-size: 19px;
}

.mini-heading > span {
  border: 1px solid var(--line);
  border-radius: 9px;
  padding: 6px 9px;
  color: #708590;
  font-size: 9px;
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 22px 0 17px;
}

.metric-row article {
  display: grid;
  min-width: 0;
  gap: 4px;
  border: 1px solid var(--line);
  border-radius: 13px;
  padding: 13px;
  background: var(--white);
}

.metric-row strong {
  overflow: hidden;
  font-size: 11px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.metric-icon {
  display: grid;
  width: 28px;
  height: 28px;
  margin-bottom: 7px;
  place-items: center;
  border-radius: 8px;
  font-size: 8px;
  font-weight: 850;
}

.metric-icon.sky { background: #e3f7fc; color: #078eb8; }
.metric-icon.mint { background: #e4faf5; color: #118c66; }
.metric-icon.blue { background: #e8f0ff; color: #4469d8; }

.flow-card {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 17px;
  background: var(--white);
}

.flow-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
  font-size: 11px;
}

.flow-title span {
  color: var(--green-600);
  font-size: 9px;
  font-weight: 750;
}

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

.flow-line::before {
  position: absolute;
  top: 5px;
  right: 12%;
  left: 12%;
  height: 2px;
  background: #dce8ed;
  content: "";
}

.flow-line div {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 8px;
  color: #8498a2;
  font-size: 8px;
}

.dot {
  width: 12px;
  height: 12px;
  border: 2px solid #c4d2d8;
  border-radius: 50%;
  background: var(--white);
}

.dot.done { border-color: var(--mint-400); background: var(--mint-400); }
.dot.current { border-color: var(--blue-500); box-shadow: 0 0 0 5px rgb(26 181 223 / 13%); }

.floating-card {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 11px;
  border: 1px solid rgb(255 255 255 / 12%);
  border-radius: 15px;
  padding: 13px 16px;
  background: rgb(8 31 44 / 91%);
  box-shadow: 0 18px 50px rgb(0 0 0 / 28%);
  backdrop-filter: blur(15px);
}

.floating-card div {
  display: grid;
  gap: 2px;
}

.floating-card strong {
  color: var(--white);
  font-size: 11px;
}

.floating-card small {
  color: rgb(211 235 243 / 56%);
}

.float-icon {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--blue-500), var(--mint-400));
  color: var(--navy-950);
  font-size: 15px;
  font-weight: 900;
}

.floating-route { top: 0; right: -34px; }
.floating-price { bottom: 17px; left: -22px; }

.capability-strip {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 84px;
  padding-top: 31px;
  border-top: 1px solid rgb(255 255 255 / 10%);
  color: rgb(230 244 249 / 52%);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.capability-strip i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--blue-500);
}

.section {
  padding: 112px 0;
}

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

.section-heading {
  max-width: 730px;
  margin-bottom: 52px;
}

.section-heading h2,
.pricing-copy h2 {
  margin-bottom: 19px;
  color: var(--navy-900);
  font-size: clamp(39px, 4.4vw, 61px);
  font-weight: 840;
  line-height: 1.04;
}

.section-heading > p:last-child,
.pricing-copy > p {
  max-width: 630px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 17px;
}

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

.feature-card {
  position: relative;
  min-height: 300px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 29px;
  background: linear-gradient(145deg, #fff, #f8fbfc);
  box-shadow: var(--shadow-sm);
}

.feature-card::after {
  position: absolute;
  right: -50px;
  bottom: -70px;
  width: 160px;
  height: 160px;
  border: 20px solid rgb(20 181 218 / 5%);
  border-radius: 50%;
  content: "";
}

.feature-card-wide {
  grid-column: span 2;
}

.feature-number {
  position: absolute;
  top: 25px;
  right: 27px;
  color: #b8c9d1;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .08em;
}

.feature-icon {
  display: grid;
  width: 45px;
  height: 45px;
  margin-bottom: 35px;
  place-items: center;
  border-radius: 13px;
  background: var(--blue-100);
  color: var(--blue-700);
  font-size: 19px;
  font-weight: 900;
}

.feature-card h3 {
  position: relative;
  z-index: 2;
  margin-bottom: 9px;
  font-size: 23px;
  line-height: 1.12;
}

.feature-card p {
  position: relative;
  z-index: 2;
  max-width: 440px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

.quick-order-visual {
  position: absolute;
  right: 25px;
  bottom: 26px;
  display: grid;
  width: min(42%, 260px);
  gap: 7px;
  border: 1px solid var(--line);
  border-radius: 13px;
  padding: 14px;
  background: rgb(255 255 255 / 92%);
  box-shadow: 0 14px 40px rgb(6 48 68 / 11%);
  color: #80939c;
  font-size: 9px;
}

.quick-order-visual b {
  color: var(--green-600);
  font-size: 10px;
}

.quick-order-visual i {
  border-top: 1px solid var(--line);
  padding-top: 7px;
  color: var(--ink);
  font-style: normal;
  font-weight: 700;
}

.feature-card-dark {
  border-color: var(--navy-800);
  background: linear-gradient(145deg, var(--navy-900), #0d3447);
  color: var(--white);
}

.feature-card-dark p {
  color: rgb(230 244 249 / 64%);
}

.feature-card-dark .feature-icon {
  background: rgb(29 190 220 / 15%);
  color: var(--blue-300);
}

.feature-card-dark .feature-number {
  color: rgb(255 255 255 / 30%);
}

.chart {
  position: absolute;
  right: 29px;
  bottom: 28px;
  left: 29px;
  display: flex;
  height: 54px;
  align-items: end;
  gap: 8px;
  opacity: .8;
}

.chart i {
  flex: 1;
  border-radius: 4px 4px 1px 1px;
  background: linear-gradient(to top, var(--blue-600), var(--mint-400));
}

.product-showcase {
  position: relative;
  overflow: hidden;
  background: var(--navy-950);
  color: var(--white);
}

.product-showcase::before {
  position: absolute;
  top: -380px;
  left: 40%;
  width: 900px;
  height: 650px;
  border-radius: 50%;
  background: radial-gradient(circle, rgb(20 181 218 / 19%), transparent 70%);
  content: "";
}

.section-heading-inverse h2 {
  color: var(--white);
}

.section-heading-inverse p:last-child {
  color: rgb(230 244 249 / 61%);
}

.showcase-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 250px;
  gap: 35px;
  align-items: end;
}

.showcase-grid figure {
  margin: 0;
}

.desktop-shot {
  overflow: hidden;
  border: 1px solid rgb(255 255 255 / 14%);
  border-radius: 20px;
  background: #121212;
  box-shadow: 0 40px 100px rgb(0 0 0 / 38%);
}

.browser-chrome {
  display: flex;
  min-height: 42px;
  align-items: center;
  gap: 6px;
  padding: 0 14px;
  border-bottom: 1px solid rgb(255 255 255 / 8%);
  color: rgb(255 255 255 / 36%);
  font-size: 9px;
}

.browser-chrome i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgb(255 255 255 / 22%);
}

.browser-chrome span {
  margin-left: 8px;
}

.desktop-shot img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: top left;
}

.desktop-shot figcaption,
.mobile-shot figcaption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 15px 18px;
  color: var(--white);
  font-size: 12px;
  font-weight: 750;
}

.desktop-shot figcaption span,
.mobile-shot figcaption span {
  color: rgb(255 255 255 / 43%);
  font-size: 10px;
  font-weight: 550;
}

.mobile-shot {
  padding: 0 8px;
}

.phone-frame {
  position: relative;
  overflow: hidden;
  border: 7px solid #202d35;
  border-radius: 35px;
  background: #121212;
  box-shadow: 0 30px 80px rgb(0 0 0 / 45%);
}

.phone-speaker {
  position: absolute;
  top: 8px;
  left: 50%;
  z-index: 2;
  width: 48px;
  height: 5px;
  border-radius: 6px;
  background: #28363e;
  transform: translateX(-50%);
}

.phone-frame img {
  width: 100%;
  aspect-ratio: 390 / 844;
  object-fit: cover;
}

.steps-section {
  background: var(--wash);
}

.steps {
  display: grid;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.steps li {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 36px;
  padding: 35px 0;
  border-bottom: 1px solid var(--line);
}

.steps li > span {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 50%;
  background: var(--navy-900);
  color: var(--blue-300);
  font-size: 15px;
  font-weight: 850;
}

.steps div {
  display: grid;
  grid-template-columns: 125px minmax(240px, 1fr) minmax(260px, .9fr);
  gap: 24px;
  align-items: center;
}

.steps small {
  color: var(--blue-700);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.steps h3,
.steps p {
  margin: 0;
}

.steps h3 {
  font-size: 23px;
}

.steps p {
  color: var(--muted);
  font-size: 14px;
}

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

.pricing-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: clamp(60px, 10vw, 130px);
  align-items: center;
}

.pricing-copy ul {
  display: grid;
  gap: 13px;
  margin: 31px 0 0;
  padding: 0;
  list-style: none;
}

.pricing-copy li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #415c6a;
  font-size: 14px;
}

.pricing-copy li span {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 50%;
  background: #e2faf3;
  color: var(--green-600);
  font-size: 11px;
  font-weight: 900;
}

.price-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  padding: 38px;
  background: linear-gradient(145deg, var(--navy-900), #0b3449);
  color: var(--white);
  box-shadow: 0 32px 80px rgb(6 48 68 / 25%);
}

.price-card::after {
  position: absolute;
  top: -80px;
  right: -80px;
  width: 220px;
  height: 220px;
  border: 35px solid rgb(28 194 218 / 9%);
  border-radius: 50%;
  content: "";
}

.price-badge {
  position: relative;
  z-index: 1;
  display: inline-flex;
  border: 1px solid rgb(126 220 242 / 28%);
  border-radius: 999px;
  padding: 7px 11px;
  background: rgb(26 181 223 / 10%);
  color: var(--blue-300);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.price-card > p {
  position: relative;
  z-index: 1;
  margin: 33px 0 2px;
  color: rgb(230 244 249 / 57%);
  font-size: 13px;
}

.price {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 2px;
}

.price strong {
  font-size: clamp(59px, 6vw, 78px);
  font-weight: 850;
  letter-spacing: -.07em;
  line-height: 1;
}

.price > span {
  color: var(--blue-300);
  font-size: 15px;
  font-weight: 850;
  line-height: 1.1;
}

.price small {
  color: rgb(255 255 255 / 44%);
  font-size: 10px;
  font-weight: 600;
}

.vat {
  position: relative;
  z-index: 1;
  margin-bottom: 29px;
  color: var(--mint-400);
  font-size: 12px;
  font-weight: 750;
}

.price-card .button,
.price-note {
  position: relative;
  z-index: 1;
}

.price-note {
  display: block;
  margin-top: 14px;
  color: rgb(230 244 249 / 46%);
  font-size: 10px;
  line-height: 1.5;
  text-align: center;
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(280px, .8fr) minmax(420px, 1.1fr);
  gap: clamp(50px, 10vw, 140px);
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 750;
  list-style: none;
}

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

.faq-list summary span {
  position: relative;
  width: 26px;
  height: 26px;
  flex: 0 0 auto;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.faq-list summary span::before,
.faq-list summary span::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 1.5px;
  background: var(--blue-700);
  content: "";
  transform: translate(-50%, -50%);
  transition: transform .2s ease;
}

.faq-list summary span::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-list details[open] summary span::after {
  transform: translate(-50%, -50%) rotate(0);
}

.faq-list details p {
  max-width: 600px;
  margin: -5px 44px 25px 0;
  color: var(--muted);
  font-size: 14px;
}

.final-cta {
  position: relative;
  overflow: hidden;
  padding: 105px 0;
  background: linear-gradient(135deg, var(--navy-950), #0a354a);
  color: var(--white);
  text-align: center;
}

.final-cta-inner {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
}

.final-cta h2 {
  margin-bottom: 20px;
  font-size: clamp(42px, 5vw, 66px);
  line-height: 1.03;
}

.final-cta p:not(.eyebrow) {
  max-width: 650px;
  margin-bottom: 31px;
  color: rgb(230 244 249 / 64%);
}

.centered {
  justify-content: center;
}

.cta-drop {
  position: absolute;
  border: 1px solid rgb(126 220 242 / 11%);
  border-radius: 56% 44% 57% 43% / 47% 43% 57% 53%;
}

.cta-drop-one {
  top: -150px;
  left: -90px;
  width: 420px;
  height: 420px;
  transform: rotate(35deg);
}

.cta-drop-two {
  right: -120px;
  bottom: -210px;
  width: 500px;
  height: 500px;
  transform: rotate(-25deg);
}

.site-footer {
  padding: 55px 0 25px;
  background: #031019;
  color: rgb(230 244 249 / 58%);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr .7fr .7fr;
  gap: 45px;
  padding-bottom: 43px;
}

.brand-footer {
  color: var(--white);
}

.footer-grid p {
  max-width: 320px;
  margin: 15px 0 0;
  font-size: 13px;
}

.footer-links,
.footer-contact {
  display: grid;
  align-content: start;
  gap: 11px;
  font-size: 13px;
}

.footer-links a:hover,
.footer-contact a:hover,
.footer-bottom a:hover {
  color: var(--blue-300);
}

.footer-contact span {
  color: #8da3ae;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.footer-contact a {
  color: var(--white);
  font-size: 16px;
  font-weight: 750;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 23px;
  border-top: 1px solid rgb(255 255 255 / 8%);
  font-size: 11px;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .6s ease, transform .6s ease;
}

.reveal-delay {
  transition-delay: .12s;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

  .site-nav > a:nth-child(4),
  .site-nav > a:nth-child(5) {
    display: none;
  }

  .hero-grid {
    grid-template-columns: minmax(0, .92fr) minmax(430px, 1.08fr);
    gap: 40px;
  }

  .floating-route {
    right: 5px;
  }

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

  .feature-card-wide {
    grid-column: span 2;
  }
}

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

  .menu-toggle {
    display: grid;
  }

  .site-nav {
    position: absolute;
    top: 76px;
    right: 0;
    left: 0;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: 12px 20px 22px;
    border-top: 1px solid rgb(255 255 255 / 8%);
    background: rgb(4 20 31 / 98%);
    box-shadow: 0 20px 35px rgb(0 0 0 / 20%);
  }

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

  .site-nav > a:nth-child(4),
  .site-nav > a:nth-child(5) {
    display: flex;
  }

  .site-nav > a:not(.button) {
    min-height: 46px;
    align-items: center;
    border-bottom: 1px solid rgb(255 255 255 / 7%);
  }

  .nav-login {
    margin-bottom: 12px;
    padding-left: 0;
    border-left: 0;
  }

  .hero {
    min-height: auto;
    padding-top: 132px;
  }

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

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

  .hero-product {
    min-height: 490px;
  }

  .product-window {
    inset: 25px 30px auto;
    transform: none;
  }

  .floating-route {
    right: 3px;
  }

  .floating-price {
    bottom: 8px;
    left: 3px;
  }

  .capability-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 55px;
    text-align: center;
  }

  .capability-strip i {
    display: none;
  }

  .section {
    padding: 86px 0;
  }

  .showcase-grid {
    grid-template-columns: minmax(0, 1fr) 210px;
    gap: 20px;
  }

  .pricing-grid,
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .price-card {
    max-width: 520px;
  }

  .steps div {
    grid-template-columns: 100px 1fr;
  }

  .steps p {
    grid-column: 2;
  }
}

@media (max-width: 620px) {
  .header-inner {
    min-height: 68px;
  }

  .site-nav {
    top: 68px;
  }

  .hero {
    padding: 118px 0 35px;
  }

  .hero h1 {
    font-size: clamp(43px, 13vw, 61px);
  }

  .hero-lead {
    font-size: 16px;
  }

  .hero-actions,
  .hero-actions .button {
    width: 100%;
  }

  .hero-trust {
    display: grid;
  }

  .hero-product {
    min-height: 420px;
    margin-inline: -10px;
  }

  .product-window {
    inset: 25px 5px auto;
  }

  .window-body {
    min-height: 320px;
    grid-template-columns: 46px 1fr;
  }

  .mini-sidebar {
    gap: 14px;
  }

  .mini-sidebar span {
    width: 15px;
    height: 15px;
  }

  .mini-content {
    padding: 20px 15px;
  }

  .metric-row {
    gap: 6px;
  }

  .metric-row article {
    padding: 9px;
  }

  .metric-row small {
    font-size: 8px;
  }

  .metric-row strong {
    font-size: 9px;
  }

  .floating-card {
    padding: 9px 11px;
  }

  .floating-card strong {
    font-size: 9px;
  }

  .floating-route {
    top: 7px;
  }

  .capability-strip {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 42px;
    font-size: 9px;
  }

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

  .section-heading h2,
  .pricing-copy h2 {
    font-size: 38px;
  }

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

  .feature-card-wide {
    grid-column: auto;
  }

  .feature-card {
    min-height: 275px;
    padding: 25px;
  }

  .quick-order-visual {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: 20px;
  }

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

  .mobile-shot {
    width: min(72%, 250px);
    margin-inline: auto !important;
  }

  .desktop-shot figcaption,
  .mobile-shot figcaption {
    align-items: flex-start;
    flex-direction: column;
  }

  .steps li {
    grid-template-columns: 58px 1fr;
    gap: 16px;
    padding: 27px 0;
  }

  .steps li > span {
    width: 42px;
    height: 42px;
  }

  .steps div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .steps p {
    grid-column: auto;
  }

  .price-card {
    padding: 30px 25px;
  }

  .price strong {
    font-size: 63px;
  }

  .final-cta {
    padding: 82px 0;
  }

  .final-cta h2 {
    font-size: 41px;
  }

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

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 9px;
  }
}

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
