/* ============================================================
   MAKHE — Website v2.0
   Brand-first. Long-scroll. Built for the long haul.
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
    --teal: #1D9E75;
    --teal-dark: #0F6E56;
    --teal-deep: #0C5142;
    --teal-light: #5DCAA5;
    --teal-surface: #E1F5EE;
    --ink: #1C1C1C;
    --ink-soft: #6B7280;
    --line: #E7EBEA;
    --bg: #FFFFFF;
    --bg-alt: #FAFBFB;
    --white: #FFFFFF;

    --container: 1200px;
    --prose: 780px;

    --r-card: 14px;
    --r-pill: 999px;
    --r-input: 8px;

    --shadow-sm: 0 1px 2px rgba(15, 110, 86, 0.04), 0 2px 8px rgba(15, 110, 86, 0.04);
    --shadow-md: 0 6px 24px rgba(15, 110, 86, 0.08), 0 2px 6px rgba(15, 110, 86, 0.04);
    --shadow-lg: 0 24px 60px rgba(15, 110, 86, 0.18), 0 8px 24px rgba(15, 110, 86, 0.10);

    --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    margin: 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 400;
    font-size: 17px;
    line-height: 1.55;
    color: var(--ink);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; }
a { color: var(--teal-dark); text-decoration: none; }
a:hover { text-decoration: underline; }
h1, h2, h3, h4 { font-weight: 800; letter-spacing: -0.02em; line-height: 1.1; margin: 0; }
p { margin: 0; }

/* ---------- Utility ---------- */
.container {
    width: 100%;
    max-width: var(--container);
    margin-inline: auto;
    padding-inline: 24px;
}
.eyebrow {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--teal);
    margin-bottom: 18px;
}
.eyebrow--on-dark { color: var(--teal-light); }
.section { padding-block: clamp(72px, 10vw, 128px); }
.section__heading {
    font-size: clamp(32px, 4.4vw, 52px);
    max-width: 860px;
    margin-bottom: 18px;
}
.section__sub {
    font-size: 18px;
    color: var(--ink-soft);
    max-width: 620px;
}
.section--dark .section__sub { color: rgba(255, 255, 255, 0.72); }

/* ---------- Scroll progress bar ---------- */
.scroll-progress {
    position: fixed; top: 0; left: 0;
    height: 3px; width: 0;
    background: var(--teal);
    z-index: 120;
    pointer-events: none;
}

/* ---------- Nav ---------- */
.nav {
    position: fixed; top: 0; left: 0; right: 0;
    height: 68px;
    z-index: 100;
    transition: background 280ms var(--ease), box-shadow 280ms var(--ease), border-color 280ms var(--ease);
    border-bottom: 1px solid transparent;
}
.nav__inner {
    height: 100%;
    display: flex; align-items: center; justify-content: space-between;
    gap: 24px;
}
.nav__brand {
    display: flex; align-items: center; gap: 10px;
    font-weight: 800; font-size: 19px;
    letter-spacing: -0.01em;
    color: var(--white);
    transition: color 280ms var(--ease);
}
.nav__brand:hover { text-decoration: none; }
.nav__brand svg { width: 30px; height: 30px; }
.nav__links {
    display: flex; gap: 36px;
    list-style: none; padding: 0; margin: 0;
}
.nav__links a {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500; font-size: 15px;
    transition: color 200ms var(--ease);
}
.nav__links a:hover { color: var(--white); text-decoration: none; }
.nav__cta {
    display: inline-flex; align-items: center;
    height: 40px; padding: 0 18px;
    background: var(--white);
    color: var(--teal-dark);
    font-weight: 600; font-size: 14px;
    border-radius: var(--r-pill);
    transition: transform 200ms var(--ease), box-shadow 200ms var(--ease);
}
.nav__cta:hover { text-decoration: none; transform: translateY(-1px); box-shadow: var(--shadow-md); }

/* Pages without a dark hero: force nav into its "scrolled" appearance always */
body.light-nav .nav {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: saturate(180%) blur(14px);
    -webkit-backdrop-filter: saturate(180%) blur(14px);
    border-bottom: 1px solid var(--line);
}
body.light-nav .nav__brand,
body.light-nav .nav__links a { color: var(--ink); }
body.light-nav .nav__links a:hover { color: var(--teal-dark); }
body.light-nav .nav__cta { background: var(--teal); color: var(--white); }
body.light-nav .nav__logo-mark--light { display: none; }
body.light-nav .nav__logo-mark--dark { display: block; }
body.light-nav .nav__burger { color: var(--ink); }

.nav--scrolled {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: saturate(180%) blur(12px);
    -webkit-backdrop-filter: saturate(180%) blur(12px);
    border-bottom-color: var(--line);
}
.nav--scrolled .nav__brand,
.nav--scrolled .nav__links a { color: var(--ink); }
.nav--scrolled .nav__links a:hover { color: var(--teal-dark); }
.nav--scrolled .nav__cta { background: var(--teal); color: var(--white); }
.nav__logo-mark--dark { display: none; }
.nav--scrolled .nav__logo-mark--light { display: none; }
.nav--scrolled .nav__logo-mark--dark { display: block; }

.nav__burger {
    display: none;
    width: 40px; height: 40px;
    border-radius: 8px;
    align-items: center; justify-content: center;
    color: var(--white);
}
.nav--scrolled .nav__burger { color: var(--ink); }
.nav__burger span {
    display: block;
    width: 20px; height: 2px;
    background: currentColor; position: relative;
    transition: transform 200ms var(--ease), opacity 200ms var(--ease);
}
.nav__burger span::before, .nav__burger span::after {
    content: ''; position: absolute; left: 0;
    width: 20px; height: 2px;
    background: currentColor;
    transition: transform 200ms var(--ease);
}
.nav__burger span::before { top: -6px; }
.nav__burger span::after { top: 6px; }
.nav__burger.is-open span { background: transparent; }
.nav__burger.is-open span::before { transform: translate(0, 6px) rotate(45deg); }
.nav__burger.is-open span::after { transform: translate(0, -6px) rotate(-45deg); }

.nav__mobile-panel {
    position: fixed; top: 68px; left: 0; right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    padding: 20px 24px 28px;
    transform: translateY(-12px);
    opacity: 0; pointer-events: none;
    transition: opacity 220ms var(--ease), transform 220ms var(--ease);
    z-index: 99;
}
.nav__mobile-panel.is-open { transform: translateY(0); opacity: 1; pointer-events: auto; }
.nav__mobile-panel ul { list-style: none; padding: 0; margin: 0 0 18px; }
.nav__mobile-panel li { border-bottom: 1px solid var(--line); }
.nav__mobile-panel a {
    display: block; padding: 14px 4px;
    color: var(--ink); font-weight: 500; font-size: 17px;
}
.nav__mobile-panel a:hover { text-decoration: none; color: var(--teal-dark); }
.nav__mobile-panel .btn { width: 100%; justify-content: center; margin-top: 10px; }

