/* ===== CSS Variables - Light Theme ===== */
:root {
    --primary: #0066EE;
    --primary-dark: #0052BE;
    --primary-light: #4D94F4;
    --accent: #0066EE;
    --bg-main: #f8f9fc;
    --bg-cream: #ffffff;
    --bg-section: #f0f4f8;
    --bg-card: rgba(255, 255, 255, 0.95);
    --text-primary: #1a1a2e;
    --text-secondary: #5a5a7a;
    --text-muted: #8a8aa3;
    --shadow-soft: 0 4px 24px rgba(0, 102, 238, 0.08);
    --shadow-medium: 0 8px 40px rgba(0, 102, 238, 0.12);
    --shadow-glow: 0 0 60px rgba(0, 102, 238, 0.15);
    --border-light: rgba(0, 102, 238, 0.1);
    --border-radius: 18px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --section-title-size: clamp(2rem, 3.6vw, 3rem);
}

/* ===== Reset & Base ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-main);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* ===== Hero Section ===== */
.hero {
    min-height: 100vh;
    min-height: 100svh;
    position: relative;
    display: flex;
    flex-direction: column;
    background:
        linear-gradient(90deg, rgba(0, 102, 238, 0.98) 0%, rgba(0, 102, 238, 0.94) 34%, rgba(0, 102, 238, 0.78) 54%, rgba(0, 102, 238, 0.58) 100%),
        radial-gradient(circle at 76% 42%, rgba(255, 255, 255, 0.13) 0%, transparent 36%);
    background-color: #0066EE;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background: url('Resources/Hero Section/overlay.png') center bottom / cover no-repeat;
    mix-blend-mode: screen;
    opacity: 0.34;
}

/* ===== Navbar ===== */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin: 0;
    padding: 14px max(24px, calc((100% - 1180px) / 2));
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.86);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 102, 238, 0.08);
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.28rem;
    font-weight: 700;
    color: var(--text-primary);
    text-decoration: none;
}

.logo img {
    width: auto;
    height: 36px;
    object-fit: contain;
}

.nav-links {
    display: flex;
    gap: 24px;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.82rem;
    transition: var(--transition);
    position: relative;
    white-space: nowrap;
}

.nav-link:hover {
    color: var(--primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-cta {
    background: var(--primary);
    color: white;
    padding: 10px 22px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.84rem;
    transition: var(--transition);
    box-shadow: 0 4px 16px rgba(0, 102, 238, 0.3);
    white-space: nowrap;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 102, 238, 0.4);
    background: var(--primary-dark);
}

.hero .navbar {
    position: fixed;
    background: rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.hero .logo {
    color: #ffffff;
}

.hero .nav-link {
    color: rgba(255, 255, 255, 0.84);
}

.hero .nav-link:hover {
    color: #ffffff;
}

.hero .nav-cta {
    background: #ffffff;
    color: #0066EE;
    box-shadow: 0 12px 30px rgba(0, 47, 128, 0.18);
}

.hero .nav-cta:hover {
    background: #eef6ff;
    box-shadow: 0 14px 34px rgba(0, 47, 128, 0.24);
}

body.nav-scrolled .hero .navbar {
    background: #ffffff;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom: 1px solid rgba(0, 102, 238, 0.08);
    box-shadow: 0 10px 30px rgba(15, 35, 70, 0.08);
}

body.nav-scrolled .hero .logo {
    color: var(--text-primary);
}

body.nav-scrolled .hero .nav-link {
    color: var(--text-secondary);
}

body.nav-scrolled .hero .nav-link:hover {
    color: var(--primary);
}

body.nav-scrolled .hero .nav-cta {
    background: var(--primary);
    color: #ffffff;
    box-shadow: 0 4px 16px rgba(0, 102, 238, 0.3);
}

body.nav-scrolled .hero .nav-cta:hover {
    background: var(--primary-dark);
    box-shadow: 0 6px 20px rgba(0, 102, 238, 0.4);
}

/* ===== Hero Content ===== */
.hero-inner {
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
    padding: 112px 0 56px;
    display: flex;
    align-items: center;
    flex: 1;
    position: relative;
    z-index: 1;
}

.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: left;
    padding: 0;
    width: 48%;
    max-width: 560px;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 26px;
    padding: 7px 13px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.68rem;
    font-weight: 600;
    text-transform: uppercase;
}

.hero-badge span + span::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 4px;
    margin: 0 8px 2px 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.72);
}

.hero-content h1 {
    font-size: 68px;
    font-weight: 600;
    line-height: 80px;
    margin-bottom: 26px;
    letter-spacing: -1px;
    color: #ffffff;
}

