/* ════════════════════════════════════════
   1. HERO
════════════════════════════════════════ */
.hero {
  padding: 72px 0 88px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}
.hero-copy { padding-right: 8px; }
.hero-title {
  font-family: var(--ff-brand);
  font-size: clamp(40px, 5.4vw, 68px);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: -0.035em;
  color: var(--ink);
  margin-top: 22px;
  margin-bottom: 22px;
}
.hero-title em {
  font-style: normal;
  color: var(--brand);
  position: relative;
  white-space: nowrap;
}
.hero-title em::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 4px;
  height: 10px;
  background: rgba(122,85,59,0.16);
  border-radius: 4px;
  z-index: -1;
}
.hero-sub {
  font-size: 18px;
  line-height: 1.6;
  color: var(--t2);
  max-width: 520px;
  margin-bottom: 32px;
}
.hero-sub strong { color: var(--ink); font-weight: 500; }

/* App Store button */
.app-store-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(45,38,48,0.88);
  color: var(--paper-ink);
  padding: 12px 22px;
  border-radius: 14px;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(45,38,48,0.18), inset 0 1px 0 rgba(255,255,255,0.12);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.app-store-btn:hover { transform: translateY(-1px); box-shadow: 0 4px 14px rgba(45,38,48,0.24), inset 0 1px 0 rgba(255,255,255,0.14); }
