@font-face {
  font-family: "Quicksand";
  src: url("/assets/fonts/quicksand-variable-latin.woff2") format("woff2");
  font-weight: 500 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Nunito";
  src: url("/assets/fonts/nunito-variable-latin.woff2") format("woff2");
  font-weight: 500 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --rose: #b74e63;
  --rose-deep: #7f2439;
  --rose-soft: #fce4ea;
  --plum: #5d3a77;
  --lavender: #eee3f7;
  --cream: #fff8ed;
  --peach: #ffe5d7;
  --mint: #e5f2ea;
  --sky: #e8f1fb;
  --ink: #2a222c;
  --ink-soft: #6f6371;
  --ink-muted: #9c919e;
  --paper: #fffdfb;
  --line: rgba(127, 36, 57, 0.12);
  --shadow: 0 18px 55px -30px rgba(87, 35, 57, 0.42);
  --shadow-soft: 0 12px 32px -24px rgba(87, 35, 57, 0.38);
  --radius: 28px;
  --site: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 5%, rgba(255, 213, 225, 0.9), transparent 28rem),
    radial-gradient(circle at 92% 15%, rgba(226, 208, 244, 0.8), transparent 30rem),
    linear-gradient(180deg, #fffaf8 0%, #fff3f5 52%, #f8f1fa 100%);
  font-family: "Nunito", system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.28;
  background-image: radial-gradient(rgba(183, 78, 99, 0.24) 0.7px, transparent 0.7px);
  background-size: 24px 24px;
}

img { max-width: 100%; height: auto; }
a { color: var(--rose-deep); text-underline-offset: 0.18em; }
a:hover { color: var(--rose); }
button { font: inherit; }
h1, h2, h3, h4 {
  margin: 0;
  font-family: "Quicksand", "Nunito", sans-serif;
  line-height: 1.08;
  letter-spacing: -0.035em;
  text-wrap: balance;
}
h1 { font-size: clamp(2.55rem, 7vw, 5.5rem); }
h2 { font-size: clamp(2rem, 4.6vw, 3.65rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.55rem); letter-spacing: -0.02em; }
p { margin: 0; text-wrap: pretty; }
ul, ol { margin: 0; padding-left: 1.25rem; }

.skip-link {
  position: fixed;
  left: 1rem;
  top: -5rem;
  z-index: 1000;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  color: white;
  background: var(--rose-deep);
  font-weight: 900;
}
.skip-link:focus { top: 1rem; }

