/**
 * 97 WORLD — HUB & DOCUMENT PAGES
 *
 * The dark pages outside the order wizard: the home page, /business/, the
 * trust centre, the legal pages and 404. They share HOME/style.css for
 * chrome (nav, footer, motion) and add everything below for the parts that
 * have to carry weight — the offer, the objections, the close, and
 * long-form reading.
 *
 * /growth/ is deliberately not one of these. It is a light, self-contained
 * product surface and owns assets/growth.css instead.
 *
 * One accent per hub, set on <body data-hub>. Growth is emerald, Build is
 * azure — the same two colours the home page already uses to tell the
 * paths apart, so arriving here confirms the choice instead of resetting it.
 * Neutral pages (home, trust, legal, 404) take the house emerald.
 */

/* components below set their own display (flex/grid) on classes that JS also
   toggles via the hidden attribute — without this, a same-specificity class
   rule can beat the browser's default [hidden]{display:none} and leave a
   "hidden" element rendered. */
[hidden] { display: none !important; }

body[data-hub="growth"],
body[data-hub="house"] {
    --hub: #00FFB2;
    --hub-2: #b8ff4d;
    --hub-ink: #04120d;
    --hub-8: rgba(0, 255, 178, 0.08);
    --hub-14: rgba(0, 255, 178, 0.14);
    --hub-35: rgba(0, 255, 178, 0.35);
}

body[data-hub="build"] {
    --hub: #6be4ff;
    --hub-2: #9d8bff;
    --hub-ink: #041016;
    --hub-8: rgba(107, 228, 255, 0.08);
    --hub-14: rgba(107, 228, 255, 0.14);
    --hub-35: rgba(107, 228, 255, 0.35);
}

/* the shared heading gradient follows the hub instead of always being emerald */
body[data-hub] .sec-title em,
body[data-hub] .display-hero em {
    background: linear-gradient(100deg, var(--hub), var(--hub-2));
    -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}

/* ==========================================================================
   HERO
   A hub hero is not a home hero: it is read by someone who has already
   chosen. It states what this page is, proves it can be trusted, and gets
   out of the way — so it is sized to its content, never a forced 100vh.
   ========================================================================== */
.hub-hero {
    position: relative; overflow: hidden;
    display: flex; align-items: center;
    min-height: clamp(500px, 74vh, 720px);
    padding: 140px 0 72px;
    text-align: center;
}
.hub-hero > .container { position: relative; z-index: 3; }

.hub-hero-bg { position: absolute; inset: 0; z-index: 0; background-size: cover; background-position: center 22%; background-repeat: no-repeat; }
.hub-hero-bg::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(to bottom, rgba(2,2,2,0.82) 0%, rgba(2,2,2,0.62) 34%, rgba(2,2,2,0.7) 68%, #020202 100%);
}
/* the campaign photo is served at the size the screen can actually use */
.hub-hero-bg--campaign { background-image: url("/IMAGES/hero-campaign-mobile.jpg"); background-position: top center; }
@media(min-width: 768px) {
    .hub-hero-bg--campaign { background-image: url("/IMAGES/hero-campaign.jpg"); background-position: center 20%; }
}
/* build has no campaign photo — it gets a quiet mesh instead, which reads
   more like a studio and less like a promo */
.hub-hero-mesh {
    position: absolute; inset: 0; z-index: 0;
    background:
        radial-gradient(60% 55% at 18% 12%, rgba(107,228,255,0.14), transparent 70%),
        radial-gradient(55% 50% at 84% 20%, rgba(157,139,255,0.12), transparent 70%),
        radial-gradient(70% 60% at 50% 100%, rgba(107,228,255,0.05), transparent 70%);
}
.hub-hero-grid {
    position: absolute; inset: 0; z-index: 1; opacity: 0.5;
    background-image: linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
    background-size: 64px 64px;
    -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 35%, #000 30%, transparent 100%);
            mask-image: radial-gradient(ellipse 70% 60% at 50% 35%, #000 30%, transparent 100%);
}

.hub-eyebrow {
    display: inline-flex; align-items: center; gap: 9px;
    padding: 8px 16px 8px 11px; margin-bottom: 22px;
    border-radius: 100px; border: 1px solid var(--hub-35);
    background: rgba(8,9,12,0.72); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
    font-size: 0.74rem; font-weight: 700; letter-spacing: 0.06em; color: #dcdce4;
}
.hub-eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--hub); box-shadow: 0 0 10px var(--hub); flex: none; }

.hub-hero h1 { font-size: clamp(2.5rem, 6.6vw, 4.5rem); line-height: 1.04; letter-spacing: -0.018em; font-weight: 800; }
.hub-lead { max-width: 620px; margin: 18px auto 0; font-size: clamp(1rem, 2.1vw, 1.2rem); color: #b4b4be; line-height: 1.6; }

.hub-cta-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 30px; }
.hub-btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 10px;
    padding: 16px 28px; border-radius: 100px;
    font-family: var(--font-body); font-size: 1rem; font-weight: 700; cursor: pointer;
    transition: transform 0.3s var(--curve-spring), box-shadow 0.3s, border-color 0.3s, background 0.3s;
    -webkit-tap-highlight-color: transparent;
}
.hub-btn--solid { background: linear-gradient(100deg, var(--hub), var(--hub-2)); color: var(--hub-ink); box-shadow: 0 18px 40px -20px var(--hub); }
.hub-btn--solid:hover { transform: translateY(-3px); box-shadow: 0 24px 52px -20px var(--hub); }
.hub-btn--ghost { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.16); color: #fff; }
.hub-btn--ghost:hover { transform: translateY(-3px); border-color: var(--hub-35); background: var(--hub-8); }
.hub-btn:active { transform: scale(0.97); }
.hub-btn i { transition: transform 0.25s; }
.hub-btn:hover i { transform: translateX(4px); }

