@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=PT+Sans:wght@400;700&display=swap');

:root {
    --color-primary: #245968;
    --color-primary-soft: #c8d8e4;
    --color-accent: #52ab98;
    --color-white: #ffffff;
    --color-background: #f5f5f7;
    --color-dark: #1a1a1a;
    --color-text-main: #2b3c4d;
    --color-text-muted: #6b7280;
    --color-border-subtle: #e5e7eb;

    --max-width: 1120px;
    --radius-sm: 0.4rem;
    --radius-md: 0.6rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --shadow-soft: 0 10px 25px rgba(15, 23, 42, 0.08);
    --shadow-card: 0 4px 20px rgba(15, 23, 42, 0.06);

    --space-2xs: 0.25rem;
    --space-xs: 0.5rem;
    --space-sm: 0.75rem;
    --space-md: 0.8rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 5rem;

    --header-height: 88px;

    --font-base: 'PT Sans', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --font-display: 'Raleway', system-ui, sans-serif;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.5rem;
    --font-size-2xl: 2rem;
}



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

html {
    scroll-behavior: smooth;
}

html {
    opacity: 0;
}

body {
    margin: 0;
    font-family: var(--font-base);
    font-size: var(--font-size-base);
    line-height: 1.5;
    color: var(--color-text-main);
    background-color: var(--color-white);
}

main {
    display: flow-root;
}

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

h1, h2, h3, p {
    margin: 0;
}

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

a:focus-visible, button:focus-visible {
    outline: 3px solid var(--color-accent);
    outline-offset: 3px;
}



.container {
    max-width: var(--max-width);
    margin-inline: auto;
    padding-inline: var(--space-md);
}

.section {
    padding-block: var(--space-4xl);
}

.center-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

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

.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    padding: var(--space-xs) var(--space-md);
    background-color: var(--color-primary);
    color: var(--color-white);
    z-index: 100;
}

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



.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-sm) 2.25rem;
    border-radius: 999px;
    border: 1.5px solid transparent;
    font-size: var(--font-size-sm);
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    gap: 0;
    transition:
        border-color 600ms cubic-bezier(0.23, 1, 0.32, 1),
        border-radius 600ms cubic-bezier(0.23, 1, 0.32, 1),
        color 350ms ease,
        transform 120ms ease;
}

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



.btn-text {
    position: relative;
    z-index: 1;
    transform: translateX(-0.5rem);
    transition: transform 800ms ease-out;
    pointer-events: none;
}

.btn-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1rem;
    height: 1rem;
    border-radius: 50%;
    opacity: 0;
    pointer-events: none;
    transition:
        width 800ms cubic-bezier(0.19, 1, 0.22, 1),
        height 800ms cubic-bezier(0.19, 1, 0.22, 1),
        opacity 550ms cubic-bezier(0.19, 1, 0.22, 1);
}

.btn-arrow {
    position: absolute;
    width: 1rem;
    height: 1rem;
    z-index: 2;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0;
    pointer-events: none;
    transition:
        left 800ms cubic-bezier(0.34, 1.56, 0.64, 1),
        right 800ms cubic-bezier(0.34, 1.56, 0.64, 1),
        stroke 350ms ease;
}

.btn-arrow-left {
    left: -18%;
}

.btn-arrow-right {
    right: 1rem;
}



.btn:hover {
    border-color: transparent;
    border-radius: 12px;
}

.btn:hover .btn-text {
    transform: translateX(0.5rem);
}

.btn:hover .btn-circle {
    width: 280px;
    height: 280px;
    opacity: 1;
}

.btn:hover .btn-arrow-left {
    left: 1rem;
}

.btn:hover .btn-arrow-right {
    right: -18%;
}



.btn-primary {
    color: var(--color-accent);
    border-color: rgba(82, 171, 152, 0.5);
}

.btn-primary .btn-arrow {
    stroke: var(--color-accent);
}

.btn-primary .btn-circle {
    background-color: var(--color-accent);
}

