:root {
  --bg: #061524;
  --bg-soft: #0a1d31;
  --card: rgba(13, 36, 58, 0.74);
  --card-strong: #0e2944;
  --line: rgba(132, 224, 255, 0.15);
  --cyan: #32d5ff;
  --cyan-2: #0aa9ff;
  --blue: #2969ff;
  --text: #f5fbff;
  --muted: #9fb5c7;
  --success: #35e8a4;
  --radius: 24px;
  --shadow: 0 28px 90px rgba(0, 0, 0, .38);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px),
    var(--bg);
  background-size: 48px 48px;
  color: var(--text);
  font-family: "Manrope", sans-serif;
}

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

button, input {
  font: inherit;
}

button {
  color: inherit;
}

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

.page-glow {
  position: fixed;
  pointer-events: none;
  filter: blur(100px);
  border-radius: 999px;
  opacity: .26;
  z-index: -1;
}

.page-glow-one {
  width: 420px;
  height: 420px;
  top: -80px;
  right: -120px;
  background: var(--cyan);
  animation: drift 12s ease-in-out infinite alternate;
}

.page-glow-two {
  width: 360px;
  height: 360px;
  left: -140px;
  top: 45%;
  background: var(--blue);
  animation: drift 15s ease-in-out infinite alternate-reverse;
}

.site-header {
  position: fixed;
  inset: 20px 50% auto auto;
  transform: translateX(50%);
  width: min(1180px, calc(100% - 32px));
  height: 72px;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 0 18px 0 24px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(5, 20, 34, .74);
  backdrop-filter: blur(18px);
  box-shadow: 0 15px 45px rgba(0,0,0,.24);
}

.wordmark {
  font-family: "Sora", sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -.05em;
}

.wordmark span {
  background: linear-gradient(135deg, #7cecff, var(--cyan), var(--blue));
  -webkit-background-clip: text;
  color: transparent;
}

.desktop-nav {
  display: flex;
  gap: 30px;
  color: var(--muted);
  font-size: .93rem;
  font-weight: 700;
}

.desktop-nav a {
  transition: .25s ease;
}

.desktop-nav a:hover {
  color: var(--text);
}

.header-cta {
  padding: 12px 18px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  color: #00111d;
  font-weight: 800;
  box-shadow: 0 10px 28px rgba(32, 187, 255, .25);
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 12px;
  background: rgba(255,255,255,.05);
}

.menu-button span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: white;
}

.mobile-menu {
  position: fixed;
  top: 100px;
  left: 16px;
  right: 16px;
  z-index: 99;
  display: grid;
  gap: 8px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(5, 20, 34, .97);
  backdrop-filter: blur(18px);
  opacity: 0;
  transform: translateY(-15px);
  pointer-events: none;
  transition: .25s ease;
}

.mobile-menu.open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.mobile-menu a {
  padding: 13px 12px;
  border-radius: 12px;
  color: var(--muted);
  font-weight: 700;
}

.section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 110px 0;
}

.hero {
  min-height: 100vh;
  padding-top: 155px;
  display: grid;
  grid-template-columns: 1.03fr .97fr;
  align-items: center;
  gap: 64px;
}

.eyebrow, .section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #aeefff;
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.eyebrow {
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(37, 185, 255, .06);
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 6px rgba(53,232,164,.12), 0 0 16px rgba(53,232,164,.8);
  animation: pulse 2s infinite;
}

h1, h2, h3 {
  font-family: "Sora", sans-serif;
  margin: 0;
}

.hero h1 {
  max-width: 760px;
  margin-top: 25px;
  font-size: clamp(3rem, 7vw, 6.4rem);
  line-height: .97;
  letter-spacing: -.075em;
}

.hero h1 span {
  display: block;
  margin-top: 10px;
  background: linear-gradient(135deg, #ffffff 10%, #92eafa 48%, #4aa5ff 95%);
  -webkit-background-clip: text;
  color: transparent;
}

.hero-description {
  max-width: 650px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.8;
}

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

.button {
  position: relative;
  overflow: hidden;
  min-width: 175px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 16px 22px;
  border-radius: 14px;
  font-weight: 800;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.button::before {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-120%);
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.34), transparent);
  transition: transform .55s ease;
}

.button:hover::before {
  transform: translateX(120%);
}

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

.button-primary {
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  color: #001321;
  box-shadow: 0 16px 38px rgba(27, 166, 255, .27);
}

.button-primary:hover {
  box-shadow: 0 22px 52px rgba(27, 166, 255, .4);
}

.button-secondary {
  border: 1px solid rgba(98, 220, 255, .3);
  background: rgba(10, 35, 57, .75);
  color: var(--text);
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 46px;
}

.trust-row div {
  padding: 17px 18px;
  border-top: 1px solid var(--line);
}

.trust-row strong {
  display: block;
  font-family: "Sora", sans-serif;
  font-size: 1.45rem;
}

.trust-row span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: .78rem;
}

