/* ============================================================
   HIBBLY - Neon alchemy dating lab design system
   Dark-only theme. All design tokens live here.
   ============================================================ */

:root {
    /* Surfaces */
    --bg: #120B21;
    --bg-deep: #0C0718;
    --bg-plum: #1B0F33;
    --bg-panel: #1A1030;
    --surface: rgba(32, 18, 58, 0.74);
    --surface-soft: rgba(48, 30, 78, 0.55);
    --metal-top: #2C2437;
    --metal-mid: #15101F;
    --metal-bottom: #262032;

    /* Neon accents */
    --violet: #B14BFF;
    --violet-soft: rgba(177, 75, 255, 0.45);
    --magenta: #FF4FD8;
    --cyan: #49E0FF;
    --amber: #FFB800;
    --coral: #FF4B2B;
    --rose: #FF416C;
    --green: #35E08A;

    /* Text */
    --text: #F6F0FF;
    --text-muted: #CBBCE6;
    --text-dim: #A797C4;
    --ink: #33100A;

    /* Gradients */
    --grad-cta: linear-gradient(135deg, #FFB800 0%, #FF6A2B 55%, #FF3D5E 100%);
    --grad-coral: linear-gradient(135deg, #FF416C, #FF4B2B);
    --grad-metal: linear-gradient(180deg, #332A40 0%, #15101F 46%, #2A2237 100%);
    --grad-panel: linear-gradient(150deg, rgba(58, 34, 96, 0.9), rgba(20, 11, 38, 0.92));

    /* Glows */
    --glow-violet: 0 0 0 1px rgba(177, 75, 255, 0.35), 0 0 28px rgba(177, 75, 255, 0.32), 0 20px 48px rgba(8, 3, 20, 0.66);
    --glow-magenta: 0 0 34px rgba(255, 79, 216, 0.38);
    --glow-cta: 0 10px 30px rgba(255, 90, 43, 0.42), 0 0 56px rgba(255, 150, 40, 0.28);

    /* Geometry */
    --radius-sm: 12px;
    --radius-md: 18px;
    --radius-lg: 24px;
    --radius-pill: 999px;
    --container: 1200px;
    --gutter: 20px;
    --header-bottom: 64px;

    /* Type */
    --font-head: 'Outfit', 'Segoe UI', system-ui, -apple-system, sans-serif;
    --font-body: 'Plus Jakarta Sans', 'Segoe UI', system-ui, -apple-system, sans-serif;
}

/* ============================================
   OVERFLOW PREVENTION - Safety Net
   ============================================ */

*,
*::before,
*::after {
    box-sizing: border-box;
}

img, video, iframe, embed, object, svg {
    max-width: 100%;
    height: auto;
}

[class*="grid"] > *,
[class*="flex"] > * {
    min-width: 0;
}

pre, code, .code-block, [class*="code"] {
    max-width: 100%;
    overflow-x: auto;
}

pre code,
.code-block code {
    display: block;
    min-width: 0;
}

.table-wrapper,
[class*="table-"] {
    max-width: 100%;
    overflow-x: auto;
}

p, li, td, th {
    overflow-wrap: break-word;
}

details {
    height: fit-content;
}

:where(p, li, blockquote, figcaption, dd, .prose, .seo-text, article)
  a:not([class]) {
    text-decoration: underline;
    text-underline-offset: 0.15em;
}

input, textarea, select {
    max-width: 100%;
}

section {
    overflow: clip;
}

/* ============================================
   BASE
   ============================================ */

html {
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--bg);
    background-image:
        radial-gradient(1200px 700px at 18% -10%, rgba(126, 46, 189, 0.38), transparent 62%),
        radial-gradient(900px 620px at 92% 8%, rgba(255, 79, 216, 0.18), transparent 60%),
        linear-gradient(180deg, #160C28 0%, #100821 45%, #0C0718 100%);
    background-attachment: fixed;
    color: var(--text);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

body.nav-open {
    overflow: hidden;
}

h1, h2, h3, h4 {
    font-family: var(--font-head);
    font-weight: 800;
    line-height: 1.12;
    margin: 0 0 0.6em;
    letter-spacing: -0.02em;
}

h1 { font-size: clamp(2rem, 5.2vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.6vw, 2.5rem); }
h3 { font-size: clamp(1.15rem, 2.2vw, 1.4rem); }
h4 { font-size: 1.05rem; }

p { margin: 0 0 1.05em; }

a { color: var(--cyan); }
a:hover { color: var(--magenta); }

:focus-visible {
    outline: 3px solid var(--cyan);
    outline-offset: 3px;
    border-radius: 6px;
}

ul, ol { padding-left: 1.3em; }

strong { color: #FFFFFF; }

.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    z-index: 999;
    background: var(--amber);
    color: #241000;
    font-weight: 700;
    padding: 0.75rem 1.2rem;
    border-radius: 0 0 12px 0;
}

.skip-link:focus {
    left: 0;
}

.container {
    width: 100%;
    max-width: var(--container);
    margin-inline: auto;
    padding-inline: var(--gutter);
}

.section {
    position: relative;
    padding: clamp(48px, 7vw, 92px) 0;
}

.eyebrow {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--magenta);
    margin: 0 0 0.6rem;
}

.section-head {
    margin-bottom: clamp(24px, 4vw, 44px);
}

.section-head--center {
    text-align: center;
    max-width: 760px;
    margin-inline: auto;
}

.section-head__title {
    margin-bottom: 0.45em;
    text-shadow: 0 0 28px rgba(177, 75, 255, 0.35);
}

.section-head__lead {
    color: var(--text-muted);
    font-size: 1.02rem;
    margin: 0;
}

.glow-rule {
    display: block;
    width: 120px;
    max-width: 60%;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--violet), var(--magenta));
    box-shadow: 0 0 18px rgba(255, 79, 216, 0.75);
    margin: 0 0 1.4rem;
}

/* Reusable surfaces ------------------------------------------------ */

.neon-panel {
    position: relative;
    background: var(--grad-panel);
    border: 2px solid var(--violet-soft);
    border-radius: var(--radius-lg);
    box-shadow: var(--glow-violet);
}

.brushed-band {
    background: var(--grad-metal);
    background-image:
        repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.05) 0 1px, rgba(0, 0, 0, 0.05) 1px 3px),
        var(--grad-metal);
    border-top: 2px solid rgba(177, 75, 255, 0.6);
    border-bottom: 2px solid rgba(177, 75, 255, 0.6);
    box-shadow: 0 0 26px rgba(177, 75, 255, 0.35);
}

