/* global font-family */
@font-face {
    font-family: 'SF Pro Display Medium';
    src: url('../fonts/SFProDisplay-Medium.woff2') format('woff2'),
        url('../fonts/SFProDisplay-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'SF Pro Display';
    src: url('../fonts/SFProDisplay-Regular.woff2') format('woff2'),
        url('../fonts/SFProDisplay-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* global font-family end */



*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    outline: none;
}

:root {
    --bg: #dce9f5;
    --surface: #ffffff;
    --teal: #00d4c8;
    --teal-dark: #00b8ad;
    --navy: #0B0F1E;
    --text: #0B0F1E;
    --darkblue: #1A6BFF;
    --green: #00C566;
    --muted: #3E4561;
    --badge-bg: #1a2e44;
    --card-bg: rgba(255, 255, 255, 0.85);
    --shadow-sm: 0 4px 16px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 12px 40px rgba(0, 0, 0, 0.13);
    --shadow-lg: 0 24px 72px rgba(0, 0, 0, 0.18);
    --radius: 16px;
    --font: 'SF Pro Display';
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'SF Pro Display';
    background: var(--surface);
    color: var(--text);
    overflow-x: hidden;
    min-height: 100vh;
}

h1,
h2,
h3,
h4 {
    font-family: 'SF Pro Display Medium';
}

.container {
    max-width: 1325px;
    margin: 0 auto;
    padding: 72px 20px 0;
}

/* ─── HEADER ────────────────────────────────────────────────────── */
header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.7);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}

.nav {
    max-width: 1325px;
    margin: 0 auto;
    padding: 0 20px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* Logo */
.logo {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -0.5px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 1px;
    width: 100%;
    justify-content: center;
}

.logo .dot {
    color: var(--teal);
}

/* CTA Button */
.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--teal);
    color: var(--navy);
    font-family: var(--font);
    font-size: 0.88rem;
    font-weight: 700;
    padding: 15px 22px;
    border-radius: 7px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    white-space: nowrap;
    box-shadow: 0 4px 18px rgba(0, 212, 200, 0.35);
    position: absolute;
    right: 20px;
}

.btn-cta:hover {
    background: var(--teal-dark);
    transform: translateY(-1px);
    box-shadow: 0 8px 26px rgba(0, 212, 200, 0.45);
}

.btn-cta svg {
    flex-shrink: 0;
}

