:root {
  --deep-space: #0b0f1f;
  --night: #111831;
  --midnight: #171f3b;
  --glow: #f7c96b;
  --sky: #84d2ff;
  --rose: #f598b4;
  --light: #f7f4ef;
  --muted: rgba(247, 244, 239, 0.72);
  --accent: #f25b78;
  --accent-dark: #d64663;
  --card: rgba(255, 255, 255, 0.08);
  --border: rgba(247, 244, 239, 0.16);
  --shadow: 0 20px 60px rgba(6, 8, 18, 0.45);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Sora", system-ui, sans-serif;
  color: var(--light);
  background:
    linear-gradient(rgba(7, 9, 18, 0.72), rgba(7, 9, 18, 0.84)),
    url("wallpaper.jpg") center / cover fixed no-repeat;
  min-height: 100vh;
  line-height: 1.6;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 6vw;
  background: rgba(7, 9, 18, 0.7);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.brand {
  font-family: "Fraunces", serif;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.site-nav {
  display: flex;
  gap: 24px;
  font-size: 0.95rem;
}

.site-nav a {
  color: var(--muted);
  transition: color 0.2s ease;
}

.site-nav a:hover {
  color: var(--light);
}

.btn {
  border: none;
  padding: 14px 26px;
  font-size: 0.95rem;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-primary {
  background: linear-gradient(130deg, var(--accent), var(--rose));
  color: #1b0f16;
  box-shadow: 0 12px 30px rgba(242, 91, 120, 0.35);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 36px rgba(242, 91, 120, 0.45);
}

.btn-outline {
  background: transparent;
  color: var(--light);
  border: 1px solid var(--border);
}

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

.btn-ghost {
  background: transparent;
  color: var(--light);
  border: 1px solid transparent;
}

.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 48px;
  padding: 80px 6vw 60px;
  align-items: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: var(--muted);
  margin-bottom: 12px;
}

.hero h1 {
  font-family: "Fraunces", serif;
  font-size: clamp(2.4rem, 3.6vw, 4rem);
  line-height: 1.1;
  margin: 0 0 20px;
}

.lead {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 520px;
}

.cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin: 28px 0 20px;
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.meta-label {
  display: block;
  color: var(--muted);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.meta-value {
  font-weight: 600;
}

.legal-note {
  font-size: 0.8rem;
  color: rgba(247, 244, 239, 0.5);
}

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

.orbital-map {
  position: relative;
  width: min(380px, 80vw);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 20%, rgba(132, 210, 255, 0.35), transparent 60%);
}

.orbit {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(132, 210, 255, 0.3);
  inset: 12%;
}

.ring-two {
  inset: 25%;
  border-color: rgba(245, 152, 180, 0.35);
}

.ring-three {
  inset: 38%;
  border-color: rgba(247, 201, 107, 0.35);
}

.marker {
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--glow);
  top: 16%;
  right: 25%;
  box-shadow: 0 0 18px rgba(247, 201, 107, 0.8);
  animation: orbit 8s linear infinite;
}

.glow {
  position: absolute;
  inset: 20%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(247, 201, 107, 0.25) 0%, transparent 70%);
  animation: pulse 6s ease-in-out infinite;
}

.floating-card {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--card);
  border: 1px solid var(--border);
  padding: 16px 20px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
  max-width: 220px;
}

.card-label {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 6px;
}

.card-time {
  font-size: 1rem;
  font-weight: 600;
  margin: 0;
}

.card-detail {
  margin: 6px 0 0;
  font-size: 0.85rem;
  color: var(--muted);
}

.trust {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  padding: 30px 6vw 40px;
}

.trust-item {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 22px;
  border-radius: 18px;
}

.trust-item h3 {
  margin: 0 0 8px;
  font-family: "Fraunces", serif;
}

.trust-item p {
  margin: 0;
  color: var(--muted);
}

section {
  padding: 60px 6vw;
}

.section-header {
  margin-bottom: 36px;
}

.section-header h2 {
  font-family: "Fraunces", serif;
  font-size: clamp(2rem, 3vw, 3rem);
  margin: 0;
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.step {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 26px;
  border-radius: 20px;
  min-height: 220px;
}

.step-number {
  font-size: 0.85rem;
  color: var(--rose);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.step h3 {
  margin-top: 16px;
  font-size: 1.2rem;
}

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

.app {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 36px;
  align-items: center;
}

.app-copy {
  max-width: 520px;
}

.feature-list {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
  color: var(--muted);
}

.feature-list li {
  padding-left: 20px;
  position: relative;
}

.feature-list li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: var(--glow);
}

.app-panel {
  display: grid;
  place-items: center;
}

.app-screen {
  width: min(320px, 80vw);
  background: rgba(10, 13, 26, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.screen-header,
.screen-footer {
  display: flex;
  justify-content: space-between;
  padding: 16px 18px;
  font-size: 0.85rem;
  background: rgba(255, 255, 255, 0.04);
}

.screen-body {
  position: relative;
  padding: 40px 18px 60px;
  min-height: 220px;
}

.skyline {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(180deg, transparent, rgba(10, 13, 26, 0.95));
}

.pass-indicator {
  display: grid;
  gap: 16px;
  text-align: center;
  color: var(--glow);
}

.pass-indicator .arc {
  height: 90px;
  border: 2px dashed rgba(132, 210, 255, 0.4);
  border-bottom: none;
  border-radius: 90px 90px 0 0;
}

.screen-footer button {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--light);
  padding: 8px 14px;
  border-radius: 14px;
  cursor: pointer;
}

.pricing {
  display: grid;
  gap: 24px;
}

.price-card {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  padding: 28px 32px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  flex-wrap: wrap;
}

.price {
  font-size: 2.6rem;
  font-family: "Fraunces", serif;
  margin: 6px 0 0;
}

.price-sub,
.price-note {
  color: var(--muted);
  margin: 8px 0 0;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 22px;
}

.faq-item {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 22px;
  border-radius: 18px;
}

.final-cta {
  padding-bottom: 90px;
}

.final-card {
  text-align: center;
  background: linear-gradient(140deg, rgba(245, 152, 180, 0.2), rgba(132, 210, 255, 0.2));
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 50px 18px;
  border-radius: 28px;
}

.final-card h2 {
  font-family: "Fraunces", serif;
  font-size: clamp(2rem, 3vw, 3rem);
  margin: 0 0 16px;
}

.site-footer {
  padding: 30px 6vw 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: grid;
  gap: 16px;
  color: var(--muted);
}

.footer-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-note {
  font-size: 0.75rem;
  color: rgba(247, 244, 239, 0.5);
}

@keyframes orbit {
  0% {
    transform: rotate(0deg) translateX(130px) rotate(0deg);
  }
  100% {
    transform: rotate(360deg) translateX(130px) rotate(-360deg);
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(0.9);
    opacity: 0.6;
  }
  50% {
    transform: scale(1.05);
    opacity: 1;
  }
}

@media (max-width: 860px) {
  .site-nav {
    display: none;
  }

  .floating-card {
    position: static;
    margin-top: 20px;
  }

  .hero-visual {
    order: -1;
  }

  .price-card {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding: 16px 5vw;
  }

  .btn {
    width: 100%;
    text-align: center;
  }

  .cta-row {
    flex-direction: column;
  }

  section {
    padding: 50px 5vw;
  }
}
