/* ============================================================
   No Cheat Day - "Streak calendar"
   pine pitch · chalk · marker yellow · one red strike
   ============================================================ */

:root {
    --pitch: #0B2E22;
    --pitch-2: #123B2C;
    --pitch-3: #1C4D3A;
    --chalk: #F2F3EC;
    --chalk-2: #E6E8DC;
    --chalk-3: #CDD2C0;
    --ink: #0A1A13;
    --ink-soft: #46584E;
    --signal: #FFC531;
    --signal-deep: #E5A900;
    --strike: #FF4A2D;
    --turf: #23945A;

    --font-display: "Big Shoulders Display", "Arial Narrow", Impact, sans-serif;
    --font-body: "Instrument Sans", -apple-system, "Segoe UI", sans-serif;
    --font-mono: "Spline Sans Mono", ui-monospace, Menlo, monospace;

    --line: 3px;
    --radius: 20px;
    --nav-h: 76px;
    /* Rename notice above the nav; collapses to 0 once dismissed. */
    --notice-h: 40px;
    --ease-out: cubic-bezier(0.2, 0.7, 0.2, 1);
    --ease-pop: cubic-bezier(0.34, 1.56, 0.64, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    background: var(--chalk);
    color: var(--ink);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.mono { font-family: var(--font-mono); }

::selection { background: var(--signal); color: var(--ink); }

:focus-visible { outline: 3px solid var(--signal); outline-offset: 3px; }

/* ------------------------------------------------ brand lockup */
.nav-brand {
    display: flex; align-items: center; gap: 12px;
    text-decoration: none; color: inherit;
}
.brand-mark { width: 40px; height: 40px; flex: none; }
.wordmark { display: flex; flex-direction: column; line-height: 1; }
.wm-line {
    font-family: var(--font-display);
    font-weight: 900; font-size: 1.7rem;
    text-transform: uppercase; letter-spacing: 0.02em;
    white-space: nowrap;
}
.wm-cheat { position: relative; display: inline-block; }
/* the strike: "cheat" is cancelled */
.wm-cheat::after {
    content: ""; position: absolute;
    left: -4%; right: -4%; top: 50%;
    height: 0.16em; margin-top: -0.06em;
    background: var(--strike); border-radius: 2px;
    transform: rotate(-8deg) scaleX(1);
    transform-origin: left center;
    animation: strikeDraw 0.5s var(--ease-out) 0.35s backwards;
}
@keyframes strikeDraw { from { transform: rotate(-8deg) scaleX(0); } }
.wm-suffix {
    font-family: var(--font-mono);
    font-size: 0.6rem; font-weight: 600; letter-spacing: 0.3em;
    text-transform: uppercase; margin-top: 3px;
    color: var(--signal);
}

/* ------------------------------------------------ rename notice */
.notice {
    position: fixed; top: 0; left: 0; right: 0; z-index: 101;
    height: var(--notice-h); overflow: hidden;
    background: var(--signal); color: var(--ink);
    border-bottom: var(--line) solid var(--ink);
}
.notice-inner {
    height: 100%;
    display: flex; align-items: center; justify-content: center; gap: 12px;
}
.notice p {
    font-size: 0.82rem; line-height: 1.3; text-align: center;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.notice p strong { font-family: var(--font-display); font-weight: 800; font-size: 1rem; letter-spacing: 0.06em; text-transform: uppercase; margin-right: 4px; }
.notice-close {
    flex: none; width: 26px; height: 26px; border-radius: 6px;
    border: 2px solid var(--ink); background: transparent; color: var(--ink);
    font-size: 1.1rem; line-height: 1; cursor: pointer;
}
.notice-close:hover { background: var(--ink); color: var(--signal); }
body.notice-dismissed { --notice-h: 0px; }
body.notice-dismissed .notice { display: none; }

/* ------------------------------------------------ nav */
.navbar {
    position: fixed; top: var(--notice-h); left: 0; right: 0; z-index: 100;
    background: var(--pitch); color: var(--chalk);
    border-bottom: var(--line) solid var(--pitch-3);
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}
.navbar.is-scrolled { box-shadow: 0 6px 0 rgba(255, 197, 49, 0.9); border-color: var(--pitch); }
.nav-inner {
    height: var(--nav-h);
    display: flex; align-items: center; justify-content: space-between;
}
.nav-menu { display: flex; align-items: center; gap: 30px; list-style: none; }
.nav-menu a {
    text-decoration: none; color: var(--chalk);
    font-weight: 600; font-size: 0.92rem;
    letter-spacing: 0.01em;
    border-bottom: 2px solid transparent;
    transition: border-color 0.2s ease, color 0.2s ease;
}
.nav-menu a:hover, .nav-menu a.active { border-bottom-color: var(--signal); }
.nav-menu a.nav-cta {
    background: var(--signal); color: var(--ink);
    font-family: var(--font-display); font-weight: 800; font-size: 1.05rem;
    letter-spacing: 0.08em; text-transform: uppercase;
    padding: 9px 20px 8px; border-radius: 8px; border-bottom: none;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.nav-menu a.nav-cta:hover { transform: translate(-2px, -2px); box-shadow: 3px 3px 0 var(--chalk); }
.hamburger {
    display: none; background: none; border: none; cursor: pointer;
    flex-direction: column; gap: 5px; padding: 8px;
}
.hamburger span {
    display: block; width: 26px; height: 3px;
    background: var(--chalk); border-radius: 2px;
    transition: transform 0.25s ease, opacity 0.25s ease;
}
.hamburger.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ------------------------------------------------ hero */
.hero {
    background: var(--pitch); color: var(--chalk);
    padding: calc(var(--nav-h) + var(--notice-h) + 72px) 0 88px;
    position: relative; overflow: hidden;
}
/* calendar-grid ground: faint squares, fading downwards */
.hero::before {
    content: ""; position: absolute; inset: 0; pointer-events: none;
    background-image:
        linear-gradient(rgba(255, 197, 49, 0.09) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 197, 49, 0.09) 1px, transparent 1px);
    background-size: 72px 72px;
    -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,0.9), transparent 85%);
    mask-image: linear-gradient(to bottom, rgba(0,0,0,0.9), transparent 85%);
}
.hero-grid {
    position: relative;
    display: grid; grid-template-columns: 1.15fr 0.85fr;
    gap: 56px; align-items: center;
}
.hero-eyebrow {
    display: inline-flex; align-items: center; gap: 10px;
    font-family: var(--font-mono); font-size: 0.74rem; font-weight: 600;
    letter-spacing: 0.16em; text-transform: uppercase;
    color: var(--signal);
    border: 2px solid rgba(255, 197, 49, 0.45);
    padding: 7px 14px; border-radius: 6px;
    margin-bottom: 28px;
}
.eyebrow-dot {
    width: 9px; height: 9px; border-radius: 2px;
    background: var(--strike);
    animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.25; } }

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3.4rem, 6.2vw, 5.2rem);
    font-weight: 900; line-height: 0.88; letter-spacing: 0.005em;
    text-transform: uppercase;
    margin-bottom: 26px;
}
.hero-title span { display: block; }
.hero-title .t-signal { color: var(--signal); }
.hero-subtitle {
    font-size: 1.15rem; line-height: 1.55;
    color: rgba(242, 243, 236, 0.82);
    max-width: 32em; margin-bottom: 32px;
}
.hero-subtitle strong { color: var(--chalk); font-weight: 600; }