@media (max-width: 860px) {
    .nav__links, .nav__cta { display: none; }
    .nav__burger { display: inline-flex; }
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex; align-items: center; justify-content: center;
    gap: 8px;
    height: 52px; padding: 0 26px;
    border-radius: var(--r-pill);
    font-weight: 600; font-size: 15.5px;
    letter-spacing: -0.005em;
    transition: transform 200ms var(--ease), box-shadow 200ms var(--ease), background 200ms var(--ease), color 200ms var(--ease);
    white-space: nowrap;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--primary { background: var(--teal); color: var(--white); }
.btn--primary:hover { background: #18966D; }
.btn--ghost-light {
    background: transparent; color: var(--white);
    border: 1.5px solid rgba(255, 255, 255, 0.4);
}
.btn--ghost-light:hover { background: rgba(255, 255, 255, 0.08); border-color: rgba(255, 255, 255, 0.7); }
.btn--dark { background: var(--ink); color: var(--white); }
.btn--dark:hover { background: #000; }
.btn--ghost {
    background: transparent; color: var(--teal-deep);
    border: 1.5px solid var(--line);
}
.btn--ghost:hover { background: var(--white); border-color: var(--teal); color: var(--teal-deep); }
.btn svg { width: 16px; height: 16px; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
    position: relative;
    min-height: 100vh;
    padding: 120px 0 80px;
    overflow: hidden;
    background:
        radial-gradient(1200px 600px at 15% 0%, rgba(93, 202, 165, 0.22), transparent 60%),
        radial-gradient(900px 500px at 90% 100%, rgba(29, 158, 117, 0.25), transparent 60%),
        linear-gradient(160deg, #0F6E56 0%, #0C5142 100%);
    color: var(--white);
    isolation: isolate;
}
.hero::before {
    content: '';
    position: absolute; inset: 0;
    background-image: radial-gradient(circle, rgba(93, 202, 165, 0.28) 1.4px, transparent 1.4px);
    background-size: 54px 54px;
    mask-image: radial-gradient(ellipse 80% 70% at 50% 45%, black 40%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 45%, black 40%, transparent 100%);
    opacity: 0.6;
    z-index: -1;
}
.hero__grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 64px; align-items: center;
}
.hero__copy { max-width: 620px; }
.hero__eyebrow {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 7px 14px;
    border-radius: var(--r-pill);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(93, 202, 165, 0.3);
    font-size: 13px; font-weight: 500;
    color: var(--teal-light);
    margin-bottom: 28px;
    letter-spacing: 0.02em;
}
.hero__eyebrow::before {
    content: '';
    width: 6px; height: 6px;
    background: var(--teal-light); border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(93, 202, 165, 0.2);
}
.hero__title {
    font-size: clamp(32px, 6.2vw, 78px);
    font-weight: 800;
    letter-spacing: -0.035em;
    line-height: 1.02;
    margin-bottom: 22px;
    color: var(--white);
}
.hero__title .word {
    display: inline-block;
    opacity: 0;
    transform: translateY(22px);
}
.hero__title .em { color: var(--teal-light); font-style: normal; }
.hero__sub {
    font-size: clamp(17px, 1.6vw, 20px);
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.80);
    margin-bottom: 36px;
    opacity: 0; transform: translateY(16px);
    max-width: 560px;
}
.hero__ctas {
    display: flex; gap: 14px; flex-wrap: wrap;
    margin-bottom: 40px;
    opacity: 0; transform: translateY(12px);
}
.hero__stores {
    display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
    opacity: 0; transform: translateY(12px);
}
.hero__stores-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.55);
    margin-right: 4px;
}
.store-badge {
    display: inline-flex; align-items: center; gap: 10px;
    height: 44px; padding: 0 16px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.55);
    font-size: 13px; cursor: not-allowed;
}
.store-badge strong {
    display: block; font-weight: 600; font-size: 14px;
    color: rgba(255, 255, 255, 0.8); line-height: 1.1;
}
.store-badge small {
    display: block; font-size: 10px;
    letter-spacing: 0.04em; text-transform: uppercase; opacity: 0.7;
}
.store-badge svg { width: 22px; height: 22px; opacity: 0.7; }

.hero__device {
    position: relative;
    justify-self: center;
    opacity: 0; transform: translateY(40px);
}
.hero.is-ready .hero__device { animation: float 6s ease-in-out infinite; }
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* ---------- iPhone Device frame ---------- */
.device {
    position: relative;
    width: 300px;
    aspect-ratio: 300 / 620;
    background: #0A0A0A;
    border-radius: 42px;
    padding: 10px;
    box-shadow:
        0 50px 100px -30px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.06) inset,
        0 30px 80px rgba(12, 81, 66, 0.4);
}
.device::before {
    content: '';
    position: absolute;
    top: 18px; left: 50%;
    transform: translateX(-50%);
    width: 88px; height: 24px;
    background: #000;
    border-radius: 16px;
    z-index: 3;
}
.device__screen {
    position: relative;
    width: 100%; height: 100%;
    border-radius: 32px;
    overflow: hidden;
    background: var(--teal-deep);
}
.device--large { width: 340px; }
.device--small { width: 260px; }