/* ─── HERO ──────────────────────────────────────────────────────── */
.hero {
    position: relative;
    z-index: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: url(../../assets/images/hero-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
}

/* Badge */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    border-radius: 40px;
    background:linear-gradient(90deg,#1e4ed8,#4f46e5);
    border: 2px solid #3b82f6;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    margin-bottom: 36px;
    letter-spacing: 0.01em;
    animation: fadeDown 0.6s ease both;
}

.badge-dot {
    width: 7px;
    height: 7px;
    background: var(--surface);
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 0 0 2px rgba(0, 212, 200, 0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 0 0 2px rgba(0, 212, 200, 0.3);
    }

    50% {
        box-shadow: 0 0 0 5px rgba(0, 212, 200, 0.1);
    }
}

/* Headline */
.headline {
    font-size: clamp(2.6rem, 6vw, 5rem);
    font-weight: 900;
    line-height: 1.07;
    letter-spacing: -2px;
    color: var(--navy);
    max-width: 820px;
    animation: fadeDown 0.7s 0.1s ease both;
}

.headline span {
    color: var(--teal);
    display: block;
}

/* Sub */
.subtext {
    margin-top: 24px;
    font-size: 1.05rem;
    color: var(--muted);
    line-height: 1.7;
    max-width: 480px;
    font-weight: 500;
    animation: fadeDown 0.7s 0.2s ease both;
    width: 100%;
    display: inline-block;
}

/* App buttons */
.app-btns {
    display: flex;
    gap: 14px;
    margin-top: 36px;
    flex-wrap: wrap;
    justify-content: center;
    animation: fadeDown 0.7s 0.3s ease both;
}

.btn-store {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    border-radius: 14px;
    font-family: var(--font);
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.18s, box-shadow 0.18s;
    cursor: pointer;
}

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

.btn-store.apple {
    background: var(--navy);
    color: #fff;
    box-shadow: var(--shadow-sm);
}

.btn-store.apple:hover {
    box-shadow: var(--shadow-md);
}

.btn-store.google {
    background: var(--surface);
    color: var(--navy);
    border: 1.5px solid rgba(0, 0, 0, 0.1);
    box-shadow: var(--shadow-sm);
}

.btn-store.google:hover {
    box-shadow: var(--shadow-md);
}

.btn-store .store-label {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.2;
}

.btn-store .store-label small {
    font-size: 0.7rem;
    font-weight: 500;
    opacity: 0.7;
}

.btn-store .store-label strong {
    font-size: 1rem;
}

/* Social proof */
.social-proof {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-top: 24px;
    font-size: 0.88rem;
    color: var(--muted);
    font-weight: 500;
    animation: fadeDown 0.7s 0.4s ease both;
    justify-content: center;
}

.social-proof .avatars img {
    width: 100%;
}


/* ─── PHONE MOCKUP CLUSTER ──────────────────────────────────────── */
.phones-wrapper {
    position: relative;
    width: 100%;
    max-width: 860px;
    margin: 64px auto 0;
    animation: fadeUp 0.9s 0.5s ease both;
}

.phones-wrapper::before {
    content: '';
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 60px;
    background: radial-gradient(ellipse, rgba(0, 212, 200, 0.25) 0%, transparent 70%);
    filter: blur(12px);
    border-radius: 50%;
}

.phones-wrapper img {
    width: 100%;
}

/* ─── Process Section ───────────────────────────────────────── */
.process {
    position: relative;
    z-index: 1;
    max-width: 1325px;
    margin: 0 auto;
    padding: 90px 28px 100px;
    text-align: center;
}

.process-header {
    margin-bottom: 52px;
}

.process-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--darkblue);
    text-transform: uppercase;
    margin-bottom: 16px;
}

.process-title {
    font-size: clamp(2rem, 4vw, 2.9rem);
    font-weight: 900;
    letter-spacing: -1.5px;
    color: var(--navy);
    line-height: 1.1;
}

.process-accent {
    color: var(--teal);
}

/* ─── Steps row ─────────────────────────────────────────────── */
.process-steps {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0;
    align-items: start;
    padding-top: 26px;
}

/* Horizontal connector line behind the step numbers */
.process-line {
    position: absolute;
    top: 81px;
    left: calc(16.66% + 20px);
    right: calc(16.66% + 20px);
    height: 1.5px;
    z-index: 2;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.12) 0%, #0D47D9 50%, rgba(255, 255, 255, 0.12) 100%);
    display: none;
}
/* .process-card.one:after,
.process-card.last:after{
    content: "";
    position: absolute;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.12) 0%, #0D47D9 50%, rgba(255, 255, 255, 0.12) 100%);
    height: 1px;
    top: 55px;
    left: 220px;
    width: 20%;
} */

/* .process-card.last:after {
    left: auto;
    right: 220px;
} */

