:root {
  --night: #071018;
  --deep: #0c1824;
  --panel: #101c28;
  --fog: #9fb0bf;
  --paper: #eef3f6;
  --white: #f7fafb;
  --lime: #c8f54c;
  --lime-ink: #13200a;
  --cyan: #5fd0c8;
  --line: rgba(238, 243, 246, 0.12);
  --font-display: "Syne", system-ui, sans-serif;
  --font-body: "Manrope", system-ui, sans-serif;
  --space: clamp(1.1rem, 3.5vw, 2rem);
  --max: 1140px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

  .t-reveal,
  .beam,
  .signal-path,
  .pulse-dot,
  .sky {
    animation: none !important;
  }

  .t-reveal {
    opacity: 1 !important;
    filter: none !important;
    transform: none !important;
  }
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--night);
  background: var(--paper);
  line-height: 1.55;
  overflow-x: hidden;
}

.noise {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 50;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

a {
  color: inherit;
}

.wrap {
  width: min(100% - 2 * var(--space), var(--max));
  margin-inline: auto;
}

.top {
  position: absolute;
  inset: 0 0 auto;
  z-index: 5;
  padding: 1.25rem 0;
}

.top-inner,
.footer-row,
.connect,
.strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: -0.03em;
  text-decoration: none;
  color: var(--white);
}

.nav {
  display: flex;
  gap: 1.1rem;
  align-items: center;
}

.nav a {
  text-decoration: none;
  color: rgba(247, 250, 251, 0.72);
  font-size: 0.92rem;
  font-weight: 500;
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--white);
}

.nav-bot {
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  box-shadow: inset 0 0 0 1px rgba(247, 250, 251, 0.28);
}

.hero {
  position: relative;
  min-height: 100svh;
  color: var(--white);
  display: grid;
  align-items: end;
  padding: 7.5rem 0 4.5rem;
  isolation: isolate;
}

.hero-stage {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  background: #050b12;
}

.sky {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 480px at 18% 20%, rgba(95, 208, 200, 0.18), transparent 60%),
    radial-gradient(700px 420px at 78% 30%, rgba(200, 245, 76, 0.12), transparent 55%),
    linear-gradient(180deg, #050b12 0%, #0a1622 45%, #122233 100%);
  animation: sky-shift 14s var(--ease) infinite alternate;
}

@keyframes sky-shift {
  from {
    filter: saturate(1);
    transform: scale(1);
  }
  to {
    filter: saturate(1.15);
    transform: scale(1.03);
  }
}

.beam {
  position: absolute;
  width: 55%;
  height: 40%;
  filter: blur(40px);
  opacity: 0.55;
  border-radius: 50%;
}

.beam-a {
  top: 12%;
  left: -8%;
  background: rgba(95, 208, 200, 0.35);
  animation: float-a 9s ease-in-out infinite alternate;
}

.beam-b {
  top: 18%;
  right: -12%;
  background: rgba(200, 245, 76, 0.2);
  animation: float-b 11s ease-in-out infinite alternate;
}

@keyframes float-a {
  from {
    transform: translate(0, 0);
  }
  to {
    transform: translate(6%, 8%);
  }
}

@keyframes float-b {
  from {
    transform: translate(0, 0);
  }
  to {
    transform: translate(-8%, 5%);
  }
}

.horizon {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 38%;
  background: linear-gradient(
    180deg,
    transparent,
    rgba(5, 11, 18, 0.35) 30%,
    rgba(5, 11, 18, 0.92)
  );
}

.signal {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 18%;
  width: 100%;
  height: 180px;
  color: rgba(200, 245, 76, 0.55);
}

.signal-path {
  stroke-dasharray: 1400;
  stroke-dashoffset: 1400;
  animation: draw-line 2.8s var(--ease) 0.3s forwards;
}

@keyframes draw-line {
  to {
    stroke-dashoffset: 0;
  }
}

.hero-content {
  position: relative;
  max-width: 860px;
}