.store-badges { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 20px; }
.store-badge {
    display: inline-flex; align-items: center; gap: 11px;
    background: var(--chalk); color: var(--ink);
    border: var(--line) solid var(--chalk);
    border-radius: 10px; padding: 9px 38px 9px 16px;
    cursor: default; user-select: none;
    position: relative; overflow: hidden;
}
.store-badge svg { width: 26px; height: 26px; flex: none; }
.store-badge small { display: block; font-size: 0.66rem; opacity: 0.7; line-height: 1.2; }
.store-badge strong { font-size: 1.02rem; line-height: 1.25; letter-spacing: 0.01em; }
a.store-badge { cursor: pointer; text-decoration: none; transition: transform 0.2s var(--ease-out), box-shadow 0.2s var(--ease-out); }
a.store-badge:hover { transform: translate(-3px, -3px); box-shadow: 5px 5px 0 var(--signal); }
.store-badge--soon {
    background: transparent; color: var(--chalk);
    border-color: rgba(242, 243, 236, 0.35);
}
.store-badge--soon::after {
    content: "SOON";
    position: absolute; top: 8px; right: -26px;
    background: var(--signal); color: var(--ink);
    font-family: var(--font-mono); font-size: 0.55rem; font-weight: 600;
    letter-spacing: 0.1em; padding: 2px 28px;
    transform: rotate(38deg);
}
.hero-privacy-line {
    font-family: var(--font-mono); font-size: 0.78rem; letter-spacing: 0.04em;
    color: rgba(242, 243, 236, 0.65);
}
.hero-privacy-line b { color: var(--signal); font-weight: 600; }