.accent-text {
    display: inline-block;
    margin: 7px 0;
    padding: 3px 16px 8px;
    background: #ffffff;
    border-radius: 8px;
    color: #0066EE;
    font-weight: 600;
}

.hero-subtitle {
    font-size: clamp(1rem, 1.35vw, 1.14rem);
    color: rgba(255, 255, 255, 0.9);
    max-width: 520px;
    margin-bottom: 32px;
    line-height: 1.6;
}

.hero-visual {
    position: absolute;
    top: 82px;
    right: -12px;
    bottom: 0;
    left: 48%;
    z-index: 1;
    pointer-events: none;
    isolation: isolate;
}

.hero-visual::before {
    content: '';
    position: absolute;
    top: 50%;
    right: -52%;
    width: min(104%, 640px);
    aspect-ratio: 896 / 913;
    z-index: 0;
    background: url('Resources/Hero Section/circle.svg') center / contain no-repeat;
    filter: brightness(0) saturate(100%) invert(82%) sepia(18%) saturate(1050%) hue-rotate(176deg) brightness(105%) contrast(102%);
    opacity: 0.04;
    transform: translateY(-50%);
    pointer-events: none;
}

.hero-visual img {
    position: absolute;
    display: block;
    user-select: none;
}

.hero-transformation {
    right: -15%;
    bottom: 6%;
    width: clamp(600px, 55vw, 820px);
    height: auto;
    aspect-ratio: 3 / 2;
    max-width: none;
    z-index: 2;
    border-radius: 28px 0 0 0;
    filter: drop-shadow(0 28px 42px rgba(0, 25, 80, 0.24));
    animation: heroTransformationIn 900ms cubic-bezier(0.22, 1, 0.36, 1) 120ms both;
}

.hero-phone {
    left: -22%;
    bottom: 4%;
    width: clamp(280px, 23.5vw, 365px);
    opacity: 1;
    z-index: 1;
    transform: rotate(-6deg);
    filter: drop-shadow(0 28px 42px rgba(0, 25, 80, 0.2));
    animation: heroRisePhone 900ms ease-out both, heroFloatPhone 5.8s ease-in-out 1s infinite;
}

.hero-girl {
    left: 11%;
    bottom: 0;
    width: clamp(325px, 29vw, 450px);
    z-index: 2;
    filter: drop-shadow(0 28px 34px rgba(0, 25, 80, 0.18));
    animation: heroRise 800ms ease-out 120ms both;
}

.hero-card {
    right: 0;
    width: clamp(150px, 13vw, 200px);
    z-index: 3;
    transform-origin: 100% 50%;
    filter: drop-shadow(0 18px 26px rgba(0, 25, 80, 0.2));
    animation: heroCardIn 820ms cubic-bezier(0.22, 1, 0.36, 1) both, heroCardFloat 5.8s ease-in-out 1.2s infinite;
}

.hero-card-weight {
    --card-rotate: 6deg;
    --fan-start-rotate: 24deg;
    --fan-start-y: 96px;
    --float-x: -5px;
    --float-y: -12px;
    --float-rotate: -1.2deg;
    right: -12%;
    top: 10%;
    transform: rotate(var(--card-rotate));
    animation-delay: 260ms, 1.2s;
}

.hero-card-water {
    --card-rotate: 1deg;
    --fan-start-rotate: 10deg;
    --fan-start-y: 0px;
    --float-x: 4px;
    --float-y: -9px;
    --float-rotate: 0.8deg;
    right: -7%;
    top: 39%;
    transform: rotate(var(--card-rotate));
    animation-delay: 380ms, 1.35s;
}

.hero-card-streak {
    --card-rotate: -5deg;
    --fan-start-rotate: -20deg;
    --fan-start-y: -96px;
    --float-x: -3px;
    --float-y: -11px;
    --float-rotate: 1deg;
    right: -14%;
    top: 68%;
    transform: rotate(var(--card-rotate));
    animation-delay: 500ms, 1.5s;
}

@keyframes heroRise {
    from {
        opacity: 0;
        transform: translate3d(36px, 28px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes heroTransformationIn {
    from {
        opacity: 0;
        transform: translate3d(44px, 28px, 0) scale(0.97);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0) scale(1);
    }
}

@keyframes heroRisePhone {
    from {
        opacity: 0;
        transform: translate3d(-34px, 34px, 0) rotate(-8deg);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0) rotate(-6deg);
    }
}

@keyframes heroCardIn {
    from {
        opacity: 0;
        transform: translate3d(92px, var(--fan-start-y), 0) rotate(var(--fan-start-rotate)) scale(0.88);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0) rotate(var(--card-rotate)) scale(1);
    }
}

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

@keyframes heroFloatPhone {
    0%, 100% {
        transform: translate3d(0, 0, 0) rotate(-6deg);
    }
    50% {
        transform: translate3d(5px, -14px, 0) rotate(-4.5deg);
    }
}