.concrete {
    background-color: #C9C4C0;
    background-image:
        radial-gradient(420px 260px at 12% 20%, rgba(255, 255, 255, 0.5), transparent 70%),
        radial-gradient(520px 320px at 82% 78%, rgba(120, 112, 108, 0.45), transparent 72%),
        repeating-linear-gradient(115deg, rgba(0, 0, 0, 0.045) 0 2px, rgba(255, 255, 255, 0.04) 2px 5px),
        linear-gradient(160deg, #D6D2CE, #ADA7A3);
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
    position: relative;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.1rem;
    min-height: 48px;
    padding: 0.8rem 1.5rem;
    border: 0;
    border-radius: var(--radius-pill);
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 1rem;
    line-height: 1.2;
    letter-spacing: 0.01em;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}

.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn__sub {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.74rem;
    opacity: 1;
}

.btn--primary {
    background: var(--grad-cta);
    color: var(--ink);
    box-shadow: var(--glow-cta);
}

.btn--primary::after {
    content: "";
    position: absolute;
    left: 12%;
    right: 12%;
    top: 5px;
    height: 34%;
    border-radius: var(--radius-pill);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.75), rgba(255, 255, 255, 0));
    pointer-events: none;
}

.btn--primary:hover {
    box-shadow: 0 12px 34px rgba(255, 90, 43, 0.55), 0 0 72px rgba(255, 160, 50, 0.4);
}

.btn--ghost {
    background: rgba(28, 16, 50, 0.8);
    color: #FFFFFF;
    border: 2px solid var(--violet-soft);
    box-shadow: 0 0 22px rgba(177, 75, 255, 0.28);
}

.btn--ghost:hover {
    border-color: var(--magenta);
    color: #FFFFFF;
}

.btn--sm {
    min-height: 44px;
    padding: 0.55rem 1.15rem;
    font-size: 0.92rem;
}

.btn--lg {
    min-height: 60px;
    padding: 1rem 2.4rem;
    font-size: 1.25rem;
}

.btn--xl {
    min-height: 68px;
    padding: 1.1rem 2.6rem;
    font-size: clamp(1.25rem, 3vw, 1.6rem);
    color: #FFFFFF;
    text-shadow: 0 2px 10px rgba(120, 25, 0, 0.55);
}

.btn--block {
    display: flex;
    width: 100%;
}

.btn--pulse {
    animation: btn-pulse 2.6s ease-in-out infinite;
}

@keyframes btn-pulse {
    0%, 100% { box-shadow: var(--glow-cta); }
    50% { box-shadow: 0 12px 38px rgba(255, 90, 43, 0.6), 0 0 92px rgba(255, 170, 60, 0.45); }
}

/* ============================================
   HEADER
   ============================================ */

.site-header {
    position: sticky;
    top: 0;
    z-index: 120;
    isolation: isolate;
}

.site-header::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background-image:
        repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.045) 0 1px, rgba(0, 0, 0, 0.06) 1px 3px),
        var(--grad-metal);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    border-bottom: 2px solid rgba(177, 75, 255, 0.6);
    box-shadow: 0 6px 28px rgba(177, 75, 255, 0.3);
}

.header-inner {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    max-width: var(--container);
    margin-inline: auto;
    padding: 10px var(--gutter);
    min-height: 62px;
}

.site-brand {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    flex: 0 0 auto;
}

.site-brand__mark {
    width: 34px;
    height: 34px;
    filter: drop-shadow(0 0 10px rgba(255, 79, 216, 0.75));
}

.site-brand__text {
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 1.45rem;
    letter-spacing: -0.02em;
    color: #FFFFFF;
    text-shadow: 0 0 18px rgba(255, 110, 90, 0.7);
}

.status-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    padding: 7px 14px;
    border-radius: var(--radius-pill);
    background: rgba(12, 7, 24, 0.85);
    border: 1px solid rgba(177, 75, 255, 0.55);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 0 16px rgba(177, 75, 255, 0.25);
    color: #EFE6FF;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
}

.status-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 0 0 rgba(53, 224, 138, 0.6);
    animation: dot-pulse 2.2s ease-out infinite;
    flex: 0 0 auto;
}

@keyframes dot-pulse {
    0% { box-shadow: 0 0 0 0 rgba(53, 224, 138, 0.55); }
    70% { box-shadow: 0 0 0 9px rgba(53, 224, 138, 0); }
    100% { box-shadow: 0 0 0 0 rgba(53, 224, 138, 0); }
}

.status-pill--header { display: none; }
.status-pill--drawer { margin: 4px 0 18px; }

.header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;
}

.nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    border: 1px solid rgba(177, 75, 255, 0.5);
    background: rgba(14, 8, 26, 0.9);
    cursor: pointer;
}