/* Screen: auth (the login screen the user provided) */
.screen-auth {
    position: absolute; inset: 0;
    background:
        radial-gradient(600px 400px at 70% 20%, rgba(93, 202, 165, 0.10), transparent 60%),
        linear-gradient(180deg, #0E6250 0%, #0A4637 100%);
    display: flex; flex-direction: column;
    padding: 52px 20px 30px;
    color: var(--white);
}
.screen-auth__dots {
    position: absolute; inset: 0;
    background-image: radial-gradient(circle, rgba(93, 202, 165, 0.30) 1px, transparent 1px);
    background-size: 34px 34px;
    opacity: 0.35; pointer-events: none;
}
.screen-auth__top {
    text-align: center;
    padding-top: 24px;
    z-index: 1;
}
.screen-auth__top svg { width: 52px; margin: 0 auto 8px; }
.screen-auth__top-word {
    font-size: 22px; font-weight: 800;
    letter-spacing: 0.02em;
}
.screen-auth__top-tag {
    font-size: 9px; opacity: 0.7; margin-top: 2px;
}
.screen-auth__bottom { margin-top: auto; z-index: 1; }
.screen-auth__pills {
    display: flex; gap: 6px; justify-content: center;
    margin-bottom: 14px; flex-wrap: wrap;
}
.screen-auth__pill {
    display: inline-block; padding: 6px 10px;
    font-size: 10px;
    color: var(--teal-light);
    border: 1px solid rgba(93, 202, 165, 0.5);
    border-radius: 999px;
}
.screen-auth__h {
    font-size: 18px; font-weight: 800;
    text-align: center; margin-bottom: 6px;
    letter-spacing: -0.015em;
}
.screen-auth__p {
    font-size: 11px; text-align: center;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.4; margin-bottom: 16px;
    padding: 0 8px;
}
.screen-auth__btn {
    display: flex; align-items: center; justify-content: center;
    gap: 6px; height: 38px;
    border-radius: 999px;
    font-size: 12px; font-weight: 600;
    margin-bottom: 8px;
}
.screen-auth__btn--primary { background: var(--teal); color: var(--white); }
.screen-auth__btn--white { background: var(--white); color: #111; }
.screen-auth__btn svg { width: 13px; height: 13px; }
.screen-auth__legal {
    font-size: 8.5px; text-align: center;
    color: rgba(255, 255, 255, 0.45);
    margin-top: 12px; line-height: 1.5;
}

/* Generic app screen shell — for story mockups */
.screen-app {
    position: absolute; inset: 0;
    background: #F5F8F7;
    display: flex; flex-direction: column;
    overflow: hidden;
}
.screen-app__statusbar {
    height: 30px;
    display: flex; align-items: center; justify-content: space-between;
    padding: 12px 22px 0;
    font-size: 10px; font-weight: 600;
    color: #111;
}
.screen-app__header {
    padding: 8px 16px 12px;
    background: var(--white);
    border-bottom: 1px solid #EEF1F0;
}
.screen-app__header-top {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 8px;
}
.screen-app__ward { font-size: 10px; color: var(--ink-soft); }
.screen-app__ward strong { color: var(--ink); display: block; font-size: 13px; font-weight: 700; }
.screen-app__avatar {
    width: 28px; height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--teal-light), var(--teal));
}
.screen-app__body { flex: 1; overflow: hidden; padding: 8px 12px; }
.screen-app__tabbar {
    height: 52px;
    border-top: 1px solid #EEF1F0;
    background: var(--white);
    display: flex; align-items: center; justify-content: space-around;
    padding: 0 8px 8px;
}
.screen-app__tab { width: 28px; height: 4px; border-radius: 2px; background: #DFE4E2; }
.screen-app__tab--active { background: var(--teal); }

/* Post card */
.post {
    background: var(--white);
    border-radius: 10px;
    padding: 10px;
    margin-bottom: 8px;
    border: 1px solid #EEF1F0;
}
.post__head { display: flex; align-items: center; gap: 8px; margin-bottom: 6px; }
.post__avatar {
    width: 22px; height: 22px;
    border-radius: 50%;
    background: var(--teal-surface);
    flex-shrink: 0;
}
.post__avatar--councillor { background: linear-gradient(135deg, #FFD57A, #E8A33F); }
.post__avatar--neighbour  { background: linear-gradient(135deg, #8FB8FF, #4A7FD1); }
.post__name { font-size: 10px; font-weight: 700; color: var(--ink); display: flex; align-items: center; gap: 4px; }
.post__meta { font-size: 8.5px; color: var(--ink-soft); }
.post__verified {
    display: inline-flex; align-items: center; justify-content: center;
    width: 11px; height: 11px;
    background: var(--teal); color: var(--white);
    border-radius: 50%;
    font-size: 7px;
}
.post__body { font-size: 10px; color: var(--ink); line-height: 1.4; }
.post__pill {
    display: inline-block; font-size: 8px;
    background: var(--teal-surface); color: var(--teal-dark);
    padding: 2px 6px; border-radius: 999px;
    margin-top: 4px; font-weight: 600;
}

/* Ticket / confirmation screen */
.mock-confirm { background: var(--white); padding: 14px 12px; text-align: center; height: 100%; }
.mock-confirm__check {
    width: 48px; height: 48px;
    margin: 12px auto 10px;
    border-radius: 50%;
    background: var(--teal-surface);
    display: flex; align-items: center; justify-content: center;
    color: var(--teal);
}
.mock-confirm__check svg { width: 24px; height: 24px; }
.mock-confirm__title { font-size: 13px; font-weight: 700; color: var(--ink); margin-bottom: 4px; }
.mock-confirm__sub { font-size: 10px; color: var(--ink-soft); margin-bottom: 14px; }
.mock-confirm__ticket {
    background: var(--bg-alt);
    border: 1px dashed var(--line);
    padding: 10px;
    border-radius: 8px;
    margin: 0 4px;
}
.mock-confirm__ticket-label { font-size: 9px; color: var(--ink-soft); text-transform: uppercase; letter-spacing: 0.08em; }
.mock-confirm__ticket-num { font-size: 14px; font-weight: 800; color: var(--teal-dark); margin-top: 2px; letter-spacing: -0.01em; }
.mock-confirm__status {
    margin-top: 10px; padding: 8px;
    background: var(--teal-surface);
    border-radius: 6px;
    font-size: 9px; color: var(--teal-dark); font-weight: 600;
}

/* Safe Walk */
.mock-walk {
    background: linear-gradient(180deg, #DCEFE6 0%, #C4E1D2 100%);
    padding: 14px 12px;
    display: flex; flex-direction: column;
    height: 100%;
}
.mock-walk__map {
    flex: 1;
    background:
        radial-gradient(circle at 60% 40%, rgba(29, 158, 117, 0.22) 0%, transparent 55%),
        repeating-linear-gradient(45deg, rgba(15, 110, 86, 0.05) 0 1px, transparent 1px 14px),
        repeating-linear-gradient(-45deg, rgba(15, 110, 86, 0.05) 0 1px, transparent 1px 14px),
        #EAF3EF;
    border-radius: 8px;
    position: relative;
    margin-bottom: 10px;
    overflow: hidden;
}
.mock-walk__streets {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
}
.mock-walk__start {
    position: absolute;
    bottom: 12%; left: 12%;
    width: 9px; height: 9px;
    border-radius: 50%;
    background: rgba(15,110,86,0.55);
    border: 2px solid #fff;
    box-shadow: 0 1px 2px rgba(0,0,0,0.15);
}
.mock-walk__home {
    position: absolute;
    top: 30%; right: 20%;
    width: 20px; height: 20px;
    border-radius: 6px;
    background: var(--teal-dark);
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 2px 6px rgba(0,0,0,0.18);
}
.mock-walk__home svg { display: block; }
.mock-walk__pin {
    position: absolute;
    top: 42%; left: 58%;
    width: 12px; height: 12px;
    background: var(--teal);
    border-radius: 50%;
    border: 3px solid var(--white);
    box-shadow: 0 0 0 0 rgba(29, 158, 117, 0.6);
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(29, 158, 117, 0.6); }
    100% { box-shadow: 0 0 0 22px rgba(29, 158, 117, 0); }
}
.mock-walk__card { background: var(--white); border-radius: 10px; padding: 10px; }
.mock-walk__status {
    font-size: 9px; color: var(--teal);
    font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em;
    display: flex; align-items: center; gap: 6px;
}
.mock-walk__status::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--teal); }
.mock-walk__title { font-size: 12px; font-weight: 700; margin: 4px 0 6px; color: var(--ink); }
.mock-walk__watchers { display: flex; }
.mock-walk__watcher {
    width: 20px; height: 20px;
    border-radius: 50%;
    border: 2px solid var(--white);
    margin-left: -6px;
}
.mock-walk__watcher:first-child { margin-left: 0; }
.mock-walk__watcher--1 { background: linear-gradient(135deg, #FFB87A, #F78B4A); }
.mock-walk__watcher--2 { background: linear-gradient(135deg, #8FB8FF, #4A7FD1); }
.mock-walk__watcher--3 { background: linear-gradient(135deg, #C7A0FF, #8F5FD1); }

/* Marketplace listing */
.mock-listing { background: var(--white); padding: 12px; height: 100%; }
.mock-listing__img {
    aspect-ratio: 4/3;
    border-radius: 8px;
    background:
        radial-gradient(ellipse at 50% 95%, rgba(0,0,0,0.08), transparent 60%),
        linear-gradient(135deg, #EEF3F1, #CED9D5);
    position: relative;
    margin-bottom: 10px;
    overflow: hidden;
}
.mock-listing__fridge {
    position: absolute;
    top: 10%; bottom: 8%;
    left: 50%; transform: translateX(-50%);
    width: 34%;
    background: linear-gradient(180deg, #FCFEFD 0%, #E4ECE8 100%);
    border-radius: 4px 4px 3px 3px;
    box-shadow:
        0 6px 14px rgba(0,0,0,0.14),
        inset 0 0 0 1px rgba(15,110,86,0.08);
}
.mock-listing__fridge-freezer {
    position: absolute;
    top: 0; left: 0; right: 0; height: 32%;
    border-bottom: 1.5px solid rgba(15,110,86,0.18);
    background: linear-gradient(180deg, rgba(255,255,255,0.6), transparent);
    border-radius: 4px 4px 0 0;
}
.mock-listing__fridge-door {
    position: absolute;
    top: 34%; left: 0; right: 0; bottom: 0;
    border-radius: 0 0 3px 3px;
}
.mock-listing__fridge-handle {
    position: absolute;
    left: 14%;
    width: 2.5px;
    background: rgba(15,110,86,0.55);
    border-radius: 2px;
}
.mock-listing__fridge-handle--top { top: 8%; height: 16%; }
.mock-listing__fridge-handle--bot { top: 42%; height: 30%; }
.mock-listing__badge {
    position: absolute;
    bottom: 8px; right: 8px;
    background: rgba(15,30,25,0.72);
    color: #fff;
    font-size: 9px;
    font-weight: 600;
    padding: 3px 7px;
    border-radius: 999px;
    letter-spacing: 0.02em;
}
.mock-listing__price { font-size: 18px; font-weight: 800; color: var(--ink); letter-spacing: -0.02em; }
.mock-listing__title { font-size: 12px; color: var(--ink); font-weight: 600; margin: 2px 0 8px; }
.mock-listing__seller {
    display: flex; align-items: center; gap: 8px;
    padding: 8px; background: var(--teal-surface);
    border-radius: 8px;
}
.mock-listing__seller-avatar {
    width: 24px; height: 24px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--teal), var(--teal-dark));
}
.mock-listing__seller-name { font-size: 10px; font-weight: 700; }
.mock-listing__seller-sub { font-size: 8.5px; color: var(--teal-dark); display: flex; align-items: center; gap: 3px; }
.mock-listing__escrow {
    margin-top: 8px; padding: 7px 8px;
    background: #FFF8E1;
    border-radius: 6px;
    font-size: 9px; color: #8A6100;
    display: flex; align-items: center; gap: 5px;
}

/* ============================================================
   STORY
   ============================================================ */
.story { background: var(--bg-alt); }
.story__head { text-align: center; margin-bottom: 72px; }
.story__head .section__heading,
.story__head .section__sub { margin-inline: auto; }
.moment {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 96px;
}
.moment:last-of-type { margin-bottom: 0; }
.moment--reverse .moment__text { order: 2; }
.moment--reverse .moment__visual { order: 1; }
.moment__tag {
    display: inline-block;
    font-size: 12px; font-weight: 600;
    color: var(--teal);
    letter-spacing: 0.12em; text-transform: uppercase;
    margin-bottom: 14px;
}
.moment__title {
    font-size: clamp(26px, 3vw, 36px);
    margin-bottom: 16px;
    color: var(--ink);
}
.moment__body {
    font-size: 17px; line-height: 1.6;
    color: var(--ink-soft);
    max-width: 480px;
}
.moment__visual { display: flex; justify-content: center; position: relative; }
.moment__time {
    position: absolute;
    top: -20px; right: 8px;
    font-variant-numeric: tabular-nums;
    font-size: 14px; font-weight: 700;
    color: var(--teal);
    letter-spacing: 0.1em;
    opacity: 0.5;
}
.moment--reverse .moment__time { left: 8px; right: auto; }

.story__close {
    text-align: center;
    margin-top: 80px; padding-top: 60px;
    border-top: 1px solid var(--line);
}
.story__close p {
    font-size: clamp(22px, 2.6vw, 30px);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--ink);
    max-width: 680px;
    margin-inline: auto;
    line-height: 1.25;
}
.story__close p em { color: var(--teal); font-style: normal; }

@media (max-width: 860px) {
    .moment { grid-template-columns: 1fr; gap: 40px; margin-bottom: 72px; }
    .moment--reverse .moment__text { order: 1; }
    .moment--reverse .moment__visual { order: 2; }
    .moment__time { position: static; display: block; margin-bottom: 12px; }
}

/* ============================================================
   FEATURES
   ============================================================ */
.features { background: var(--bg); }
.features__head { text-align: center; margin-bottom: 72px; }
.features__head .section__heading,
.features__head .section__sub { margin-inline: auto; }
.features__grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 24px;
}
.features__grid .feature-card { grid-column: span 2; }
/* Centre the orphan 4th & 5th on the second row (3-col layout emulated on 6-col grid) */
.features__grid .feature-card:nth-child(4) { grid-column: 2 / span 2; }
.features__grid .feature-card:nth-child(5) { grid-column: 4 / span 2; }

.feature-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--r-card);
    padding: 32px 28px;
    transition: transform 220ms var(--ease), box-shadow 220ms var(--ease), border-color 220ms var(--ease);
    position: relative;
}
.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: transparent;
}
.feature-card__icon {
    width: 56px; height: 56px;
    border-radius: 14px;
    background: var(--teal-surface);
    display: flex; align-items: center; justify-content: center;
    color: var(--teal-dark);
    margin-bottom: 22px;
    transition: background 220ms var(--ease), color 220ms var(--ease);
}
.feature-card:hover .feature-card__icon { background: var(--teal); color: var(--white); }
.feature-card__icon svg { width: 28px; height: 28px; }
.feature-card__title {
    font-size: 20px; font-weight: 700;
    margin-bottom: 8px;
    color: var(--ink);
}
.feature-card__body {
    font-size: 15.5px; line-height: 1.55;
    color: var(--ink-soft);
}
.feature-card__tag {
    display: inline-block;
    font-size: 10px; font-weight: 700;
    color: var(--teal);
    letter-spacing: 0.12em; text-transform: uppercase;
    margin-left: 8px;
    padding: 3px 8px;
    background: var(--teal-surface);
    border-radius: 999px;
    vertical-align: middle;
}

@media (max-width: 920px) {
    .features__grid { grid-template-columns: repeat(2, 1fr); }
    .features__grid .feature-card,
    .features__grid .feature-card:nth-child(4),
    .features__grid .feature-card:nth-child(5) { grid-column: auto; }
    /* Centre orphan 5th card on tablet. */
    .features__grid .feature-card:nth-child(5):last-child { grid-column: 1 / -1; max-width: 50%; justify-self: center; }
}
@media (max-width: 560px) {
    .features__grid { grid-template-columns: 1fr; }
    .features__grid .feature-card:nth-child(5):last-child { grid-column: auto; max-width: none; }
}

/* ============================================================
   TRUST
   ============================================================ */
.trust {
    background: var(--teal-dark);
    color: var(--white);
    position: relative;
    overflow: hidden;
}
.trust::before {
    content: '';
    position: absolute; inset: 0;
    background-image: radial-gradient(circle, rgba(93, 202, 165, 0.14) 1.2px, transparent 1.2px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse 90% 60% at 50% 0%, black 30%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse 90% 60% at 50% 0%, black 30%, transparent 80%);
    opacity: 0.6; pointer-events: none;
}
.trust__head { text-align: center; margin-bottom: 56px; position: relative; z-index: 1; }
.trust__head .section__heading { color: var(--white); margin-inline: auto; }
.trust__head .section__sub { color: rgba(255, 255, 255, 0.75); margin-inline: auto; }

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 88px;
    position: relative; z-index: 1;
}
.stat { text-align: center; padding: 0 12px; }
.stat__num {
    font-size: clamp(44px, 5.4vw, 68px);
    font-weight: 800;
    letter-spacing: -0.04em;
    color: var(--teal-light);
    line-height: 1;
    margin-bottom: 14px;
}
.stat__label { font-size: 17px; font-weight: 700; color: var(--white); margin-bottom: 6px; }
.stat__sub { font-size: 14px; color: rgba(255, 255, 255, 0.65); line-height: 1.5; max-width: 220px; margin-inline: auto; }

.trust__narrative {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px; align-items: center;
    position: relative; z-index: 1;
}
.trust__photo {
    border-radius: var(--r-card);
    overflow: hidden;
    aspect-ratio: 4 / 5;
    box-shadow: 0 30px 80px rgba(0,0,0,0.3);
    background: #1a3d33;
}
.trust__photo img { width: 100%; height: 100%; object-fit: cover; }
.trust__copy h3 { font-size: clamp(24px, 2.8vw, 34px); color: var(--white); margin-bottom: 20px; }
.trust__copy p {
    font-size: 16.5px; line-height: 1.65;
    color: rgba(255, 255, 255, 0.78);
    margin-bottom: 18px;
}
.trust__copy p strong { color: var(--white); font-weight: 600; }
.trust__quote {
    margin-top: 36px;
    padding: 24px 0;
    border-top: 1px solid rgba(93, 202, 165, 0.25);
    font-size: clamp(18px, 2vw, 22px);
    font-weight: 700;
    letter-spacing: -0.01em;
    color: var(--teal-light);
    line-height: 1.35;
}

@media (max-width: 860px) {
    .stats { grid-template-columns: 1fr; gap: 40px; margin-bottom: 56px; }
    .trust__narrative { grid-template-columns: 1fr; gap: 40px; }
    .trust__photo { max-width: 400px; margin-inline: auto; width: 100%; }
}

/* ============================================================
   ACCESS + FAQ
   ============================================================ */
.access { background: var(--teal-surface); }
.access__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
}
.access__form-wrap h2 {
    font-size: clamp(28px, 3.4vw, 40px);
    color: var(--ink);
    margin-bottom: 16px;
    letter-spacing: -0.025em;
}
.access__form-wrap > p {
    color: var(--ink-soft);
    font-size: 16.5px;
    margin-bottom: 32px;
    max-width: 440px;
}
.form { display: flex; flex-direction: column; gap: 14px; }
.form__field { display: flex; flex-direction: column; gap: 6px; }
.form__label { font-size: 13px; font-weight: 600; color: var(--ink); }
.form__input, .form__textarea, .form__select {
    height: 50px;
    padding: 0 16px;
    border: 1px solid var(--line);
    border-radius: var(--r-input);
    background: var(--white);
    font-family: inherit;
    font-size: 15.5px;
    color: var(--ink);
    transition: border-color 180ms var(--ease), box-shadow 180ms var(--ease);
    width: 100%;
}
.form__textarea { height: auto; min-height: 140px; padding: 14px 16px; line-height: 1.5; resize: vertical; }
.form__input:focus, .form__textarea:focus, .form__select:focus {
    outline: none;
    border-color: var(--teal);
    box-shadow: 0 0 0 4px rgba(29, 158, 117, 0.15);
}
.form__consent {
    display: flex; align-items: flex-start; gap: 10px;
    font-size: 13.5px;
    color: var(--ink-soft);
    line-height: 1.5;
    margin-top: 4px;
}
.form__consent input {
    width: 18px; height: 18px;
    margin-top: 2px;
    accent-color: var(--teal);
    flex-shrink: 0;
}
.form__consent a { color: var(--teal-dark); font-weight: 600; }
.form__submit { margin-top: 10px; width: 100%; }
.form__success {
    display: none;
    padding: 28px 24px;
    background: var(--white);
    border: 1.5px solid var(--teal);
    border-radius: var(--r-card);
    text-align: center;
    color: var(--ink);
}
.form__success.is-visible { display: block; }
.form__success h4 { font-size: 18px; margin-bottom: 6px; }
.form__success p { font-size: 14.5px; color: var(--ink-soft); }

.access__stores {
    display: flex; align-items: center;
    gap: 12px; margin-top: 28px; flex-wrap: wrap;
}
.access__stores-label { font-size: 13px; color: var(--ink-soft); }
.store-badge--light {
    background: var(--white);
    border-color: var(--line);
    color: var(--ink-soft);
}
.store-badge--light strong { color: var(--ink); }
.access__trust-note {
    font-size: 12.5px;
    color: var(--ink-soft);
    margin-top: 16px;
}

/* FAQ */
.faq__heading {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--teal-dark);
    margin-bottom: 20px;
}
.faq__title {
    font-size: clamp(26px, 3vw, 36px);
    color: var(--ink);
    margin-bottom: 32px;
    letter-spacing: -0.02em;
}
.faq { border-top: 1px solid rgba(15, 110, 86, 0.15); }
.faq__item { border-bottom: 1px solid rgba(15, 110, 86, 0.15); }
.faq__q {
    width: 100%;
    text-align: left;
    padding: 20px 8px;
    font-family: inherit;
    font-size: 16.5px;
    font-weight: 600;
    color: var(--ink);
    display: flex; align-items: center; justify-content: space-between;
    gap: 16px;
    transition: color 180ms var(--ease);
}
.faq__q:hover { color: var(--teal-dark); }
.faq__icon {
    width: 22px; height: 22px; position: relative; flex-shrink: 0;
}
.faq__icon::before, .faq__icon::after {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    width: 14px; height: 2px;
    background: var(--teal-dark);
    transform: translate(-50%, -50%);
    transition: transform 280ms var(--ease);
}
.faq__icon::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq__item.is-open .faq__icon::after { transform: translate(-50%, -50%) rotate(0); }
.faq__a {
    max-height: 0; overflow: hidden;
    transition: max-height 300ms var(--ease);
}
.faq__a-inner {
    padding: 0 8px 24px;
    font-size: 15.5px;
    line-height: 1.6;
    color: var(--ink-soft);
    max-width: 520px;
}
.faq__item.is-open .faq__a { max-height: 360px; }

@media (max-width: 860px) {
    .access__grid { grid-template-columns: 1fr; gap: 56px; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
    background: var(--teal-deep);
    color: rgba(255, 255, 255, 0.7);
    padding: 72px 0 0;
}
.footer__grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
}
.footer__brand {
    display: flex; align-items: center; gap: 12px;
    color: var(--white);
    font-weight: 800; font-size: 22px;
    margin-bottom: 14px;
}
.footer__brand svg { width: 36px; height: 36px; }
.footer__tagline { font-size: 14.5px; color: rgba(255, 255, 255, 0.6); margin-bottom: 6px; }
.footer__desc { font-size: 14.5px; color: rgba(255, 255, 255, 0.55); max-width: 320px; line-height: 1.55; }
.footer__col h4 {
    font-size: 12px; font-weight: 700;
    color: var(--teal-light);
    letter-spacing: 0.14em; text-transform: uppercase;
    margin-bottom: 18px;
}
.footer__col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 11px; }
.footer__col a {
    color: rgba(255, 255, 255, 0.72);
    font-size: 14.5px;
    transition: color 180ms var(--ease);
}
.footer__col a:hover { color: var(--white); text-decoration: none; }
.footer__social { display: flex; gap: 10px; margin-top: 18px; }
.footer__social a {
    width: 36px; height: 36px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: background 200ms var(--ease), border-color 200ms var(--ease);
}
.footer__social a:hover { background: rgba(93, 202, 165, 0.15); border-color: var(--teal-light); }
.footer__social svg { width: 16px; height: 16px; color: var(--white); }
.footer__bottom {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 20px;
    padding: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}
