/* Public homepage page-specific styles extracted from the original template. */


/* ══════════════════════════════════════════
   PROFILE COMPLETION POPUP
══════════════════════════════════════════ */
.pc-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.76);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    opacity: 0;
    transition: opacity 0.3s;
}
.pc-overlay.show { opacity: 1; }
.pc-card {
    width: 100%;
    max-width: 460px;
    background: var(--ink-2);
    border: 1px solid var(--border-g);
    border-radius: var(--radius-lg);
    padding: 36px;
    box-shadow: 0 0 0 1px rgba(0,230,118,0.07), 0 40px 100px rgba(0,0,0,0.65);
    position: relative;
    transform: translateY(24px) scale(0.97);
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.pc-overlay.show .pc-card { transform: translateY(0) scale(1); }
.pc-top-line {
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 10%, var(--g) 50%, transparent 90%);
    opacity: 0.55;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.pc-close {
    position: absolute;
    top: 14px; right: 14px;
    background: none;
    border: none;
    color: var(--text-3);
    cursor: pointer;
    font-size: 0.85rem;
    padding: 6px 8px;
    border-radius: var(--radius-sm);
    transition: color 0.2s, background 0.2s;
}
.pc-close:hover { color: var(--text-1); background: var(--border); }
.pc-eyebrow {
    font-size: 0.67rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--g);
    margin-bottom: 8px;
}
.pc-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-1);
    margin-bottom: 22px;
    line-height: 1.2;
}
.pc-bar-wrap {
    background: var(--ink-3);
    border-radius: 8px;
    height: 8px;
    overflow: hidden;
    margin-bottom: 7px;
}
.pc-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--g-dim), var(--g));
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,230,118,0.3);
    width: 0%;
    transition: width 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
.pc-pct-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}
.pc-pct-row span { font-size: 0.74rem; color: var(--text-3); }
.pc-pct-row strong { font-family: 'Space Grotesk', sans-serif; font-size: 0.88rem; color: var(--g); font-weight: 700; }
.pc-missing-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 7px;
    margin-bottom: 24px;
}
.pc-missing-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.82rem;
    color: var(--text-2);
    padding: 9px 12px;
    background: var(--ink-3);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
}
.pc-missing-item i { color: rgba(239,68,68,0.65); font-size: 0.72rem; flex-shrink: 0; }
.pc-actions { display: flex; gap: 10px; }
.pc-btn-primary {
    flex: 1;
    padding: 12px;
    background: var(--g);
    border: none;
    border-radius: var(--radius-sm);
    color: #000;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    box-shadow: 0 0 20px var(--g-glow);
    transition: all 0.2s;
}
.pc-btn-primary:hover { background: #fff; color: #000; box-shadow: 0 0 32px var(--g-glow-lg); }
.pc-btn-skip {
    padding: 12px 16px;
    background: none;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text-3);
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.2s;
}
.pc-btn-skip:hover { border-color: rgba(255,255,255,0.14); color: var(--text-2); }

@media (max-width: 480px) {
    .lib-right { gap: 6px; }
    .pc-card { padding: 28px 20px 24px; }
}

/* ══════════════════════════════════════════
   GRID BACKGROUND PATTERN
══════════════════════════════════════════ */
.grid-bg {
    background-image:
        linear-gradient(rgba(0,230,118,0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,230,118,0.045) 1px, transparent 1px);
    background-size: 48px 48px;
    background-position: center center;
}

/* ══════════════════════════════════════════
   HERO
══════════════════════════════════════════ */
.hero-wrap {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 130px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 55% at 50% -5%, rgba(0,230,118,0.10) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

.hero-orb {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 920px;
    height: 920px;
    background: radial-gradient(circle, rgba(0,230,118,0.09) 0%, rgba(0,230,118,0.03) 35%, transparent 65%);
    pointer-events: none;
    animation: orb-breathe 9s ease-in-out infinite;
}

@keyframes orb-breathe {
    0%, 100% { opacity: 0.7; transform: translate(-50%, -50%) scale(1); }
    50%       { opacity: 1;   transform: translate(-50%, -50%) scale(1.09); }
}

.hero-orb-2 {
    position: absolute;
    top: -120px;
    right: -220px;
    width: 640px;
    height: 640px;
    background: radial-gradient(circle, rgba(0,230,118,0.06) 0%, transparent 70%);
    pointer-events: none;
    animation: orb-breathe 13s ease-in-out infinite reverse;
}

.hero-content {
    text-align: center;
    max-width: 860px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 18px;
    border-radius: 100px;
    border: 1px solid rgba(0,230,118,0.28);
    background: rgba(0,230,118,0.08);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--g);
    margin-bottom: 28px;
    box-shadow: 0 0 24px rgba(0,230,118,0.12), inset 0 1px 0 rgba(0,230,118,0.18);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.hero-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2.6rem, 7vw, 5rem);
    font-weight: 700;
    line-height: 1.05;
    color: var(--text-1);
    margin-bottom: 22px;
    letter-spacing: -1px;
}

.hero-title .accent {
    color: var(--g);
    text-shadow: 0 0 80px rgba(0,230,118,0.55), 0 0 160px rgba(0,230,118,0.2);
    position: relative;
}

.hero-title .accent::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0; right: 0;
    height: 2px;
    background: var(--g);
    opacity: 0.4;
    border-radius: 2px;
}

.hero-desc {
    font-size: 1.05rem;
    color: var(--text-2);
    line-height: 1.8;
    max-width: 560px;
    margin: 0 auto 36px;
}

.hero-btns {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 52px;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    font-size: 0.92rem;
    font-weight: 700;
    color: #000;
    background: var(--g);
    border: none;
    border-radius: 10px;
    text-decoration: none;
    box-shadow: 0 0 28px rgba(0,230,118,0.3);
    transition: all 0.2s;
    letter-spacing: 0.2px;
}

