:root {
  color-scheme: dark;
  --bg: #09090b;
  --surface: #121116;
  --surface-raised: #19171f;
  --line: rgba(255, 255, 255, 0.1);
  --line-strong: rgba(255, 255, 255, 0.17);
  --text: #f7f5fb;
  --muted: #b6b0c0;
  --purple: #9b6cff;
  --purple-light: #c8adff;
  --pink: #ff67c7;
  --green: #72e6b1;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.36);
  --content: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 70% -10%, rgba(155, 108, 255, 0.22), transparent 33rem),
    radial-gradient(circle at 4% 34%, rgba(255, 103, 199, 0.08), transparent 30rem),
    var(--bg);
  color: var(--text);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--purple-light);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 50;
  transform: translateY(-180%);
  border-radius: 0.6rem;
  background: white;
  color: #111;
  padding: 0.7rem 1rem;
  font-weight: 750;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(calc(100% - 2.5rem), var(--content));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: rgba(9, 9, 11, 0.84);
  backdrop-filter: blur(18px);
}

.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.72rem;
  color: var(--text);
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-decoration: none;
}

.brand-mark {
  width: 2.15rem;
  height: 2.15rem;
  display: grid;
  place-items: center;
  border-radius: 0.72rem;
  background: linear-gradient(135deg, var(--purple), var(--pink));
  box-shadow: 0 8px 28px rgba(155, 108, 255, 0.3);
}

