:root {
  --ink: #160f23;
  --ink-soft: #211632;
  --ink-raised: #2a1d3e;
  --cream: #fff2c3;
  --cream-soft: #f4e8bd;
  --muted: #b8a8c8;
  --aqua: #4ee2d6;
  --aqua-deep: #16b9b4;
  --yellow: #ffd65b;
  --pink: #f79bb6;
  --line: rgba(255, 242, 195, 0.14);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  background:
    radial-gradient(circle at 12% 10%, rgba(78, 226, 214, 0.13), transparent 28rem),
    radial-gradient(circle at 92% 22%, rgba(247, 155, 182, 0.1), transparent 24rem),
    var(--ink);
  color: var(--cream-soft);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
}

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

a {
  color: var(--aqua);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--cream);
}

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--cream);
  letter-spacing: -0.035em;
  line-height: 1.08;
}

h1 {
  max-width: 760px;
  margin-bottom: 1.4rem;
  font-size: clamp(3.5rem, 10vw, 7.3rem);
  font-weight: 850;
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(2rem, 4vw, 3.4rem);
}

h3 {
  margin-bottom: 0.65rem;
  font-size: 1.3rem;
}

p {
  max-width: 68ch;
}

.site-shell {
  width: min(1120px, calc(100% - 2.5rem));
  margin: 0 auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.35rem 0;
}

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

.brand img {
  width: 2.9rem;
  height: 2.9rem;
  border: 2px solid rgba(255, 242, 195, 0.25);
  border-radius: 0.9rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.site-nav a {
  padding: 0.48rem 0.7rem;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  background: rgba(78, 226, 214, 0.11);
  color: var(--aqua);
}

.language-link {
  border: 1px solid var(--line);
  margin-left: 0.35rem;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  align-items: center;
  gap: clamp(2.5rem, 7vw, 6rem);
  min-height: min(760px, calc(100vh - 5.5rem));
  padding: 4rem 0 7rem;
}

.eyebrow,
.section-kicker {
  margin-bottom: 1.15rem;
  color: var(--aqua);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero h1 span {
  display: block;
  color: var(--yellow);
  font-size: 0.46em;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.hero-lede {
  max-width: 570px;
  color: var(--muted);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.72rem 1.05rem;
  border: 1px solid transparent;
  border-radius: 0.85rem;
  background: var(--aqua);
  color: var(--ink);
  font-weight: 850;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease;
}

.button:hover {
  background: var(--cream);
  color: var(--ink);
  transform: translateY(-2px);
}

.button--ghost {
  border-color: var(--line);
  background: transparent;
  color: var(--cream);
}

.button--ghost:hover {
  border-color: var(--aqua);
  background: rgba(78, 226, 214, 0.09);
  color: var(--aqua);
}

.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 430px;
  isolation: isolate;
}

.hero-visual::before {
  position: absolute;
  z-index: -1;
  width: 82%;
  height: 82%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(78, 226, 214, 0.3), rgba(78, 226, 214, 0) 68%);
  content: "";
  filter: blur(12px);
}

.hero-icon {
  width: min(78%, 380px);
  border: 8px solid rgba(255, 242, 195, 0.1);
  border-radius: 28%;
  box-shadow: var(--shadow);
  transform: rotate(3deg);
}

.floating-note {
  position: absolute;
  max-width: 190px;
  padding: 0.8rem 1rem;
  border: 1px solid rgba(255, 242, 195, 0.18);
  border-radius: 1rem;
  background: rgba(33, 22, 50, 0.9);
  box-shadow: var(--shadow);
  color: var(--cream);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.78rem;
  line-height: 1.35;
}

.floating-note--top {
  top: 5%;
  right: 0;
  color: var(--yellow);
  transform: rotate(7deg);
}

.floating-note--bottom {
  bottom: 8%;
  left: 0;
  color: var(--aqua);
  transform: rotate(-6deg);
}

.section {
  padding: 5.5rem 0;
}

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

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2rem;
}

.section-heading p {
  max-width: 470px;
  margin-bottom: 0.3rem;
  color: var(--muted);
}

.stat-grid,
.feature-grid,
.support-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.stat-card,
.feature-card,
.support-card {
  min-height: 100%;
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-radius: 1.2rem;
  background: linear-gradient(145deg, rgba(42, 29, 62, 0.96), rgba(33, 22, 50, 0.76));
}

.stat-card strong {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--yellow);
  font-size: clamp(2rem, 4vw, 3.5rem);
  letter-spacing: -0.06em;
  line-height: 1;
}

.stat-card span,
.feature-card p,
.support-card p {
  color: var(--muted);
}