.btn-hero-primary:hover {
    background: #fff;
    color: #000;
    box-shadow: 0 4px 40px rgba(0,230,118,0.45);
    transform: translateY(-2px);
}

.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 30px;
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--text-2);
    background: var(--ink-2);
    border: 1px solid var(--border);
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.2s;
}

.btn-hero-secondary:hover {
    color: var(--text-1);
    border-color: rgba(255,255,255,0.15);
    background: var(--ink-3);
}

.hero-trust-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 0.8rem;
    color: var(--text-3);
}

.trust-item i {
    color: var(--g);
    font-size: 0.75rem;
}

/* hero stats bar */
.hero-stats-bar {
    background: rgba(17,18,19,0.65);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-top: 1px solid rgba(0,230,118,0.09);
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    box-shadow: 0 12px 40px rgba(0,0,0,0.45), inset 0 1px 0 rgba(255,255,255,0.04);
}

.hstat {
    padding: 22px 24px;
    border-right: 1px solid var(--border);
    text-align: center;
}

.hstat:last-child { border-right: none; }

.hstat-val {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.9rem;
    font-weight: 700;
    color: var(--g);
    line-height: 1;
    letter-spacing: -0.5px;
    text-shadow: 0 0 32px rgba(0,230,118,0.4);
}

.hstat-label {
    font-size: 0.75rem;
    color: var(--text-3);
    margin-top: 4px;
    font-weight: 500;
}

/* ══════════════════════════════════════════
   TICKER
══════════════════════════════════════════ */
.ticker-wrap {
    overflow: hidden;
    background: linear-gradient(90deg, var(--g-dark) 0%, var(--g) 50%, var(--g-dark) 100%);
    padding: 13px 0;
    position: relative;
}

.ticker-wrap::before,
.ticker-wrap::after {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    width: 120px;
    z-index: 2;
    pointer-events: none;
}

.ticker-wrap::before {
    left: 0;
    background: linear-gradient(90deg, var(--g-dark) 0%, transparent 100%);
}

.ticker-wrap::after {
    right: 0;
    background: linear-gradient(-90deg, var(--g-dark) 0%, transparent 100%);
}

.ticker-track {
    display: flex;
    gap: 0;
    white-space: nowrap;
    animation: ticker 28s linear infinite;
}

.ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 0 32px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #000;
    flex-shrink: 0;
}

.ticker-sep {
    color: rgba(0,0,0,0.3);
    font-size: 1rem;
}

@keyframes ticker {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ══════════════════════════════════════════
   BENTO FEATURES
══════════════════════════════════════════ */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: auto;
    gap: 16px;
}

.bento-card {
    background: var(--ink-2);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 32px;
    position: relative;
    overflow: hidden;
    transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}

.bento-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 20%, rgba(0,230,118,0.06) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.35s;
}

.bento-card:hover {
    border-color: var(--border-g);
    transform: translateY(-4px);
    box-shadow: 0 20px 56px rgba(0,0,0,0.45), 0 0 0 1px rgba(0,230,118,0.08), 0 0 40px rgba(0,230,118,0.07);
}

.bento-card:hover::before { opacity: 1; }

/* span variants */
.bento-span-8 { grid-column: span 8; }
.bento-span-4 { grid-column: span 4; }
.bento-span-6 { grid-column: span 6; }
.bento-span-12 { grid-column: span 12; }

@media (max-width: 991px) {
    .bento-span-8, .bento-span-4,
    .bento-span-6, .bento-span-12 {
        grid-column: span 12;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .bento-span-6 { grid-column: span 6; }
}

.bento-icon {
    width: 46px; height: 46px;
    border-radius: 12px;
    background: rgba(0,230,118,0.08);
    border: 1px solid rgba(0,230,118,0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    color: var(--g);
    margin-bottom: 20px;
    transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
    box-shadow: 0 0 0 4px rgba(0,230,118,0.03);
}

.bento-card:hover .bento-icon {
    background: rgba(0,230,118,0.14);
    box-shadow: 0 0 24px rgba(0,230,118,0.22), 0 0 0 4px rgba(0,230,118,0.06);
    transform: scale(1.08);
}

.bento-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-1);
    margin-bottom: 8px;
}

.bento-desc {
    font-size: 0.875rem;
    color: var(--text-2);
    line-height: 1.65;
}

.bento-tag {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 100px;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--g);
    background: var(--g-glow);
    border: 1px solid var(--border-g);
    margin-bottom: 14px;
}

.bento-big-num {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 4rem;
    font-weight: 700;
    color: var(--g);
    line-height: 1;
    text-shadow: 0 0 30px rgba(0,230,118,0.25);
    margin-bottom: 6px;
}

.bento-feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 16px;
}

.bento-feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--text-2);
    line-height: 1.5;
}

.bento-feature-list li i {
    color: var(--g);
    font-size: 0.7rem;
    margin-top: 4px;
    flex-shrink: 0;
}

.bento-visual-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 18px;
}

.bento-pill {
    padding: 5px 12px;
    border-radius: 100px;
    border: 1px solid var(--border);
    font-size: 0.75rem;
    color: var(--text-2);
    background: var(--ink-3);
}

.bento-notification {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--ink-3);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 12px 14px;
    margin-top: 12px;
}

