:root {
  --bg: #07180f;
  --bg-soft: #0e2f1d;
  --panel: rgba(255, 255, 255, 0.075);
  --panel-strong: rgba(255, 255, 255, 0.11);
  --border: rgba(255, 255, 255, 0.14);
  --white: #ffffff;
  --muted: rgba(255, 255, 255, 0.67);
  --lime: #d9f22a;
  --lime-bright: #f3ff63;
  --deep-green: #12351f;
  --shadow: 0 32px 90px rgba(0, 0, 0, 0.4);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  color: var(--white);
  background:
    radial-gradient(circle at 14% 10%, rgba(217, 242, 42, 0.12), transparent 28rem),
    radial-gradient(circle at 86% 16%, rgba(56, 176, 101, 0.16), transparent 28rem),
    linear-gradient(145deg, var(--bg), var(--bg-soft));
}

button,
input {
  font: inherit;
}

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

.page-grid {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.024) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.024) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, black, transparent 88%);
}

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

.site-header {
  position: relative;
  z-index: 10;
  min-height: 98px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand img {
  display: block;
  width: 205px;
  height: 80px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

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

.nav-link {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 700;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: var(--deep-green);
  background: linear-gradient(135deg, var(--lime-bright), var(--lime));
  border-radius: 999px;
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(217, 242, 42, 0.18);
}

.button-small {
  padding: 12px 18px;
  font-size: 0.9rem;
}

.hero {
  min-height: calc(100vh - 98px);
  display: grid;
  grid-template-columns: 1.06fr 0.94fr;
  align-items: center;
  gap: 68px;
  padding: 42px 0 86px;
}

.hero-copy {
  position: relative;
  z-index: 3;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  border-radius: 999px;
  border: 1px solid rgba(217, 242, 42, 0.28);
  background: rgba(217, 242, 42, 0.08);
  color: var(--lime-bright);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 0 rgba(217, 242, 42, 0.5);
  animation: pulse 2s infinite;
}

h1 {
  margin: 26px 0 22px;
  max-width: 760px;
  font-size: clamp(3.2rem, 6vw, 6rem);
  line-height: 0.95;
  letter-spacing: -0.065em;
}

h1 span {
  background: linear-gradient(90deg, #ffffff, var(--lime-bright));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lead {
  max-width: 640px;
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 1.16rem;
  line-height: 1.72;
}

.feature-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.feature-pills span {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.82rem;
  font-weight: 700;
}

.waitlist-form {
  display: flex;
  gap: 10px;
  max-width: 560px;
  padding: 8px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.065);
  backdrop-filter: blur(18px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
}

.waitlist-form input {
  flex: 1;
  min-width: 0;
  padding: 13px 14px;
  border: 0;
  outline: 0;
  color: var(--white);
  background: transparent;
  font-size: 1rem;
}

.waitlist-form input::placeholder {
  color: rgba(255, 255, 255, 0.42);
}

.waitlist-form button {
  border: 0;
  border-radius: 12px;
  padding: 14px 22px;
  cursor: pointer;
  background: linear-gradient(135deg, var(--lime-bright), var(--lime));
  color: var(--deep-green);
  font-weight: 900;
}

.form-note,
.form-message {
  font-size: 0.8rem;
}

.form-note {
  margin: 3px 0 0;
  color: rgba(255, 255, 255, 0.48);
}

.form-message {
  min-height: 18px;
  margin: 8px 0 0;
  color: var(--lime-bright);
}

.hero-visual {
  position: relative;
  min-height: 620px;
  display: grid;
  place-items: center;
}

.orbit {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.085);
}

.orbit-one {
  width: 520px;
  height: 520px;
  animation: spin 24s linear infinite;
}

.orbit-two {
  width: 410px;
  height: 410px;
  animation: spinReverse 18s linear infinite;
}

.orbit-one::before,
.orbit-two::before {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 24px rgba(217, 242, 42, 0.8);
}

.orbit-one::before {
  width: 10px;
  height: 10px;
  top: 58px;
  left: 72px;
}

.orbit-two::before {
  width: 7px;
  height: 7px;
  right: 32px;
  bottom: 88px;
}

.checkout-card {
  position: relative;
  z-index: 3;
  width: min(470px, 92vw);
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.055));
  box-shadow: var(--shadow);
  backdrop-filter: blur(26px);
  transform: perspective(1200px) rotateY(-7deg) rotateX(3deg);
}