.process-card-mid:after {
     content: "";
     position: absolute;
     background: linear-gradient(90deg, rgba(255, 255, 255, 0.12) 0%, #0D47D9 50%, rgba(255, 255, 255, 0.12) 100%);
     height: 1px;
    top: 81px;
    left: auto;
    width: 70%;
}


/* ─── Individual card ───────────────────────────────────────── */
.process-card {
    background: url(../../assets/images/process-bg-box.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.9);
    padding: 30px 28px 36px;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
    transition: box-shadow 0.25s, transform 0.25s;
    margin: 0 10px;
    height: 100%;
}

.process-card:hover {
    box-shadow: var(--shadow-md);
}

/* Middle card gets a slightly elevated feel */

/* Step number badge */
.process-num {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: linear-gradient(135deg, #1a6ce7 0%, #1253c4 100%);
    color: #fff;
    font-size: 1.3rem;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    /* half pops above card top */
    margin-bottom: 24px;
    box-shadow: 0 8px 24px rgba(26, 108, 231, 0.35);
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}

.process-step-title {
    color: var(--navy);
    margin-bottom: 10px;
    /* padding-top: 70px; */
    font-weight: 700;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: -0.42px;
    text-align: center;
    vertical-align: middle;
}

.process-step-desc {
    font-size: 0.88rem;
    color: #808080;
    line-height: 1.65;
    font-weight: 500;
}

/* Subtle grid decoration inside each card */
.process-card-deco {
    position: absolute;
    background: url(../../assets/images/process-bg-box.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    border-radius: 20px;
    width: 100%;
    height: 100%;
    top: 0;
    z-index: -1;
    display: none;
}

/* ─── Section wrapper ───────────────────────────────────────── */
.wyg {
    position: relative;
    z-index: 1;
    padding: 0px 0px 80px;
    background: #F7F9FC;
}

/* ─── Header ────────────────────────────────────────────────── */
.wyg-header {
    text-align: center;
    margin-bottom: 56px;
}

.wyg-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--darkblue);
    text-transform: uppercase;
    margin-bottom: 18px;
}

.eyebrow-line {
    display: inline-block;
    width: 28px;
    height: 2px;
    background: var(--teal);
    border-radius: 2px;
}

.wyg-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -1.5px;
    color: var(--navy);
    margin-bottom: 14px;
}

.wyg-title-accent {
    color: var(--teal);
}

.wyg-sub {
    font-size: 1rem;
    color: var(--muted);
    font-weight: 500;
}

/* ─── Grid ──────────────────────────────────────────────────── */
.wyg-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* ─── Base card ─────────────────────────────────────────────── */
.feat-card {
    background: var(--surface);
    border-radius: 24px;
    border: 1.17px solid #DDE2EE;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    display: flex;
    align-items: stretch;
    transition: box-shadow 0.25s, transform 0.25s;
}

.feat-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

/* Wide = full-row card */
.feat-wide {
    min-height: 260px;
}

.feat-reverse {
    flex-direction: row-reverse;
}

/* ─── Text side ─────────────────────────────────────────────── */
.feat-text {
    flex: 1;
    padding: 40px 44px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.feat-badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--darkblue);
    background: #EEF4FF;
    border: 1px solid #C4D8FF;
    border-radius: 100px;
    padding: 4px 12px;
    margin-bottom: 16px;
    width: fit-content;
}

.feat-badge-teal {
    color: var(--teal-dark);
    background: #e0faf9;
    border-color: #a0ede9;
}

.feat-heading {
    font-size: 2.4rem;
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: -0.7px;
    color: var(--text);
    margin-bottom: 12px;
}

.feat-heading-sm {
    font-size: 30px;
}

.feat-desc {
    font-size: 1rem;
    color: var(--muted);
    line-height: 1.65;
    margin-bottom: 18px;
    max-width: 500px;
}

.feat-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.feat-list li {
    font-size: 0.94rem;
    font-weight: 400;
    color: var(--muted);
    display: flex;
    align-items: center;
    gap: 8px;
}