.hero-visual {
  position: relative;
  min-height: 640px;
  isolation: isolate;
}

.hero-panel {
  position: absolute;
  inset: 105px 28px 90px 45px;
  z-index: -1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 40px;
  border: 1px solid rgba(111, 224, 255, .18);
  border-radius: 38px;
  background:
    linear-gradient(145deg, rgba(16, 56, 87, .86), rgba(7, 23, 39, .9)),
    radial-gradient(circle at 20% 15%, rgba(45, 210, 255, .18), transparent 36%);
  box-shadow: var(--shadow);
  transform: rotate(1deg);
}

.panel-label {
  color: var(--cyan);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .16em;
}

.hero-panel h2 {
  max-width: 390px;
  margin-top: 8px;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.02;
  letter-spacing: -.05em;
}

.hero-panel p {
  max-width: 420px;
  color: var(--muted);
}

.panel-line {
  height: 1px;
  margin: 22px 0 18px;
  background: linear-gradient(90deg, var(--cyan), transparent);
}

.panel-status {
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: .84rem;
}

.panel-status span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.panel-status i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--success);
}

.asset-card {
  position: absolute;
  z-index: 2;
  width: 230px;
  padding: 18px;
  display: flex;
  align-items: center;
  gap: 16px;
  border: 1px solid rgba(135, 227, 255, .2);
  border-radius: 22px;
  background: rgba(7, 26, 44, .84);
  backdrop-filter: blur(16px);
  box-shadow: 0 25px 55px rgba(0,0,0,.36);
}

.asset-card-dl {
  top: 30px;
  right: 30px;
  animation: floatOne 5s ease-in-out infinite;
}

.asset-card-bgl {
  bottom: 42px;
  left: 0;
  animation: floatTwo 6s ease-in-out infinite;
}

.asset-image-wrap {
  width: 82px;
  height: 82px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  padding: 6px;
  border-radius: 16px;
  background: radial-gradient(circle, rgba(64, 212, 255, .2), transparent 66%);
}

.asset-image-wrap img {
  max-height: 76px;
  object-fit: contain;
  image-rendering: pixelated;
}

.asset-card small {
  color: var(--cyan);
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .13em;
}

.asset-card strong {
  display: block;
  margin: 4px 0;
  font-size: .94rem;
}

.asset-card span {
  color: var(--muted);
  font-size: .78rem;
}

.orbit {
  position: absolute;
  border: 1px dashed rgba(53, 211, 255, .13);
  border-radius: 50%;
}

.orbit-one {
  width: 410px;
  height: 410px;
  top: 80px;
  right: 55px;
  animation: spin 26s linear infinite;
}

.orbit-two {
  width: 280px;
  height: 280px;
  top: 145px;
  right: 120px;
  animation: spin 18s linear infinite reverse;
}

.section-heading {
  max-width: 780px;
}

.section-heading.compact {
  max-width: 620px;
}

.section-heading h2,
.benefits-copy h2,
.final-cta h2 {
  margin-top: 12px;
  font-size: clamp(2rem, 4.5vw, 4rem);
  line-height: 1.05;
  letter-spacing: -.055em;
}

.section-heading p,
.benefits-copy > p,
.final-cta p,
.payment-panel p {
  color: var(--muted);
  line-height: 1.8;
}

.mini-highlights,
.steps-grid {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.mini-highlights article,
.step-card {
  position: relative;
  overflow: hidden;
  min-height: 230px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(16, 48, 75, .65), rgba(8, 25, 42, .84));
  transition: .3s ease;
}

.mini-highlights article:hover,
.step-card:hover {
  transform: translateY(-7px);
  border-color: rgba(69, 217, 255, .38);
  box-shadow: 0 22px 50px rgba(0,0,0,.22);
}

.mini-highlights article span {
  color: var(--cyan);
  font-family: "Sora";
  font-size: .8rem;
  letter-spacing: .15em;
}

.mini-highlights h3,
.step-card h3,
.payment-panel h3 {
  margin-top: 34px;
  font-size: 1.35rem;
}

.mini-highlights p,
.step-card p {
  color: var(--muted);
  line-height: 1.7;
}

.step-number {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(51, 214, 255, .18), rgba(41,105,255,.18));
  color: var(--cyan);
  font-family: "Sora";
  font-weight: 800;
}

.benefits {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 32px;
  align-items: stretch;
}

.benefits-copy,
.payment-panel {
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: rgba(10, 31, 51, .64);
  backdrop-filter: blur(12px);
}

.benefit-list {
  display: grid;
  gap: 14px;
  margin-top: 34px;
}