.checkout-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.checkout-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.checkout-brand small,
.method-copy small {
  display: block;
  color: rgba(255, 255, 255, 0.44);
}

.checkout-brand small {
  margin-top: 3px;
  font-size: 0.68rem;
}

.checkout-logo {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--lime);
  color: var(--deep-green);
  font-weight: 900;
}

.secure-badge {
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--lime-bright);
  background: rgba(217, 242, 42, 0.09);
  font-size: 0.7rem;
  font-weight: 900;
}

.checkout-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 16px;
}

.payment-panel,
.summary-panel {
  padding: 17px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.055);
}

.label {
  margin: 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.72rem;
}

.payment-panel h2 {
  margin: 7px 0 16px;
  font-size: 1.8rem;
}

.method {
  width: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 12px 0;
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  color: var(--white);
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.method-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: rgba(217, 242, 42, 0.13);
  color: var(--lime-bright);
  font-weight: 900;
}

.method-copy strong {
  font-size: 0.76rem;
}

.method-copy small {
  margin-top: 2px;
  font-size: 0.64rem;
}

.chevron {
  color: rgba(255, 255, 255, 0.6);
}

.pay-button {
  width: 100%;
  margin-top: 14px;
  padding: 14px;
  border: 0;
  border-radius: 12px;
  cursor: pointer;
  background: var(--lime);
  color: var(--deep-green);
  font-weight: 900;
}

.summary-panel h3 {
  margin: 0 0 12px;
  font-size: 0.9rem;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.72rem;
}

.summary-row strong {
  color: var(--white);
}

.success-box {
  margin-top: 14px;
  padding: 12px;
  border: 1px solid rgba(75, 210, 118, 0.2);
  border-radius: 13px;
  background: rgba(75, 210, 118, 0.1);
  color: #bfffd2;
  font-size: 0.72rem;
  line-height: 1.45;
}

.floating-card {
  position: absolute;
  z-index: 4;
  min-width: 205px;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  background: rgba(10, 43, 25, 0.78);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(16px);
}

.floating-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--lime);
  color: var(--deep-green);
  font-weight: 900;
}

.floating-card strong {
  font-size: 0.78rem;
}

.floating-card small {
  display: block;
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.5);
}

.floating-secure {
  top: 88px;
  right: -12px;
  animation: float 5s ease-in-out infinite;
}

.floating-fast {
  bottom: 92px;
  left: -18px;
  animation: float 5s ease-in-out 1.3s infinite;
}

.trust-strip {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: -8px;
  padding: 18px 0 34px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.78rem;
}

.trust-strip div {
  display: flex;
  align-items: center;
  gap: 8px;
}

.trust-strip span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lime);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 0 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.78rem;
}

.site-footer p {
  margin: 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@keyframes pulse {
  70% { box-shadow: 0 0 0 9px rgba(217, 242, 42, 0); }
  100% { box-shadow: 0 0 0 0 rgba(217, 242, 42, 0); }
}

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

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

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

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-copy {
    margin: auto;
  }

  .lead,
  .waitlist-form {
    margin-left: auto;
    margin-right: auto;
  }

  .feature-pills {
    justify-content: center;
  }

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

@media (max-width: 680px) {
  .container {
    width: min(100% - 24px, 1220px);
  }

  .site-header {
    min-height: 86px;
  }

  .brand img {
    width: 155px;
    height: 60px;
  }

  .nav-link {
    display: none;
  }

  .button-small {
    padding: 10px 14px;
    font-size: 0.78rem;
  }

  h1 {
    font-size: clamp(2.9rem, 14vw, 4.5rem);
  }

  .waitlist-form {
    flex-direction: column;
  }

  .waitlist-form button {
    width: 100%;
  }

  .checkout-card {
    padding: 16px;
    transform: none;
  }

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

  .orbit-one {
    width: 400px;
    height: 400px;
  }

  .orbit-two {
    width: 320px;
    height: 320px;
  }

  .floating-secure {
    right: -4px;
    top: 72px;
  }

  .floating-fast {
    left: -4px;
    bottom: 72px;
  }

  .site-footer {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
