:root{
    --bg: #ffffff;
    --bg-dark: #1E1145;
    --bg-secondary: #F4F4F7;
    --bg-deep: #f8f9fa;
    --text: #4A5565;
    --text-primary: #101828;
    --text-primary-dark: #fff;
    --muted: rgba(0, 0, 0, 0.55);
    --line: rgba(0, 0, 0, 0.1);
    --card: #ffffff;
    --primary: #7C3AED;
    --primary-dark: #5B21B6;
    --secondary: #F59E0B;
    --grad-a: #7C3AED;
    --grad-b: #6D28D9;
    --grad-c: #5B21B6;
    --header-grad-start: #7C3AED;
    --header-grad-end: #6D28D9;
    --accent: #7C3AED;
    --header-height: 80px;
    --header-offset: 84px;
    --radius: 16px;
    --radius-sm: 12px;
    --radius-lg: 20px;
    --shadow: 0 24px 60px rgba(13, 42, 92, 0.12);
}

*{
    box-sizing: border-box;
}

html{
    scroll-padding-top: calc(var(--header-height) + 16px);
}

body{
    margin: 0;
    font-family: "Inter", sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
    overflow-x: hidden;
}

img{
    max-width: 100%;
    display: block;
    height: auto;
}

a{
    color: inherit;
    text-decoration: none;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible{
    outline: 3px solid rgba(124, 58, 237, 0.4);
    outline-offset: 3px;
    border-radius: 6px;
}

.container {
    max-width: 1295px;
    padding: 80px 15px;
    margin: 0 auto;
    display: flex;
    align-content: normal;
    align-items: center;
    align-self: auto;
    gap: 50px;
}

.container--small {
    max-width: 830px;
}

.container--small-padding {
    padding-top: 50px;
    padding-bottom: 50px;
}

.container--left, .container--right {
    width: 50%;
}

.container--columns {
    flex-direction: column;
}

.container--no-gap {
    gap: 0;
}

.section-title {
    margin: 0 auto;
    max-width: 600px;
    text-align: center;
}

.items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(1, 1fr);
    gap: 40px 40px;
}

.item {
    text-align: center;
}