.app-store-btn svg { width: 24px; height: 24px; fill: #fff; flex-shrink: 0; }
.asb-text { display: flex; flex-direction: column; }
.asb-small { font-family: var(--ff); font-size: 10px; font-weight: 400; line-height: 1.2; opacity: 0.8; }
.asb-big { font-family: var(--ff); font-size: 18px; font-weight: 600; line-height: 1.2; letter-spacing: -0.01em; }

/* Button group */
.hero-btns {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.cta-btns { justify-content: center; }
.detox-btn {
  display: inline-flex;
  align-items: center;
  font-family: var(--ff);
  font-size: 15px;
  font-weight: 500;
  color: var(--brand);
  padding: 14px 20px;
  border-radius: 14px;
  border: 1.5px solid var(--brand-light);
  background: var(--brand-pale);
  text-decoration: none;
  transition: background 0.15s ease, border-color 0.15s ease;
}
.detox-btn:hover { background: var(--brand-light); border-color: var(--brand-mid); }

/* ════════════════════════════════════════
   SCROLL-PINNED SEQUENCE (merged: time → projection)
════════════════════════════════════════ */
.pin-track {
  position: relative;
  height: 500vh;
}
.pin-frame {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
}
.pin-scene {
  position: absolute; inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 28px;
  will-change: transform;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}
.pin-scene-1 { transform: translateY(0); }
.pin-scene-1.out { transform: translateY(-100%); }
.pin-scene-2 { transform: translateY(100%); }
.pin-scene-2.in { transform: translateY(0); }

/* ── Screen time ── */
.st-number {
  font-family: var(--ff-brand);
  font-size: clamp(62px, 9.6vw, 106px);
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.04em;
  line-height: 1;
}
.st-desc {
  font-size: 17px;
  color: var(--t2);
  line-height: 1.6;
  max-width: 480px;
  margin: 20px auto 0;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.st-desc.reveal { opacity: 1; transform: none; }

/* ── Projection ── */
.proj-eyebrow {
  font-size: 11px; font-weight: 600;
  color: var(--t3);
  letter-spacing: 0.16em; text-transform: uppercase;
  margin-bottom: 10px;
}
.proj-hero {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 12px;
  margin-bottom: 10px;
}
.proj-number {
  font-family: var(--ff-brand);
  font-size: clamp(62px, 10vw, 105px);
  font-weight: 500;
  color: var(--state-red);
  letter-spacing: -0.05em;
  line-height: 0.9;
}
.proj-years {
  font-family: var(--ff-brand);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 500;
  color: var(--state-red);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 0.9;
}
.proj-sub {
  font-size: 14px;
  color: var(--t3);
  margin-bottom: 28px;
}

.year-grid {
  display: grid;
  grid-template-rows: repeat(5, 1fr);
  grid-auto-flow: column;
  grid-auto-columns: 1fr;
  gap: 7px;
  width: 100%;
  max-width: 360px;
  margin: 0 auto;
}
.year-grid i {
  aspect-ratio: 1;
  border-radius: 5px;
  background: rgba(45,38,48,0.08);
  transition: background 0.15s ease;
}
.year-grid i.lost {
  background: var(--state-red);
  opacity: 0.75;
}
.proj-fine {
  font-size: 10px;
  color: var(--t3);
  margin-top: 20px;
  line-height: 1.5;
}

/* ════════════════════════════════════════
   IT'S NOT LAZINESS (dark editorial)
════════════════════════════════════════ */
.laziness {
  padding: 96px 0;
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
}
/* ── Card sequence (laziness + method) ── */
.cards-track { height: 200vh; position: relative; }
.cards-frame {
  position: sticky; top: 0; height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; padding: 0 28px;
}
.card-scene {
  position: absolute;
  max-width: 680px; width: 100%;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}
.card-scene-1 { transform: translateY(0); }
.card-scene-1.out { transform: translateY(-110%); }
.card-scene-2 { transform: translateY(110%); }
.card-scene-2.in { transform: translateY(0); }

.dark-card {
  border-radius: 28px;
  overflow: hidden;
  background: #1a1512;
  box-shadow: 0 20px 70px rgba(26,21,18,0.30), 0 4px 16px rgba(26,21,18,0.15);
}
.dc-banner {
  width: 100%; height: 420px;
  object-fit: cover; object-position: center 40%;
  display: block;
}
.dc-fade {
  margin-top: -100px; height: 100px;
  background: linear-gradient(to bottom, rgba(26,21,18,0), #1a1512);
  position: relative; pointer-events: none;
}
.dc-body {
  padding: 0 36px 40px;
  text-align: center;
}
.dc-title {
  font-family: var(--ff-brand);
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 500;
  color: #f5ede8;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 10px;
}
.dc-sub {
  font-size: 14px;
  color: rgba(245,237,232,0.42);
  line-height: 1.6;
  max-width: 420px;
  margin: 0 auto 28px;
}
.dc-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.dc-stat {
  background: rgba(245,237,232,0.06);
  border: 1px solid rgba(245,237,232,0.08);
  border-radius: 16px;
  padding: 20px 18px;
  text-align: left;
}
.dc-stat-num {
  font-family: var(--ff-brand);
  font-size: 32px; font-weight: 500;
  color: #c09470;
  letter-spacing: -0.03em;
  line-height: 1;
}
.dc-stat-label {
  font-size: 11px; font-weight: 600;
  color: rgba(245,237,232,0.35);
  letter-spacing: 0.06em;
  margin-top: 4px;
}

/* Method card extras */
.dc-gradient-banner {
  width: 100%; height: 200px;
  background:
    radial-gradient(ellipse 90% 70% at 50% 20%, rgba(192,148,112,0.30), transparent 55%),
    radial-gradient(ellipse 80% 90% at 70% 80%, rgba(122,85,59,0.15), transparent 50%),
    #1a1512;
  display: flex; align-items: center; justify-content: center;
}
.dc-gradient-banner .dc-banner-text {
  font-family: var(--ff-brand);
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 400;
  color: rgba(245,237,232,0.25);
  letter-spacing: -0.02em;
  text-align: center;
  line-height: 1.3;
  padding: 0 28px;
}
.dc-steps {
  display: flex; flex-direction: column; gap: 16px;
  text-align: left;
}
.dc-step {
  display: flex; gap: 16px; align-items: flex-start;
}
.dc-step-num {
  width: 32px; height: 32px; border-radius: 50%; flex-shrink: 0;
  background: rgba(192,148,112,0.15);
  border: 1px solid rgba(192,148,112,0.25);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-brand); font-size: 13px; font-weight: 600;
  color: #c09470;
}
.dc-step-text { min-width: 0; }
.dc-step-title {
  font-family: var(--ff-brand); font-size: 15px; font-weight: 500;
  color: rgba(245,237,232,0.88); margin-bottom: 3px;
}
.dc-step-desc {
  font-size: 12.5px; color: rgba(245,237,232,0.38); line-height: 1.5;
}


/* ════════════════════════════════════════
   METHOD SECTION
════════════════════════════════════════ */


/* ── Phone mockup (right side) ─────────── */
/* Scale: 1.6× the wireframe's 0.5 = 0.8 of true iOS pt. So 402×874 → ~322×699. */
.phone-stage {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  min-height: 700px;
}
.phone-stage::before {
  content: '';
  position: absolute;
  width: 460px; height: 460px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(122,85,59,0.18), transparent 65%);
  filter: blur(40px);
  z-index: 0;
}

/* iPhone shell — 1.6× the wireframe scale */
.phone {
  --pscale: 1.6;
  --p: calc(var(--pscale) * 1px);

  position: relative;
  width: calc(var(--pscale) * 201px);   /* 322px — was 402pt */
  height: calc(var(--pscale) * 437px);  /* 699px — was 874pt */
  z-index: 1;
  filter: drop-shadow(0 30px 60px rgba(45,38,48,0.20)) drop-shadow(0 12px 24px rgba(45,38,48,0.10));
  transform: rotate(-2deg);
}
.phone-screen {
  position: absolute; inset: 0;
  border-radius: calc(var(--pscale) * 23px);
  overflow: hidden;
  background: var(--app-bg);
  box-shadow:
    0 0 0 calc(var(--pscale) * 1.5px) #1a1a1d,
    0 0 0 calc(var(--pscale) * 3px) #383838,
    0 0 0 calc(var(--pscale) * 4px) rgba(255,255,255,0.06);
}
/* App backdrop (parchment, like real screen) */
.phone-screen::before {
  content: ''; position: absolute; inset: 0; z-index: 0;
  background: var(--app-bg);
}
.phone-screen > * { position: relative; z-index: 1; }

/* Dynamic Island */
.p-di {
  position: absolute;
  top: calc(var(--pscale) * 7px);
  left: 50%; transform: translateX(-50%);
  width: calc(var(--pscale) * 63px);
  height: calc(var(--pscale) * 18.5px);
  background: #000;
  border-radius: calc(var(--pscale) * 9.5px);
  z-index: 100;
}
/* Status bar */
.p-sb {
  position: absolute; top: 0; left: 0; right: 0;
  height: calc(var(--pscale) * 27px);
  display: flex; align-items: flex-end; justify-content: space-between;
  padding: 0 calc(var(--pscale) * 12px) calc(var(--pscale) * 4px);
  font-family: var(--ff);
  font-size: calc(var(--pscale) * 7.5px);
  font-weight: 600;
  color: rgba(24,40,58,0.78);
  z-index: 50; pointer-events: none;
}
.p-sb-icons { font-size: calc(var(--pscale) * 5.5px); opacity: 0.65; display: flex; align-items: center; gap: calc(var(--pscale) * 2.5px); }

/* Home indicator */
.p-home-ind {
  position: absolute;
  bottom: calc(var(--pscale) * 4px);
  left: 50%; transform: translateX(-50%);
  width: calc(var(--pscale) * 67px);
  height: calc(var(--pscale) * 2.5px);
  border-radius: 2px;
  background: rgba(24,40,58,0.20);
  z-index: 60;
}

/* App Lock body — copied from wireframe screen 5, scaled */
.p-applock {
  position: absolute;
  top: calc(var(--pscale) * 29.5px);
  left: 0; right: 0;
  bottom: calc(var(--pscale) * 23px);
  display: flex; flex-direction: column;
  justify-content: space-between;
  padding: calc(var(--pscale) * 8px) calc(var(--pscale) * 12px);
}
.p-applock-center {
  flex: 1; min-height: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: calc(var(--pscale) * 8px);
}
.p-al-icon {
  width: calc(var(--pscale) * 32px);
  height: calc(var(--pscale) * 32px);
  border-radius: calc(var(--pscale) * 10px);
  background: var(--brand-pale);
  border: 1px solid var(--brand-light);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.p-al-icon svg { width: calc(var(--pscale) * 20px); height: calc(var(--pscale) * 20px); fill: var(--brand); }
.p-al-headline {
  font-family: var(--ff-brand);
  font-size: calc(var(--pscale) * 10px);
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.025em;
  text-align: center;
  margin-bottom: calc(var(--pscale) * 2px);
}
.p-al-sub {
  font-family: var(--ff);
  font-size: calc(var(--pscale) * 6.5px);
  color: var(--t3);
  text-align: center;
}
.p-al-task-card {
  background: rgba(255,255,255,0.65);
  border: 1px solid rgba(255,255,255,0.85);
  border-radius: calc(var(--pscale) * 10px);
  padding: calc(var(--pscale) * 8px);
  width: 100%;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.7);
}
.p-al-task-lbl {
  font-family: var(--ff);
  font-size: calc(var(--pscale) * 5.5px);
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--t3);
  margin-bottom: calc(var(--pscale) * 4px);
}
.p-al-task-name {
  font-family: var(--ff-brand);
  font-size: calc(var(--pscale) * 8.5px);
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin-bottom: calc(var(--pscale) * 6px);
}
.p-al-time-row { display: flex; justify-content: space-between; align-items: center; }
.p-al-time-label {
  font-family: var(--ff);
  font-size: calc(var(--pscale) * 4.5px);
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--t3);
  margin-bottom: 1px;
}
.p-al-time-label.is-overdue { color: var(--state-red); }
.p-al-time-val {
  font-family: var(--ff);
  font-size: calc(var(--pscale) * 6.5px);
  font-weight: 500;
  color: var(--ink);
}
.p-al-time-val.is-overdue { color: var(--state-red); }