/* ==========================================================================
   STAT STRIP — the numbers, stated once, directly under the promise
   ========================================================================== */
/* individual floating cards, same grammar as .spec below (bg/border/lift)
   instead of a hairline grid box — one visual language for every tile on
   the page, not a special case for stats */
.hub-stats {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px;
    max-width: 860px; margin: 40px auto 0;
}
.hub-stats div {
    position: relative; overflow: hidden;
    padding: 22px 12px; text-align: center;
    background: rgba(8,9,12,0.86); border: 1px solid rgba(255,255,255,0.09); border-radius: 18px;
}
.hub-stats b { display: block; font-family: var(--font-display); font-size: clamp(1.35rem, 3.6vw, 1.9rem); font-weight: 800; line-height: 1; letter-spacing: -0.02em; }
.hub-stats div[data-plus] b::after { content: '+'; color: var(--hub); }
.hub-stats span { display: block; margin-top: 8px; font-size: 0.72rem; color: var(--clr-muted); line-height: 1.35; }

/* ==========================================================================
   SECTION SHELL
   ========================================================================== */
.hub-sec { position: relative; padding: 96px 0; scroll-margin-top: 88px; }
.hub-sec--tight { padding: 72px 0; }
.hub-sec--line { border-top: 1px solid rgba(255,255,255,0.06); }
.hub-sec--raised { background: linear-gradient(180deg, rgba(255,255,255,0.018), transparent 60%); }

