:root {
  --ink: #0b1215;
  --ink-soft: #1a2428;
  --sand: #f2e9d8;
  --mist: #e6f0f1;
  --mint: #48f1c8;
  --coral: #ff6f61;
  --gold: #f6c453;
  --slate: #95a4a6;
  --shadow: rgba(9, 15, 18, 0.2);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Work Sans", sans-serif;
  color: var(--mist);
  background: var(--ink);
  min-height: 100vh;
  overflow-x: hidden;
}

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

button {
  font-family: inherit;
}

.bg {
  position: fixed;
  inset: 0;
  z-index: -2;
  overflow: hidden;
}

.grid {
  position: absolute;
  inset: -20% -10%;
  background-image: linear-gradient(transparent 93%, rgba(72, 241, 200, 0.08) 94%),
    linear-gradient(90deg, transparent 93%, rgba(255, 111, 97, 0.08) 94%);
  background-size: 70px 70px;
  opacity: 0.35;
  transform: rotate(-6deg);
}

.orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(0px);
  opacity: 0.8;
  animation: float 12s ease-in-out infinite;
}

.orb-sand {
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(242, 233, 216, 0.75), transparent 65%);
  top: -140px;
  left: -160px;
}

.orb-coral {
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(255, 111, 97, 0.6), transparent 70%);
  right: -140px;
  bottom: -160px;
  animation-delay: 2s;
}

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

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 6vw 0;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Unbounded", sans-serif;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.brand-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--mint), var(--coral));
  box-shadow: 0 0 12px rgba(72, 241, 200, 0.8);
}

.nav-links {
  display: flex;
  gap: 20px;
  font-size: 14px;
  color: var(--slate);
}

.nav-links a:hover {
  color: var(--mist);
}

.nav-cta {
  background: var(--mist);
  color: var(--ink);
  border: none;
  border-radius: 999px;
  padding: 10px 18px;
  font-weight: 600;
  cursor: pointer;
}

main {
  display: flex;
  flex-direction: column;
  gap: 120px;
  padding: 40px 6vw 120px;
}

.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 48px;
  align-items: center;
  margin-top: 40px;
}

.hero-content h1 {
  font-family: "Unbounded", sans-serif;
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  line-height: 1.05;
  margin-bottom: 20px;
}

.hero-content h1 span {
  color: var(--mint);
}

.hero-content p {
  color: var(--slate);
  line-height: 1.6;
  font-size: 1.05rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(72, 241, 200, 0.12);
  color: var(--mint);
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  margin-bottom: 20px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin: 28px 0 32px;
  flex-wrap: wrap;
}

.btn {
  border-radius: 999px;
  padding: 12px 22px;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.btn.primary {
  background: linear-gradient(135deg, var(--mint), #7af4ff);
  color: var(--ink);
}

.btn.secondary {
  background: var(--ink-soft);
  color: var(--mist);
  border-color: rgba(242, 233, 216, 0.2);
}

.btn.ghost {
  background: transparent;
  color: var(--mist);
  border-color: rgba(230, 240, 241, 0.25);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 16px;
}

.stat {
  background: rgba(12, 18, 20, 0.6);
  border: 1px solid rgba(230, 240, 241, 0.08);
  padding: 16px;
  border-radius: 18px;
  box-shadow: 0 20px 50px var(--shadow);
}

.stat-value {
  font-size: 1.3rem;
  font-weight: 600;
  font-family: "Unbounded", sans-serif;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--slate);
  margin-top: 8px;
}

.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
  padding: 30px 40px;
}

.phone {
  width: min(320px, 90vw);
  background: #0d181c;
  border-radius: 30px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.phone-header {
  display: flex;
  gap: 6px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.03);
}

.phone-header .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
}

.screen {
  padding: 18px;
  display: grid;
  gap: 18px;
}

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

.avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--coral), var(--gold));
  margin-bottom: 12px;
}

.card-title {
  font-weight: 600;
}

.card-sub {
  color: var(--slate);
  font-size: 0.9rem;
  margin: 6px 0 12px;
}

.card-score {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(72, 241, 200, 0.15);
  color: var(--mint);
  font-size: 0.85rem;
}

.chat {
  display: grid;
  gap: 10px;
}

.bubble {
  padding: 10px 12px;
  border-radius: 14px;
  font-size: 0.85rem;
}

.bubble.left {
  background: rgba(255, 255, 255, 0.07);
  color: var(--mist);
  justify-self: start;
}