.site { width: min(calc(100% - 2.25rem), var(--site)); margin-inline: auto; }
.section { padding-block: clamp(4.25rem, 9vw, 8rem); }
.section--tight { padding-block: clamp(3rem, 6vw, 5rem); }
.section--paper {
  background: rgba(255, 253, 251, 0.68);
  border-block: 1px solid rgba(255, 255, 255, 0.92);
}
.section-head { max-width: 760px; margin-bottom: 2.25rem; }
.section-head p { margin-top: 1rem; color: var(--ink-soft); font-size: 1.08rem; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.85rem;
  color: var(--rose-deep);
  font-family: "Quicksand", sans-serif;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.eyebrow::before { content: "♥"; color: var(--rose); letter-spacing: 0; }
.lede { color: var(--ink-soft); font-size: clamp(1.05rem, 2vw, 1.28rem); line-height: 1.65; }
.small { color: var(--ink-soft); font-size: 0.9rem; }
.text-link { font-weight: 900; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(127, 36, 57, 0.08);
  background: rgba(255, 250, 248, 0.9);
  backdrop-filter: blur(18px);
}
.nav-row { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }
.brand { display: inline-flex; align-items: center; flex: 0 0 auto; }
.brand img { display: block; width: 205px; }
.nav-links { display: flex; align-items: center; justify-content: flex-end; gap: 1.35rem; }
.nav-links a { color: var(--ink-soft); font-size: 0.9rem; font-weight: 900; text-decoration: none; }
.nav-links a:hover { color: var(--rose); }
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 14px;
  color: var(--rose-deep);
  background: white;
  box-shadow: var(--shadow-soft);
  cursor: pointer;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 52px;
  padding: 0.8rem 1.35rem;
  border: 0;
  border-radius: 999px;
  color: white;
  background: linear-gradient(135deg, var(--rose), var(--rose-deep));
  box-shadow: 0 14px 30px -16px rgba(127, 36, 57, 0.8);
  font-family: "Quicksand", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.button:hover { color: white; transform: translateY(-2px); box-shadow: 0 18px 34px -16px rgba(127, 36, 57, 0.85); }
.button--soft { color: var(--rose-deep); background: white; box-shadow: var(--shadow-soft); }
.button--soft:hover { color: var(--rose); }
.button--small { min-height: 42px; padding: 0.62rem 1rem; font-size: 0.82rem; }
.button-row { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 1.7rem; }

.hero { padding-block: clamp(4rem, 9vw, 8rem); overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(330px, 0.92fr); gap: clamp(2.5rem, 6vw, 6rem); align-items: center; }
.hero-copy { max-width: 760px; }
.hero-copy h1 span { color: var(--rose); }
.hero-copy .lede { max-width: 65ch; margin-top: 1.35rem; }
.hero-note { display: flex; flex-wrap: wrap; gap: 0.55rem; margin-top: 1.35rem; }
.chip {
  display: inline-flex;
  align-items: center;
  padding: 0.42rem 0.75rem;
  border: 1px solid rgba(255,255,255,0.8);
  border-radius: 999px;
  color: var(--ink-soft);
  background: rgba(255,255,255,0.72);
  font-size: 0.8rem;
  font-weight: 900;
}
.hero-art {
  position: relative;
  min-height: 470px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,0.9);
  border-radius: 44px;
  background: linear-gradient(145deg, rgba(255,255,255,0.82), rgba(255,221,230,0.78) 52%, rgba(229,211,244,0.82));
  box-shadow: var(--shadow);
  overflow: hidden;
}
.hero-art::before,
.hero-art::after { position: absolute; color: rgba(183,78,99,0.4); font-size: 2rem; }
.hero-art::before { content: "♡  ✦"; top: 12%; left: 10%; transform: rotate(-8deg); }
.hero-art::after { content: "✦  ♡"; right: 10%; bottom: 12%; transform: rotate(8deg); }
.mochi-wrap { position: relative; width: 280px; height: 300px; display: grid; place-items: end center; }
.mochi-shadow { position: absolute; left: 50%; bottom: 23px; width: 190px; height: 30px; border-radius: 50%; background: rgba(76,39,57,0.15); transform: translateX(-50%); filter: blur(5px); }
.mochi {
  position: relative;
  width: 245px;
  height: 230px;
  border: 7px solid rgba(127,36,57,0.22);
  border-radius: 48% 52% 45% 48% / 44% 46% 54% 56%;
  background: linear-gradient(145deg, #ffd8a9 0%, #f3a4b5 48%, #b985d6 100%);
  box-shadow: inset 20px 22px 35px rgba(255,255,255,0.45), 0 28px 38px -25px rgba(93,58,119,0.75);
  animation: bob 4s ease-in-out infinite;
}
.mochi::before,
.mochi::after { content: ""; position: absolute; top: 92px; width: 16px; height: 23px; border-radius: 50%; background: #443442; box-shadow: inset 4px 3px 0 rgba(255,255,255,0.55); }
.mochi::before { left: 68px; }
.mochi::after { right: 68px; }
.mochi-smile { position: absolute; left: 50%; top: 133px; width: 46px; height: 25px; border-bottom: 6px solid #603d52; border-radius: 0 0 50% 50%; transform: translateX(-50%); }
.mochi-cheek { position: absolute; top: 128px; width: 33px; height: 15px; border-radius: 50%; background: rgba(214,70,104,0.28); }
.mochi-cheek--left { left: 32px; }
.mochi-cheek--right { right: 32px; }
.sprout { position: absolute; top: -55px; left: 50%; width: 12px; height: 65px; border-radius: 10px; background: #5d8c75; transform: translateX(-50%) rotate(3deg); transform-origin: bottom; }
.sprout::before,
.sprout::after { content: ""; position: absolute; top: 0; width: 58px; height: 32px; background: #9cd8b7; border: 5px solid rgba(55,103,78,0.28); }
.sprout::before { right: 4px; border-radius: 70% 20% 70% 25%; transform: rotate(16deg); }
.sprout::after { left: 4px; border-radius: 20% 70% 25% 70%; transform: rotate(-16deg); }
@keyframes bob { 50% { transform: translateY(-10px) rotate(1deg); } }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } .mochi { animation: none; } * { transition-duration: 0.01ms !important; } }

.grid-2, .grid-3, .grid-4 { display: grid; gap: 1.25rem; }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.card {
  padding: clamp(1.35rem, 3vw, 2rem);
  border: 1px solid rgba(255,255,255,0.92);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.78);
  box-shadow: var(--shadow-soft);
}
.card h3 + p, .card h2 + p { margin-top: 0.72rem; }
.card p, .card li { color: var(--ink-soft); }
.card ul { margin-top: 0.85rem; }
.card .text-link { display: inline-block; margin-top: 1rem; }
.card--blush { background: linear-gradient(145deg, white, var(--rose-soft)); }
.card--lavender { background: linear-gradient(145deg, white, var(--lavender)); }
.card--mint { background: linear-gradient(145deg, white, var(--mint)); }
.card--peach { background: linear-gradient(145deg, white, var(--peach)); }
.icon-bubble {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: 1.15rem;
  border-radius: 17px;
  color: var(--rose-deep);
  background: rgba(255,255,255,0.74);
  font-size: 1.35rem;
  box-shadow: var(--shadow-soft);
}

.screenshot-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.25rem; margin-top: 2.25rem; }
.product-shot { margin: 0; padding: 0.85rem; border: 1px solid rgba(255,255,255,0.95); border-radius: 30px; background: rgba(255,255,255,0.72); box-shadow: var(--shadow-soft); }
.product-shot img { display: block; width: 100%; border-radius: 22px; }
.product-shot figcaption { padding: 0.8rem 0.25rem 0.15rem; color: var(--ink-soft); font-size: 0.86rem; font-weight: 800; text-align: center; }

.split { display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr); gap: clamp(2rem, 6vw, 5rem); align-items: center; }
.split--reverse > :first-child { order: 2; }
.feature-list { display: grid; gap: 0.9rem; margin-top: 1.5rem; padding: 0; list-style: none; }
.feature-list li { position: relative; padding-left: 2rem; color: var(--ink-soft); }
.feature-list li::before { content: "♥"; position: absolute; left: 0; color: var(--rose); }

