/* =================================================================
   index.html — hero, stats band, features, method, disclaim
   ================================================================= */

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 56px 0 90px;
  overflow: hidden;
}
/* Doodle accents floating around the hero. Pure CSS, no extra DOM. */
.hero::before {
  content: "";
  position: absolute;
  top: 80px; left: 4%;
  width: 60px; height: 60px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='64' height='64' viewBox='0 0 64 64' fill='none'><path d='M32 54 C 12 42, 6 26, 14 18 C 22 10, 30 18, 32 24 C 34 18, 42 10, 50 18 C 58 26, 52 42, 32 54 Z' stroke='%232a2120' stroke-width='2.2' stroke-linejoin='round' fill='%23f4b6c2'/></svg>") no-repeat center/contain;
  transform: rotate(-14deg);
  opacity: 0.85;
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  top: 140px; right: 6%;
  width: 36px; height: 36px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 32 32' fill='none'><path d='M16 3 L19 12 L28 13 L21 19 L23 28 L16 23 L9 28 L11 19 L4 13 L13 12 Z' stroke='%232a2120' stroke-width='1.8' stroke-linejoin='round' fill='%23f4a261'/></svg>") no-repeat center/contain;
  transform: rotate(11deg);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-block;
  padding: 4px 10px;
  background: var(--paper);
  border: 1.5px solid var(--ink);
  border-radius: 999px;
  box-shadow: 2px 2px 0 var(--shadow-ink);
  transform: rotate(-1deg);
}
.hero h1 {
  font-family: var(--font-hand);
  font-size: clamp(3rem, 7.5vw, 6rem);
  line-height: 0.98;
  margin: 18px 0 18px;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.hero h1 em {
  font-style: normal;
  color: var(--blush-deep);
  position: relative;
}
.hero h1 em::after {
  content: "";
  position: absolute;
  left: -4px; right: -4px; bottom: 6px;
  height: 14px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='12' viewBox='0 0 180 12'><path d='M2 7 C 30 2, 60 11, 90 6 S 150 2, 178 8' stroke='%23ec88a0' stroke-width='3.4' fill='none' stroke-linecap='round'/></svg>") no-repeat;
  background-size: 100% 100%;
  z-index: -1;
}
.hero-lede {
  max-width: 50ch;
  color: var(--ink-soft);
  font-size: 1.12rem;
  margin: 0 0 28px;
}
.hero-ctas {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

/* Phone screenshot, framed as a polaroid. */
.hero-phones {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-phone {
  background: var(--paper);
  padding: 18px 18px 56px;
  border: 1.5px solid #d8cdb8;
  box-shadow:
    0 1px 0 rgba(0,0,0,0.08),
    8px 10px 0 -1px rgba(0,0,0,0.12),
    0 22px 36px -10px rgba(0,0,0,0.22);
  transform: rotate(-2.5deg);
  border-radius: 4px;
  position: relative;
  max-width: 360px;
}
.hero-phone::before {
  content: "scan 01 · saved";
  position: absolute;
  bottom: 14px; left: 0; right: 0;
  text-align: center;
  font-family: var(--font-hand);
  font-size: 1.6rem;
  color: var(--ink);
}
.hero-phone::after {
  content: "";
  position: absolute;
  top: -14px; right: -16px;
  width: 50px; height: 50px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='64' height='64' viewBox='0 0 64 64' fill='none'><path d='M32 54 C 12 42, 6 26, 14 18 C 22 10, 30 18, 32 24 C 34 18, 42 10, 50 18 C 58 26, 52 42, 32 54 Z' stroke='%232a2120' stroke-width='2.2' stroke-linejoin='round' fill='%23f4b6c2'/></svg>") no-repeat center/contain;
  transform: rotate(20deg);
}
.hero-phone-img {
  display: block;
  border-radius: 18px;
  width: 100%;
  height: auto;
  background: #000;
}

@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-phone { transform: rotate(-1.5deg); max-width: 280px; margin: 0 auto; }
}
@media (max-width: 600px) {
  .hero { padding: 36px 0 60px; }
  .hero::before { top: 40px; width: 44px; height: 44px; }
  .hero::after { top: 90px; right: 4%; width: 26px; height: 26px; }
  .hero h1 { margin: 12px 0 14px; }
  .hero-lede { font-size: 1.02rem; margin-bottom: 22px; }
  .hero-ctas { gap: 12px; }
  .apple-badge svg { height: 44px; }
  .hero-phone { padding: 12px 12px 44px; max-width: 240px; }
  .hero-phone::before { font-size: 1.3rem; bottom: 10px; }
  .hero-phone::after { width: 38px; height: 38px; top: -10px; right: -10px; }
}

/* ---------- Stats band ---------- */
.band {
  padding: 28px 0 48px;
}
.band-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.band-cell {
  background: var(--paper);
  border: 2px solid var(--ink);
  border-radius: 18px 14px 17px 15px / 15px 18px 14px 17px;
  box-shadow: 5px 6px 0 var(--shadow-ink);
  padding: 22px 18px 18px;
  text-align: center;
  position: relative;
}
.band-cell:nth-child(1) { transform: rotate(-1.2deg); background: #fdf6ee; }
.band-cell:nth-child(2) { transform: rotate(0.8deg);  }
.band-cell:nth-child(3) { transform: rotate(-0.6deg); background: #fdf6ee; }
.band-cell:nth-child(4) { transform: rotate(1.1deg);  }
.band-cell::before {
  content: "";
  position: absolute;
  top: -10px; left: 50%;
  margin-left: -34px;
  width: 68px; height: 18px;
  background: rgba(244, 162, 97, 0.55);
  border: 1px dashed rgba(0,0,0,0.18);
  transform: rotate(-3deg);
}
.band-cell .figure {
  display: block;
  font-family: var(--font-hand);
  font-size: clamp(2.8rem, 4.5vw, 4rem);
  line-height: 1;
  color: var(--ink);
}
.band-cell .figure em {
  font-style: normal;
  color: var(--blush-deep);
}
.band-cell .label {
  display: block;
  margin-top: 4px;
  font-family: var(--font-marker);
  font-size: 0.95rem;
  color: var(--ink-soft);
}
@media (max-width: 820px) {
  .band-row { grid-template-columns: repeat(2, 1fr); gap: 22px; }
  .band { padding: 22px 0 36px; }
}
@media (max-width: 480px) {
  .band-row { gap: 16px; }
  .band-cell { padding: 18px 12px 14px; }
  .band-cell .figure { font-size: 2.4rem; }
  .band-cell .label { font-size: 0.85rem; }
}

/* ---------- Features ---------- */
.features {
  padding: 64px 0 40px;
}
.section-head {
  margin-bottom: 36px;
  text-align: left;
  max-width: 720px;
}
.section-head .mono { display: inline-block; margin-bottom: 8px; }
.section-head h2 {
  font-family: var(--font-hand);
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  line-height: 1.02;
  margin: 0;
  letter-spacing: -0.01em;
}
.section-head h2 em {
  font-style: normal;
  color: var(--blush-deep);
  position: relative;
}
.section-head h2 em::after {
  content: "";
  position: absolute;
  left: -4px; right: -4px; bottom: 4px;
  height: 12px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='10' viewBox='0 0 200 10'><path d='M2 6 C 35 2, 65 9, 100 5 S 170 2, 198 7' stroke='%23ec88a0' stroke-width='3' fill='none' stroke-linecap='round'/></svg>") no-repeat;
  background-size: 100% 100%;
  z-index: -1;
}

.feature-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px 22px;
}
@media (max-width: 920px) { .feature-items { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) {
  .feature-items { grid-template-columns: 1fr; gap: 22px; }
  .features { padding: 44px 0 24px; }
  .feature-item { padding: 18px 18px 20px; }
  .feature-num { font-size: 2.2rem; min-width: 38px; }
  .feature-body h3 { font-size: 1.6rem; }
}

.feature-item {
  background: var(--paper);
  border: 2px solid var(--ink);
  border-radius: 18px 14px 17px 15px / 15px 18px 14px 17px;
  box-shadow: 5px 6px 0 var(--shadow-ink);
  padding: 22px 22px 24px;
  position: relative;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.feature-item:nth-child(6n+1) { transform: rotate(-0.8deg); }
.feature-item:nth-child(6n+2) { transform: rotate(0.6deg);  }
.feature-item:nth-child(6n+3) { transform: rotate(-0.3deg); }
.feature-item:nth-child(6n+4) { transform: rotate(0.9deg);  }
.feature-item:nth-child(6n+5) { transform: rotate(-0.6deg); }
.feature-item:nth-child(6n+6) { transform: rotate(0.4deg);  }
.feature-item::before {
  content: "";
  position: absolute;
  top: -10px; left: 22px;
  width: 64px; height: 18px;
  background: rgba(244, 182, 194, 0.7);
  border: 1px dashed rgba(0,0,0,0.18);
  transform: rotate(-4deg);
}
.feature-item:nth-child(2n)::before { background: rgba(163, 177, 138, 0.65); transform: rotate(3deg); left: auto; right: 22px; }
.feature-item:nth-child(3n)::before { background: rgba(244, 162, 97, 0.6); }

.feature-num {
  font-family: var(--font-hand);
  font-size: 2.6rem;
  line-height: 1;
  color: var(--blush-deep);
  flex-shrink: 0;
  min-width: 44px;
}
.feature-body h3 {
  font-family: var(--font-hand);
  font-size: 1.9rem;
  margin: 0 0 4px;
  line-height: 1.05;
  color: var(--ink);
}
.feature-body p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.55;
}

/* ---------- Method ---------- */
.method {
  padding: 60px 0 30px;
}
.method-grid {
  display: grid;
  grid-template-columns: 200px 1fr 280px;
  gap: 40px;
  align-items: start;
}
.method-grid > .mono { padding-top: 12px; }
.method-quote {
  font-family: var(--font-hand);
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  line-height: 1.15;
  margin: 0;
  color: var(--ink);
  position: relative;
  padding-left: 28px;
}
.method-quote::before {
  content: "\201C";
  position: absolute;
  left: -4px; top: -22px;
  font-family: var(--font-hand);
  font-size: 5rem;
  color: var(--blush-deep);
  line-height: 1;
}
.method-quote em {
  font-style: italic;
  color: var(--blush-deep);
}
.method-attr {
  margin: 14px 0 0 28px;
  color: var(--ink-soft);
  font-family: var(--font-marker);
}
.method-sidenote {
  background: var(--paper);
  border: 2px solid var(--ink);
  border-radius: 18px 14px 17px 15px / 15px 18px 14px 17px;
  box-shadow: 5px 6px 0 var(--shadow-ink);
  padding: 18px 18px 20px;
  transform: rotate(1.2deg);
  position: relative;
  color: var(--ink);
  font-size: 0.97rem;
}
.method-sidenote::before {
  content: "";
  position: absolute;
  top: -10px; right: 18px;
  width: 60px; height: 18px;
  background: rgba(163, 177, 138, 0.6);
  border: 1px dashed rgba(0,0,0,0.18);
  transform: rotate(4deg);
}
.method-sidenote .mono { display: block; margin-bottom: 6px; }
@media (max-width: 920px) {
  .method-grid { grid-template-columns: 1fr; gap: 22px; }
  .method-sidenote { transform: rotate(-1deg); }
}

/* ---------- Disclaim ---------- */
.disclaim {
  padding: 30px 0 0;
}
.disclaim-inner {
  background: var(--paper);
  border: 2px dashed var(--ink-soft);
  border-radius: 14px;
  padding: 18px 22px;
  color: var(--ink-soft);
  font-size: 0.92rem;
}
.disclaim-inner p { margin: 0 0 8px; }
.disclaim-inner p:last-child { margin-bottom: 0; }