@keyframes heroCardFloat {
    0%, 100% {
        translate: 0 0;
        rotate: 0deg;
    }
    50% {
        translate: var(--float-x) var(--float-y);
        rotate: var(--float-rotate);
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-phone,
    .hero-girl,
    .hero-transformation,
    .hero-card {
        animation: none;
    }

    .reveal-on-scroll,
    .reveal-panel,
    .benefit-panel.split-reveal,
    .split-reveal .benefit-copy,
    .split-reveal .benefit-visual {
        opacity: 1;
        filter: none;
        transform: none;
        clip-path: none;
        transition: none;
    }

    .comparison-row,
    .comparison-row.is-filtering-in,
    .comparison-row.is-filtering-out {
        animation: none !important;
        transition: none !important;
    }

    .faq-answer,
    .faq-answer p,
    .faq-plus {
        transition: none !important;
    }
}

/* ===== Store Buttons ===== */
.store-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.store-btn {
    display: inline-block;
    transition: var(--transition);
    cursor: pointer;
}

.store-btn img {
    width: auto;
    height: 42px;
    border-radius: 8px;
}

.store-btn:hover {
    transform: scale(1.05);
}

/* ===== Coming Soon Modal ===== */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(26, 26, 46, 0.6);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: white;
    padding: 40px;
    border-radius: 24px;
    text-align: center;
    max-width: 340px;
    margin: 20px;
    transform: scale(0.9) translateY(20px);
    transition: var(--transition);
    box-shadow: var(--shadow-medium);
}

.modal-overlay.active .modal-content {
    transform: scale(1) translateY(0);
}

.modal-icon {
    font-size: 40px;
    margin-bottom: 12px;
}

.modal-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.modal-content p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.5;
    font-size: 0.95rem;
}

.modal-close {
    background: var(--primary);
    color: white;
    border: none;
    padding: 10px 32px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 16px rgba(0, 102, 238, 0.3);
}

.modal-close:hover {
    transform: scale(1.05);
    background: var(--primary-dark);
}

/* ===== Screenshots Section ===== */
.reveal-on-scroll {
    --reveal-delay: 0ms;
    opacity: 0;
    filter: blur(10px);
    transform: translate3d(0, 46px, 0) scale(0.975);
    transition:
        opacity 700ms ease var(--reveal-delay),
        filter 800ms ease var(--reveal-delay),
        transform 900ms cubic-bezier(0.16, 1, 0.3, 1) var(--reveal-delay);
    will-change: opacity, filter, transform;
}

.reveal-heading {
    transform: translate3d(0, 34px, 0) scale(0.94);
    letter-spacing: 0.03em;
    transition:
        opacity 650ms ease var(--reveal-delay),
        filter 750ms ease var(--reveal-delay),
        transform 850ms cubic-bezier(0.16, 1, 0.3, 1) var(--reveal-delay),
        letter-spacing 850ms cubic-bezier(0.16, 1, 0.3, 1) var(--reveal-delay);
}

.reveal-panel {
    clip-path: inset(0 0 92% 0 round 22px);
    transform: translate3d(0, 26px, 0) scale(0.985);
    transition:
        opacity 550ms ease var(--reveal-delay),
        filter 750ms ease var(--reveal-delay),
        transform 950ms cubic-bezier(0.16, 1, 0.3, 1) var(--reveal-delay),
        clip-path 1000ms cubic-bezier(0.16, 1, 0.3, 1) var(--reveal-delay);
}

.reveal-card {
    transform: translate3d(0, 58px, 0) rotateX(8deg) scale(0.96);
    transform-origin: center bottom;
}

.reveal-on-scroll.is-revealed {
    opacity: 1;
    filter: blur(0);
    transform: translate3d(0, 0, 0) rotateX(0) scale(1);
    letter-spacing: normal;
}

.reveal-panel.is-revealed {
    clip-path: inset(0 0 0 0 round 22px);
}

.screenshots {
    padding: 30px 0 50px;
    overflow: hidden;
    background: linear-gradient(180deg, transparent 0%, var(--bg-section) 20%, var(--bg-section) 80%, transparent 100%);
}

.section-title {
    text-align: center;
    font-size: var(--section-title-size);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.045em;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 28px;
}

.screenshots-carousel {
    margin-top: 12px;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}

.carousel-track {
    display: flex;
    gap: 16px;
    animation: scroll 35s linear infinite;
    width: max-content;
}

.carousel-track:hover {
    animation-play-state: paused;
}

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

.screenshot-item {
    flex-shrink: 0;
}