.footer__credit { text-align: center; }
.footer__credit a { color: rgba(255, 255, 255, 0.6); }
.footer__credit a:hover { color: var(--teal-light); text-decoration: none; }
.footer__domain { text-align: right; color: rgba(255, 255, 255, 0.5); font-variant-numeric: tabular-nums; }

@media (max-width: 860px) {
    .footer__grid { grid-template-columns: 1fr; gap: 40px; }
    .footer__bottom { grid-template-columns: 1fr; text-align: center; gap: 10px; }
    .footer__domain { text-align: center; }
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.subhero {
    padding: 148px 0 72px;
    background:
        radial-gradient(800px 400px at 20% 0%, rgba(93, 202, 165, 0.22), transparent 70%),
        linear-gradient(160deg, #0F6E56 0%, #0C5142 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}
.subhero::before {
    content: '';
    position: absolute; inset: 0;
    background-image: radial-gradient(circle, rgba(93, 202, 165, 0.22) 1.2px, transparent 1.2px);
    background-size: 48px 48px;
    opacity: 0.5;
    mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 30%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 30%, transparent 100%);
}
.subhero__inner { position: relative; z-index: 1; max-width: 720px; }
.subhero__eyebrow {
    display: inline-block;
    font-size: 13px; font-weight: 600;
    color: var(--teal-light);
    letter-spacing: 0.14em; text-transform: uppercase;
    margin-bottom: 16px;
}
.subhero h1 {
    font-size: clamp(36px, 5.2vw, 62px);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.05;
    margin-bottom: 18px;
    color: var(--white);
}
.subhero p {
    font-size: clamp(16.5px, 1.6vw, 19px);
    color: rgba(255, 255, 255, 0.78);
    max-width: 560px;
}

.email-directory { background: var(--bg); padding: 88px 0 48px; }
.email-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.email-card {
    padding: 28px 24px;
    border: 1px solid var(--line);
    border-radius: var(--r-card);
    background: var(--white);
    transition: transform 220ms var(--ease), box-shadow 220ms var(--ease), border-color 220ms var(--ease);
    display: block;
}
.email-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: transparent;
    text-decoration: none;
}
.email-card__label {
    font-size: 12px; font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--teal);
    text-transform: uppercase;
    margin-bottom: 10px;
}
.email-card__purpose {
    font-size: 17px; color: var(--ink);
    font-weight: 600;
    margin-bottom: 6px;
}
.email-card__email {
    color: var(--teal-dark);
    font-size: 14.5px; font-weight: 500;
}

