:root {
  color-scheme: light;
  --blue: #0048ff;
  --navy: #002688;
  --cyan: #79e8ff;
  --green: #0acc00;
  --gold: #c6a15b;
  --ink: #111827;
  --muted: #374151;
  --soft: #f5f7fb;
  --panel: #ffffff;
  --panel-2: #eef3ff;
  --line: rgba(17, 24, 39, .12);
  --shadow: 0 18px 45px rgba(17, 24, 39, .12);
  --radius: 8px;
  --max: 1180px;
}

[data-theme="dark"] {
  color-scheme: dark;
  --ink: #f7faff;
  --muted: #d8e2f0;
  --soft: #07111f;
  --panel: #0e1a2c;
  --panel-2: #101f36;
  --line: rgba(255, 255, 255, .14);
  --shadow: 0 20px 55px rgba(0, 0, 0, .34);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Poppins", Inter, Segoe UI, Arial, sans-serif;
  background: var(--soft);
  color: var(--ink);
  overflow-x: hidden;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: color-mix(in srgb, var(--panel) 88%, transparent);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.nav-shell {
  width: min(var(--max), calc(100% - 32px));
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  box-shadow: 0 8px 22px rgba(0, 38, 136, .18);
}

.brand strong {
  font-size: 1rem;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: .72rem;
  line-height: 1.1;
}

.nav-links {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  padding: 10px 12px;
  border-radius: var(--radius);
  color: color-mix(in srgb, var(--ink) 72%, transparent);
  font-size: .88rem;
  font-weight: 600;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--blue);
  background: color-mix(in srgb, var(--blue) 10%, transparent);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.icon-btn,
.menu-btn {
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: inline-grid;
  place-items: center;
  background: var(--panel);
  color: var(--ink);
  cursor: pointer;
}

.menu-btn {
  display: none;
}

.btn {
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-weight: 700;
  font-size: .9rem;
  line-height: 1;
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(135deg, var(--blue), #1185ff);
  color: #fff;
  box-shadow: 0 14px 28px rgba(0, 72, 255, .26);
}

.btn-secondary {
  background: var(--panel);
  color: var(--ink);
  border-color: var(--line);
}

.section {
  padding: 78px 0;
}

.section.tight {
  padding: 48px 0;
}

.wrap {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

.hero {
  min-height: calc(100vh - 76px);
  display: grid;
  align-items: end;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: #07111f;
}

.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  animation: heroPan 18s ease-in-out infinite alternate;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(2, 9, 25, .88), rgba(2, 9, 25, .5) 43%, rgba(2, 9, 25, .12)),
    linear-gradient(0deg, rgba(2, 9, 25, .9), transparent 42%);
}

.hero-content {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 0 0 64px;
  color: #fff;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: #cfe9ff;
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--green);
}

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

h1 {
  max-width: 820px;
  margin-bottom: 18px;
  font-size: clamp(2.55rem, 5.3vw, 5.45rem);
  line-height: 1.04;
  overflow-wrap: break-word;
  word-break: break-word;
  letter-spacing: 0;
}

h2 {
  max-width: 760px;
  margin-bottom: 16px;
  font-size: clamp(2rem, 3.5vw, 3.65rem);
  line-height: 1.1;
  letter-spacing: 0;
}

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

.lead {
  max-width: 720px;
  color: color-mix(in srgb, currentColor 88%, transparent);
  font-size: clamp(1rem, 1.7vw, 1.25rem);
  line-height: 1.7;
  overflow-wrap: break-word;
  word-break: break-word;
}

.hero .lead {
  color: #e8f2ff;
}

.hero-actions,
.split-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.hero-strip {
  margin-top: 46px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid rgba(255, 255, 255, .22);
  background: rgba(255, 255, 255, .09);
  backdrop-filter: blur(14px);
}

.stat {
  min-height: 94px;
  padding: 18px;
  border-right: 1px solid rgba(255, 255, 255, .18);
}

.stat:last-child {
  border-right: 0;
}

.stat strong {
  display: block;
  font-size: 1.65rem;
}

.stat span {
  color: #cfe0f8;
  font-size: .82rem;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, .98fr);
  gap: 42px;
  align-items: center;
}

.split > *,
.grid > *,
.journey > *,
.app-showcase > *,
.phone-row > *,
.page-hero-inner > *,
.listing-grid > *,
.contact-panel > *,
.footer-grid > * {
  min-width: 0;
}

.media-frame {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow);
  transform: translateZ(0);
  transition: transform .45s ease, box-shadow .45s ease;
}

.media-frame img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  transition: transform .7s ease;
}

.media-frame:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 62px rgba(0, 38, 136, .22);
}

.media-frame:hover img {
  transform: scale(1.035);
}

.section-kicker {
  color: color-mix(in srgb, var(--blue) 88%, var(--ink));
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
}

[data-theme="dark"] .section-kicker {
  color: #69a0ff;
}