/* staggered page-load reveal */
.reveal-1, .reveal-2, .reveal-3, .reveal-4, .reveal-5 {
    opacity: 0; transform: translateY(22px);
    animation: rise 0.75s var(--ease-out) forwards;
}
.reveal-2 { animation-delay: 0.1s; }
.reveal-3 { animation-delay: 0.22s; }
.reveal-4 { animation-delay: 0.34s; }
.reveal-5 { animation-delay: 0.25s; }
@keyframes rise { to { opacity: 1; transform: translateY(0); } }

/* ---------------- streak card (the signature) */
.hero-visual { position: relative; display: flex; justify-content: center; }
.streak-card {
    width: min(420px, 100%);
    background: var(--chalk); color: var(--ink);
    border: var(--line) solid var(--ink);
    border-radius: 22px;
    padding: 22px 22px 20px;
    box-shadow: 10px 10px 0 var(--signal);
    transform: rotate(-1.5deg);
    transition: transform 0.5s var(--ease-out);
    position: relative;
}
.hero-visual:hover .streak-card { transform: rotate(0deg) translateY(-4px); }
.streak-head {
    display: flex; justify-content: space-between; align-items: flex-end;
    margin-bottom: 14px;
}
.streak-label {
    font-family: var(--font-mono); font-size: 0.7rem; font-weight: 600;
    letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-soft);
}
.streak-title { font-family: var(--font-display); font-weight: 900; font-size: 1.9rem; line-height: 1; text-transform: uppercase; }
.streak-count {
    text-align: right;
    font-family: var(--font-display); font-weight: 900; font-size: 3.4rem; line-height: 0.85;
    color: var(--turf);
}
.streak-count small {
    display: block; font-family: var(--font-mono); font-size: 0.62rem; font-weight: 600;
    letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-soft);
    margin-top: 6px;
}
.streak-grid {
    display: grid; grid-template-columns: repeat(6, 1fr); gap: 7px;
}
.tile {
    aspect-ratio: 1; border-radius: 8px;
    background: var(--chalk-2);
    display: grid; place-items: center;
    position: relative;
}
.tile svg { width: 62%; height: 62%; }
.tile.done {
    background: var(--signal);
    animation: tilePop 0.38s var(--ease-pop) both;
}
.tile.today {
    background: var(--chalk);
    border: 3px solid var(--ink);
    animation: tilePop 0.38s var(--ease-pop) both, todayPulse 1.8s ease-in-out 1.6s infinite;
}
.tile.today::after {
    content: "TODAY"; position: absolute; inset: 0; display: grid; place-items: center;
    font-family: var(--font-mono); font-size: 0.42rem; font-weight: 600; letter-spacing: 0.12em;
}
@keyframes tilePop { from { transform: scale(0.4); opacity: 0; } to { transform: scale(1); opacity: 1; } }
@keyframes todayPulse { 0%, 100% { box-shadow: 0 0 0 0 rgba(255, 197, 49, 0.9); } 50% { box-shadow: 0 0 0 6px rgba(255, 197, 49, 0); } }
.streak-foot {
    display: flex; gap: 18px; margin-top: 16px; padding-top: 14px;
    border-top: 2px solid var(--chalk-2);
}
.streak-stat { flex: 1; }
.streak-stat b { font-family: var(--font-display); font-weight: 900; font-size: 1.5rem; line-height: 1; display: block; }
.streak-stat b.is-strike { color: var(--strike); }
.streak-stat span { font-family: var(--font-mono); font-size: 0.6rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-soft); }

/* floating reminder chip */
.phone-toast {
    position: absolute; bottom: -54px; left: -18px; z-index: 5;
    display: flex; gap: 10px; align-items: center;
    background: var(--pitch); color: var(--chalk);
    border: var(--line) solid var(--signal);
    border-radius: 12px; padding: 10px 14px;
    font-size: 0.74rem; line-height: 1.3;
    max-width: 250px;
    opacity: 0; transform: translateY(14px) rotate(-1.5deg);
    animation: toastIn 0.55s var(--ease-out) 2.2s forwards;
}
.phone-toast svg { width: 20px; height: 20px; flex: none; color: var(--signal); }
.phone-toast strong { color: var(--signal); }
.phone-toast small { color: rgba(242, 243, 236, 0.7); font-size: 0.64rem; }
@keyframes toastIn { to { opacity: 1; transform: translateY(0) rotate(-1.5deg); } }