@media (max-width: 860px) {
    .email-grid { grid-template-columns: 1fr; }
}

.contact-form-section {
    background: var(--bg-alt);
    padding: 88px 0 120px;
}
.contact-form-wrap {
    max-width: 720px;
    margin-inline: auto;
    background: var(--white);
    padding: 48px;
    border-radius: var(--r-card);
    border: 1px solid var(--line);
}
.contact-form-wrap h2 {
    font-size: clamp(26px, 3vw, 34px);
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}
.contact-form-wrap > p { color: var(--ink-soft); margin-bottom: 32px; }
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
@media (max-width: 620px) {
    .contact-form-wrap { padding: 28px 20px; }
    .form-row { grid-template-columns: 1fr; }
}

/* ============================================================
   LEGAL PAGES
   ============================================================ */
.legal { padding: 132px 0 96px; background: var(--bg); }
.legal__inner { max-width: var(--prose); margin-inline: auto; }
.legal h1 {
    font-size: clamp(34px, 4.4vw, 52px);
    letter-spacing: -0.03em;
    margin-bottom: 10px;
    color: var(--ink);
}
.legal__date { color: var(--ink-soft); font-size: 14px; margin-bottom: 48px; display: block; }
.legal h2 { font-size: 22px; margin: 40px 0 14px; color: var(--ink); }
.legal h3 { font-size: 17px; margin: 28px 0 10px; color: var(--ink); }
.legal p, .legal li {
    font-size: 16.5px; line-height: 1.7;
    color: var(--ink);
    margin-bottom: 14px;
}
.legal ul, .legal ol { padding-left: 22px; }
.legal strong { color: var(--ink); font-weight: 600; }
.legal .placeholder-note {
    padding: 16px 20px;
    background: var(--teal-surface);
    border-left: 3px solid var(--teal);
    border-radius: 6px;
    color: var(--teal-deep);
    font-size: 15px;
    margin-bottom: 32px;
}
.legal__signoff {
    margin-top: 56px;
    padding-top: 28px;
    border-top: 1px solid var(--line);
    font-size: 19px !important;
    color: var(--ink) !important;
    letter-spacing: -0.01em;
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */

/* Hero with constellation backdrop (reuses hero dot pattern) */
.about-hero {
    position: relative;
    padding: 140px 0 96px;
    background:
      radial-gradient(ellipse 80% 55% at 50% 0%, rgba(29,158,117,0.10), transparent 70%),
      var(--bg);
    overflow: hidden;
}
.about-hero::before {
    content: "";
    position: absolute; inset: 0;
    background-image: radial-gradient(circle, rgba(15,110,86,0.18) 1.3px, transparent 1.6px);
    background-size: 28px 28px;
    mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, #000 35%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, #000 35%, transparent 80%);
    pointer-events: none;
}
.about-hero__inner {
    position: relative; z-index: 1;
    max-width: 820px; margin-inline: auto;
    text-align: center;
}
.about-hero__eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 6px 14px;
    background: var(--teal-surface);
    color: var(--teal-deep);
    font-size: 13px; font-weight: 600;
    border-radius: var(--r-pill);
    margin-bottom: 24px;
    letter-spacing: 0.01em;
}
.about-hero__eyebrow::before {
    content: ""; width: 6px; height: 6px; border-radius: 50%;
    background: var(--teal); box-shadow: 0 0 0 4px rgba(29,158,117,0.18);
}
.about-hero h1 {
    font-size: clamp(36px, 5vw, 64px);
    letter-spacing: -0.025em;
    margin-bottom: 20px;
    line-height: 1.05;
}
.about-hero h1 em {
    color: var(--teal); font-style: normal;
}
.about-hero__lede {
    font-size: clamp(17px, 1.4vw, 20px);
    color: var(--ink-soft); line-height: 1.55;
    max-width: 640px; margin-inline: auto;
}