.bento-notification-icon {
    width: 32px; height: 32px;
    border-radius: 8px;
    background: rgba(0,230,118,0.1);
    border: 1px solid rgba(0,230,118,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    color: var(--g);
    flex-shrink: 0;
}

.bento-notification-text {
    font-size: 0.78rem;
    color: var(--text-2);
    line-height: 1.4;
}

.bento-notification-text strong {
    color: var(--text-1);
    font-weight: 600;
}

/* stamp card in bento */
.stamp-row {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 16px;
}

.stamp {
    width: 36px; height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
}

.stamp.on  { background: rgba(0,230,118,0.12); border: 1px solid rgba(0,230,118,0.3); color: var(--g); }
.stamp.off { background: var(--ink-3); border: 1px solid var(--border); color: var(--text-3); }

.prog-bar-wrap {
    background: var(--ink-3);
    border-radius: 4px;
    height: 5px;
    overflow: hidden;
    margin-top: 14px;
}

.prog-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--g-dim), var(--g));
    border-radius: 4px;
    box-shadow: 0 0 8px rgba(0,230,118,0.3);
}

/* ══════════════════════════════════════════
   FOR WHO — redesigned
══════════════════════════════════════════ */
.biz-panel {
    background: var(--ink-2);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.biz-panel:hover {
    border-color: var(--border-g);
    box-shadow: 0 0 64px rgba(0,230,118,0.11), 0 28px 56px rgba(0,0,0,0.35);
}

/* coloured header zone */
.biz-panel-header {
    position: relative;
    padding: 36px 32px 28px;
    overflow: hidden;
    background:
        radial-gradient(ellipse 120% 80% at 50% 0%, rgba(0,230,118,0.07) 0%, transparent 70%),
        var(--ink-3);
    border-bottom: 1px solid var(--border);
}

.biz-panel-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0,230,118,0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,230,118,0.025) 1px, transparent 1px);
    background-size: 28px 28px;
}

.biz-panel-header-inner {
    position: relative;
    z-index: 1;
}

.biz-type-chip {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 4px 12px;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--g);
    background: rgba(0,230,118,0.08);
    border: 1px solid rgba(0,230,118,0.2);
    border-radius: 100px;
    margin-bottom: 18px;
}

.biz-icon-ring {
    width: 64px; height: 64px;
    border-radius: 16px;
    background: rgba(0,230,118,0.06);
    border: 1px solid rgba(0,230,118,0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--g);
    margin-bottom: 18px;
    box-shadow: 0 0 24px rgba(0,230,118,0.1);
    transition: all 0.3s;
}

.biz-panel:hover .biz-icon-ring {
    background: rgba(0,230,118,0.12);
    box-shadow: 0 0 36px rgba(0,230,118,0.2);
}

.biz-panel-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-1);
    margin-bottom: 8px;
    line-height: 1.2;
}

.biz-panel-desc {
    font-size: 0.85rem;
    color: var(--text-2);
    line-height: 1.7;
    margin-bottom: 16px;
}

.biz-examples {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.biz-example-tag {
    padding: 3px 10px;
    border-radius: 100px;
    background: var(--ink-4);
    border: 1px solid var(--border);
    font-size: 0.72rem;
    color: var(--text-3);
    font-weight: 500;
}

/* body */
.biz-panel-body {
    padding: 28px 32px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.biz-modules-label {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-3);
    margin-bottom: 14px;
}

.biz-chips-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 24px;
    flex: 1;
}

.biz-chip {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 10px 12px;
    background: var(--ink-3);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    color: var(--text-2);
    line-height: 1.3;
    transition: border-color 0.2s;
}

.biz-panel:hover .biz-chip {
    border-color: rgba(255,255,255,0.09);
}

.biz-chip i {
    color: var(--g);
    font-size: 0.82rem;
    width: 14px;
    text-align: center;
    flex-shrink: 0;
}

/* panel footer */
.biz-panel-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid var(--border);
    margin-top: auto;
}

.biz-module-count {
    font-size: 0.78rem;
    color: var(--text-3);
}

.biz-module-count strong {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    color: var(--g);
    font-weight: 700;
    margin-right: 4px;
}

.biz-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--g);
    text-decoration: none;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.biz-link:hover { opacity: 1; }

/* BOTH strip */
.both-strip {
    background: var(--ink-3);
    border: 1px solid var(--border-g);
    border-radius: var(--radius-md);
    padding: 28px 32px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 24px;
    align-items: center;
    margin-top: 16px;
    position: relative;
    overflow: hidden;
}

.both-strip::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 10%, var(--g-dim) 50%, transparent 90%);
    opacity: 0.4;
}

.both-icon {
    width: 48px; height: 48px;
    border-radius: 12px;
    background: rgba(0,230,118,0.08);
    border: 1px solid rgba(0,230,118,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--g);
    flex-shrink: 0;
}

.both-text-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-1);
    margin-bottom: 3px;
}

.both-text-sub {
    font-size: 0.82rem;
    color: var(--text-3);
    line-height: 1.5;
}

@media (max-width: 767px) {
    .biz-chips-grid { grid-template-columns: 1fr; }
    .biz-panel-header { padding: 28px 24px 22px; }
    .biz-panel-body { padding: 22px 24px; }
    .both-strip { grid-template-columns: 1fr; gap: 16px; }
    .both-strip > a { width: 100%; justify-content: center; }
}

/* ══════════════════════════════════════════
   PROCESS STEPS
══════════════════════════════════════════ */
.steps-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
}

.steps-row::before {
    content: '';
    position: absolute;
    top: 28px;
    left: calc(12.5% + 20px);
    right: calc(12.5% + 20px);
    height: 1px;
    background: linear-gradient(90deg, var(--border-g), var(--border-g));
    z-index: 0;
}

.step-item {
    padding: 0 16px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-num {
    width: 56px; height: 56px;
    border-radius: 50%;
    background: var(--ink-2);
    border: 1px solid var(--border-g);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--g);
    margin: 0 auto 20px;
    box-shadow: 0 0 0 6px var(--ink), 0 0 0 7px rgba(0,230,118,0.08);
    transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.step-item:hover .step-num {
    background: rgba(0,230,118,0.1);
    border-color: rgba(0,230,118,0.4);
    box-shadow: 0 0 0 6px var(--ink), 0 0 0 7px rgba(0,230,118,0.12), 0 0 32px rgba(0,230,118,0.25);
    transform: scale(1.07);
}

.step-name {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--text-1);
    margin-bottom: 8px;
}

