/* ============================================================
   Domcreator — apps.css v4
   Dark navy, showcase cards, per-app accent colours
   Also covers shared legal pages (privacy / terms)
   ============================================================ */

/* ── Variables ──────────────────────────────────────────── */
:root {
    --bg:     #06081a;
    --bg2:    #0b0e24;
    --bg3:    #0f1230;
    --blue:   #4e8fff;
    --t1:     #e8eeff;
    --t2:     #6b82b0;
    --t3:     #38456e;
    --border: rgba(255, 255, 255, 0.075);
}

/* ── Reset ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }

/* ── Body ───────────────────────────────────────────────── */
body {
    min-height: 100vh;
    font-family: "Sora", "Segoe UI", sans-serif;
    color: var(--t1);
    -webkit-font-smoothing: antialiased;
    background:
        radial-gradient(900px 600px at  8% -6%, rgba(78,  143, 255, 0.08), transparent 55%),
        radial-gradient(700px 500px at 92%  20%, rgba(90,   60, 210, 0.06), transparent 55%),
        linear-gradient(160deg, #07091e 0%, #06081a 100%);
}

/* ── Page shell ─────────────────────────────────────────── */
.page-shell {
    width: min(1160px, 92vw);
    margin: 0 auto;
    padding: 36px 0 56px;
}

/* ── Topbar ─────────────────────────────────────────────── */
.topbar {
    position: sticky;
    top: 0;
    z-index: 100;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    height: 68px;
    padding: 0 max(24px, calc((100vw - 1160px) / 2 + 28px));
    background: rgba(6, 8, 26, 0.86);
    backdrop-filter: blur(24px) saturate(1.5);
    -webkit-backdrop-filter: blur(24px) saturate(1.5);
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.03), 0 8px 32px rgba(0, 0, 0, 0.32);
}

.topbar::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(78, 143, 255, 0.35), rgba(167, 139, 250, 0.25), transparent);
    pointer-events: none;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--t1);
    text-decoration: none;
    font-family: "Outfit", "Trebuchet MS", sans-serif;
    font-weight: 800;
    font-size: 20px;
    letter-spacing: -0.01em;
    flex-shrink: 0;
}

.brand-logo {
    width: auto;
    height: 40px;
    max-width: 200px;
    display: block;
    object-fit: contain;
    background: #ffffff;
    padding: 5px 12px;
    border-radius: 10px;
    box-shadow: 0 2px 14px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.12);
    transition: box-shadow 0.2s;
}

.brand:hover .brand-logo {
    box-shadow: 0 4px 20px rgba(78, 143, 255, 0.25), 0 0 0 1px rgba(78, 143, 255, 0.2);
}

.nav {
    display: flex;
    align-items: center;
    gap: 2px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 5px;
}

.nav a {
    text-decoration: none;
    color: var(--t2);
    border-radius: 9px;
    padding: 7px 16px;
    font-size: 13px;
    font-weight: 600;
    transition: color 0.18s, background 0.18s;
    white-space: nowrap;
}

.nav a:hover {
    color: var(--t1);
    background: rgba(255, 255, 255, 0.08);
}

.nav a.is-active {
    color: #fff;
    background: linear-gradient(135deg, rgba(78, 143, 255, 0.3), rgba(167, 139, 250, 0.2));
    box-shadow: inset 0 0 0 1px rgba(78, 143, 255, 0.22);
}

/* ── Main containers ────────────────────────────────────── */
.apps-main,
.legal-main {
    padding-top: 44px;
    animation: fade-up 0.65s ease both;
}

/* ── Apps hero ──────────────────────────────────────────── */
.apps-hero {
    max-width: 720px;
    margin-bottom: 20px;
}

.apps-eyebrow {
    display: inline-block;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 16px;
}

.apps-hero h1 {
    font-family: "Outfit", "Trebuchet MS", sans-serif;
    font-size: clamp(38px, 4.8vw, 68px);
    font-weight: 800;
    line-height: 1.04;
    letter-spacing: -0.03em;
    color: var(--t1);
    margin: 0 0 18px;
}

