:root {
  --ink: #0c0d21;
  --ink-soft: #151834;
  --paper: #f7f3f1;
  --paper-warm: #fffaf6;
  --muted: #8f91a8;
  --line: rgba(255, 255, 255, 0.13);
  --pink: #ff5c7a;
  --violet: #7657f6;
  --lime: #b7e86a;
  --yellow: #ffc857;
  --max: 1180px;
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--paper);
  background: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
  text-decoration: none;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--lime);
  outline-offset: 4px;
}

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

.nav-shell,
.section-shell,
.footer-shell {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.nav-shell {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.brand img {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  box-shadow: 0 8px 22px rgba(118, 87, 246, 0.34);
}

.brand-name {
  font-size: 1.05rem;
}

.brand-name span {
  color: var(--pink);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  color: #c7c8d6;
  font-size: 0.91rem;
}

.nav-links a {
  transition: color 180ms ease;
}

.nav-links a:hover {
  color: var(--lime);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(183, 232, 106, 0.44);
  border-radius: 999px;
  color: var(--lime);
  font-weight: 750;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.nav-cta:hover {
  border-color: var(--lime);
  color: var(--ink);
  background: var(--lime);
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--paper);
  background: transparent;
}

.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: var(--ink);
}

.hero::before,
.hero::after {
  position: absolute;
  z-index: 0;
  width: 340px;
  height: 340px;
  border: 1px solid rgba(255, 92, 122, 0.18);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.hero::before {
  top: 72px;
  left: -190px;
}

.hero::after {
  right: -180px;
  bottom: -220px;
  border-color: rgba(183, 232, 106, 0.2);
}

.hero-shell {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 700px;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.98fr);
  align-items: center;
  gap: 74px;
  padding: 86px 0 96px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 22px;
  color: var(--lime);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 28px;
  height: 2px;
  background: var(--pink);
  content: "";
}

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

h1,
h2,
h3 {
  letter-spacing: -0.055em;
  line-height: 1.05;
}

h1 {
  max-width: 720px;
  margin-bottom: 26px;
  font-size: 5.8rem;
  font-weight: 850;
}

h1 em {
  color: var(--pink);
  font-style: normal;
}

.hero-copy {
  max-width: 610px;
  color: #c7c8d6;
  font-size: 1.25rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 14px;
  font-weight: 800;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

.button-primary {
  color: var(--ink);
  background: var(--lime);
  box-shadow: 0 12px 32px rgba(183, 232, 106, 0.18);
}

.button-primary:hover {
  background: #d0f795;
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.23);
  color: var(--paper);
  background: rgba(255, 255, 255, 0.04);
}

.button-secondary:hover {
  border-color: var(--pink);
  background: rgba(255, 92, 122, 0.12);
}

.hero-note {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.hero-art {
  position: relative;
  min-height: 520px;
}

.hero-photo {
  position: absolute;
  top: 26px;
  right: 12px;
  width: min(100%, 470px);
  aspect-ratio: 0.82;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 34px;
  background: #211f3d;
  box-shadow: 28px 30px 0 rgba(118, 87, 246, 0.24), 0 26px 60px rgba(0, 0, 0, 0.32);
  transform: rotate(3deg);
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-photo::after {
  position: absolute;
  inset: 0;
  border: 14px solid rgba(12, 13, 33, 0.18);
  border-radius: inherit;
  content: "";
  pointer-events: none;
}

.brand-sticker {
  position: absolute;
  z-index: 2;
  bottom: 42px;
  left: 4px;
  display: grid;
  width: 152px;
  height: 152px;
  place-items: center;
  padding: 16px;
  border: 8px solid var(--ink);
  border-radius: 38px;
  background: var(--pink);
  box-shadow: 14px 16px 0 var(--lime);
  transform: rotate(-8deg);
}

.brand-sticker img {
  width: 100%;
  height: 100%;
  border-radius: 22px;
}

.floating-label {
  position: absolute;
  z-index: 3;
  right: 10px;
  bottom: 7px;
  max-width: 205px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  color: var(--ink);
  background: var(--yellow);
  box-shadow: 12px 12px 0 rgba(12, 13, 33, 0.7);
  font-size: 0.84rem;
  font-weight: 800;
  line-height: 1.3;
  transform: rotate(4deg);
}

.section {
  padding: 116px 0;
}

.section-light {
  color: var(--ink);
  background: var(--paper);
}

.section-dark {
  color: var(--paper);
  background: var(--ink-soft);
}

.section-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 48px;
  align-items: end;
  margin-bottom: 50px;
}

.section-kicker {
  margin-bottom: 12px;
  color: var(--pink);
  font-size: 0.8rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section-title {
  margin-bottom: 0;
  font-size: 3.8rem;
}

.section-lede {
  max-width: 560px;
  margin: 0;
  color: #626477;
  font-size: 1.1rem;
}

.section-dark .section-lede {
  color: #c2c4d2;
}

.workflow {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid #dcd9d8;
  border-radius: var(--radius);
  background: #dcd9d8;
}

.workflow-item {
  min-height: 260px;
  padding: 30px;
  background: var(--paper-warm);
}

.workflow-number {
  display: inline-grid;
  width: 40px;
  height: 40px;
  margin-bottom: 36px;
  place-items: center;
  border-radius: 12px;
  color: var(--ink);
  background: var(--lime);
  font-weight: 900;
}

.workflow-item:nth-child(2) .workflow-number {
  background: var(--pink);
}

.workflow-item:nth-child(3) .workflow-number {
  background: var(--violet);
  color: white;
}

.workflow h3 {
  margin-bottom: 10px;
  font-size: 1.45rem;
}

.workflow p {
  margin: 0;
  color: #686978;
}

.feature-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.86fr);
  gap: 72px;
  align-items: center;
}

.feature-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid #dcd9d8;
}

