/* ============================================================
   Sarnie marketing site
   1. Tokens        2. Base & utilities   3. Buttons
   4. Nav & footer  5. Heroes             6. Sections & heads
   7. Components    8. Page: features     9. Page: marketing
   10. Page: demo   11. Motion
   ============================================================ */

/* ---------- 1. Tokens ---------- */
:root {
    --amber: #f59e0b;
    --amber-dark: #d97706;
    --amber-pale: #fef3c7;
    --cream: #fffbeb;
    --ink: #1c1917;
    --ink-soft: #57534e;
    --paper: #ffffff;
    --line: #f3e8c8;
    --line-soft: #f5f0e0;
    --green: #16a34a;
    --green-pale: #dcfce7;
    --red: #dc2626;
    --red-pale: #fee2e2;
    --blue: #1d4ed8;
    --blue-pale: #dbeafe;
    --radius: 18px;
    --radius-lg: 28px;
    --shadow: 0 10px 30px rgba(28, 25, 23, .08);
    --shadow-deep: 0 18px 40px rgba(28, 25, 23, .18);
}

/* ---------- 2. Base & utilities ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: "Instrument Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    color: var(--ink);
    background: var(--cream);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

h1, h2, h3, h4 { letter-spacing: -.02em; text-wrap: balance; }

.wrap { max-width: 1080px; margin: 0 auto; padding: 0 24px; }

.center { text-align: center; }
.muted { color: var(--ink-soft); }

/* Benefit lists — every content ul across the site gets tick bullets */
.tick-list, .feat-copy ul {
    list-style: none; padding: 0;
    margin: 16px 0 0; display: grid; gap: 9px;
    color: var(--ink-soft);
}
.tick-list li, .feat-copy ul li { position: relative; padding-left: 28px; }
.tick-list li::before, .feat-copy ul li::before {
    content: "\2713"; position: absolute; left: 0; top: 0;
    color: var(--green); font-weight: 800;
}
.feat-copy ul + p { margin-top: 16px; }
.fine-print { font-size: .82rem; color: var(--ink-soft); }
.table-note { text-align: center; margin-top: 18px; font-size: .85rem; color: var(--ink-soft); }
.section-foot-link { text-align: center; margin-top: 32px; }