.step-detail {
    font-size: 0.8rem;
    color: var(--text-3);
    line-height: 1.6;
}

@media (max-width: 767px) {
    .steps-row {
        grid-template-columns: 1fr 1fr;
        gap: 28px;
    }
    .steps-row::before { display: none; }
}

@media (max-width: 480px) {
    .steps-row { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════
   PRICING — static responsive plan grid
══════════════════════════════════════════ */

.plans-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    gap: 24px;
}

.plans-grid .plan-card {
    flex: 1 1 300px;
    max-width: 340px;
    min-width: 260px;
}

@keyframes plan-card-in {
    from { opacity: 0; transform: translateY(32px) scale(0.96); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}
.plans-grid .plan-card {
    opacity: 0;
    animation: plan-card-in 0.62s cubic-bezier(0.34, 1.22, 0.64, 1) forwards;
    animation-play-state: paused;
}
.plans-grid.pg-in .plan-card {
    animation-play-state: running;
}
.plans-grid .plan-card:nth-child(1) { animation-delay: 0ms; }
.plans-grid .plan-card:nth-child(2) { animation-delay: 110ms; }
.plans-grid .plan-card:nth-child(3) { animation-delay: 220ms; }
.plans-grid .plan-card:nth-child(4) { animation-delay: 330ms; }
.plans-grid .plan-card:nth-child(5) { animation-delay: 440ms; }
.plans-grid .plan-card:nth-child(n+6) { animation-delay: 550ms; }

@media (max-width: 640px) {
    .plans-grid { gap: 14px; }
}

.plan-card {
    background: var(--ink-2);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    transition: border-color 0.25s, transform 0.25s;
}

.plan-card:hover {
    border-color: var(--border-g);
    transform: translateY(-8px);
    box-shadow: 0 24px 56px rgba(0,0,0,0.44), 0 0 0 1px rgba(0,230,118,0.08);
}
.plan-card.featured:hover {
    transform: translateY(-8px);
    box-shadow:
        0 0 0 1px rgba(0,230,118,0.18),
        0 28px 64px rgba(0,230,118,0.22),
        0 0 48px rgba(0,230,118,0.15),
        inset 0 1px 0 rgba(0,230,118,0.22);
}

.plan-card.featured {
    background: linear-gradient(150deg, rgba(0,230,118,0.04) 0%, var(--ink-3) 40%, var(--ink-3) 100%);
    border-color: rgba(0,230,118,0.28);
    box-shadow:
        0 0 0 1px rgba(0,230,118,0.12),
        0 0 72px rgba(0,230,118,0.14),
        0 32px 64px rgba(0,0,0,0.55),
        inset 0 1px 0 rgba(0,230,118,0.18);
}

.plan-featured-badge {
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, var(--g-dark), var(--g));
    color: #000;
    font-size: 0.66rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 5px 16px;
    border-radius: 0 0 12px 12px;
    box-shadow: 0 4px 20px rgba(0,230,118,0.35);
    white-space: nowrap;
}

.plan-top-line {
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--g), transparent);
    margin: -36px -28px 32px;
    opacity: 0;
}

.plan-card.featured .plan-top-line { opacity: 1; }

.plan-name {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--g);
    margin-bottom: 16px;
}

.plan-price {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-1);
    line-height: 1;
    margin-bottom: 4px;
}

.plan-price sup {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-2);
    vertical-align: super;
    font-family: 'Inter', sans-serif;
}

.plan-cycle {
    font-size: 0.8rem;
    color: var(--text-3);
    margin-bottom: 24px;
}

.plan-divider {
    height: 1px;
    background: var(--border);
    margin-bottom: 24px;
}

.plan-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
    margin-bottom: 28px;
}

.plan-feature {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--text-2);
    line-height: 1.4;
}

.plan-feature i.on  { color: var(--g); font-size: 0.72rem; margin-top: 3px; }
.plan-feature i.off { color: var(--border); font-size: 0.72rem; margin-top: 3px; }
.plan-feature.muted { color: var(--text-3); }

.plan-btn {
    display: block;
    text-align: center;
    padding: 12px;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s;
    border: 1px solid var(--border);
    color: var(--text-2);
    background: transparent;
    letter-spacing: 0.3px;
}

.plan-btn:hover {
    border-color: rgba(255,255,255,0.18);
    color: var(--text-1);
    background: var(--ink-3);
}

.plan-btn.primary {
    background: linear-gradient(135deg, var(--g-dark) 0%, var(--g) 100%);
    color: #000;
    border-color: transparent;
    box-shadow: 0 0 28px rgba(0,230,118,0.28), 0 4px 12px rgba(0,0,0,0.3);
    font-weight: 800;
}

.plan-btn.primary:hover {
    background: #fff;
    color: #000;
    box-shadow: 0 0 44px rgba(0,230,118,0.42), 0 4px 16px rgba(0,0,0,0.3);
    transform: translateY(-1px);
}

/* ══════════════════════════════════════════
   SUBSCRIPTION MODAL
══════════════════════════════════════════ */
.sub-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0,0,0,0.75);
    backdrop-filter: blur(7px);
    -webkit-backdrop-filter: blur(7px);
    align-items: center;
    justify-content: center;
    padding: 16px;
}
.sub-modal.open { display: flex; }