.feature-list li {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  padding: 24px 0;
  border-bottom: 1px solid #dcd9d8;
}

.feature-list strong {
  display: block;
  margin-bottom: 4px;
  font-size: 1.12rem;
}

.feature-list span {
  color: #686978;
}

.feature-icon {
  display: inline-grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 11px;
  color: var(--ink);
  background: var(--lime);
}

.feature-list li:nth-child(2) .feature-icon {
  background: var(--pink);
}

.feature-list li:nth-child(3) .feature-icon {
  background: var(--yellow);
}

.feature-list li:nth-child(4) .feature-icon {
  color: white;
  background: var(--violet);
}

.feature-image {
  overflow: hidden;
  border-radius: 28px;
  background: #ded7d0;
  box-shadow: 20px 22px 0 rgba(118, 87, 246, 0.18);
  transform: rotate(-2deg);
}

.feature-image img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.quote-band {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--pink);
}

.quote {
  display: grid;
  grid-template-columns: 0.25fr 1fr 0.25fr;
  gap: 24px;
  align-items: center;
  padding: 70px 0;
  color: var(--ink);
}

.quote-mark {
  color: rgba(12, 13, 33, 0.3);
  font-size: 7rem;
  font-weight: 900;
  line-height: 0.6;
}

.quote p {
  max-width: 760px;
  margin: 0;
  font-size: 3.2rem;
  font-weight: 850;
  letter-spacing: -0.05em;
  line-height: 1.06;
}

.quote-side {
  justify-self: end;
  width: 72px;
  height: 72px;
  border: 14px solid var(--lime);
  border-radius: 50%;
}

.download {
  background: var(--ink);
}

.download-shell {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
  padding: 78px 0;
}

.download h2 {
  max-width: 720px;
  margin-bottom: 12px;
  font-size: 3.5rem;
}

.download p {
  max-width: 620px;
  margin: 0;
  color: #c2c4d2;
}

.store-placeholder {
  display: grid;
  min-width: 190px;
  min-height: 72px;
  place-items: center;
  padding: 16px;
  border: 1px dashed rgba(183, 232, 106, 0.6);
  border-radius: 16px;
  color: var(--lime);
  text-align: center;
  font-size: 0.82rem;
  font-weight: 800;
}

.site-footer {
  border-top: 1px solid var(--line);
  color: #aeb0bf;
  background: var(--ink);
}

.footer-shell {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  padding: 34px 0 42px;
}

.footer-copy {
  margin: 12px 0 0;
  color: #7e8097;
  font-size: 0.88rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  font-size: 0.88rem;
}

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

/* Privacy page */
.legal-page {
  color: var(--ink);
  background: var(--paper);
}

.legal-page .site-header {
  color: var(--paper);
}

.legal-page .brand {
  color: var(--paper);
}

.legal-hero {
  padding: 92px 0 60px;
  color: var(--paper);
  background: var(--ink);
}

