/* ==========================================================================
   MOUNT MATE  —  Design System
   Brand:  Your mounting mate. Like texting a friend who happens to fit TVs.
   Voice:  Peer-to-peer. Casual. Sorted. "Drop us a snap. We'll be there by tea."
   Visual: Cool app palette + chat bubbles + big rounded corners + sans only.
           No serif. No mono. Outfit throughout. Sky-blue + coral + lime.
           Avatar circles, read-receipt ticks, online dots, message bubbles
           with tails, gradient ping CTA — the whole thing reads like a product.
   ========================================================================== */

/* -----  1. TOKENS  ------------------------------------------------------- */
:root {
    /* Palette — cool app, three saturated accents (sky + coral + lime).
       This is the only site in the portfolio that uses cool whites, not warm cream. */
    --cloud:        #f7f9fc;            /* cool app background */
    --cloud-2:      #eef3fa;
    --cloud-3:      #e4ecf6;
    --white:        #ffffff;
    --pearl:        #f0f4fa;

    --ink:          #1a1d29;            /* cool dark navy-ink */
    --ink-2:        #2a2e3d;
    --ink-3:        #3d4256;
    --slate:        #6b7080;            /* cool mid grey */
    --slate-2:      #8b909e;
    --slate-3:      #b8bcc8;

    /* Sky — primary brand color, vibrant friendly blue */
    --sky:          #3b82f6;
    --sky-deep:     #2563eb;
    --sky-darker:   #1d4ed8;
    --sky-pale:     #dbeafe;
    --sky-tint:     #eff6ff;

    /* Coral — warm accent for CTAs, friendly contrast */
    --coral:        #ff7a59;
    --coral-deep:   #ff5a36;
    --coral-pale:   #ffe1d6;

    /* Lime — success state, "online", read-receipts */
    --lime:         #84e056;
    --lime-deep:    #66c33b;

    --line:         rgba(26,29,41,0.08);
    --line-dim:     rgba(26,29,41,0.04);
    --line-onink:   rgba(247,249,252,0.12);

    /* Type — Outfit only. No serif, no mono. */
    --font-display: "Outfit", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --font-body:    "Outfit", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

    /* Type scale */
    --t-mega:    clamp(2.875rem, 6.5vw + 1rem, 6.875rem);
    --t-display: clamp(2.25rem, 4.6vw + 1rem, 4.875rem);
    --t-h1:      clamp(2rem, 4vw + 0.5rem, 3.75rem);
    --t-h2:      clamp(1.625rem, 2.5vw + 0.5rem, 2.5rem);
    --t-h3:      clamp(1.25rem, 1.5vw + 0.5rem, 1.625rem);
    --t-h4:      clamp(1.0625rem, 0.5vw + 0.85rem, 1.25rem);
    --t-body:    1rem;
    --t-small:   0.9375rem;
    --t-micro:   0.75rem;

    --s-1: 4px; --s-2: 8px; --s-3: 12px; --s-4: 16px; --s-5: 24px;
    --s-6: 32px; --s-7: 48px; --s-8: 64px; --s-9: 96px; --s-10: 128px;

    --max-w: 1240px;
    --gutter: 28px;

    /* Generous rounded corners — the signature visual distinction */
    --radius:     16px;
    --radius-sm:  12px;
    --radius-lg:  24px;
    --radius-pill: 999px;

    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-bounce: cubic-bezier(0.34, 1.45, 0.64, 1);
    --dur: 260ms;
}

/* -----  2. RESET + BASE  ------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; text-rendering: optimizeLegibility; scroll-behavior: smooth; }
body {
    background: var(--cloud);
    color: var(--ink);
    font-family: var(--font-body);
    font-size: var(--t-body);
    line-height: 1.6;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; background: none; border: none; color: inherit; }
ul, ol { list-style: none; }
input, textarea, select { font: inherit; color: inherit; }
::selection { background: var(--sky); color: var(--white); }

/* -----  3. TYPOGRAPHY  --------------------------------------------------- */
.mega {
    font-family: var(--font-display);
    font-size: var(--t-mega);
    font-weight: 700;
    line-height: 0.98;
    letter-spacing: -0.028em;
}
.display {
    font-family: var(--font-display);
    font-size: var(--t-display);
    font-weight: 700;
    line-height: 1.03;
    letter-spacing: -0.022em;
}
h1, .h1 { font-family: var(--font-display); font-size: var(--t-h1); font-weight: 700; line-height: 1.04; letter-spacing: -0.02em; }
h2, .h2 { font-family: var(--font-display); font-size: var(--t-h2); font-weight: 600; line-height: 1.1; letter-spacing: -0.014em; }
h3, .h3 { font-family: var(--font-display); font-size: var(--t-h3); font-weight: 600; line-height: 1.2; letter-spacing: -0.008em; }
h4, .h4 { font-family: var(--font-body); font-size: var(--t-h4); font-weight: 600; line-height: 1.3; letter-spacing: -0.005em; }