.muted {
  color: var(--muted);
  line-height: 1.75;
}

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

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

.card {
  min-height: 100%;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: 0 8px 24px rgba(17, 24, 39, .05);
  transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease;
}

.card:hover,
.listing:hover,
.journey-item:hover {
  transform: translateY(-5px);
  border-color: color-mix(in srgb, var(--blue) 36%, var(--line));
  box-shadow: 0 22px 46px rgba(0, 72, 255, .14);
}

.card .icon {
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--navy));
}

.card p,
.feature-list li,
.steps li {
  color: color-mix(in srgb, var(--muted) 92%, var(--ink));
  line-height: 1.65;
}

.feature-list,
.steps {
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
  display: grid;
  gap: 12px;
}

.feature-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.feature-list i {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  color: var(--green);
}

.band {
  background:
    radial-gradient(circle at 20% 20%, color-mix(in srgb, var(--cyan) 14%, transparent), transparent 34%),
    linear-gradient(135deg, var(--navy), #07111f);
  color: #fff;
}

.band .section-kicker {
  color: #76a7ff;
}

.band .muted {
  color: #d9e6ff;
}

.journey {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, .18);
  border: 1px solid rgba(255, 255, 255, .22);
}

.journey-item {
  padding: 24px;
  background: rgba(7, 17, 31, .76);
  color: #fff;
  transition: transform .35s ease, box-shadow .35s ease;
  backdrop-filter: blur(10px);
}

.journey-item b {
  display: inline-grid;
  width: 36px;
  height: 36px;
  place-items: center;
  margin-bottom: 16px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
}

.journey-item h3 {
  color: #fff;
}

.journey-item .muted {
  color: #d9e6ff;
}

.app-showcase {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 28px;
  align-items: center;
}

.phone-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.phone-shot {
  overflow: hidden;
  border: 8px solid color-mix(in srgb, var(--ink) 90%, transparent);
  border-radius: 26px;
  background: #fff;
  box-shadow: var(--shadow);
  animation: floatPhone 6s ease-in-out infinite;
}

.phone-shot:nth-child(2) {
  animation-delay: .8s;
}

.phone-shot:nth-child(3) {
  animation-delay: 1.6s;
}

.phone-shot img {
  width: 100%;
  aspect-ratio: 9 / 18;
  object-fit: cover;
}

.page-hero {
  padding: 86px 0 42px;
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--blue) 16%, transparent), transparent 42%),
    var(--panel);
  border-bottom: 1px solid var(--line);
}

.page-hero-inner {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 470px);
  gap: 36px;
  align-items: center;
}

.page-hero .media-frame img {
  min-height: 290px;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.tag {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 12px;
  background: var(--panel);
  color: var(--muted);
  font-size: .82rem;
  font-weight: 700;
}

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

.listing {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow);
  transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease;
}

.listing img {
  width: 100%;
  aspect-ratio: 1.35 / 1;
  object-fit: cover;
}

.listing-body {
  padding: 20px;
}

.pill {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--blue) 10%, transparent);
  color: var(--blue);
  font-size: .75rem;
  font-weight: 800;
}

.contact-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.site-footer {
  padding: 52px 0 28px;
  background: #050b16;
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr repeat(3, 1fr);
  gap: 28px;
}

.footer-logo {
  width: 52px;
  height: 52px;
  border-radius: var(--radius);
  margin-bottom: 16px;
}

.site-footer p,
.site-footer a {
  color: #b9c5d8;
}

.site-footer h3 {
  color: #fff;
  font-size: .95rem;
}

.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 9px;
}

.subfooter {
  margin-top: 36px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, .14);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: #8fa0bb;
  font-size: .86rem;
}

.qr-band {
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--blue) 12%, transparent), transparent 38%),
    var(--panel);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.qr-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
  gap: 36px;
  align-items: center;
}

.qr-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: #111827;
  box-shadow: var(--shadow);
  text-align: center;
  animation: qrGlow 3.8s ease-in-out infinite;
}

.qr-card img {
  width: min(240px, 100%);
  margin: 0 auto 14px;
}

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

.qr-card span {
  color: #5d6675;
  font-size: .86rem;
}

.three-section {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  display: grid;
  align-items: end;
  isolation: isolate;
  background:
    radial-gradient(circle at 75% 22%, rgba(121, 232, 255, .22), transparent 28%),
    radial-gradient(circle at 18% 72%, rgba(10, 204, 0, .12), transparent 24%),
    linear-gradient(135deg, #061226, #002688 58%, #030817);
  color: #fff;
}

.three-section canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.three-section::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(3, 8, 23, .66), rgba(3, 8, 23, .08) 58%, rgba(3, 8, 23, .42)),
    linear-gradient(0deg, rgba(3, 8, 23, .62), transparent 46%);
}

.three-content {
  padding: 92px 0;
}

.three-content h2,
.three-content p {
  max-width: min(660px, calc(100vw - 32px));
}