.sub-modal-box {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 22px;
    width: 100%;
    max-width: 460px;
    padding: 36px 32px 30px;
    position: relative;
    box-shadow: 0 0 80px rgba(0,230,118,0.07), 0 28px 72px rgba(0,0,0,0.5);
    animation: smSlideIn .28s cubic-bezier(0.22,1,0.36,1);
}
@keyframes smSlideIn {
    from { opacity:0; transform:translateY(22px) scale(0.97); }
    to   { opacity:1; transform:none; }
}
.sub-modal-close {
    position: absolute;
    top: 14px; right: 16px;
    background: none;
    border: none;
    color: var(--text-3);
    font-size: 1rem;
    cursor: pointer;
    padding: 6px 10px;
    border-radius: 8px;
    line-height: 1;
    transition: color .2s, background .2s;
}
.sub-modal-close:hover { color: var(--text-1); background: rgba(255,255,255,.06); }

.sm-eyebrow {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--g);
    margin-bottom: 6px;
}
.sm-plan-name {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--text-1);
    margin: 0 0 8px;
}
.sm-price-row {
    display: flex;
    align-items: baseline;
    gap: 3px;
    margin-bottom: 3px;
}
.sm-price-sup {
    font-size: .95rem;
    font-weight: 700;
    color: var(--text-3);
    padding-bottom: 4px;
}
.sm-price-amt {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--text-1);
    line-height: 1;
}
.sm-price-cycle {
    font-size: 0.78rem;
    color: var(--text-3);
    align-self: flex-end;
    padding-bottom: 5px;
}
.sm-trial-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.71rem;
    font-weight: 700;
    color: var(--g);
    background: rgba(0,230,118,.08);
    border: 1px solid rgba(0,230,118,.22);
    border-radius: 6px;
    padding: 3px 10px;
    margin-top: 6px;
}
.sm-divider { border:none; border-top:1px solid var(--border); margin:20px 0; }

/* promo code input row */
.sm-promo-row {
    display: flex;
    gap: 8px;
    margin-bottom: 6px;
}
.sm-promo-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-3);
    margin-bottom: 8px;
    display: block;
    letter-spacing: .03em;
}
.sm-promo-input {
    flex: 1;
    background: var(--surface-2);
    border: 1.5px solid var(--border);
    border-radius: 10px;
    padding: 11px 14px;
    color: var(--text-1);
    font-size: 0.86rem;
    font-family: 'Space Grotesk', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    transition: border-color .2s;
    outline: none;
    min-width: 0;
}
.sm-promo-input::placeholder { text-transform: none; letter-spacing: normal; color: var(--text-3); font-size:.82rem; }
.sm-promo-input:focus { border-color: rgba(0,230,118,.5); }
.sm-promo-input.sm-valid  { border-color: var(--g); }
.sm-promo-input.sm-invalid{ border-color: #ff5252; }
.sm-promo-btn {
    background: var(--surface-2);
    border: 1.5px solid var(--border);
    border-radius: 10px;
    padding: 11px 18px;
    color: var(--text-2);
    font-size: 0.82rem;
    font-weight: 700;
    cursor: pointer;
    transition: all .2s;
    white-space: nowrap;
    font-family: 'Space Grotesk', sans-serif;
}
.sm-promo-btn:hover { border-color: var(--g); color: var(--g); }
.sm-promo-msg {
    font-size: 0.76rem;
    min-height: 16px;
    margin-bottom: 14px;
    padding: 0 2px;
    transition: all .2s;
}
.sm-promo-msg.ok  { color: var(--g); }
.sm-promo-msg.err { color: #ff6b6b; }

/* price breakdown */
.sm-breakdown {
    background: rgba(255,255,255,.03);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 14px 16px;
    display: flex;
    flex-direction: column;
    gap: 9px;
    margin-bottom: 20px;
}
.sm-bd-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.84rem;
    color: var(--text-2);
}
.sm-bd-row.sm-discount { color: var(--g); font-weight: 600; }
.sm-bd-row.sm-total {
    font-weight: 800;
    font-size: 1rem;
    color: var(--text-1);
    padding-top: 9px;
    margin-top: 2px;
    border-top: 1px solid var(--border);
}

/* subscribe submit button */
.sm-sub-btn {
    display: block;
    width: 100%;
    padding: 15px;
    background: var(--g);
    color: #000;
    font-size: 0.93rem;
    font-weight: 800;
    font-family: 'Space Grotesk', sans-serif;
    letter-spacing: 0.04em;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: background .22s, box-shadow .22s, transform .18s;
    text-align: center;
}
.sm-sub-btn:hover {
    background: #fff;
    box-shadow: 0 0 36px rgba(0,230,118,.3), 0 6px 20px rgba(0,0,0,.28);
    transform: translateY(-1px);
}
.sm-note {
    text-align: center;
    font-size: 0.73rem;
    color: var(--text-3);
    margin-top: 12px;
    line-height: 1.5;
}
.sm-note a { color: var(--g); text-decoration: none; }
.sm-note a:hover { text-decoration: underline; }
@keyframes smSpin { to { transform: rotate(360deg); } }

/* ══════════════════════════════════════════
   FAQ
══════════════════════════════════════════ */
.faq-item {
    border-bottom: 1px solid var(--border);
    transition: border-color 0.2s;
}

.faq-item:first-child { border-top: 1px solid var(--border); }

.faq-item.open {
    border-bottom-color: rgba(0,230,118,0.12);
}

.faq-q {
    width: 100%;
    background: none;
    border: none;
    padding: 22px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    cursor: pointer;
    text-align: left;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-1);
    transition: color 0.2s;
}

.faq-q:hover { color: var(--g); }