em, i, .italic { font-style: normal; color: var(--sky); }      /* no italics — replaced with sky-blue colored span */
.coral em { color: var(--coral); }

/* Handle — looks like a username chip with @ */
.handle {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 12px;
    background: var(--sky-tint);
    color: var(--sky-deep);
    border-radius: var(--radius-pill);
    font-size: 0.8125rem;
    font-weight: 500;
}
.handle::before { content: "@"; opacity: 0.7; }
.handle--coral { background: var(--coral-pale); color: var(--coral-deep); }
.handle--lime  { background: rgba(132,224,86,0.18); color: var(--lime-deep); }

/* Timestamp — small chat-style stamp */
.timestamp {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--slate);
    letter-spacing: 0.01em;
}
.timestamp--sky { color: var(--sky-deep); }

/* Inscription — small uppercase label */
.label {
    font-family: var(--font-body);
    font-size: var(--t-micro);
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--sky-deep);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.label::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--lime);
    box-shadow: 0 0 0 3px rgba(132,224,86,0.25);
}
.label--coral { color: var(--coral-deep); }
.label--coral::before { background: var(--coral); box-shadow: 0 0 0 3px rgba(255,122,89,0.22); }
.label--plain::before { display: none; }

.lede {
    font-size: 1.1875rem;
    line-height: 1.65;
    color: var(--ink-2);
    font-weight: 400;
}
.lede-lg { font-size: 1.3125rem; line-height: 1.55; }
.small { font-size: var(--t-small); }
.micro { font-size: var(--t-micro); letter-spacing: 0.06em; }
.muted { color: var(--slate); }
.accent { color: var(--sky-deep); }

/* -----  4. LAYOUT  ------------------------------------------------------- */
.container {
    width: 100%;
    max-width: var(--max-w);
    margin: 0 auto;
    padding-left: var(--gutter);
    padding-right: var(--gutter);
}
.container--narrow { max-width: 920px; }
.container--wide   { max-width: 1380px; }

.section {
    padding-top: var(--s-9);
    padding-bottom: var(--s-9);
    position: relative;
}
@media (max-width: 768px) {
    .section { padding-top: var(--s-8); padding-bottom: var(--s-8); }
}
.section--tight    { padding-top: var(--s-7); padding-bottom: var(--s-7); }
.section--cloud-2  { background: var(--cloud-2); }
.section--cloud-3  { background: var(--cloud-3); }
.section--ink      { background: var(--ink); color: var(--white); }
.section--ink h1, .section--ink h2, .section--ink h3 { color: var(--white); }
.section--ink .lede { color: rgba(255,255,255,0.78); }
.section--ink .label { color: var(--coral); }
.section--ink em { color: var(--coral); }
.section--ink .muted { color: var(--slate-2); }

/* Sky gradient section — the friendly hero panel background */
.section--sky {
    background: linear-gradient(135deg, var(--sky) 0%, var(--sky-deep) 100%);
    color: var(--white);
}
.section--sky h1, .section--sky h2, .section--sky h3 { color: var(--white); }
.section--sky .lede { color: rgba(255,255,255,0.85); }
.section--sky em { color: var(--coral); }

/* -----  5. SOFT BACKGROUND PATTERN  ----------------------------------- */
/* Subtle radial spots, like notification dots in the background */
.cloud-pattern {
    position: relative;
}
.cloud-pattern::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 12% 20%, rgba(59,130,246,0.07) 0, transparent 200px),
        radial-gradient(circle at 88% 78%, rgba(255,122,89,0.06) 0, transparent 220px);
    pointer-events: none;
}
.cloud-pattern > * { position: relative; z-index: 1; }

/* -----  6. TAP / BUTTON  ---------------------------------------------- */
.tap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 24px;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    font-weight: 600;
    letter-spacing: 0.002em;
    border-radius: var(--radius-pill);
    border: 1.5px solid transparent;
    transition: transform var(--dur) var(--ease), background var(--dur) var(--ease),
                color var(--dur) var(--ease), border-color var(--dur) var(--ease),
                box-shadow var(--dur) var(--ease);
    cursor: pointer;
    text-align: center;
    white-space: nowrap;
    position: relative;
}
.tap:focus-visible { outline: 2px solid var(--sky); outline-offset: 3px; }
.tap .arr { transition: transform var(--dur) var(--ease-bounce); display: inline-block; }
.tap:hover .arr { transform: translateX(4px); }

.tap--sky {
    background: var(--sky);
    color: var(--white);
    border-color: var(--sky);
    box-shadow: 0 8px 24px -10px rgba(59,130,246,0.5);
}
.tap--sky:hover {
    background: var(--sky-deep);
    border-color: var(--sky-deep);
    transform: translateY(-1px);
    box-shadow: 0 12px 32px -10px rgba(59,130,246,0.6);
}

.tap--coral {
    background: var(--coral);
    color: var(--white);
    border-color: var(--coral);
    box-shadow: 0 8px 24px -10px rgba(255,122,89,0.5);
}
.tap--coral:hover {
    background: var(--coral-deep);
    border-color: var(--coral-deep);
    transform: translateY(-1px);
    box-shadow: 0 12px 32px -10px rgba(255,122,89,0.6);
}