.screenshot-item img {
    width: 200px;
    height: auto;
    border-radius: 18px;
    box-shadow: var(--shadow-medium);
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.screenshot-item:hover img {
    transform: scale(1.03) translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 102, 238, 0.2);
}

/* ===== Benefits Showcase Section ===== */
.benefits-showcase {
    padding: 76px 0 88px;
    background: #fbfcff;
}

.benefits-heading {
    max-width: 660px;
    margin: 0 auto 34px;
}

.benefit-panels {
    display: grid;
    gap: 24px;
}

.benefit-panel {
    min-height: 310px;
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(270px, 0.92fr);
    align-items: center;
    gap: 32px;
    padding: 44px 52px;
    border-radius: 28px;
    color: #0d2746;
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.benefit-panel.split-reveal {
    opacity: 0;
    transform: scale(0.985);
    transition:
        opacity 500ms ease var(--reveal-delay),
        transform 1000ms cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay);
}

.split-reveal .benefit-copy,
.split-reveal .benefit-visual {
    opacity: 0;
    transition:
        opacity 500ms ease calc(var(--reveal-delay) + 120ms),
        transform 1000ms cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay);
    will-change: opacity, transform;
}

.split-reveal .benefit-copy {
    transform: translate3d(0, 94px, 0);
}

.split-reveal .benefit-visual {
    transform: translate3d(0, -94px, 0);
}

.benefit-panel.split-reveal.is-revealed,
.split-reveal.is-revealed .benefit-copy,
.split-reveal.is-revealed .benefit-visual {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
}

.benefit-panel::before,
.benefit-panel::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: -1;
}

.benefit-panel::before {
    width: 280px;
    height: 280px;
    right: -76px;
    top: -116px;
    background: rgba(255, 255, 255, 0.34);
}

.benefit-panel::after {
    width: 150px;
    height: 150px;
    left: 42%;
    bottom: -96px;
    border: 28px solid rgba(255, 255, 255, 0.22);
}