.faq-icon {
    width: 28px; height: 28px;
    border-radius: 50%;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    color: var(--text-3);
    flex-shrink: 0;
    transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.faq-item.open .faq-icon {
    border-color: var(--border-g);
    color: var(--g);
    background: rgba(0,230,118,0.1);
    box-shadow: 0 0 12px rgba(0,230,118,0.18);
    transform: rotate(45deg);
}

.faq-a {
    font-size: 0.875rem;
    color: var(--text-2);
    line-height: 1.75;
    max-width: 640px;
    max-height: 0;
    overflow: hidden;
    padding-bottom: 0;
    transition: max-height 0.48s cubic-bezier(0.22, 1, 0.36, 1), padding-bottom 0.36s;
}

.faq-item.open .faq-a {
    max-height: 340px;
    padding-bottom: 22px;
}

/* ══════════════════════════════════════════
   CTA FINAL
══════════════════════════════════════════ */
.cta-final {
    padding: 96px 0;
    position: relative;
    overflow: hidden;
}

.cta-final::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 700px 400px at 50% 100%, rgba(0,230,118,0.07) 0%, transparent 70%);
    pointer-events: none;
}

.cta-inner {
    background: linear-gradient(150deg, rgba(0,230,118,0.04) 0%, var(--ink-2) 40%, rgba(0,230,118,0.02) 100%);
    border: 1px solid rgba(0,230,118,0.22);
    border-radius: 28px;
    padding: 72px 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow:
        0 0 0 1px rgba(0,230,118,0.07),
        0 48px 96px rgba(0,0,0,0.5),
        inset 0 1px 0 rgba(0,230,118,0.16);
}

.cta-inner::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 8%, var(--g) 50%, transparent 92%);
    opacity: 0.55;
}

.cta-inner::after {
    content: '';
    position: absolute;
    top: -140px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 360px;
    background: radial-gradient(ellipse, rgba(0,230,118,0.09) 0%, transparent 70%);
    pointer-events: none;
    animation: orb-breathe 10s ease-in-out infinite;
}

.cta-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--text-1);
    margin-bottom: 16px;
    line-height: 1.15;
    position: relative;
    z-index: 1;
}

.cta-sub {
    font-size: 1rem;
    color: var(--text-2);
    max-width: 480px;
    margin: 0 auto 36px;
    line-height: 1.75;
    position: relative;
    z-index: 1;
}

.cta-btns {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
    margin-bottom: 24px;
}

.cta-note {
    font-size: 0.78rem;
    color: var(--text-3);
    position: relative;
    z-index: 1;
}

.cta-note span { margin: 0 8px; opacity: 0.3; }

@media (max-width: 767px) {
    .hero-wrap { padding: 120px 0 60px; }
    .hstat { padding: 16px 12px; }
    .hstat-val { font-size: 1.35rem; }
    .cta-inner { padding: 44px 24px; }
    .plan-card { padding: 28px 22px; }
    .who-card { padding: 32px 24px; }
}

/* ══════════════════════════════════════════
   SCROLL REVEAL ANIMATIONS
══════════════════════════════════════════ */
.reveal-init {
    opacity: 0;
    transform: translate3d(0, 28px, 0);
    transition:
        opacity  0.72s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.72s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: var(--reveal-delay, 0ms);
    will-change: transform, opacity;
}

/* fade — opacity only, no movement (eyebrows, labels) */
.reveal-init[data-reveal="fade"] {
    opacity: 0;
    transform: none;
    transition:
        opacity 0.85s cubic-bezier(0.4, 0, 0.2, 1);
    transition-delay: var(--reveal-delay, 0ms);
}

/* rise — larger upward shift (stats, big numbers) */
.reveal-init[data-reveal="rise"] {
    opacity: 0;
    transform: translate3d(0, 46px, 0);
    transition:
        opacity  0.75s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: var(--reveal-delay, 0ms);
}

/* flip — subtle 3-D card turn (bento, pricing) */
.reveal-init[data-reveal="flip"] {
    opacity: 0;
    transform: perspective(700px) rotateX(10deg) translate3d(0, 22px, 0);
    transition:
        opacity  0.8s  cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: var(--reveal-delay, 0ms);
}

/* slide-left / slide-right — horizontal (steps, faq) */
.reveal-init[data-reveal="slide-left"] {
    opacity: 0;
    transform: translate3d(-46px, 0, 0);
    transition:
        opacity  0.65s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: var(--reveal-delay, 0ms);
}

.reveal-init[data-reveal="slide-right"] {
    opacity: 0;
    transform: translate3d(46px, 0, 0);
    transition:
        opacity  0.65s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: var(--reveal-delay, 0ms);
}

/* zoom — scale + gentle rise (original, kept) */
.reveal-init[data-reveal="zoom"] {
    opacity: 0;
    transform: translate3d(0, 18px, 0) scale(0.962);
    transition:
        opacity  0.75s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: var(--reveal-delay, 0ms);
}

/* ── revealed state ── */
.reveal-init.reveal-in {
    opacity: 1;
    transform: none;
}

@media (prefers-reduced-motion: reduce) {
    .reveal-init,
    .reveal-init[data-reveal="fade"],
    .reveal-init[data-reveal="rise"],
    .reveal-init[data-reveal="flip"],
    .reveal-init[data-reveal="slide-left"],
    .reveal-init[data-reveal="slide-right"],
    .reveal-init[data-reveal="zoom"] {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}

/* ══════════════════════════════════════════
   PLATFORM COMPATIBILITY STRIP
══════════════════════════════════════════ */
.platform-strip {
    background: var(--ink-2);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 22px 0;
}

.platform-strip-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    row-gap: 10px;
}

.platform-strip-label {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--text-3);
    margin-right: 8px;
    white-space: nowrap;
    flex-shrink: 0;
}

.platform-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 15px;
    border-radius: 100px;
    border: 1px solid var(--border);
    background: var(--ink-3);
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-3);
    white-space: nowrap;
    transition: border-color 0.25s, color 0.25s, background 0.25s, box-shadow 0.25s;
    cursor: default;
}

.platform-badge i { font-size: 0.85rem; }

.platform-badge:hover {
    border-color: var(--border-g);
    color: var(--text-2);
    background: rgba(0,230,118,0.05);
    box-shadow: 0 0 16px rgba(0,230,118,0.08);
}

/* ══════════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════════ */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

