:root {
  --bg: #0b0b10;
  --surface: #15151c;
  --line: #2a2a36;
  --fg: #f3f3f6;
  --muted: #9a9aa8;
  --accent: #ff4d6d;
  color-scheme: dark;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.55;
}

a { color: inherit; }

.top, main, .foot { max-width: 68rem; margin: 0 auto; padding-inline: clamp(1rem, 5vw, 2.5rem); }

.top { display: flex; align-items: center; justify-content: space-between; padding-block: 1.1rem; }
.top__brand { display: inline-flex; color: var(--accent); text-decoration: none; }
.top__brand img { display: block; width: clamp(140px, 18vw, 190px); height: auto; }
.top__nav { display: flex; align-items: center; gap: 1.4rem; font-size: 0.95rem; }
.top__nav a:not(.btn) { color: var(--muted); text-decoration: none; }
.top__nav a:not(.btn):hover { color: var(--fg); }

.btn {
  display: inline-block;
  padding: 0.75rem 1.4rem;
  border-radius: 0.75rem;
  font-weight: 700;
  text-decoration: none;
}

.btn--primary { background: var(--accent); color: #fff; }
.btn--ghost { border: 1px solid var(--line); background: var(--surface); }

.hero { padding-block: clamp(2.5rem, 8vw, 5rem) 1rem; text-align: center; }

.hero h1 {
  margin: 0;
  font-size: clamp(2.4rem, 7vw, 4.6rem);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.hero__lead { max-width: 40rem; margin: 1.3rem auto 0; color: var(--muted); font-size: 1.15rem; }
.hero__cta { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.8rem; margin-top: 2rem; }

/* A miniature of the product's actual wall, not a stock illustration. */
.wall {
  container-type: inline-size;
  position: relative;
  aspect-ratio: 16 / 9;
  max-width: 52rem;
  margin: 3.5rem auto 0;
  border: 1px solid var(--line);
  border-radius: 1.2rem;
  background: radial-gradient(circle at 72% 28%, #55304a 0%, #2a1836 45%, #120d22 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2rem 6rem rgba(255, 77, 109, 0.12);
}

.wall__text { padding: 0 6%; font-size: 10cqw; font-weight: 800; line-height: 1.03; letter-spacing: -0.03em; }

.wall__sign {
  position: absolute;
  bottom: 6%;
  display: flex;
  align-items: center;
  gap: 1cqw;
  color: rgba(255, 255, 255, 0.6);
  font-size: 2.6cqw;
}

.wall__avatar {
  display: grid;
  place-items: center;
  width: 4.4cqw;
  height: 4.4cqw;
  border: 0.3cqw solid var(--accent);
  border-radius: 50%;
  background: #14b8a6;
  color: #fff;
  font-size: 2.2cqw;
  font-weight: 700;
}

.section { padding-block: clamp(3rem, 8vw, 5.5rem) 0; }
.section h2 { margin: 0 0 1.6rem; font-size: clamp(1.7rem, 4vw, 2.4rem); font-weight: 800; letter-spacing: -0.03em; }

.steps { counter-reset: step; list-style: none; margin: 0; padding: 0; display: grid; gap: 1rem; grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr)); }

.steps li {
  counter-increment: step;
  padding: 1.4rem;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: var(--surface);
}

.steps li::before {
  content: counter(step);
  display: block;
  margin-bottom: 0.6rem;
  color: var(--accent);
  font-size: 1.6rem;
  font-weight: 800;
}

.steps strong { display: block; margin-bottom: 0.3rem; }
.steps span { color: var(--muted); font-size: 0.95rem; }

.features { display: grid; gap: 1rem; grid-template-columns: repeat(auto-fit, minmax(17rem, 1fr)); }
.features article { padding: 1.4rem; border: 1px solid var(--line); border-radius: 1rem; background: var(--surface); }
.features h3 { margin: 0 0 0.4rem; font-size: 1.05rem; }
.features p { margin: 0; color: var(--muted); font-size: 0.95rem; }

.pricing { display: grid; gap: 1rem; grid-template-columns: repeat(auto-fit, minmax(17rem, 1fr)); margin-bottom: 1.8rem; }
.plan { padding: 1.6rem; border: 1px solid var(--accent); border-radius: 1rem; background: var(--surface); }
.plan--addon { border-color: var(--line); }
.plan__name { color: var(--muted); font-weight: 600; }
.plan__price { margin: 0.2rem 0 0.8rem; font-size: 2.2rem; font-weight: 800; letter-spacing: -0.03em; }
.plan__price span { color: var(--muted); font-size: 1rem; font-weight: 500; }
.plan ul { margin: 0; padding-left: 1.1rem; color: var(--muted); font-size: 0.95rem; }

.foot {
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem;
  margin-top: 5rem;
  padding-block: 1.6rem 2.5rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.88rem;
}

/* Legal pages */
.doc { max-width: 46rem; padding-block: 2rem 1rem; }
.doc h1 { font-size: 2rem; letter-spacing: -0.03em; line-height: 1.15; }
.doc h2 { margin-top: 2.2rem; font-size: 1.2rem; }
.doc p, .doc li { color: #d0d0da; font-size: 0.98rem; }

.draft {
  padding: 0.9rem 1.1rem;
  border-radius: 0.8rem;
  background: rgba(255, 198, 92, 0.12);
  color: #ffc65c;
  font-size: 0.92rem;
}

mark { padding: 0 0.2em; border-radius: 0.25em; background: rgba(255, 198, 92, 0.22); color: #ffd98a; }