/* Two-column "Why" split: bold statement + supporting prose */
.about-why {
    padding: clamp(72px, 9vw, 112px) 0;
}
.about-why__grid {
    display: grid; grid-template-columns: 5fr 7fr; gap: 72px;
    align-items: start;
}
.about-why__statement {
    position: sticky; top: 120px;
}
.about-why__kicker {
    font-size: 13px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.14em;
    color: var(--teal); margin-bottom: 18px; display: block;
}
.about-why__statement h2 {
    font-size: clamp(28px, 3.2vw, 42px);
    letter-spacing: -0.02em; line-height: 1.15;
    color: var(--ink);
}
.about-why__statement h2 em {
    color: var(--teal-deep); font-style: normal;
}
.about-why__prose p {
    font-size: 17px; line-height: 1.7; color: var(--ink-soft);
    margin-bottom: 20px;
}
.about-why__pullquote {
    margin-top: 28px;
    padding: 24px 28px;
    background: var(--teal-surface);
    border-left: 4px solid var(--teal);
    border-radius: 8px;
    font-size: 19px; font-weight: 600; line-height: 1.4;
    color: var(--teal-deep);
    letter-spacing: -0.01em;
}
@media (max-width: 860px) {
    .about-why__grid { grid-template-columns: 1fr; gap: 40px; }
    .about-why__statement { position: static; }
}