@media (max-width: 991px) {
    .testimonials-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
    .testimonials-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
}

.testimonial-card {
    background: var(--ink-2);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
    overflow: hidden;
    transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0,230,118,0.35), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.testimonial-card:hover {
    border-color: var(--border-g);
    transform: translateY(-4px);
    box-shadow: 0 20px 56px rgba(0,0,0,0.45), 0 0 48px rgba(0,230,118,0.07);
}

.testimonial-card:hover::before { opacity: 1; }

.testimonial-stars {
    display: flex;
    gap: 3px;
}

.testimonial-stars i { color: #fbbf24; font-size: 0.78rem; }

.testimonial-quote {
    font-size: 0.875rem;
    color: var(--text-2);
    line-height: 1.78;
    flex: 1;
}

.testimonial-quote strong { color: var(--text-1); font-weight: 600; }

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
    flex-wrap: wrap;
}

.testimonial-avatar {
    width: 38px; height: 38px;
    border-radius: 10px;
    background: rgba(0,230,118,0.08);
    border: 1px solid rgba(0,230,118,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.82rem;
    color: var(--g);
    flex-shrink: 0;
    font-weight: 800;
    font-family: 'Space Grotesk', sans-serif;
    letter-spacing: 0.5px;
}

.testimonial-name {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-1);
    line-height: 1.2;
}

.testimonial-biz {
    font-size: 0.73rem;
    color: var(--text-3);
    margin-top: 2px;
}

.testimonial-tag {
    margin-left: auto;
    padding: 3px 10px;
    border-radius: 100px;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--g);
    background: rgba(0,230,118,0.08);
    border: 1px solid rgba(0,230,118,0.2);
    white-space: nowrap;
    flex-shrink: 0;
}

/* ══════════════════════════════════════════
   TRUST BAR (below hero)
══════════════════════════════════════════ */
.trust-bar {
    background: rgba(17,18,19,0.65);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 14px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    flex-wrap: wrap;
    margin-top: 24px;
}

.trust-bar-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    color: var(--text-3);
    white-space: nowrap;
}

.trust-bar-item i { color: var(--g); font-size: 0.72rem; }

.trust-bar-sep {
    width: 1px;
    height: 16px;
    background: var(--border);
    flex-shrink: 0;
}

@media (max-width: 640px) {
    .trust-bar { gap: 14px; padding: 12px 16px; }
    .trust-bar-sep { display: none; }
}

/* ══════════════════════════════════════════
   FEATURE HIGHLIGHT BAND
══════════════════════════════════════════ */
.feature-band {
    background: linear-gradient(135deg, rgba(0,230,118,0.04) 0%, var(--ink-2) 60%);
    border-top: 1px solid var(--border-g);
    border-bottom: 1px solid var(--border);
    padding: 20px 0;
}

.feature-band-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.feature-band-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.83rem;
    color: var(--text-2);
}

.feature-band-item i {
    color: var(--g);
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .feature-band-inner { justify-content: center; gap: 16px; }
}

/* ══════════════════════════════════════════
   ENHANCED HERO FLOATING METRICS
══════════════════════════════════════════ */
.hero-metrics-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 32px;
}

.hero-metric {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(17,18,19,0.7);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 12px 18px;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transition: border-color 0.25s, box-shadow 0.25s;
}

.hero-metric:hover {
    border-color: var(--border-g);
    box-shadow: 0 0 24px rgba(0,230,118,0.1);
}

.hero-metric-icon {
    width: 32px; height: 32px;
    border-radius: 8px;
    background: rgba(0,230,118,0.1);
    border: 1px solid rgba(0,230,118,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.82rem;
    color: var(--g);
    flex-shrink: 0;
}

.hero-metric-val {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-1);
    line-height: 1;
}

.hero-metric-lbl {
    font-size: 0.7rem;
    color: var(--text-3);
    margin-top: 2px;
}

/* ══════════════════════════════════════════
   ENHANCED BENTO CARD TOP ACCENT
══════════════════════════════════════════ */
.bento-card-accent {
    border-color: rgba(0,230,118,0.15);
}

.bento-card-accent::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--g-dim), transparent);
    opacity: 0.45;
}

/* ══════════════════════════════════════════
   LIGHT MODE ADJUSTMENTS
══════════════════════════════════════════ */
html[data-theme="light"] .hero-orb { display: none; }
html[data-theme="light"] .hero-orb-2 { display: none; }
html[data-theme="light"] .grid-bg {
    background-image:
        linear-gradient(rgba(0,180,90,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,180,90,0.04) 1px, transparent 1px);
}
html[data-theme="light"] .platform-strip { background: var(--ink-3); }
html[data-theme="light"] .hero-metric { background: rgba(240,241,245,0.9); }
html[data-theme="light"] .cta-inner {
    background: linear-gradient(150deg, rgba(0,180,90,0.05) 0%, var(--ink-1) 40%);
}
html[data-theme="light"] .hero-stats-bar {
    background: rgba(255,255,255,0.9);
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}

/* ══════════════════════════════════════════
   HORIZONTAL OVERFLOW CONTAINMENT
══════════════════════════════════════════ */
.section-block,
.section-sm,
.feature-band,
.platform-strip,
.cta-final {
    overflow-x: hidden;
}

/* On mobile, replace horizontal slide animations with the standard
   vertical rise so the initial off-screen position never escapes the
   viewport — this is the primary cause of horizontal scroll on phones */
@media (max-width: 767px) {
    .reveal-init[data-reveal="slide-left"],
    .reveal-init[data-reveal="slide-right"] {
        transform: translate3d(0, 28px, 0);
    }
    .reveal-init[data-reveal="slide-left"].reveal-in,
    .reveal-init[data-reveal="slide-right"].reveal-in {
        transform: none;
    }
}