.brand-giant {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(4.2rem, 14vw, 8.5rem);
  line-height: 0.86;
  letter-spacing: -0.06em;
  color: var(--white);
  text-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

.hero h1 {
  margin: 0 0 1.1rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.7rem, 4.2vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
  max-width: 14ch;
}

.lead {
  margin: 0 0 1.6rem;
  max-width: 38ch;
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  color: rgba(238, 243, 246, 0.78);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.btn {
  appearance: none;
  border: 0;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.1rem;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition:
    transform 0.2s var(--ease),
    background 0.2s var(--ease),
    color 0.2s var(--ease),
    box-shadow 0.2s var(--ease);
}

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

.btn:focus-visible {
  outline: 2px solid var(--lime);
  outline-offset: 3px;
}

.btn-lime {
  background: var(--lime);
  color: var(--lime-ink);
  box-shadow: 0 12px 40px rgba(200, 245, 76, 0.25);
}

.btn-lime:hover {
  background: #d6ff6d;
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  box-shadow: inset 0 0 0 1.5px rgba(247, 250, 251, 0.45);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.06);
}

.btn-dark {
  background: var(--night);
  color: var(--white);
}

.btn-dark:hover {
  background: #12202e;
}

.btn-line {
  background: transparent;
  color: var(--white);
  box-shadow: inset 0 0 0 1.5px rgba(247, 250, 251, 0.35);
}

.meta-line {
  margin: 0;
  font-size: 0.88rem;
  color: rgba(238, 243, 246, 0.55);
  letter-spacing: 0.01em;
}

.t-reveal {
  opacity: 0;
  filter: blur(8px);
  transform: translateY(18px);
  animation: reveal 0.9s var(--ease) forwards;
}

.t-delay-1 {
  animation-delay: 0.12s;
}
.t-delay-2 {
  animation-delay: 0.22s;
}
.t-delay-3 {
  animation-delay: 0.34s;
}
.t-delay-4 {
  animation-delay: 0.46s;
}

@keyframes reveal {
  to {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
  }
}

.strip {
  background: var(--lime);
  color: var(--lime-ink);
  padding: 1.1rem 0;
}

.strip-inner {
  justify-content: flex-start;
  gap: 0.85rem;
}

.strip p {
  margin: 0;
  font-size: 1rem;
  font-weight: 500;
}

.pulse-dot {
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  background: var(--night);
  box-shadow: 0 0 0 0 rgba(7, 16, 24, 0.45);
  animation: pulse 1.8s ease-out infinite;
  flex: 0 0 auto;
}

@keyframes pulse {
  70% {
    box-shadow: 0 0 0 12px transparent;
  }
  100% {
    box-shadow: 0 0 0 0 transparent;
  }
}

.section {
  padding: clamp(3.5rem, 8vw, 6rem) 0;
}

.section-dark {
  background: var(--night);
  color: var(--white);
}

.section-soft {
  background: rgba(255, 255, 255, 0.45);
}

.apps-lead {
  margin-top: 0.9rem;
  color: #4d6574;
  max-width: 46ch;
}

.apps-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 860px) {
  .apps-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.app-card {
  background: #fff;
  border: 1px solid rgba(7, 16, 24, 0.08);
  border-radius: 22px;
  padding: 1.35rem 1.3rem 1.3rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  min-height: 100%;
}

.app-os {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #5a7384;
}

.app-card h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: -0.03em;
}

.app-card p {
  margin: 0;
  color: #4d6574;
  flex: 1;
}

.app-card .btn {
  width: 100%;
  margin-top: 0.35rem;
}

.app-card code {
  font-size: 0.85em;
  color: var(--fjord-deep);
}

.section-head {
  max-width: 640px;
  margin-bottom: 2.4rem;
}

.section-head h2,
.connect h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 750;
  font-size: clamp(1.9rem, 4vw, 3rem);
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.eyebrow {
  margin: 0 0 0.65rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #5a7384;
}

.section-head.light .eyebrow {
  color: var(--cyan);
}

.section-lead {
  margin: 0.9rem 0 0;
  color: rgba(238, 243, 246, 0.68);
  max-width: 42ch;
}

