:root {
  --ink: #1b1917;
  --studio: #25231f;
  --raised: #34302a;
  --paper: #fbf4e4;
  --paper-dim: #d8d0bf;
  --coral: #ff6b52;
  --lilac: #9996ff;
  --lime: #cce85c;
  --sky: #4fb8db;
  --line: rgba(251, 244, 228, 0.13);
  --shadow: 5px 6px 0 rgba(0, 0, 0, 0.24);
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: ui-rounded, "SF Pro Rounded", "SF Pro Display", -apple-system,
    BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

code {
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--studio);
  padding: 2px 6px;
  color: var(--lime);
  font-family: "SF Mono", ui-monospace, monospace;
  font-size: 0.88em;
}

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

.shell {
  width: min(1120px, calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  gap: 24px;
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--paper);
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -1px;
  text-decoration: none;
}

.wordmark-dot,
.accent {
  color: var(--coral);
}

.brand-mark {
  position: relative;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: var(--coral);
  color: var(--ink);
  font-size: 28px;
  font-weight: 950;
  line-height: 1;
}

.brand-mark::after {
  position: absolute;
  right: 5px;
  bottom: 5px;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--lime);
  content: "";
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav a {
  color: var(--paper-dim);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--paper);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 0 20px;
  border: 0;
  border-radius: 16px;
  background: var(--coral);
  box-shadow: var(--shadow);
  color: var(--ink);
  font-weight: 900;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.button:hover,
.button:focus-visible {
  box-shadow: 3px 4px 0 rgba(0, 0, 0, 0.24);
  transform: translate(2px, 2px);
}

.button.secondary {
  background: var(--paper);
}

.button.small {
  min-height: 40px;
  padding-inline: 15px;
  border-radius: 13px;
  box-shadow: none;
  font-size: 13px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--coral);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero {
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  align-items: center;
  gap: clamp(36px, 7vw, 92px);
  min-height: 660px;
  padding: 60px 0 88px;
}

.hero h1 {
  max-width: 680px;
  margin: 0;
  font-size: clamp(48px, 7.3vw, 86px);
  font-weight: 950;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.hero-copy {
  max-width: 590px;
  margin: 26px 0 30px;
  color: var(--paper-dim);
  font-size: clamp(18px, 2.1vw, 21px);
  line-height: 1.55;
}

.actions,
.proof-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.proof-row {
  margin-top: 26px;
  color: var(--paper-dim);
  font-size: 13px;
  font-weight: 700;
}

.proof-row span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.proof-row span::before {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--lime);
  content: "";
}

.hero-art {
  position: relative;
  display: grid;
  min-height: 510px;
  place-items: center;
}

.studio-card {
  position: relative;
  width: min(100%, 430px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 38px;
  background: var(--studio);
  box-shadow: 16px 19px 0 rgba(0, 0, 0, 0.25);
  transform: rotate(2deg);
}

.studio-top,
.studio-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
}

.studio-label {
  color: var(--paper-dim);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.tracks {
  display: grid;
  gap: 10px;
  padding: 2px 20px 16px;
}

.track {
  position: relative;
  height: 76px;
  overflow: hidden;
  border-radius: 17px;
  background: var(--coral);
}

.track:nth-child(2) {
  width: 84%;
  margin-left: auto;
  background: var(--lilac);
}

.wave {
  position: absolute;
  inset: 15px 14px;
  opacity: 0.65;
  background: repeating-linear-gradient(
    90deg,
    var(--ink) 0 3px,
    transparent 3px 9px
  );
  clip-path: polygon(
    0 45%, 5% 20%, 10% 68%, 15% 35%, 20% 76%, 25% 18%, 30% 61%,
    35% 31%, 40% 82%, 45% 43%, 50% 13%, 55% 70%, 60% 28%, 65% 66%,
    70% 39%, 75% 88%, 80% 24%, 85% 72%, 90% 34%, 95% 61%, 100% 45%,
    100% 55%, 95% 69%, 90% 48%, 85% 80%, 80% 35%, 75% 94%, 70% 52%,
    65% 75%, 60% 39%, 55% 79%, 50% 25%, 45% 58%, 40% 90%, 35% 44%,
    30% 72%, 25% 31%, 20% 86%, 15% 46%, 10% 79%, 5% 31%, 0 55%
  );
}

.play-button {
  display: grid;
  width: 64px;
  height: 64px;
  border-radius: 999px;
  background: var(--lime);
  color: var(--ink);
  font-size: 24px;
  font-weight: 950;
  place-items: center;
}

.buddy-pair {
  position: absolute;
  right: -18px;
  bottom: -18px;
  display: flex;
  align-items: flex-end;
  gap: 8px;
  transform: rotate(-4deg);
}

.buddy {
  position: relative;
  width: 66px;
  height: 116px;
  border-radius: 999px;
  background: var(--coral);
  box-shadow: var(--shadow);
}

.buddy:nth-child(2) {
  height: 132px;
  background: var(--lilac);
}

.buddy::before {
  position: absolute;
  top: 38px;
  left: 20px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ink);
  box-shadow: 19px 0 0 var(--ink);
  content: "";
}

.buddy::after {
  position: absolute;
  top: 62px;
  left: 25px;
  width: 18px;
  height: 4px;
  border-radius: 999px;
  background: var(--ink);
  content: "";
}