.brand-mark::before {
  width: 0.8rem;
  height: 0.8rem;
  content: "";
  border: 0.16rem solid white;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.nav-links > a:not(.button) {
  color: var(--muted);
  font-size: 0.91rem;
  font-weight: 650;
  text-decoration: none;
}

.nav-links > a:not(.button):hover {
  color: white;
}

.button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 1px solid transparent;
  border-radius: 0.78rem;
  background: linear-gradient(135deg, #8f5cff, #b974ff);
  color: white;
  padding: 0.72rem 1.05rem;
  font-weight: 780;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(143, 92, 255, 0.22);
  transition: transform 150ms ease, box-shadow 150ms ease;
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 34px rgba(143, 92, 255, 0.32);
}

.button.secondary {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: none;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.48rem;
  border: 1px solid rgba(155, 108, 255, 0.35);
  border-radius: 100px;
  background: rgba(155, 108, 255, 0.1);
  color: var(--purple-light);
  padding: 0.4rem 0.72rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 0.48rem;
  height: 0.48rem;
  content: "";
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 0.25rem rgba(114, 230, 177, 0.12);
}

.hero {
  min-height: 690px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  align-items: center;
  gap: clamp(3rem, 7vw, 6.5rem);
  padding-block: 6.5rem;
}

.hero > *,
.notice > *,
.footer-grid > * {
  min-width: 0;
}

.hero h1 {
  max-width: 760px;
  margin: 1.3rem 0 1.25rem;
  font-size: clamp(3.25rem, 7vw, 6.2rem);
  line-height: 0.98;
  letter-spacing: -0.065em;
}

.gradient-text {
  background: linear-gradient(110deg, var(--purple-light), var(--pink));
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
}

.hero-copy > p {
  max-width: 650px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.22rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.1rem;
  margin: 1.7rem 0 0;
  padding: 0;
  color: var(--muted);
  font-size: 0.87rem;
  list-style: none;
}

.trust-row li::before {
  content: "✓";
  margin-right: 0.42rem;
  color: var(--green);
  font-weight: 900;
}

.product-card {
  position: relative;
  border: 1px solid var(--line-strong);
  border-radius: 1.5rem;
  background: linear-gradient(160deg, rgba(28, 25, 35, 0.97), rgba(14, 13, 17, 0.97));
  padding: 1rem;
  box-shadow: var(--shadow);
}

.product-card::before {
  position: absolute;
  inset: -1px;
  z-index: -1;
  content: "";
  border-radius: inherit;
  background: linear-gradient(150deg, rgba(155, 108, 255, 0.65), transparent 35%, rgba(255, 103, 199, 0.2));
  filter: blur(10px);
  opacity: 0.7;
}

.product-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.45rem 0.3rem 1rem;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.window-dots {
  display: flex;
  gap: 0.38rem;
}

.window-dots span {
  width: 0.52rem;
  height: 0.52rem;
  border-radius: 50%;
  background: #403c48;
}

.window-dots span:first-child {
  background: #ff6d76;
}

.window-dots span:nth-child(2) {
  background: #ffce67;
}

.window-dots span:nth-child(3) {
  background: #72e6b1;
}

.calendar {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: #0d0c10;
}

.calendar-head,
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.calendar-head {
  border-bottom: 1px solid var(--line);
  color: #8f8999;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-align: center;
  text-transform: uppercase;
}

.calendar-head span {
  padding: 0.75rem 0.2rem;
}

.day {
  min-height: 88px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 0.5rem;
  color: #797381;
  font-size: 0.68rem;
}

.day:nth-child(5n) {
  border-right: 0;
}

.post {
  margin-top: 0.42rem;
  border: 1px solid rgba(155, 108, 255, 0.32);
  border-radius: 0.48rem;
  background: rgba(155, 108, 255, 0.15);
  color: #e5d8ff;
  padding: 0.38rem;
  font-size: 0.62rem;
  font-weight: 750;
  line-height: 1.3;
}

.post.pink {
  border-color: rgba(255, 103, 199, 0.3);
  background: rgba(255, 103, 199, 0.12);
  color: #ffd3ed;
}

.post.green {
  border-color: rgba(114, 230, 177, 0.3);
  background: rgba(114, 230, 177, 0.11);
  color: #c9ffe7;
}

.section {
  padding-block: 6.5rem;
}

.section + .section {
  border-top: 1px solid var(--line);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 2.5rem;
}

.kicker {
  margin: 0 0 0.6rem;
  color: var(--purple-light);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.section-heading > p {
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.feature {
  min-height: 230px;
  border: 1px solid var(--line);
  border-radius: 1.1rem;
  background: linear-gradient(145deg, rgba(25, 23, 31, 0.78), rgba(15, 14, 18, 0.85));
  padding: 1.35rem;
}

.feature-icon {
  width: 2.75rem;
  height: 2.75rem;
  display: grid;
  place-items: center;
  border: 1px solid rgba(155, 108, 255, 0.28);
  border-radius: 0.8rem;
  background: rgba(155, 108, 255, 0.1);
  color: var(--purple-light);
  font-size: 1.2rem;
  font-weight: 900;
}

.feature h3 {
  margin: 1.2rem 0 0.55rem;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}

.feature p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  counter-reset: steps;
}

.step {
  position: relative;
  border-top: 1px solid var(--line-strong);
  padding: 1.5rem 1rem 0 0;
  counter-increment: steps;
}

.step::before {
  content: "0" counter(steps);
  color: var(--purple-light);
  font-size: 0.8rem;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.step h3 {
  margin: 1.25rem 0 0.55rem;
  font-size: 1.25rem;
}

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

.platforms {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.platform {
  border: 1px solid var(--line);
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.025);
  color: #d8d3dd;
  padding: 0.6rem 0.9rem;
  font-size: 0.88rem;
  font-weight: 700;
}

.notice {
  display: grid;
  grid-template-columns: 1.2fr auto;
  align-items: center;
  gap: 2rem;
  border: 1px solid rgba(155, 108, 255, 0.3);
  border-radius: 1.3rem;
  background:
    linear-gradient(130deg, rgba(155, 108, 255, 0.13), rgba(255, 103, 199, 0.05)),
    var(--surface);
  padding: clamp(1.5rem, 4vw, 2.5rem);
}

.notice h2 {
  font-size: clamp(1.7rem, 3vw, 2.5rem);
}

.notice p {
  max-width: 680px;
  margin: 0.7rem 0 0;
  color: var(--muted);
}

.site-footer {
  border-top: 1px solid var(--line);
  background: rgba(4, 4, 5, 0.44);
  padding-block: 2.4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: end;
}

.footer-copy {
  max-width: 560px;
  margin: 0.8rem 0 0;
  color: var(--muted);
  font-size: 0.87rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.75rem 1.2rem;
}

.footer-links a {
  color: white;
  font-size: 0.9rem;
  font-weight: 750;
  text-underline-offset: 0.28rem;
}

.footer-links a:hover {
  color: var(--purple-light);
}

.copyright {
  grid-column: 1 / -1;
  margin: 0.5rem 0 0;
  color: #7f7987;
  font-size: 0.78rem;
}

.legal-main {
  padding-block: 5rem 7rem;
}

.legal-hero {
  max-width: 820px;
  padding-bottom: 3.5rem;
}

.legal-hero h1 {
  margin: 1rem 0;
  font-size: clamp(2.6rem, 6vw, 5rem);
  line-height: 1;
  letter-spacing: -0.055em;
}

.legal-hero p {
  max-width: 700px;
  margin: 0;
  color: var(--muted);
  font-size: 1.04rem;
}

.legal-card {
  max-width: 880px;
  border: 1px solid var(--line);
  border-radius: 1.3rem;
  background: rgba(18, 17, 22, 0.78);
  padding: clamp(1.35rem, 4vw, 3rem);
  box-shadow: var(--shadow);
}

.legal-card h2 {
  margin-top: 2.5rem;
  font-size: 1.35rem;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.legal-card h2:first-child {
  margin-top: 0;
}

.legal-card h3 {
  margin: 1.7rem 0 0.4rem;
  font-size: 1rem;
}

.legal-card p,
.legal-card li {
  color: #c5bfca;
}

.legal-card ul {
  padding-left: 1.2rem;
}

.legal-card li + li {
  margin-top: 0.55rem;
}

.legal-card a {
  color: var(--purple-light);
  text-underline-offset: 0.22rem;
}

.legal-card strong {
  color: var(--text);
}

.legal-date {
  display: inline-block;
  margin-top: 0.5rem;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.06);
  color: #d9d3df;
  padding: 0.38rem 0.7rem;
  font-size: 0.78rem;
  font-weight: 750;
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
    padding-block: 5rem;
  }

  .hero-copy {
    max-width: 800px;
  }

  .product-card {
    width: min(100%, 620px);
  }

  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 720px) {
  .container {
    width: min(calc(100% - 1.5rem), var(--content));
  }

  .site-header {
    position: relative;
  }

  .nav {
    min-height: auto;
    align-items: flex-start;
    flex-direction: column;
    padding-block: 1rem;
  }

  .nav-links {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.55rem 1rem;
  }

  .nav-links > a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }

  .nav-links .button {
    grid-column: 1 / -1;
  }

  .hero {
    min-height: 0;
    gap: 3.5rem;
    padding-block: 4rem;
  }

  .hero h1 {
    font-size: clamp(2.8rem, 15vw, 4.5rem);
    overflow-wrap: anywhere;
  }

  .hero-copy > p {
    max-width: 100%;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-actions .button {
    width: 100%;
    padding-inline: 0.8rem;
    text-align: center;
    white-space: normal;
  }

  .trust-row {
    display: grid;
    grid-template-columns: 1fr;
  }

  .product-card {
    min-width: 0;
    overflow: hidden;
  }

  .feature-grid,
  .steps,
  .notice,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .feature {
    min-height: 0;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .calendar-head span:nth-child(5),
  .day:nth-child(5n),
  .day:nth-child(5n - 1) {
    display: none;
  }

  .calendar-head,
  .calendar-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .day:nth-child(3n) {
    border-right: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