.btn-primary:hover {
    color: var(--color-white);
}

.btn-primary:hover .btn-arrow {
    stroke: var(--color-white);
}



.btn-light {
    color: var(--color-primary);
    border-color: rgba(36, 89, 104, 0.35);
}

.btn-light .btn-arrow {
    stroke: var(--color-primary);
}

.btn-light .btn-circle {
    background-color: var(--color-primary);
}

.btn-light:hover {
    color: var(--color-white);
}

.btn-light:hover .btn-arrow {
    stroke: var(--color-white);
}

.mission-section .btn-light {
    color: var(--color-primary);
    border-color: rgba(36, 89, 104, 0.75);
    background-color: rgba(255, 255, 255, 0.18);
}

.mission-section .btn-light .btn-arrow {
    stroke: var(--color-primary);
}

.mission-section .btn-light .btn-circle {
    background-color: var(--color-primary);
}

.mission-section .btn-light:hover {
    color: var(--color-white);
    background-color: transparent;
}

.mission-section .btn-light:hover .btn-arrow {
    stroke: var(--color-white);
}



.btn-large {
    padding: var(--space-md) var(--space-2xl);
    font-size: var(--font-size-base);
}



.coming-soon-badge {
    display: inline-block;
    font-size: 0.65em;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background-color: var(--color-accent);
    color: var(--color-white);
    padding: 0.25em 0.75em;
    border-radius: 999px;
    vertical-align: middle;
    margin-left: var(--space-sm);
}



.header {
    position: sticky;
    top: 0;
    z-index: 50;
    padding: var(--space-md);
    background: transparent;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: var(--max-width);
    margin-inline: auto;
}

.header-pill {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 900px;
    background-color: var(--color-background);
    opacity: 95%;
    border-radius: 999px;
    padding: var(--space-xs) var(--space-sm) var(--space-xs) var(--space-md);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    flex-shrink: 0;
}

.logo-img {
    width: 60px;
    height: 40px;
    object-fit: contain;
}

.logo-text {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--color-primary);
}

.nav {
    display: flex;
    gap: var(--space-sm);
    align-items: center;
    position: relative;
}

.nav-link {
    font-size: var(--font-size-sm);
    font-weight: 500;
    color: var(--color-text-muted);
    padding: var(--space-sm);
    position: relative;
    transition: color 200ms ease;
}

.nav-link:hover,
.nav-link:focus-visible,
.nav-link[aria-current="page"] {
    color: var(--color-text-main);
}

.nav-indicator {
    position: absolute;
    bottom: 4px;
    height: 2px;
    background-color: var(--color-primary);
    border-radius: 1px;
    transition: left 300ms cubic-bezier(0.4, 0, 0.2, 1), width 300ms cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.header-app-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: var(--color-text-main);
    border-radius: 50%;
    transition: opacity 200ms ease;
    flex-shrink: 0;
}

.header-app-link:hover {
    opacity: 0.7;
}

.header-app-link svg {
    width: 22px;
    height: 22px;
}

.mobile-menu-toggle {
    display: none;
    border: none;
    background-color: transparent;
    padding: var(--space-xs);
    cursor: pointer;
}

.hamburger,
.hamburger::before,
.hamburger::after {
    display: block;
    width: 18px;
    height: 2px;
    background-color: var(--color-text-main);
    border-radius: 999px;
    position: relative;
}

.hamburger::before,
.hamburger::after {
    content: "";
    position: absolute;
    left: 0;
}

.hamburger::before { top: -5px; }
.hamburger::after { top: 5px; }