.feat-list li::before {
    content: '';
    width: 24px;
    height: 24px;
    background: url(../../assets/images/scanner-check.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 24px;
}

/* ─── Visual side ───────────────────────────────────────────── */
.feat-visual {
    flex: 1;
    background: linear-gradient(133.21deg, #F0F5FF 0%, #EEF4FF 100%);
    padding: 28px 32px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    position: relative;
}

.feat-visual-sm {
    padding: 20px 24px;
}

/* Pill chips */
.vis-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    font-weight: 700;
    padding: 10px 14px;
    border-radius: 14px;
}

.vis-pill-white {
    background: #fff;
    box-shadow: 0px 4.67px 18.67px 0px #00000012;
    border: 1.17px solid #DDE2EE;
    color: var(--text);
}

.vis-pill-dark {
    background: #fff;
    box-shadow: 0px 4.67px 18.67px 0px #00000012;
    border: 1.17px solid #DDE2EE;
    color: var(--text);
}

.vis-pill-amber {
    background: #fef9c3;
    color: #a16207;
    border: 1px solid #fde68a;
}

.vis-pill-teal {
    background: #e0faf9;
    color: var(--teal-dark);
    border: 1px solid #a0ede9;
}

.vis-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #16a34a;
    animation: pulse 2s infinite;
}

.vis-pill-green {
    color: var(--green);
}

/* ─── Mock card (phone UI panel) ───────────────────────────── */


.mocks-card {
    text-align: center;
    margin: auto;
}

.mocks-card img {
    height: 280px;
    width: 100%;
    box-shadow: 0px 9.33px 23.33px 0px #00000012;
    border-radius: 20px;
}


/* Half-width row */
.feat-row-half {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.feat-half {
    flex-direction: column;
}

.feat-half .feat-text {
    padding: 32px 32px 20px;
}

.feat-half .feat-desc {
    max-width: 100%;
}

/* Colour helpers */
.up {
    color: #16a34a;
}

.down {
    color: #dc2626;
}

/* ─── REVIEW Section ───────────────────────────────────────────── */
.reviews-section {
    position: relative;
    z-index: 1;
    padding: 30px 28px 80px;
}

/* Header row */
.reviews-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    max-width: 1325px;
    margin: 0 auto;
    padding: 0px 20px;
    margin-bottom: 48px;
}

.reviews-header-left {
    flex: 1;
}

.reviews-title {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 900;
    letter-spacing: -1.5px;
    color: var(--navy);
    line-height: 1.1;
    margin-bottom: 10px;
}

.reviews-accent {
    color: var(--teal);
}

.reviews-meta {
    font-size: 0.88rem;
    color: #8890A8;
    font-weight: 500;
}

/* Right score block */
.reviews-header-right {
    text-align: right;
    flex-shrink: 0;
}

.reviews-score {
    font-size: 5rem;
    font-weight: 900;
    color: var(--navy);
    line-height: 1;
    letter-spacing: -3px;
}

.reviews-stars {
    font-size: 1.3rem;
    color: #f59e0b;
    letter-spacing: 2px;
    margin: 4px 0;
}

.reviews-count {
    font-size: 0.82rem;
    color: var(--muted);
    font-weight: 600;
}

/* ─── Track wrapper ─────────────────────────────────────────── */
.reviews-track-wrap {
    position: relative;
    overflow: hidden;
}

.reviews-track {
    display: flex;
    flex-direction: column;
    gap: 16px;
    cursor: grab;
    user-select: none;
}

.reviews-track.dragging {
    cursor: grabbing;
}

/* Each horizontal row */
.reviews-row {
    display: flex;
    gap: 16px;
    transition: transform 0.6s cubic-bezier(.22, .68, 0, 1.1);
    padding-top: 8px;
    padding-bottom: 8px;
}

/* Second row starts offset to show partial card effect */
.reviews-row-offset {
    padding-left: 180px;
}

/* ─── Individual review card ────────────────────────────────── */
.rv-card {
    background: #F7F9FC;
    border: 1px solid #DDE2EE;
    border-radius: 20px;
    padding: 24px 24px 20px;
    min-width: 410px;
    max-width: 410px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: transform 0.25s cubic-bezier(.22, .68, 0, 1.2),
        box-shadow 0.25s ease;
}

.rv-card:hover {
    transform: translateY(-5px) scale(1.015);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.13);
}