.apps-grad {
    background: linear-gradient(120deg, #4e8fff, #a78bfa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.apps-lead {
    font-size: 17px;
    line-height: 1.72;
    color: var(--t2);
    max-width: 62ch;
    margin: 0;
}

/* ── Apps meta bar ──────────────────────────────────────── */
.apps-meta-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.apps-meta-count {
    font-size: 13px;
    font-weight: 700;
    color: var(--t3);
}

.apps-meta-sep {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: var(--t3);
    flex-shrink: 0;
}

/* ── Showcase section ───────────────────────────────────── */
.apps-showcase {
    display: grid;
    gap: 16px;
}

/* ── Showcase card ──────────────────────────────────────── */
.showcase-card {
    position: relative;
    border: 1px solid var(--border);
    border-radius: 24px;
    background: var(--bg2);
    overflow: hidden;
    transition: border-color 0.28s;
}

.showcase-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: var(--accent, var(--blue));
    opacity: 0.9;
}

.showcase-card::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 220px;
    background: radial-gradient(ellipse 70% 120px at 50% 0%, var(--accent-glow, rgba(78, 143, 255, 0.06)), transparent 80%);
    pointer-events: none;
}

.showcase-card:hover {
    border-color: var(--accent-border, rgba(78, 143, 255, 0.26));
}

/* Per-app accent colours */
.sc-android {
    --accent:        #34d399;
    --accent-glow:   rgba(52, 211, 153, 0.07);
    --accent-border: rgba(52, 211, 153, 0.28);
    --accent-dim:    rgba(52, 211, 153, 0.1);
    --accent-text:   #34d399;
}

.sc-ios {
    --accent:        #4eb8ff;
    --accent-glow:   rgba(78, 184, 255, 0.07);
    --accent-border: rgba(78, 184, 255, 0.28);
    --accent-dim:    rgba(78, 184, 255, 0.1);
    --accent-text:   #4eb8ff;
}

.sc-softday {
    --accent:        #c084fc;
    --accent-glow:   rgba(192, 132, 252, 0.07);
    --accent-border: rgba(192, 132, 252, 0.28);
    --accent-dim:    rgba(192, 132, 252, 0.1);
    --accent-text:   #c084fc;
}

.sc-safeproof {
    --accent:        #38bdf8;
    --accent-glow:   rgba(56, 189, 248, 0.07);
    --accent-border: rgba(56, 189, 248, 0.28);
    --accent-dim:    rgba(56, 189, 248, 0.1);
    --accent-text:   #38bdf8;
}

.sc-theorytest {
    --accent:        #34d399;
    --accent-glow:   rgba(45, 106, 31, 0.07);
    --accent-border: rgba(45, 106, 31, 0.28);
    --accent-dim:    rgba(45, 106, 31, 0.1);
    --accent-text:   #4ade80;
}

.sc-rentsnap {
    --accent:        #f59e0b;
    --accent-glow:   rgba(245, 158, 11, 0.07);
    --accent-border: rgba(245, 158, 11, 0.28);
    --accent-dim:    rgba(245, 158, 11, 0.1);
    --accent-text:   #f59e0b;
}

.sc-slimgoal {
    --accent:        #22c55e;
    --accent-glow:   rgba(34, 197, 94, 0.07);
    --accent-border: rgba(34, 197, 94, 0.28);
    --accent-dim:    rgba(34, 197, 94, 0.1);
    --accent-text:   #22c55e;
}

.sc-roadilo {
    --accent:        #4580ff;
    --accent-glow:   rgba(69, 128, 255, 0.07);
    --accent-border: rgba(69, 128, 255, 0.28);
    --accent-dim:    rgba(69, 128, 255, 0.1);
    --accent-text:   #4580ff;
}

.sc-mark--roadilo {
    background: linear-gradient(135deg, #2563eb, #4580ff);
    font-size: 15px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.02em;
}

.sc-mark--safeproof {
    background: linear-gradient(145deg, #0ea5e9, #06b6d4);
    font-size: 17px;
    line-height: 1;
}

/* ── Card inner layout ──────────────────────────────────── */
.sc-inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 0;
    padding: 36px 40px;
}

.sc-content {
    flex: 1;
    min-width: 0;
}

.sc-visual {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-left: 44px;
    flex-shrink: 0;
}

/* ── Card header row ────────────────────────────────────── */
.sc-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 16px;
}

.sc-icon-link { display: block; flex-shrink: 0; }

.sc-icon {
    width: 76px;
    height: 76px;
    border-radius: 20px;
    object-fit: cover;
    display: block;
    box-shadow:
        0 8px 24px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.07);
    transition: transform 0.22s;
}

.sc-icon-link:hover .sc-icon { transform: scale(1.04); }