.p-al-btn-group {
  flex-shrink: 0;
  display: flex; flex-direction: column;
  gap: calc(var(--pscale) * 6px);
  width: 100%;
}
.p-al-dismiss {
  border-radius: calc(var(--pscale) * 7px);
  height: calc(var(--pscale) * 25px);
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.65);
  border: 1px solid rgba(45,38,48,0.12);
  font-family: var(--ff);
  font-size: calc(var(--pscale) * 8.5px);
  font-weight: 500;
  color: var(--ink);
}
.p-al-close {
  height: calc(var(--pscale) * 25px);
  border-radius: calc(var(--pscale) * 7px);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ff);
  font-size: calc(var(--pscale) * 8.5px);
  font-weight: 500;
  background: rgba(45,38,48,0.82);
  color: var(--paper-ink);
  box-shadow: 0 2px 8px rgba(45,38,48,0.16), inset 0 1px 0 rgba(255,255,255,0.10);
}

/* Floating callouts around the phone */
.callout {
  position: absolute;
  z-index: 3;
  background: var(--glass-3);
  backdrop-filter: var(--blur-md);
  -webkit-backdrop-filter: var(--blur-md);
  border: 1px solid var(--glass-border);
  border-radius: 14px;
  padding: 12px 16px;
  box-shadow: var(--glass-shadow);
  max-width: 220px;
}
.callout-eye {
  font-size: 9px; font-weight: 600;
  color: var(--brand);
  letter-spacing: 0.12em; text-transform: uppercase;
  margin-bottom: 4px;
}
.callout-txt {
  font-family: var(--ff-brand);
  font-size: 13px; font-weight: 500;
  color: var(--ink);
  line-height: 1.35;
  letter-spacing: -0.01em;
}
.callout-1 { top: 12%; left: -28px; transform: rotate(-3deg); }
.callout-2 { bottom: 18%; right: -36px; transform: rotate(2deg); }