.nav-toggle__bars,
.nav-toggle__bars::before,
.nav-toggle__bars::after {
    display: block;
    width: 20px;
    height: 2px;
    border-radius: 2px;
    background: #F3E9FF;
    transition: transform 0.22s ease, opacity 0.18s ease;
}

.nav-toggle__bars::before,
.nav-toggle__bars::after {
    content: "";
    position: relative;
}

.nav-toggle__bars::before { top: -6px; }
.nav-toggle__bars::after { top: 4px; }

.nav-toggle[aria-expanded="true"] .nav-toggle__bars { background: transparent; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars::before { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars::after { transform: translateY(-4px) rotate(-45deg); }

/* Mobile drawer */
.site-nav {
    position: fixed;
    top: var(--header-bottom);
    left: 0;
    right: 0;
    bottom: 0;
    height: auto;
    z-index: 110;
    padding: 18px var(--gutter) 40px;
    background: #140B26;
    border-top: 1px solid rgba(177, 75, 255, 0.4);
    overflow-y: auto;
    display: none;
}

.site-nav.is-open { display: block; }

.site-nav__list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.site-nav__list li + li {
    border-top: 1px solid rgba(177, 75, 255, 0.22);
}

.site-nav__list a {
    display: flex;
    align-items: center;
    min-height: 48px;
    color: #F1E8FF;
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 1.05rem;
    text-decoration: none;
}

.site-nav__list a:hover { color: var(--magenta); }

/* ============================================
   FOOTER
   ============================================ */

.site-footer {
    position: relative;
    margin-top: clamp(40px, 6vw, 72px);
    background: linear-gradient(180deg, rgba(20, 11, 38, 0.6), rgba(9, 5, 18, 0.95));
    border-top: 2px solid rgba(177, 75, 255, 0.5);
    box-shadow: 0 -6px 32px rgba(177, 75, 255, 0.22);
}

.footer-inner {
    width: 100%;
    max-width: var(--container);
    margin-inline: auto;
    padding: 36px var(--gutter) 40px;
    text-align: center;
}

.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
}

.footer-brand__mark {
    width: 32px;
    height: 32px;
    filter: drop-shadow(0 0 10px rgba(255, 79, 216, 0.6));
}

.footer-brand__text {
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 1.25rem;
    color: #FFFFFF;
}

.footer-disclaimer {
    max-width: 720px;
    margin: 0 auto 18px;
    padding: 12px 16px;
    border: 1px solid rgba(255, 75, 43, 0.55);
    border-radius: var(--radius-md);
    background: rgba(50, 12, 18, 0.5);
    color: #FFE3DC;
    font-size: 0.88rem;
}

.footer-nav ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px 22px;
    margin: 0 0 18px;
    padding: 0;
}

.footer-nav a {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    color: #E6DAFF;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
}

.footer-nav a:hover {
    color: var(--amber);
    text-decoration: underline;
}

.footer-seo,
.footer-contact {
    max-width: 780px;
    margin: 0 auto 14px;
    color: var(--text-muted);
    font-size: 0.88rem;
}

.footer-copy {
    margin: 18px 0 0;
    color: var(--text-dim);
    font-size: 0.82rem;
}

/* ============================================
   ICONS / CALLOUTS / BREADCRUMBS
   ============================================ */

.ico {
    display: inline-flex;
    width: 26px;
    height: 26px;
}

.ico svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 6px currentColor);
}

.ico--violet { color: var(--violet); }
.ico--cyan { color: var(--cyan); }
.ico--amber { color: var(--amber); }
.ico--coral { color: var(--coral); }
.ico--lg { width: 40px; height: 40px; }

.callout {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    margin: 1.6rem 0;
    padding: 18px 20px;
    border-radius: var(--radius-md);
    background: rgba(24, 13, 44, 0.8);
    border: 2px solid var(--violet-soft);
    box-shadow: 0 0 24px rgba(177, 75, 255, 0.2);
}

.callout--coral {
    border-color: rgba(255, 75, 43, 0.65);
    background: rgba(48, 13, 20, 0.7);
    box-shadow: 0 0 26px rgba(255, 75, 43, 0.25);
}

.callout--coral .callout__icon { color: var(--coral); }

.callout--amber {
    border-color: rgba(255, 184, 0, 0.6);
    background: rgba(44, 28, 8, 0.65);
    box-shadow: 0 0 26px rgba(255, 184, 0, 0.22);
}

.callout--amber .callout__icon { color: var(--amber); }
.callout--violet .callout__icon { color: var(--violet); }

.callout__icon {
    flex: 0 0 auto;
    display: inline-flex;
}

.callout__icon .ico { width: 30px; height: 30px; }

.callout__body > :last-child { margin-bottom: 0; }

.callout__title {
    font-family: var(--font-head);
    font-weight: 700;
    color: #FFFFFF;
    margin: 0 0 0.4rem;
}

.breadcrumbs {
    margin-bottom: 18px;
    font-size: 0.85rem;
}

.breadcrumbs ol {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0;
    padding: 0;
    color: var(--text-dim);
}

.breadcrumbs li + li::before {
    content: "›";
    margin-right: 8px;
    color: var(--violet);
}

.breadcrumbs a {
    color: var(--text-muted);
    text-decoration: underline;
    text-underline-offset: 0.15em;
}

.breadcrumbs a:hover { color: var(--magenta); }

/* ============================================
   LEGAL / PROSE PAGES
   ============================================ */

.legal-page {
    position: relative;
    padding: clamp(28px, 5vw, 56px) 0 clamp(36px, 6vw, 72px);
}

.legal-page::before {
    content: "";
    position: absolute;
    inset: -10% 0 auto 0;
    height: 520px;
    background: radial-gradient(620px 320px at 50% 0%, rgba(255, 79, 216, 0.22), transparent 70%);
    pointer-events: none;
}