/* ---------- 3. Buttons ---------- */
.btn {
    display: inline-block; padding: 14px 28px; border-radius: 999px;
    background: var(--ink); color: #fff; font-weight: 700; text-decoration: none;
    font-size: 1rem; font-family: inherit; border: none; cursor: pointer;
    transition: transform .12s ease, box-shadow .12s ease, background .12s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn.primary { background: var(--amber); }
.btn.primary:hover { background: var(--amber-dark); }
.btn.ghost { background: transparent; color: var(--ink); border: 2px solid var(--ink); }
.btn.big { padding: 18px 36px; font-size: 1.1rem; }
.btn.block { display: block; width: 100%; text-align: center; }

/* ---------- 4. Nav & footer ---------- */
.site-nav {
    position: sticky; top: 0; z-index: 50;
    background: rgba(255, 251, 235, .92);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--line);
}
.nav-inner {
    display: flex; align-items: center; justify-content: space-between;
    padding: 16px 24px; max-width: 1080px; margin: 0 auto;
}
.logo {
    font-size: 1.35rem; font-weight: 800; letter-spacing: -.02em;
    color: var(--ink); text-decoration: none;
    display: flex; align-items: center; gap: 8px;
}
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { color: var(--ink-soft); text-decoration: none; font-weight: 600; font-size: .95rem; }
.nav-links a:hover { color: var(--ink); }
.nav-links a.current { color: var(--amber-dark); }
.nav-links a.btn { color: #fff; }

/* Hamburger — mobile only */
.nav-toggle {
    display: none; flex-direction: column; justify-content: center; gap: 5px;
    width: 44px; height: 44px; padding: 10px;
    background: none; border: none; border-radius: 10px; cursor: pointer;
}
.nav-toggle:hover { background: var(--amber-pale); }
.nav-toggle .bar {
    display: block; height: 2.5px; width: 100%; border-radius: 999px;
    background: var(--ink); transition: transform .25s ease, opacity .2s ease;
}
.nav-toggle[aria-expanded="true"] .bar:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .bar:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* Mobile menu panel */
.mobile-menu {
    display: none; flex-direction: column; gap: 4px;
    padding: 10px 24px 20px; border-top: 1px solid var(--line);
}
.mobile-menu a {
    color: var(--ink); text-decoration: none; font-weight: 600; font-size: 1.05rem;
    padding: 12px 10px; border-radius: 12px;
}
.mobile-menu a:hover { background: var(--amber-pale); }
.mobile-menu a.current { color: var(--amber-dark); background: var(--amber-pale); }
.mobile-menu a.btn { color: #fff; text-align: center; margin-top: 10px; }
.mobile-menu a.btn.primary:hover { background: var(--amber-dark); }
@media (prefers-reduced-motion: no-preference) {
    .mobile-menu.open a { animation: menu-in .3s ease backwards; }
    .mobile-menu.open a:nth-child(2) { animation-delay: .04s; }
    .mobile-menu.open a:nth-child(3) { animation-delay: .08s; }
    .mobile-menu.open a:nth-child(4) { animation-delay: .12s; }
    .mobile-menu.open a:nth-child(5) { animation-delay: .16s; }
}
@keyframes menu-in { from { opacity: 0; transform: translateY(-6px); } }

.site-footer { border-top: 1px solid var(--line); padding: 36px 0 48px; margin-top: 40px; }
.foot-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.site-footer p, .site-footer a { color: var(--ink-soft); font-size: .9rem; text-decoration: none; }
.site-footer a:hover { color: var(--ink); }

/* ---------- 5. Heroes ---------- */
.page-hero { position: relative; padding: 72px 0 40px; }
.page-hero.tight { padding-bottom: 16px; }

.hero-bg {
    position: absolute; inset: -80px 0 0; pointer-events: none; z-index: -1;
    background:
        radial-gradient(560px 340px at 82% 8%, rgba(245, 158, 11, .16), transparent 70%),
        radial-gradient(420px 300px at 8% 90%, rgba(245, 158, 11, .10), transparent 70%);
}

.hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: center; }

.kicker {
    display: inline-block; background: var(--amber-pale); color: var(--amber-dark);
    font-weight: 700; font-size: .85rem; padding: 6px 14px; border-radius: 999px;
    margin-bottom: 20px; letter-spacing: .02em;
}

.page-hero h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); line-height: 1.08; letter-spacing: -.03em; font-weight: 800; }
.page-hero.tight h1 { font-size: clamp(2.2rem, 4.5vw, 3rem); }
.page-hero h1 .accent { color: var(--amber-dark); }