.three-content p {
  color: #e0ebff;
  font-size: 1.12rem;
  line-height: 1.75;
}

.three-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
  max-width: min(660px, calc(100vw - 32px));
}

.three-points span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 999px;
  background: rgba(255, 255, 255, .08);
  color: #fff;
  font-weight: 800;
  font-size: .86rem;
  backdrop-filter: blur(10px);
}

.faq-wrap {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
  gap: 32px;
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: 0 8px 24px rgba(17, 24, 39, .05);
  overflow: hidden;
}

.faq-item summary {
  min-height: 60px;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  cursor: pointer;
  font-weight: 800;
}

.faq-item summary::after {
  content: "+";
  color: var(--blue);
  font-size: 1.35rem;
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-item p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--muted);
  line-height: 1.7;
}

.legal-wrap {
  max-width: 820px;
}

.legal-effective {
  margin-top: 6px;
}

.legal-body {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.legal-block {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: 0 8px 24px rgba(17, 24, 39, .05);
  padding: 22px 24px;
}

.legal-block h3 {
  margin: 0 0 10px;
  font-weight: 800;
}

.legal-block p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.reveal,
.reveal-item {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .75s ease, transform .75s ease;
}

.reveal-item:nth-child(2) {
  transition-delay: .08s;
}

.reveal-item:nth-child(3) {
  transition-delay: .16s;
}

.reveal-item:nth-child(4) {
  transition-delay: .24s;
}

.reveal-item:nth-child(5) {
  transition-delay: .32s;
}

.reveal-item:nth-child(6) {
  transition-delay: .4s;
}

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

@keyframes heroPan {
  from {
    transform: scale(1.02) translate3d(-.6%, -.5%, 0);
  }
  to {
    transform: scale(1.08) translate3d(.8%, .6%, 0);
  }
}

@keyframes floatPhone {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-9px);
  }
}

@keyframes qrGlow {
  0%,
  100% {
    box-shadow: 0 18px 45px rgba(0, 72, 255, .12);
  }
  50% {
    box-shadow: 0 24px 64px rgba(0, 72, 255, .28);
  }
}

@media (max-width: 980px) {
  .menu-btn {
    display: inline-grid;
  }

  .nav-links {
    position: fixed;
    inset: 76px 0 auto 0;
    display: none;
    padding: 14px 16px 22px;
    background: var(--panel);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

  body.nav-open .nav-links {
    display: grid;
    gap: 4px;
  }

  .nav-links a {
    padding: 14px;
  }

  .nav-actions .btn {
    display: none;
  }

  .hero {
    min-height: 780px;
  }

  .hero-strip,
  .journey,
  .grid,
  .grid.two,
  .listing-grid,
  .footer-grid,
  .page-hero-inner,
  .app-showcase,
  .contact-panel,
  .qr-layout,
  .faq-wrap {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 680px) {
  .nav-shell,
  .wrap,
  .hero-content {
    width: min(100% - 24px, var(--max));
  }

  .brand small {
    display: none;
  }

  .section {
    padding: 56px 0;
  }

  h1 {
    font-size: 2.22rem;
    line-height: 1.08;
    max-width: min(330px, calc(100vw - 32px));
  }

  h2 {
    font-size: 1.78rem;
    line-height: 1.12;
    max-width: min(340px, calc(100vw - 32px));
  }

  .lead {
    max-width: min(340px, calc(100vw - 32px));
    font-size: 1rem;
  }

  .hero-actions,
  .split-actions {
    display: grid;
    grid-template-columns: 1fr;
    max-width: min(340px, calc(100vw - 24px));
  }

  .btn {
    width: 100%;
    max-width: 100%;
    white-space: normal;
    line-height: 1.25;
  }

  .tag-row {
    max-width: min(340px, calc(100vw - 32px));
    display: grid;
    grid-template-columns: repeat(2, minmax(0, max-content));
  }

  .tag {
    padding: 8px 10px;
    font-size: .78rem;
  }

  .hero {
    min-height: 730px;
  }

  .hero-content {
    padding-bottom: 34px;
  }

  .hero-strip,
  .journey,
  .grid,
  .grid.two,
  .listing-grid,
  .footer-grid,
  .page-hero-inner,
  .app-showcase,
  .contact-panel,
  .phone-row,
  .qr-layout,
  .faq-wrap {
    grid-template-columns: 1fr;
  }

  .stat {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .18);
  }

  .stat:last-child {
    border-bottom: 0;
  }

  .phone-row {
    max-width: 280px;
    margin: 0 auto;
  }

  .subfooter {
    display: grid;
  }

  .three-section {
    min-height: 680px;
  }

  .three-content {
    padding: 74px 0;
  }

  .three-content h2 {
    max-width: min(340px, calc(100vw - 32px));
  }

  .three-content p {
    max-width: min(340px, calc(100vw - 32px));
  }
}

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

  .reveal,
  .reveal-item {
    opacity: 1;
    transform: none;
  }
}