.tap--ghost {
    background: var(--white);
    color: var(--ink);
    border-color: var(--line);
}
.tap--ghost:hover {
    background: var(--cloud-2);
    border-color: var(--sky);
    color: var(--sky-deep);
}

.tap--outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.4);
}
.tap--outline:hover {
    background: var(--white);
    color: var(--sky-deep);
    border-color: var(--white);
}

.tap--link {
    padding: 4px 0;
    background: none;
    border: none;
    color: var(--sky-deep);
    border-radius: 0;
    font-weight: 600;
}
.tap--link:hover { color: var(--coral-deep); }

/* -----  7. ONLINE DOT / TICK / READ-RECEIPT  ----------------------- */
.online-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--lime);
    box-shadow: 0 0 0 2px var(--white), 0 0 0 4px rgba(132,224,86,0.25);
    position: relative;
}
.online-dot--ink-bg { box-shadow: 0 0 0 2px var(--ink), 0 0 0 4px rgba(132,224,86,0.25); }

.tick {
    color: var(--sky);
    font-size: 0.9375rem;
    line-height: 1;
}
.tick--read { color: var(--sky); }

/* -----  8. BUBBLE  ---------------------------------------------------- */
/* The signature card — a chat message bubble with a little tail SVG.       */
.bubble {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--s-6);
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 1px 0 rgba(26,29,41,0.04), 0 12px 36px -18px rgba(26,29,41,0.14);
    transition: transform var(--dur) var(--ease-out), box-shadow var(--dur) var(--ease-out);
    position: relative;
}
.bubble:hover {
    transform: translateY(-4px);
    box-shadow: 0 2px 0 rgba(26,29,41,0.04), 0 24px 48px -22px rgba(59,130,246,0.22);
}
/* Tail — small triangular protrusion on the bottom-left, like a message bubble */
.bubble::before {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 28px;
    width: 24px;
    height: 16px;
    background: var(--white);
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    border-bottom-left-radius: 8px;
}
.bubble--cloud { background: var(--cloud-2); }
.bubble--cloud::before { background: var(--cloud-2); }
.bubble--sky {
    background: linear-gradient(135deg, var(--sky), var(--sky-deep));
    color: var(--white);
}
.bubble--sky::before { background: var(--sky-deep); }
.bubble--coral {
    background: linear-gradient(135deg, var(--coral), var(--coral-deep));
    color: var(--white);
}
.bubble--coral::before { background: var(--coral-deep); }

.bubble__head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--s-4);
    gap: var(--s-3);
}
.bubble__id {
    font-family: var(--font-body);
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--sky-deep);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.bubble--sky .bubble__id, .bubble--coral .bubble__id { color: var(--white); }
.bubble__title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: var(--s-3);
    color: var(--ink);
    letter-spacing: -0.012em;
}
.bubble--sky .bubble__title, .bubble--coral .bubble__title { color: var(--white); }
.bubble__body {
    color: var(--ink-2);
    font-size: 0.9375rem;
    line-height: 1.65;
    flex: 1;
    margin-bottom: var(--s-5);
}
.bubble--sky .bubble__body, .bubble--coral .bubble__body { color: rgba(255,255,255,0.88); }
.bubble__foot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--s-4);
    border-top: 1px solid var(--line);
    font-size: 0.8125rem;
    color: var(--slate);
}
.bubble--sky .bubble__foot, .bubble--coral .bubble__foot { border-color: rgba(255,255,255,0.2); color: rgba(255,255,255,0.8); }
.bubble__foot .accent { color: var(--coral-deep); font-weight: 600; }
.bubble--sky .bubble__foot .accent, .bubble--coral .bubble__foot .accent { color: var(--white); }

/* -----  9. THREAD — message timeline (process)  ----------------------- */
.thread {
    display: flex;
    flex-direction: column;
    gap: var(--s-4);
    position: relative;
}
.thread__msg {
    background: var(--white);
    padding: var(--s-5);
    border-radius: var(--radius-lg);
    border-bottom-left-radius: 4px;
    max-width: 88%;
    box-shadow: 0 1px 0 rgba(26,29,41,0.03), 0 8px 24px -16px rgba(26,29,41,0.12);
    position: relative;
}
.thread__msg--mate {
    background: linear-gradient(135deg, var(--sky), var(--sky-deep));
    color: var(--white);
    border-bottom-left-radius: var(--radius-lg);
    border-bottom-right-radius: 4px;
    align-self: flex-end;
}
.thread__author {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--sky-deep);
}
.thread__msg--mate .thread__author { color: var(--coral); }
.thread__msg--mate .thread__author .online-dot { background: var(--lime); box-shadow: 0 0 0 2px var(--sky-deep), 0 0 0 4px rgba(132,224,86,0.4); }