.rv-card-dim {
    opacity: 0.55;
}

.rv-card-dim:hover {
    opacity: 1;
}

/* Top row: stars + quote mark */
.rv-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.rv-stars {
    font-size: 0.82rem;
    color: #f59e0b;
    letter-spacing: 1px;
}

.rv-quote {
    font-size: 2.5rem;
    line-height: 1;
    color: #e2eaf4;
    font-family: Georgia, serif;
    font-weight: 900;
    margin-top: -8px;
}

.rv-title {
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -0.2px;
}

.rv-body {
    font-size: 0.82rem;
    color: var(--muted);
    line-height: 1.65;
    font-weight: 500;
    flex: 1;
}

.rv-body strong {
    color: var(--navy);
    font-weight: 700;
}

/* Author row */
.rv-author {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 6px;
    padding-top: 14px;
    border-top: 1px solid #f0f4f8;
}

.rv-avatar {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.68rem;
    font-weight: 800;
    color: #fff;
    flex-shrink: 0;
}

.rv-name {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--navy);
}

.rv-source {
    font-size: 0.65rem;
    color: var(--muted);
    font-weight: 500;
    margin-top: 1px;
}

/* ─── Fade edge gradients ───────────────────────────────────── */
.rv-fade {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 120px;
    pointer-events: none;
    z-index: 2;
}

.rv-fade-left {
    left: 0;
    background: linear-gradient(to right, var(--bg), transparent);
}

.rv-fade-right {
    right: 0;
    background: linear-gradient(to left, var(--bg), transparent);
}

/* ─── Auto-scroll animation ─────────────────────────────────── */
@keyframes scrollRow1 {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes scrollRow2 {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(50%);
    }
}

/* ─── Responsive ────────────────────────────────────────────── */
@media (max-width: 700px) {
    .reviews-header {
        flex-direction: column;
    }

    .reviews-header-right {
        text-align: left;
    }

    .reviews-score {
        font-size: 3.5rem;
    }

    .reviews-row-offset {
        padding-left: 0;
    }
}

/* ─── CTA Section ───────────────────────────────────────────── */
.cta-section {
    position: relative;
    z-index: 1;
    border-radius: 28px;
    background: url(../../assets/images/cta-background.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
    padding: 80px 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 420px;
}

/* Subtle radial glow */
.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 80% at 50% 50%, rgba(255, 255, 255, 0.07) 0%, transparent 70%);
    pointer-events: none;
}

/* ─── Centre body ───────────────────────────────────────────── */
.cta-body {
    text-align: center;
    z-index: 2;
    max-width: 720px;
}

.cta-eyebrow {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    color: var(--surface);
    margin-bottom: 18px;
}

.cta-title {
    font-size: clamp(2rem, 4.5vw, 4.4rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.1;
    letter-spacing: -1.5px;
    margin-bottom: 20px;
}

.cta-desc {
    font-size: 0.95rem;
    color: rgb(255, 255, 255);
    line-height: 1.7;
    font-weight: 500;
    margin-bottom: 32px;
}

.cta-btns {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.btn-store-light {
    background: rgba(255, 255, 255, 0.15) !important;
    color: #fff !important;
    border: 1.5px solid rgba(255, 255, 255, 0.3) !important;
    backdrop-filter: blur(8px);
}

.btn-store-light:hover {
    background: rgba(255, 255, 255, 0.22) !important;
}

.cta-footnote {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.904);
    font-weight: 500;
}


/* ─── Footer ────────────────────────────────────────────────── */
.site-footer {
    position: relative;
    z-index: 1;
    background: #fff;
    margin: 0 28px;
    border-radius: 0 0 24px 24px;
    border-top: 1px solid rgba(0, 0, 0, 0.07);
}

.footer-inner {
    max-width: 1325px;
    margin: 0 auto;
    padding: 40px 44px;
    display: flex;
    align-items: flex-start;
    gap: 60px;
}

.footer-brand {
    flex-shrink: 0;
}

.footer-tagline {
    font-size: 10px;
    color: var(--muted);
    font-weight: 500;
    margin-top: 6px;
    line-height: 1.5;
}

.footer-disclaimer {
    flex: 1;
    font-size: 10px;
    color: var(--muted);
    line-height: 1.7;
    font-weight: 500;
    max-width: 520px;
    margin-left: auto;
}


/* ── Scroll-reveal base state ─────────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity 0.7s cubic-bezier(.22, .68, 0, 1.2),
        transform 0.7s cubic-bezier(.22, .68, 0, 1.2);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.7s cubic-bezier(.22, .68, 0, 1.2),
        transform 0.7s cubic-bezier(.22, .68, 0, 1.2);
}

.reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.7s cubic-bezier(.22, .68, 0, 1.2),
        transform 0.7s cubic-bezier(.22, .68, 0, 1.2);
}

.reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Stagger delays */
.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
}