.bubble.right {
  background: rgba(72, 241, 200, 0.2);
  color: var(--ink);
  justify-self: end;
}

.cta-mini {
  font-size: 0.75rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  justify-self: center;
}

.floating-badge {
  position: absolute;
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.badge-teal {
  background: rgba(72, 241, 200, 0.2);
  color: var(--mint);
  top: -6px;
  right: -10px;
  animation: float 10s ease-in-out infinite;
}

.badge-coral {
  background: rgba(255, 111, 97, 0.2);
  color: var(--coral);
  bottom: -12px;
  left: -16px;
  animation: float 11s ease-in-out infinite;
}

.section {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.section-header h2 {
  font-family: "Unbounded", sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
}

.section-header p {
  color: var(--slate);
  margin-top: 12px;
}

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

.step {
  padding: 24px;
  background: rgba(12, 18, 20, 0.7);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 50px var(--shadow);
}

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

.step h3 {
  margin: 12px 0 10px;
  font-size: 1.1rem;
}

.step p {
  color: var(--slate);
  line-height: 1.5;
}

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

.list {
  display: grid;
  gap: 12px;
  margin: 18px 0 24px;
  color: var(--slate);
}

.list li {
  list-style: none;
  padding-left: 26px;
  position: relative;
}

.list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--mint);
}

.split-card {
  padding: 26px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.35);
}

.score {
  display: flex;
  align-items: baseline;
  gap: 14px;
}

.score-value {
  font-size: 3rem;
  font-family: "Unbounded", sans-serif;
}

.score-label {
  color: var(--slate);
}

.score-meter {
  height: 10px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  overflow: hidden;
  margin: 20px 0 16px;
}

.meter-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--mint), var(--gold));
}

.score-actions {
  display: grid;
  gap: 12px;
  font-size: 0.95rem;
}

.score-row {
  display: flex;
  justify-content: space-between;
  color: var(--slate);
}

.score-row strong {
  color: var(--mint);
}

.score-row.bad strong {
  color: var(--coral);
}

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

.rule-card {
  padding: 22px;
  border-radius: 18px;
  background: rgba(12, 18, 20, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.rule-card p {
  color: var(--slate);
  margin-top: 10px;
}

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

.quote {
  padding: 30px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 1.1rem;
  line-height: 1.6;
}

.quote-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  color: var(--slate);
}

.avatar-mini {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--mint), var(--gold));
}

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

.preview-card {
  padding: 28px;
  border-radius: 22px;
  background: rgba(72, 241, 200, 0.08);
  border: 1px solid rgba(72, 241, 200, 0.2);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.35);
}

.preview-card p {
  margin-top: 10px;
  color: var(--mist);
  font-size: 0.95rem;
}

.faq {
  display: grid;
  gap: 14px;
}

.faq-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background: rgba(12, 18, 20, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 18px 22px;
  border-radius: 16px;
  color: var(--mist);
  cursor: pointer;
  font-size: 1rem;
}

.faq-panel {
  display: none;
  padding: 16px 22px;
  color: var(--slate);
  background: rgba(12, 18, 20, 0.5);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.faq-item.active + .faq-panel {
  display: block;
}

.faq-item .faq-icon {
  font-size: 1.4rem;
  color: var(--mint);
}

.cta {
  align-items: center;
}

.cta-box {
  width: min(720px, 100%);
  padding: 32px;
  border-radius: 26px;
  background: linear-gradient(135deg, rgba(72, 241, 200, 0.2), rgba(255, 111, 97, 0.12));
  border: 1px solid rgba(255, 255, 255, 0.15);
  text-align: center;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}

.cta-box p {
  color: var(--slate);
  margin: 12px 0 20px;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.cta-actions input {
  flex: 1 1 220px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 12px 18px;
  background: rgba(12, 18, 20, 0.8);
  color: var(--mist);
}

.cta-note {
  color: var(--slate);
  font-size: 0.85rem;
  margin-top: 12px;
}

.footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 6vw 40px;
  color: var(--slate);
  font-size: 0.9rem;
}

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

[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

@media (max-width: 900px) {
  .nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links {
    flex-wrap: wrap;
  }

  .hero {
    margin-top: 10px;
  }

  .hero-visual {
    padding: 24px 0 10px;
  }

  .badge-teal,
  .badge-coral {
    position: static;
    margin-top: 12px;
  }
}

@media (max-width: 600px) {
  main {
    padding: 30px 6vw 100px;
    gap: 90px;
  }

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

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

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