.sc-mark {
    width: 76px;
    height: 76px;
    border-radius: 20px;
    background: linear-gradient(145deg, #a855f7, #ec4899);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Outfit", "Trebuchet MS", sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: #fff;
    flex-shrink: 0;
    box-shadow:
        0 8px 24px rgba(0, 0, 0, 0.4),
        0 0 20px rgba(192, 132, 252, 0.2);
    transition: transform 0.22s;
    text-decoration: none;
}

.sc-mark:hover { transform: scale(1.04); }

.sc-title-group { min-width: 0; }

.sc-platform {
    display: block;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    color: var(--accent-text, var(--t3));
    margin-bottom: 5px;
}

.sc-name {
    font-family: "Outfit", "Trebuchet MS", sans-serif;
    font-size: clamp(26px, 2.8vw, 38px);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.025em;
    color: var(--t1);
    margin: 0;
}

/* ── Status badge ───────────────────────────────────────── */
.app-status {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 14px;
    background: rgba(251, 191, 36, 0.1);
    border: 1px solid rgba(217, 119, 6, 0.24);
    border-radius: 999px;
    padding: 4px 12px;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 0.03em;
    color: #d97706;
}

.app-status::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #d97706;
    flex-shrink: 0;
    animation: status-pulse 2.2s ease-in-out infinite;
}

@keyframes status-pulse {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0.28; }
}

.app-status--live {
    background: rgba(52, 211, 153, 0.1);
    border-color: rgba(52, 211, 153, 0.26);
    color: #34d399;
}

.app-status--live::before { background: #34d399; }

/* ── Description ────────────────────────────────────────── */
.sc-desc {
    font-size: 15px;
    line-height: 1.72;
    color: var(--t2);
    margin: 0 0 18px;
    max-width: 58ch;
}

/* ── Features list ──────────────────────────────────────── */
.sc-features {
    list-style: none;
    padding: 0;
    margin: 0 0 22px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 20px;
}

.sc-features li {
    display: flex;
    align-items: baseline;
    gap: 8px;
    font-size: 13.5px;
    line-height: 1.5;
    color: var(--t2);
}

.sc-features li::before {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--accent, var(--t3));
    flex-shrink: 0;
    margin-top: 1px;
    opacity: 0.8;
}

/* ── Actions ────────────────────────────────────────────── */
.sc-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
}

/* ── Buttons ────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    padding: 10px 18px;
    border-radius: 11px;
    font-size: 13px;
    font-weight: 700;
    font-family: "Sora", sans-serif;
    transition: transform 0.2s, box-shadow 0.2s, opacity 0.2s;
    white-space: nowrap;
}

.btn:hover { transform: translateY(-1px); }

.btn-primary {
    background: var(--accent, var(--blue));
    color: #06081a;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
}

.btn-primary:hover {
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.45);
}

.btn-ghost {
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.04);
    color: var(--t2);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.08);
    color: var(--t1);
    border-color: rgba(255, 255, 255, 0.13);
}

/* ── Phone frame (inside showcase card) ─────────────────── */
.sc-phone {
    width: 170px;
    background: #06080f;
    border-radius: 30px;
    border: 1.5px solid rgba(255, 255, 255, 0.1);
    padding: 9px 6px 12px;
    box-shadow:
        0 0 0 1px rgba(0, 0, 0, 0.7),
        0 24px 60px rgba(0, 0, 0, 0.55),
        0 0 50px var(--accent-dim, rgba(78, 143, 255, 0.05));
    transition: box-shadow 0.3s;
}

.showcase-card:hover .sc-phone {
    box-shadow:
        0 0 0 1px var(--accent-border, rgba(78, 143, 255, 0.18)),
        0 28px 70px rgba(0, 0, 0, 0.6),
        0 0 60px var(--accent-dim, rgba(78, 143, 255, 0.08));
}

.sc-phone-island {
    width: 46px;
    height: 15px;
    background: #000;
    border-radius: 0 0 10px 10px;
    margin: 0 auto 6px;
}

.sc-phone-dot {
    width: 9px;
    height: 9px;
    background: #000;
    border-radius: 50%;
    margin: 0 auto 7px;
}

.sc-phone-screen {
    border-radius: 16px;
    overflow: hidden;
    line-height: 0;
}