.hero-rotating-line {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 200;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--color-text-main);
    margin-bottom: var(--space-xl);
    text-align: center;
}
.rotating-text-wrap {
    position: relative;
    display: inline-block;
    overflow: hidden;
    vertical-align: bottom;
}
.rotating-text-wrap::before {
    content: 'gives you financial clarity hi';
    visibility: hidden;
    display: inline-block;
    white-space: nowrap;
}
.rotating-text-slot {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    color: var(--color-accent);
    font-style: italic;
    white-space: nowrap;
    will-change: transform, opacity;
}
@keyframes rt-in  { from { transform: translateY(100%);  opacity: 0; } to { transform: translateY(0);     opacity: 1; } }
@keyframes rt-out { from { transform: translateY(0);     opacity: 1; } to { transform: translateY(-100%); opacity: 0; } }
.rt-entering { animation: rt-in  0.5s cubic-bezier(0.32, 0.72, 0, 1) forwards; }
.rt-exiting  { animation: rt-out 0.5s cubic-bezier(0.32, 0.72, 0, 1) forwards; }

.trust-pill {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(82, 171, 152, 0.25);
    border-radius: 100px;
    padding: 10px 22px 10px 14px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 16px rgba(36, 89, 104, 0.08);
}
.trust-stars-row {
    display: flex;
    gap: 2px;
}
.trust-stars-row svg {
    width: 18px;
    height: 18px;
    color: var(--color-accent);
    flex-shrink: 0;
}
.trust-pill-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.25;
}
.trust-pill-title {
    font-family: var(--font-display);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-text-main);
}
.trust-pill-sub {
    font-size: 0.72rem;
    color: var(--color-text-muted);
    letter-spacing: 0.01em;
}



.gradient-wave-canvas {
    filter: contrast(1.3) saturate(1.2) brightness(0.97);
}

.wave-shadow-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse 90% 55% at 12% 48%, rgba(0, 0, 0, 0.12) 0%, transparent 58%),
        radial-gradient(ellipse 90% 55% at 50% 54%, rgba(0, 0, 0, 0.09) 0%, transparent 58%),
        radial-gradient(ellipse 75% 55% at 88% 46%, rgba(0, 0, 0, 0.12) 0%, transparent 58%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.08) 0%, transparent 22%, transparent 78%, rgba(0, 0, 0, 0.08) 100%);
    pointer-events: none;
    z-index: 0;
    mix-blend-mode: multiply;
}

.hero {
    background: var(--color-primary-soft);
    margin-top: calc(-1 * var(--header-height));
    padding-top: calc(var(--space-3xl) + var(--header-height));
    padding-bottom: 0;
    overflow: hidden;
    position: relative;
}

.hero .container {
    text-align: center;
    max-width: 800px;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 500;
    line-height: 1.15;
    color: var(--color-text-main);
    margin-bottom: var(--space-xl);
    letter-spacing: -0.02em;
}

.hero-title em {
    font-style: italic;
    font-weight: 500;
}

.hero-features {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-xs);
    margin-bottom: var(--space-lg);
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    font-size: var(--font-size-base);
    color: var(--color-text-muted);
}

.hero-feature svg {
    width: 18px;
    height: 18px;
    color: var(--color-accent);
    flex-shrink: 0;
}

.hero-download-cta {
    font-family: var(--font-display);
    font-size: var(--font-size-lg);
    font-weight: 600;
    color: var(--color-text-main);
    margin-bottom: var(--space-lg);
}

.app-store-btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-lg);
    background-color: var(--color-dark);
    color: var(--color-white);
    border-radius: 10px;
    transition: transform 200ms ease, box-shadow 200ms ease;
}

.app-store-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.app-store-btn svg {
    width: 24px;
    height: 24px;
}

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

.app-store-label {
    font-size: 10px;
    opacity: 0.9;
}

.app-store-name {
    font-size: 16px;
    font-weight: 600;
}

.hero-trust {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-xs);
    margin-top: var(--space-lg);
    padding-bottom: var(--space-xl);
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

.trust-rating {
    font-size: var(--font-size-sm);
    font-weight: 600;
    color: var(--color-text-main);
}

.trust-stars {
    display: flex;
    gap: 2px;
}

.trust-stars .star {
    width: 20px;
    height: 20px;
    background-color: #00b67a;
    display: flex;
    align-items: center;
    justify-content: center;
}

.trust-stars .star svg {
    width: 12px;
    height: 12px;
    color: white;
}