.legal-wrap {
    position: relative;
    width: 100%;
    max-width: 820px;
    margin-inline: auto;
    padding-inline: var(--gutter);
}

.legal-header__title {
    margin-bottom: 0.5rem;
}

.legal-header__lead {
    color: var(--text-muted);
    font-size: 1.05rem;
}

.legal-updated {
    display: inline-block;
    margin: 0 0 1.2rem;
    padding: 6px 14px;
    border-radius: var(--radius-pill);
    border: 1px solid rgba(177, 75, 255, 0.5);
    background: rgba(14, 8, 26, 0.75);
    color: #EFE6FF;
    font-size: 0.82rem;
    font-weight: 600;
}

.prose {
    font-size: 1rem;
    color: var(--text-muted);
}

.prose h2 {
    margin-top: 2.2em;
    color: #FFFFFF;
    font-size: clamp(1.45rem, 3vw, 1.9rem);
}

.prose h2:first-of-type { margin-top: 1.2em; }

.prose h3 {
    margin-top: 1.6em;
    color: #F0E6FF;
    font-size: 1.15rem;
    font-weight: 700;
}

.prose ul,
.prose ol {
    margin: 0 0 1.2em;
}

.prose li { margin-bottom: 0.45em; }

.prose a {
    color: var(--cyan);
    text-decoration: underline;
    text-underline-offset: 0.15em;
}

.prose a:hover { color: var(--magenta); }

.prose .heading-with-icon {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Tables ----------------------------------------------------------- */

.data-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin: 0 0 1.6rem;
    background: rgba(20, 11, 38, 0.78);
    border: 2px solid var(--violet-soft);
    border-radius: var(--radius-md);
    overflow: hidden;
    font-size: 0.95rem;
}

.data-table th,
.data-table td {
    padding: 14px 16px;
    text-align: left;
    border-bottom: 1px solid rgba(177, 75, 255, 0.28);
    vertical-align: top;
}

.data-table thead th {
    background: rgba(48, 27, 82, 0.8);
    color: #FFFFFF;
    font-family: var(--font-head);
    font-weight: 700;
}

.data-table tbody tr:last-child td { border-bottom: 0; }

.data-table td { color: var(--text-muted); }

/* Disclosures ------------------------------------------------------ */

.faq-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    align-items: start;
}

.faq-item {
    align-self: start;
    border: 2px solid var(--violet-soft);
    border-radius: var(--radius-md);
    background: linear-gradient(120deg, rgba(60, 52, 76, 0.85), rgba(21, 13, 38, 0.92) 55%, rgba(40, 30, 60, 0.85));
    box-shadow: 0 0 22px rgba(177, 75, 255, 0.18);
    overflow: hidden;
}

.faq-item > summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-height: 58px;
    padding: 14px 18px;
    cursor: pointer;
    list-style: none;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 1.02rem;
    color: #FFFFFF;
}

.faq-item > summary::-webkit-details-marker { display: none; }

.faq-item > summary::after {
    content: "";
    flex: 0 0 auto;
    width: 11px;
    height: 11px;
    border-right: 3px solid var(--violet);
    border-bottom: 3px solid var(--violet);
    transform: rotate(45deg) translateY(-2px);
    transition: transform 0.25s ease;
}

.faq-item[open] > summary::after {
    transform: rotate(-135deg) translateY(-2px);
}

.faq-item__body {
    padding: 0 18px 18px;
    color: var(--text-muted);
    background: rgba(12, 7, 22, 0.55);
    box-shadow: inset 0 10px 24px rgba(177, 75, 255, 0.12);
}

.faq-item__body > :first-child { padding-top: 14px; margin-top: 0; }
.faq-item__body > :last-child { margin-bottom: 0; }

/* ============================================
   FINAL CTA (shared macro)
   ============================================ */

.end-cta {
    padding: clamp(40px, 6vw, 80px) var(--gutter);
}

.end-cta__panel {
    max-width: 760px;
    margin-inline: auto;
    padding: clamp(26px, 5vw, 46px);
    text-align: center;
    background: var(--grad-panel);
    border: 2px solid rgba(177, 75, 255, 0.7);
    border-radius: var(--radius-lg);
    box-shadow: 0 0 46px rgba(255, 79, 216, 0.28), 0 24px 60px rgba(6, 2, 16, 0.6);
}