.delay-4 {
    transition-delay: 0.4s;
}

.delay-5 {
    transition-delay: 0.5s;
}

.delay-6 {
    transition-delay: 0.6s;
}

/* ── Nav hover micro-interactions ─────────────────────────── */
.logo {
    transition: opacity 0.2s, letter-spacing 0.3s;
}

.logo:hover {
    opacity: 0.75;
    letter-spacing: 0.5px;
}

/* ── Hero badge shimmer ────────────────────────────────────── */
.badge {
    position: relative;
    overflow: hidden;
}

.badge::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.18), transparent);
    animation: shimmer 3s 1.5s ease-in-out infinite;
}

@keyframes shimmer {
    0% {
        left: -60%;
    }

    100% {
        left: 140%;
    }
}

/* ── Headline word-by-word pop ─────────────────────────────── */
.headline .word {
    display: inline-block;
    opacity: 0;
    transform: translateY(20px) scale(0.95);
    animation: wordPop 0.5s cubic-bezier(.22, .68, 0, 1.2) both;
}

@keyframes wordPop {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* ── App store buttons ─────────────────────────────────────── */
.btn-store {
    transition: transform 0.2s cubic-bezier(.22, .68, 0, 1.2),
        box-shadow 0.2s ease;
}

.btn-store:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18) !important;
}

.btn-store:active {
    transform: translateY(0) scale(0.98);
}

/* ── Phone hover tilt ──────────────────────────────────────── */
.phone {
    transition: transform 0.4s cubic-bezier(.22, .68, 0, 1.2),
        box-shadow 0.3s ease;
}

.phone-main:hover {
    transform: translateX(-50%) scale(1.04) translateY(-8px);
}

.phone-left:hover {
    transform: rotate(-3deg) scale(1.04) translateY(-8px);
}

.phone-right:hover {
    transform: rotate(3deg) scale(1.04) translateY(-8px);
}

/* ── Feature cards ─────────────────────────────────────────── */
.feat-card {
    transition: box-shadow 0.3s ease,
        transform 0.3s cubic-bezier(.22, .68, 0, 1.2);
}

.feat-card:hover {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.14);
    transform: translateY(-4px);
}

.feat-card:hover .feat-badge {
    background: #d0e8ff;
    border-color: #94c5f7;
    transition: background 0.3s, border-color 0.3s;
}

.feat-card:hover .feat-badge-teal {
    background: #ccf7f5;
    border-color: #6de8e3;
}

/* Mover bars animate width on card hover */
.feat-card:hover .mover-bar {
    transition: width 0.8s cubic-bezier(.22, .68, 0, 1.2);
}

/* ── Mock card inner hover ─────────────────────────────────── */
.mock-card {
    transition: box-shadow 0.25s, transform 0.25s;
}

.feat-card:hover .mock-card {
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.16);
    transform: translateY(-3px);
}