/* ══════════════════════════════════════════
   FEATURE JOURNEY CARDS — Scroll Stack
   Pinning is native CSS `position: sticky` — the browser
   owns the "hold in place" behaviour, so nothing here is
   scroll-linked for POSITION. JS (below, in the script
   block) only ever writes a small, bounded translateY +
   scale for depth once the next card arrives, purely
   cosmetic and never fighting the sticky layout.
══════════════════════════════════════════ */
.ss-outer {
    position: relative;
    padding: 24px 0 60px;
    /* NOTE: no overflow-x here on purpose — any non-`visible` overflow on
       an ancestor turns it into its own scroll container and silently
       breaks `position: sticky` on the .ss-card children below. Horizontal
       clipping is already handled globally by `html { overflow-x: hidden }`
       in base.html. */
}

.ss-card {
    background: var(--ink-2);
    border: 1px solid var(--border);
    border-radius: 28px;
    overflow: hidden;
    max-width: 900px;
    margin: 0 auto 90px;
    box-shadow: 0 6px 40px rgba(0,0,0,0.28), 0 2px 10px rgba(0,0,0,0.16);

    /* native sticky pin — `--stack-i` (set once by JS) staggers the
       offset per card so older cards peek out above the active one */
    position: sticky;
    top: calc(96px + var(--stack-i, 0) * 14px);
    z-index: calc(var(--stack-i, 0) + 1);

    transform: translate3d(0, 0, 0) scale(1);
    transform-origin: top center;
    will-change: transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.ss-card:last-child { margin-bottom: 0; }

@media (max-width: 767px) {
    .ss-card { top: 72px; margin-bottom: 56px; }
}

@media (prefers-reduced-motion: reduce) {
    .ss-card {
        position: static !important;
        transform: none !important;
    }
}

.ss-card::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 8%, rgba(0,230,118,0.5) 50%, transparent 92%);
    z-index: 2;
}

.ss-card-inner {
    display: grid;
    grid-template-columns: 1fr 300px;
    min-height: 340px;
}

.ss-card-left {
    padding: 52px 48px 52px 52px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.ss-card-right {
    background: var(--ink-3);
    border-left: 1px solid var(--border);
    border-radius: 0 28px 28px 0;
    padding: 36px 28px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.ss-card-right::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 65% 35%, rgba(0,230,118,0.065) 0%, transparent 65%);
    pointer-events: none;
}

.ss-step-num {
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--g);
    opacity: 0.5;
    margin-bottom: 10px;
}

.ss-card-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 13px;
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--g);
    background: rgba(0,230,118,0.08);
    border: 1px solid rgba(0,230,118,0.22);
    border-radius: 100px;
    margin-bottom: 16px;
    width: fit-content;
}

.ss-card-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.3rem, 2.2vw, 1.7rem);
    font-weight: 700;
    color: var(--text-1);
    line-height: 1.22;
    margin-bottom: 13px;
    letter-spacing: -0.4px;
}

.ss-card-desc {
    font-size: 0.875rem;
    color: var(--text-2);
    line-height: 1.78;
    margin-bottom: 18px;
    max-width: 400px;
}

.ss-feat-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 9px;
    padding: 0;
}

.ss-feat-list li {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 0.82rem;
    color: var(--text-2);
}

.ss-feat-list li i {
    color: var(--g);
    font-size: 0.65rem;
    flex-shrink: 0;
}

/* Right-panel visual widgets */
.ss-mini-box {
    background: var(--ink-2);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 13px 15px;
    margin-bottom: 9px;
    position: relative;
    z-index: 1;
}

.ss-mini-box:last-child { margin-bottom: 0; }

.ss-mini-lbl {
    font-size: 0.61rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-3);
    margin-bottom: 6px;
}

.ss-mini-val {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--g);
    line-height: 1;
}

.ss-notif {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: var(--ink-2);
    border: 1px solid var(--border);
    border-radius: 13px;
    padding: 11px 12px;
    margin-bottom: 8px;
    position: relative;
    z-index: 1;
}

.ss-notif:last-child { margin-bottom: 0; }

.ss-notif-ic {
    width: 28px; height: 28px;
    border-radius: 7px;
    background: rgba(0,230,118,0.1);
    border: 1px solid rgba(0,230,118,0.22);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.72rem;
    color: var(--g);
    flex-shrink: 0;
}

.ss-notif-body { font-size: 0.73rem; color: var(--text-2); line-height: 1.45; }
.ss-notif-body strong { color: var(--text-1); font-weight: 600; display: block; margin-bottom: 2px; }

.ss-bar-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 7px;
    position: relative;
    z-index: 1;
}

.ss-bar-row:last-child { margin-bottom: 0; }

.ss-bar-label { font-size: 0.72rem; color: var(--text-2); white-space: nowrap; }
.ss-bar-pct   { font-size: 0.72rem; font-weight: 700; color: var(--g); white-space: nowrap; }

.ss-bar-track {
    flex: 1;
    height: 4px;
    background: rgba(255,255,255,0.07);
    border-radius: 2px;
    overflow: hidden;
}

.ss-bar-fill {
    height: 100%;
    border-radius: 2px;
    background: linear-gradient(90deg, var(--g-dim), var(--g));
}

/* Responsive */
@media (max-width: 991px) {
    .ss-card-inner { grid-template-columns: 1fr; }
    .ss-card-right {
        border-left: none;
        border-top: 1px solid var(--border);
        border-radius: 0 0 28px 28px;
        padding: 28px 32px 32px;
    }
    .ss-card-left { padding: 40px 36px 28px; }
}

@media (max-width: 640px) {
    .ss-card { border-radius: 20px; margin-bottom: 24px; }
    .ss-card-right { border-radius: 0 0 20px 20px; padding: 22px 22px 28px; }
    .ss-card-left { padding: 28px 22px 22px; }
    .ss-outer { padding: 16px 0 24px; }
}