/* Meaning callout — centrepiece */
.about-meaning {
    padding: clamp(72px, 9vw, 112px) 0;
    background: var(--ink);
    color: var(--white);
    text-align: center;
    position: relative; overflow: hidden;
}
.about-meaning::before {
    content: "";
    position: absolute; inset: 0;
    background-image: radial-gradient(circle, rgba(93,202,165,0.14) 1.2px, transparent 1.5px);
    background-size: 32px 32px;
    mask-image: radial-gradient(ellipse 60% 70% at 50% 50%, #000 30%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse 60% 70% at 50% 50%, #000 30%, transparent 75%);
    pointer-events: none;
}
.about-meaning__inner {
    position: relative; z-index: 1;
    max-width: 720px; margin-inline: auto;
}
.about-meaning__label {
    font-size: 12px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.2em;
    color: var(--teal-light);
    margin-bottom: 28px; display: block;
}
.about-meaning__word {
    font-size: clamp(56px, 9vw, 112px);
    font-weight: 800; letter-spacing: -0.04em;
    line-height: 1; margin-bottom: 8px;
    background: linear-gradient(180deg, #fff 40%, var(--teal-light));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.about-meaning__pronunciation {
    font-size: 15px; color: rgba(255,255,255,0.55);
    font-style: italic; margin-bottom: 36px;
}
.about-meaning__defs {
    display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
    max-width: 600px; margin: 0 auto 28px;
}
.about-meaning__def {
    padding: 24px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    text-align: left;
}
.about-meaning__def-num {
    display: inline-block;
    width: 26px; height: 26px;
    border-radius: 50%;
    background: var(--teal);
    color: var(--white);
    font-size: 13px; font-weight: 700;
    text-align: center; line-height: 26px;
    margin-bottom: 12px;
}
.about-meaning__def strong {
    display: block; color: var(--white);
    font-size: 17px; margin-bottom: 4px;
    letter-spacing: -0.005em;
}
.about-meaning__def span {
    color: rgba(255,255,255,0.65);
    font-size: 14.5px; line-height: 1.5;
}
.about-meaning__summary {
    font-size: 17px; color: rgba(255,255,255,0.75);
    line-height: 1.6; max-width: 520px;
    margin-inline: auto;
}
@media (max-width: 560px) {
    .about-meaning__defs { grid-template-columns: 1fr; }
}

/* Pillars: numbered cards of what Makhe does */
.about-pillars { padding: clamp(72px, 9vw, 112px) 0; background: var(--bg); }
.about-pillars__head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.about-pillars__head .about-why__kicker { display: inline-block; margin-inline: auto; }
.about-pillars__head h2 {
    font-size: clamp(28px, 3.6vw, 40px);
    letter-spacing: -0.02em;
    margin-bottom: 14px;
}
.about-pillars__head p {
    color: var(--ink-soft); font-size: 17px; line-height: 1.55;
}
.about-pillars__grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
@media (max-width: 960px) {
    .about-pillars__grid { grid-template-columns: repeat(2, 1fr); }
    .about-pillars__grid .pillar:nth-child(5):last-child { grid-column: 1 / -1; }
}
@media (max-width: 620px) {
    .about-pillars__grid { grid-template-columns: 1fr; }
    .about-pillars__grid .pillar:nth-child(5):last-child { grid-column: auto; }
}
.pillar {
    position: relative;
    padding: 32px 28px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 16px;
    transition: transform 220ms var(--ease), box-shadow 220ms var(--ease), border-color 220ms var(--ease);
}
.pillar:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--teal);
}
.pillar__num {
    font-size: 40px; font-weight: 800;
    color: var(--teal); letter-spacing: -0.04em;
    line-height: 1; margin-bottom: 14px;
    font-variant-numeric: tabular-nums;
}
.pillar__title {
    font-size: 19px; font-weight: 700;
    color: var(--ink); margin-bottom: 8px;
    letter-spacing: -0.01em;
}
.pillar__tag {
    display: inline-block;
    font-size: 11px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.1em;
    background: var(--teal-surface); color: var(--teal-deep);
    padding: 3px 9px; border-radius: var(--r-pill);
    margin-left: 8px; vertical-align: 3px;
}
.pillar__body {
    font-size: 15.5px; line-height: 1.55; color: var(--ink-soft);
}

/* Verification tiers diagram */
.about-verify {
    padding: clamp(72px, 9vw, 112px) 0;
    background: var(--teal-surface);
}
.about-verify__inner { max-width: 1040px; margin-inline: auto; }
.about-verify__head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.about-verify__head h2 {
    font-size: clamp(28px, 3.6vw, 40px); letter-spacing: -0.02em;
}
.about-verify__tiers {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
@media (max-width: 820px) {
    .about-verify__tiers { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 420px) {
    .about-verify__tiers { grid-template-columns: 1fr; }
}
.tier {
    padding: 24px 22px;
    background: var(--white);
    border-radius: 14px;
    border: 1px solid var(--line);
    position: relative;
}
.tier__level {
    display: flex; align-items: center; gap: 8px;
    font-size: 11px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.12em;
    color: var(--ink-soft); margin-bottom: 14px;
}
.tier__dots {
    display: inline-flex; gap: 3px;
}
.tier__dot {
    width: 7px; height: 7px; border-radius: 50%;
    background: var(--line);
}
.tier__dot--on { background: var(--teal); }
.tier__title {
    font-size: 17px; font-weight: 700; color: var(--ink);
    margin-bottom: 6px; letter-spacing: -0.01em;
}
.tier__req {
    font-size: 13px; color: var(--teal-deep);
    font-weight: 600; margin-bottom: 10px;
}
.tier__body {
    font-size: 14px; color: var(--ink-soft); line-height: 1.5;
}
.about-verify__note {
    margin-top: 32px; text-align: center;
    font-size: 14.5px; color: var(--ink-soft);
}
.about-verify__note strong { color: var(--teal-deep); }

/* Rollout / where we are now */
.about-rollout {
    padding: clamp(72px, 9vw, 112px) 0;
    text-align: center;
}
.about-rollout__inner { max-width: 720px; margin-inline: auto; }
.about-rollout__badge {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 7px 16px;
    background: var(--ink); color: var(--white);
    font-size: 12px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.12em;
    border-radius: var(--r-pill);
    margin-bottom: 24px;
}
.about-rollout__badge::before {
    content: ""; width: 7px; height: 7px; border-radius: 50%;
    background: var(--teal-light);
    box-shadow: 0 0 0 4px rgba(93,202,165,0.3);
    animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 4px rgba(93,202,165,0.3); }
    50% { box-shadow: 0 0 0 7px rgba(93,202,165,0.12); }
}
.about-rollout h2 {
    font-size: clamp(28px, 3.6vw, 42px);
    letter-spacing: -0.02em; margin-bottom: 14px;
}
.about-rollout p {
    font-size: 17px; color: var(--ink-soft); line-height: 1.6;
    margin-bottom: 40px;
}
.about-rollout__timeline {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;
    position: relative; margin-top: 32px;
}
.about-rollout__timeline::before {
    content: ""; position: absolute;
    top: 18px; left: 16%; right: 16%;
    height: 2px; background: var(--line);
    z-index: 0;
}
.rollout-step {
    position: relative; z-index: 1;
    text-align: center; padding: 0 8px;
}
.rollout-step__dot {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid var(--line);
    margin: 0 auto 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 13px; font-weight: 700;
    color: var(--ink-soft);
}
.rollout-step--active .rollout-step__dot {
    background: var(--teal); border-color: var(--teal); color: var(--white);
    box-shadow: 0 0 0 4px rgba(29,158,117,0.18);
}
.rollout-step--done .rollout-step__dot {
    background: var(--teal-deep); border-color: var(--teal-deep); color: var(--white);
}
.rollout-step__label {
    font-size: 13px; font-weight: 700;
    color: var(--ink); margin-bottom: 2px;
    letter-spacing: -0.005em;
}
.rollout-step__when {
    font-size: 12px; color: var(--ink-soft);
}
@media (max-width: 560px) {
    .about-rollout__timeline { grid-template-columns: 1fr; gap: 20px; }
    .about-rollout__timeline::before { display: none; }
}

/* Built-for-SA closing band */
.about-closing {
    padding: 72px 0;
    background: var(--ink);
    color: var(--white);
    text-align: center;
}
.about-closing__slogan {
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 800; letter-spacing: -0.025em;
    line-height: 1.15;
}
.about-closing__slogan em {
    color: var(--teal-light); font-style: normal;
}

/* ============================================================
   ABOUT — CTA band
   ============================================================ */
.about-cta {
    padding: clamp(64px, 9vw, 112px) 0;
    background: var(--teal-surface);
    text-align: center;
}
.about-cta__inner { max-width: 640px; margin-inline: auto; }
.about-cta h2 {
    font-size: clamp(28px, 3.6vw, 40px);
    color: var(--ink);
    margin-bottom: 14px;
    letter-spacing: -0.02em;
}
.about-cta p {
    color: var(--ink-soft);
    font-size: 17px;
    margin-bottom: 28px;
    line-height: 1.55;
}
.about-cta__buttons {
    display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
}

/* ============================================================
   COOKIE BANNER
   ============================================================ */
.cookie {
    position: fixed;
    bottom: 20px; left: 20px; right: 20px;
    max-width: 520px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--r-card);
    padding: 20px 22px;
    box-shadow: var(--shadow-lg);
    z-index: 200;
    display: none;
}
.cookie.is-visible { display: block; animation: cookieIn 400ms var(--ease) both; }
@keyframes cookieIn {
    from { opacity: 0; transform: translateY(18px); }
    to { opacity: 1; transform: translateY(0); }
}
.cookie p { font-size: 14px; line-height: 1.55; color: var(--ink); margin-bottom: 14px; }
.cookie p a { font-weight: 600; color: var(--teal-dark); }
.cookie__actions { display: flex; gap: 10px; justify-content: flex-end; }
.cookie__btn {
    padding: 9px 18px;
    border-radius: var(--r-pill);
    font-size: 13px; font-weight: 600;
    transition: background 180ms var(--ease);
}
.cookie__btn--primary { background: var(--teal); color: var(--white); }
.cookie__btn--primary:hover { background: var(--teal-dark); }
.cookie__btn--ghost { background: transparent; color: var(--ink-soft); }
.cookie__btn--ghost:hover { color: var(--ink); }