.end-cta__text {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

/* ============================================
   REVEAL + CONFETTI
   ============================================ */

.js [data-reveal] {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.js [data-reveal].is-visible {
    opacity: 1;
    transform: none;
}

.confetti-layer {
    position: fixed;
    inset: 0;
    z-index: 900;
    pointer-events: none;
    overflow: hidden;
}

.confetti-piece {
    position: absolute;
    width: 10px;
    height: 14px;
    border-radius: 2px;
    opacity: 1;
    animation: confetti-fly 1s cubic-bezier(0.2, 0.7, 0.3, 1) forwards;
}

@keyframes confetti-fly {
    0% { transform: translate(0, 0) rotate(0deg); opacity: 1; }
    100% { transform: translate(var(--dx), var(--dy)) rotate(var(--rot)); opacity: 0; }
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (min-width: 560px) {
    .status-pill--header {
        display: inline-flex;
    }
    .header-inner { gap: 14px; }
}

@media (min-width: 768px) {
    :root { --gutter: 28px; }

    body { font-size: 17px; }

    .header-inner { min-height: 70px; }

    .site-brand__mark { width: 38px; height: 38px; }
    .site-brand__text { font-size: 1.6rem; }

    .footer-inner { padding: 46px var(--gutter) 48px; }

    .prose { font-size: 1.04rem; }
}

@media (min-width: 1024px) {
    .nav-toggle { display: none; }

    .site-nav {
        position: static;
        display: flex;
        align-items: center;
        height: auto;
        padding: 0;
        margin-left: auto;
        background: transparent;
        border: 0;
        overflow: visible;
    }

    .site-nav .status-pill--drawer { display: none; }

    .site-nav__list {
        display: flex;
        align-items: center;
        gap: 26px;
    }

    .site-nav__list li + li { border-top: 0; }

    .site-nav__list a {
        min-height: 40px;
        font-size: 0.92rem;
        font-weight: 600;
        color: var(--text-muted);
    }

    .header-actions { margin-left: 18px; }

    .header-inner { min-height: 78px; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }

    *,
    *::before,
    *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
    }

    .js [data-reveal] {
        opacity: 1;
        transform: none;
    }
}

/* ============================================================
   HOMEPAGE
   ============================================================ */

/* ---------- Hero ---------- */

.hero {
    position: relative;
    isolation: isolate;
    padding: clamp(30px, 5vw, 64px) 0 clamp(44px, 7vw, 88px);
    overflow: clip;
}

.hero__bg {
    position: absolute;
    inset: 0;
    z-index: -2;
    background-image: url("/assets/938acd0e6e627f71159a37d3afe80b46.webp");
    background-size: cover;
    background-position: 50% 45%;
    background-repeat: no-repeat;
}

.hero__scrim {
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        radial-gradient(78% 58% at 50% 34%, rgba(23, 10, 46, 0.88), rgba(19, 9, 38, 0.6) 62%, rgba(13, 6, 27, 0.25) 100%),
        linear-gradient(180deg, rgba(12, 6, 26, 0.6), rgba(12, 6, 26, 0) 26%, rgba(11, 6, 23, 0.88));
}

.hero__inner {
    position: relative;
    text-align: center;
}

.hero__eyebrow {
    margin: 0 0 0.7rem;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 0.76rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #FFD9F4;
}

.hero__title {
    margin: 0 auto 0.5em;
    max-width: 16ch;
    text-shadow: 0 2px 26px rgba(10, 4, 22, 0.9), 0 0 42px rgba(177, 75, 255, 0.5);
}

.hero__sub {
    max-width: 44ch;
    margin: 0 auto 0.6rem;
    color: #FFFFFF;
    font-size: clamp(1rem, 2.4vw, 1.18rem);
    font-weight: 600;
    text-shadow: 0 2px 14px rgba(10, 4, 22, 0.85);
}

.hero__note {
    max-width: 56ch;
    margin: 0 auto;
    color: #E7DBFF;
    font-size: 0.95rem;
    text-shadow: 0 2px 12px rgba(10, 4, 22, 0.8);
}

.hero-deck {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: clamp(8px, 2.2vw, 22px);
    max-width: 780px;
    margin: clamp(24px, 4vw, 40px) auto clamp(22px, 3vw, 32px);
}

.hero-deck__filament {
    position: absolute;
    inset: 6% -6%;
    width: 112%;
    height: 88%;
    z-index: 0;
    pointer-events: none;
}

.deck-card {
    position: relative;
    z-index: 1;
    width: min(31%, 208px);
    padding: 7px;
    border: 2px solid rgba(177, 75, 255, 0.85);
    border-radius: 24px;
    background: linear-gradient(160deg, rgba(58, 30, 96, 0.85), rgba(16, 8, 32, 0.92));
    box-shadow:
        0 0 26px rgba(255, 79, 216, 0.45),
        0 18px 40px rgba(6, 2, 16, 0.6),
        inset 0 0 0 1px rgba(255, 184, 0, 0.35);
    transition: transform 0.35s cubic-bezier(0.22, 0.8, 0.28, 1), box-shadow 0.3s ease;
}

.deck-card img {
    display: block;
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    object-position: 50% 30%;
    border-radius: 17px;
}

.deck-card__meta {
    display: flex;
    justify-content: space-between;
    gap: 6px;
    margin: 7px 3px 2px;
    font-size: 0.7rem;
    font-weight: 700;
    color: #FFFFFF;
}

.deck-card__dist { color: #FFD27A; }

.deck-card--left { transform: rotate(-7deg) translateY(12px) scale(0.9); }
.deck-card--right { transform: rotate(7deg) translateY(12px) scale(0.9); }
.deck-card--center { z-index: 2; transform: scale(1.06); }

.hero-deck:hover .deck-card--left,
.hero-deck:focus-within .deck-card--left { transform: rotate(-12deg) translate(-16px, 6px) scale(0.92); }

.hero-deck:hover .deck-card--right,
.hero-deck:focus-within .deck-card--right { transform: rotate(12deg) translate(16px, 6px) scale(0.92); }

.hero-deck:hover .deck-card--center,
.hero-deck:focus-within .deck-card--center {
    transform: scale(1.11) translateY(-6px);
    box-shadow: 0 0 40px rgba(255, 79, 216, 0.6), 0 22px 46px rgba(6, 2, 16, 0.65), inset 0 0 0 1px rgba(255, 184, 0, 0.5);
}

/* ---------- Micro quiz ---------- */

.quiz {
    position: relative;
    max-width: 720px;
    margin-inline: auto;
}

.quiz-steps {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin: 0 0 16px;
    padding: 0;
    list-style: none;
}

.quiz-step {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1px;
    min-width: 96px;
    padding: 7px 14px;
    border: 2px solid rgba(177, 75, 255, 0.55);
    border-radius: var(--radius-pill);
    background: rgba(13, 7, 26, 0.85);
    color: #FFFFFF;
}

.quiz-step__label {
    font-size: 0.64rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #D8C6F5;
}

.quiz-step__value {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 0.92rem;
}

.quiz-step.is-active {
    border-color: var(--magenta);
    box-shadow: 0 0 22px rgba(255, 79, 216, 0.45);
}

.quiz-step.is-done {
    border-color: var(--amber);
    box-shadow: 0 0 18px rgba(255, 184, 0, 0.4);
}

.quiz-sep .ico { width: 18px; height: 18px; }

.quiz-question {
    margin: 0 0 12px;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 1.05rem;
    color: #FFFFFF;
    text-shadow: 0 2px 12px rgba(10, 4, 22, 0.8);
}

.quiz-panel { display: none; }
.quiz-panel.is-active { display: block; }

.quiz-options {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.quiz-option {
    min-height: 50px;
    padding: 0.7rem 1.5rem;
    border: 2px solid rgba(177, 75, 255, 0.65);
    border-radius: var(--radius-pill);
    background: rgba(16, 9, 32, 0.88);
    color: #FFFFFF;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: border-color 0.2s ease, transform 0.18s ease, background 0.2s ease;
}

.quiz-option:hover {
    border-color: var(--amber);
    transform: translateY(-2px);
}

.quiz-option.is-selected {
    background: var(--grad-cta);
    border-color: transparent;
    color: var(--ink);
}

.quiz-done {
    display: none;
    margin: 0;
    font-weight: 700;
    color: #FFE6A6;
    text-shadow: 0 2px 12px rgba(10, 4, 22, 0.8);
}

.quiz.is-complete .quiz-done { display: block; }

.quiz-cta { margin-top: 20px; }

.quiz-cta .btn--pulse { animation: btn-pulse 2.4s ease-in-out infinite; }

/* ---------- Trust band ---------- */

.trust-band {
    padding: clamp(28px, 4vw, 44px) 0;
}

.trust-head {
    max-width: 700px;
    margin: 0 auto clamp(20px, 3vw, 30px);
    text-align: center;
}

.trust-head h2 {
    margin-bottom: 0.5em;
    font-size: clamp(1.35rem, 3vw, 2rem);
}

.trust-head p {
    margin: 0;
    color: #E3D7FA;
    font-size: 0.95rem;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.trust-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
}

.trust-badge__seal {
    display: inline-flex;
    width: clamp(62px, 14vw, 80px);
}

.trust-badge__seal svg {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 0 12px currentColor);
}

.trust-badge__label {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 0.85rem;
    color: #FFFFFF;
}

.trust-badge--violet .trust-badge__seal { color: var(--violet); }
.trust-badge--amber .trust-badge__seal { color: var(--amber); }
.trust-badge--cyan .trust-badge__seal { color: var(--cyan); }
.trust-badge--coral .trust-badge__seal { color: var(--coral); }

/* ---------- Live activity ticker ---------- */

.ticker {
    position: fixed;
    left: 14px;
    bottom: 14px;
    z-index: 95;
    display: none;
    align-items: center;
    gap: 10px;
    max-width: min(320px, calc(100vw - 28px));
    padding: 10px 14px;
    border: 1px solid rgba(177, 75, 255, 0.8);
    border-radius: 14px;
    background: rgba(14, 8, 26, 0.94);
    box-shadow: 0 0 24px rgba(177, 75, 255, 0.35), 0 16px 32px rgba(5, 2, 14, 0.6);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
}

.ticker.is-visible {
    display: flex;
    animation: ticker-in 0.45s ease both;
}

.ticker__text {
    margin: 0;
    color: #F4EBFF;
    font-size: 0.83rem;
    font-weight: 600;
}

@keyframes ticker-in {
    from { opacity: 0; transform: translateX(-24px); }
    to { opacity: 1; transform: none; }
}

/* ---------- Swipe demo ---------- */

.swipe-section { color: #2C2436; }
.swipe-section h2 { color: #180F26; text-shadow: none; }
.swipe-section .eyebrow { color: #8E2BC9; }
.swipe-section p { color: #3A3147; }
.swipe-section strong { color: #180F26; }

.swipe-grid {
    display: grid;
    gap: clamp(28px, 5vw, 46px);
    align-items: center;
}

.swipe-stage {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.swipe-arrow {
    position: absolute;
    top: 42%;
    left: -4px;
    width: 92px;
    height: 32px;
    filter: drop-shadow(0 0 10px rgba(255, 184, 0, 0.8));
    pointer-events: none;
}

.phone {
    position: relative;
    width: min(260px, 76vw);
    aspect-ratio: 9 / 18;
    padding: 12px;
    border: 3px solid var(--violet);
    border-radius: 40px;
    background: #0E0820;
    box-shadow: 0 0 44px rgba(255, 79, 216, 0.55), 0 30px 60px rgba(40, 24, 56, 0.45);
}

.phone__notch {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 74px;
    height: 16px;
    border-radius: 0 0 14px 14px;
    background: #1B1230;
}

.swipe-card {
    position: absolute;
    inset: 14px;
    border-radius: 28px;
    overflow: hidden;
    background: #180E30;
    cursor: grab;
    touch-action: pan-y;
    transition: transform 0.35s cubic-bezier(0.22, 0.8, 0.28, 1), opacity 0.3s ease;
}

.swipe-card.is-dragging { transition: none; cursor: grabbing; }

.swipe-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 28%;
}

.swipe-card__meta {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin: 0;
    padding: 34px 14px 14px;
    background: linear-gradient(180deg, rgba(10, 4, 22, 0), rgba(10, 4, 22, 0.92));
    color: #FFFFFF;
    font-size: 0.82rem;
}

.swipe-card__meta strong { font-size: 1rem; }

.swipe-stamp {
    position: absolute;
    top: 18px;
    padding: 5px 12px;
    border-radius: 10px;
    border: 3px solid currentColor;
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 1rem;
    opacity: 0;
    transition: opacity 0.15s ease;
}

.swipe-stamp--like { right: 14px; color: #35E08A; transform: rotate(12deg); }
.swipe-stamp--pass { left: 14px; color: #FF4B2B; transform: rotate(-12deg); }

.swipe-card.show-like .swipe-stamp--like,
.swipe-card.show-pass .swipe-stamp--pass { opacity: 1; }

.swipe-actions {
    display: flex;
    gap: 18px;
}

.swipe-btn {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    border: 2px solid rgba(177, 75, 255, 0.7);
    background: #150C28;
    color: #FFFFFF;
    font-size: 1.4rem;
    line-height: 1;
    cursor: pointer;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.swipe-btn:hover { transform: translateY(-3px); }
.swipe-btn--pass { color: #FF7A63; box-shadow: 0 0 20px rgba(255, 75, 43, 0.35); }
.swipe-btn--like { color: #FF4FD8; box-shadow: 0 0 20px rgba(255, 79, 216, 0.45); }

.match-burst {
    position: absolute;
    top: 34%;
    left: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    transform: translate(-50%, -50%) scale(0.4);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.3s cubic-bezier(0.2, 1.5, 0.4, 1);
}

.match-burst svg {
    width: 120px;
    height: 120px;
    filter: drop-shadow(0 0 22px rgba(255, 180, 60, 0.9));
}

.match-burst span {
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 1.8rem;
    color: #FFFFFF;
    text-shadow: 0 0 20px rgba(255, 120, 40, 0.9);
}

.match-burst.is-on {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.swipe-status {
    min-height: 1.4em;
    margin: 0;
    font-weight: 700;
    color: #6A2AA8;
}

.swipe-steps {
    margin: 0 0 1.4rem;
    padding-left: 1.2em;
}

.swipe-steps li { margin-bottom: 0.5em; }

/* ---------- Comparison ---------- */

.vs-band {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    margin-bottom: clamp(22px, 4vw, 34px);
}

.vs-panel {
    padding: 18px 18px 14px;
    border-radius: var(--radius-lg);
    text-align: center;
}

.vs-panel h3 { margin-bottom: 0.4em; }
.vs-panel p { margin: 0; font-size: 0.92rem; }

.vs-panel .vs-art {
    width: 100%;
    max-width: 240px;
    height: auto;
    margin: 0 auto 10px;
}

.vs-panel--hibbly {
    border: 2px solid var(--amber);
    background: linear-gradient(160deg, rgba(58, 26, 30, 0.7), rgba(22, 10, 32, 0.92));
    box-shadow: 0 0 36px rgba(255, 90, 43, 0.3), inset 0 0 40px rgba(255, 75, 43, 0.18);
}

.vs-panel--hibbly h3 { color: #FFFFFF; }
.vs-panel--hibbly p { color: #FFDCC2; }

.vs-panel--legacy {
    border: 2px solid #5C5A66;
    background: #2A2932;
}

.vs-panel--legacy h3 { color: #D6D4DD; }
.vs-panel--legacy p { color: #A9A7B3; }

.vs-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    border-radius: var(--radius-md);
    background-image:
        repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.06) 0 1px, rgba(0, 0, 0, 0.08) 1px 3px),
        var(--grad-metal);
    border: 1px solid rgba(177, 75, 255, 0.4);
}

.vs-divider span {
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 1.6rem;
    letter-spacing: 0.08em;
    color: #EDE6F7;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
}

.sr-caption {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip-path: inset(50%);
    white-space: nowrap;
}

.compare-table th[scope="row"] {
    color: #FFFFFF;
    font-family: var(--font-head);
    font-weight: 700;
}

.compare-table .is-hibbly {
    color: #FFE7C9;
    background: rgba(255, 140, 40, 0.09);
}

@media (max-width: 767px) {
    .compare-table,
    .compare-table tbody,
    .compare-table tr,
    .compare-table td,
    .compare-table th { display: block; width: 100%; }

    .compare-table thead { display: none; }

    .compare-table tr {
        border-bottom: 1px solid rgba(177, 75, 255, 0.28);
        padding: 6px 0;
    }

    .compare-table tr:last-child { border-bottom: 0; }

    .compare-table td,
    .compare-table th { border-bottom: 0; padding: 8px 14px; }

    .compare-table td::before {
        content: attr(data-label);
        display: block;
        font-size: 0.7rem;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        color: #C3AEE6;
        margin-bottom: 2px;
    }

    .compare-table .is-hibbly {
        border-left: 3px solid var(--amber);
        border-radius: 8px;
    }
}

/* ---------- Profiles grid ---------- */

.profiles-section {
    position: relative;
    isolation: isolate;
}

.profiles-section__bg {
    position: absolute;
    inset: 0;
    z-index: -1;
    background-image:
        linear-gradient(180deg, rgba(12, 6, 26, 0.86), rgba(12, 6, 26, 0.7) 45%, rgba(12, 6, 26, 0.92)),
        url("/assets/022f76ae7965da33a6378cea3842e202.webp");
    background-size: cover;
    background-position: 50% 50%;
    background-repeat: no-repeat;
}

.profile-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.profile-card {
    display: flex;
    flex-direction: column;
    padding: 8px;
    border: 2px solid rgba(177, 75, 255, 0.75);
    border-radius: 20px;
    background: rgba(18, 10, 36, 0.82);
    box-shadow: 0 0 22px rgba(177, 75, 255, 0.25), 0 16px 32px rgba(5, 2, 14, 0.5);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.profile-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 34px rgba(255, 79, 216, 0.45), 0 22px 40px rgba(5, 2, 14, 0.55);
}

.profile-card__media {
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 8px;
}

.profile-card__media img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    object-position: 50% 28%;
}

.profile-card__name {
    margin: 0 0 2px;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 0.95rem;
    color: #FFFFFF;
}

.profile-card__meta {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 4px;
    margin: 0 0 10px;
    font-size: 0.74rem;
    color: #D9CBF3;
}

.profile-card__status {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #7CF0B5;
    font-weight: 700;
}

.profile-card .btn { margin-top: auto; }

/* ---------- Features ---------- */

.features-panel {
    position: relative;
    padding: clamp(24px, 4vw, 44px) clamp(18px, 3vw, 36px);
    border-radius: var(--radius-lg);
    background:
        radial-gradient(560px 320px at 50% 40%, rgba(140, 60, 220, 0.34), transparent 70%),
        #1B0F33;
    border: 1px solid rgba(177, 75, 255, 0.35);
}

.feature-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.feature-tile {
    padding: 20px 18px;
    border-radius: var(--radius-md);
    background: rgba(12, 6, 26, 0.55);
    border: 1px solid rgba(177, 75, 255, 0.28);
    text-align: center;
}

.feature-tile h3 { margin: 0.6em 0 0.4em; color: #FFFFFF; }
.feature-tile p { margin: 0; color: var(--text-muted); font-size: 0.94rem; }

.feature-tile__icon .ico svg {
    filter: drop-shadow(0 0 10px currentColor) drop-shadow(0 0 22px currentColor);
}

/* ---------- FAQ + final CTA band ---------- */

.faq-cta-band {
    padding: clamp(44px, 6vw, 84px) 0;
}

.faq-cta-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(28px, 4vw, 44px);
    align-items: start;
}

.faq-col h2 { color: #180F26; text-shadow: none; }

.eyebrow--dark { color: #8E2BC9; }

.final-panel {
    padding: clamp(22px, 4vw, 36px);
    border: 3px solid var(--violet);
    border-radius: var(--radius-lg);
    background: linear-gradient(160deg, rgba(42, 21, 74, 0.96), rgba(13, 7, 26, 0.98));
    box-shadow: 0 0 60px rgba(255, 79, 216, 0.45), 0 26px 60px rgba(20, 8, 40, 0.5);
    text-align: center;
}

.final-panel h2 {
    color: #FFFFFF;
    font-size: clamp(1.5rem, 3.4vw, 2.1rem);
}

.final-panel p {
    color: var(--text-muted);
    margin-bottom: 1.4rem;
}

.scarcity-badge {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 1rem;
    padding: 7px 16px;
    border: 2px solid var(--violet);
    border-radius: var(--radius-pill);
    background: rgba(12, 6, 26, 0.9);
    color: #F6ECFF;
    font-size: 0.82rem;
    font-weight: 700;
    overflow: hidden;
}

.scarcity-badge svg {
    width: 16px;
    height: 16px;
    color: var(--amber);
}

.scarcity-badge::after {
    content: "";
    position: absolute;
    top: 0;
    left: -60%;
    width: 50%;
    height: 100%;
    background: linear-gradient(100deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0));
    animation: badge-shimmer 3.6s linear infinite;
}

@keyframes badge-shimmer {
    0% { left: -60%; }
    60%, 100% { left: 130%; }
}

/* ---------- Homepage responsive ---------- */

@media (min-width: 560px) {
    .quiz-step { min-width: 120px; }
}

@media (min-width: 768px) {
    .trust-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }

    .swipe-grid { grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr); }

    .vs-band { grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr); }

    .vs-divider { width: 76px; }

    .profile-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }

    .feature-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

    .feature-tile { text-align: left; }

    .ticker { left: 20px; bottom: 20px; }
}

@media (min-width: 1024px) {
    .hero { padding: clamp(48px, 5vw, 78px) 0 clamp(64px, 7vw, 104px); }

    .hero__bg { background-position: 50% 42%; }

    .faq-cta-grid { grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr); }

    .phone { width: 280px; }
}

@media (prefers-reduced-motion: reduce) {
    .scarcity-badge::after { display: none; }
    .ticker.is-visible { animation: none; }
}

/* ============================================================
   LEGAL PAGES - Cookie Policy accents
   ============================================================ */

.legal-header {
    position: relative;
}

.legal-header::after {
    content: "";
    position: absolute;
    left: -10%;
    right: 40%;
    top: -8%;
    height: 220px;
    background: radial-gradient(260px 170px at 20% 20%, rgba(255, 79, 216, 0.28), transparent 70%);
    pointer-events: none;
    z-index: -1;
}

.cookie-table th[scope="row"] {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #FFFFFF;
}

.cookie-table th[scope="row"] .ico {
    width: 22px;
    height: 22px;
    flex: 0 0 auto;
}

@media (max-width: 767px) {
    .cookie-table,
    .cookie-table tbody,
    .cookie-table tr,
    .cookie-table td,
    .cookie-table th {
        display: block;
        width: 100%;
    }

    .cookie-table thead { display: none; }

    .cookie-table tr {
        border-bottom: 1px solid rgba(177, 75, 255, 0.28);
        padding: 10px 0;
    }

    .cookie-table tr:last-child { border-bottom: 0; }

    .cookie-table td,
    .cookie-table th {
        border-bottom: 0;
        padding: 6px 14px;
    }

    .cookie-table td::before {
        content: attr(data-label);
        display: block;
        font-size: 0.7rem;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        color: #C3AEE6;
        margin-bottom: 2px;
    }
}