.card {
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.w-50 {
    width: 50%;
}

.w-100 {
    width: 100%;
}

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

.text-base {
    font-size: 24px;
}

.font-medium {
    font-weight: 500;
}

.flex {
    display: flex;
}

.align-start {
    align-items: flex-start;
}

.gap-15 {
    gap: 15px;
}

.pb-30 {
    padding-bottom: 30px;
}

.mb-30 {
    margin-bottom: 30px;
}

.m-0 {
    margin: 0;
}

.m-auto {
    margin: auto;
}

.p-20 {
    padding: 20px;
}

.underline {
    text-decoration: underline;
}

.bg-secondary {
    background: var(--bg-secondary, #666);
}

.faq-container {
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
    font-family: sans-serif;
}

.faq-item {
    border: 1px solid #e5e7eb;
    border-left: 3px solid #7C3AED;
    border-radius: 8px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-left-color: #6D28D9;
    box-shadow: 0 2px 8px rgba(124,58,237,0.08);
}

.faq-question {
    padding: 20px;
    list-style: none;
    cursor: pointer;
    font-weight: 700;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #111827;
    transition: color 0.2s ease;
}

.faq-question:hover {
    color: #7C3AED;
}

.faq-question h3 {
    margin: 0;
}

.faq-question::after {
    content: '';
    display: inline-block;
    width: 14px;
    height: 14px;

    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath fill='%237C3AED' d='M207.029 381.476L12.686 187.132c-9.373-9.373-9.373-24.569 0-33.941l22.667-22.667c9.357-9.357 24.522-9.375 33.901-.04L224 284.505l154.745-154.021c9.379-9.335 24.544-9.317 33.901.04l22.667 22.667c9.373 9.373 9.373 24.569 0 33.941L240.971 381.476c-9.373 9.372-24.569 9.372-33.942 0z'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;

    transition: transform 0.3s ease;
}

details[open] .faq-question::after {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 20px;
    background-color: #F9F5FF;
    border-top: 1px solid rgba(124,58,237,0.12);
    line-height: 1.6;
    color: #4b5563;
}

.site-header{
    color: var(--text-primary, #101828);
    background: #ffffff;
    position: sticky;
    top: 0;
    z-index: 10;
    transition: all 0.3s ease-in-out;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.site-header--fixed {
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.1);
}

.header-inner{
    gap: 20px;
    padding: 12px 15px;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
}

.brand{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1rem;
    padding: 0;
    border-radius: 0;
    background: transparent;
    border: 0;
}

.brand-mark{
    width: clamp(200px, 40vw, 320px);
    max-width: 100%;
    height: auto;
    border-radius: 0;
    object-fit: contain;
    display: block;
}

.nav-links{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    font-size: 0.95rem;
    color: var(--text, #4A5565);
    flex: 1;
    max-width: 520px;
    margin: 0;
}

.nav-items{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    width: min(100%, 720px);
    margin: 0 auto;
}

.header-actions{
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-items a{
    transition: color 0.2s ease;
    line-height: 1;
    white-space: nowrap;
    position: relative;
}

.nav-items a:hover{
    color: var(--primary, #7C3AED);
}

/* Dropdown menu */
.nav-dropdown{
    position: relative;
}

.nav-dropdown-toggle{
    background: none;
    border: none;
    color: inherit;
    font: inherit;
    font-size: 0.95rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 0;
    white-space: nowrap;
    transition: color 0.2s ease;
    line-height: 1;
}

.nav-dropdown-toggle:hover{
    color: var(--primary, #7C3AED);
}

.nav-dropdown-toggle svg{
    transition: transform 0.2s ease;
}

.nav-dropdown.open .nav-dropdown-toggle svg{
    transform: rotate(180deg);
}

.nav-dropdown-menu{
    display: none;
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%);
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 10px;
    padding: 8px 0;
    min-width: 220px;
    box-shadow: 0 12px 32px rgba(0,0,0,0.12);
    z-index: 20;
}

.nav-dropdown.open .nav-dropdown-menu{
    display: block;
}

.nav-dropdown-menu .dropdown-group-label{
    display: block;
    padding: 10px 18px 4px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: rgba(0,0,0,0.4);
    border-top: 1px solid rgba(0,0,0,0.08);
    margin-top: 4px;
}

.nav-dropdown-menu a{
    display: block;
    padding: 8px 18px;
    color: var(--text, #4A5565);
    font-size: 0.9rem;
    white-space: nowrap;
    transition: background 0.15s ease, color 0.15s ease;
}

.nav-dropdown-menu a:hover{
    background: var(--bg-secondary, #F4F4F7);
    color: var(--primary, #7C3AED);
}

.nav-dropdown-menu a::after{
    display: none;
}

.nav-links .btn{
    white-space: nowrap;
    margin-left: 0;
}

.nav-items a::after{
    content: "";
    position: absolute;
    left: 0;
    bottom: -7px;
    width: 100%;
    height: 2px;
    background: #F59E0B;
    opacity: 0;
    transform: scaleX(0.6);
    transform-origin: center;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.nav-items a:hover::after,
.nav-items a.active::after{
    opacity: 1;
    transform: scaleX(1);
}

.nav-items a.active{
    color: var(--primary, #7C3AED);
    font-weight: 600;
}

.nav-toggle{
    display: none;
    width: 44px;
    height: 44px;
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    background: transparent;
    color: var(--text-primary, #101828);
    align-items: center;
    justify-content: center;
    padding: 0;
    cursor: pointer;
    transition: opacity 0.2s ease, background 0.2s ease;
    margin-left: auto;
}

.nav-toggle:hover{
    background: var(--bg-secondary, #F4F4F7);
}

.nav-toggle svg{
    width: 22px;
    height: 22px;
    stroke: var(--text-primary, #101828);
}

/* nav-toggle:hover moved inline above */

.btn {
    color: #fff;
    font-weight: 600;
    font-size: 16px;
    box-shadow: 0 4px 6px -4px rgba(0, 0, 0, 0.10196078431372549);
    border-radius: 8px;
    padding: 15px 30px 15px 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    line-height: 16px;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    white-space: nowrap;
    border: none;
}

.btn svg {
    height: 16px;
}

.site-header .header-cta--mobile{
    display: none;
}

.btn-primary {
    background: var(--primary, #7C3AED);
}

.btn-secondary {
    background: var(--secondary, #F59E0B); color: #1E1145;
    font-weight: 500;
}

.btn-ghost{
    background: #7C3AED;
    border-color: #7C3AED;
    color: #ffffff;
}

.btn-ghost:hover{
    background: #6D28D9;
    border-color: #6D28D9;
}

/* ── Orange CTA – Start Free Trial ───────────────────────────── */
.btn-orange {
    background: #F59E0B;
    color: #1E1145;
    font-weight: 700;
}
.btn-orange:hover {
    background: #D97706;
    color: #1E1145;
}
/* Header variant: title case, white text, larger padding */
.btn-orange.header-cta {
    color: #fff;
    padding: 16px 42px;
    font-size: 16px;
    font-weight: 700;
}

/* ── Green CTA – How It Works action buttons ──────────────────── */
.btn-green {
    background: #059669;
    color: #fff;
    font-weight: 600;
}
.btn-green:hover {
    background: #047857;
    color: #fff;
}

.hero .container{
    padding-top: 40px;
    padding-bottom: 60px;
}

.hero-grid{
    display: flex;
    align-items: center;
    gap: 50px;
}

.hero-grid .hero-left{
    flex: 1;
}

.hero-grid .hero-card{
    flex: 1;
    max-width: 50%;
}

.hero-left{
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.hero h1{
    margin-top: 0;
    margin-bottom: 16px;
}

.hero p{
    margin-top: 0;
    margin-bottom: 20px;
}

.eyebrow{
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.75rem;
    color: var(--muted);
    font-weight: 700;
}

h1,
h2,
h3{
    color: var(--text-primary, #000);
}

h1{
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2em;
}

h2 {
    font-size: 36px;
    line-height: 1;
    margin: 8px 0 16px;
}

h3 {
    font-size: 20px;
    margin-top: 8px;
    margin-bottom: 16px;
}

.tight-gap{
    margin-bottom: 0;
}

.tight-gap + *{
    margin-top: 2rem;
}

h3{
    font-size: 1.2rem;
}

.hero-sub{
    font-size: 1.1rem;
    color: var(--muted);
    max-width: 65ch;
}

.hero-cta{
    display: flex;
    flex-wrap: wrap;
    gap: 15.6px;
    margin: 30px 0;
}

.coming-soon-badge{
    display: inline-block;
    padding: 6.5px 16.25px;
    background: rgba(124, 58, 237, 0.25);
    border: 1px solid rgba(124, 58, 237, 0.5);
    border-radius: 19.5px;
    color: #6ba3ff;
    font-size: 0.7109375rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 19.5px;
}

.hero-sub-heading{
    font-size: 24px;
    font-weight: 500;
    color: var(--text, #000);
}

.hero-cta-widget{
    margin-top: 32px;
}

.hero-input-group{
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: stretch;
}

.hero-phone-input{
    flex: 1;
    min-width: 240px;
    padding: 14px 18px;
    font-size: 1rem;
    color: var(--text);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    outline: none;
    transition: all 0.2s ease;
}

.hero-phone-input::placeholder{
    color: rgba(255, 255, 255, 0.5);
}

.hero-phone-input:focus{
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.15);
}

.hero-cta-btn{
    flex-shrink: 0;
    padding: 14px 32px;
    white-space: nowrap;
}

.hero-micro-copy{
    margin: 12px 0 0 0;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    font-style: italic;
}

.hero-card{
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    padding: 0;
    border: 0;
    margin-top: -20px;
}

.hero-card__top{
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.hero-card__body{
    margin-top: 20px;
    display: grid;
    gap: 14px;
}

.hero-metric{
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.95rem;
    color: var(--muted);
    border-bottom: 1px solid var(--line);
    padding-bottom: 8px;
}

.hero-metric strong{
    color: var(--text);
    font-size: 1.1rem;
}

.hero-lines{
    display: grid;
    gap: 10px;
}

.hero-line{
    height: 10px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(124, 58, 237, 0.25), rgba(124, 58, 237, 0.05));
}

.hero-line.short{
    width: 65%;
}

.hero-shots{
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: clamp(18.2px, 2.6vw, 31.2px);
    align-items: start;
    width: 100%;
    max-width: none;
    justify-self: end;
    margin: 0;
    padding: 0;
    aspect-ratio: auto;
    overflow: visible;
}

.hero-shots--centered{
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    align-items: center;
    justify-items: center;
    gap: 15.6px;
}

.hero-shot{
    position: relative;
    margin: 0;
    width: 100%;
    overflow: visible;
}

.hero-shot--secondary{
    grid-column: 1;
    grid-row: 1;
}

.hero-shot--tertiary{
    grid-column: 2;
    grid-row: 1;
}

.hero-shot--primary{
    grid-column: 1 / -1;
    grid-row: 2;
}

.hero-shots--centered .hero-shot--primary{
    margin-top: -30px;
}

.hero-shot--mobile-dual{
    grid-column: 1;
    grid-row: 1;
    display: flex;
    justify-content: center;
    max-width: 100%;
    transform: translateY(-26px);
    position: relative;
}

.hero-shot--mobile-dual::after{
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 55%;
    height: 3px;
    background: linear-gradient(90deg,
    transparent 0%,
    rgba(52, 211, 153, 0.2) 15%,
    rgba(52, 211, 153, 1) 50%,
    rgba(52, 211, 153, 0.2) 85%,
    transparent 100%);
    box-shadow:
            0 0 20px rgba(52, 211, 153, 0.8),
            0 0 40px rgba(52, 211, 153, 0.6),
            0 0 60px rgba(52, 211, 153, 0.4);
    pointer-events: none;
    border-radius: 50%;
    filter: blur(0.5px);
    animation: pulse-connection 2.5s ease-in-out infinite;
}

@keyframes pulse-connection{
    0%, 100%{
        opacity: 0.6;
        box-shadow:
                0 0 15px rgba(52, 211, 153, 0.6),
                0 0 30px rgba(52, 211, 153, 0.4),
                0 0 45px rgba(52, 211, 153, 0.2);
    }
    50%{
        opacity: 1;
        box-shadow:
                0 0 25px rgba(52, 211, 153, 1),
                0 0 50px rgba(52, 211, 153, 0.8),
                0 0 75px rgba(52, 211, 153, 0.6);
    }
}

.hero-shot--below-cta{
    margin: 0;
    max-width: 720px;
    width: 100%;
}

.hero-shot--below-cta .hero-shot-frame{
    border-radius: 16px;
}

.hero-shot--below-cta img{
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
}

.hero-shot-frame{
    border-radius: var(--radius-lg);
}

.hero-shot-frame--card{
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(12, 18, 37, 0.45);
    box-shadow: 0 22px 60px rgba(0,0,0,0.45);
}

.hero-shot-frame--ghost{
    overflow: visible;
    border: 0;
    background: transparent;
    box-shadow: none;
}

.hero-shot img{
    width: 100%;
    height: auto;
    display: block;
    transform: scale(1.15);
    transform-origin: center;
}

.hero-shot--tertiary img{
    filter: drop-shadow(0 22px 55px rgba(0,0,0,0.45));
}

.hero-shot--mobile-dual img{
    width: 100%;
    max-width: 100%;
    height: auto;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.hero-shot figcaption{
    margin-top: 10px;
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.70);
}

.hero-shot--secondary figcaption,
.hero-shot--tertiary figcaption,
.hero-shot--mobile-dual figcaption{
    display: none;
}

@keyframes heroFloatUp{
    0%{ transform: translate3d(0,0,0); }
    50%{ transform: translate3d(0,-8px,0); }
    100%{ transform: translate3d(0,0,0); }
}

@keyframes heroFloatDown{
    0%{ transform: translate3d(0,0,0); }
    50%{ transform: translate3d(0,8px,0); }
    100%{ transform: translate3d(0,0,0); }
}

.hero-shot--secondary{
    animation: none;
}

.hero-shot--tertiary{
    animation: none;
}

@media (prefers-reduced-motion: reduce){
    .hero-shot--secondary,
    .hero-shot--tertiary{
        animation: none !important;
    }
}

.section{
    padding: 48px 0;
    background: transparent;
    scroll-margin-top: calc(var(--header-height) + 12px);
    position: relative;
}

.section--dark {
    background: var(--bg-dark);
}

.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark p {
    color: var(--text-primary-dark);
}

.section + .section{
    position: relative;
}

.section + .section::before{
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    max-width: 1200px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.08) 50%, transparent);
}

.section-band + .section::before,
.section + .section-band::before{
    display: none;
}

#how.section{
    padding-top: 36px;
}

.section-band{
    color: #ffffff;
    background:
            linear-gradient(180deg, rgba(255,255,255,0.12), rgba(0,0,0,0.12)),
            linear-gradient(90deg, var(--grad-a), var(--grad-b) 45%, var(--grad-c));
}

.section-band h2,
.section-band h3,
.section-band .section-intro,
.section-band .section-head p{
    color: #ffffff;
}

.section-head{
    margin-bottom: 36px;
}

.section-head-centered{
    text-align: center;
    margin-bottom: 48px;
}

.section-content-centered{
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-intro{
    max-width: 70ch;
    color: var(--muted);
}

/* Stats Bar */
.stats-bar {
    background: linear-gradient(135deg, #2D1B69 0%, #3D2580 100%);
    padding: 10px 0;
    border-bottom: 1px solid rgba(124, 58, 237, 0.2);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: center;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: #56BF92;
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.65);
    font-weight: 500;
    line-height: 1.3;
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px 16px;
    }
    .stat-number {
        font-size: 1.6rem;
    }
}

@media (max-width: 420px) {
    .stats-bar {
        padding: 8px 0;
    }
    .stats-grid {
        gap: 20px 12px;
    }
    .stat-number {
        font-size: 1.35rem;
    }
    .stat-label {
        font-size: 0.78rem;
    }
}

/* The Numbers Section */
.the-numbers {
    padding: 56px 0;
    background: #F9F5FF;
}
.the-numbers .container {
    display: block;
    padding: 0 15px;
}
.the-numbers .section-title {
    text-align: center;
    margin-bottom: 8px;
    max-width: none;
    font-size: 28px;
    line-height: 1.2;
}
.the-numbers .section-sub {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 40px;
    font-size: 1.05rem;
    color: rgba(30, 17, 69, 0.65);
}
.numbers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.number-card {
    background: linear-gradient(135deg, #F5F3FF 0%, #EDE9FE 100%);
    border-radius: 14px;
    padding: 28px 24px;
    border: 1px solid #DDD6FE;
    display: flex;
    flex-direction: column;
}
.number-card-icon {
    font-size: 1.6rem;
    margin-bottom: 12px;
}
.number-card-headline {
    font-size: 1.5rem;
    font-weight: 800;
    color: #7C3AED;
    letter-spacing: -0.03em;
    line-height: 1.15;
    margin-bottom: 8px;
}
.number-card-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #1E1145;
    margin-bottom: 8px;
    line-height: 1.3;
}
.number-card-desc {
    font-size: 0.85rem;
    color: rgba(30, 17, 69, 0.6);
    line-height: 1.5;
    flex-grow: 1;
    margin-bottom: 12px;
}
.number-card-link {
    font-size: 0.8rem;
    font-weight: 600;
    color: #7C3AED;
    text-decoration: none;
}
.number-card-link:hover {
    text-decoration: underline;
}
@media (max-width: 960px) {
    .numbers-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 600px) {
    .numbers-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .number-card {
        padding: 24px 20px;
    }
    .number-card-headline {
        font-size: 1.3rem;
    }
    .number-card-desc {
        font-size: 0.88rem;
    }
    .the-numbers {
        padding: 40px 0;
    }
    .the-numbers .section-title {
        font-size: 24px;
    }
    .the-numbers .section-sub {
        font-size: 0.95rem;
    }
}

/* Why It Works */
.why-works .section-head{
    margin-bottom: 32px;
}

.why-rows{
    display: grid;
    gap: 48px;
}

.why-row{
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
    gap: 40px;
    align-items: center;
    grid-template-areas: "media text";
}

.why-row.reverse{
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    grid-template-areas: "text media";
}

.why-media{
    grid-area: media;
}

.why-text{
    grid-area: text;
}

.why-text h3{
    margin-top: 0;
}

.why-image{
    width: 60%;
    height: auto;
    display: block;
    object-fit: contain;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.35);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-image:hover{
    transform: scale(1.02);
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.4);
}

.why-media{
    display: flex;
    justify-content: center;
}

/* Product screenshots */
.shot{
    width: 100%;
    max-width: 1100px;
    margin: 2.25rem auto 0;
    border-radius: 14px;
    overflow: hidden;
    background: rgba(15, 23, 42, 0.9);
    border: 1px solid rgba(255,255,255,0.10);
    box-shadow: 0 25px 60px rgba(0,0,0,0.45);
}

.shot img{
    width: 100%;
    height: auto;
    display: block;
}

.shot figcaption{
    margin-top: 10px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.78);
    text-align: center;
}

.shot-ops{
    max-width: 980px;
}

.shot--tight{
    max-width: 520px;
    margin: 1.25rem 0 0;
}

.hero-shot{
    max-width: 1040px;
    margin-top: 0;
}


.steps{
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 18px;
}

.howitworks-layout{
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.75fr);
    gap: clamp(20px, 4vw, 56px);
    align-items: start;
}

.howitworks-steps{
    min-width: 0;
}

.howitworks-visual{
    min-width: 0;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.howitworks-visual img{
    width: 100%;
    max-width: 480px;
    height: auto;
    border-radius: 18px;
    box-shadow: 0 14px 40px rgba(0,0,0,0.28);
    border: 1px solid rgba(255,255,255,0.10);
}

.step-card{
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 16px;
    background:
            linear-gradient(180deg, rgba(255,255,255,0.10), rgba(0,0,0,0.12)),
            #231d35;
    border-radius: var(--radius);
    border: 1px solid rgba(255,255,255,0.14);
    padding: 22px;
    box-shadow:
            0 10px 24px rgba(0,0,0,0.25),
            0 1px 0 rgba(255,255,255,0.06) inset;
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.step-card::after{
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.22;
    background-image:
            radial-gradient(1px 1px at 12% 18%, rgba(255,255,255,0.45), transparent 45%),
            radial-gradient(1px 1px at 38% 72%, rgba(255,255,255,0.35), transparent 45%),
            radial-gradient(1px 1px at 68% 28%, rgba(255,255,255,0.35), transparent 45%),
            radial-gradient(1px 1px at 86% 64%, rgba(255,255,255,0.30), transparent 45%);
    mix-blend-mode: overlay;
}

.step-card::before{
    content: "";
    position: absolute;
    inset: -40% -30%;
    pointer-events: none;
    background: radial-gradient(closest-side, rgba(255,255,255,0.14), transparent 60%);
    transform: translate3d(-10%, -10%, 0);
    opacity: 0.55;
}

.step-number{
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, rgba(52, 211, 153, 0.3), rgba(52, 211, 153, 0.15));
    color: #4ADEA0;
    font-weight: 700;
    position: relative;
    z-index: 1;
    border: 1px solid rgba(52, 211, 153, 0.2);
}

.step-card h3{
    color: rgba(255, 255, 255, 0.95);
    position: relative;
    z-index: 1;
}

.step-card p{
    color: rgba(255, 255, 255, 0.82);
    position: relative;
    z-index: 1;
    margin: 0;
}

#how .step-card{
    padding: 19px;
}

@media (hover: hover){
    .step-card:hover{
        transform: translateY(-2px);
        border-color: rgba(255,255,255,0.22);
        box-shadow:
                0 14px 32px rgba(0,0,0,0.30),
                0 1px 0 rgba(255,255,255,0.07) inset;
    }
}

.step-card:focus-within{
    outline: 2px solid rgba(134,116,197,0.55);
    outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce){
    .step-card{
        transition: none;
    }
}

@media (max-width: 900px){
    .howitworks-layout{
        grid-template-columns: 1fr;
    }

    .howitworks-visual{
        justify-content: flex-start;
        margin-top: 14px;
    }

    .howitworks-visual img{
        max-width: 560px;
    }
}

.copy-block{
    display: grid;
    gap: 18px;
    max-width: 74ch;
    color: rgba(255, 255, 255, 0.85);
}

#operations.section{
    position: relative;
    overflow: hidden;
    padding: 54px 0;
}

#operations.section::before{
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 10%, rgba(255,255,255,0.06), transparent 55%);
    opacity: 0.6;
    pointer-events: none;
}

#operations.section::after{
    content: "";
    position: absolute;
    inset: 0;
    background-image:
            radial-gradient(1px 1px at 18% 22%, rgba(255,255,255,0.18), transparent 45%),
            radial-gradient(1px 1px at 62% 30%, rgba(255,255,255,0.12), transparent 45%),
            radial-gradient(1px 1px at 80% 70%, rgba(255,255,255,0.12), transparent 45%);
    opacity: 0.18;
    mix-blend-mode: overlay;
    pointer-events: none;
}

#operations .container{
    position: relative;
    z-index: 1;
}

.ops-grid{
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 36px;
    align-items: start;
}

.ops-copy{
    max-width: 62ch;
}

.ops-copy h2{
    letter-spacing: -0.01em;
    margin-bottom: 12px;
}

.ops-intro{
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin: 8px 0 16px;
}

.ops-badge-row{
    display: flex;
    justify-content: flex-start;
    margin-top: 8px;
}

.ops-badge-card{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 14px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background:
            linear-gradient(160deg, rgba(255,255,255,0.08), rgba(0,0,0,0.18)),
            rgba(17, 22, 36, 0.6);
    box-shadow:
            0 16px 30px rgba(0,0,0,0.28),
            0 1px 0 rgba(255,255,255,0.06) inset;
}

.ops-badge-card img{
    width: clamp(120px, 18vw, 180px);
    max-width: 200px;
    height: auto;
    opacity: 0.98;
}

.ops-features{
    display: grid;
    gap: 20px;
}

.ops-feature{
    position: relative;
    padding-left: 18px;
}

.ops-feature::before{
    content: "";
    position: absolute;
    left: 0;
    top: 0.6em;
    width: 8px;
    height: 8px;
    border-radius: 3px;
    background: rgba(255, 255, 255, 0.7);
}

.ops-feature-title{
    font-weight: 700;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 6px;
}

.ops-feature p{
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.65;
}

.ops-media{
    align-self: center;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.ops-media .shot{
    margin-top: 0;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow:
            0 20px 44px rgba(0,0,0,0.38),
            0 8px 18px rgba(0,0,0,0.2);
    max-width: 560px;
    overflow: hidden;
}

.ops-media .shot img{
    border-radius: 16px;
    display: block;
    width: 100%;
    height: auto;
}

#operations .shot figcaption{
    margin-top: 8px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

#operations .tight-gap + *{
    margin-top: 0.9rem;
}

@media (max-width: 960px){
    .ops-grid{
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .ops-media{
        order: 2;
    }

    .ops-badge-row{
        justify-content: center;
        margin: 6px 0 2px;
    }

    .ops-badge-card img{
        width: min(180px, 62vw);
        max-width: 180px;
    }
}

#comparison.section{
    position: relative;
    background:
            radial-gradient(ellipse at center top, rgba(52, 211, 153, 0.06) 0%, transparent 60%),
            transparent;
}

.comparison-grid{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    max-width: 1100px;
    margin: 0 auto;
}

.comparison-card{
    background: var(--card);
    border-radius: var(--radius);
    padding: 32px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.06);
    color: var(--text);
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.comparison-card:hover{
    transform: translateY(-4px);
    box-shadow: 0 20px 44px rgba(15, 26, 43, 0.12);
}

.comparison-card-image{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
    margin-bottom: 8px;
}

.comparison-card-image img{
    width: auto;
    height: 390px;
    max-width: 100%;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow:
            0 12px 28px rgba(0,0,0,0.08),
            0 4px 12px rgba(0,0,0,0.04);
}

.comparison-card h3{
    margin: 0 0 4px 0;
    font-size: 1.5rem;
}

.comparison-card.highlight{
    border-color: rgba(52, 211, 153, 0.3);
    box-shadow: 0 18px 40px rgba(52, 211, 153, 0.15);
    background: linear-gradient(180deg, rgba(52, 211, 153, 0.02) 0%, var(--card) 40%);
}

.comparison-card.highlight .closing{
    color: #F59E0B;
}

.comparison-card ul{
    padding-left: 20px;
    margin: 12px 0 16px;
    color: var(--muted);
}

.comparison-card li{
    margin-bottom: 10px;
}

.comparison-card li strong{
    color: var(--text);
    font-weight: 600;
}

.comparison-card .lead-in{
    color: var(--muted);
    font-weight: 600;
    margin: 0 0 8px 0;
}

.comparison-card .closing{
    font-weight: 600;
    margin-top: 8px;
}

.faq-list{
    display: grid;
    gap: 16px;
}

.faq-list details{
    position: relative;
    overflow: hidden;
    background:
            linear-gradient(180deg, rgba(255,255,255,0.10), rgba(0,0,0,0.12)),
            #231d35;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.14);
    padding: 16px 20px;
    box-shadow:
            0 10px 24px rgba(0,0,0,0.25),
            0 1px 0 rgba(255,255,255,0.06) inset;
    color: rgba(255, 255, 255, 0.92);
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.faq-list details::after{
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.22;
    background-image:
            radial-gradient(1px 1px at 12% 18%, rgba(255,255,255,0.45), transparent 45%),
            radial-gradient(1px 1px at 38% 72%, rgba(255,255,255,0.35), transparent 45%),
            radial-gradient(1px 1px at 68% 28%, rgba(255,255,255,0.35), transparent 45%),
            radial-gradient(1px 1px at 86% 64%, rgba(255,255,255,0.30), transparent 45%);
    mix-blend-mode: overlay;
}

.faq-list details::before{
    content: "";
    position: absolute;
    inset: -40% -30%;
    pointer-events: none;
    background: radial-gradient(closest-side, rgba(255,255,255,0.14), transparent 60%);
    transform: translate3d(-10%, -10%, 0);
    opacity: 0.55;
}

.faq-list summary{
    cursor: pointer;
    font-weight: 600;
    list-style: none;
    color: rgba(255, 255, 255, 0.95);
    position: relative;
    z-index: 1;
}

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

.faq-list p{
    margin: 12px 0 0;
    color: rgba(255, 255, 255, 0.8);
    position: relative;
    z-index: 1;
}

.faq-list ul{
    margin: 10px 0 0 20px;
    color: rgba(255, 255, 255, 0.8);
    position: relative;
    z-index: 1;
}

@media (hover: hover){
    .faq-list details:hover{
        transform: translateY(-2px);
        border-color: rgba(255,255,255,0.22);
        box-shadow:
                0 14px 32px rgba(0,0,0,0.30),
                0 1px 0 rgba(255,255,255,0.07) inset;
    }
}

.faq-list details:focus-within{
    outline: 2px solid rgba(134,116,197,0.55);
    outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce){
    .faq-list details{
        transition: none;
    }
}

.founder-card{
    background: rgba(14, 19, 31, 0.7);
    border-radius: var(--radius);
    padding: 36px 52px 60px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 24px 50px rgba(4, 8, 16, 0.45);
    max-width: 980px;
    color: #ffffff;
    margin: 0 auto;
}

.founder-content{
    display: flex;
    align-items: flex-start;
    gap: 28px;
}

.founder-photo{
    flex: 0 0 220px;
    width: 220px;
    height: 240px;
    border-radius: 18px;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 18px 32px rgba(0, 0, 0, 0.35);
}

.founder-text{
    flex: 1;
    max-width: 680px;
    min-width: 0;
}

.founder-text p{
    color: rgba(255, 255, 255, 0.92);
    margin: 0 0 14px;
}

.founder-text p:last-of-type{
    margin-bottom: 0;
}

.founder-signature{
    margin-top: 32px;
    padding-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
    font-weight: 600;
    color: #ffffff;
    margin-left: 0;
    transform: translateX(-28px);
}

.founder-signature-text{
    display: grid;
    gap: 2px;
    min-width: 0;
}

.founder-name,
.founder-title{
    display: block;
}

.founder-title{
    white-space: normal;
}

.founder-signature img{
    width: 150px;
    height: auto;
    display: block;
    filter: brightness(0) invert(1) drop-shadow(0 6px 12px rgba(0, 0, 0, 0.35));
}

@media (min-width: 1200px){
    .founder-title{
        white-space: nowrap;
    }
}

.cta-band{
    padding: 70px 0;
    background:
            linear-gradient(180deg, rgba(255,255,255,0.12), rgba(0,0,0,0.12)),
            linear-gradient(90deg, var(--grad-a), var(--grad-b) 45%, var(--grad-c));
    background-size: 200% 200%;
    color: #ffffff;
    scroll-margin-top: calc(var(--header-height) + 12px);
}

.cta-grid{
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.6fr);
    gap: 24px;
    align-items: center;
}

.cta-band h2{
    color: #ffffff;
}

.cta-actions{
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: flex-start;
}

.cta-band .btn-ghost{
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.4);
}

.legal-page {
    min-height: 100vh;
    padding-top: 0;
}

.legal-page h2 {
    font-size: 25px;
}

.legal-page p {
    margin-bottom: 14px;
    margin-top: 0;
}

.legal-hero{
    background: linear-gradient(135deg, #1a2742 0%, #263552 50%, #2d4165 100%);
    color: #ffffff;
    text-align: center;
    padding: calc(var(--header-height) + clamp(40px, 6vw, 60px)) 0 clamp(50px, 7vw, 80px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
}

.legal-hero-inner{
    max-width: 900px;
    margin: 0 auto;
    padding: 0 clamp(24px, 4vw, 48px) 0 clamp(120px, 15vw, 180px);
}

.legal-hero-title{
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: clamp(1.6rem, 3.2vw, 2.5rem);
    line-height: 1.3;
    font-weight: 700;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.legal-hero-title span{
    display: block;
    margin-bottom: 8px;
}

.legal-hero-title span:last-child{
    margin-bottom: 0;
}

.legal-content{
    padding: clamp(40px, 6vw, 72px) 0 clamp(56px, 8vw, 96px);
    background: linear-gradient(180deg, #1a2742 0%, #20293a 100%);
}

.legal-container{
    max-width: 900px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: clamp(32px, 5vw, 56px) clamp(24px, 4vw, 48px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.legal-entity,
.legal-brand,
.legal-doc-title{
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin: 0 0 8px;
    color: #F59E0B;
    font-size: 0.95rem;
}

.legal-doc-title{
    font-size: 1.05rem;
    margin-bottom: 16px;
}

.legal-updated{
    margin: 0 0 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
}

.legal-content p,
.legal-content li{
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 16px;
}

.legal-content h2{
    margin-top: 48px;
    margin-bottom: 20px;
    padding-top: 32px;
    border-top: 2px solid rgba(52, 211, 153, 0.3);
    font-size: 1.4rem;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: #ffffff;
    font-weight: 700;
}

.legal-content h2:first-of-type{
    margin-top: 32px;
}

.legal-content h3{
    margin-top: 32px;
    margin-bottom: 12px;
    font-size: 1.15rem;
    color: #F59E0B;
    font-weight: 600;
    letter-spacing: 0.01em;
}

.legal-content ul{
    margin: 16px 0 24px 28px;
    padding: 0;
}

.legal-content li{
    margin-bottom: 12px;
    padding-left: 8px;
}

.legal-content li strong{
    color: #F59E0B;
    font-weight: 600;
}

@media (max-width: 600px){
    .legal-content ul{
        margin-left: 18px;
    }
}

.reserve-modal{
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    color: var(--text, #000);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    z-index: 40;
}

.reserve-modal.open{
    display: flex;
}

.reserve-modal__inner{
    background: #fff;
    border-radius: var(--radius);
    padding: 40px;
    width: 100%;
    max-width: 600px;
    overflow-y: auto;
    box-shadow: 0 24px 60px rgba(4, 8, 16, 0.45);
    position: relative;
}

.reserve-title{
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.reserve-body{
    color: rgba(255, 255, 255, 0.7);
    margin: 0 0 18px;
}

.reserve-close{
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    font-size: 1.2rem;
    cursor: pointer;
}

.reserve-form{
    display: grid;
    gap: 16px;
}

.reserve-fields{
    display: grid;
    gap: 6px;
}

.reserve-field{
    display: grid;
    gap: 6px;
    font-size: 0.92rem;
}

.reserve-field input{
    width: 100%;
    padding: 11px;
    border-radius: 8px;
    border: 1px solid var(--text-primary, #000);
    background: #fff;
    color: var(--text-primary, #000);
    font-size: 0.95rem;
}

.reserve-field input::placeholder{
    color: var(--text, #666);
}

.reserve-field input:focus{
    outline: 2px solid rgba(134, 116, 197, 0.6);
    outline-offset: 2px;
}

.reserve-field-group{
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.field-error{
    min-height: 14px;
    color: #fca5a5;
    font-size: 0.8rem;
}

.field-error:not(:empty){
    margin-top: -2px;
}

.reserve-field.has-error input{
    border-color: rgba(252, 165, 165, 0.85);
}

.form-error{
    min-height: 18px;
    color: #fca5a5;
    font-size: 0.9rem;
}

.reserve-actions{
    display: flex;
    justify-content: flex-end;
    gap: 12px;
}

.reserve-submit[disabled]{
    opacity: 0.7;
    cursor: not-allowed;
}

.reserve-success{
    display: grid;
    gap: 12px;
    color: rgba(255, 255, 255, 0.9);
}

.reserve-success a{
    color: #F59E0B;
}

.reserve-success-dev{
    padding: 12px 14px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
}

body.modal-open{
    overflow: hidden;
}

[hidden]{
    display: none !important;
}

@media (max-width: 560px){
    .reserve-modal__inner{
        padding: 22px;
    }

    .reserve-field-group{
        grid-template-columns: 1fr;
    }

    .reserve-actions{
        flex-direction: column-reverse;
        align-items: stretch;
    }
}

.footer {
    background: #0c1425;
}

.footer .container {
    gap: 15px;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-top: 40px;
    padding-bottom: 30px;
}

footer h2 {
    color: #fff;
    margin-top: 0;
}

.footer-inner{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.footer-links{
    display: flex;
    flex-wrap: wrap;
    font-size: 14px;
}

.footer-links a {
    margin: 0 8px;
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: #ffffff;
}

.footer .info {
    color: rgba(255, 255, 255, 0.5);
}

.footer-separator{
    color: rgba(255, 255, 255, 0.4);
    font-weight: 300;
}

.info {
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding-top: 30px;
    border-top: 1px solid #FFFFFF80;
}

/* ── Mobile-first hamburger toggle (show at ≤1366px since nav panel already styled) ── */
@media (max-width: 1366px){
    .nav-toggle{
        display: flex;
    }
}

@media (max-width: 1366px){
    .hero-shots{
        width: 100%;
        max-width: 676px;
        justify-self: center;
        margin: 0 auto;
        padding: clamp(14px, 3vw, 22px);
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto;
        aspect-ratio: 5 / 4;
    }

    .hero-shot--primary{
        grid-column: 1 / span 2;
        grid-row: 1;
    }

    .hero-shot--secondary{
        grid-column: 1;
        grid-row: 2;
    }

    .hero-shot--tertiary{
        grid-column: 2;
        grid-row: 2;
    }

    .hero-shots--centered{
        grid-template-columns: 1fr;
        grid-template-rows: auto auto;
    }

    .hero-shot--mobile-dual{
        grid-column: 1;
        grid-row: 1;
    }

    .hero-shots--centered .hero-shot--primary{
        grid-column: 1;
        grid-row: 2;
    }

    .hero-grid{
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .hero-left{
        width: 60%;
    }

    .hero-card{
        width: 40%;
    }

    .hero-shot--below-cta{
        max-width: 100%;
    }

    .cta-grid{
        grid-template-columns: 1fr;
    }

    .site-header .header-cta--mobile{
        display: inline-flex;
    }

    .nav-links{
        position: absolute;
        top: var(--header-height);
        left: 50%;
        transform: translateX(-50%);
        width: min(92vw, 720px);
        background: #ffffff;
        border-radius: 16px;
        border: 1px solid rgba(0, 0, 0, 0.1);
        padding: 18px 18px 22px;
        flex-direction: column;
        align-items: stretch;
        gap: 14px;
        display: none;
        box-shadow: 0 18px 44px rgba(0, 0, 0, 0.15);
        color: var(--text, #4A5565);
    }

    .nav-items{
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .nav-items a{
        color: var(--text, #4A5565);
        font-size: 1rem;
        padding: 10px 0;
        min-height: 44px;
        display: flex;
        align-items: center;
    }

    .nav-items a:hover{
        color: var(--primary, #7C3AED);
    }

    .nav-links.open{
        display: flex;
    }

    .nav-dropdown-toggle{
        font-size: 1rem !important;
        padding: 10px 0 !important;
        min-height: 44px;
        width: 100%;
        justify-content: flex-start !important;
    }

    .nav-dropdown-menu{
        position: static !important;
        transform: none !important;
        background: var(--bg-secondary, #F4F4F7) !important;
        border: none !important;
        border-radius: 8px !important;
        box-shadow: none !important;
        margin-top: 4px;
        padding: 4px 0 !important;
    }

    .nav-dropdown-menu a{
        padding: 10px 18px !important;
        min-height: 44px;
        display: flex !important;
        align-items: center;
    }

    .nav-links .btn{
        width: 100%;
        justify-content: center;
        margin-left: 0;
    }

    .why-rows{
        gap: 36px;
    }

    .why-row,
    .why-row.reverse{
        grid-template-columns: 1fr;
        grid-template-areas:
      "media"
      "text";
        gap: 24px;
    }
}

@media (max-width: 640px){
    .comparison-grid{
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .comparison-card-image img{
        height: 280px;
        max-width: 100%;
    }

    .hero-shots{
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        padding: 0;
        gap: 14px;
    }

    .hero-shot{
        position: relative;
        inset: auto;
        width: 100%;
        animation: none;
    }

    .hero-shot--primary,
    .hero-shot--secondary,
    .hero-shot--tertiary,
    .hero-shot--mobile-dual{
        grid-column: 1;
        grid-row: auto;
        transform: none;
    }

    .hero-shot--secondary figcaption,
    .hero-shot--tertiary figcaption{
        display: block;
    }

    .hero-shot--mobile-dual figcaption{
        display: none;
    }

    .hero-shot-frame--ghost{
        display: grid;
        place-items: center;
    }

    .hero-shot--tertiary img{
        width: min(420px, 92%);
    }

    .hero-shot--mobile-dual img{
        width: min(540px, 85%);
        max-width: 100%;
    }
}

@media (max-width: 560px){
    .hero-shot--mobile-dual{
        transform: none;
    }

    .hero-shot--mobile-dual img{
        width: min(380px, 85%);
    }

    .hero-grid{
        gap: 24px;
        padding-top: 0;
    }
}

@media (max-width: 600px){
    .tight-gap + *{
        margin-top: 1.5rem;
    }

    .section-head-centered{
        margin-bottom: 32px;
    }

    .hero{
        padding-top: 20px;
        margin-top: 0;
        padding-bottom: 64px;
    }

    .coming-soon-badge{
        font-size: 0.46875rem;
        padding: 3.75px 10px;
        margin-bottom: 10px;
    }

    .hero-sub-heading{
        font-size: 20px;
        margin: 16px 0 0 0 !important;
    }

    .hero-input-group{
        flex-direction: column;
        gap: 10px;
    }

    .hero-phone-input{
        min-width: 100%;
        width: 100%;
    }

    .brand-mark{
        width: clamp(180px, 50vw, 260px);
    }

    .legal-hero-inner{
        padding: 0 clamp(24px, 4vw, 48px) !important;
    }

    .legal-hero-title{
        font-size: 1.5rem !important;
        line-height: 1.3 !important;
    }

    .legal-hero-title span{
        display: block;
    }

    .founder-content{
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .founder-photo{
        width: 160px;
        height: 180px;
    }

    .founder-signature{
        flex-direction: column;
    }

    .founder-card{
        padding: 28px 22px 40px;
    }

    .founder-title{
        white-space: normal;
    }

    .founder-signature img{
        width: 140px;
    }

    .step-card{
        grid-template-columns: 1fr;
    }

    .footer-inner{
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-links{
        flex-wrap: wrap;
        gap: 12px;
    }
}



@media (min-width: 1024px){
    .hero-card{
        transform: translateY(-20px);
    }
    .hero {
        padding-top: 64px;
    }
    #how.section,
    #comparison.section{
        min-height: calc(100svh - var(--header-height));
        padding: 64px 0;
        display: grid;
        place-items: center;
        box-sizing: border-box;
    }

    #operations.section{
        min-height: auto;
        padding: 56px 0;
        display: block;
    }

    #operations.section .container{
        padding: 0;
    }

    .cta-band{
        padding: 72px 0;
    }
}

@keyframes gradientShift{
    0%{ background-position: 0% 50%; }
    50%{ background-position: 100% 50%; }
    100%{ background-position: 0% 50%; }
}

.cta-band{
    animation: gradientShift 26s ease-in-out infinite;
}

@media (max-width: 1024px){
    .footer-links a:first-child {
        margin-left: 0;
    }

    .info {
        flex-flow: column-reverse;
        gap: 10px;
    }

    .footer-links {
        display: block;
    }

    .footer-links a {
        display: block;
        margin: 8px 0;
    }

    .footer-separator {
        display: none;
    }

    .container.container--box {
        flex-wrap: wrap;
    }
    .container--left, .container--right {
        width: 100%;
    }

    h1{
        font-size: 40px;
    }

    .hero-sub{
        font-size: 1rem;
    }

    .hero-shot--below-cta{
        max-width: 100%;
        margin-top: 8px;
    }

    .hero-left{
        width: 100%;
        text-align: center;
    }

    .hero-card{
        width: 100%;
        max-width: 100%;
        padding-top: 0 !important;
    }

    .hero-grid {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 24px;
    }

    .hero-cta {
        justify-content: center;
    }

    .comparison-card{
        padding: 20px;
    }

    .comparison-card h3{
        font-size: 1.3rem;
    }

    .comparison-card-image{
        padding: 16px 0;
    }

    .comparison-card-image img{
        height: 220px;
    }

    .hero-shot--mobile-dual img{
        width: min(440px, 92%);
    }

    .ops-media .shot{
        max-width: 100%;
    }

    .ops-copy{
        text-align: center;
    }

    .ops-features{
        gap: 16px;
    }

    .footer-inner{
        gap: 12px;
        font-size: 0.85rem;
    }

    .footer-links{
        gap: 10px;
        font-size: 0.85rem;
    }

    .btn{
        padding: 12px 20px;
        font-size: 0.9rem;
    }

    .step-card{
        padding: 16px;
    }

    .section{
        padding: 36px 0;
    }
}

@media (prefers-reduced-motion: reduce){
    .cta-band{
        animation: none;
    }
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE: Tablet & Mobile fixes (added 2026-03-01)
   ═══════════════════════════════════════════════════════════════ */

/* ── Tablet: 2-column cards, hide header CTA ── */
@media (max-width: 900px){
    .items{
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }
    .header-actions{
        display: none;
    }
}

/* ── Tablet-portrait: container & component spacing ── */
@media (max-width: 768px){
    .container{
        padding: 50px 16px;
        gap: 32px;
    }
    h1{ font-size: 32px; }
    h2{ font-size: 26px; }

    .cta-band{
        padding: 48px 0;
    }

    .founder-card{
        padding: 32px 24px 40px;
    }
    .founder-photo{
        flex: 0 0 180px;
        width: 180px;
        height: 200px;
    }

    .why-image{
        width: 80%;
        max-width: 300px;
    }

    .comparison-card-image img{
        height: 240px;
    }

    .faq-question{
        padding: 18px;
        min-height: 44px;
    }

    .footer-links a{
        min-height: 44px;
        display: inline-flex;
        align-items: center;
    }
}

/* ── Mobile: stack everything ── */
@media (max-width: 600px){
    /* --- Cards grid: single column --- */
    .items{
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* --- Container padding reduction --- */
    .container{
        padding: 40px 16px;
        gap: 28px;
    }
    .container--small-padding{
        padding-top: 28px;
        padding-bottom: 28px;
    }

    /* --- Typography scaling --- */
    h1{ font-size: 28px; line-height: 1.25; }
    h2{ font-size: 24px; line-height: 1.2; }
    h3{ font-size: 1.05rem; }

    /* --- FAQ touch-friendly --- */
    .faq-question{
        padding: 16px;
        font-size: 0.95rem;
        min-height: 44px;
    }
    .faq-answer{
        padding: 0 16px 16px;
    }

    /* --- Section titles --- */
    .section-title{
        max-width: 100%;
    }
    .section-sub{
        font-size: 0.95rem !important;
    }

    /* --- CTA band --- */
    .cta-band{
        padding: 36px 0;
    }
    .cta-band .container{
        padding: 32px 16px;
    }

    /* --- Founder card --- */
    .founder-signature{
        transform: none;
    }

    /* --- Why-it-works images --- */
    .why-image{
        width: 100%;
        max-width: 280px;
    }

    /* --- Items grid gap --- */
    .items{
        gap: 16px;
    }

    /* --- Hero breathing room on phones --- */
    .hero .container{
        padding-top: 24px;
        padding-bottom: 40px;
    }

    .hero-left{
        gap: 20px;
    }

    .hero-sub-heading{
        font-size: 17px;
        line-height: 1.45;
    }

    .hero-pricing{
        font-size: 1rem !important;
        margin-top: 8px !important;
    }

    .hero-cta{
        margin: 16px 0;
    }

    .hero-card{
        margin-top: 8px;
    }
}

/* ── Small phones (≤ 420px): extra tightening ── */
@media (max-width: 420px){
    h1{
        font-size: 24px;
        line-height: 1.3;
    }

    h2{
        font-size: 21px;
    }

    .hero .container{
        padding-top: 16px;
        padding-bottom: 32px;
    }

    .hero-left{
        gap: 14px;
    }

    .hero-sub-heading{
        font-size: 15px;
        line-height: 1.4;
    }

    .hero-pricing{
        font-size: 0.9rem !important;
        margin-top: 4px !important;
    }

    .hero-cta{
        margin: 12px 0;
    }

    .hero-card{
        margin-top: 4px;
    }

    .btn{
        padding: 11px 18px;
        font-size: 0.85rem;
    }
}

/* ─── Move-Type Landing Pages (responsive) ─── */
.movetype-hero .container,
.movetype-pain .container,
.movetype-steps .container,
.movetype-features .container,
.movetype-stats .container,
.movetype-cta .container,
.movetype-faq .container{
    display: block;
    padding-left: 15px;
    padding-right: 15px;
}

@media (max-width: 960px){
    .movetype-features [style*="grid-template-columns:repeat(4"],
    .movetype-features [style*="grid-template-columns: repeat(4"]{
        grid-template-columns: repeat(2, 1fr) !important;
    }
    .movetype-stats [style*="grid-template-columns:repeat(4"],
    .movetype-stats [style*="grid-template-columns: repeat(4"]{
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 768px){
    .movetype-hero{
        padding: 48px 0 !important;
    }
    .movetype-hero .container,
    .movetype-cta .container{
        grid-template-columns: 1fr !important;
        text-align: center;
        gap: 24px !important;
    }
    .movetype-hero h1{
        font-size: 32px !important;
    }
    .movetype-hero p{
        font-size: 16px !important;
    }
    .movetype-hero img{
        max-width: 400px !important;
    }
    .movetype-pain,
    .movetype-steps,
    .movetype-features,
    .movetype-stats,
    .movetype-cta,
    .movetype-faq{
        padding: 48px 0 !important;
    }
    .movetype-pain [style*="grid-template-columns:repeat(3"],
    .movetype-pain [style*="grid-template-columns: repeat(3"],
    .movetype-steps [style*="grid-template-columns:repeat(3"],
    .movetype-steps [style*="grid-template-columns: repeat(3"]{
        grid-template-columns: 1fr !important;
    }
    .movetype-features [style*="grid-template-columns"],
    .movetype-stats [style*="grid-template-columns"]{
        grid-template-columns: 1fr 1fr !important;
    }
    .movetype-pain h2,
    .movetype-steps h2,
    .movetype-features h2,
    .movetype-cta h2,
    .movetype-faq h2{
        font-size: 28px !important;
    }
    .movetype-stats [style*="font-size:48px"],
    .movetype-stats [style*="font-size: 48px"]{
        font-size: 36px !important;
    }
    .container--columns{
        gap: 32px !important;
    }
}

@media (max-width: 480px){
    .movetype-hero h1{
        font-size: 26px !important;
    }
    .movetype-pain,
    .movetype-steps,
    .movetype-features,
    .movetype-stats,
    .movetype-cta,
    .movetype-faq{
        padding: 32px 0 !important;
    }
    .movetype-pain [style*="grid-template-columns"],
    .movetype-features [style*="grid-template-columns"],
    .movetype-stats [style*="grid-template-columns"]{
        grid-template-columns: 1fr !important;
    }
    .movetype-stats [style*="font-size:48px"],
    .movetype-stats [style*="font-size: 48px"]{
        font-size: 28px !important;
        white-space: normal !important;
    }
    .movetype-hero img{
        max-height: 300px !important;
        object-fit: cover !important;
    }
    .movetype-faq details{
        padding: 16px !important;
    }
    .movetype-faq summary{
        font-size: 15px !important;
    }
    .container--columns{
        gap: 24px !important;
    }
}

/* Extra phone-fit pass for narrow devices (SE / 12 Pro / S8+ / Fold) */
@media (max-width: 420px){
    .header-inner{
        padding: 10px 12px;
        gap: 10px;
    }

    .brand-mark{
        width: clamp(150px, 52vw, 190px);
    }

    .nav-toggle{
        width: 40px;
        height: 40px;
    }

    .hero .container{
        padding-left: 12px;
        padding-right: 12px;
    }

    .hero-grid{
        gap: 20px;
    }

    .hero h1{
        font-size: 30px;
        line-height: 1.2;
    }

    .hero-sub-heading{
        font-size: 16px;
        line-height: 1.45;
    }

    .hero-pricing{
        font-size: 1rem !important;
    }

    .hero-card{
        margin-top: 0;
        padding-top: 0 !important;
    }

    .hero [id="hero-video"]{
        width: 100%;
    }
}

@media (max-width: 360px){
    .container{
        padding-left: 12px;
        padding-right: 12px;
    }

    .hero h1{
        font-size: 27px;
    }

    .hero-sub-heading{
        font-size: 15px;
    }

    .btn{
        padding: 10px 16px;
    }
}