/* ── Vis pills hover ───────────────────────────────────────── */
.vis-pill {
    transition: transform 0.2s, box-shadow 0.2s;
    cursor: default;
}

.vis-pill:hover {
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

/* ── Feature list item hover ───────────────────────────────── */
.feat-list li {
    transition: transform 0.2s, color 0.2s;
    cursor: default;
}

.feat-list li:hover {
    transform: translateX(4px);
    color: var(--navy);
}

/* ── Process number badge bounce ───────────────────────────── */
.process-num {
    transition: transform 0.3s cubic-bezier(.22, .68, 0, 1.2), box-shadow 0.3s;
}

.process-card:hover .process-num {
    transform: scale(1.15) translateY(-4px);
    box-shadow: 0 14px 34px rgba(26, 108, 231, 0.5);
}

/* Process card hover */
.process-card {
    transition: box-shadow 0.3s ease, transform 0.3s cubic-bezier(.22, .68, 0, 1.2), background 0.3s;
}

.process-card:hover {
    background: #e2ecf8;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
}

.process-card-mid:hover {
    background: #dce7f6;
}

/* ── CTA floating card hover ───────────────────────────────── */
.cta-card {
    transition: transform 0.35s cubic-bezier(.22, .68, 0, 1.2), box-shadow 0.3s;
}

.cta-card-left:hover {
    transform: translateY(-52%) rotate(-2deg) scale(1.04);
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
}

.cta-card-right:hover {
    transform: translateY(-52%) rotate(2deg) scale(1.04);
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
}

/* ── CTA App store buttons (on blue bg) ────────────────────── */
.cta-btns .btn-store.apple:hover {
    background: #1a1a1a;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4) !important;
}

.cta-btns .btn-store.btn-store-light:hover {
    background: rgba(255, 255, 255, 0.28) !important;
}

/* ── Footer logo hover ─────────────────────────────────────── */
.site-footer .logo:hover {
    opacity: 0.7;
}

/* ── Ticker rows – subtle hover highlight ──────────────────── */
.stock-row,
.mover-row,
.wl-row,
.insider-row,
.alert-row:not(.alert-active),
.news-feed-row {
    transition: background 0.15s;
    border-radius: 6px;
}

.stock-row:hover,
.mover-row:hover,
.wl-row:hover,
.insider-row:hover,
.news-feed-row:hover {
    background: #f0f5fb;
}

.alert-row:not(.alert-active):hover {
    background: #e8f0fb;
}

/* ── Mover bar fill animation (triggered by JS) ────────────── */
.mover-bar {
    width: 0 !important;
    transition: width 1s cubic-bezier(.22, .68, 0, 1.2);
}

.mover-bar.animated {
    width: var(--bar-w) !important;
}

/* ── Paper trade buy/sell buttons ─────────────────────────── */
.pbtn {
    transition: transform 0.15s, box-shadow 0.15s, filter 0.15s;
}

.pbtn.buy:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(22, 163, 74, 0.4);
}

.pbtn.sell:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

.pbtn:active {
    transform: scale(0.95);
}

/* ── Alert rows pulse on hover ─────────────────────────────── */
.alert-active {
    transition: filter 0.2s;
}

.alert-active:hover {
    filter: brightness(1.08);
}

/* ── Watchlist tab hover ───────────────────────────────────── */
.wl-tab:not(.active) {
    transition: background 0.2s, color 0.2s;
}

.wl-tab:not(.active):hover {
    background: #e2eaf4;
    color: var(--navy);
    border-radius: 20px;
}

/* ── CTA section hover glow on bg ─────────────────────────── */
.cta-section {
    transition: box-shadow 0.4s;
}

.cta-section:hover {
    box-shadow: 0 0 80px rgba(59, 110, 248, 0.4);
}

/* ── Eyebrow line grow on section enter ───────────────────── */
.eyebrow-line {
    display: inline-block;
    width: 0;
    height: 2px;
    background: var(--darkblue);
    border-radius: 2px;
    transition: width 0.8s 0.3s cubic-bezier(.22, .68, 0, 1.2);
}