.section {
  padding: 88px 0;
}

.section.tint {
  border-block: 1px solid var(--line);
  background: var(--studio);
}

.section-head {
  display: grid;
  grid-template-columns: 1fr minmax(260px, 520px);
  align-items: end;
  gap: 40px;
  margin-bottom: 38px;
}

.section h2,
.legal h1 {
  margin: 0;
  font-size: clamp(35px, 5vw, 56px);
  font-weight: 950;
  letter-spacing: -0.045em;
  line-height: 1.04;
}

.section-intro {
  margin: 0;
  color: var(--paper-dim);
  font-size: 17px;
}

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

.feature,
.step,
.legal-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--studio);
  padding: 26px;
}

.feature-icon {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 28px;
  border-radius: 15px;
  background: var(--coral);
  color: var(--ink);
  font-size: 20px;
  font-weight: 950;
  place-items: center;
}

.feature:nth-child(2) .feature-icon,
.feature:nth-child(5) .feature-icon {
  background: var(--lilac);
}

.feature:nth-child(3) .feature-icon,
.feature:nth-child(6) .feature-icon {
  background: var(--lime);
}

.feature h3,
.step h3,
.legal-card h2 {
  margin: 0 0 8px;
  font-size: 19px;
  letter-spacing: -0.02em;
}

.feature p,
.step p,
.legal-card p,
.legal-card li {
  margin: 0;
  color: var(--paper-dim);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.step-number {
  display: inline-grid;
  width: 38px;
  height: 38px;
  margin-bottom: 34px;
  border-radius: 50%;
  background: var(--paper);
  color: var(--ink);
  font-weight: 950;
  place-items: center;
}

.template-strip {
  display: flex;
  gap: 12px;
  margin-top: 36px;
  overflow: hidden;
}

.template-chip {
  flex: 0 0 auto;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--raised);
  color: var(--paper-dim);
  font-size: 13px;
  font-weight: 800;
}

.privacy-band {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: center;
  gap: clamp(36px, 7vw, 90px);
}

.privacy-art {
  position: relative;
  min-height: 300px;
}

.privacy-art .buddy:first-child {
  position: absolute;
  left: 16%;
  bottom: 12%;
  width: 90px;
  height: 166px;
}

.privacy-art .buddy:last-child {
  position: absolute;
  right: 18%;
  bottom: 19%;
  width: 82px;
  height: 144px;
  background: var(--lilac);
}

.privacy-art::after {
  position: absolute;
  inset: 12% 5% 5%;
  border: 2px dashed rgba(204, 232, 92, 0.42);
  border-radius: 50%;
  content: "";
}

.faq {
  max-width: 820px;
  margin-inline: auto;
}

.faq details {
  border-bottom: 1px solid var(--line);
  padding: 22px 4px;
}

.faq summary {
  cursor: pointer;
  font-size: 18px;
  font-weight: 850;
}

.faq p {
  max-width: 720px;
  margin: 12px 0 0;
  color: var(--paper-dim);
}

.cta {
  position: relative;
  overflow: hidden;
  border-radius: 36px;
  background: var(--coral);
  padding: clamp(38px, 7vw, 76px);
  color: var(--ink);
}

.cta::after {
  position: absolute;
  right: -70px;
  bottom: -120px;
  width: 300px;
  height: 300px;
  border: 48px solid rgba(251, 244, 228, 0.28);
  border-radius: 50%;
  content: "";
}

.cta h2 {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

.cta p {
  position: relative;
  z-index: 1;
  max-width: 580px;
  margin: 18px 0 28px;
  font-size: 18px;
  font-weight: 650;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 30px;
  padding: 50px 0;
  color: var(--paper-dim);
  font-size: 13px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
}

.footer-links a {
  text-decoration: none;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--paper);
}

.legal {
  width: min(800px, calc(100% - 40px));
  margin: 0 auto;
  padding: 70px 0 100px;
}

.legal .lede {
  margin: 22px 0 38px;
  color: var(--paper-dim);
  font-size: 19px;
}

.updated {
  margin-top: 12px;
  color: var(--paper-dim);
  font-size: 13px;
}

.legal-card {
  margin-top: 14px;
}

.legal-card ul,
.legal-card ol {
  margin: 12px 0 0;
  padding-left: 22px;
}

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

.legal-card a {
  color: var(--sky);
}

.language-jump {
  display: flex;
  gap: 12px;
  margin: 24px 0 40px;
}

.skip-link {
  position: fixed;
  left: 12px;
  top: -60px;
  z-index: 10;
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--paper);
  color: var(--ink);
}

.skip-link:focus {
  top: 12px;
}

@media (max-width: 860px) {
  .hero,
  .privacy-band,
  .section-head {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 38px;
  }

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

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

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

@media (max-width: 620px) {
  .shell,
  .legal {
    width: min(100% - 28px, 1120px);
  }

  .nav > a:not(.button) {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-bottom: 56px;
  }

  .hero h1 {
    font-size: clamp(44px, 15vw, 64px);
  }

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

  .studio-card {
    width: calc(100% - 28px);
  }

  .buddy-pair {
    right: 0;
  }

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

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

  .section {
    padding: 64px 0;
  }

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

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

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