/* ------------------------------------------------ routine ticker */
.day-strip {
    background: var(--signal); color: var(--ink);
    border-top: var(--line) solid var(--ink); border-bottom: var(--line) solid var(--ink);
    overflow: hidden; padding: 12px 0;
}
.day-strip-track { display: flex; width: max-content; animation: marquee 48s linear infinite; }
.day-strip:hover .day-strip-track { animation-play-state: paused; }
.day-strip-run { display: flex; flex: none; }
.day-strip-run > span {
    font-family: var(--font-mono); font-size: 0.8rem; font-weight: 600;
    white-space: nowrap; padding: 0 26px;
    display: inline-flex; align-items: center; gap: 8px;
}
.day-strip-run > span::after {
    content: ""; width: 9px; height: 9px; border-radius: 2px;
    background: var(--ink); margin-left: 26px;
}
.day-strip-run b { font-family: var(--font-display); font-size: 1.05rem; font-weight: 900; letter-spacing: 0.04em; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ------------------------------------------------ sections */
section { padding: 100px 0; }
.section-header { max-width: 680px; margin-bottom: 56px; }
.section-eyebrow {
    display: inline-flex; align-items: center; gap: 10px;
    font-family: var(--font-mono); font-size: 0.72rem; font-weight: 600;
    letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-soft);
    margin-bottom: 16px;
}
.section-eyebrow::before { content: ""; width: 10px; height: 10px; background: var(--signal); border: 2px solid var(--ink); border-radius: 2px; }
.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 5.4vw, 4.6rem);
    font-weight: 900; line-height: 0.92; letter-spacing: 0.005em;
    text-transform: uppercase;
    margin-bottom: 18px;
}
.section-title .t-signal { color: var(--signal); -webkit-text-stroke: 1.5px var(--ink); }
.section-subtitle { font-size: 1.1rem; color: var(--ink-soft); max-width: 36em; }

/* how it works */
.how { background: var(--chalk); border-bottom: var(--line) solid var(--ink); }
.steps {
    list-style: none;
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.step {
    background: var(--chalk);
    border: var(--line) solid var(--ink); border-radius: var(--radius);
    padding: 26px 26px 30px;
    position: relative;
    transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out);
}
.step:hover { transform: translate(-3px, -3px); box-shadow: 7px 7px 0 var(--signal); }
.step-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 18px; }
.step-num {
    font-family: var(--font-display); font-size: 4.2rem; font-weight: 900; line-height: 0.8;
    color: transparent; -webkit-text-stroke: 2px var(--ink);
    transition: color 0.25s ease;
}
.step:hover .step-num { color: var(--signal); }
.step-icon {
    width: 56px; height: 56px; flex: none;
    background: var(--signal); border: var(--line) solid var(--ink); border-radius: 14px;
    display: grid; place-items: center;
}
.step-icon svg { width: 30px; height: 30px; }
.step h3 { font-family: var(--font-display); font-size: 1.9rem; font-weight: 800; text-transform: uppercase; line-height: 1; margin-bottom: 10px; }
.step p { font-size: 0.98rem; color: var(--ink-soft); }
.step p strong { color: var(--ink); }
.step-cost { display: inline-block; margin-top: 14px; font-family: var(--font-mono); font-size: 0.7rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; background: var(--chalk-2); padding: 4px 10px; border-radius: 6px; }

/* features */
.features { background: var(--chalk-2); border-bottom: var(--line) solid var(--ink); }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.feature-card {
    background: var(--chalk);
    border: var(--line) solid var(--ink); border-radius: var(--radius);
    padding: 26px 24px;
    transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out);
}
.feature-card:hover { transform: translate(-3px, -3px); box-shadow: 6px 6px 0 var(--ink); }
.feature-glyph {
    display: grid; place-items: center;
    width: 50px; height: 50px;
    background: var(--signal);
    border: var(--line) solid var(--ink); border-radius: 12px;
    margin-bottom: 18px;
}
.feature-glyph svg { width: 26px; height: 26px; }
.feature-card h3 { font-family: var(--font-display); font-size: 1.65rem; font-weight: 800; text-transform: uppercase; line-height: 1; margin-bottom: 10px; }
.feature-card p { font-size: 0.95rem; color: var(--ink-soft); }
.feature-card-accent { background: var(--pitch); color: var(--chalk); border-color: var(--pitch); }
.feature-card-accent h3 { color: var(--signal); }
.feature-card-accent p { color: rgba(242, 243, 236, 0.8); }
.feature-card-accent:hover { box-shadow: 6px 6px 0 var(--signal); }