.benefit-panel-progress {
    background: linear-gradient(135deg, #c9f49d 0%, #88df9f 100%);
}

.benefit-panel-water {
    background: linear-gradient(135deg, #bdeeff 0%, #79d6f5 100%);
}

.benefit-panel-streak {
    background: linear-gradient(135deg, #ffe1c7 0%, #ffb77f 100%);
}

.benefit-copy {
    max-width: 510px;
}

.benefit-kicker {
    display: inline-flex;
    margin-bottom: 14px;
    padding: 6px 10px;
    border: 1px solid rgba(13, 39, 70, 0.12);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.34);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.benefit-copy h3 {
    max-width: 470px;
    margin-bottom: 14px;
    font-size: clamp(1.8rem, 3vw, 2.7rem);
    line-height: 1.08;
    letter-spacing: -0.035em;
}

.benefit-copy p {
    max-width: 500px;
    font-size: 0.98rem;
    line-height: 1.65;
    color: rgba(13, 39, 70, 0.78);
}

.benefit-visual {
    min-height: 220px;
    display: grid;
    place-items: center;
    position: relative;
}

.benefit-visual::before {
    content: '';
    position: absolute;
    width: 230px;
    height: 230px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    box-shadow: 0 0 0 22px rgba(255, 255, 255, 0.1);
}

.benefit-visual img {
    width: min(100%, 245px);
    height: auto;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 24px 30px rgba(13, 39, 70, 0.2));
    transition: transform 300ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.benefit-panel:hover .benefit-visual img {
    transform: translateY(-7px) rotate(1deg);
}

/* ===== Comparison Section ===== */
.comparison-section {
    padding: 96px 0 104px;
    position: relative;
    overflow: hidden;
    background: #f5f5f7;
}

.comparison-heading {
    max-width: 820px;
    margin: 0 auto 30px;
    text-align: center;
}

.comparison-eyebrow {
    display: inline-flex;
    margin-bottom: 12px;
    padding: 6px 11px;
    border-radius: 999px;
    background: rgba(0, 102, 238, 0.08);
    color: #0066cc;
    font-size: 0.72rem;
    font-weight: 650;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.comparison-heading .section-title {
    margin-bottom: 14px;
    color: #1d1d1f;
}

.comparison-heading .section-subtitle {
    max-width: 720px;
    margin-right: auto;
    margin-left: auto;
    color: #6e6e73;
    font-size: 1.02rem;
    line-height: 1.55;
}

.comparison-filters {
    display: flex;
    justify-content: center;
    width: max-content;
    max-width: 100%;
    gap: 3px;
    margin: 0 auto 28px;
    padding: 4px;
    flex-wrap: wrap;
    border-radius: 999px;
    background: rgba(118, 118, 128, 0.12);
}

.comparison-filter {
    min-height: 36px;
    padding: 7px 15px;
    border: 0;
    border-radius: 999px;
    background: transparent;
    color: #3a3a3c;
    font: inherit;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: color 200ms ease, background 200ms ease, border-color 200ms ease, transform 200ms ease, box-shadow 200ms ease;
}

.comparison-filter:hover {
    transform: none;
    background: rgba(255, 255, 255, 0.55);
    box-shadow: none;
}

.comparison-filter:focus-visible {
    outline: 3px solid rgba(0, 102, 238, 0.24);
    outline-offset: 2px;
}

.comparison-filter.active {
    background: #ffffff;
    color: #1d1d1f;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.16);
}

.comparison-shell {
    border: 1px solid rgba(0, 0, 0, 0.07);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.07);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    overflow: hidden;
}

.comparison-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    table-layout: fixed;
}

.comparison-table caption {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.comparison-table th,
.comparison-table td {
    padding: 21px 24px;
    text-align: left;
    vertical-align: middle;
    border-bottom: 1px solid #e5e5ea;
}

.comparison-table thead th {
    background: rgba(245, 245, 247, 0.9);
    color: #86868b;
    font-size: 0.7rem;
    font-weight: 650;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.comparison-table thead th:first-child {
    width: 18%;
}

.comparison-table thead th:nth-child(2) {
    width: 24%;
}

.comparison-table thead th:nth-child(3) {
    width: 25%;
}

.comparison-table thead th:last-child {
    width: 33%;
}

.comparison-table thead .snapfit-column {
    background: rgba(0, 102, 238, 0.07);
    color: #0066cc;
}

.comparison-row {
    --row-delay: 0ms;
    transition: opacity 260ms ease, transform 260ms ease, background 220ms ease, box-shadow 220ms ease;
}

.comparison-row:last-child th,
.comparison-row:last-child td {
    border-bottom: 0;
}

.comparison-row th[scope='row'] {
    display: flex;
    align-items: center;
    gap: 0;
    color: #1d1d1f;
    font-size: 0.93rem;
    font-weight: 650;
}

.comparison-row td {
    color: #6e6e73;
    font-size: 0.88rem;
    line-height: 1.55;
}

.comparison-row .snapfit-cell {
    background: rgba(0, 102, 238, 0.045);
    color: #1d1d1f;
    font-weight: 600;
}

.comparison-row:hover,
.comparison-row:focus-visible {
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.86);
    outline: none;
    box-shadow: inset 2px 0 0 #0071e3;
}

.comparison-row:hover .snapfit-cell,
.comparison-row:focus-visible .snapfit-cell {
    background: rgba(0, 102, 238, 0.09);
}

.comparison-row.is-filtering-out {
    opacity: 0;
    transform: translateY(12px) scale(0.985);
}

.comparison-row[hidden] {
    display: none;
}

.comparison-row.is-filtering-in {
    animation: comparisonRowIn 420ms cubic-bezier(0.16, 1, 0.3, 1) both;
    animation-delay: var(--row-delay);
}

@keyframes comparisonRowIn {
    from {
        opacity: 0;
        transform: translateY(18px) scale(0.985);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.comparison-note {
    max-width: 800px;
    margin: 16px auto 0;
    color: #86868b;
    font-size: 0.75rem;
    line-height: 1.55;
    text-align: center;
}

/* ===== Reviews Section ===== */
.reviews {
    padding: 50px 0;
    background: var(--bg-section);
    overflow: hidden;
}

.reviews-carousel {
    margin-top: 28px;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}

.reviews-track {
    display: flex;
    gap: 20px;
    animation: scroll-reviews 40s linear infinite;
    width: max-content;
}

.reviews-track:hover {
    animation-play-state: paused;
}

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

.review-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 24px;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    flex-shrink: 0;
    width: 320px;
}

.review-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
}

.review-stars {
    color: #FFB800;
    font-size: 1.1rem;
    margin-bottom: 12px;
    letter-spacing: 2px;
}

.review-text {
    color: var(--text-primary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 16px;
    font-style: italic;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1rem;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.9rem;
}

.author-meta {
    color: var(--text-muted);
    font-size: 0.8rem;
}

/* ===== Product Hunt Section ===== */
.product-hunt {
    padding: 50px 0;
    background: var(--bg-cream);
    text-align: center;
}

.ph-embed {
    display: flex;
    justify-content: center;
    margin-top: 24px;
}

/* ===== FAQ Section ===== */
.faq-section {
    padding: 100px 0 108px;
    background: #f5f5f7;
}

.faq-container {
    max-width: 920px;
}

.faq-heading {
    max-width: 760px;
    margin: 0 auto 34px;
    text-align: center;
}

.faq-eyebrow {
    display: inline-flex;
    margin-bottom: 14px;
    padding: 6px 11px;
    border-radius: 999px;
    background: rgba(0, 102, 238, 0.08);
    color: #0066cc;
    font-size: 0.7rem;
    font-weight: 650;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.faq-heading h2 {
    margin-bottom: 16px;
    color: #1d1d1f;
    font-size: var(--section-title-size);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.045em;
}

.faq-heading p {
    color: #6e6e73;
    font-size: 1.03rem;
    line-height: 1.6;
}

.faq-list {
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.07);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.06);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.faq-item {
    border-bottom: 1px solid #e5e5ea;
}

.faq-item:last-child {
    border-bottom: 0;
}

.faq-item summary {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 20px 26px;
    color: #1d1d1f;
    font-size: 1.05rem;
    font-weight: 600;
    line-height: 1.35;
    cursor: pointer;
    list-style: none;
    transition: color 200ms ease, background 200ms ease;
}

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

.faq-item summary:hover {
    background: rgba(0, 0, 0, 0.018);
    color: #0066cc;
}

.faq-item summary:focus-visible {
    outline: 3px solid rgba(0, 113, 227, 0.22);
    outline-offset: -3px;
}

.faq-plus {
    width: 30px;
    height: 30px;
    display: block;
    flex: 0 0 auto;
    border-radius: 50%;
    background: #f2f2f7;
    position: relative;
    transition: transform 350ms cubic-bezier(0.16, 1, 0.3, 1), background 200ms ease;
}

.faq-plus::before,
.faq-plus::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 12px;
    height: 1.5px;
    border-radius: 999px;
    background: #3a3a3c;
    transform: translate(-50%, -50%);
}

.faq-plus::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item[open] .faq-plus {
    background: #e8f2ff;
    transform: rotate(45deg);
}

.faq-answer {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 420ms cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-answer > div {
    overflow: hidden;
}

.faq-answer p {
    max-width: 760px;
    padding: 0 72px 24px 26px;
    color: #6e6e73;
    font-size: 0.94rem;
    line-height: 1.65;
    opacity: 0;
    transform: translateY(-8px);
    transition: opacity 260ms ease, transform 420ms cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-answer a {
    color: #0066cc;
    text-decoration: none;
}

.faq-answer a:hover {
    text-decoration: underline;
}

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

.faq-item[open] .faq-answer p {
    opacity: 1;
    transform: translateY(0);
}

/* ===== CTA Section ===== */
.cta {
    padding: 42px 0;
    background: var(--bg-main);
}

.cta-content {
    position: relative;
    min-height: 176px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 0.8fr);
    align-items: center;
    gap: 24px;
    overflow: hidden;
    padding: 34px 56px;
    border-radius: 10px;
    background:
        radial-gradient(circle at 94% 22%, rgba(255, 255, 255, 0.26) 0 2px, transparent 3px),
        radial-gradient(circle at 90% 38%, rgba(255, 255, 255, 0.2) 0 2px, transparent 3px),
        linear-gradient(135deg, #0066EE 0%, #0066EE 55%, #0066EE 100%);
    box-shadow: 0 18px 44px rgba(0, 102, 238, 0.22);
}

.cta-content::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 93% 18%, rgba(255, 255, 255, 0.26) 0 2px, transparent 3px),
        radial-gradient(circle at 97% 18%, rgba(255, 255, 255, 0.22) 0 2px, transparent 3px),
        radial-gradient(circle at 93% 30%, rgba(255, 255, 255, 0.2) 0 2px, transparent 3px),
        radial-gradient(circle at 97% 30%, rgba(255, 255, 255, 0.18) 0 2px, transparent 3px);
    pointer-events: none;
}

.cta-copy {
    position: relative;
    z-index: 1;
    max-width: 540px;
}

.cta-content h2 {
    font-size: var(--section-title-size);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.045em;
    margin-bottom: 12px;
    color: #ffffff;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.98rem;
    margin-bottom: 24px;
}

.cta .store-buttons {
    justify-content: flex-start;
}

.cta .store-btn img {
    height: 42px;
}

.cta-visual {
    position: absolute;
    right: -8px;
    bottom: -36px;
    z-index: 1;
    width: min(32%, 300px);
    display: flex;
    justify-content: flex-end;
}

.cta-visual img {
    width: 100%;
    height: auto;
    display: block;
}

/* ===== Footer ===== */
.footer {
    padding: 24px 0;
    background: var(--bg-cream);
    border-top: 1px solid var(--border-light);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
}

.footer-brand img {
    width: auto;
    height: 24px;
    object-fit: contain;
}

.copyright {
    color: var(--text-muted);
    font-size: 0.8rem;
}

.footer-links {
    display: flex;
    gap: 8px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    margin: 8px 0;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.85rem;
    transition: var(--transition);
}

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

.footer-links span {
    color: var(--text-muted);
    font-size: 0.7rem;
}

/* ===== Responsive ===== */
@media (max-width: 1080px) {
    .nav-links {
        gap: 16px;
    }

    .hero {
        min-height: 100vh;
        min-height: 100svh;
    }

    .hero-content h1 {
        font-size: clamp(2.8rem, 5.8vw, 4.4rem);
    }

    .hero-phone {
        left: -24%;
        bottom: 3%;
        width: clamp(265px, 27vw, 320px);
    }

    .hero-girl {
        left: 9%;
        width: clamp(300px, 33vw, 375px);
    }

    .hero-card {
        width: clamp(135px, 16vw, 175px);
    }
}

@media (max-width: 920px) {
    .nav-links {
        display: none;
    }

    .hero-inner {
        padding-top: 104px;
    }

    .hero-content {
        width: 58%;
        max-width: 500px;
    }

    .hero-subtitle {
        max-width: 560px;
    }

    .hero-phone {
        left: -26%;
        bottom: 2%;
        width: 270px;
        opacity: 1;
    }

    .hero-girl {
        left: 5%;
        width: 335px;
    }

    .hero-card {
        width: 140px;
    }

    .hero-card-weight {
        right: -12%;
        top: 12%;
    }

    .hero-card-water {
        right: -7%;
        top: 41%;
    }

    .hero-card-streak {
        right: -14%;
        top: 70%;
    }

    .cta-content {
        padding: 30px 34px;
        grid-template-columns: 1fr 0.72fr;
    }

    .cta-visual {
        right: -6px;
        bottom: -18px;
        width: min(30%, 240px);
    }
}

@media (max-width: 768px) {
    :root {
        --section-title-size: clamp(1.9rem, 8.5vw, 2.3rem);
    }

    .hero {
        min-height: max(780px, 100svh);
        background:
            linear-gradient(90deg, rgba(0, 102, 238, 0.98) 0%, rgba(0, 102, 238, 0.95) 62%, rgba(0, 102, 238, 0.72) 100%),
            radial-gradient(circle at 80% 42%, rgba(255, 255, 255, 0.12) 0%, transparent 34%);
    }

    .hero::before {
        opacity: 0.22;
        background-position: 58% bottom;
    }

    .navbar {
        padding: 12px 16px;
    }
    
    .logo span {
        display: inline;
    }
    
    .hero-inner {
        width: calc(100% - 32px);
        padding: 112px 0 300px;
        align-items: flex-start;
    }

    .hero-content {
        width: 100%;
        max-width: none;
        z-index: 4;
    }

    .hero-visual {
        top: auto;
        right: 0;
        bottom: 0;
        left: 0;
        height: 310px;
    }

    .hero-visual::before {
        top: auto;
        right: -145px;
        bottom: -22px;
        width: 290px;
        transform: none;
    }

    .hero-badge {
        margin-bottom: 16px;
        padding: 6px 10px;
        font-size: 0.6rem;
        white-space: nowrap;
    }

    .hero-content h1 {
        font-size: clamp(2.35rem, 9vw, 3rem);
        line-height: 1.04;
        margin-bottom: 14px;
    }

    .hero-phone {
        display: none !important;
        animation: none;
    }

    .hero-girl {
        left: auto;
        right: -30px;
        bottom: 0;
        width: 275px;
        opacity: 1;
    }

    .hero-card {
        display: none !important;
        animation: none;
    }

    .hero-transformation {
        right: -72px;
        bottom: 22px;
        width: 480px;
        border-radius: 22px 0 0 0;
    }
    
    .hero-subtitle {
        max-width: 100%;
        margin-bottom: 18px;
        font-size: 0.94rem;
        line-height: 1.55;
    }

    .hero .store-buttons {
        flex-direction: row;
        align-items: flex-start;
        flex-wrap: nowrap;
        gap: 8px;
    }

    .hero .store-btn img {
        height: 36px;
    }

    .benefits-showcase {
        padding: 54px 0 62px;
    }

    .benefits-heading {
        margin-bottom: 24px;
    }

    .benefit-panels {
        gap: 16px;
    }

    .benefit-panel {
        min-height: auto;
        grid-template-columns: 1fr;
        gap: 22px;
        padding: 30px 24px 24px;
        border-radius: 22px;
    }

    .benefit-copy h3 {
        font-size: clamp(1.65rem, 8vw, 2.15rem);
    }

    .benefit-copy p {
        font-size: 0.92rem;
    }

    .benefit-visual {
        min-height: 190px;
    }

    .benefit-visual::before {
        width: 190px;
        height: 190px;
    }

    .benefit-visual img {
        width: min(72%, 215px);
    }

    .comparison-section {
        padding: 58px 0 66px;
    }

    .comparison-heading {
        margin-bottom: 18px;
    }

    .comparison-filters {
        justify-content: flex-start;
        width: 100%;
        margin: 0 0 18px;
        overflow-x: auto;
        flex-wrap: nowrap;
        scrollbar-width: none;
    }

    .comparison-filters::-webkit-scrollbar {
        display: none;
    }

    .comparison-filter {
        min-height: 40px;
        flex: 0 0 auto;
        padding: 8px 14px;
    }

    .comparison-shell {
        border: 0;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
        overflow: visible;
    }

    .comparison-table,
    .comparison-table tbody {
        display: block;
    }

    .comparison-table thead {
        display: none;
    }

    .comparison-table tbody {
        display: grid;
        gap: 14px;
    }

    .comparison-row {
        display: block;
        padding: 18px;
        border: 1px solid rgba(0, 0, 0, 0.06);
        border-radius: 20px;
        background: #ffffff;
        box-shadow: 0 8px 28px rgba(0, 0, 0, 0.055);
    }

    .comparison-table .comparison-row th,
    .comparison-table .comparison-row td {
        display: block;
        padding: 9px 0;
        border: 0;
    }

    .comparison-row th[scope='row'] {
        padding-top: 0;
        padding-bottom: 12px;
        border-bottom: 1px solid #e7eef8;
        font-size: 1rem;
    }

    .comparison-row td::before {
        content: attr(data-label);
        display: block;
        margin-bottom: 3px;
        color: #86868b;
        font-size: 0.62rem;
        font-weight: 750;
        letter-spacing: 0.08em;
        text-transform: uppercase;
    }

    .comparison-table .comparison-row .snapfit-cell {
        margin-top: 7px;
        padding: 12px 13px;
        border-radius: 12px;
        background: #f2f7ff;
    }

    .comparison-row:hover,
    .comparison-row:focus-visible {
        transform: translateY(-2px);
        box-shadow: 0 14px 34px rgba(0, 0, 0, 0.08);
    }

    .comparison-note {
        margin-top: 14px;
        text-align: left;
    }

    .faq-section {
        padding: 70px 0 76px;
    }

    .faq-heading {
        margin-bottom: 26px;
    }

    .faq-heading p {
        font-size: 0.96rem;
    }

    .faq-list {
        border-radius: 22px;
    }

    .faq-item summary {
        min-height: 68px;
        gap: 16px;
        padding: 17px 18px;
        font-size: 0.96rem;
    }

    .faq-plus {
        width: 28px;
        height: 28px;
    }

    .faq-answer p {
        padding: 0 58px 21px 18px;
        font-size: 0.9rem;
    }
    
    .reviews {
        padding: 40px 0;
    }
    
    .section-subtitle {
        margin-bottom: 20px;
    }
    
    .review-card {
        padding: 18px;
    }
    
    .screenshot-item img {
        width: 160px;
    }
    
    .cta {
        padding: 50px 0;
    }

    .cta-content {
        min-height: auto;
        grid-template-columns: 1fr;
        padding: 30px 24px 0;
        text-align: center;
    }

    .cta-copy {
        max-width: none;
    }

    .cta .store-buttons {
        justify-content: center;
    }

    .cta-visual {
        position: relative;
        right: auto;
        bottom: -12px;
        width: min(100%, 260px);
        margin: 4px auto 0;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: max(760px, 100svh);
    }

    .logo {
        gap: 8px;
        font-size: 1.1rem;
    }

    .logo img {
        width: auto;
        height: 32px;
    }

    .nav-cta {
        padding: 9px 16px;
        font-size: 0.78rem;
    }

    .hero-inner {
        width: calc(100% - 24px);
        padding-top: 102px;
        padding-bottom: 270px;
    }

    .hero-content h1 {
        font-size: clamp(2.15rem, 10.5vw, 2.55rem);
    }

    .hero-phone {
        display: none !important;
        animation: none;
    }

    .hero-girl {
        left: auto;
        right: -28px;
        width: 245px;
    }

    .hero-transformation {
        right: -64px;
        width: 430px;
    }

    .hero-subtitle {
        max-width: 100%;
        font-size: 0.9rem;
        margin-bottom: 16px;
    }
    
    .hero .store-buttons {
        flex-direction: row;
        align-items: flex-start;
        flex-wrap: nowrap;
    }
    
    .hero .store-btn img {
        height: 34px;
    }

    .cta-content {
        padding: 28px 18px 0;
    }

    .cta-content p {
        font-size: 0.92rem;
    }

    .cta .store-buttons {
        flex-direction: row;
        gap: 8px;
    }

    .cta .store-btn img {
        height: 34px;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
}