.thread__avatar {
    width: 28px; height: 28px;
    border-radius: 50%;
    background: var(--sky-pale);
    color: var(--sky-deep);
    font-weight: 700;
    font-size: 0.75rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.thread__msg--mate .thread__avatar { background: var(--coral-pale); color: var(--coral-deep); }
.thread__body {
    font-size: 0.9375rem;
    line-height: 1.5;
}
.thread__msg--mate .thread__body { color: var(--white); }
.thread__stamp {
    font-size: 0.6875rem;
    color: var(--slate);
    margin-top: 8px;
    display: flex;
    align-items: center;
    gap: 4px;
    justify-content: flex-end;
}
.thread__msg--mate .thread__stamp { color: rgba(255,255,255,0.7); }
.thread__stamp .tick { color: inherit; }

/* -----  10. PATH — process step laid out like a phone status update     */
.path {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--s-6);
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: var(--s-3);
    box-shadow: 0 1px 0 rgba(26,29,41,0.04), 0 8px 24px -16px rgba(26,29,41,0.12);
    transition: transform var(--dur) var(--ease-out);
    position: relative;
}
.path:hover { transform: translateY(-3px); }
.path__head {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.path__step {
    background: var(--sky-tint);
    color: var(--sky-deep);
    font-weight: 700;
    padding: 4px 10px;
    border-radius: var(--radius-pill);
    font-size: 0.75rem;
    letter-spacing: 0.04em;
}
.path__time {
    font-size: 0.75rem;
    color: var(--slate);
    font-weight: 500;
}
.path__title {
    font-family: var(--font-display);
    font-size: 1.375rem;
    font-weight: 700;
    line-height: 1.15;
    color: var(--ink);
    letter-spacing: -0.012em;
}
.path__body { color: var(--ink-2); font-size: 0.9375rem; line-height: 1.6; flex: 1; }

/* -----  11. TIER — pricing card                                       */
.tier {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--s-8) var(--s-6);
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 1px 0 rgba(26,29,41,0.04), 0 8px 32px -18px rgba(26,29,41,0.14);
    transition: transform var(--dur) var(--ease-out), box-shadow var(--dur) var(--ease-out);
    position: relative;
}
.tier:hover {
    transform: translateY(-4px);
    box-shadow: 0 2px 0 rgba(26,29,41,0.05), 0 24px 56px -22px rgba(59,130,246,0.22);
}
.tier--feature {
    background: linear-gradient(150deg, var(--sky) 0%, var(--sky-deep) 100%);
    color: var(--white);
}
.tier--feature .tier__name,
.tier--feature .tier__amount,
.tier--feature .tier__sub,
.tier--feature .tier__inc li { color: var(--white); }
.tier--feature .tier__inc li { border-color: rgba(255,255,255,0.16); }
.tier--feature .tier__inc li::before { color: var(--coral); }
.tier--feature .tier__sub { border-color: rgba(255,255,255,0.18); color: rgba(255,255,255,0.85); }

.tier__id {
    display: inline-block;
    padding: 4px 12px;
    border-radius: var(--radius-pill);
    background: var(--cloud-2);
    color: var(--sky-deep);
    font-weight: 600;
    font-size: 0.75rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: var(--s-5);
    align-self: flex-start;
}
.tier--feature .tier__id { background: rgba(255,255,255,0.18); color: var(--white); }
.tier__name {
    font-family: var(--font-display);
    font-size: 1.875rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: var(--s-3);
    color: var(--ink);
    letter-spacing: -0.018em;
}
.tier__amount {
    font-family: var(--font-display);
    font-size: 3.25rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.028em;
    color: var(--ink);
    margin-bottom: var(--s-3);
    font-variant-numeric: tabular-nums;
}
.tier__amount small {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--slate);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}
.tier__sub {
    color: var(--ink-2);
    font-size: 0.9375rem;
    padding-bottom: var(--s-5);
    margin-bottom: var(--s-5);
    border-bottom: 1px solid var(--line);
    line-height: 1.55;
}
.tier__inc { flex: 1; margin-bottom: var(--s-6); }
.tier__inc li {
    padding: var(--s-3) 0 var(--s-3) 28px;
    position: relative;
    font-size: 0.9375rem;
    line-height: 1.5;
    color: var(--ink-2);
    border-bottom: 1px solid var(--line-dim);
}
.tier__inc li:last-child { border-bottom: none; }
.tier__inc li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 12px;
    color: var(--sky);
    font-size: 0.9375rem;
    font-weight: 700;
}