/* privacy */
.privacy {
    background: var(--pitch); color: var(--chalk);
    border-bottom: var(--line) solid var(--ink);
    position: relative; overflow: hidden;
}
.privacy::before {
    content: ""; position: absolute; inset: 0; pointer-events: none;
    background-image:
        linear-gradient(rgba(255, 197, 49, 0.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 197, 49, 0.07) 1px, transparent 1px);
    background-size: 72px 72px;
    -webkit-mask-image: linear-gradient(to right, rgba(0,0,0,0.9), transparent 60%);
    mask-image: linear-gradient(to right, rgba(0,0,0,0.9), transparent 60%);
}
.privacy .container { position: relative; display: grid; grid-template-columns: 1fr 1.15fr; gap: 56px; align-items: start; }
.privacy .section-eyebrow { color: rgba(242, 243, 236, 0.7); }
.privacy-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 6.4vw, 5.6rem);
    font-weight: 900; line-height: 0.88; text-transform: uppercase;
}
.privacy-title .t-signal { color: var(--signal); }
.privacy-lock { margin-top: 28px; width: 92px; height: 92px; }
.privacy-lock path { stroke-dasharray: 220; stroke-dashoffset: 220; }
.privacy-lock.io-in path { animation: drawLine 1.1s var(--ease-out) 0.2s forwards; }
@keyframes drawLine { to { stroke-dashoffset: 0; } }
.privacy-points { display: grid; grid-template-columns: 1fr 1fr; gap: 30px 36px; }
.privacy-point {
    border-top: 2px solid rgba(255, 197, 49, 0.35); padding-top: 16px;
}
.privacy-point h4 {
    font-family: var(--font-display); font-size: 1.5rem; font-weight: 800;
    text-transform: uppercase; line-height: 1;
    color: var(--signal); margin-bottom: 8px;
}
.privacy-point p { font-size: 0.96rem; color: rgba(242, 243, 236, 0.82); }
.privacy a, .privacy a:visited {
    color: var(--signal); font-weight: 600;
    text-decoration: underline; text-decoration-color: rgba(255, 197, 49, 0.5);
    text-decoration-thickness: 2px; text-underline-offset: 3px;
}
.privacy a:hover, .privacy a:focus-visible { text-decoration-color: var(--signal); }

/* contact */
.contact { background: var(--chalk); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 64px; align-items: start; }
.contact-copy p { color: var(--ink-soft); margin-bottom: 18px; max-width: 30em; }
.contact-copy a { color: var(--ink); font-weight: 600; text-decoration: underline; text-decoration-color: var(--signal); text-decoration-thickness: 2px; text-underline-offset: 3px; }
.contact-mail { font-family: var(--font-display); font-size: 1.6rem; font-weight: 800; text-transform: uppercase; }
.contact-mail a { text-decoration: none; border-bottom: 3px solid var(--signal); }
.contact-loc { font-family: var(--font-mono); font-size: 0.8rem; letter-spacing: 0.04em; }

.contact-form {
    background: var(--chalk);
    border: var(--line) solid var(--ink); border-radius: var(--radius);
    padding: 34px 30px;
    box-shadow: 10px 10px 0 var(--signal);
}
.form-group { margin-bottom: 20px; }
.form-group label {
    display: block; font-family: var(--font-mono);
    font-size: 0.72rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase;
    margin-bottom: 7px; color: var(--ink-soft);
}
.form-group input, .form-group textarea {
    width: 100%;
    font-family: var(--font-body); font-size: 1rem; color: var(--ink);
    background: var(--chalk-2);
    border: var(--line) solid var(--ink); border-radius: 10px;
    padding: 12px 14px;
    transition: box-shadow 0.15s ease, transform 0.15s ease, background 0.15s ease;
}
.form-group input:focus, .form-group textarea:focus {
    outline: none; background: var(--chalk);
    box-shadow: 4px 4px 0 var(--signal);
    transform: translate(-1px, -1px);
}
.form-group textarea { resize: vertical; }
.form-group ::placeholder { color: rgba(70, 88, 78, 0.6); }