/* ============================================================
   REVEALS
   ============================================================ */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 600ms var(--ease), transform 600ms var(--ease);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal--delay-1 { transition-delay: 100ms; }
.reveal--delay-2 { transition-delay: 200ms; }
.reveal--delay-3 { transition-delay: 300ms; }
.reveal--delay-4 { transition-delay: 400ms; }

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
        scroll-behavior: auto !important;
    }
    .reveal { opacity: 1; transform: none; }
    .hero__title .word, .hero__sub, .hero__ctas, .hero__stores, .hero__device {
        opacity: 1 !important; transform: none !important;
    }
    .hero__device { animation: none !important; }
    .mock-walk__pin { animation: none; }
}

/* ---------- Focus ---------- */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
    outline: 2.5px solid var(--teal);
    outline-offset: 3px;
    border-radius: 4px;
}
.btn:focus-visible, .nav__cta:focus-visible { outline-offset: 4px; }

.sr-only {
    position: absolute; width: 1px; height: 1px;
    padding: 0; margin: -1px; overflow: hidden;
    clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}

@media (max-width: 920px) {
    .hero { min-height: auto; padding: 120px 0 72px; }
    .hero__grid { grid-template-columns: 1fr; gap: 56px; text-align: center; }
    .hero__copy { margin-inline: auto; }
    .hero__ctas { justify-content: center; }
    .hero__stores { justify-content: center; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
    .hero__stores-label {
        width: 100%; text-align: center; margin: 0 0 4px;
    }
    .hero__stores .store-badge {
        flex: 1 1 0; min-width: 0; max-width: 200px;
        padding: 0 12px; gap: 8px; justify-content: center;
    }
    .hero__stores .store-badge small { font-size: 9px; white-space: nowrap; }
    .hero__stores .store-badge strong { font-size: 13px; white-space: nowrap; }
    .device { width: 270px; }
}

/* ============================================================
   UI POLISH — added 2026-04-22
   Hero mobile logo, glass-morph mobile menu, features mobile layout,
   access section fixes, footer socials.
   ============================================================ */

/* Mobile-only stacked logo above hero H1 */
.hero__logo-mobile { display: none; }
@media (max-width: 720px) {
    .hero__logo-mobile {
        display: block;
        width: clamp(140px, 40vw, 200px);
        height: auto;
        margin: 0 auto 48px;
        filter: brightness(0) invert(1);
        opacity: 0.95;
    }
}

/* Footer brand image (replaces spoke SVG) */
.footer__brand-img {
    width: 56px; height: auto; display: block;
    filter: brightness(0) invert(1);
    opacity: .95;
}

/* Scroll-margin so sticky nav doesn't clip anchored sections (fixes Email label clip) */
section[id] { scroll-margin-top: 84px; }
.access__form { scroll-margin-top: 84px; }

/* Mobile menu — green glassmorphism, full-height, white CTA text */
@media (max-width: 860px) {
    .nav__mobile-panel {
        top: 68px;
        bottom: 0;
        height: calc(100vh - 68px);
        height: calc(100dvh - 68px);
        background: linear-gradient(180deg, rgba(15,110,86,0.82), rgba(15,110,86,0.92));
        -webkit-backdrop-filter: blur(18px) saturate(1.2);
        backdrop-filter: blur(18px) saturate(1.2);
        border-bottom: none;
        border-top: 1px solid rgba(255,255,255,0.15);
        box-shadow: 0 20px 60px rgba(0,0,0,0.25);
        padding: 24px 28px 32px;
        overflow-y: auto;
    }
    .nav__mobile-panel li { border-bottom: 1px solid rgba(255,255,255,0.18); }
    .nav__mobile-panel a {
        color: #FFFFFF;
        font-weight: 500;
    }
    .nav__mobile-panel a:hover { color: #E6FFF5; }
    .nav__mobile-panel .btn--primary {
        background: #FFFFFF;
        color: var(--teal-dark);
    }
    .nav__mobile-panel .btn--primary:hover {
        background: #F3FFFB;
        color: var(--teal-dark);
    }
}

/* Features cards — centre content on mobile */
@media (max-width: 560px) {
    .feature-card {
        text-align: center;
        padding: 28px 22px;
    }
    .feature-card__icon {
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 14px;     /* tighter icon → title spacing */
    }
    .feature-card__title { margin-bottom: 6px; }
}

/* Access section — centre store badges on mobile, stack single column */
@media (max-width: 620px) {
    .access__stores {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }
    .access__stores-label {
        text-align: center;
        width: 100%;
        margin-bottom: 4px;
    }
    .access__stores .store-badge,
    .access__stores .store-badge--light {
        flex: 1 1 0;
        min-width: 0;
        max-width: 200px;
        padding: 0 12px;
        gap: 8px;
        justify-content: center;
    }
    .access__stores .store-badge small { font-size: 9px; white-space: nowrap; }
    .access__stores .store-badge strong { font-size: 13px; white-space: nowrap; }
}

/* Footer socials row */
.footer__socials {
    display: flex;
    gap: 14px;
    margin-bottom: 10px;
    border-bottom: none !important;
    padding: 0 !important;
}
.footer__socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px; height: 40px;
    border-radius: 999px;
    background: rgba(93, 202, 165, 0.12);
    color: #5DCAA5;
    transition: background 200ms var(--ease), color 200ms var(--ease), transform 200ms var(--ease);
}
.footer__socials a:hover {
    background: #5DCAA5;
    color: #0F2A22;
    transform: translateY(-2px);
    text-decoration: none;
}

/* Nav brand: tighten spacing now that the SVG mark is gone */
.nav__brand span { letter-spacing: 0.02em; }

/* About page sign-off band (replaced duplicate CTA) */
.about-signoff { padding: 60px 0 72px; background: var(--white); }
.about-signoff__inner { text-align: center; }
.about-signoff__line { font-size: 16px; color: var(--ink-soft); margin: 0; }
.about-signoff__line a { color: var(--teal-dark); font-weight: 600; }

/* ============================================================
   Hero network animation (connecting dots)
   ============================================================ */
.hero__network {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    opacity: 0;
    transition: opacity 800ms ease;
}
.hero__network.is-ready { opacity: 1; }
.hero > .container { position: relative; z-index: 1; }
@media (prefers-reduced-motion: reduce) {
    .hero__network { display: none; }
}