/* -----  12. MATE — crew/team member card                               */
.mate {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--s-6);
    text-align: left;
    box-shadow: 0 1px 0 rgba(26,29,41,0.04), 0 8px 28px -18px rgba(26,29,41,0.14);
    transition: transform var(--dur) var(--ease-out);
}
.mate:hover { transform: translateY(-3px); }
.mate__avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--sky-pale), var(--coral-pale));
    color: var(--sky-deep);
    font-weight: 700;
    font-size: 1.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--s-4);
    position: relative;
    font-family: var(--font-display);
}
.mate__avatar .online-dot {
    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 14px;
    height: 14px;
    box-shadow: 0 0 0 3px var(--white);
}
.mate__name {
    font-family: var(--font-display);
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 4px;
    letter-spacing: -0.012em;
}
.mate__role {
    font-size: 0.8125rem;
    color: var(--sky-deep);
    font-weight: 600;
    margin-bottom: var(--s-4);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.mate__bio { font-size: 0.9375rem; line-height: 1.65; color: var(--ink-2); }
.mate__stats {
    display: flex;
    gap: var(--s-4);
    margin-top: var(--s-5);
    padding-top: var(--s-4);
    border-top: 1px solid var(--line);
}
.mate__stat {
    font-size: 0.75rem;
    color: var(--slate);
}
.mate__stat strong { color: var(--ink); font-weight: 700; display: block; font-size: 1.0625rem; }

/* -----  13. PING — small notification/stat card                         */
.ping {
    background: var(--white);
    border-radius: var(--radius);
    padding: var(--s-5) var(--s-5);
    display: flex;
    flex-direction: column;
    gap: var(--s-2);
    box-shadow: 0 1px 0 rgba(26,29,41,0.04), 0 8px 24px -18px rgba(26,29,41,0.14);
    position: relative;
}
.ping__label {
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--sky-deep);
}
.ping__value {
    font-family: var(--font-display);
    font-size: clamp(2.25rem, 4vw, 3.25rem);
    font-weight: 700;
    line-height: 0.95;
    color: var(--ink);
    letter-spacing: -0.024em;
    font-variant-numeric: tabular-nums;
}
.ping__note {
    color: var(--slate);
    font-size: 0.875rem;
    line-height: 1.5;
    margin-top: var(--s-2);
}
.section--ink .ping { background: var(--ink-2); }
.section--ink .ping__label { color: var(--coral); }
.section--ink .ping__value { color: var(--white); }
.section--ink .ping__note { color: rgba(255,255,255,0.7); }

/* -----  14. CTA PANEL  ------------------------------------------------ */
.cta-panel {
    background: linear-gradient(135deg, var(--ink) 0%, var(--sky-darker) 90%);
    color: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--s-9) var(--s-7);
    position: relative;
    overflow: hidden;
}
.cta-panel::before {
    content: "";
    position: absolute;
    top: -30%;
    right: -10%;
    width: 60%;
    aspect-ratio: 1;
    background: radial-gradient(circle, rgba(255,122,89,0.35), transparent 60%);
    pointer-events: none;
}
.cta-panel::after {
    content: "";
    position: absolute;
    bottom: -20%;
    left: 10%;
    width: 45%;
    aspect-ratio: 1;
    background: radial-gradient(circle, rgba(132,224,86,0.18), transparent 60%);
    pointer-events: none;
}
.cta-panel > * { position: relative; z-index: 1; }
@media (max-width: 700px) { .cta-panel { padding: var(--s-7) var(--s-5); } }

/* -----  15. FORMS  ---------------------------------------------------- */
.form { display: grid; gap: var(--s-5); }
.form__row { display: grid; gap: var(--s-5); grid-template-columns: 1fr 1fr; }
@media (max-width: 640px) { .form__row { grid-template-columns: 1fr; } }

.field { display: flex; flex-direction: column; gap: 8px; }
.field label {
    font-family: var(--font-body);
    font-size: 0.8125rem;
    color: var(--ink-2);
    font-weight: 600;
}
.field label .opt { color: var(--slate); margin-left: 4px; font-weight: 400; }
.field input,
.field textarea,
.field select {
    background: var(--white);
    border: 1.5px solid var(--line);
    border-radius: var(--radius);
    padding: 14px 18px;
    font-size: 1rem;
    color: var(--ink);
    width: 100%;
    font-family: var(--font-body);
    transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.field input::placeholder, .field textarea::placeholder { color: var(--slate-2); }
.field input:focus,
.field textarea:focus,
.field select:focus {
    outline: none;
    border-color: var(--sky);
    box-shadow: 0 0 0 4px rgba(59,130,246,0.12);
}
.field textarea { resize: vertical; min-height: 150px; }

/* The composer form mimics a chat input row */
.composer {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--s-6);
    box-shadow: 0 1px 0 rgba(26,29,41,0.04), 0 12px 36px -18px rgba(26,29,41,0.14);
}
.composer__head {
    display: flex;
    align-items: center;
    gap: var(--s-3);
    margin-bottom: var(--s-5);
    padding-bottom: var(--s-4);
    border-bottom: 1px solid var(--line);
}
.composer__avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--sky-pale), var(--coral-pale));
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--sky-deep);
    font-weight: 700;
    font-size: 0.9375rem;
    position: relative;
}
.composer__avatar .online-dot {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 11px;
    height: 11px;
    box-shadow: 0 0 0 2px var(--white);
}
.composer__title { font-weight: 700; color: var(--ink); }
.composer__sub { font-size: 0.8125rem; color: var(--sky-deep); }