.steps { counter-reset: step; display: grid; gap: 1rem; }
.step { counter-increment: step; position: relative; padding: 1.4rem 1.4rem 1.4rem 4.5rem; border-radius: 22px; background: rgba(255,255,255,0.76); box-shadow: var(--shadow-soft); }
.step::before { content: counter(step); position: absolute; left: 1.25rem; top: 1.25rem; width: 2.2rem; height: 2.2rem; display: grid; place-items: center; border-radius: 50%; color: white; background: var(--rose); font-weight: 900; }
.step p { margin-top: 0.35rem; color: var(--ink-soft); }

.audience-card { display: flex; flex-direction: column; min-height: 100%; }
.audience-card .text-link { margin-top: auto; padding-top: 1.4rem; }
.link-band { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.4rem 1.6rem; border-radius: 24px; background: rgba(255,255,255,0.72); box-shadow: var(--shadow-soft); }

.faq-list { display: grid; gap: 0.85rem; }
.faq-list details { border: 1px solid rgba(255,255,255,0.9); border-radius: 21px; background: rgba(255,255,255,0.78); box-shadow: var(--shadow-soft); }
.faq-list summary { position: relative; padding: 1.15rem 3.2rem 1.15rem 1.25rem; cursor: pointer; font-family: "Quicksand", sans-serif; font-weight: 700; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; right: 1.2rem; top: 50%; color: var(--rose); font-size: 1.5rem; transform: translateY(-50%); }
.faq-list details[open] summary::after { content: "−"; }
.faq-answer { padding: 0 1.25rem 1.25rem; color: var(--ink-soft); }
.faq-answer a { font-weight: 900; }

