:root {
  --ink: #202436;
  --muted: #626675;
  --berry: #dc235e;
  --berry-dark: #bd194c;
  --mint: #8bd7c8;
  --sky: #9fcde9;
  --sun: #f5c95d;
  --cream: #fff8ef;
  --paper: #fffdf8;
  --line: rgba(32, 36, 54, 0.12);
  --shadow: 0 24px 70px rgba(99, 73, 43, 0.12);
  color: var(--ink);
  background: var(--cream);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 0;
  background: var(--cream);
}

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

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

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 20;
  transform: translateY(-150%);
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  padding: 10px 14px;
  transition: transform 160ms ease;
}

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

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(100% - 48px, 1360px);
  margin: 0 auto;
  padding: 34px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--berry);
  font-size: 28px;
  font-weight: 800;
}

.small-brand {
  font-size: 20px;
}

.brand-mark {
  position: relative;
  display: inline-grid;
  grid-template-columns: repeat(2, 14px);
  grid-template-rows: repeat(2, 14px);
  gap: 2px;
  width: 32px;
  height: 36px;
  transform: rotate(-10deg);
}

.brand-mark span {
  border-radius: 999px;
  background: var(--berry);
}

.brand-mark span:nth-child(2),
.brand-mark span:nth-child(3) {
  background: #f26b8f;
}

.brand-mark::before,
.brand-mark::after {
  content: "";
  position: absolute;
  top: -12px;
  width: 11px;
  height: 20px;
  border-radius: 999px 999px 0 999px;
  background: var(--mint);
}

.brand-mark::before {
  left: 4px;
  transform: rotate(-25deg);
}

.brand-mark::after {
  right: 3px;
  transform: rotate(34deg);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.72);
  padding: 6px;
  box-shadow: 0 10px 30px rgba(116, 82, 45, 0.08);
  backdrop-filter: blur(18px);
}

.site-nav a {
  border-radius: 999px;
  padding: 10px 14px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: #fff;
  color: var(--ink);
  outline: none;
}

.mobile-menu {
  display: none;
  position: relative;
}

.mobile-menu summary {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  list-style: none;
  cursor: pointer;
  border: 1px solid rgba(212, 187, 165, 0.55);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.78);
  box-shadow: 0 10px 28px rgba(116, 82, 45, 0.08);
  backdrop-filter: blur(18px);
}

.mobile-menu summary::-webkit-details-marker {
  display: none;
}

.mobile-menu summary span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 2px 0;
  border-radius: 999px;
  background: #9d8c7e;
}

.mobile-menu-panel {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  display: grid;
  min-width: 178px;
  gap: 4px;
  border: 1px solid rgba(212, 187, 165, 0.52);
  border-radius: 22px;
  background: rgba(255, 253, 248, 0.96);
  padding: 8px;
  box-shadow: 0 18px 44px rgba(99, 73, 43, 0.14);
  backdrop-filter: blur(18px);
}

.mobile-menu-panel a {
  border-radius: 16px;
  padding: 12px 14px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.mobile-menu-panel a:hover,
.mobile-menu-panel a:focus-visible {
  background: #fff3f5;
  color: var(--berry);
  outline: none;
}

.hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 88svh;
  overflow: hidden;
  isolation: isolate;
  background: #fff7ed;
}

.hero-image {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(255, 248, 239, 0.98) 0%, rgba(255, 248, 239, 0.88) 28%, rgba(255, 248, 239, 0.26) 56%, rgba(255, 248, 239, 0.1) 100%),
    linear-gradient(180deg, rgba(255, 248, 239, 0.74) 0%, rgba(255, 248, 239, 0) 28%, rgba(255, 248, 239, 0.24) 100%);
}

.hero-content {
  width: min(100% - 48px, 1360px);
  margin: 0 auto;
  padding: 128px 0 76px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--berry);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

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

h1 {
  max-width: 560px;
  margin-bottom: 22px;
  font-size: clamp(58px, 7vw, 112px);
  line-height: 0.96;
  font-weight: 900;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.04;
  font-weight: 900;
}

h3 {
  margin-bottom: 10px;
  font-size: 24px;
  line-height: 1.15;
}

.hero-copy {
  max-width: 500px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.45;
}