.promise-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 860px) {
  .promise-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

.promise {
  padding: 1.5rem 0 0;
  border-top: 1px solid rgba(7, 16, 24, 0.12);
}

.promise-n {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: #7a93a3;
  margin-bottom: 0.85rem;
}

.promise h3 {
  margin: 0 0 0.55rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: -0.03em;
}

.promise p {
  margin: 0;
  color: #4d6574;
}

.buy-box {
  max-width: 480px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(200, 245, 76, 0.28);
  border-radius: 28px;
  padding: clamp(1.4rem, 4vw, 2rem);
}

.buy-price {
  display: flex;
  align-items: baseline;
  gap: 0.55rem;
  margin-bottom: 1.4rem;
}

.buy-price-num {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1;
  color: var(--lime);
}

.buy-price-unit {
  color: rgba(238, 243, 246, 0.62);
  font-weight: 600;
}

.buy-label {
  display: block;
  margin-bottom: 0.65rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(238, 243, 246, 0.7);
}

.months-row {
  display: grid;
  grid-template-columns: 3.2rem 1fr 3.2rem;
  gap: 0.55rem;
  margin-bottom: 0.85rem;
}

.months-btn,
#months {
  min-height: 3.2rem;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
  font: inherit;
  font-weight: 700;
}

.months-btn {
  cursor: pointer;
  font-size: 1.4rem;
  transition: background 0.2s var(--ease), border-color 0.2s var(--ease);
}

.months-btn:hover,
.months-chips button:hover {
  border-color: rgba(200, 245, 76, 0.45);
  background: rgba(200, 245, 76, 0.08);
}

#months {
  text-align: center;
  font-size: 1.35rem;
  font-family: var(--font-display);
  letter-spacing: -0.03em;
  -moz-appearance: textfield;
}

#months::-webkit-outer-spin-button,
#months::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.months-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.months-chips button {
  min-width: 3rem;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: transparent;
  color: rgba(238, 243, 246, 0.8);
  font: inherit;
  font-weight: 600;
  cursor: pointer;
}

.months-chips button.is-active {
  background: var(--lime);
  color: var(--lime-ink);
  border-color: var(--lime);
}

.buy-total {
  margin: 0 0 1.25rem;
  font-size: 1.05rem;
  color: rgba(238, 243, 246, 0.72);
}

.buy-total strong {
  color: var(--white);
  font-size: 1.35rem;
  font-weight: 800;
}

.buy-total span {
  display: inline-block;
  margin-left: 0.35rem;
  color: rgba(238, 243, 246, 0.5);
}

.buy-actions {
  display: grid;
  gap: 0.65rem;
}

.buy-actions .btn {
  width: 100%;
}

.pay-note {
  margin: 1.1rem 0 0;
  color: rgba(238, 243, 246, 0.55);
  font-size: 0.92rem;
}

.connect {
  align-items: flex-start;
  gap: 2rem;
  flex-wrap: wrap;
}

.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
  flex: 1;
  min-width: min(100%, 360px);
}

.steps li {
  display: grid;
  gap: 0.15rem;
  padding: 1rem 0;
  border-top: 1px solid rgba(7, 16, 24, 0.12);
}

.steps strong {
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: -0.02em;
}

.steps span {
  color: #4d6574;
}

.site-footer {
  background: #050b12;
  color: rgba(238, 243, 246, 0.62);
  padding: 2.2rem 0 2.6rem;
}

.site-footer .logo {
  margin-bottom: 0.35rem;
}

.site-footer p {
  margin: 0;
  font-size: 0.92rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.15rem;
}

.footer-links a {
  color: rgba(238, 243, 246, 0.62);
  text-decoration: none;
  font-size: 0.92rem;
}

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

.toast {
  position: fixed;
  left: 50%;
  bottom: 1.25rem;
  transform: translateX(-50%) translateY(140%);
  background: var(--night);
  color: var(--white);
  padding: 0.9rem 1.15rem;
  border-radius: 14px;
  font-size: 0.95rem;
  max-width: min(92vw, 420px);
  z-index: 60;
  transition: transform 0.28s var(--ease);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

.toast.show {
  transform: translateX(-50%) translateY(0);
}

.legal,
.status-page {
  min-height: 70vh;
}

.legal {
  padding: 2rem 0 4rem;
  max-width: 720px;
}

.legal h1,
.status-page h1 {
  font-family: var(--font-display);
  letter-spacing: -0.04em;
}

.status-page {
  display: grid;
  place-content: center;
  text-align: center;
  gap: 1rem;
  padding: 3rem var(--space);
  background: var(--night);
  color: var(--white);
}

.status-page p {
  color: rgba(238, 243, 246, 0.68);
  margin: 0;
}

@media (max-width: 640px) {
  .nav a:not(.nav-bot) {
    display: none;
  }

  .hero {
    align-items: center;
    padding-top: 6.5rem;
  }

  .hero h1 {
    max-width: none;
  }

  .connect {
    flex-direction: column;
  }
}