.hub-head { max-width: 680px; margin: 0 auto 44px; text-align: center; }
.hub-kicker {
    display: inline-block; margin-bottom: 14px;
    font-size: 0.7rem; font-weight: 800; letter-spacing: 0.2em; text-transform: uppercase; color: var(--hub);
}
.hub-head h2 { font-size: clamp(1.9rem, 5.2vw, 2.9rem); line-height: 1.08; letter-spacing: -0.015em; font-weight: 800; }
.hub-head h2 em {
    font-style: normal;
    background: linear-gradient(100deg, var(--hub), var(--hub-2));
    -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.hub-head p { margin-top: 14px; font-size: 1rem; color: var(--clr-muted); line-height: 1.6; }

/* ==========================================================================
   SPEC GRID — what you actually get, one claim per tile
   ========================================================================== */
.spec-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.spec {
    position: relative; overflow: hidden;
    padding: 26px 24px; border-radius: 20px;
    background: rgba(8,9,12,0.86); border: 1px solid rgba(255,255,255,0.09);
}
/* same corner glow the hero choice cards use on hover — one card language
   across the whole site instead of a one-off treatment per section */
.spec-glow { position: absolute; inset: -40% 30% 60% -20%; background: radial-gradient(circle, var(--hub-14), transparent 70%); opacity: 0; transition: opacity 0.4s; pointer-events: none; }
@media (hover: hover) { .spec:hover .spec-glow { opacity: 1; } }
.spec-ic {
    position: relative;
    display: flex; align-items: center; justify-content: center;
    width: 46px; height: 46px; margin-bottom: 16px;
    border-radius: 14px; background: var(--hub-14); color: var(--hub); font-size: 1.1rem;
}
.spec h3 { position: relative; font-size: 1.08rem; font-weight: 700; letter-spacing: -0.01em; margin-bottom: 7px; }
.spec p { position: relative; font-size: 0.88rem; color: var(--clr-muted); line-height: 1.55; }

/* ==========================================================================
   PLATFORM RAIL — what we grow, and where it goes
   ========================================================================== */
.plat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.plat {
    display: flex; flex-direction: column; gap: 12px;
    padding: 24px 22px; border-radius: 20px;
    background: rgba(8,9,12,0.86); border: 1px solid rgba(255,255,255,0.09);
    color: #fff;
    transition: transform 0.35s var(--curve-spring), border-color 0.3s, background 0.3s;
}
.plat:hover { transform: translateY(-5px); border-color: var(--hub-35); background: rgba(12,14,18,0.94); }
.plat:active { transform: scale(0.98); }
.plat-top { display: flex; align-items: center; gap: 12px; }
.plat-top img { width: 34px; height: 34px; object-fit: contain; flex: none; }
.plat-top b { font-family: var(--font-display); font-size: 1.12rem; font-weight: 700; }
.plat p { font-size: 0.85rem; color: var(--clr-muted); line-height: 1.5; flex: 1; }
.plat-foot { display: flex; align-items: baseline; justify-content: space-between; gap: 10px; padding-top: 13px; border-top: 1px dashed rgba(255,255,255,0.12); }
.plat-from { font-size: 0.74rem; color: var(--clr-muted); }
.plat-from b { display: block; margin-top: 2px; font-family: var(--font-display); font-size: 1rem; color: #fff; font-weight: 700; }
.plat-go { font-size: 0.8rem; font-weight: 700; color: var(--hub); white-space: nowrap; }
.plat-go i { transition: transform 0.25s; margin-left: 5px; }
.plat:hover .plat-go i { transform: translateX(4px); }

/* ==========================================================================
   COMPARISON — the objection nobody says out loud, answered in a table
   ========================================================================== */
.cmp { max-width: 820px; margin: 0 auto; border: 1px solid rgba(255,255,255,0.1); border-radius: 22px; overflow: hidden; }
.cmp-row { display: grid; grid-template-columns: 1.35fr 1fr 1fr; align-items: stretch; }
.cmp-row + .cmp-row { border-top: 1px solid rgba(255,255,255,0.07); }
.cmp-row > * { padding: 16px 18px; display: flex; align-items: center; gap: 9px; font-size: 0.87rem; line-height: 1.4; }
.cmp-head { background: rgba(255,255,255,0.03); }
.cmp-head > * { font-size: 0.72rem; font-weight: 800; letter-spacing: 0.13em; text-transform: uppercase; color: var(--clr-muted); }
.cmp-head .cmp-us { color: var(--hub); }
.cmp-what { color: #d6d6de; font-weight: 600; }
.cmp-us { background: var(--hub-8); color: #fff; font-weight: 600; }
.cmp-them { color: #7d7d87; }
.cmp-us i { color: var(--hub); flex: none; font-size: 0.82rem; }
.cmp-them i { color: #55555e; flex: none; font-size: 0.82rem; }

/* ==========================================================================
   PROCESS — numbered, with the line that makes it read as a sequence
   ========================================================================== */
.flow { max-width: 760px; margin: 0 auto; display: grid; gap: 0; }
.flow-step { position: relative; display: grid; grid-template-columns: 56px 1fr; gap: 20px; padding-bottom: 34px; }
.flow-step:last-child { padding-bottom: 0; }
.flow-step::before {
    content: ''; position: absolute; left: 27px; top: 52px; bottom: 6px; width: 2px;
    background: linear-gradient(to bottom, var(--hub-35), rgba(255,255,255,0.05));
}
.flow-step:last-child::before { display: none; }
.flow-n {
    position: relative; z-index: 2;
    display: flex; align-items: center; justify-content: center;
    width: 56px; height: 56px; border-radius: 18px;
    background: rgba(8,9,12,0.95); border: 1px solid var(--hub-35);
    font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; color: var(--hub);
}
.flow-body { padding-top: 8px; }
.flow-body h3 { font-size: 1.12rem; font-weight: 700; letter-spacing: -0.01em; margin-bottom: 6px; }
.flow-body p { font-size: 0.9rem; color: var(--clr-muted); line-height: 1.58; }

/* desktop gets the room to read this as a sequence at a glance instead of a
   scroll -- a horizontal stepper with the numbered nodes threaded on one
   line. The connector is drawn per-step (edge of one node to the center of
   the next) rather than as one line sized to a fixed step count, so this
   works unchanged whether a page has 4 steps or 5. */
@media(min-width: 860px) {
    .flow { max-width: 1040px; display: flex; align-items: flex-start; gap: 0; }
    .flow-step { grid-template-columns: none; flex: 1; display: flex; flex-direction: column; align-items: center; text-align: center; gap: 16px; padding-bottom: 0; padding: 0 14px; }
    .flow-step::before { display: none; }
    .flow-step:not(:last-child)::after {
        content: ''; position: absolute; z-index: 1;
        top: 27px; left: calc(50% + 28px); width: calc(100% - 56px); height: 2px;
        background: linear-gradient(90deg, var(--hub-35), rgba(255,255,255,0.05));
    }
    .flow-n { margin: 0; }
    .flow-body { padding-top: 0; }
}

/* ==========================================================================
   FAQ — <details>, so it works with no JavaScript at all
   ========================================================================== */
.faq { max-width: 760px; margin: 0 auto; display: grid; gap: 10px; }
.faq-item {
    border: 1px solid rgba(255,255,255,0.09); border-radius: 16px;
    background: rgba(8,9,12,0.82); overflow: hidden;
    transition: border-color 0.3s, background 0.3s;
}
.faq-item[open] { border-color: var(--hub-35); background: rgba(12,14,18,0.92); }
.faq-item summary {
    display: flex; align-items: center; justify-content: space-between; gap: 16px;
    padding: 19px 22px; cursor: pointer; list-style: none;
    font-size: 0.98rem; font-weight: 700; color: #fff;
    -webkit-tap-highlight-color: transparent;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: '\f078'; font-family: 'Font Awesome 6 Free'; font-weight: 900;
    font-size: 0.76rem; color: var(--hub); flex: none; transition: transform 0.3s;
}
.faq-item[open] summary::after { transform: rotate(180deg); }
.faq-item summary:hover { color: var(--hub); }
.faq-a { padding: 0 22px 20px; font-size: 0.9rem; color: var(--clr-muted); line-height: 1.65; }
.faq-a a { color: var(--hub); text-decoration: underline; text-underline-offset: 3px; }

/* ==========================================================================
   CLOSING BAND
   ========================================================================== */
.hub-close { position: relative; overflow: hidden; padding: 84px 0 92px; text-align: center; border-top: 1px solid rgba(255,255,255,0.06); }
.hub-close::before {
    content: ''; position: absolute; inset: 0; z-index: 0;
    background: radial-gradient(60% 100% at 50% 100%, var(--hub-8), transparent 72%);
}
.hub-close > .container { position: relative; z-index: 2; }
.hub-close h2 { font-size: clamp(1.8rem, 5vw, 2.7rem); line-height: 1.1; letter-spacing: -0.015em; font-weight: 800; }
.hub-close h2 em {
    font-style: normal;
    background: linear-gradient(100deg, var(--hub), var(--hub-2));
    -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.hub-close p { max-width: 520px; margin: 15px auto 0; color: var(--clr-muted); font-size: 0.98rem; line-height: 1.6; }
.hub-close .hub-cta-row { margin-top: 28px; }
.hub-close-note { margin-top: 20px; font-size: 0.8rem; color: #6a6a73; }

/* ==========================================================================
   OFFER CARDS — the build hub's packages
   ========================================================================== */
.offer-grid { display: grid; gap: 16px; max-width: 940px; margin: 0 auto; }
.offer-card {
    position: relative; overflow: hidden;
    display: flex; flex-direction: column; gap: 18px;
    padding: 32px; border-radius: 24px;
    background: rgba(8,9,12,0.88); border: 1px solid rgba(255,255,255,0.1);
    scroll-margin-top: 96px;
    transition: transform 0.35s var(--curve-spring), border-color 0.3s;
}
.offer-card:hover { transform: translateY(-4px); border-color: var(--hub-35); }
.offer-card.is-hero {
    border-color: var(--hub);
    background-image: linear-gradient(150deg, var(--hub-8), transparent 55%);
    box-shadow: 0 0 0 1px var(--hub), 0 30px 60px -34px var(--hub);
}
.oc-flag {
    position: absolute; top: 0; right: 0; z-index: 2;
    padding: 7px 16px; border-bottom-left-radius: 15px;
    background: linear-gradient(100deg, var(--hub), var(--hub-2)); color: var(--hub-ink);
    font-size: 0.62rem; font-weight: 900; letter-spacing: 0.1em; text-transform: uppercase;
}
/* the badge sits in the corner the price wants — give the content room below it */
.offer-card.has-flag { padding-top: 48px; }
.oc-head { display: flex; align-items: flex-start; gap: 16px; flex-wrap: wrap; }
.oc-ic {
    flex: none; width: 50px; height: 50px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 15px; background: var(--hub-14); color: var(--hub); font-size: 1.2rem;
}
.oc-title { flex: 1; min-width: 190px; }
.oc-title h3 { font-size: 1.45rem; font-weight: 700; letter-spacing: -0.015em; }
.oc-title p { font-size: 0.92rem; color: var(--clr-muted); margin-top: 6px; line-height: 1.55; }
.oc-price { flex: none; text-align: right; }
.oc-price b {
    display: block; font-family: var(--font-display); font-size: 1.9rem; font-weight: 700; letter-spacing: -0.03em;
    background: linear-gradient(100deg, var(--hub), var(--hub-2));
    -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.oc-price small { display: block; font-size: 0.74rem; color: var(--clr-muted); margin-top: 3px; }

.oc-feats { list-style: none; display: grid; gap: 11px; padding-top: 4px; border-top: 1px solid rgba(255,255,255,0.08); margin-top: 2px; }
.oc-feats li { display: flex; align-items: flex-start; gap: 11px; font-size: 0.9rem; color: #c8c8d0; line-height: 1.5; }
.oc-feats li:first-child { padding-top: 16px; }
.oc-feats i { color: var(--hub); font-size: 0.82rem; margin-top: 4px; flex: none; }

.oc-cta {
    display: inline-flex; align-items: center; justify-content: center; gap: 10px;
    padding: 16px 24px; border-radius: 14px;
    background: linear-gradient(100deg, var(--hub), var(--hub-2)); color: var(--hub-ink);
    font-weight: 700; font-size: 0.98rem;
    transition: transform 0.28s var(--curve-spring), box-shadow 0.28s;
    box-shadow: 0 16px 34px -20px var(--hub);
}
.oc-cta:hover { transform: translateY(-2px); box-shadow: 0 22px 44px -20px var(--hub); }
.oc-cta:active { transform: scale(0.98); }
.oc-cta--quiet { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.16); color: #fff; box-shadow: none; }
.oc-cta--quiet:hover { border-color: var(--hub-35); background: var(--hub-8); box-shadow: none; }

.offer-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* One toggle repricing every card on /tools/ at once — Uganda (UGX) or
   South Sudan (USD), the only two regions these products are priced for. */
.region-toggle {
    display: inline-flex; gap: 6px; padding: 5px;
    border-radius: 999px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.12);
}
.region-toggle-btn {
    padding: 9px 18px; border-radius: 999px;
    font-size: 0.86rem; font-weight: 700; color: #c8c8d0;
    transition: background 0.2s, color 0.2s;
}
.region-toggle-btn.is-on { background: linear-gradient(100deg, var(--hub), var(--hub-2)); color: var(--hub-ink); }

/* ==========================================================================
   TOOL CARDS — CapCut Pro / Canva Pro term picker
   An offer-card with a duration chosen instead of quoted once. The chip row
   picks the term; oc-price rolls to match — same animate-the-value rule as
   every other price on the site.
   ========================================================================== */
.tool-durs {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px;
    padding-top: 2px;
}
.tool-dur {
    padding: 10px 6px; border-radius: 12px;
    background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.14);
    color: #c8c8d0; font-size: 0.84rem; font-weight: 700; text-align: center;
    transition: border-color 0.2s, background 0.2s, color 0.2s, transform 0.16s var(--curve-spring);
}
.tool-dur:hover { border-color: var(--hub-35); }
.tool-dur:active { transform: scale(0.95); }
.tool-dur.is-on {
    background: linear-gradient(100deg, var(--hub), var(--hub-2));
    border-color: transparent; color: var(--hub-ink);
}
.oc-per { display: block; margin-top: 3px; font-size: 0.68rem; color: var(--clr-muted); }

/* each card carries its own real brand colour (--tc-brand/--tc-brand-bg,
   set inline per card from the same accent every product's own order page
   uses) — the logo badge, the selected term chip and the price all pick it
   up, so eleven cards read as eleven distinct products instead of one grid
   painted a single house colour */
.tc-ic { background: var(--tc-brand-bg, var(--hub-14)); color: var(--tc-brand, var(--hub)); }
.tc-ic img { width: 24px; height: 24px; object-fit: contain; display: block; }
.tool-card .tool-dur.is-on {
    background: var(--tc-brand, var(--hub)); border-color: transparent;
    color: #04070a; text-shadow: 0 1px 1px rgba(255,255,255,0.15);
}

.tc-price-block { padding-top: 2px; }
.tc-price-row { display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap; }
.tc-was { font-size: 0.98rem; font-weight: 600; color: #6a6a74; text-decoration: line-through; text-decoration-thickness: 1.5px; }
.tc-price {
    font-family: var(--font-display); font-size: 1.9rem; font-weight: 700; letter-spacing: -0.03em;
    background: linear-gradient(100deg, var(--tc-brand, var(--hub)), var(--hub-2));
    -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.tc-save {
    display: inline-flex; align-items: center; gap: 6px; margin-top: 7px;
    padding: 4px 11px; border-radius: 100px;
    font-size: 0.72rem; font-weight: 800; letter-spacing: -0.01em;
    background: rgba(0,255,178,0.14); color: #4fe6a8;
}
.tc-save i { font-size: 0.68rem; }
.tc-save b { font-weight: 800; color: inherit; }

@media (prefers-reduced-motion: reduce) {
    .tool-dur { transition: none !important; }
    .tool-dur:active { transform: none !important; }
}

/* ==========================================================================
   BUILDER FRAME — the configurator gets a stage on the growth hub
   ========================================================================== */
.builder-wrap { position: relative; max-width: 620px; margin: 0 auto; }
.builder-wrap::before {
    content: ''; position: absolute; inset: -18% -12% -8%; z-index: 0;
    background: radial-gradient(55% 50% at 50% 40%, var(--hub-8), transparent 72%);
    pointer-events: none;
}
.builder-wrap > * { position: relative; z-index: 1; }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media(max-width: 900px) {
    .spec-grid { grid-template-columns: repeat(2, 1fr); }
    .plat-grid { grid-template-columns: repeat(2, 1fr); }
}
@media(max-width: 720px) {
    .hub-hero { min-height: auto; padding: 122px 0 60px; }
    .hub-sec { padding: 72px 0; }
    .hub-sec--tight { padding: 56px 0; }
    .hub-head { margin-bottom: 32px; }
    .hub-stats { grid-template-columns: repeat(2, 1fr); margin-top: 32px; }
    .hub-cta-row { flex-direction: column; }
    .hub-btn { width: 100%; }
    .offer-pair { grid-template-columns: 1fr; }
    .offer-card { padding: 24px; }
    .offer-card.has-flag { padding-top: 46px; }
    /* icon and price share the top line, the title spans underneath — one
       row saved on the screen where rows are scarcest */
    .oc-head {
        display: grid; gap: 14px 12px; align-items: center;
        grid-template-columns: auto 1fr;
        grid-template-areas: "ic price" "title title";
    }
    .oc-ic { grid-area: ic; }
    .oc-price { grid-area: price; text-align: right; }
    .oc-title { grid-area: title; min-width: 0; }
    .oc-price b { font-size: 1.7rem; }
    .cmp-row { grid-template-columns: 1fr; }
    .cmp-row > * { padding: 11px 16px; }
    .cmp-head { display: none; }
    .cmp-what { background: rgba(255,255,255,0.03); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--clr-muted); }
    .cmp-us::before { content: '97 World'; font-size: 0.66rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; color: var(--hub); margin-right: 2px; }
    .cmp-them::before { content: 'Others'; font-size: 0.66rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; color: #55555e; margin-right: 2px; }
    .flow-step { grid-template-columns: 46px 1fr; gap: 16px; padding-bottom: 28px; }
    .flow-n { width: 46px; height: 46px; border-radius: 15px; font-size: 0.98rem; }
    .flow-step::before { left: 22px; top: 42px; }
}
@media(max-width: 560px) {
    .spec-grid, .plat-grid { grid-template-columns: repeat(2, 1fr); gap: 9px; }
    .spec { padding: 16px 14px; }
    .spec-ic { width: 32px; height: 32px; margin-bottom: 10px; border-radius: 9px; font-size: 0.82rem; }
    .spec h3 { font-size: 0.88rem; line-height: 1.3; margin-bottom: 5px; }
    .spec p { font-size: 0.78rem; line-height: 1.5; }
    .plat { padding: 15px 13px; gap: 9px; }
    .plat-top img { width: 26px; height: 26px; }
    .plat-top b { font-size: 0.96rem; }
    .plat p { font-size: 0.78rem; line-height: 1.45; }
    .plat-foot { padding-top: 10px; }
    .plat-from { font-size: 0.66rem; }
    .plat-from b { font-size: 0.86rem; }
    .plat-go { font-size: 0.72rem; }
}
@media(max-width: 340px) {
    .spec-grid, .plat-grid { grid-template-columns: 1fr; }
}

@media(prefers-reduced-motion: reduce) {
    .spec, .plat, .offer-card, .hub-btn, .oc-cta { transition: none !important; }
    .spec:hover, .plat:hover, .offer-card:hover, .hub-btn:hover, .oc-cta:hover { transform: none !important; }
}

/* ==========================================================================
   DOCUMENT PAGES — trust, terms, privacy, 404
   Long-form reading on a dark background needs more line-height and a
   narrower measure than the marketing sections above, so it gets its own
   scale rather than inheriting theirs.
   ========================================================================== */
.doc-hero {
    position: relative; overflow: hidden;
    padding: 148px 0 56px; text-align: center;
}
.doc-hero::before {
    content: ''; position: absolute; inset: 0; z-index: 0;
    background: radial-gradient(70% 100% at 50% 0%, var(--hub-8), transparent 70%);
}
.doc-hero > .container { position: relative; z-index: 2; }
.doc-hero h1 { font-size: clamp(2.1rem, 5.8vw, 3.4rem); line-height: 1.06; letter-spacing: -0.015em; font-weight: 800; }
.doc-hero h1 em {
    font-style: normal;
    background: linear-gradient(100deg, var(--hub), var(--hub-2));
    -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.doc-hero p { max-width: 560px; margin: 16px auto 0; color: var(--clr-muted); font-size: 1rem; line-height: 1.62; }
.doc-meta {
    display: inline-block; margin-top: 22px; padding: 7px 15px;
    border-radius: 100px; border: 1px solid rgba(255,255,255,0.1); background: rgba(255,255,255,0.03);
    font-size: 0.74rem; color: var(--clr-muted);
}

.doc { max-width: 720px; margin: 0 auto; padding-bottom: 90px; }
.doc section { scroll-margin-top: 92px; }
.doc section + section { margin-top: 40px; padding-top: 40px; border-top: 1px solid rgba(255,255,255,0.07); }
.doc h2 {
    display: flex; align-items: baseline; gap: 12px;
    font-size: 1.3rem; font-weight: 700; letter-spacing: -0.015em; margin-bottom: 16px;
}
.doc h2 .n { flex: none; font-family: var(--font-display); font-size: 0.9rem; color: var(--hub); }
.doc h3 { font-size: 1rem; font-weight: 700; margin: 22px 0 8px; color: #e8e8ee; }
.doc p { color: #a8a8b2; font-size: 0.95rem; line-height: 1.72; }
.doc p + p { margin-top: 13px; }
.doc ul { list-style: none; display: grid; gap: 10px; margin: 14px 0; }
.doc ul li { position: relative; padding-left: 24px; color: #a8a8b2; font-size: 0.95rem; line-height: 1.66; }
.doc ul li::before {
    content: ''; position: absolute; left: 6px; top: 11px;
    width: 6px; height: 6px; border-radius: 50%; background: var(--hub);
}
.doc a { color: var(--hub); text-decoration: underline; text-underline-offset: 3px; }
.doc b, .doc strong { color: #e8e8ee; font-weight: 700; }

/* the one thing on a legal page anybody actually needs to find fast */
.doc-callout {
    display: flex; gap: 14px; align-items: flex-start;
    margin: 22px 0; padding: 20px 22px; border-radius: 18px;
    background: var(--hub-8); border: 1px solid var(--hub-35);
}
.doc-callout i { color: var(--hub); font-size: 1.05rem; margin-top: 2px; flex: none; }
.doc-callout p { color: #d8d8e0; font-size: 0.92rem; }
.doc-callout b { display: block; margin-bottom: 4px; color: #fff; font-size: 0.96rem; }

.doc-toc {
    max-width: 720px; margin: 0 auto 44px; padding: 22px 24px;
    border-radius: 20px; background: rgba(8,9,12,0.86); border: 1px solid rgba(255,255,255,0.09);
}
.doc-toc h2 { font-size: 0.7rem; font-weight: 800; letter-spacing: 0.18em; text-transform: uppercase; color: var(--clr-muted); margin-bottom: 14px; }
.doc-toc ol { list-style: none; counter-reset: toc; display: grid; gap: 9px; }
.doc-toc li { counter-increment: toc; }
.doc-toc a { display: flex; gap: 11px; font-size: 0.9rem; color: #b4b4be; transition: color 0.25s, transform 0.25s; }
.doc-toc a::before { content: counter(toc, decimal-leading-zero); flex: none; font-family: var(--font-display); font-size: 0.78rem; color: var(--hub); }
.doc-toc a:hover { color: #fff; transform: translateX(3px); }

/* ==========================================================================
   PROOF — client screenshots, honestly
   An empty state, not a rail of images — shown until there are real order
   screenshots to put here. Never a stand-in image wearing a caption that
   claims it's something it isn't.
   ========================================================================== */
.proof-empty {
    display: flex; flex-direction: column; align-items: center; gap: 12px;
    max-width: 440px; margin: 0 auto; padding: 36px 26px; border-radius: 20px;
    text-align: center; border: 1.5px dashed rgba(255,255,255,0.14); background: rgba(255,255,255,0.02);
}
.proof-empty-ic {
    width: 50px; height: 50px; border-radius: 14px;
    display: grid; place-items: center;
    background: var(--hub-14); color: var(--hub); font-size: 1.3rem;
}
.proof-empty p { font-size: 0.95rem; color: var(--clr-muted); line-height: 1.6; }

/* ==========================================================================
   CHECKLIST — how to vet any seller, us included
   ========================================================================== */
.check-list { max-width: 720px; margin: 0 auto; display: grid; gap: 12px; }
.check {
    display: grid; grid-template-columns: 42px 1fr; gap: 16px; align-items: start;
    padding: 20px 22px; border-radius: 18px;
    background: rgba(8,9,12,0.84); border: 1px solid rgba(255,255,255,0.09);
}
.check-ic {
    display: flex; align-items: center; justify-content: center;
    width: 42px; height: 42px; border-radius: 13px;
    background: var(--hub-14); color: var(--hub); font-size: 0.98rem;
}
.check h3 { font-size: 1rem; font-weight: 700; margin-bottom: 6px; }
.check p { font-size: 0.89rem; color: var(--clr-muted); line-height: 1.58; }
.check p b { color: #d8d8e0; }

/* ==========================================================================
   404
   ========================================================================== */
.err-wrap { min-height: 78vh; display: flex; align-items: center; justify-content: center; text-align: center; padding: 130px 0 80px; }
.err-code {
    font-family: var(--font-display); font-size: clamp(5rem, 20vw, 10rem); font-weight: 700;
    line-height: 0.9; letter-spacing: -0.05em;
    background: linear-gradient(100deg, var(--hub), var(--hub-2));
    -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.err-wrap h1 { font-size: clamp(1.6rem, 5vw, 2.4rem); letter-spacing: -0.025em; margin-top: 18px; }
.err-wrap > .container > p { max-width: 460px; margin: 14px auto 0; color: var(--clr-muted); line-height: 1.6; }

@media(max-width: 720px) {
    .doc-hero { padding: 122px 0 44px; }
    .doc section + section { margin-top: 32px; padding-top: 32px; }
    .doc h2 { font-size: 1.16rem; }
    .check { grid-template-columns: 36px 1fr; gap: 13px; padding: 18px; }
    .check-ic { width: 36px; height: 36px; border-radius: 11px; font-size: 0.88rem; }
}

/* ==========================================================================
   DENSITY PASS
   The page was built desktop-comfortable and then shrunk. These bring the
   vertical rhythm in so more of the offer is reachable per screen — the
   difference between one scroll and three on the phones people actually use.
   ========================================================================== */
@media(max-width: 720px) {
    .hub-hero { min-height: auto; padding: 104px 0 44px; }
    .hub-hero h1 { font-size: clamp(2rem, 8.4vw, 2.7rem); }
    .hub-lead { font-size: 0.95rem; margin-top: 14px; }
    .hub-eyebrow { margin-bottom: 16px; padding: 6px 13px 6px 9px; font-size: 0.68rem; }
    .hub-cta-row { margin-top: 22px; gap: 9px; }
    .hub-btn { padding: 14px 22px; font-size: 0.94rem; }

    .hub-sec { padding: 52px 0; }
    .hub-sec--tight { padding: 40px 0; }
    .hub-head { margin-bottom: 26px; }
    .hub-head h2 { font-size: clamp(1.65rem, 6.6vw, 2.1rem); }
    .hub-head p { font-size: 0.92rem; margin-top: 11px; }
    .hub-kicker { margin-bottom: 10px; font-size: 0.65rem; }

    .hub-stats { margin-top: 26px; gap: 8px; }
    .hub-stats div { padding: 15px 10px; border-radius: 15px; }
    .hub-stats span { font-size: 0.66rem; margin-top: 5px; }

    .pick-grid { gap: 7px; }
    .deal-list { gap: 17px; margin-top: 22px; }
    .deal { padding: 17px; gap: 13px; border-radius: 16px; }
    .deal-head b { font-size: 1.18rem; }
    .deal-head small { font-size: 0.8rem; }
    .deal-money b { font-size: 1.16rem; }

    .spec { padding: 20px 18px; border-radius: 16px; }
    .spec-ic { width: 38px; height: 38px; margin-bottom: 12px; border-radius: 11px; font-size: 0.94rem; }
    .spec h3 { font-size: 1rem; }
    .spec p { font-size: 0.85rem; }

    .plat { padding: 18px 17px; gap: 10px; border-radius: 16px; }
    .flow-step { padding-bottom: 22px; }
    .flow-body h3 { font-size: 1.02rem; }
    .flow-body p { font-size: 0.86rem; }

    .faq-item summary { padding: 15px 17px; font-size: 0.92rem; }
    .faq-a { padding: 0 17px 16px; font-size: 0.86rem; }

    .hub-close { padding: 54px 0 60px; }
    .hub-close h2 { font-size: clamp(1.6rem, 6.4vw, 2rem); }
    .hub-close p { font-size: 0.92rem; margin-top: 12px; }

    .offer-card { padding: 20px; border-radius: 18px; }
    .oc-title h3 { font-size: 1.24rem; }
    .oc-feats li { font-size: 0.86rem; }
}

/* ==========================================================================
   TRUST STRIP — under the nav, on arrival
   Every competitor worth studying puts its trust facts where a first-time
   visitor sees them in the first second, not three scrolls down. Nothing
   here is new information — it's the same four facts already stated in the
   body copy, resurfaced where they can do their job.
   ========================================================================== */
.trust-strip {
    position: relative; z-index: 40;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    background: rgba(5,5,8,0.75);
    backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
}
.trust-strip .container { padding: 9px 24px; }
.trust-strip ul {
    display: flex; align-items: center; justify-content: center;
    flex-wrap: wrap; gap: 8px 22px;
    list-style: none;
}
.trust-strip li {
    display: inline-flex; align-items: center; gap: 7px;
    font-size: 0.74rem; font-weight: 600; color: #b4b4be;
    white-space: nowrap;
}
.trust-strip li i { color: var(--hub); font-size: 0.72rem; flex: none; }

@media(max-width: 640px) {
    .trust-strip .container { padding: 8px 0 8px 16px; }
    .trust-strip ul { justify-content: flex-start; flex-wrap: nowrap; overflow-x: auto; padding-right: 16px; -webkit-overflow-scrolling: touch; }
    .trust-strip ul::-webkit-scrollbar { display: none; }
    .trust-strip li { font-size: 0.7rem; }
}

/* ==========================================================================
   WHATSAPP FAB — one tap, follows you down the page
   Every competitor reviewed has some version of a persistent contact point;
   this is the honest version — a direct wa.me link, not a chat-widget
   simulation and not a fake "agent online" indicator. Hidden until the hero
   has scrolled past, so it never competes with the hero's own WhatsApp CTA.
   ========================================================================== */
.wa-fab {
    position: fixed; right: 18px; bottom: 18px; z-index: 500;
    display: flex; align-items: center; justify-content: center;
    width: 54px; height: 54px; border-radius: 50%;
    background: #25D366; color: #04120d; font-size: 1.35rem;
    box-shadow: 0 10px 28px -8px rgba(37,211,102,0.65), 0 2px 8px rgba(0,0,0,0.3);
    opacity: 0; transform: translateY(14px) scale(0.9); pointer-events: none;
    transition: opacity 0.3s var(--curve-smooth), transform 0.3s var(--curve-spring);
}
.wa-fab.is-visible { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
.wa-fab:hover { transform: translateY(-3px) scale(1.05); }
.wa-fab:active { transform: scale(0.94); }

/* order pages already carry a bottom dock (.ord-dock / .wiz-btn bar) fixed to
   the safe-area bottom — the fab sits above it instead of overlapping it */
body.order-page .wa-fab { bottom: calc(var(--dock-h, 92px) + env(safe-area-inset-bottom, 0px) + 16px); }

@media(prefers-reduced-motion: reduce) {
    .wa-fab { transition: opacity 0.2s linear; transform: none !important; }
    .wa-fab.is-visible { transform: none !important; }
}

/* ==========================================================================
   MOTION — hover and press life on the dark pages
   Shared primitives live in assets/motion.css; these bind them to the
   components this stylesheet owns, so the markup does not have to carry
   utility classes on every card.
   ========================================================================== */

/* Cards lift toward the pointer. Touch devices skip this entirely — a hover
   state that sticks after a tap reads as a selection that never happened. */
@media (hover: hover) {
    .offer-card, .spec, .flow-step, .pop-card, .check, .hub-stats div {
        transition: transform var(--m-base, 260ms) var(--m-out, cubic-bezier(0.16,1,0.3,1)),
                    border-color var(--m-base, 260ms) ease,
                    box-shadow var(--m-base, 260ms) ease,
                    background var(--m-base, 260ms) ease;
    }
    .offer-card:hover, .spec:hover, .flow-step:hover, .check:hover, .hub-stats div:hover {
        transform: translateY(-3px);
        border-color: var(--hub-35);
    }
    .hub-stats div:hover { background: rgba(12,14,18,0.92); }
    /* the nav underline grows from the left rather than fading in */
    .nav-item { position: relative; }
    .nav-item::after {
        content: ''; position: absolute; left: 0; right: 0; bottom: -5px; height: 1.5px;
        background: var(--hub, #00FFB2); border-radius: 2px;
        transform: scaleX(0); transform-origin: left;
        transition: transform var(--m-base, 260ms) var(--m-out, cubic-bezier(0.16,1,0.3,1));
    }
    .nav-item:hover::after { transform: scaleX(1); }
}

/* Everything tappable acknowledges the tap immediately. */
.hub-btn:active, .oc-cta:active, .mm-link:active, .faq-item summary:active { transform: scale(0.98); }
.oc-cta, .mm-link { transition: transform var(--m-quick, 160ms) var(--m-out, cubic-bezier(0.16,1,0.3,1)), background var(--m-base, 260ms) ease, border-color var(--m-base, 260ms) ease; }

/* FAQ rows open with the chevron, not after it. */
.faq-item summary i, .faq-item summary::after { transition: transform var(--m-base, 260ms) var(--m-out, cubic-bezier(0.16,1,0.3,1)); }
.faq-item[open] summary i { transform: rotate(180deg); }
.faq-item[open] .faq-a { animation: hubFaq var(--m-base, 260ms) var(--m-out, cubic-bezier(0.16,1,0.3,1)); }
@keyframes hubFaq { from { opacity: 0; transform: translate3d(0, -6px, 0); } }

/* The trust strip's items tick in left to right on first paint. */
.trust-strip li { animation: hubTrust var(--m-slow, 380ms) var(--m-out, cubic-bezier(0.16,1,0.3,1)) backwards; }
.trust-strip li:nth-child(1) { animation-delay: 60ms; }
.trust-strip li:nth-child(2) { animation-delay: 130ms; }
.trust-strip li:nth-child(3) { animation-delay: 200ms; }
.trust-strip li:nth-child(4) { animation-delay: 270ms; }
@keyframes hubTrust { from { opacity: 0; transform: translate3d(-8px, 0, 0); } }

@media(prefers-reduced-motion: reduce) {
    .offer-card, .spec, .flow-step, .check, .nav-item::after,
    .hub-btn, .oc-cta, .mm-link { transition: none !important; transform: none !important; }
    .faq-item[open] .faq-a, .trust-strip li { animation: none !important; }
}