.legal-hero h1 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: 5rem;
}

.legal-hero p {
  max-width: 680px;
  margin-bottom: 0;
  color: #c7c8d6;
}

.draft-banner {
  margin-top: 28px;
  padding: 14px 16px;
  border-left: 4px solid var(--yellow);
  color: var(--ink);
  background: var(--yellow);
  font-size: 0.92rem;
  font-weight: 750;
}

.legal-layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 760px);
  gap: 64px;
  align-items: start;
  padding: 76px 0 110px;
}

.legal-index {
  position: sticky;
  top: 112px;
  display: grid;
  gap: 10px;
  color: #6b6d7e;
  font-size: 0.85rem;
}

.legal-index a:hover {
  color: var(--pink);
}

.legal-section {
  padding-bottom: 38px;
  border-bottom: 1px solid #dedad8;
}

.legal-section + .legal-section {
  padding-top: 38px;
}

.legal-section h2 {
  margin-bottom: 15px;
  font-size: 1.85rem;
}

.legal-section p,
.legal-section li {
  color: #565868;
}

.legal-section ul {
  margin: 12px 0 0;
  padding-left: 20px;
}

.legal-section li + li {
  margin-top: 8px;
}

.legal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin-top: 24px;
  color: #b5b7c4;
  font-size: 0.9rem;
}

.legal-contact {
  color: var(--pink);
  font-weight: 800;
}

@media (max-width: 900px) {
  .hero-shell,
  .feature-layout,
  .section-intro,
  .download-shell,
  .legal-layout {
    grid-template-columns: 1fr;
  }

  .hero-shell {
    gap: 34px;
    padding-top: 64px;
  }

  .hero-art {
    min-height: 480px;
    max-width: 570px;
    margin: 0 auto;
    width: 100%;
  }

  .section-intro {
    gap: 20px;
  }

  .legal-index {
    position: static;
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
    padding-bottom: 8px;
    border-bottom: 1px solid #dedad8;
  }

  .legal-layout {
    gap: 24px;
  }
}

@media (max-width: 680px) {
  .nav-shell,
  .section-shell,
  .footer-shell {
    width: min(var(--max), calc(100% - 28px));
  }

  .nav-shell {
    min-height: 68px;
  }

  .menu-button {
    display: inline-grid;
    place-items: center;
  }

  .nav-links {
    position: absolute;
    top: 68px;
    right: 14px;
    left: 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: var(--ink-soft);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    padding: 12px;
  }

  .nav-cta {
    justify-content: center;
    margin-top: 4px;
  }

  .hero-shell {
    min-height: auto;
    padding: 58px 0 74px;
  }

  h1 {
    font-size: 3rem;
  }

  .hero-copy {
    font-size: 1.08rem;
  }

  .section-title {
    font-size: 2.4rem;
  }

  .quote p {
    font-size: 2.3rem;
  }

  .download h2 {
    font-size: 2.2rem;
  }

  .legal-hero h1 {
    font-size: 3rem;
  }

  .hero-art {
    min-height: 390px;
  }

  .hero-photo {
    top: 10px;
    right: 8px;
    width: 84%;
    border-radius: 24px;
  }

  .brand-sticker {
    bottom: 28px;
    left: 0;
    width: 108px;
    height: 108px;
    padding: 10px;
    border-width: 6px;
    border-radius: 28px;
    box-shadow: 9px 10px 0 var(--lime);
  }

  .floating-label {
    right: 0;
    bottom: 4px;
    max-width: 160px;
    padding: 10px 12px;
    font-size: 0.76rem;
  }

  .section {
    padding: 76px 0;
  }

  .workflow {
    grid-template-columns: 1fr;
  }

  .workflow-item {
    min-height: auto;
  }

  .workflow-number {
    margin-bottom: 22px;
  }

  .feature-layout {
    gap: 38px;
  }

  .quote {
    grid-template-columns: 48px 1fr;
    padding: 52px 0;
  }

  .quote-side {
    display: none;
  }

  .quote-mark {
    font-size: 4.5rem;
  }

  .download-shell {
    gap: 28px;
    padding: 64px 0;
  }

  .footer-shell {
    grid-template-columns: 1fr;
  }

  .legal-hero {
    padding: 62px 0 44px;
  }

  .legal-layout {
    padding: 48px 0 72px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