/* -----  16. HEADER + NAV  --------------------------------------------- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(247,249,252,0.85);
    backdrop-filter: saturate(180%) blur(14px);
    -webkit-backdrop-filter: saturate(180%) blur(14px);
    border-bottom: 1px solid transparent;
    transition: border-color var(--dur) var(--ease), background var(--dur) var(--ease);
}
.site-header.is-scrolled {
    border-bottom-color: var(--line);
    background: rgba(247,249,252,0.96);
}
.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 76px;
    gap: var(--s-5);
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--ink);
}
.brand__mark {
    width: 44px; height: 44px;
    flex-shrink: 0;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--sky) 0%, var(--sky-deep) 100%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 18px -6px rgba(59,130,246,0.5);
}
.brand__txt {
    display: flex;
    flex-direction: column;
    line-height: 1;
}
.brand__name {
    font-family: var(--font-display);
    font-size: 1.375rem;
    font-weight: 700;
    letter-spacing: -0.018em;
}
.brand__sub {
    font-size: 0.75rem;
    color: var(--sky-deep);
    margin-top: 4px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.nav { display: flex; align-items: center; gap: var(--s-5); }
.nav a {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--ink-2);
    padding: 8px 14px;
    border-radius: var(--radius-pill);
    transition: color var(--dur) var(--ease), background var(--dur) var(--ease);
}
.nav a:hover { background: var(--cloud-2); color: var(--ink); }
.nav a.is-active { background: var(--cloud-2); color: var(--sky-deep); font-weight: 600; }

.header-cta { display: flex; align-items: center; gap: var(--s-3); }
.menu-btn {
    display: none;
    width: 44px; height: 44px;
    border: 1.5px solid var(--ink);
    border-radius: var(--radius-pill);
    align-items: center;
    justify-content: center;
}
.menu-btn span {
    display: block;
    width: 18px; height: 2px;
    background: var(--ink);
    border-radius: 2px;
    position: relative;
}
.menu-btn span::before, .menu-btn span::after {
    content: ""; position: absolute; left: 0; right: 0; height: 2px; background: var(--ink); border-radius: 2px;
}
.menu-btn span::before { top: -6px; }
.menu-btn span::after  { top: 6px; }

@media (max-width: 980px) {
    .nav, .header-cta .tap:not(.menu-btn) { display: none; }
    .header-cta .menu-btn { display: flex; }
    .header-cta .handle { display: none; }
}

.mobile-menu {
    position: fixed; inset: 0;
    background: var(--cloud);
    z-index: 100;
    padding: var(--s-7) var(--gutter);
    display: none;
    flex-direction: column;
    overflow-y: auto;
}
.mobile-menu.is-open { display: flex; }
.mobile-menu__top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--s-8);
}
.mobile-menu__close {
    width: 44px; height: 44px;
    border: 1.5px solid var(--ink);
    border-radius: var(--radius-pill);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}
.mobile-menu nav { display: flex; flex-direction: column; gap: var(--s-3); }
.mobile-menu nav a {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--ink);
    line-height: 1;
    padding: var(--s-4) 0;
    letter-spacing: -0.02em;
    font-weight: 700;
    border-bottom: 1px solid var(--line);
}
.mobile-menu nav a.is-active { color: var(--sky-deep); }
.mobile-menu__foot { margin-top: auto; padding-top: var(--s-7); }

/* -----  17. HERO  ----------------------------------------------------- */
.hero {
    padding: var(--s-9) 0 var(--s-9);
    position: relative;
}
@media (max-width: 768px) { .hero { padding: var(--s-7) 0; } }
.hero__grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: var(--s-7);
    align-items: center;
}
@media (max-width: 920px) {
    .hero__grid { grid-template-columns: 1fr; gap: var(--s-7); }
}
.hero__lockup .label { margin-bottom: var(--s-5); }
.hero__lockup h1 {
    font-family: var(--font-display);
    font-size: var(--t-mega);
    line-height: 0.98;
    font-weight: 700;
    letter-spacing: -0.028em;
    margin-bottom: var(--s-5);
    color: var(--ink);
}
.hero__lockup h1 em {
    color: var(--sky);
    font-style: normal;
}
.hero__lockup h1 .em-coral { color: var(--coral); }
.hero__lede {
    color: var(--ink-2);
    font-size: 1.25rem;
    line-height: 1.55;
    max-width: 48ch;
    margin-bottom: var(--s-6);
}
.hero__ctas { display: flex; gap: var(--s-3); flex-wrap: wrap; margin-bottom: var(--s-7); }
.hero__notes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--s-5);
    padding-top: var(--s-5);
    border-top: 1px solid var(--line);
}
@media (max-width: 640px) { .hero__notes { grid-template-columns: 1fr; gap: var(--s-3); } }
.hero__note dt {
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--sky-deep);
    margin-bottom: 6px;
}
.hero__note dd { color: var(--ink); font-size: 1.0625rem; font-weight: 600; }