.sc-phone-screen--icon {
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 9 / 19.5;
    background: linear-gradient(160deg, #0e1f12 0%, #091509 100%);
    line-height: 1;
}

.sc-phone-screen img {
    width: 100%;
    aspect-ratio: 9 / 19.5;
    object-fit: cover;
    object-position: top;
    display: block;
}

/* ── Coming soon card ───────────────────────────────────── */
.sc-soon {
    border-style: dashed;
    background: rgba(255, 255, 255, 0.015);
    padding: 40px;
    display: flex;
    align-items: center;
    gap: 48px;
}

.sc-soon::before,
.sc-soon::after { display: none; }

.sc-soon-left { flex: 1; min-width: 0; }

.sc-soon-label {
    display: block;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--t3);
    margin-bottom: 12px;
}

.sc-soon h2 {
    font-family: "Outfit", "Trebuchet MS", sans-serif;
    font-size: clamp(22px, 2.4vw, 32px);
    font-weight: 800;
    color: var(--t2);
    letter-spacing: -0.02em;
    line-height: 1.15;
    margin: 0 0 10px;
}

.sc-soon p {
    font-size: 14.5px;
    color: var(--t3);
    line-height: 1.66;
    max-width: 52ch;
}

.sc-soon-right { flex-shrink: 0; }

.sc-soon-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13.5px;
    font-weight: 700;
    color: var(--t2);
    text-decoration: none;
    padding: 11px 20px;
    border-radius: 12px;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.03);
    transition: color 0.2s, border-color 0.2s, background 0.2s, transform 0.2s;
    white-space: nowrap;
}

.sc-soon-link:hover {
    color: var(--t1);
    border-color: rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-1px);
}

/* ── Shared eyebrow ─────────────────────────────────────── */
.eyebrow {
    display: block;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 14px;
}

/* ── Legal page styles ──────────────────────────────────── */
.legal-wrap {
    border: 1px solid var(--border);
    border-radius: 20px;
    background: var(--bg2);
    padding: 32px;
}

.legal-meta {
    margin: 14px 0 0;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    color: var(--t3);
    font-size: 13px;
    font-weight: 600;
}

.legal-divider,
.smooth-divider {
    margin: 20px 0;
    border: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
}

.legal-card {
    display: grid;
    gap: 10px;
}

.legal-card + .legal-card {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

.legal-card h1 {
    font-family: "Outfit", "Trebuchet MS", sans-serif;
    font-size: clamp(28px, 3vw, 44px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.025em;
    color: var(--t1);
    margin: 0;
}

.legal-card h3 {
    font-family: "Outfit", "Trebuchet MS", sans-serif;
    font-size: clamp(20px, 2vw, 28px);
    font-weight: 700;
    line-height: 1.2;
    color: var(--t1);
    margin: 0;
}

.legal-card p {
    margin: 0;
    font-size: 15px;
    color: var(--t2);
    line-height: 1.7;
}

.legal-card ul {
    margin: 0;
    padding-left: 20px;
    display: grid;
    gap: 6px;
}

.legal-card ul li {
    font-size: 15px;
    color: var(--t2);
    line-height: 1.66;
}

.legal-card a,
.inline-link {
    color: var(--blue);
    font-weight: 600;
    text-decoration: none;
}

.legal-card a:hover,
.inline-link:hover { text-decoration: underline; }

.contact-callout {
    margin-top: 20px;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.03);
    padding: 18px 20px;
    display: grid;
    gap: 8px;
}

.contact-callout p {
    margin: 0;
    font-size: 14.5px;
    color: var(--t2);
    line-height: 1.65;
}

/* Legal action buttons (reuse shared .btn classes above) */
.legal-links {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 14px;
}

/* ── Site footer ────────────────────────────────────────── */
.site-footer {
    margin-top: 72px;
    border-top: 1px solid transparent;
    background:
        linear-gradient(var(--bg2), var(--bg2)) padding-box,
        linear-gradient(90deg, transparent, rgba(78, 143, 255, 0.2), rgba(167, 139, 250, 0.15), transparent) border-box;
    border-top: 1px solid transparent;
    border-radius: 24px 24px 0 0;
    padding: 48px 40px 0;
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(78, 143, 255, 0.35), rgba(167, 139, 250, 0.25), transparent);
}