.benefit-list > div {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.benefit-list > div > span {
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(53,232,164,.12);
  color: var(--success);
}

.benefit-list p {
  margin: 0;
}

.benefit-list strong,
.benefit-list small {
  display: block;
}

.benefit-list small {
  margin-top: 5px;
  color: var(--muted);
}

.payment-panel {
  background:
    radial-gradient(circle at 78% 16%, rgba(53, 213, 255, .15), transparent 30%),
    linear-gradient(145deg, rgba(14, 48, 76, .85), rgba(7, 24, 41, .92));
}

.payment-panel h3 {
  font-size: 2rem;
}

.payment-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.payment-cloud span {
  padding: 11px 14px;
  border: 1px solid rgba(116, 224, 255, .16);
  border-radius: 999px;
  background: rgba(255,255,255,.035);
  color: #dff9ff;
  font-size: .86rem;
  font-weight: 800;
  animation: chipFloat 4s ease-in-out infinite alternate;
}

.payment-cloud span:nth-child(2n) { animation-delay: .4s; }
.payment-cloud span:nth-child(3n) { animation-delay: .8s; }

.faq-list {
  max-width: 860px;
  margin-top: 45px;
  display: grid;
  gap: 12px;
}

details {
  padding: 20px 22px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(9, 29, 48, .72);
}

summary {
  cursor: pointer;
  list-style: none;
  font-weight: 800;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  float: right;
  color: var(--cyan);
  font-size: 1.3rem;
}

details[open] summary::after {
  content: "−";
}

details p {
  margin: 15px 0 0;
  color: var(--muted);
  line-height: 1.75;
}

.final-cta {
  margin-bottom: 70px;
  padding: 55px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  border: 1px solid rgba(109, 226, 255, .2);
  border-radius: 34px;
  background:
    radial-gradient(circle at 85% 20%, rgba(48, 208, 255, .2), transparent 35%),
    linear-gradient(135deg, #0c2b46, #081a2d);
  box-shadow: var(--shadow);
}

.final-cta .hero-actions {
  margin: 0;
}

footer {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 42px 0 24px;
  border-top: 1px solid var(--line);
}

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

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0;
}

.footer-links a,
.footer-links button {
  padding: 10px 13px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
}

.footer-bottom {
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid rgba(255,255,255,.06);
  color: #6f879a;
  font-size: .84rem;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  z-index: 200;
  transform: translate(-50%, 20px);
  padding: 11px 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #0e2c47;
  opacity: 0;
  pointer-events: none;
  transition: .25s ease;
}

.toast.show {
  opacity: 1;
  transform: translate(-50%, 0);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s ease, transform .8s cubic-bezier(.2,.8,.2,1);
}

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

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(.82); opacity: .6; }
}

@keyframes drift {
  from { transform: translate3d(0,0,0) scale(1); }
  to { transform: translate3d(55px,35px,0) scale(1.08); }
}

@keyframes floatOne {
  0%, 100% { transform: translateY(0) rotate(1deg); }
  50% { transform: translateY(-18px) rotate(-1deg); }
}

@keyframes floatTwo {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(17px) rotate(1deg); }
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes chipFloat {
  from { transform: translateY(0); }
  to { transform: translateY(-4px); }
}

@media (max-width: 980px) {
  .desktop-nav,
  .header-cta {
    display: none;
  }

  .menu-button {
    display: block;
  }

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

  .hero {
    padding-top: 145px;
  }

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

  .mini-highlights,
  .steps-grid {
    grid-template-columns: 1fr;
  }

  .final-cta {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .site-header {
    height: 64px;
    top: 12px;
  }

  .section {
    padding: 80px 0;
  }

  .hero {
    padding-top: 118px;
    gap: 30px;
  }

  .hero h1 {
    font-size: clamp(2.75rem, 16vw, 4.5rem);
  }

  .hero-description {
    font-size: .98rem;
  }

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

  .button {
    width: 100%;
  }

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

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

  .hero-panel {
    inset: 95px 0 50px 0;
    padding: 26px;
    border-radius: 28px;
  }

  .asset-card {
    width: 190px;
    padding: 13px;
  }

  .asset-card-dl {
    top: 25px;
    right: -10px;
  }

  .asset-card-bgl {
    bottom: 8px;
    left: -4px;
  }

  .asset-image-wrap {
    width: 64px;
    height: 64px;
  }

  .orbit-one {
    width: 300px;
    height: 300px;
    right: 10px;
  }

  .orbit-two {
    width: 220px;
    height: 220px;
    right: 50px;
  }

  .benefits-copy,
  .payment-panel,
  .final-cta {
    padding: 28px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
  }
}

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

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


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

.language-switcher,
.mobile-language {
  display: inline-flex;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255,255,255,.035);
}

.lang-btn {
  min-width: 40px;
  padding: 8px 10px;
  border: 0;
  border-radius: 9px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: .78rem;
  font-weight: 800;
  transition: .2s ease;
}

.lang-btn.active {
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  color: #00111d;
  box-shadow: 0 8px 22px rgba(25, 180, 255, .2);
}

.mobile-language {
  margin-top: 8px;
  align-self: flex-start;
}

@media (max-width: 980px) {
  .header-actions {
    display: none;
  }
}