.btn {
    display: inline-block; cursor: pointer;
    font-family: var(--font-display); font-size: 1.2rem; font-weight: 800;
    letter-spacing: 0.08em; text-transform: uppercase;
    border-radius: 10px; padding: 13px 30px 12px;
    border: var(--line) solid var(--ink);
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.2s ease;
}
.btn-primary { background: var(--signal); color: var(--ink); }
.btn-primary:hover { transform: translate(-3px, -3px); box-shadow: 5px 5px 0 var(--ink); }
.btn-primary:active { transform: translate(0, 0); box-shadow: none; }
.btn-primary:disabled { opacity: 0.6; cursor: wait; transform: none; box-shadow: none; }

.form-status {
    display: none;
    border-radius: 10px; padding: 12px 14px; margin-bottom: 18px;
    font-size: 0.92rem; font-weight: 500;
    border: var(--line) solid var(--ink);
}
.form-status.show { display: block; }
.form-status.success { background: #D9F0DF; }
.form-status.error { background: #FFD9D0; }

.honeypot-field {
    position: absolute; left: -9999px; top: auto;
    width: 1px; height: 1px; overflow: hidden;
}

/* footer */
.footer {
    background: var(--pitch); color: var(--chalk);
    padding: 56px 0 0; overflow: hidden;
}
.footer-inner { display: grid; grid-template-columns: 1fr auto; gap: 20px 60px; align-items: start; }
.footer-brand p { color: rgba(242, 243, 236, 0.65); font-size: 0.92rem; margin-top: 12px; max-width: 26em; }
.footer-links { list-style: none; display: flex; gap: 24px; padding-top: 10px; flex-wrap: wrap; }
.footer-links a { color: rgba(242, 243, 236, 0.85); text-decoration: none; font-size: 0.92rem; font-weight: 500; }
.footer-links a:hover { color: var(--signal); }
.footer-bottom {
    grid-column: 1 / -1;
    border-top: 1px solid rgba(242, 243, 236, 0.18);
    padding-top: 22px; margin-top: 18px;
    font-family: var(--font-mono); font-size: 0.74rem;
    color: rgba(242, 243, 236, 0.55);
}
/* the ghost wordmark, cropped by the bottom of the page */
.footer-ghost {
    display: block; text-align: center;
    font-family: var(--font-display); font-weight: 900; text-transform: uppercase;
    font-size: clamp(4rem, 15.4vw, 14rem); line-height: 0.75;
    letter-spacing: 0.01em; color: var(--pitch-2);
    margin: 28px 0 -0.1em; white-space: nowrap;
    user-select: none;
}

/* scroll reveals (added by JS) */
.io-reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.6s ease, transform 0.6s var(--ease-out); }
.io-reveal.io-in { opacity: 1; transform: translateY(0); }

/* ------------------------------------------------ app tour (screenshots) */
.tour { padding: 92px 0 60px; position: relative; overflow: hidden; background: var(--chalk); border-bottom: var(--line) solid var(--ink); }
.tour .section-header { margin-bottom: 26px; }
.tour-toggle {
    display: inline-flex; gap: 4px; padding: 4px;
    background: var(--chalk); border: var(--line) solid var(--ink); border-radius: 10px; margin-bottom: 8px;
}
.tour-tab {
    border: none; cursor: pointer; background: transparent;
    font-family: var(--font-display); font-size: 1.05rem; font-weight: 800;
    letter-spacing: 0.08em; text-transform: uppercase;
    color: var(--ink-soft); padding: 8px 22px 6px; border-radius: 7px;
    transition: background 0.25s ease, color 0.25s ease;
}
.tour-tab.is-active { background: var(--ink); color: var(--signal); }
.tour-rail-wrap { position: relative; }
.tour-rail {
    display: flex; gap: 22px; overflow-x: auto;
    scroll-snap-type: x mandatory; scroll-padding: 0 24px;
    padding: 18px max(24px, calc((100vw - 1080px) / 2)) 8px;
    scrollbar-width: none; cursor: grab;
}
.tour-rail::-webkit-scrollbar { display: none; }
.tour-rail.is-dragging { cursor: grabbing; scroll-snap-type: none; }
.tour-rail.is-hidden { display: none; }
.tour-card {
    flex: 0 0 auto; width: min(238px, 62vw);
    margin: 0; scroll-snap-align: center; text-align: center;
}
.shot-frame {
    background: var(--ink); border-radius: 34px; padding: 9px;
    box-shadow: 8px 8px 0 var(--signal);
    transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
}
.tour-card:hover .shot-frame { transform: translate(-3px, -6px); box-shadow: 12px 14px 0 var(--signal); }
.shot-frame img {
    display: block; width: 100%; height: auto;
    border-radius: 26px; background: var(--ink);
    user-select: none; -webkit-user-drag: none;
}
.tour-card figcaption {
    margin-top: 14px; font-family: var(--font-mono);
    font-size: 0.7rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--ink-soft);
}
.tour-arrow {
    position: absolute; top: 42%; z-index: 2;
    width: 44px; height: 44px; border-radius: 10px;
    border: var(--line) solid var(--ink); background: var(--signal);
    color: var(--ink); font-size: 1.6rem; line-height: 1;
    cursor: pointer; display: grid; place-items: center;
    box-shadow: 3px 3px 0 var(--ink);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.tour-arrow:hover { transform: translate(-1px, -1px); box-shadow: 4px 4px 0 var(--ink); }
.tour-prev { left: 14px; }
.tour-next { right: 14px; }
.tour-hint {
    text-align: center; margin-top: 10px;
    font-family: var(--font-mono); font-size: 0.7rem;
    letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-soft);
    opacity: 0.7;
}