.lead { margin: 22px 0 32px; font-size: 1.2rem; color: var(--ink-soft); max-width: 34em; }
.sub-lead { margin-top: 14px; color: var(--ink-soft); font-size: 1.15rem; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-note { margin-top: 18px; font-size: .9rem; color: var(--ink-soft); }

.hero-visual { position: relative; }
.hero-visual > img {
    border-radius: var(--radius); box-shadow: var(--shadow);
    aspect-ratio: 4/4.6; object-fit: cover;
}

.blob {
    position: absolute; border-radius: 52% 48% 60% 40% / 55% 45% 55% 45%;
    background: var(--amber-pale); opacity: .55; pointer-events: none; z-index: -1;
}
.blob-1 { width: 130px; height: 130px; top: 4%; right: 4%; }
.blob-2 { width: 70px; height: 70px; bottom: 10%; left: 44%; opacity: .4; }

/* ---------- 6. Sections & heads ---------- */
section { padding: 64px 0; }

.section-head { text-align: center; max-width: 640px; margin: 0 auto 48px; }
.section-head p { margin-top: 14px; color: var(--ink-soft); font-size: 1.05rem; }

h2 { font-size: clamp(1.7rem, 3.6vw, 2.4rem); line-height: 1.15; font-weight: 800; }

.cta { text-align: center; }
.cta p { margin: 16px 0 24px; color: var(--ink-soft); }

/* ---------- 7. Shared components ---------- */

/* Ticket status pill — hero card and standalone mocks */
.t-status {
    display: inline-block; padding: 6px 12px; border-radius: 999px;
    font-weight: 700; font-size: .8rem;
    background: var(--green-pale); color: var(--green);
    transition: background .35s ease, color .35s ease;
}
.t-status.is-received { background: var(--blue-pale); color: var(--blue); }
.t-status.is-making { background: var(--amber-pale); color: var(--amber-dark); }
.t-status.is-ready { background: var(--green-pale); color: var(--green); }

.t-label {
    font-size: .7rem; font-weight: 700; letter-spacing: .1em;
    color: var(--ink-soft); text-transform: uppercase;
}

/* Floating ticket card on the home hero */
.ticket-card {
    position: absolute; bottom: -24px; left: -20px;
    background: var(--paper); border-radius: 16px; box-shadow: var(--shadow-deep);
    padding: 18px 22px; width: 210px; text-align: center;
}
.ticket-card .t-number { font-size: 2.6rem; font-weight: 900; letter-spacing: -.03em; line-height: 1.1; }
.ticket-card .t-slot { font-size: .9rem; color: var(--ink-soft); margin-top: 2px; }
.ticket-card .t-status { margin-top: 10px; }

/* Standalone ticket mock (features page) */
.ticket-mock { text-align: center; }
.ticket-mock .t-number { font-size: 3rem; font-weight: 900; letter-spacing: -.03em; }
.ticket-mock .t-slot { color: var(--ink-soft); margin-bottom: 12px; }

/* Commission comparison */
.compare { background: var(--ink); border-radius: var(--radius-lg); padding: 56px 40px; color: #fff; }
.compare h2 { color: #fff; text-align: center; }
.compare .sub { text-align: center; color: #d6d3d1; margin: 12px auto 40px; max-width: 40em; }
.compare-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; max-width: 760px; margin: 0 auto; }
.compare-card { border-radius: var(--radius); padding: 28px; }
.compare-card.them { background: #292524; border: 1px solid #44403c; }
.compare-card.us { background: var(--amber); color: var(--ink); }
.compare-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 6px; }
.compare-card .pct { font-size: 3rem; font-weight: 900; letter-spacing: -.03em; line-height: 1.1; }
.compare-card.them .pct { color: #f87171; }
.compare-card p { font-size: .95rem; margin-top: 10px; }
.compare-card.them p { color: #d6d3d1; }
.compare-foot { text-align: center; margin-top: 32px; color: #d6d3d1; font-size: .95rem; }
.compare-foot strong { color: #fff; }

/* Feature cards */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.feature {
    background: var(--paper); border-radius: var(--radius); padding: 28px;
    box-shadow: 0 2px 10px rgba(28, 25, 23, .05); border: 1px solid var(--line-soft);
}
.feature .emoji { font-size: 1.9rem; }
.feature h3 { margin: 12px 0 6px; font-size: 1.1rem; }
.feature p { color: var(--ink-soft); font-size: .95rem; }

/* Photo band */
.photo-band { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.photo-band img { border-radius: var(--radius); aspect-ratio: 4/3; object-fit: cover; box-shadow: var(--shadow); }

/* Steps */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.step { background: var(--paper); border-radius: var(--radius); padding: 30px 26px; border: 1px solid var(--line-soft); }
.step .num {
    width: 42px; height: 42px; border-radius: 999px; background: var(--amber); color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-weight: 800; font-size: 1.1rem; margin-bottom: 16px;
}
.step h3 { font-size: 1.1rem; margin-bottom: 6px; }
.step p { color: var(--ink-soft); font-size: .95rem; }

/* Savings */
.savings { background: var(--paper); border-radius: var(--radius-lg); padding: 56px 40px; border: 1px solid var(--line-soft); }
.savings-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.savings .savings-copy p { margin-top: 14px; color: var(--ink-soft); }
.savings table { width: 100%; border-collapse: collapse; font-size: .98rem; font-variant-numeric: tabular-nums; }
.savings td { padding: 12px 8px; border-bottom: 1px solid var(--line-soft); }
.savings td:last-child { text-align: right; font-weight: 700; }
.savings td.neg { color: var(--red); }
.savings tr.total td { border-bottom: none; font-size: 1.15rem; }
.savings tr.total td:last-child { color: var(--green); }
.savings .fine-print { margin-top: 14px; }

/* "See it in action" demo stage */
.demo-stage {
    display: grid; grid-template-columns: 300px 1fr; gap: 40px; align-items: center;
    background: var(--ink); border-radius: var(--radius-lg); padding: 48px 40px; color: #fff;
}
.demo-stage h2 { color: #fff; }
.demo-caption { color: #d6d3d1; font-size: .92rem; margin-top: 18px; }
.demo-caption strong { color: #fbbf24; }
.demo-stage .mini-board { margin-top: 22px; }

.phone {
    width: 250px; margin: 0 auto; background: #0c0a09; border-radius: 34px;
    padding: 12px; box-shadow: 0 24px 60px rgba(0, 0, 0, .45);
}
.phone-screen {
    background: var(--cream); border-radius: 24px; padding: 22px 16px 26px;
    text-align: center; color: var(--ink); min-height: 320px;
}
.phone-notch { width: 84px; height: 5px; border-radius: 999px; background: #d6d3d1; margin: 0 auto 18px; }
.phone .p-ticket { font-size: 2.4rem; font-weight: 900; letter-spacing: -.03em; }
.phone .p-slot { font-size: .8rem; color: var(--ink-soft); margin-bottom: 14px; }
.phone-steps { text-align: left; display: grid; gap: 7px; }
.p-step {
    display: flex; align-items: center; gap: 9px; padding: 8px 10px;
    border-radius: 10px; font-size: .78rem; font-weight: 600; color: var(--ink-soft);
    background: #ffffff; border: 1px solid #f0ead6;
    transition: background .4s, color .4s;
}
.p-step .dot {
    width: 20px; height: 20px; border-radius: 999px; background: #e7e5e4;
    display: flex; align-items: center; justify-content: center;
    font-size: .62rem; font-weight: 800; color: #78716c; flex-shrink: 0;
    transition: background .4s, color .4s;
}
.p-step.done { color: #a8a29e; text-decoration: line-through; }
.p-step.done .dot { background: var(--green-pale); color: var(--green); }
.p-step.now { background: var(--amber-pale); color: var(--ink); }
.p-step.now .dot { background: var(--amber); color: #fff; }

.mini-board { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.mini-col { background: #292524; border-radius: 14px; padding: 12px; min-height: 190px; }
.mini-col h4 {
    margin-bottom: 10px; font-size: .68rem; font-weight: 700; letter-spacing: .1em;
    text-transform: uppercase; color: #a8a29e;
}
.mini-card {
    background: #fff; color: var(--ink); border-radius: 10px; padding: 10px 12px;
    font-size: .78rem; box-shadow: 0 4px 14px rgba(0, 0, 0, .3); margin-bottom: 8px;
    border-left: 4px solid var(--amber);
}
.mini-card .mc-top { display: flex; justify-content: space-between; font-weight: 800; }
.mini-card .mc-items { color: var(--ink-soft); font-size: .72rem; margin-top: 2px; }
.mini-card.ghost { opacity: .28; box-shadow: none; }
.mini-card.demo-active { border-left-color: var(--green); }

/* Count-up numbers */
.countup { font-variant-numeric: tabular-nums; }

/* Pricing cards */
.plans {
    display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
    max-width: 880px; margin: 0 auto; align-items: start;
}

.price-card {
    position: relative; background: var(--paper); border-radius: var(--radius-lg);
    padding: 44px 40px; text-align: center; box-shadow: var(--shadow);
    border: 2px solid var(--line-soft);
}
.price-card.featured { border-color: var(--amber); }
.plan-badge {
    position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
    background: var(--amber); color: #fff; font-weight: 800; font-size: .78rem;
    letter-spacing: .04em; text-transform: uppercase;
    padding: 5px 16px; border-radius: 999px; white-space: nowrap;
}
.price-card li.na { color: #b8b2a3; }
.price-card li.na::before { content: "\2013"; color: #b8b2a3; }
.price-card .plan { font-weight: 700; color: var(--amber-dark); letter-spacing: .06em; text-transform: uppercase; font-size: .85rem; }
.price-card .amount { font-size: 3.6rem; font-weight: 900; letter-spacing: -.04em; margin-top: 10px; }
.price-card .amount span { font-size: 1.1rem; font-weight: 600; color: var(--ink-soft); letter-spacing: 0; }
.price-card .zero { color: var(--green); font-weight: 800; margin: 6px 0 24px; }
.price-card ul { list-style: none; text-align: left; margin-bottom: 28px; }
.price-card li { padding: 9px 0 9px 30px; position: relative; color: var(--ink-soft); border-bottom: 1px solid #faf5e4; }
.price-card li::before { content: "\2713"; position: absolute; left: 4px; color: var(--green); font-weight: 800; }
.price-card .price-fine { margin-top: 16px; text-align: center; }

/* Comparison table */
.vs-scroll { overflow-x: auto; }
.vs-table {
    width: 100%; border-collapse: collapse; background: var(--paper);
    border-radius: var(--radius); overflow: hidden; min-width: 560px;
    box-shadow: 0 2px 10px rgba(28, 25, 23, .05);
}
.vs-table th, .vs-table td { padding: 16px 18px; text-align: left; border-bottom: 1px solid var(--line-soft); }
.vs-table th { background: var(--ink); color: #fff; font-size: .95rem; }
.vs-table td.yes { color: var(--green); font-weight: 700; }
.vs-table td.no { color: var(--red); font-weight: 700; }

/* FAQ */
.faq { max-width: 720px; margin: 0 auto; }
.faq details { background: var(--paper); border-radius: 14px; margin-bottom: 12px; border: 1px solid var(--line-soft); }
.faq summary { padding: 18px 22px; font-weight: 700; cursor: pointer; list-style: none; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; float: right; font-size: 1.3rem; color: var(--amber-dark); }
.faq details[open] summary::after { content: "\2013"; }
.faq details p { padding: 0 22px 18px; color: var(--ink-soft); }

/* ---------- 8. Features page ---------- */
.feat-row {
    display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center;
    padding: 56px 0; border-bottom: 1px solid var(--line);
}
.feat-row:last-of-type { border-bottom: none; }
.feat-row.flip .feat-visual { order: -1; }
.feat-copy .kicker { margin-bottom: 14px; }
.feat-copy h2 { margin-bottom: 12px; }
.feat-copy p { color: var(--ink-soft); }
.feat-copy p + p { margin-top: 10px; }
.feat-visual {
    background: var(--paper); border: 1px solid var(--line-soft); border-radius: 22px;
    padding: 28px; box-shadow: var(--shadow);
}
.feat-visual .mock-title { font-weight: 800; margin-bottom: 14px; }

.slot-chips { display: flex; flex-wrap: wrap; gap: 10px; }
.slot-chip {
    padding: 9px 16px; border-radius: 999px; font-weight: 700; font-size: .88rem;
    border: 2px solid #e7e5e4; color: var(--ink-soft); background: #fff;
}
.slot-chip.full { text-decoration: line-through; opacity: .45; }
.slot-chip.picked { border-color: var(--amber); background: var(--amber); color: #fff; }
.slot-note { font-size: .82rem; color: var(--ink-soft); margin-top: 14px; }

.cap-row { margin-bottom: 18px; }
.cap-row .cap-label { display: flex; justify-content: space-between; font-size: .85rem; font-weight: 700; margin-bottom: 6px; }
.cap-track { height: 14px; border-radius: 999px; background: var(--line-soft); overflow: hidden; }
.cap-fill { height: 100%; border-radius: 999px; background: var(--amber); width: 0; }
.cap-fill.busy { background: var(--red); }

.menu-mock-row {
    display: flex; align-items: center; justify-content: space-between;
    padding: 12px 4px; border-bottom: 1px solid var(--line-soft); font-size: .92rem;
}
.menu-mock-row:last-child { border-bottom: none; }
.menu-mock-row .m-name { font-weight: 700; }
.menu-mock-row .m-price { color: var(--ink-soft); font-size: .85rem; }
.menu-mock-row.off .m-name, .menu-mock-row.off .m-price { opacity: .4; text-decoration: line-through; }
.pill-toggle {
    font-size: .72rem; font-weight: 800; padding: 5px 12px; border-radius: 999px;
    background: var(--green-pale); color: var(--green);
}
.menu-mock-row.off .pill-toggle { background: var(--red-pale); color: var(--red); }

.pay-mock { text-align: center; }
.pay-mock .pay-amount { font-size: 2.4rem; font-weight: 900; letter-spacing: -.03em; }
.pay-badges { display: flex; gap: 10px; justify-content: center; margin-top: 16px; flex-wrap: wrap; }
.pay-badge {
    padding: 10px 18px; border-radius: 12px; font-weight: 700; font-size: .88rem;
    border: 2px solid #e7e5e4; background: #fff;
}
.pay-badge.hot { border-color: var(--green); color: var(--green); }

/* ---------- 9. Marketing & SMS page ---------- */
.sms-thread { display: grid; gap: 10px; max-width: 320px; }
.sms-bubble {
    padding: 12px 16px; border-radius: 18px; font-size: .9rem; line-height: 1.45;
    box-shadow: 0 2px 8px rgba(28, 25, 23, .07);
}
.sms-bubble.in {
    background: var(--paper); border: 1px solid var(--line-soft);
    border-bottom-left-radius: 6px; justify-self: start;
}
.sms-bubble.out {
    background: var(--amber); color: #fff;
    border-bottom-right-radius: 6px; justify-self: end;
}
.sms-meta { font-size: .72rem; color: var(--ink-soft); justify-self: start; padding-left: 6px; }

.receipt-mock {
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
    font-size: .82rem; background: #fff; border: 1px dashed #d6d3d1;
    border-radius: 6px; padding: 22px 20px; max-width: 300px; margin: 0 auto;
    color: var(--ink); box-shadow: var(--shadow);
}
.receipt-mock .r-head { text-align: center; font-weight: 700; margin-bottom: 12px; }
.receipt-mock .r-row { display: flex; justify-content: space-between; padding: 3px 0; }
.receipt-mock .r-total { border-top: 1px dashed #d6d3d1; margin-top: 8px; padding-top: 8px; font-weight: 700; }
.receipt-mock .r-foot { text-align: center; margin-top: 12px; color: var(--ink-soft); font-size: .74rem; }

.campaign-mock .cm-to {
    display: inline-block; background: var(--amber-pale); color: var(--amber-dark);
    font-weight: 700; font-size: .8rem; padding: 6px 12px; border-radius: 999px; margin-bottom: 12px;
}
.campaign-mock .cm-message {
    background: #fff; border: 1px solid #e7e5e4; border-radius: 12px;
    padding: 14px 16px; font-size: .9rem; color: var(--ink); margin-bottom: 14px;
}
.campaign-mock .cm-foot { display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.campaign-mock .cm-count { font-size: .78rem; color: var(--ink-soft); }
.campaign-mock .cm-send {
    background: var(--ink); color: #fff; font-weight: 700; font-size: .85rem;
    padding: 10px 18px; border-radius: 999px;
}

/* Teaser bands on the home page (Marketing & SMS, accounting) */
.reach-teaser {
    display: grid; grid-template-columns: 1.2fr .8fr; gap: 48px; align-items: center;
    background: var(--amber-pale); border-radius: var(--radius-lg); padding: 48px 40px;
}
.reach-teaser h2 { margin-bottom: 12px; }
.reach-teaser p { color: var(--ink-soft); margin-bottom: 20px; }
.reach-teaser.paper { background: var(--paper); border: 1px solid var(--line-soft); }

/* Z-report / accounting mock lines (extends .receipt-mock) */
.receipt-mock .r-row.dim span:first-child { padding-left: 14px; color: var(--ink-soft); }
.receipt-mock .r-row.profit { color: var(--green); font-weight: 700; }

/* ---------- 10. Demo (book a call) page ---------- */
.demo-layout {
    display: grid; grid-template-columns: .8fr 1.2fr; gap: 40px; align-items: start;
    max-width: 960px; margin: 0 auto;
}

.aside-card { position: sticky; top: 96px; }
.aside-card h3 { font-size: 1.15rem; margin-bottom: 16px; }
.check-list { list-style: none; display: grid; gap: 12px; }
.check-list li { display: flex; gap: 12px; align-items: flex-start; color: var(--ink-soft); font-size: .95rem; }
.check-list .tick {
    width: 24px; height: 24px; border-radius: 999px; background: var(--green-pale); color: var(--green);
    display: flex; align-items: center; justify-content: center;
    font-size: .8rem; font-weight: 800; flex-shrink: 0; margin-top: 2px;
}
.aside-alt { margin-top: 28px; padding-top: 22px; border-top: 1px solid var(--line); font-size: .9rem; color: var(--ink-soft); }
.aside-alt a { color: var(--amber-dark); font-weight: 700; text-decoration: none; }
.aside-alt a:hover { text-decoration: underline; }

.form-card {
    background: var(--paper); border-radius: 24px; padding: 36px;
    border: 1px solid var(--line-soft); box-shadow: var(--shadow);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-field { display: flex; flex-direction: column; gap: 7px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { font-size: .88rem; font-weight: 700; }
.form-field label .optional { font-weight: 400; color: var(--ink-soft); }
.form-field input, .form-field textarea {
    font: inherit; padding: 13px 16px; border-radius: 12px;
    border: 1.5px solid #e0dccd; background: var(--cream); color: var(--ink);
    transition: border-color .15s ease, box-shadow .15s ease, background .15s ease;
}
.form-field input:hover, .form-field textarea:hover { border-color: #cfc9b4; }
.form-field input:focus, .form-field textarea:focus {
    outline: none; border-color: var(--amber); background: #fff;
    box-shadow: 0 0 0 4px rgba(245, 158, 11, .15);
}
.form-field input.has-error, .form-field textarea.has-error { border-color: var(--red); }
.form-field textarea { resize: vertical; min-height: 110px; }
.form-error { color: var(--red); font-size: .82rem; font-weight: 600; }
.form-card .btn { margin-top: 24px; }
.form-privacy { margin-top: 14px; font-size: .82rem; color: var(--ink-soft); text-align: center; }

.form-success {
    display: flex; gap: 14px; align-items: flex-start;
    background: var(--green-pale); color: #166534;
    border-radius: 16px; padding: 18px 22px; margin-bottom: 24px;
}
.form-success .tick {
    width: 28px; height: 28px; border-radius: 999px; background: var(--green); color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-weight: 800; flex-shrink: 0;
}
.form-success strong { display: block; }

.honeypot { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

/* ---------- 11. Motion ---------- */
@media (prefers-reduced-motion: no-preference) {
    .js .reveal {
        opacity: 0; transform: translateY(26px);
        transition: opacity .65s ease, transform .65s ease;
    }
    .js .reveal.in { opacity: 1; transform: none; }

    .js .hero-copy > * {
        opacity: 0; transform: translateY(18px);
        animation: rise .7s ease forwards;
    }
    .js .hero-copy > *:nth-child(1) { animation-delay: .05s; }
    .js .hero-copy > *:nth-child(2) { animation-delay: .15s; }
    .js .hero-copy > *:nth-child(3) { animation-delay: .25s; }
    .js .hero-copy > *:nth-child(4) { animation-delay: .35s; }
    .js .hero-copy > *:nth-child(5) { animation-delay: .45s; }
    .js .hero-visual { opacity: 0; animation: rise .8s ease .3s forwards; }
    .js .ticket-card { animation: pop .5s cubic-bezier(.34, 1.56, .64, 1) .9s backwards; }

    .blob-1 { animation: floaty 9s ease-in-out infinite; }
    .blob-2 { animation: floaty 7s ease-in-out 1.2s infinite reverse; }

    .t-status.is-ready { animation: pulse-soft 1.4s ease-in-out infinite; }
    .p-step.now .dot { animation: pulse-soft 1.3s ease-in-out infinite; }
    .mini-card.demo-active { animation: pop .45s cubic-bezier(.34, 1.56, .64, 1); }

    .in .cap-fill { transition: width 1s cubic-bezier(.22, 1, .36, 1) .2s; }
}

@keyframes rise { to { opacity: 1; transform: none; } }
@keyframes pop { from { opacity: 0; transform: scale(.7) translateY(14px); } }
@keyframes floaty {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-14px) rotate(3deg); }
}
@keyframes pulse-soft { 0%, 100% { opacity: 1; } 50% { opacity: .55; } }

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
    .hero-grid, .savings-grid, .demo-stage, .reach-teaser, .demo-layout { grid-template-columns: 1fr; }
    .hero-visual { max-width: 440px; }
    .ticket-card { left: 12px; }
    .features-grid, .steps, .photo-band { grid-template-columns: 1fr 1fr; }
    .compare-grid { grid-template-columns: 1fr; }
    .feat-row { grid-template-columns: 1fr; gap: 24px; padding: 40px 0; }
    .feat-row.flip .feat-visual { order: 0; }
    .plans { grid-template-columns: 1fr; max-width: 460px; gap: 32px; }
    .form-grid { grid-template-columns: 1fr; }
    .aside-card { position: static; }
    .nav-links { gap: 18px; }
    .nav-links a:not(.btn) { display: none; }
    .nav-toggle { display: flex; }
    .mobile-menu.open { display: flex; }
}
@media (max-width: 560px) {
    .features-grid, .steps, .photo-band { grid-template-columns: 1fr; }
    section { padding: 48px 0; }
    .compare, .savings, .demo-stage, .reach-teaser { padding: 40px 24px; }
    .form-card { padding: 26px 20px; }
}