.cta-panel { position: relative; padding: clamp(2rem, 6vw, 5rem); border-radius: 40px; text-align: center; background: linear-gradient(135deg, #ffe5dc, #f9cbd8 50%, #e5d6f2); box-shadow: var(--shadow); overflow: hidden; }
.cta-panel::before, .cta-panel::after { content: "♡"; position: absolute; color: rgba(183,78,99,0.18); font-size: 8rem; }
.cta-panel::before { left: -1rem; top: -2rem; }
.cta-panel::after { right: -1rem; bottom: -3rem; transform: rotate(20deg); }
.cta-panel > * { position: relative; z-index: 1; }
.cta-panel p { max-width: 630px; margin: 1rem auto 0; color: var(--ink-soft); font-size: 1.08rem; }
.cta-panel .button-row { justify-content: center; }

.breadcrumbs { padding-top: 1.4rem; color: var(--ink-muted); font-size: 0.82rem; font-weight: 800; }
.breadcrumbs ol { display: flex; flex-wrap: wrap; gap: 0.5rem; padding: 0; list-style: none; }
.breadcrumbs li:not(:last-child)::after { content: "/"; margin-left: 0.5rem; color: #c5b8c1; }
.breadcrumbs a { color: var(--ink-soft); text-decoration: none; }

.article-hero { padding-block: clamp(3.5rem, 8vw, 6.5rem); }
.article-hero__inner { max-width: 900px; }
.article-hero h1 { font-size: clamp(2.55rem, 6vw, 4.8rem); }
.article-hero .lede { margin-top: 1.2rem; }
.article-meta { display: flex; flex-wrap: wrap; gap: 0.65rem; margin-top: 1.2rem; color: var(--ink-muted); font-size: 0.85rem; font-weight: 800; }
.article-layout { display: grid; grid-template-columns: minmax(0, 760px) minmax(230px, 1fr); gap: clamp(2.5rem, 7vw, 6rem); align-items: start; }
.article-body { padding: clamp(1.5rem, 4vw, 3rem); border-radius: 32px; background: rgba(255,255,255,0.76); box-shadow: var(--shadow-soft); }
.article-body h2 { margin-top: 2.75rem; font-size: clamp(1.75rem, 3vw, 2.45rem); }
.article-body h2:first-child { margin-top: 0; }
.article-body h3 { margin-top: 1.8rem; }
.article-body p, .article-body ul, .article-body ol { margin-top: 1rem; color: var(--ink-soft); }
.article-body strong { color: var(--ink); }
.article-aside { position: sticky; top: 108px; display: grid; gap: 1rem; }
.article-aside .card { padding: 1.25rem; border-radius: 22px; }
.article-aside ul { display: grid; gap: 0.55rem; padding: 0; list-style: none; }
.article-aside a { font-size: 0.9rem; font-weight: 900; text-decoration: none; }
.callout { margin-top: 1.7rem; padding: 1.25rem 1.35rem; border-left: 5px solid var(--rose); border-radius: 0 18px 18px 0; background: var(--rose-soft); color: var(--ink-soft); }
.blog-card { display: flex; flex-direction: column; }
.blog-card .text-link { margin-top: auto; padding-top: 1.25rem; }

.site-footer { padding-block: 4rem 6rem; border-top: 1px solid var(--line); background: rgba(255,255,255,0.3); }
.footer-grid { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 2rem; }
.footer-brand img { width: 220px; }
.footer-brand p { max-width: 360px; margin-top: 0.9rem; color: var(--ink-soft); font-size: 0.9rem; }
.footer-col h2 { margin-bottom: 0.75rem; color: var(--ink-muted); font-size: 0.76rem; letter-spacing: 0.12em; text-transform: uppercase; }
.footer-col a { display: block; padding-block: 0.22rem; color: var(--ink-soft); font-size: 0.88rem; font-weight: 800; text-decoration: none; }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid var(--line); color: var(--ink-muted); font-size: 0.8rem; font-weight: 800; }
.mobile-download { display: none; }

@media (max-width: 960px) {
  .hero-grid, .split, .article-layout { grid-template-columns: 1fr; }
  .split--reverse > :first-child { order: initial; }
  .hero-art { min-height: 420px; max-width: 620px; width: 100%; margin-inline: auto; }
  .grid-3, .grid-4, .screenshot-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .article-aside { position: static; grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 800px) {
  .nav-toggle { display: inline-grid; place-items: center; }
  .nav-links { position: absolute; top: 70px; left: 1rem; right: 1rem; display: none; align-items: stretch; padding: 1rem; border-radius: 22px; background: #fffaf8; box-shadow: var(--shadow); }
  .nav-links.is-open { display: grid; }
  .nav-links a { padding: 0.65rem 0.75rem; }
  .nav-links .button { color: white; }
  .brand img { width: 180px; }
}

@media (max-width: 640px) {
  body { font-size: 16px; padding-bottom: 72px; }
  .site { width: min(calc(100% - 1.5rem), var(--site)); }
  .hero { padding-top: 3.25rem; }
  .hero-art { min-height: 350px; border-radius: 32px; }
  .mochi-wrap { transform: scale(0.82); }
  .grid-2, .grid-3, .grid-4, .screenshot-grid, .article-aside, .footer-grid { grid-template-columns: 1fr; }
  .button-row { align-items: stretch; }
  .button-row .button { flex: 1 1 100%; }
  .card { border-radius: 22px; }
  .cta-panel { border-radius: 28px; }
  .mobile-download { position: fixed; left: 0.75rem; right: 0.75rem; bottom: 0.65rem; z-index: 120; display: inline-flex; min-height: 54px; }
  .site-footer { padding-bottom: 4rem; }
}