/* ════════════════════════════════════════
   2. FEATURE DEMO — pinned interactive phone
════════════════════════════════════════ */
.demo { padding: 0; position: relative; }
.demo .section { position: relative; }
.demo-head { text-align: center; max-width: 700px; margin: 0 auto; padding: 80px 28px 0; }
.section-title {
  font-family: var(--ff-brand);
  font-size: clamp(32px, 4vw, 46px);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--ink);
  margin-top: 18px;
  margin-bottom: 14px;
}
.section-sub {
  font-size: 17px;
  color: var(--t2);
  line-height: 1.6;
  max-width: 580px;
  margin: 0 auto;
}
.section-sub-lg {
  font-family: var(--ff-brand);
  font-size: clamp(20px, 2.5vw, 26px);
  font-weight: 400;
  color: var(--t2);
  line-height: 1.4;
  letter-spacing: -0.01em;
  max-width: 580px;
  margin: 0 auto;
}
.hw-track { height: 600vh; position: relative; }
.hw-frame {
  position: sticky; top: 0; height: 100vh;
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center;
  max-width: 1100px; margin: 0 auto; padding: 0 28px; gap: 48px;
}
.hw-text { position: relative; min-height: 260px; }
.hw-step {
  position: absolute; top: 88px; left: 0; right: 0; bottom: 0;
  display: flex; flex-direction: column; justify-content: flex-start;
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.hw-step.active { opacity: 1; transform: none; }
.hw-phone { display: flex; justify-content: center; align-items: center; }
.hw-phone .phone { --pscale: 1.3; transform: none; filter: drop-shadow(0 20px 50px rgba(45,38,48,0.18)); }
/* Big step number */
.hw-num-wrap {
  height: 72px;
  overflow: hidden;
  margin-bottom: 16px;
  position: relative;
}
.hw-num {
  font-family: var(--ff-brand);
  font-size: 68px;
  font-weight: 500;
  color: var(--brand);
  letter-spacing: -0.04em;
  line-height: 72px;
  opacity: 0.18;
  position: absolute;
  left: 0;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.35s ease;
  will-change: transform;
}
.hw-num.current { transform: translateY(0); opacity: 0.18; }
.hw-num.above { transform: translateY(-100%); opacity: 0; }
.hw-num.below { transform: translateY(100%); opacity: 0; }
.demo-step {
  font-size: 12px; font-weight: 700;
  color: var(--brand);
  letter-spacing: 0.14em; text-transform: uppercase;
  margin-bottom: 10px;
}
.demo-name {
  font-family: var(--ff-brand);
  font-size: 28px; font-weight: 500;
  color: var(--ink); letter-spacing: -0.02em; line-height: 1.2;
  margin-bottom: 14px;
}
.demo-desc { font-size: 15px; color: var(--t2); line-height: 1.65; max-width: 400px; }

/* Phone screen layers */
.hw-screens {
  position: absolute;
  top: calc(var(--pscale,1.3) * 29.5px);
  left: 0; right: 0;
  bottom: calc(var(--pscale,1.3) * 10px);
  overflow: hidden;
}
.hw-scr {
  position: absolute; inset: 0;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
  background: var(--app-bg);
}
.hw-scr.below { transform: translateY(100%); }
.hw-scr.above { transform: translateY(-100%); }
.hw-scr.center { transform: translateY(0); }
/* Typing reveal */
.hw-typing { display: inline-block; overflow: hidden; white-space: nowrap; max-width: 0; vertical-align: bottom; }
/* TikTok icon */
.hw-tk {
  width: calc(var(--ps,1.3) * 30px); height: calc(var(--ps,1.3) * 30px);
  border-radius: calc(var(--ps,1.3) * 7px);
  background: #010101; display: flex; align-items: center; justify-content: center;
  justify-self: center; align-self: center;
  transition: transform 0.15s ease;
}
.hw-tk.pressed { transform: scale(0.85); }
.hw-tk svg { width: 58%; height: 58%; fill: #fff; }
/* Lock overlay */
.hw-lock-ov {
  position: absolute; inset: 0; z-index: 20;
  background: var(--app-bg);
  transform: translateY(100%);
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}
.hw-lock-ov.show { transform: translateY(0); }

/* ════════════════════════════════════════
   MINI PHONE — embedded wireframe screens
   Scale: --mscale (true iOS pt × 0.5 × mscale)
════════════════════════════════════════ */
.mini-phone {
  --mscale: 0.92;
  --m: calc(var(--mscale) * 1px);
  position: relative;
  width: calc(var(--mscale) * 201px);   /* 185px @ 0.92 */
  height: calc(var(--mscale) * 437px);  /* 402px @ 0.92 */
  flex-shrink: 0;
  filter: drop-shadow(0 16px 32px rgba(45,38,48,0.14)) drop-shadow(0 4px 12px rgba(45,38,48,0.08));
}
.mp-screen {
  position: absolute; inset: 0;
  border-radius: calc(var(--mscale) * 23px);
  overflow: hidden;
  background: #F2ECE0;
  box-shadow:
    0 0 0 calc(var(--mscale) * 1.2px) #1a1a1d,
    0 0 0 calc(var(--mscale) * 2.4px) #383838;
}
.mp-screen.is-ls {
  background:
    url("https://i.postimg.cc/VJBkj07w/5ea816d3d14e402f0fc2c5ddeefafd00.jpg") center / cover no-repeat,
    #e8e4e0;
}
.mp-screen > * { position: relative; z-index: 1; }

.mp-di {
  position: absolute;
  top: calc(var(--mscale) * 7px);
  left: 50%; transform: translateX(-50%);
  width: calc(var(--mscale) * 63px);
  height: calc(var(--mscale) * 18.5px);
  background: #000;
  border-radius: calc(var(--mscale) * 9.5px);
  z-index: 100;
}
.mp-sb {
  position: absolute; top: 0; left: 0; right: 0;
  height: calc(var(--mscale) * 27px);
  display: flex; align-items: flex-end; justify-content: space-between;
  padding: 0 calc(var(--mscale) * 12px) calc(var(--mscale) * 4px);
  font-family: var(--ff);
  font-size: calc(var(--mscale) * 7.5px);
  font-weight: 600;
  color: rgba(24,40,58,0.78);
  z-index: 50; pointer-events: none;
}
.mp-sb.is-ls { color: rgba(24,40,58,0.85); }
.mp-sb-icons { font-size: calc(var(--mscale) * 5.5px); opacity: 0.65; display: flex; align-items: center; gap: calc(var(--mscale) * 2.5px); }
.mp-home-ind {
  position: absolute;
  bottom: calc(var(--mscale) * 4px);
  left: 50%; transform: translateX(-50%);
  width: calc(var(--mscale) * 67px);
  height: calc(var(--mscale) * 2.5px);
  border-radius: 2px;
  background: rgba(24,40,58,0.20);
  z-index: 60;
}

/* ── Top nav (in-app, used on screen 1b) ── */
.mp-nav {
  position: absolute;
  top: calc(var(--mscale) * 29.5px);
  left: 0; right: 0;
  height: calc(var(--mscale) * 22px);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 calc(var(--mscale) * 12px);
  z-index: 30;
}
.mp-nav-wordmark { display: inline-flex; align-items: center; gap: calc(var(--mscale) * 5px); }
.mp-nav-logo {
  width: auto;
  height: calc(var(--mscale) * 13px);
  fill: var(--brand);
  flex-shrink: 0;
}
.mp-nav-title {
  font-family: var(--ff-brand);
  font-size: calc(var(--mscale) * 12px);
  font-weight: 500;
  color: var(--brand);
  letter-spacing: -0.01em;
}
.mp-nav-right {
  width: calc(var(--mscale) * 14px);
  height: calc(var(--mscale) * 14px);
  color: var(--t3);
}
.mp-nav-right svg {
  width: 100%; height: 100%;
  stroke: currentColor; fill: none;
  stroke-width: 1.8;
  stroke-linecap: round; stroke-linejoin: round;
}

/* ── Tab bar (in-app) ── */
.mp-tab {
  position: absolute;
  bottom: calc(var(--mscale) * 21px);
  left: 50%; transform: translateX(-50%);
  height: calc(var(--mscale) * 28px);
  display: inline-flex; align-items: center;
  padding: calc(var(--mscale) * 3px);
  border-radius: 100px;
  background: rgba(255,255,255,0.60);
  backdrop-filter: blur(18px) saturate(145%);
  -webkit-backdrop-filter: blur(18px) saturate(145%);
  box-shadow:
    0 calc(var(--mscale) * 2px) calc(var(--mscale) * 10px) rgba(24,34,48,0.14),
    inset 0 1px 0 rgba(255,255,255,0.86);
  z-index: 40;
  white-space: nowrap;
}
.mp-tab-item {
  display: flex; align-items: center;
  gap: calc(var(--mscale) * 3px);
  padding: 0 calc(var(--mscale) * 9px);
  height: calc(var(--mscale) * 22px);
  border-radius: 100px;
  flex-shrink: 0;
}
.mp-tab-item.is-active {
  background: rgba(255,255,255,0.84);
  box-shadow: 0 1px 3px rgba(24,34,48,0.10), inset 0 0.5px 0 rgba(255,255,255,0.94);
}
.mp-tab-icon {
  width: calc(var(--mscale) * 9px);
  height: calc(var(--mscale) * 9px);
  color: var(--t3);
  display: inline-flex;
}
.mp-tab-icon svg {
  width: 100%; height: 100%;
  stroke: currentColor; fill: none;
  stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round;
}
.mp-tab-lbl {
  font-size: calc(var(--mscale) * 5.5px);
  font-weight: 500;
  color: var(--t3);
  display: none;
}
.mp-tab-item.is-active .mp-tab-icon { color: var(--brand); }
.mp-tab-item.is-active .mp-tab-lbl { display: block; color: var(--brand); }

/* ── Screen 1b · Set task body ── */
.mp-content {
  position: absolute;
  top: calc(var(--mscale) * (29.5px + 22px));
  left: 0; right: 0;
  bottom: calc(var(--mscale) * 56px);
  padding: calc(var(--mscale) * 8px) calc(var(--mscale) * 12px) 0;
  display: flex;
  flex-direction: column;
}
.mp-set-focal {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.mp-set-q {
  font-family: var(--ff-brand);
  font-size: calc(var(--mscale) * 14px);
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.03em;
  line-height: 1.25;
  margin-bottom: calc(var(--mscale) * 12px);
}
.mp-set-field {
  background: rgba(255,255,255,0.68);
  border: 1px solid rgba(255,255,255,0.88);
  border-radius: calc(var(--mscale) * 10px);
  padding: calc(var(--mscale) * 8px) calc(var(--mscale) * 12px);
  min-height: calc(var(--mscale) * 60px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.85);
}
.mp-set-input {
  font-family: var(--ff);
  font-size: calc(var(--mscale) * 8.5px);
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1.55;
}
.mp-btn-p {
  height: calc(var(--mscale) * 25px);
  border-radius: calc(var(--mscale) * 7px);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ff);
  font-size: calc(var(--mscale) * 8.5px);
  font-weight: 500;
  background: rgba(45,38,48,0.82);
  color: var(--paper-ink);
  box-shadow:
    0 calc(var(--mscale) * 2px) calc(var(--mscale) * 8px) rgba(45,38,48,0.16),
    inset 0 1px 0 rgba(255,255,255,0.10);
  margin-bottom: calc(var(--mscale) * 4px);
  letter-spacing: -0.01em;
  flex-shrink: 0;
}

/* ── Screen 15 · Home screen with overdue widget ── */
.mp-hs-content {
  position: absolute;
  top: calc(var(--mscale) * 32px);
  left: 0; right: 0;
  bottom: calc(var(--mscale) * 56px);
  display: flex; align-items: flex-start; justify-content: center;
  padding-top: calc(var(--mscale) * 14px);
}
.mp-hs-grid {
  display: grid;
  grid-template-columns: repeat(4, calc(var(--mscale) * 35.75px));
  grid-auto-rows: calc(var(--mscale) * 35.75px);
  gap: calc(var(--mscale) * 10.5px);
}
.mp-widget-md {
  grid-column: span 4;
  grid-row: span 2;
  background: rgba(248,236,234,0.62);
  backdrop-filter: blur(14px) saturate(1.25);
  -webkit-backdrop-filter: blur(14px) saturate(1.25);
  border: 0.5px solid rgba(255,255,255,0.62);
  border-radius: calc(var(--mscale) * 11px);
  padding: calc(var(--mscale) * 10px) calc(var(--mscale) * 11px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.56);
  display: flex; flex-direction: column; justify-content: space-between;
}
.mp-w-row1 {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: calc(var(--mscale) * 8px);
}
.mp-w-head {
  display: flex; align-items: center;
  gap: calc(var(--mscale) * 4px);
  margin-bottom: calc(var(--mscale) * 3px);
}
.mp-w-dot {
  width: calc(var(--mscale) * 4px);
  height: calc(var(--mscale) * 4px);
  border-radius: 50%;
  background: #c4504a;
  flex-shrink: 0;
}
.mp-w-eye {
  font-family: var(--ff);
  font-size: calc(var(--mscale) * 5.2px);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #8a2a24;
}
.mp-w-task {
  font-family: var(--ff-brand);
  font-size: calc(var(--mscale) * 10.5px);
  font-weight: 500;
  color: var(--ink);
  line-height: 1.15;
  letter-spacing: -0.01em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.mp-w-cd-chip {
  background: rgba(180,60,50,0.08);
  border: 0.5px solid rgba(180,60,50,0.22);
  border-radius: calc(var(--mscale) * 7px);
  padding: calc(var(--mscale) * 4px) calc(var(--mscale) * 6px);
  min-width: calc(var(--mscale) * 36px);
  text-align: center;
  flex-shrink: 0;
}
.mp-w-cd {
  font-family: var(--ff);
  font-size: calc(var(--mscale) * 10px);
  font-weight: 600;
  color: #8a2a24;
  letter-spacing: -0.02em;
  line-height: 1;
}
.mp-w-cd-lbl {
  font-family: var(--ff);
  font-size: calc(var(--mscale) * 4.5px);
  color: #a04040;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-top: 1px;
}
.mp-w-row2 {
  display: flex; align-items: center; justify-content: space-between;
  gap: calc(var(--mscale) * 4px);
}
.mp-w-bar-track {
  flex: 1;
  max-width: calc(var(--mscale) * 78px);
  height: calc(var(--mscale) * 1.5px);
  border-radius: 2px;
  background: rgba(180,60,50,0.12);
  overflow: hidden;
}
.mp-w-bar-fill {
  height: 100%;
  width: 100%;
  background: rgba(180,60,50,0.38);
  border-radius: 2px;
}
.mp-w-meta {
  font-family: var(--ff);
  font-size: calc(var(--mscale) * 5.5px);
  color: #8a2a24;
  line-height: 1.3;
}
.mp-w-quick {
  height: calc(var(--mscale) * 12px);
  min-width: calc(var(--mscale) * 30px);
  padding: 0 calc(var(--mscale) * 7px);
  border-radius: calc(var(--mscale) * 5px);
  background: rgba(160,50,44,0.82);
  color: #fef2f0;
  font-family: var(--ff);
  font-size: calc(var(--mscale) * 6px);
  font-weight: 500;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow:
    0 1px calc(var(--mscale) * 4px) rgba(45,38,48,0.16),
    inset 0 1px 0 rgba(255,255,255,0.10);
}
.mp-hs-app {
  width: calc(var(--mscale) * 30px);
  height: calc(var(--mscale) * 30px);
  border-radius: calc(var(--mscale) * 7px);
  background: rgba(255,255,255,0.18);
  border: 0.5px solid rgba(255,255,255,0.32);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  justify-self: center;
  align-self: center;
}
.mp-hs-dock {
  position: absolute;
  bottom: calc(var(--mscale) * 14px);
  left: 50%; transform: translateX(-50%);
  display: flex;
  gap: calc(var(--mscale) * 10.5px);
  padding: calc(var(--mscale) * 7px) calc(var(--mscale) * 10px);
  background: rgba(255,255,255,0.22);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: calc(var(--mscale) * 18px);
  border: 0.5px solid rgba(255,255,255,0.32);
}
.mp-hs-dock .mp-hs-app {
  width: calc(var(--mscale) * 22px);
  height: calc(var(--mscale) * 22px);
  border-radius: calc(var(--mscale) * 5px);
}

/* ── Screen 5 · App Lock body (mini) ── */
.mp-applock {
  position: absolute;
  top: calc(var(--mscale) * 29.5px);
  left: 0; right: 0;
  bottom: calc(var(--mscale) * 23px);
  display: flex; flex-direction: column;
  justify-content: space-between;
  padding: calc(var(--mscale) * 8px) calc(var(--mscale) * 12px);
}
.mp-al-center {
  flex: 1; min-height: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: calc(var(--mscale) * 8px);
}
.mp-al-icon {
  width: calc(var(--mscale) * 32px);
  height: calc(var(--mscale) * 32px);
  border-radius: calc(var(--mscale) * 10px);
  background: var(--brand-pale);
  border: 1px solid var(--brand-light);
  display: flex; align-items: center; justify-content: center;
}
.mp-al-icon svg {
  width: 62%; height: 62%;
  fill: var(--brand);
  stroke: none;
}
.mp-al-headline {
  font-family: var(--ff-brand);
  font-size: calc(var(--mscale) * 10px);
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.025em;
  text-align: center;
}
.mp-al-sub {
  font-family: var(--ff);
  font-size: calc(var(--mscale) * 6.5px);
  color: var(--t3);
  text-align: center;
  margin-top: calc(var(--mscale) * 2px);
}
.mp-al-task-card {
  background: rgba(255,255,255,0.65);
  border: 1px solid rgba(255,255,255,0.85);
  border-radius: calc(var(--mscale) * 10px);
  padding: calc(var(--mscale) * 8px);
  width: 100%;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.7);
}
.mp-al-task-lbl {
  font-family: var(--ff);
  font-size: calc(var(--mscale) * 5.5px);
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--t3);
  margin-bottom: calc(var(--mscale) * 4px);
}
.mp-al-task-name {
  font-family: var(--ff-brand);
  font-size: calc(var(--mscale) * 8.5px);
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin-bottom: calc(var(--mscale) * 6px);
}
.mp-al-time-row {
  display: flex; justify-content: space-between; align-items: center;
}
.mp-al-time-lbl {
  font-family: var(--ff);
  font-size: calc(var(--mscale) * 4.5px);
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--t3);
  margin-bottom: 1px;
}
.mp-al-time-lbl.is-overdue { color: var(--state-red); }
.mp-al-time-val {
  font-family: var(--ff);
  font-size: calc(var(--mscale) * 6.5px);
  font-weight: 500;
  color: var(--ink);
}
.mp-al-time-val.is-overdue { color: var(--state-red); }
.mp-al-btns {
  display: flex; flex-direction: column;
  gap: calc(var(--mscale) * 6px);
}
.mp-al-dismiss {
  border-radius: calc(var(--mscale) * 7px);
  height: calc(var(--mscale) * 25px);
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.65);
  border: 1px solid rgba(45,38,48,0.12);
  font-family: var(--ff);
  font-size: calc(var(--mscale) * 8.5px);
  font-weight: 500;
  color: var(--ink);
}
.mp-al-close {
  height: calc(var(--mscale) * 25px);
  border-radius: calc(var(--mscale) * 7px);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ff);
  font-size: calc(var(--mscale) * 8.5px);
  font-weight: 500;
  background: rgba(45,38,48,0.82);
  color: var(--paper-ink);
  box-shadow:
    0 calc(var(--mscale) * 2px) calc(var(--mscale) * 8px) rgba(45,38,48,0.16),
    inset 0 1px 0 rgba(255,255,255,0.10);
}