.hero__phone {
    background: var(--white);
    border-radius: 36px;
    padding: var(--s-5);
    box-shadow: 0 4px 0 rgba(26,29,41,0.04), 0 32px 56px -20px rgba(59,130,246,0.25);
    transition: transform var(--dur) var(--ease-out);
}
.hero__phone:hover { transform: translateY(-4px); }
.hero__phone-head {
    display: flex;
    align-items: center;
    gap: var(--s-3);
    padding-bottom: var(--s-4);
    border-bottom: 1px solid var(--line);
    margin-bottom: var(--s-4);
}
.hero__phone-foot {
    margin-top: var(--s-4);
    padding-top: var(--s-4);
    border-top: 1px solid var(--line);
    background: var(--cloud);
    border-radius: var(--radius-pill);
    padding: var(--s-3) var(--s-5);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.875rem;
    color: var(--slate);
}
.hero__phone-foot::before { content: "📷"; font-size: 1.125rem; }

/* -----  18. PAGE HEAD  ------------------------------------------------ */
.page-head {
    padding: var(--s-8) 0 var(--s-7);
    border-bottom: 1px solid var(--line);
    position: relative;
}
.page-head__top {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: var(--s-6);
    flex-wrap: wrap;
    gap: var(--s-3);
}
.page-head__crumb {
    font-size: 0.8125rem;
    color: var(--slate);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.page-head__crumb a { color: var(--sky-deep); font-weight: 500; }
.page-head__crumb a:hover { color: var(--coral-deep); }
.page-head__grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: var(--s-7);
    align-items: end;
}
@media (max-width: 768px) { .page-head__grid { grid-template-columns: 1fr; } }
.page-head h1 {
    font-size: clamp(2.25rem, 5vw + 0.5rem, 4.25rem);
    line-height: 1;
    margin-bottom: var(--s-4);
    max-width: 16ch;
    letter-spacing: -0.025em;
    font-weight: 700;
}
.page-head h1 em { color: var(--sky); }
.page-head__lede {
    max-width: 58ch;
    color: var(--ink-2);
    font-size: 1.125rem;
    line-height: 1.55;
}

/* -----  19. SECTION HEAD  --------------------------------------------- */
.sec-head {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--s-7);
    align-items: end;
    margin-bottom: var(--s-7);
}
@media (max-width: 768px) { .sec-head { grid-template-columns: 1fr; gap: var(--s-5); margin-bottom: var(--s-6); } }
.sec-head__title { max-width: 18ch; }
.sec-head__lede { color: var(--ink-2); line-height: 1.6; }

/* -----  20. FAQ (chat dialog style) ---------------------------------- */
.q {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--s-5) var(--s-6);
    margin-bottom: var(--s-3);
    box-shadow: 0 1px 0 rgba(26,29,41,0.03), 0 6px 18px -14px rgba(26,29,41,0.1);
    transition: box-shadow var(--dur) var(--ease);
}
.q[open] {
    box-shadow: 0 1px 0 rgba(26,29,41,0.03), 0 18px 48px -22px rgba(59,130,246,0.22);
}
.q summary {
    list-style: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--s-4);
    transition: color var(--dur) var(--ease);
}
.q summary::-webkit-details-marker { display: none; }
.q summary:hover .q__title { color: var(--sky-deep); }
.q__title {
    font-family: var(--font-display);
    font-size: 1.1875rem;
    font-weight: 600;
    line-height: 1.3;
    color: var(--ink);
    letter-spacing: -0.008em;
    flex: 1;
    display: flex;
    align-items: center;
    gap: var(--s-3);
}
.q__title::before {
    content: "Q";
    width: 28px; height: 28px;
    border-radius: 50%;
    background: var(--sky-pale);
    color: var(--sky-deep);
    font-weight: 700;
    font-size: 0.8125rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.q__title em { color: var(--sky-deep); }
.q__toggle {
    font-size: 1.375rem;
    line-height: 1;
    color: var(--sky-deep);
    transition: transform var(--dur) var(--ease);
    padding-left: var(--s-4);
    font-weight: 400;
}
.q[open] .q__toggle { transform: rotate(45deg); }
.q__body {
    padding-top: var(--s-4);
    padding-left: calc(28px + var(--s-3));
    color: var(--ink-2);
    line-height: 1.7;
    max-width: 70ch;
}
.q__body p { position: relative; padding-left: 0; }
.q__body p + p { margin-top: var(--s-3); }
.q__body p:first-child::before {
    content: "A";
    position: absolute;
    left: calc(-1 * (28px + var(--s-3)));
    top: -2px;
    width: 28px; height: 28px;
    border-radius: 50%;
    background: var(--coral-pale);
    color: var(--coral-deep);
    font-weight: 700;
    font-size: 0.8125rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* -----  21. FOOTER  --------------------------------------------------- */
.site-footer {
    background: var(--ink);
    color: var(--white);
    padding-top: var(--s-9);
    padding-bottom: var(--s-5);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.footer-call {
    padding-bottom: var(--s-8);
    border-bottom: 1px solid var(--line-onink);
    margin-bottom: var(--s-8);
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: var(--s-7);
    align-items: end;
}
@media (max-width: 800px) { .footer-call { grid-template-columns: 1fr; } }
.footer-call h2 { color: var(--white); max-width: 14ch; margin-top: var(--s-4); }
.footer-call h2 em { color: var(--coral); }
.footer-call p { color: rgba(255,255,255,0.78); max-width: 46ch; margin-top: var(--s-4); line-height: 1.55; }

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: var(--s-6);
    margin-bottom: var(--s-7);
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--s-7); } }
@media (max-width: 540px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-col h4 {
    font-size: 0.6875rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--coral);
    margin-bottom: var(--s-4);
    font-weight: 700;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
    color: rgba(255,255,255,0.78);
    font-size: 0.9375rem;
    transition: color var(--dur) var(--ease);
}
.footer-col a:hover { color: var(--coral); }
.footer-col p { color: rgba(255,255,255,0.72); line-height: 1.55; font-size: 0.9375rem; }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--s-5);
    padding-top: var(--s-5);
    border-top: 1px solid var(--line-onink);
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.55);
    flex-wrap: wrap;
}
.footer-bottom__legal { display: flex; gap: var(--s-5); flex-wrap: wrap; }

