@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&display=swap');

:root {
  --bg: #080820;
  --panel: #141431;
  --accent: #7bf1c0;
  --accent-strong: #f0ff81;
  --text: #f9fbff;
  --muted: rgba(249, 251, 255, 0.7);
}

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

body {
  margin: 0;
  font-family: 'Space Grotesk', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
}

.page {
  padding: 2.5rem clamp(1rem, 4vw, 4rem) 3rem;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.label {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent);
}

.hero {
  background: radial-gradient(circle at top right, rgba(123, 241, 192, 0.25), transparent 55%),
    var(--panel);
  border-radius: 36px;
  padding: clamp(2rem, 4vw, 3rem);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  align-items: center;
  box-shadow: 0 25px 40px rgba(9, 7, 40, 0.8);
}

.hero-content h1 {
  margin: 0.5rem 0 1rem;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.2;
}

.hero-content p {
  margin: 0 0 1.5rem;
  max-width: 38ch;
  color: var(--muted);
}

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

.hero-price {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin: 0 0 1.25rem;
}

.hero-price__now {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--accent-strong);
}

.hero-price__old {
  font-size: 1rem;
  color: rgba(249, 251, 255, 0.6);
  text-decoration: line-through;
}

.btn {
  border: none;
  border-radius: 999px;
  padding: 0.85rem 1.6rem;
  font-weight: 600;
  cursor: pointer;
  font-size: 1rem;
  transition: transform 0.2s ease;
}

.btn.primary {
  background: linear-gradient(135deg, #7bf1c0, #70c4ff);
  color: #06061a;
}

.btn.secondary {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: var(--text);
}

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

.metrics {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.metrics strong {
  display: block;
  font-size: 1.4rem;
}

.hero-card {
  background: rgba(6, 6, 26, 0.9);
  border-radius: 32px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  min-height: 260px;
  border: 1px solid rgba(123, 241, 192, 0.2);
}

.hero-card__screen {
  background: linear-gradient(160deg, #16162f, #080820);
  border-radius: 24px;
  padding: 1.5rem;
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.hero-card__title {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--muted);
}

.hero-card__bubble {
  margin-top: 0.5rem;
  background: rgba(123, 241, 192, 0.1);
  padding: 0.75rem 1rem;
  border-radius: 999px;
  max-width: 80%;
  color: var(--accent-strong);
  font-weight: 600;
}

.hero-card__badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  padding: 0.45rem 0.9rem;
  background: rgba(123, 241, 192, 0.12);
  border-radius: 999px;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
}

.description,
.promo-video,
.story,
.grid,
.cta-panel,
.testimonials,
.faq {
  background: var(--panel);
  border-radius: 28px;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  box-shadow: 0 20px 35px rgba(5, 6, 25, 0.75);
}

.description {
  display: grid;
  grid-template-columns: minmax(200px, 1fr) 1.4fr;
  gap: 2rem;
  align-items: center;
}

.description__media img {
  width: 100%;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: block;
}

.description__media-note {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 0.5rem;
}

.description__content h3 {
  margin-top: 0.5rem;
}

.description__content ul {
  padding-left: 1.2rem;
  color: var(--muted);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.description__content h4 {
  margin-bottom: 0.35rem;
  margin-top: 1rem;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}

.description__warning {
  color: #ffbaba;
  margin-top: 1rem;
}

.promo-video {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  align-items: center;
}

.promo-video__embed {
  position: relative;
  padding-top: 56.25%;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.promo-video__embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 18px;
}

.story {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
}

.story h2 {
  margin-top: 0;
}

.story ul {
  padding-left: 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  color: var(--muted);
}

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

.grid article h3 {
  margin-top: 0;
}

.grid article ul {
  padding-left: 1.1rem;
  list-style: disc;
  color: var(--muted);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.cta-panel {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  align-items: center;
}

.price-card {
  background: rgba(250, 250, 250, 0.04);
  border-radius: 24px;
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}

.price-card__tag {
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

.price-card__pricing {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  justify-content: center;
}

.price-card__price {
  font-size: clamp(2.25rem, 4vw, 3rem);
  margin: 0.5rem 0;
}

.price-card__old {
  font-size: 1rem;
  color: rgba(249, 251, 255, 0.6);
  text-decoration: line-through;
}

.price-card__subtext {
  color: var(--muted);
  margin-bottom: 1rem;
}

.price-card__note {
  font-size: 0.85rem;
  color: var(--accent-strong);
  margin-bottom: 1rem;
}

.testimonials h3 {
  margin-top: 0;
}

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

figure {
  margin: 0;
  background: rgba(255, 255, 255, 0.03);
  padding: 1.25rem;
  border-radius: 20px;
}

blockquote {
  margin: 0 0 0.75rem;
  color: var(--accent-strong);
  font-size: 1rem;
  line-height: 1.4;
}

figcaption {
  color: var(--muted);
  font-size: 0.85rem;
}

.faq h3 {
  margin-top: 0;
}

.faq__question {
  font-weight: 600;
  margin-bottom: 0.15rem;
}

.faq__answer {
  margin-top: 0;
  margin-bottom: 1rem;
  color: var(--muted);
}

.footer {
  text-align: center;
  font-size: 0.9rem;
  color: var(--muted);
  margin-top: 1rem;
}

@media (max-width: 600px) {
  .metrics {
    flex-direction: column;
  }

  .hero-card {
    padding: 1.5rem;
  }
}