.hero-disclaimer {
    font-size: 11px;
    color: var(--color-text-muted);
    opacity: 0.7;
    max-width: 400px;
    margin: var(--space-xl) auto 0;
    line-height: 1.4;
}

.hero-disclaimer a {
    color: var(--color-primary);
    text-decoration: underline;
}

.hero-disclaimer a:hover {
    opacity: 0.8;
}

.hero-phone-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    margin-top: var(--space-xl);
    margin-bottom: -60px;
}

.hero-phone-wrapper .iphone-frame {
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.15);
}

.hero-phone-wrapper .iphone-notch {
    display: none;
}

.hero-phone-wrapper .iphone-screen {
    width: 100%;
    height: 100%;
    background: var(--color-white);
    border-radius: 32px;
    overflow: hidden;
}



.integrations-section {
    background: #091420;
    padding-block: var(--space-3xl) var(--space-2xl);
    overflow: hidden;
    position: relative;
}

.integrations-section .container {
    text-align: center;
    margin-bottom: 0;
    position: relative;
    z-index: 2;
}

.integrations-label {
    display: block;
    font-family: var(--font-display);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: var(--space-sm);
}

.integrations-title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3.5vw, 2.75rem);
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: var(--space-sm);
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.integrations-description {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.55);
    max-width: 460px;
    margin: 0 auto;
    line-height: 1.65;
}

.integrations-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2xl);
    margin-top: var(--space-xl);
    padding-top: var(--space-xl);
    border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.integrations-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.integrations-stat-num {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-accent);
    letter-spacing: -0.03em;
    line-height: 1;
}

.integrations-stat-label {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.45);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.integrations-stat-divider {
    width: 1px;
    height: 34px;
    background: rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
}

.marquee-wrapper {
    position: relative;
    width: 100%;
    margin-top: var(--space-2xl);
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    z-index: 2;
}


.marquee-row {
    overflow: hidden;
    width: 100%;
}

.marquee-track {
    display: flex;
    gap: 10px;
    animation: marquee 36s linear infinite;
    width: max-content;
}

.marquee-track--reverse {
    animation: marquee-reverse 40s linear infinite;
}