.hero-actions,
.hero-status {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 24px;
  font-weight: 800;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.button-primary {
  background: linear-gradient(135deg, var(--berry), #e84376);
  color: #fff;
  box-shadow: 0 14px 36px rgba(220, 35, 94, 0.28);
}

.button-secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.76);
  color: var(--ink);
  box-shadow: 0 12px 30px rgba(99, 73, 43, 0.08);
}

.hero-status {
  margin-top: 28px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.hero-status span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-status span::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--mint);
}

.hero-status span:nth-child(2)::before {
  background: var(--sun);
}

.hero-status span:nth-child(3)::before {
  background: var(--sky);
}

.section {
  padding: 88px 0;
}

.section-inner {
  width: min(100% - 48px, 1240px);
  margin: 0 auto;
}

.section-heading {
  max-width: 700px;
  margin: 0 auto 38px;
  text-align: center;
}

.section-heading h2 {
  margin-bottom: 0;
}

.how {
  background: linear-gradient(180deg, #fffdf8 0%, #fff7ed 100%);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.step-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 360px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 28px;
  padding: 24px;
  box-shadow: var(--shadow);
}

.step-make {
  background: #e4f6f0;
}

.step-play {
  background: #e8f5ff;
}

.step-share {
  background: #fff0ee;
}

.step-remix {
  background: #fff3c9;
}

.step-card h3 {
  margin: auto 0 10px;
  font-size: 34px;
}

.step-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.4;
}

.step-art {
  position: relative;
  flex: 0 0 220px;
  height: 220px;
}