/* ------------------------------------------------ responsive */
@media (max-width: 968px) {
    .hero-grid { grid-template-columns: 1fr; gap: 64px; }
    .hero-visual { order: 2; }
    .steps { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: 1fr 1fr; }
    .privacy .container { grid-template-columns: 1fr; gap: 40px; }
    .contact-grid { grid-template-columns: 1fr; gap: 44px; }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed; top: calc(var(--nav-h) + var(--notice-h)); left: 0; right: 0;
        background: var(--pitch);
        border-bottom: var(--line) solid var(--pitch-3);
        flex-direction: column; gap: 0; padding: 10px 0 16px;
        transform: translateY(-130%); transition: transform 0.3s ease;
        z-index: -1;
    }
    .nav-menu.active { transform: translateY(0); }
    .nav-menu li { width: 100%; text-align: center; }
    .nav-menu a { display: block; padding: 14px; border-bottom: none; }
    .nav-menu a.nav-cta { margin: 10px 24px 0; }
    .hamburger { display: flex; }
    section { padding: 68px 0; }
    .features-grid { grid-template-columns: 1fr; }
    .privacy-points { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: 1fr; }
    .footer-links { gap: 16px 22px; padding: 0; }
    .phone-toast { left: 0; bottom: -50px; max-width: 230px; }
    .tour-arrow { display: none; }
    .tour-rail { padding-left: 18px; padding-right: 18px; }
}

@media (max-width: 480px) {
    .hero { padding-top: calc(var(--nav-h) + var(--notice-h) + 44px); }
    .notice p { white-space: normal; font-size: 0.72rem; }
    .notice p strong { font-size: 0.85rem; display: block; margin: 0; }
    :root { --notice-h: 52px; }
    .hero-title { font-size: clamp(3rem, 15vw, 4.2rem); }
    .hero-eyebrow { font-size: 0.66rem; letter-spacing: 0.1em; padding: 6px 10px; }
    .store-badges { flex-direction: column; align-items: flex-start; }
    .contact-form { padding: 26px 20px; box-shadow: 6px 6px 0 var(--signal); }
    .streak-card { padding: 18px 16px 16px; box-shadow: 7px 7px 0 var(--signal); }
    .wm-line { font-size: 1.45rem; }
    .brand-mark { width: 34px; height: 34px; }
}

/* ------------------------------------------------ reduced motion */
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .reveal-1, .reveal-2, .reveal-3, .reveal-4, .reveal-5,
    .phone-toast, .tile.done, .tile.today, .wm-cheat::after { animation: none; opacity: 1; transform: none; }
    .wm-cheat::after { transform: rotate(-8deg); }
    .phone-toast { transform: rotate(-1.5deg); }
    .day-strip-track { animation: none; }
    .io-reveal { opacity: 1; transform: none; transition: none; }
    .eyebrow-dot { animation: none; }
    .privacy-lock path { stroke-dashoffset: 0; }
    .privacy-lock.io-in path { animation: none; }
}
