﻿:root {
  color-scheme: dark;
  --bg: #0b0f17;
  --panel: #141a25;
  --panel-strong: #1c2431;
  --text: #f7f1e8;
  --muted: #b8c1d1;
  --line: #334052;
  --sky: #77d7ff;
  --sun: #ffc35a;
  --violet: #b69cff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 15% 10%, rgba(119, 215, 255, 0.18), transparent 30rem),
    radial-gradient(circle at 85% 0%, rgba(255, 195, 90, 0.14), transparent 28rem),
    var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: var(--sky);
}

main {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 460px);
  gap: 64px;
  align-items: center;
  padding: 68px 0 46px;
}

.hero-copy {
  max-width: 720px;
  min-width: 0;
}

.hero-card {
  width: 100%;
  max-width: 460px;
  justify-self: end;
  border: 1px solid rgba(119, 215, 255, 0.22);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(20, 26, 37, 0.72);
  box-shadow: 0 24px 90px rgba(0, 0, 0, 0.34);
}

.hero-card img {
  width: 100%;
  aspect-ratio: 1024 / 500;
  object-fit: cover;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--sun);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2 {
  line-height: 1.08;
}

h1 {
  margin: 0;
  font-size: clamp(3rem, 6.2vw, 5.7rem);
  letter-spacing: 0;
}

h2 {
  margin: 0 0 14px;
  font-size: clamp(1.55rem, 3vw, 2.25rem);
}

.lead {
  max-width: 680px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: clamp(1.18rem, 2.1vw, 1.55rem);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--text);
  text-decoration: none;
  font-weight: 800;
  background: rgba(20, 26, 37, 0.82);
}

.button.primary {
  border-color: transparent;
  background: var(--sky);
  color: #07111c;
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 16px 0 28px;
}

article,
.plain-section,
.policy section,
.pricing-section,
.split-section,
.showcase {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(20, 26, 37, 0.86);
}

article,
.plain-section {
  padding: 24px;
}

article h2 {
  font-size: 1.45rem;
}

article p,
.plain-section p,
.policy p,
.pricing-section p,
.split-section p,
.showcase p,
.steps span {
  margin: 0;
  color: var(--muted);
}

.pricing-section {
  padding: 30px;
  margin-bottom: 28px;
}

.section-heading {
  max-width: 820px;
}

.section-heading h2 {
  max-width: 760px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.price-card {
  display: grid;
  align-content: start;
  gap: 16px;
  min-height: 250px;
  padding: 22px;
  background: rgba(11, 15, 23, 0.42);
}

.price-card.featured {
  border-color: rgba(255, 195, 90, 0.46);
  background: linear-gradient(180deg, rgba(255, 195, 90, 0.12), rgba(11, 15, 23, 0.42));
}

.price-label {
  color: var(--sun);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.price-card h3 {
  margin: 8px 0 0;
  font-size: 1.35rem;
  line-height: 1.15;
}

.price {
  margin-top: 12px !important;
  color: var(--text) !important;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 900;
  line-height: 0.95;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 1fr);
  gap: 34px;
  align-items: start;
  padding: 30px;
  margin-bottom: 28px;
}

.steps {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps li {
  padding: 18px;
  border: 1px solid rgba(119, 215, 255, 0.18);
  border-radius: 8px;
  background: rgba(11, 15, 23, 0.42);
}

.steps strong,
.steps span {
  display: block;
}

.steps strong {
  margin-bottom: 4px;
}

.showcase {
  display: grid;
  gap: 28px;
  padding: 30px;
  margin-bottom: 28px;
}

.showcase-copy {
  max-width: 760px;
}

.screenshots {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

figure {
  margin: 0;
}

figure img {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  border: 1px solid rgba(119, 215, 255, 0.18);
  border-radius: 8px;
  background: var(--panel-strong);
}

figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-weight: 700;
}

.plain-section {
  margin-bottom: 28px;
}

.inline-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 18px;
}

.inline-links a {
  font-weight: 800;
  text-underline-offset: 4px;
}

.support-card {
  margin-bottom: 44px;
}

.policy {
  max-width: 860px;
  padding: 56px 0 44px;
}

.policy h1 {
  margin: 0;
  font-size: clamp(3rem, 7.5vw, 6rem);
  letter-spacing: 0;
}

.policy h2 {
  font-size: 1.45rem;
}

.policy section {
  margin-top: 18px;
  padding: 24px;
}

.updated,
.back-link {
  color: var(--muted);
}

.back-link {
  display: inline-flex;
  margin-bottom: 26px;
  text-decoration: none;
  font-weight: 800;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 24px 0 36px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

footer a {
  text-decoration: none;
  font-weight: 800;
}

@media (max-width: 900px) {
  .hero,
  .split-section {
    grid-template-columns: 1fr;
  }

  .hero {
    gap: 32px;
    padding-top: 44px;
  }

  .hero-card {
    max-width: 680px;
    justify-self: start;
  }

  .content-grid,
  .pricing-grid,
  .screenshots {
    grid-template-columns: 1fr;
  }

  figure img {
    aspect-ratio: 4 / 3;
  }
}

@media (max-width: 760px) {
  main,
  footer {
    width: min(100% - 28px, 1180px);
  }

  .hero {
    gap: 24px;
    padding-top: 34px;
    padding-bottom: 30px;
  }

  .split-section,
  .showcase {
    padding: 22px;
  }

  footer {
    flex-direction: column;
  }
}