.site-footer-main {
    display: grid;
    grid-template-columns: minmax(200px, 260px) 1fr minmax(260px, 380px);
    align-items: start;
    gap: 32px 48px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-brand .brand-logo {
    height: 38px;
    max-width: 180px;
    background: #ffffff;
    padding: 5px 12px;
    border-radius: 10px;
    box-shadow: 0 2px 14px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.footer-brand-tagline {
    font-size: 13px;
    color: var(--t3);
    line-height: 1.6;
    max-width: 22ch;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-top: 4px;
}

.footer-nav a {
    text-decoration: none;
    color: var(--t2);
    font-size: 13.5px;
    font-weight: 600;
    padding: 6px 0;
    border-bottom: 1px solid transparent;
    transition: color 0.18s, border-color 0.18s;
    width: fit-content;
}

.footer-nav a:hover {
    color: var(--t1);
    border-bottom-color: rgba(78, 143, 255, 0.4);
}

.footer-subscribe { display: grid; gap: 10px; }

.footer-subscribe label {
    font-size: 14px;
    font-weight: 700;
    color: var(--t1);
    letter-spacing: -0.01em;
}

.footer-subscribe-subtext {
    font-size: 12.5px;
    color: var(--t3);
    margin-top: -4px;
}

.footer-subscribe-row { display: flex; gap: 8px; }

.footer-subscribe-row input {
    width: 100%;
    min-width: 0;
    border-radius: 11px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    color: var(--t1);
    padding: 11px 14px;
    font-size: 14px;
    font-family: "Sora", sans-serif;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.footer-subscribe-row input::placeholder { color: var(--t3); }

.footer-subscribe-row input:focus {
    outline: none;
    border-color: rgba(78, 143, 255, 0.5);
    box-shadow: 0 0 0 3px rgba(78, 143, 255, 0.12);
}

.footer-subscribe-row button {
    border: 0;
    border-radius: 11px;
    padding: 0 20px;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    font-family: "Sora", sans-serif;
    background: linear-gradient(135deg, #4e8fff, #6366f1);
    box-shadow: 0 6px 20px rgba(78, 143, 255, 0.3);
    cursor: pointer;
    white-space: nowrap;
    transition: opacity 0.2s, transform 0.15s, box-shadow 0.2s;
}

.footer-subscribe-row button:hover {
    opacity: 0.92;
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(78, 143, 255, 0.4);
}

.footer-flash {
    margin: 0;
    border-radius: 8px;
    padding: 8px 10px;
    font-size: 12px;
    line-height: 1.5;
}

.footer-flash.ok  { border: 1px solid #2a664a; background: rgba(15, 42, 28, 0.9); color: #6ee7b7; }
.footer-flash.err { border: 1px solid #7a2828; background: rgba(42, 15, 15, 0.9); color: #fca5a5; }

.site-footer-divider {
    height: 1px;
    margin: 40px 0 20px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.07), transparent);
}

.site-footer-bottom {
    font-size: 12px;
    color: var(--t3);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    padding-bottom: 28px;
}

/* ── Honeypot ────────────────────────────────────────────── */
.honeypot {
    position: absolute;
    width: 1px; height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
}

/* ── Animations ─────────────────────────────────────────── */
@keyframes fade-up {
    from { opacity: 0; transform: translateY(14px); }
    to   { opacity: 1; transform: translateY(0);    }
}

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 980px) {
    .sc-inner {
        flex-direction: column;
        padding: 28px 28px 32px;
    }

    .sc-visual {
        padding-left: 0;
        padding-top: 28px;
        justify-content: flex-start;
    }

    .sc-soon {
        flex-direction: column;
        align-items: flex-start;
        gap: 22px;
        padding: 28px;
    }

    .sc-features { grid-template-columns: 1fr; }

    .site-footer-main { grid-template-columns: 1fr; gap: 28px; }
    .site-footer { padding: 40px 28px 0; }
}

@media (max-width: 640px) {
    .page-shell { width: min(1160px, 94vw); padding-top: 24px; }

    .topbar { padding: 0 20px; }
    .nav { display: none; }

    .brand-logo { height: 36px; }
    .footer-brand .brand-logo { height: 32px; }

    .apps-hero h1 { font-size: clamp(34px, 11vw, 52px); }

    .sc-inner { padding: 22px 20px 26px; }

    .sc-phone { width: 140px; }

    .sc-features { grid-template-columns: 1fr; }

    .sc-soon { padding: 22px 20px; }

    .footer-subscribe-row { flex-direction: column; }
    .footer-subscribe-row button { height: 44px; }
    .site-footer { padding: 32px 20px 0; border-radius: 18px 18px 0 0; }
}