.mini-card,
.mini-phone {
  position: absolute;
  left: 50%;
  top: 20px;
  width: 110px;
  height: 150px;
  transform: translateX(-50%);
  border: 8px solid rgba(255, 255, 255, 0.86);
  border-radius: 18px;
  background:
    radial-gradient(circle at 54% 42%, #f7a6bd 0 16px, transparent 17px),
    radial-gradient(circle at 52% 52%, #8fd2a4 0 20px, transparent 21px),
    linear-gradient(180deg, #bce6ff 0 52%, #d9f5d0 53% 70%, #ffffff 71%);
  box-shadow: 0 18px 34px rgba(68, 68, 68, 0.12);
}

.tree-card {
  background:
    radial-gradient(circle at 50% 42%, #f3a5b7 0 34px, transparent 35px),
    linear-gradient(90deg, transparent 48%, #8b6b4a 49% 53%, transparent 54%),
    linear-gradient(180deg, #ffdbe3 0 62%, #fffaf2 63%);
}

.island-card {
  background:
    radial-gradient(circle at 58% 38%, #f3a5b7 0 14px, transparent 15px),
    radial-gradient(ellipse at 50% 64%, #83bd79 0 32px, transparent 33px),
    linear-gradient(180deg, #bfe8ff 0 60%, #e8f5ff 61%);
}

.balloon-card {
  transform: translateX(-50%) rotate(0deg);
  background:
    radial-gradient(circle at 50% 45%, #f28d73 0 24px, transparent 25px),
    linear-gradient(180deg, #bfe8ff 0 64%, #d9f5d0 65%);
}

.music-card {
  background:
    radial-gradient(circle at 52% 48%, #202436 0 24px, transparent 25px),
    radial-gradient(circle at 52% 48%, #fff 0 7px, transparent 8px),
    linear-gradient(180deg, #f9d5a9 0 55%, #f9efcf 56%);
}

.mini-phone {
  width: 112px;
  height: 174px;
  border-color: #202436;
  border-width: 7px;
  border-radius: 26px;
}

.tilted {
  transform: translateX(-50%) rotate(-8deg);
}

.fan-left {
  left: 35%;
  transform: rotate(-12deg);
}

.fan-right {
  left: 65%;
  transform: rotate(12deg);
}

.tool-dot,
.share-orb {
  position: absolute;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #fff;
  font-weight: 900;
  box-shadow: 0 14px 28px rgba(69, 74, 92, 0.16);
}

.plus-dot {
  left: 12px;
  top: 58px;
  width: 42px;
  height: 42px;
  background: #fff;
  color: #4f6d8a;
  font-size: 28px;
}

.sparkle-dot {
  right: 18px;
  top: 84px;
  width: 48px;
  height: 48px;
  background: var(--sun);
  font-size: 22px;
}

.share-orb {
  right: 22px;
  bottom: 32px;
  width: 58px;
  height: 58px;
  background: var(--mint);
}

.share-orb::before,
.share-orb::after {
  content: "";
  position: absolute;
  width: 28px;
  height: 3px;
  border-radius: 999px;
  background: #fff;
}

.share-orb::before {
  transform: rotate(-28deg);
}

.share-orb::after {
  transform: rotate(28deg);
}

.sound-wave {
  position: absolute;
  top: 72px;
  width: 54px;
  height: 70px;
  border-left: 4px solid rgba(91, 163, 211, 0.45);
  border-right: 4px solid rgba(91, 163, 211, 0.45);
}

.wave-left {
  left: 22px;
  border-radius: 999px 0 0 999px;
}

.wave-right {
  right: 22px;
  border-radius: 0 999px 999px 0;
}

.features {
  background: #fffdf8;
}

.feature-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: start;
}

.feature-list {
  display: grid;
  gap: 18px;
}

.feature-list article {
  border-top: 1px solid var(--line);
  padding-top: 22px;
}

.feature-list h3 {
  font-size: 22px;
}

.feature-list p,
.closing p,
.legal-content p,
.legal-content li {
  color: var(--muted);
  line-height: 1.7;
}

.closing {
  background:
    radial-gradient(circle at 18% 40%, rgba(139, 215, 200, 0.28), transparent 28%),
    radial-gradient(circle at 82% 34%, rgba(245, 201, 93, 0.32), transparent 24%),
    #fff7ed;
}

.closing-inner {
  max-width: 760px;
  text-align: center;
}

.closing-inner p {
  margin-bottom: 26px;
  font-size: 18px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(100% - 48px, 1240px);
  margin: 0 auto;
  padding: 34px 0;
  color: var(--muted);
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
  font-weight: 700;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--berry);
  outline: none;
}

.legal-page {
  min-height: 100vh;
  background: #fffdf8;
}

.legal-header {
  position: static;
  border-bottom: 1px solid var(--line);
}

.legal-main {
  width: min(100% - 48px, 900px);
  margin: 0 auto;
  padding: 72px 0 96px;
}

.legal-content h1 {
  margin-bottom: 16px;
  font-size: clamp(42px, 7vw, 76px);
  line-height: 1;
}

.legal-content h2 {
  margin-top: 42px;
  font-size: 26px;
}

.legal-content ul {
  padding-left: 22px;
}

.updated {
  color: var(--muted);
  font-weight: 700;
}

@media (max-width: 980px) {
  .site-header {
    width: min(100% - 32px, 1360px);
    padding: 22px 0;
  }

  .site-nav {
    display: none;
  }

  .mobile-menu {
    display: block;
  }

  .hero {
    min-height: 84svh;
  }

  .hero-image {
    object-position: 62% center;
  }

  .hero-scrim {
    background:
      linear-gradient(180deg, rgba(255, 248, 239, 0.98) 0%, rgba(255, 248, 239, 0.86) 35%, rgba(255, 248, 239, 0.18) 100%),
      linear-gradient(90deg, rgba(255, 248, 239, 0.95) 0%, rgba(255, 248, 239, 0.18) 100%);
  }

  .hero-content {
    width: min(100% - 32px, 720px);
    padding: 104px 0 44px;
    align-self: start;
  }

  h1 {
    max-width: 440px;
    font-size: clamp(46px, 12vw, 72px);
  }

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

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

  .feature-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

@media (max-width: 640px) {
  body {
    background:
      linear-gradient(180deg, #fff5ec 0%, #fffaf4 42%, #fff7ed 100%);
  }

  .site-header {
    top: 28px;
    right: 26px;
    left: 26px;
    width: auto;
    padding: 0;
  }

  .brand {
    gap: 10px;
    font-size: 25px;
    line-height: 1;
  }

  .brand-mark {
    grid-template-columns: repeat(2, 11px);
    grid-template-rows: repeat(2, 11px);
    width: 26px;
    height: 30px;
  }

  .brand-mark::before,
  .brand-mark::after {
    top: -10px;
    width: 9px;
    height: 17px;
  }

  .mobile-menu summary {
    width: 52px;
    height: 52px;
  }

  .hero {
    width: calc(100% - 24px);
    min-height: min(780px, calc(100svh - 24px));
    margin: 12px auto 0;
    border: 1px solid rgba(255, 255, 255, 0.74);
    border-radius: 34px;
    background: #fffbf6;
    box-shadow: 0 26px 80px rgba(116, 82, 45, 0.13);
  }

  .hero-image {
    top: 70px;
    right: -18%;
    bottom: auto;
    left: -18%;
    width: 136%;
    max-width: none;
    height: 58%;
    object-fit: cover;
    object-position: 62% 42%;
    filter: saturate(1.04);
  }

  .hero-scrim {
    background:
      linear-gradient(180deg, rgba(255, 251, 246, 0.04) 0%, rgba(255, 251, 246, 0.08) 42%, rgba(255, 251, 246, 0.94) 64%, #fffbf6 100%),
      radial-gradient(circle at 12% 18%, rgba(139, 215, 200, 0.16), transparent 20%),
      radial-gradient(circle at 90% 32%, rgba(220, 35, 94, 0.1), transparent 22%);
  }

  .hero-content {
    width: 100%;
    min-height: min(780px, calc(100svh - 24px));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding: 0 22px 34px;
    text-align: center;
  }

  .hero .eyebrow,
  .hero-copy,
  .button-secondary {
    display: none;
  }

  h1 {
    max-width: 340px;
    margin-bottom: 18px;
    font-size: clamp(38px, 10.8vw, 48px);
    line-height: 1.02;
  }

  .hero-actions {
    width: 100%;
    justify-content: center;
  }

  .hero-actions .button {
    width: min(100%, 288px);
    min-height: 60px;
    font-size: 15px;
  }

  .hero-status {
    display: none;
  }

  .section {
    padding: 58px 0;
  }

  .section-inner,
  .site-footer,
  .legal-main {
    width: min(100% - 32px, 1240px);
  }

  .section-heading {
    margin-bottom: 24px;
  }

  .section-heading .eyebrow {
    margin-bottom: 8px;
    font-size: 12px;
  }

  .section-heading h2 {
    max-width: 340px;
    margin: 0 auto;
    font-size: 29px;
    line-height: 1.12;
  }

  .steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .step-card {
    min-height: 244px;
    border-radius: 24px;
    padding: 16px;
  }

  .step-card h3 {
    order: 0;
    margin: 0 0 12px;
    font-size: clamp(22px, 6.2vw, 28px);
    line-height: 1;
  }

  .step-card p {
    display: none;
  }

  .step-art {
    order: 1;
    flex: 1 1 auto;
    min-height: 146px;
    height: auto;
  }

  .mini-card,
  .mini-phone {
    top: 8px;
    width: 92px;
    height: 126px;
    border-width: 7px;
    border-radius: 16px;
  }

  .mini-phone {
    width: 98px;
    height: 136px;
    border-width: 6px;
    border-radius: 23px;
  }

  .fan-left {
    left: 28%;
  }

  .fan-right {
    left: 71%;
  }

  .plus-dot {
    left: 0;
    top: 40px;
    width: 38px;
    height: 38px;
    font-size: 24px;
  }

  .sparkle-dot {
    right: 2px;
    top: 58px;
    width: 42px;
    height: 42px;
  }

  .share-orb {
    right: 4px;
    bottom: 14px;
    width: 44px;
    height: 44px;
  }

  .share-orb::before,
  .share-orb::after {
    width: 22px;
    height: 2px;
  }

  .sound-wave {
    top: 48px;
    width: 36px;
    height: 50px;
    border-left-width: 3px;
    border-right-width: 3px;
  }

  .wave-left {
    left: 0;
  }

  .wave-right {
    right: 0;
  }

  .features {
    padding-top: 52px;
  }

  .feature-layout {
    gap: 22px;
  }

  .feature-layout h2,
  .closing-inner h2 {
    font-size: 34px;
  }

  .feature-list {
    gap: 12px;
  }

  .feature-list article {
    border: 1px solid rgba(255, 255, 255, 0.74);
    border-radius: 22px;
    background: #fffdf8;
    padding: 18px;
    box-shadow: 0 16px 42px rgba(116, 82, 45, 0.08);
  }

  .feature-list h3 {
    margin-bottom: 8px;
    font-size: 20px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

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