:root {
  --yellow: #FFE066;
  --lime: #7BED7B;
  --teal: #5DD4D4;
  --magenta: #E85DE8;
  --orange: #FFB366;
  --ink: #1A1A1A;
  --paper: #FFFEF7;
  --muted: #5B625F;
  --border: #1A1A1A;
  --shadow: 0 8px 0 rgba(26,26,26,.12);
  --radius: 24px;
}
* { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 5%, rgba(255,224,102,.65), transparent 28rem),
    radial-gradient(circle at 90% 18%, rgba(123,237,123,.35), transparent 26rem),
    radial-gradient(circle at 50% 100%, rgba(93,212,212,.32), transparent 34rem),
    var(--paper);
  font-family: ui-rounded, "SF Pro Rounded", "Avenir Next", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
}
a { color: inherit; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255,254,247,.92);
  backdrop-filter: blur(14px);
  border-bottom: 2px solid rgba(26,26,26,.08);
}
.nav {
  width: min(1080px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 900;
  font-size: 1.15rem;
}
.logo {
  width: 42px;
  height: 42px;
  display: block;
  border: 2px solid var(--border);
  border-radius: 14px;
  object-fit: cover;
  box-shadow: 0 4px 0 rgba(26,26,26,.15);
}
.nav-links { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.nav-links a {
  text-decoration: none;
  font-weight: 750;
  padding: 8px 12px;
  border-radius: 999px;
  white-space: nowrap;
}
.nav-links a:hover, .nav-links a[aria-current="page"] { background: var(--yellow); }
.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 2px solid var(--border);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 3px 0 rgba(26,26,26,.12);
  cursor: pointer;
  flex-shrink: 0;
}
.nav-toggle-icon {
  display: grid;
  gap: 5px;
  width: 18px;
}
.nav-toggle-icon span {
  display: block;
  height: 2px;
  border-radius: 999px;
  background: var(--ink);
  transition: transform .2s ease, opacity .2s ease;
}
.nav.is-open .nav-toggle-icon span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.is-open .nav-toggle-icon span:nth-child(2) { opacity: 0; }
.nav.is-open .nav-toggle-icon span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
main {
  width: min(900px, calc(100% - 32px));
  margin: 48px auto 80px;
}
main.marketing {
  width: min(1080px, calc(100% - 32px));
}
.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(28px, 6vw, 64px);
  border: 3px solid var(--border);
  border-radius: 34px;
  background: linear-gradient(135deg, rgba(255,224,102,.95), rgba(123,237,123,.72) 48%, rgba(93,212,212,.8));
  box-shadow: var(--shadow);
}
.hero h1 {
  margin: 0 0 10px;
  max-width: 760px;
  font-size: clamp(2.35rem, 7vw, 5rem);
  line-height: .98;
  letter-spacing: -.04em;
}
.hero p { margin: 0; max-width: 680px; font-size: 1.1rem; font-weight: 650; }
.hero .doodle { position: absolute; font-size: 3rem; opacity: .8; transform: rotate(-12deg); }
.hero .doodle.one { right: 5%; top: 12%; }
.hero .doodle.two { right: 14%; bottom: 6%; transform: rotate(10deg); }
.hero-home .hero-grid {
  display: grid;
  gap: 32px;
  align-items: center;
  grid-template-columns: 1.15fr .85fr;
}
.hero-copy { position: relative; z-index: 1; }
.eyebrow {
  margin: 0 0 12px;
  font-size: .92rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.lede { margin-top: 14px !important; font-size: 1.15rem !important; max-width: 36rem !important; }
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 24px;
}
.hero-points {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
  font-weight: 700;
}
.hero-points li::before { content: "✓ "; }
.hero-visual { display: grid; place-items: center; }
.hero-app-icon {
  width: min(280px, 72vw);
  height: auto;
  border: 3px solid var(--border);
  border-radius: 34px;
  box-shadow: 0 12px 0 rgba(26,26,26,.14);
}
.section-label {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: .9rem;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.feature-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  margin-top: 22px;
}
.feature {
  padding: 22px;
  border: 2px solid var(--border);
  border-radius: 18px;
  background: #fff;
}
.feature-icon {
  display: inline-block;
  font-size: 1.6rem;
  margin-bottom: 8px;
}
.feature h3 { margin: 0 0 8px; font-size: 1.15rem; }
.feature p { margin: 0; color: var(--muted); font-weight: 650; }
.steps {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
  counter-reset: step;
}
.steps li {
  counter-increment: step;
  display: grid;
  gap: 4px;
  padding: 18px 18px 18px 58px;
  border: 2px solid var(--border);
  border-radius: 18px;
  background: #fff;
  position: relative;
}
.steps li::before {
  content: counter(step);
  position: absolute;
  left: 16px;
  top: 16px;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border: 2px solid var(--border);
  border-radius: 999px;
  background: var(--yellow);
  font-weight: 900;
}
.steps strong { font-size: 1.05rem; }
.steps span { color: var(--muted); font-weight: 650; }
.pricing-box {
  margin-top: 18px;
  padding: 24px;
  border: 2px solid var(--border);
  border-radius: 22px;
  background: linear-gradient(160deg, rgba(255,224,102,.35), rgba(123,237,123,.18));
}
.pricing-trial { margin: 0 0 10px; font-size: 1.05rem; }
.pricing-price { margin: 0 0 8px; }
.price-amount { font-size: clamp(2rem, 5vw, 2.8rem); font-weight: 900; letter-spacing: -.03em; }
.price-term { font-size: 1.2rem; font-weight: 800; color: var(--muted); }
.pricing-note { margin: 0 0 18px; color: var(--muted); font-weight: 650; max-width: 36rem; }
.store-badge { display: inline-block; line-height: 0; }
.store-badge img { display: block; height: 52px; width: auto; }
.store-soon {
  display: inline-grid;
  gap: 2px;
  padding: 12px 16px;
  border: 2px solid var(--border);
  border-radius: 14px;
  background: rgba(255,255,255,.88);
  box-shadow: 0 4px 0 rgba(26,26,26,.12);
}
.store-soon-label { font-weight: 900; }
.store-soon-note { font-size: .88rem; color: var(--muted); font-weight: 700; }
.cta-secondary {
  background: rgba(255,255,255,.9);
}
.cta-card .hero-actions { margin-top: 16px; }
.contact-form {
  display: grid;
  gap: 18px;
  margin-top: 20px;
}
.form-field {
  display: grid;
  gap: 8px;
  margin: 0;
  border: 0;
  padding: 0;
  min-width: 0;
}
.form-field legend,
.form-field > span {
  font-weight: 800;
  font-size: .95rem;
}
.form-field input,
.form-field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 2px solid var(--border);
  border-radius: 14px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-weight: 650;
}
.form-field textarea { resize: vertical; min-height: 8rem; }
.form-field input:focus,
.form-field textarea:focus {
  outline: 3px solid rgba(255,224,102,.75);
  outline-offset: 2px;
}
.field-hint {
  margin: 0;
  color: var(--muted);
  font-size: .92rem;
  font-weight: 650;
}
.category-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.category-chip {
  padding: 10px 14px;
  border: 2px solid var(--border);
  border-radius: 999px;
  background: #fff;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 3px 0 rgba(26,26,26,.1);
}
.category-chip[aria-pressed="true"] {
  background: var(--yellow);
  box-shadow: 0 3px 0 rgba(26,26,26,.16);
}
.category-chip:hover { background: rgba(255,224,102,.45); }
.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.form-actions .cta { border: 0; cursor: pointer; font: inherit; }
.form-status {
  margin: 0;
  padding: 12px 14px;
  border-radius: 12px;
  font-weight: 700;
}
.form-status.error {
  background: rgba(255,179,102,.22);
  border-left: 6px solid var(--orange);
}
.form-success {
  display: grid;
  gap: 12px;
  padding: 20px;
  border: 2px solid var(--border);
  border-radius: 18px;
  background: rgba(123,237,123,.18);
}
.form-success-title {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 900;
}
.form-success .cta { border: 0; cursor: pointer; font: inherit; width: fit-content; }
.honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.card {
  margin-top: 28px;
  padding: clamp(24px, 4vw, 44px);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255,254,247,.96);
  box-shadow: var(--shadow);
}
.meta {
  display: inline-block;
  margin: 0 0 20px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(232,93,232,.13);
  font-weight: 800;
}
h2 { margin-top: 2.1em; line-height: 1.2; font-size: 1.55rem; }
h3 { margin-top: 1.7em; line-height: 1.25; font-size: 1.2rem; }
h2:first-child { margin-top: 0; }
ul, ol { padding-left: 1.3rem; }
li + li { margin-top: .35rem; }
.notice {
  border-left: 7px solid var(--orange);
  background: rgba(255,179,102,.18);
  padding: 16px 18px;
  border-radius: 12px;
  font-weight: 650;
}
.quick-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}
.quick {
  padding: 20px;
  border: 2px solid var(--border);
  border-radius: 18px;
  background: #fff;
}
.quick h3 { margin: 0 0 6px; }
.cta {
  display: inline-block;
  padding: 12px 18px;
  border: 2px solid var(--border);
  border-radius: 999px;
  background: var(--yellow);
  box-shadow: 0 4px 0 rgba(26,26,26,.16);
  text-decoration: none;
  font-weight: 900;
}
footer {
  border-top: 2px solid rgba(26,26,26,.1);
  background: rgba(255,254,247,.8);
}
.footer-inner {
  width: min(1080px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0 44px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  color: var(--muted);
}
.footer-inner a { font-weight: 700; }
@media (max-width: 680px) {
  .nav {
    flex-wrap: wrap;
    align-items: center;
    padding: 10px 0;
    min-height: 64px;
    gap: 12px;
  }
  .brand { font-size: 1.05rem; gap: 8px; }
  .logo { width: 36px; height: 36px; border-radius: 12px; }
  .nav-toggle { display: inline-flex; margin-left: auto; }
  .nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    padding: 4px 0 10px;
  }
  .nav.is-open .nav-links { display: flex; }
  .nav-links a {
    padding: 12px 14px;
    border: 2px solid rgba(26,26,26,.08);
    background: rgba(255,255,255,.7);
  }
  main { margin-top: 28px; }
  .hero-home .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { order: -1; }
  .hero-app-icon { width: min(200px, 56vw); }
  .hero .doodle { display: none; }
}