@keyframes marquee {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes marquee-reverse {
    0%   { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

.bank-logo-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 9px;
    flex-shrink: 0;
    padding: 7px 16px 7px 10px;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: background 200ms ease, border-color 200ms ease;
    cursor: default;
}

.bank-logo-item:hover {
    background: rgba(255, 255, 255, 0.09);
    border-color: rgba(82, 171, 152, 0.28);
}

.bank-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

.bank-logo img {
    max-height: 22px;
    max-width: 22px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.bank-name {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: rgba(255, 255, 255, 0.52);
    white-space: nowrap;
}



.features-showcase-section {
    background-color: var(--color-white);
    padding-block: var(--space-4xl);
}

.features-showcase-section.alt-bg {
    background-color: var(--color-background);
}

.features-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.features-headline {
    font-family: var(--font-display);
    font-size: var(--font-size-2xl);
    font-weight: 600;
    color: var(--color-text-main);
    margin-bottom: var(--space-sm);
}

.features-subheadline {
    font-size: var(--font-size-base);
    color: var(--color-text-muted);
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.6;
}

.features-card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
    margin-bottom: var(--space-2xl);
}

.features-card-grid.three-col {
    grid-template-columns: repeat(3, 1fr);
}

.feature-showcase-card {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.feature-phone-mockup {
    margin-bottom: var(--space-lg);
}

.feature-card-content {
    text-align: center;
    max-width: 200px;
}

.feature-card-title {
    font-family: var(--font-display);
    font-size: var(--font-size-base);
    font-weight: 600;
    color: var(--color-text-main);
    margin-bottom: var(--space-xs);
}

.feature-card-description {
    font-size: var(--font-size-sm);
    color: var(--color-text-muted);
    line-height: 1.5;
}

.features-cta {
    display: flex;
    justify-content: center;
}

.feature-ai-card {
    background: linear-gradient(160deg, #0a0a0f 0%, #12121a 55%, #0a0a0f 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-ai-screen {
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-ai-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px;
    text-align: center;
}

.feature-ai-logo {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.feature-ai-label {
    font-family: var(--font-display);
    font-size: var(--font-size-base);
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.05em;
}

.feature-ai-tagline {
    font-size: var(--font-size-xs);
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.4;
    margin: 0;
}



.phone-frame {
    width: 220px;
    height: 390px;
    background: linear-gradient(160deg, #1c1c1e 0%, #2a2a2c 55%, #1c1c1e 100%);
    border-radius: 28px;
    padding: 4px;
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.07),
        0 24px 56px rgba(0, 0, 0, 0.32),
        0 6px 16px rgba(0, 0, 0, 0.16);
    position: relative;
    overflow: hidden;
}

.phone-notch {
    display: none;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: var(--color-background);
    border-radius: 24px;
    overflow: hidden;
    position: relative;
}

.phone-screenshot {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    image-rendering: -webkit-optimize-contrast;
}

.phone-screen::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 28px;
    background: linear-gradient(to bottom, rgba(0,0,0,0.04), transparent);
    pointer-events: none;
}

.iphone-frame {
    position: relative;
    width: 240px;
    height: 480px;
    background: linear-gradient(160deg, #1c1c1e 0%, #2a2a2c 55%, #1c1c1e 100%);
    border-radius: 36px;
    padding: 5px;
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.07),
        0 28px 64px rgba(0, 0, 0, 0.36),
        0 8px 24px rgba(0, 0, 0, 0.18);
    z-index: 2;
}

.iphone-notch {
    display: none;
}

.iphone-screen {
    width: 100%;
    height: 100%;
    background: var(--color-white);
    border-radius: 32px;
    overflow: hidden;
}

.iphone-screenshot {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    image-rendering: -webkit-optimize-contrast;
}

.iphone-home-indicator {
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: rgba(255, 255, 255, 0.22);
    border-radius: 2px;
}



.split-section {
    background-color: var(--color-white);
    padding-block: var(--space-3xl);
}

.split-section.alt-bg {
    background-color: var(--color-background);
}

.video-section {
    background-color: var(--color-background);
    padding-block: var(--space-4xl);
}

.video-section-header {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.video-wrapper {
    max-width: 900px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 48px rgba(0, 0, 0, 0.15);
}

.video-wrapper video {
    width: 100%;
    display: block;
}

.video-poster {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    gap: 20px;
}

.video-poster-logo {
    width: 64px;
    height: 64px;
    object-fit: contain;
    opacity: 0.9;
}

.video-play-btn {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    cursor: pointer;
    transition: background 0.2s;
}

.video-play-btn:hover {
    background: rgba(255, 255, 255, 0.25);
}

.video-play-btn svg {
    width: 28px;
    height: 28px;
    margin-left: 4px;
}

.split-row {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--space-2xl);
    align-items: start;
    padding-block: var(--space-lg);
    border-bottom: 1px solid var(--color-border-subtle);
}

.split-row:last-child {
    border-bottom: none;
}

.split-row.large {
    padding-block: var(--space-xl);
    border-bottom: none;
}

.split-heading {
    font-family: var(--font-display);
    font-size: var(--font-size-lg);
    font-weight: 600;
    color: var(--color-text-main);
    line-height: 1.3;
}

.split-heading-large {
    font-family: var(--font-display);
    font-size: var(--font-size-xl);
    font-weight: 600;
    color: var(--color-text-main);
    line-height: 1.3;
    margin-bottom: var(--space-xs);
}

.split-tagline {
    font-size: var(--font-size-base);
    color: var(--color-text-muted);
    font-style: italic;
}

.split-description {
    font-size: var(--font-size-base);
    color: var(--color-text-muted);
    line-height: 1.7;
}



.security-section {
    background-color: var(--color-white);
}

.security-grid {
    display: grid;
    gap: var(--space-lg);
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.security-card {
    border-radius: var(--radius-md);
    padding: var(--space-lg);
    border: 1px solid var(--color-border-subtle);
    text-align: center;
}

.security-card p {
    font-size: var(--font-size-sm);
    color: var(--color-text-muted);
    margin-top: var(--space-sm);
    line-height: 1.6;
}

.security-title {
    font-family: var(--font-display);
    font-size: var(--font-size-lg);
    font-weight: 600;
}



.mission-section {
    background-color: var(--color-primary);
    color: var(--color-dark);
    position: relative;
    overflow: hidden;
}

.mission-section .container {
    position: relative;
    z-index: 1;
}

.mission-section .section-title {
    color: var(--color-dark);
}

.mission-description {
    text-align: center;
    max-width: 720px;
    margin: 0 auto var(--space-lg);
    color: var(--color-text-muted);
    line-height: 1.6;
}

.mission-cta {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
    flex-wrap: wrap;
}



.values-section {
    background-color: var(--color-white);
}

.values-intro {
    text-align: center;
    max-width: 640px;
    margin: 0 auto var(--space-lg);
    color: var(--color-text-muted);
}

.values-cta {
    margin-bottom: var(--space-xl);
}

.values-grid {
    display: grid;
    gap: var(--space-md);
}

.value-item {
    display: grid;
    grid-template-columns: minmax(120px, 170px) 1fr;
    gap: var(--space-md);
    padding: var(--space-md);
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border-subtle);
    background-color: var(--color-background);
}

.value-label {
    font-size: var(--font-size-sm);
    font-weight: 600;
    color: var(--color-primary);
}

.value-content h3 {
    font-family: var(--font-display);
    font-size: var(--font-size-lg);
    font-weight: 600;
    margin-bottom: var(--space-xs);
}

.value-content p {
    font-size: var(--font-size-sm);
    color: var(--color-text-muted);
}



.final-cta-section {
    background-color: var(--color-background);
    padding-top: var(--space-4xl);
    padding-bottom: 0;
    overflow: hidden;
    position: relative;
}

.final-cta-section .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
}

.final-cta-content {
    text-align: center;
    max-width: 500px;
    margin-bottom: var(--space-2xl);
}

.final-cta-tagline {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3.5vw, 2rem);
    font-weight: 600;
    color: var(--color-text-main);
    margin-bottom: var(--space-2xs);
    line-height: 1.3;
}

.final-cta-description {
    font-size: var(--font-size-base);
    color: var(--color-text-muted);
    margin-bottom: var(--space-2xs);
    line-height: 1.5;
}

.final-cta-download {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: var(--font-size-base);
    color: var(--color-text-main);
    margin-bottom: var(--space-lg);
}

.final-cta-phone {
    position: relative;
    width: 340px;
    height: 500px;
    display: flex;
    justify-content: center;
}

.hand-image {
    position: absolute;
    right: -40px;
    bottom: -20px;
    width: 200px;
    z-index: 1;
    pointer-events: none;
}

.hand-img {
    width: 100%;
    height: auto;
}



.section-title {
    font-family: var(--font-display);
    font-size: var(--font-size-2xl);
    font-weight: 600;
    text-align: center;
    margin-bottom: var(--space-xl);
}



.footer {
    background-color: var(--color-dark);
    color: rgba(255, 255, 255, 0.7);
    padding-block: var(--space-3xl) var(--space-xl);
}

.footer-container {
    max-width: var(--max-width);
    margin-inline: auto;
    padding-inline: var(--space-md);
}

.footer-top {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: var(--space-3xl);
    padding-bottom: var(--space-2xl);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: var(--space-xl);
}

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

.footer-logo {
    display: flex;
    align-items: center;
}

.footer-logo-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xl);
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.footer-column-title {
    font-family: var(--font-display);
    font-size: var(--font-size-sm);
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    margin: 0 0 var(--space-xs) 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-column-links {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.footer-column-links a {
    font-size: var(--font-size-sm);
    color: rgba(255, 255, 255, 0.7);
    transition: color 200ms ease;
}

.footer-column-links a:hover {
    color: var(--color-white);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-xl);
    flex-wrap: wrap;
}

.footer-copyright {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
}

.footer-legal {
    display: flex;
    gap: var(--space-lg);
}

.footer-legal-link {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    transition: color 200ms ease;
}

.footer-legal-link:hover {
    color: rgba(255, 255, 255, 0.7);
}



.faq-grid,
.faq-list {
    display: flex;
    flex-direction: column;
    max-width: 720px;
    margin: 0 auto;
    counter-reset: faq-counter;
}

.faq-item {
    counter-increment: faq-counter;
    border-bottom: 1px solid var(--color-border-subtle);
    background: transparent;
    border-radius: 0;
    overflow: visible;
}

.faq-item:first-child {
    border-top: 1px solid var(--color-border-subtle);
}

.faq-question {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    padding: 1.3rem 0;
    cursor: pointer;
    list-style: none;
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-text-main);
    background: transparent;
    transition: color 220ms ease;
    user-select: none;
}

.faq-question::-webkit-details-marker,
.faq-question::marker {
    display: none;
}

.faq-question::before {
    content: counter(faq-counter, decimal-leading-zero);
    font-family: var(--font-display);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--color-accent);
    flex-shrink: 0;
    min-width: 1.8rem;
    line-height: 1;
}