/* -----  22. PROSE (legal pages)  -------------------------------------- */
.prose {
    max-width: 70ch;
    color: var(--ink-2);
    line-height: 1.75;
    font-size: 1.0625rem;
}
.prose h2 {
    font-size: 1.875rem;
    margin-top: var(--s-7);
    margin-bottom: var(--s-4);
    color: var(--ink);
    letter-spacing: -0.018em;
    font-weight: 700;
}
.prose h2:first-child { margin-top: 0; }
.prose h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-top: var(--s-5);
    margin-bottom: var(--s-3);
    color: var(--ink);
}
.prose p { margin-bottom: var(--s-4); }
.prose ul { margin: 0 0 var(--s-4) 0; padding-left: 0; }
.prose ul li {
    padding: 6px 0 6px 28px;
    position: relative;
    list-style: none;
}
.prose ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 7px;
    color: var(--sky);
    font-weight: 700;
}
.prose strong { color: var(--ink); font-weight: 600; }
.prose a {
    color: var(--sky-deep);
    border-bottom: 1px solid rgba(37,99,235,0.35);
    transition: border-color var(--dur) var(--ease);
}
.prose a:hover { border-color: var(--sky-deep); color: var(--coral-deep); }

.legal-grid {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: var(--s-8);
}
@media (max-width: 900px) {
    .legal-grid { grid-template-columns: 1fr; }
    .prose-toc { position: static; }
}
.prose-toc {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--s-5);
    position: sticky;
    top: 96px;
    height: max-content;
    box-shadow: 0 1px 0 rgba(26,29,41,0.04), 0 8px 24px -18px rgba(26,29,41,0.12);
}
.prose-toc h4 {
    font-size: 0.6875rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--sky-deep);
    margin-bottom: var(--s-4);
    font-weight: 700;
}
.prose-toc ol { display: flex; flex-direction: column; gap: 10px; counter-reset: toc; }
.prose-toc ol li {
    font-size: 0.875rem;
    padding-left: 30px;
    position: relative;
    counter-increment: toc;
    line-height: 1.4;
}
.prose-toc ol li::before {
    content: counter(toc, decimal-leading-zero);
    position: absolute;
    left: 0;
    color: var(--sky-deep);
    font-size: 0.8125rem;
    font-weight: 700;
}
.prose-toc a { color: var(--ink-2); transition: color var(--dur) var(--ease); }
.prose-toc a:hover { color: var(--sky-deep); }

/* -----  23. UTILITY  -------------------------------------------------- */
.rule { height: 1px; background: var(--line); width: 100%; border: 0; margin: var(--s-6) 0; }
.text-center { text-align: center; }
.mt-3 { margin-top: var(--s-3); } .mt-4 { margin-top: var(--s-4); } .mt-5 { margin-top: var(--s-5); }
.mt-6 { margin-top: var(--s-6); } .mt-7 { margin-top: var(--s-7); } .mt-8 { margin-top: var(--s-8); }
.mb-4 { margin-bottom: var(--s-4); } .mb-5 { margin-bottom: var(--s-5); } .mb-6 { margin-bottom: var(--s-6); }
.hidden-md { display: initial; }
@media (max-width: 768px) { .hidden-md { display: none; } }

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-5); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--s-5); }
@media (max-width: 980px) { .grid-3 { grid-template-columns: repeat(2, 1fr); } .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 580px) { .grid-3, .grid-4 { grid-template-columns: 1fr; } }

.reveal {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 700ms var(--ease-out), transform 700ms var(--ease-out);
}
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1; transform: none; transition: none; }
    .bubble:hover, .tier:hover, .path:hover, .mate:hover, .hero__phone:hover { transform: none; }
    html { scroll-behavior: auto; }
}