.visible .eyebrow-line,
.wyg-eyebrow .eyebrow-line,
.process-eyebrow .eyebrow-line {
    width: 28px;
}

/* ── Number count-up visual (ticker colour flash) ──────────── */
@keyframes flashGreen {

    0%,
    100% {
        color: inherit;
    }

    30% {
        color: #16a34a;
    }
}

@keyframes flashRed {

    0%,
    100% {
        color: inherit;
    }

    30% {
        color: #dc2626;
    }
}

.mover-pct.up.flash {
    animation: flashGreen 0.6s;
}

.mover-pct.down.flash {
    animation: flashRed 0.6s;
}

/* ── Scroll progress bar ───────────────────────────────────── */
#scroll-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0%;
    background: linear-gradient(90deg, var(--teal), #1a6ce7);
    z-index: 9999;
    transition: width 0.1s linear;
    border-radius: 0 2px 2px 0;
}


/* ── Responsive Media query ───────────────────────────────────── */


@media (max-width:900px) {

    .cta-card-left,
    .cta-card-right {
        display: none;
    }

    .cta-section {
        margin: 0 16px;
        padding: 60px 24px;
        background-position: bottom;
    }

}

@media (max-width:860px) {

    .feat-wide,
    .feat-reverse {
        flex-direction: column !important;
    }

    .feat-visual {
        min-height: 240px;
    }

    .feat-row-half {
        grid-template-columns: 1fr;
    }

    .feat-text {
        padding: 28px 24px;
    }

    .feat-card-one.feat-card {
        flex-direction: column-reverse !important;
    }

    .feat-card-three.feat-card {
        flex-direction: column-reverse !important;
    }

    .process-card-mid:after {
        display: none;
    }

}

@media (max-width:760px) {

    .process-steps {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .process-line {
        display: none;
    }

}

@media (max-width:640px) {

    .footer-inner {
        flex-direction: column;
        gap: 20px;
        padding: 28px 24px;
        align-items: center;
        justify-content: center;
    }

    .site-footer {
        margin: 50px 20px 0px 20px;
    }

    .feat-card-five.feat-card {
        flex-direction: column-reverse;
    }

    .feat-card-six.feat-card {
        flex-direction: column-reverse;
    }

    .footer-brand {
        text-align: center;
    }

    .footer-tagline {
        text-align: center;
    }

    .footer-disclaimer {
        width: 100%;
        margin: auto;
        text-align: center;
    }

}

@media (max-width:560px) {

    .feat-heading {
        font-size: 1.45rem;
    }

    .wyg-title {
        font-size: 1.6rem;
        letter-spacing: 0;
    }

    .card-ceo,
    .card-movers {
        display: none;
    }

    .card-alert,
    .card-news {
        left: 0;
    }

    .btn-cta {
        padding: 12px;
    }

    .logo {
        justify-content: flex-start;
    }

    .btn-cta {
        padding: 12px;
    }

    .logo {
        justify-content: flex-start;
    }

    .social-proof {
        flex-direction: column;
    }

    .phones-wrapper::before {
        bottom: 0px;
    }

    .wyg .container {
        padding-top: 0;
    }

    .wyg {
        padding-top: 50px;
        padding-bottom: 60px;
    }

    .mocks-card img {
        height: 200px;
    }

    .process {
        padding: 50px 20px 30px;
    }

    .hero .container {
        padding-top: 30px;
        padding-bottom: 20px;
    }

    .process-header {
        margin-bottom: 10px;
    }

    .reviews-header {
        align-items: center;
        justify-content: center;
    }

    .reviews-header-left {
        text-align: center;
    }

    .reviews-score {
        text-align: center;
    }

    .reviews-count {
        text-align: center;
    }

    h2.cta-title {
        letter-spacing: -0.5px;
    }


}