.faq-question::after {
    display: none !important;
}

.faq-chevron {
    width: 17px;
    height: 17px;
    flex-shrink: 0;
    margin-left: auto;
    stroke: var(--color-text-muted);
    transition:
        transform 0.32s cubic-bezier(0.4, 0, 0.2, 1),
        stroke 220ms ease;
}

.faq-item[open] .faq-chevron {
    transform: rotate(180deg);
    stroke: var(--color-accent);
}

.faq-item[open] > .faq-question {
    color: var(--color-primary);
}

.faq-answer {
    display: grid;
    grid-template-rows: 0fr;
    padding: 0;
    transition: grid-template-rows 0.38s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item[open] > .faq-answer {
    grid-template-rows: 1fr;
}

.faq-answer-inner {
    overflow: hidden;
    padding-bottom: 0;
    transition: padding-bottom 0.38s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item[open] .faq-answer-inner {
    padding-bottom: 1.5rem;
}

.faq-answer p {
    font-size: var(--font-size-sm);
    color: var(--color-text-muted);
    line-height: 1.75;
    margin: 0;
    padding-left: 2.7rem;
}

@media (max-width: 600px) {
    .faq-question {
        font-size: var(--font-size-sm);
        padding: 1.1rem 0;
        gap: 0.7rem;
    }

    .faq-question::before {
        min-width: 1.5rem;
    }

    .faq-answer p {
        padding-left: 2.2rem;
    }
}



@media (max-width: 1024px) {
    .features-card-grid,
    .features-card-grid.three-col {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .header-pill {
        padding: var(--space-xs) var(--space-sm);
    }

    .nav {
        display: none;
        position: absolute;
        top: calc(100% + var(--space-sm));
        left: 50%;
        transform: translateX(-50%);
        width: calc(100% - var(--space-xl));
        max-width: 400px;
        background-color: var(--color-white);
        flex-direction: column;
        padding: var(--space-md);
        border-radius: var(--radius-lg);
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    }

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

    .header-app-link {
        display: none;
    }

    .mobile-menu-toggle {
        display: inline-flex;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--space-md);
    }

    .footer-legal {
        order: 2;
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .features-card-grid.three-col {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .section {
        padding-block: var(--space-2xl);
    }

    .header-container {
        flex-wrap: wrap;
        justify-content: space-between;
    }

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

    .btn {
        width: 100%;
    }

    .final-cta-phone {
        width: 280px;
        height: 420px;
    }

    .iphone-frame {
        width: 200px;
        height: 355px;
    }

    .hand-image {
        right: -30px;
        width: 160px;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }
}