.final-cta {
  padding: 80px 0 110px;
}
.cta-card {
  max-width: 880px;
  margin: 0 auto;
  background: var(--glass-3);
  backdrop-filter: var(--blur-lg);
  -webkit-backdrop-filter: var(--blur-lg);
  border: 1px solid var(--glass-border);
  border-radius: 32px;
  padding: 64px 56px;
  box-shadow: var(--glass-shadow);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-card::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(122,85,59,0.18), transparent 65%);
  filter: blur(40px);
}
.cta-card::after {
  content: '';
  position: absolute;
  bottom: -120px; left: -80px;
  width: 280px; height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(122,85,59,0.12), transparent 65%);
  filter: blur(40px);
}
.cta-card > * { position: relative; z-index: 1; }
.cta-title {
  font-family: var(--ff-brand);
  font-size: clamp(32px, 4vw, 46px);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--ink);
  margin-top: 18px;
  margin-bottom: 16px;
}
.cta-sub {
  font-size: 17px;
  color: var(--t2);
  line-height: 1.6;
  max-width: 520px;
  margin: 0 auto 32px;
}



/* ════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════ */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 56px; }
  .hero-copy { padding-right: 0; text-align: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-btns { justify-content: center; }
  .phone-stage { min-height: 660px; }
  .hw-frame { grid-template-columns: 1fr; gap: 20px; }
  .hw-text { text-align: center; min-height: 220px; }
  .demo-desc { margin: 0 auto; }
  .hw-phone .phone { --pscale: 1.0; }
  .cards-track { height: 180vh; }
  .nav-eyebrow { display: none; }
}
@media (max-width: 600px) {
  .section { padding: 0 20px; }
  .hero { padding: 56px 0 60px; }
  .pin-track { height: 400vh; }
  .hw-track { height: 450vh; }
  .st-number { font-size: 58px; }
  .final-cta .cta-card { padding: 48px 28px; border-radius: 24px; }
  .callout { display: none; }
  .phone { --pscale: 1.35; }
  .hw-phone .phone { --pscale: 0.9; }
  .phone-stage::before { width: 360px; height: 360px; }
  .hero-btns { flex-direction: column; align-items: center; }
  .demo-name { font-size: 22px; }
}