.feature-card .feature-mark {
  display: inline-grid;
  width: 2.2rem;
  height: 2.2rem;
  place-items: center;
  margin-bottom: 1rem;
  border-radius: 0.7rem;
  background: rgba(78, 226, 214, 0.13);
  color: var(--aqua);
  font-weight: 900;
}

.feature-card:nth-child(2) .feature-mark {
  background: rgba(255, 214, 91, 0.13);
  color: var(--yellow);
}

.feature-card:nth-child(3) .feature-mark {
  background: rgba(247, 155, 182, 0.13);
  color: var(--pink);
}

.feature-card:nth-child(4) .feature-mark {
  background: rgba(141, 110, 232, 0.15);
  color: #c4b5ff;
}

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

.shot {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 1.25rem;
  background: var(--ink-soft);
}

.shot img {
  width: 100%;
  aspect-ratio: 0.46;
  object-fit: cover;
  object-position: top;
}

.shot figcaption {
  padding: 1rem 1.1rem 1.2rem;
  color: var(--muted);
  font-size: 0.9rem;
}

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

.step {
  position: relative;
  padding: 1.5rem 1.5rem 1.6rem 4.4rem;
  border-top: 1px solid var(--line);
}

.step::before {
  position: absolute;
  top: 1.45rem;
  left: 0;
  display: grid;
  width: 2.6rem;
  height: 2.6rem;
  place-items: center;
  border: 1px solid rgba(78, 226, 214, 0.4);
  border-radius: 50%;
  color: var(--aqua);
  content: counter(step);
  counter-increment: step;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-weight: 800;
}

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

.callout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: clamp(1.5rem, 4vw, 3rem);
  border: 1px solid rgba(78, 226, 214, 0.3);
  border-radius: 1.5rem;
  background: linear-gradient(120deg, rgba(78, 226, 214, 0.14), rgba(247, 155, 182, 0.09));
}

.callout h2 {
  margin-bottom: 0.5rem;
}

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

.site-footer {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 2rem;
  padding: 2.5rem 0 3.5rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.9rem;
}

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

.footer-links a {
  color: var(--muted);
}

.legal-wrap {
  width: min(780px, 100%);
  margin: 0 auto;
  padding: 5rem 0 6rem;
}

.legal-wrap h1 {
  max-width: none;
  margin-bottom: 0.8rem;
  font-size: clamp(2.7rem, 7vw, 5rem);
}

.legal-intro {
  margin-bottom: 3rem;
  color: var(--muted);
  font-size: 1.05rem;
}

.legal-wrap h2 {
  margin-top: 2.75rem;
  font-size: 1.65rem;
}

.legal-wrap p,
.legal-wrap li {
  color: var(--cream-soft);
}

.legal-wrap ul {
  padding-left: 1.35rem;
}

.legal-meta {
  color: var(--aqua);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.legal-language {
  display: inline-block;
  margin-top: 2rem;
  padding: 0.45rem 0.7rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--aqua);
  font-size: 0.9rem;
  text-decoration: none;
}

.support-hero {
  padding: 5rem 0 3.5rem;
}

.support-hero h1 {
  max-width: 730px;
  font-size: clamp(3rem, 8vw, 6rem);
}

.support-hero p {
  color: var(--muted);
  font-size: 1.15rem;
}

.support-card strong {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--cream);
}

.support-card a {
  overflow-wrap: anywhere;
}

.support-note {
  margin-top: 1rem;
  color: var(--muted);
  font-size: 0.9rem;
}

@media (max-width: 820px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-nav {
    justify-content: flex-start;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: 0;
    padding-top: 3rem;
  }

  .hero-visual {
    min-height: 360px;
  }

  .stat-grid,
  .feature-grid,
  .support-grid,
  .screenshots,
  .steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .screenshots .shot:last-child,
  .steps .step:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 560px) {
  .site-shell {
    width: min(100% - 1.4rem, 1120px);
  }

  .site-header {
    padding-top: 1rem;
  }

  .site-nav a {
    padding: 0.4rem 0.52rem;
    font-size: 0.78rem;
  }

  .hero {
    padding: 2rem 0 4rem;
  }

  .hero h1 {
    font-size: clamp(3.2rem, 18vw, 5.2rem);
  }

  .hero-visual {
    min-height: 300px;
  }

  .floating-note {
    max-width: 150px;
    padding: 0.65rem 0.75rem;
    font-size: 0.68rem;
  }

  .section {
    padding: 4rem 0;
  }

  .section-heading,
  .callout,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .stat-grid,
  .feature-grid,
  .support-grid,
  .screenshots,
  .steps {
    grid-template-columns: 1fr;
  }

  .screenshots .shot:last-child,
  .steps .step:last-child {
    grid-column: auto;
  }

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

  .legal-wrap {
    padding: 3.5rem 0 4.5rem;
  }
}

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

  .button {
    transition: none;
  }
}
