:root {
    --bg-primary: #0f1117;
    --bg-secondary: #161922;
    --bg-gradient-start: #161922;
    --bg-gradient-end: #0f1117;
    --bg-card: rgba(59, 130, 246, 0.06);
    --bg-card-hover: rgba(59, 130, 246, 0.12);
    --bg-nav: rgba(15, 17, 23, 0.85);
    --bg-input: rgba(255, 255, 255, 0.06);

    --accent: #818cf8;
    --accent-medium: #6366f1;
    --accent-dark: #4f46e5;
    --accent-glow: rgba(129, 140, 248, 0.25);
    --accent-glow-strong: rgba(129, 140, 248, 0.45);
    --accent-subtle: rgba(99, 102, 241, 0.08);
    --accent-muted: rgba(99, 102, 241, 0.18);

    --text-primary: #f3f4f6;
    --text-secondary: #f1f5f9;
    --text-muted: #e2e8f0;

    --border-color: rgba(99, 102, 241, 0.20);
    --border-color-hover: rgba(99, 102, 241, 0.38);

    --shadow-card: 0 2px 24px rgba(0, 0, 0, 0.25);
    --shadow-glow: 0 0 30px rgba(129, 140, 248, 0.15);
    --shadow-phone: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 40px rgba(99, 102, 241, 0.10);

    --gradient-card: radial-gradient(circle at 50% 0%, rgba(99, 102, 241, 0.14) 0%, transparent 70%);

    --font-family: 'Satoshi', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;

    --nav-height: 64px;
    --nav-top: 20px;
    --total-top: calc(var(--nav-height) + var(--nav-top) + 8px);

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;

    --section-gap: 7rem;
    --section-gap-mobile: 4rem;
    --container-max: 1200px;
    --container-narrow: 720px;
    --container-medium: 900px;

    --text-normal: 1rem;
    --text-normal-lh: 1.5;
    --text-small: 0.85rem;
    --text-small-lh: 1.45;

    --scrollbar-track: rgba(255, 255, 255, 0.04);
    --scrollbar-thumb: rgba(99, 102, 241, 0.25);
    --scrollbar-thumb-hover: rgba(99, 102, 241, 0.45);
}

[data-theme="light"] {
    --bg-primary: #ffffff;
    --bg-secondary: #f8f9fb;
    --bg-gradient-start: #f8f9fb;
    --bg-gradient-end: #ffffff;
    --bg-card: rgba(99, 102, 241, 0.05);
    --bg-card-hover: rgba(99, 102, 241, 0.10);
    --bg-nav: rgba(255, 255, 255, 0.90);
    --bg-input: rgba(0, 0, 0, 0.04);

    --accent: #6366f1;
    --accent-medium: #4f46e5;
    --accent-dark: #4338ca;
    --accent-glow: rgba(99, 102, 241, 0.20);
    --accent-glow-strong: rgba(99, 102, 241, 0.35);
    --accent-subtle: rgba(99, 102, 241, 0.04);
    --accent-muted: rgba(99, 102, 241, 0.12);

    --text-primary: #1e1e2e;
    --text-secondary: #1f2937;
    --text-muted: #2d3748;

    --border-color: rgba(99, 102, 241, 0.15);
    --border-color-hover: rgba(99, 102, 241, 0.30);

    --shadow-card: 0 2px 20px rgba(0, 0, 0, 0.06);
    --shadow-glow: 0 0 30px rgba(99, 102, 241, 0.08);
    --shadow-phone: 0 20px 60px rgba(0, 0, 0, 0.10), 0 0 40px rgba(99, 102, 241, 0.05);

    --gradient-card: radial-gradient(circle at 50% 0%, rgba(99, 102, 241, 0.08) 0%, transparent 70%);

    --scrollbar-track: rgba(0, 0, 0, 0.03);
    --scrollbar-thumb: rgba(99, 102, 241, 0.18);
    --scrollbar-thumb-hover: rgba(99, 102, 241, 0.35);
}

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

html {
    scroll-behavior: smooth;
    overscroll-behavior-x: none;
    -webkit-text-size-adjust: 100%;
}

html, body {
    overflow-x: hidden;
}

* {
    scrollbar-width: thin;
    scrollbar-color: var(--scrollbar-thumb) var(--scrollbar-track);
}

::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: var(--scrollbar-track);
}

::-webkit-scrollbar-thumb {
    background: var(--scrollbar-thumb);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--scrollbar-thumb-hover);
}

::-webkit-scrollbar-corner {
    background: transparent;
}

body {
    font-family: var(--font-family);
    background: linear-gradient(180deg, var(--bg-gradient-start) 0%, var(--bg-gradient-end) 100%);
    background-attachment: fixed;
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
    padding-top: var(--total-top);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

button {
    font-family: inherit;
    cursor: pointer;
}

a.animated-underline {
    position: relative;
    color: inherit;
    text-decoration: none;
}

a.animated-underline::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
    background: currentColor;
    transition: width 0.3s cubic-bezier(.4,0,.2,1);
}

a.animated-underline:hover::after,
a.animated-underline:focus::after {
    width: 100%;
}

.highlighted {
    color: var(--accent);
}


.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: var(--text-normal);
    color: var(--text-primary);
    line-height: var(--text-normal-lh);
    margin: 0 auto 2rem;
}

nav {
    position: fixed;
    top: var(--nav-top);
    left: 50%;
    transform: translateX(-50%);
    width: 85%;
    max-width: var(--container-max);
    z-index: 800;
    background: var(--bg-nav);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: 1rem;
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1.5rem;
    height: var(--nav-height);
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.logo-icon {
    width: 32px;
    height: 32px;
    border-radius: var(--radius-sm);
    object-fit: cover;
}

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

.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 1.1rem;
    font-size: var(--text-small);
}

.nav-links a {
    color: var(--text-primary);
    transition: color 0.2s;
}

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

.nav-right {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.theme-toggle {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: all 0.25s ease;
    cursor: pointer;
}

.theme-toggle:hover {
    background: var(--bg-card-hover);
    color: var(--accent);
    border-color: var(--border-color-hover);
}

.theme-toggle svg {
    width: 18px;
    height: 18px;
}

.theme-toggle .icon-sun { display: none; }
.theme-toggle .icon-moon { display: block; }

[data-theme="light"] .theme-toggle .icon-sun { display: block; }
[data-theme="light"] .theme-toggle .icon-moon { display: none; }

button.nav-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 32px;
    padding: 0 1.1rem;
    font-size: var(--text-small);
    border-radius: var(--radius-sm);
}

.hamburger {
    background: none;
    border: none;
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 32px;
    height: 32px;
    padding: 0 5px;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: calc(var(--nav-top) + var(--nav-height) + 8px);
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    max-width: var(--container-max);
    background: var(--bg-nav);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: 1rem;
    z-index: 790;
    padding: 1rem;
}

.mobile-menu.active {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.mobile-menu a,
.mobile-menu button {
    display: block;
    padding: 0.9rem 1rem;
    font-size: var(--text-normal);
    color: var(--text-primary);
    border-radius: var(--radius-sm);
    transition: background 0.2s;
    background: none;
    border: none;
    text-align: left;
    width: 100%;
}

.mobile-menu a:hover,
.mobile-menu button:hover {
    background: var(--bg-card);
}

.mobile-menu .cta-button {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: #ffffff;
    border: none;
    text-align: center;
    font-weight: 600;
    box-shadow: 0 4px 20px var(--accent-glow);
    border-radius: 1rem;
    margin-top: 0.25rem;
}

.mobile-menu .cta-button:hover {
    background: linear-gradient(135deg, var(--accent-medium), var(--accent-dark));
    box-shadow: 0 8px 30px var(--accent-glow-strong);
}

.hero {
    text-align: center;
    padding: 3rem 2rem 4rem;
    min-height: calc(100dvh - var(--total-top));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-bg-phone {
    position: absolute;
    top: 50%;
    left: calc(50% + 200px);
    transform: translateY(-46%);
    width: 340px;
    pointer-events: none;
    user-select: none;
    z-index: 0;
    animation: heroPhoneReveal 1.2s cubic-bezier(.4,0,.2,1) 0.2s both;
}

.hero-bg-phone img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-xl);
    opacity: 0.45;
    mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}

.hero-bg-phone::before {
    content: '';
    position: absolute;
    inset: 10% 5%;
    border-radius: 50%;
    background: radial-gradient(ellipse at center, var(--accent-glow) 0%, transparent 70%);
    filter: blur(10px);
    opacity: 0.5;
    z-index: -1;
}

[data-theme="light"] .hero-bg-phone img {
    opacity: 0.3;
}

[data-theme="light"] .hero-bg-phone::before {
    opacity: 0.3;
}

@keyframes heroPhoneReveal {
    from {
        opacity: 0;
        transform: translateY(-42%) scale(0.92);
    }
    to {
        opacity: 1;
        transform: translateY(-46%) scale(1);
    }
}

.hero-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: var(--container-narrow);
    position: relative;
    z-index: 1;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: var(--accent);
    animation: scrollBob 1.8s ease-in-out infinite, scrollFadeIn 0.8s ease-out 0.6s both;
    cursor: pointer;
    z-index: 1;
    transition: opacity 0.4s ease, color 0.3s ease, filter 0.3s ease;
    filter: drop-shadow(0 0 8px var(--accent-glow));
}

.scroll-indicator:hover {
    color: var(--accent-medium);
    filter: drop-shadow(0 0 14px var(--accent-glow-strong));
}

.scroll-indicator.hidden {
    opacity: 0;
    pointer-events: none;
}

@keyframes scrollFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes scrollBob {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

.social-proof {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    border-radius: 100px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    font-size: var(--text-normal);
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease-out 0s both;
    box-shadow: 0 0 20px var(--accent-glow);
}

.social-proof-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #10b981;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4); }
    50% { opacity: 0.8; box-shadow: 0 0 0 6px rgba(16, 185, 129, 0); }
}

.hero-title {
    color: var(--text-primary);
    animation: fadeInUp 0.8s ease-out 0.1s both;
    font-size: 3.25rem;
    font-weight: 800;
    line-height: 1.2;
    margin: 0;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: var(--text-normal);
    color: var(--text-primary);
    line-height: var(--text-normal-lh);
    max-width: 540px;
    margin: 0 auto 2rem;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: #ffffff;
    padding: 0.75rem 2rem;
    border-radius: 1rem;
    font-weight: 600;
    font-size: var(--text-small);
    border: none;
    cursor: pointer;
    transition: all 0.25s ease;
    text-decoration: none;
    box-shadow: 0 4px 20px var(--accent-glow);
}

.cta-button:hover {
    background: linear-gradient(135deg, var(--accent-medium), var(--accent-dark));
    box-shadow: 0 8px 30px var(--accent-glow-strong);
    transform: translateY(-2px);
}

.cta-button:active {
    transform: translateY(0);
}

.waitlist-form {
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.waitlist-input-group {
    display: flex;
    flex-direction: row;
    gap: 10px;
    margin-bottom: 0.75rem;
}

.waitlist-input {
    flex: 1;
    padding: 13px 16px;
    border: 2px solid var(--border-color);
    border-radius: 1rem;
    font-size: 16px;
    font-family: inherit;
    background: var(--bg-input);
    color: var(--text-primary);
    transition: all 0.25s ease;
}

.waitlist-input:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-glow);
}

.waitlist-input::placeholder {
    color: var(--text-muted);
}

.waitlist-checkbox {
    margin-top: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--text-secondary);
    text-align: left;
    padding: 0.5rem;
    border-radius: var(--radius-sm);
    transition: background 0.2s;
}

.waitlist-checkbox:hover {
    background: var(--bg-card);
}

.checkbox-input {
    width: 18px;
    height: 18px;
    accent-color: var(--accent);
    cursor: pointer;
}

.checkbox-label {
    font-size: var(--text-normal);
    line-height: var(--text-normal-lh);
}

#consent-text {
    margin-top: 0.75rem;
    font-size: 0.75rem;
    line-height: 1.5;
    color: var(--text-muted);
    text-align: left;
    max-width: 100%;
}

#consent-text b {
    color: var(--accent);
}

.hero-trust-points {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 0.25rem;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-trust-points span {
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    font-size: var(--text-small);
}

.hero-trust-points span::before {
    content: '\2713';
    color: #10b981;
    font-weight: bold;
    font-size: 1rem;
    margin-right: 0.2rem;
}

.how-it-works-section {
    padding: var(--section-gap) 2rem;
    max-width: var(--container-max);
    margin: 0 auto;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.step-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 1rem;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.step-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-card);
    pointer-events: none;
}

.step-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px var(--accent-glow);
    border-color: var(--border-color-hover);
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: #ffffff;
    font-weight: 800;
    font-size: 1rem;
    margin-bottom: 1.25rem;
    position: relative;
}

.step-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.step-card p {
    font-size: var(--text-normal);
    color: var(--text-primary);
    line-height: var(--text-normal-lh);
}

.step-card.fade-in-up:nth-child(1) { transition-delay: 0s; }
.step-card.fade-in-up:nth-child(2) { transition-delay: 0.1s; }
.step-card.fade-in-up:nth-child(3) { transition-delay: 0.2s; }

.showcase {
    padding: var(--section-gap) 2rem;
    max-width: var(--container-max);
    margin: 0 auto;
}

.showcase-inner {
    display: flex;
    flex-direction: row;
    gap: 3rem;
    align-items: center;
}

.showcase-images {
    display: flex;
    gap: 16px;
    justify-content: center;
    width: 100%;
    flex: 0 0 50%;
    max-width: 50%;
}

.phone-frame {
    flex: 0 1 250px;
    max-width: 270px;
    background: transparent;
    border: none;
    border-radius: var(--radius-xl);
    padding: 0;
    box-shadow: none;
    overflow: visible;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.phone-frame.frame-left {
    transform: rotate(-3deg);
}

.phone-frame.frame-right {
    transform: rotate(3deg);
    margin-left: -20px;
}

.phone-frame:hover {
    transform: translateY(-4px) rotate(0deg) !important;
}

.phone-frame img {
    padding: 0.25rem;
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    display: block;
    image-rendering: high-quality;
    box-shadow:
        0 8px 30px rgba(0, 0, 0, 0.3),
        0 2px 8px rgba(0, 0, 0, 0.2),
        0 0 40px rgba(99, 102, 241, 0.06);
}

[data-theme="light"] .phone-frame img {
    box-shadow:
        0 12px 40px rgba(0, 0, 0, 0.14),
        0 4px 12px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(0, 0, 0, 0.05);
}

.showcase-text {
    flex: 1;
    text-align: left;
}

.showcase-text h2 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.showcase-text p {
    font-size: var(--text-normal);
    color: var(--text-primary);
    line-height: var(--text-normal-lh);
    margin-bottom: 0.5rem;
}

.showcase-reversed .showcase-inner {
    flex-direction: row-reverse;
}

.showcase.fade-in-up .showcase-images {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.showcase.fade-in-up .showcase-text {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.7s ease 0.15s, transform 0.7s ease 0.15s;
}

.showcase-reversed.fade-in-up .showcase-images {
    transform: translateX(40px);
}

.showcase-reversed.fade-in-up .showcase-text {
    transform: translateX(-40px);
}

.showcase.fade-in-up.visible .showcase-images,
.showcase.fade-in-up.visible .showcase-text {
    opacity: 1;
    transform: translateX(0);
}

.features-section {
    padding: var(--section-gap) 2rem;
    max-width: var(--container-max);
    margin: 0 auto;
}

.feature-groups {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.feature-group-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 1rem;
    padding: 1.75rem;
    transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-card);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.feature-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-color-hover);
    box-shadow: 0 8px 30px var(--accent-glow);
    transform: translateY(-4px);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    position: relative;
}

.feature-card p {
    font-size: var(--text-normal);
    line-height: var(--text-normal-lh);
    color: var(--text-primary);
    position: relative;
}

/* Feature card with hover preview — floating image */
.feature-card--has-preview::after {
    content: '';
    position: absolute;
    top: 14px;
    right: 14px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
    opacity: 0.5;
    transition: opacity 0.3s ease;
    animation: preview-dot-pulse 2s ease-in-out infinite;
}

.feature-card--has-preview:hover::after {
    opacity: 0;
}

@keyframes preview-dot-pulse {
    0%, 100% { opacity: 0.4; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.3); }
}

/* Preview floats on the right, absolutely positioned — text never moves */
.feature-card-preview {
    position: absolute;
    right: 1rem;
    top: 1rem;
    bottom: 1rem;
    max-width: 40%;
    transform: translateX(10px);
    z-index: 3;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.35s ease, transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card--has-preview:hover .feature-card-preview {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0);
}

/* Wider preview for composite/multi-phone screenshots (e.g. Edge-to-Edge) */
.feature-card--wide-preview .feature-card-preview {
    max-width: 65%;
}

/* ─── Show All Features Expandable Section ─── */

.all-features-expand {
    text-align: center;
    margin-top: 3rem;
}

.show-all-features-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.8rem 2.25rem;
    background: var(--bg-card);
    color: var(--accent);
    border: 1px solid var(--border-color);
    border-radius: 1rem;
    font-size: var(--text-normal);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.show-all-features-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-card);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.show-all-features-btn:hover {
    border-color: var(--border-color-hover);
    box-shadow: 0 4px 24px var(--accent-glow);
    transform: translateY(-2px);
}

.show-all-features-btn:hover::before {
    opacity: 1;
}

.show-all-features-btn.expanded {
    border-color: var(--accent-muted);
    background: var(--accent-subtle);
}

.show-all-features-chevron {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.show-all-features-btn.expanded .show-all-features-chevron {
    transform: rotate(180deg);
}

.show-all-features-label { display: inline; position: relative; }
.show-less-features-label { display: none; position: relative; }

.show-all-features-btn.expanded .show-all-features-label { display: none; }
.show-all-features-btn.expanded .show-less-features-label { display: inline; }

/* Expandable container — content stays in DOM for SEO */
.all-features-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.all-features-content.expanded {
    max-height: 8000px;
    transition: max-height 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ─── Feature List — Card-based categories ─── */

.all-features-list-view {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    margin-top: 2.5rem;
}

.all-features-category {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 1rem;
    padding: 1.5rem 1.75rem;
    position: relative;
    overflow: hidden;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.all-features-category::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-card);
    pointer-events: none;
}

.all-features-category:hover {
    border-color: var(--border-color-hover);
    box-shadow: 0 4px 24px var(--accent-glow);
}

.all-features-category-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    position: relative;
}

.all-features-category-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: #ffffff;
    font-weight: 700;
    font-size: 0.72rem;
    letter-spacing: 0.02em;
    flex-shrink: 0;
}

.all-features-category h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.01em;
    margin: 0;
}

.all-features-category ul {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
}

.all-features-category li {
    font-size: var(--text-small);
    line-height: 1.5;
    color: var(--text-primary);
    padding: 0.4rem 0;
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    border-bottom: 1px solid var(--border-color);
}

.all-features-category li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.all-features-category li:first-child {
    padding-top: 0;
}

.all-features-category li::before {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--accent);
    flex-shrink: 0;
    margin-top: 0.5rem;
    opacity: 0.6;
}

/* ─── All Features Responsive ─── */

@media (max-width: 1199px) {
    .all-features-list-view {
        gap: 1rem;
    }

    .all-features-category {
        padding: 1.25rem 1.5rem;
    }
}

@media (max-width: 767px) {
    .all-features-list-view {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .show-all-features-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 479px) {
    .all-features-category {
        padding: 1.15rem 1.25rem;
    }

    .all-features-category-number {
        width: 28px;
        height: 28px;
        font-size: 0.65rem;
    }
}

/* Frosted backdrop behind the image */
.feature-card-preview-inner {
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0.5rem;
    background: rgba(15, 17, 23, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: var(--radius-md);
    border: 1px solid rgba(129, 140, 248, 0.12);
    box-shadow:
        -12px 0 20px rgba(15, 17, 23, 0.6),
        0 4px 20px rgba(0, 0, 0, 0.3);
}

[data-theme="light"] .feature-card-preview-inner {
    background: rgba(248, 249, 251, 0.75);
    border-color: rgba(99, 102, 241, 0.1);
    box-shadow:
        -12px 0 20px rgba(248, 249, 251, 0.6),
        0 4px 20px rgba(0, 0, 0, 0.08);
}

.feature-card-preview-inner img {
    display: block;
    width: auto;
    height: 100%;
    max-height: 100%;
    border-radius: var(--radius-sm);
    cursor: pointer;
    object-fit: contain;
}

.value-prop-section {
    padding: var(--section-gap) 2rem;
    max-width: var(--container-medium);
    margin: 0 auto;
}

.value-prop-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.value-prop-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 1rem;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.value-prop-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-card);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.value-prop-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px var(--accent-glow);
    border-color: var(--border-color-hover);
}

.value-prop-card:hover::before {
    opacity: 1;
}

.value-prop-number {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent);
    margin-bottom: 0.75rem;
    position: relative;
}

.value-prop-card h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
    position: relative;
}

.value-prop-pain {
    font-style: italic;
    color: var(--text-muted);
    font-size: var(--text-normal);
    line-height: var(--text-normal-lh);
    margin-bottom: 0.75rem;
    position: relative;
}

.value-prop-gain {
    color: var(--text-primary);
    font-size: var(--text-normal);
    line-height: var(--text-normal-lh);
    position: relative;
}

.value-prop-card.fade-in-up:nth-child(1) { transition-delay: 0s; }
.value-prop-card.fade-in-up:nth-child(2) { transition-delay: 0.1s; }
.value-prop-card.fade-in-up:nth-child(3) { transition-delay: 0.2s; }

.founders-deal-banner {
    margin-top: 2.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color-hover);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.founders-deal-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-card);
    pointer-events: none;
}

.founders-deal-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: #ffffff;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 4px 14px;
    border-radius: 100px;
    margin-bottom: 0.75rem;
    position: relative;
}

.founders-deal-banner h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
    position: relative;
}

.founders-deal-banner p {
    font-size: var(--text-normal);
    color: var(--text-primary);
    line-height: var(--text-normal-lh);
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

.value-prop-transition {
    text-align: center;
    color: var(--text-muted);
    font-style: italic;
    font-size: var(--text-normal);
    margin-top: 2.5rem;
}

.comparison-section {
    padding: var(--section-gap) 2rem;
    max-width: var(--container-medium);
    margin: 0 auto;
}

.comparison-table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 1rem;
    border: 1px solid var(--border-color);
    background: var(--bg-card);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    font-size: var(--text-small);
}

.comparison-table thead tr {
    background: var(--accent);
    color: #ffffff;
}

.comparison-table th {
    padding: 14px 16px;
    font-weight: 600;
    text-align: left;
    white-space: nowrap;
}

.comp-justread-col,
.comp-others-col {
    text-align: center;
    width: 120px;
}

.comparison-table td {
    padding: 12px 16px;
    border-top: 1px solid var(--border-color);
    color: var(--text-primary);
    line-height: 1.5;
}

.feature-name {
    font-weight: 600;
    color: var(--text-primary);
}

.category-header td {
    background: var(--bg-card-hover);
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--accent);
    padding: 10px 16px;
    border-top: 1px solid var(--border-color);
}

.highlight-col {
    background: var(--accent-subtle);
}

.comp-check {
    text-align: center;
    width: 120px;
}

.check-yes {
    color: #10b981;
    font-weight: 700;
    font-size: 1.1rem;
}

.check-no {
    color: #ef4444;
    font-size: 1.1rem;
}

.comparison-footer {
    padding: 14px 16px;
    font-size: var(--text-small);
    color: var(--accent);
    font-weight: 600;
    border-top: 1px solid var(--border-color);
}

.faq-section {
    padding: var(--section-gap) 2rem;
    max-width: var(--container-narrow);
    margin: 0 auto;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 1rem;
    transition: all 0.3s ease;
    overflow: hidden;
}

.faq-item:hover {
    border-color: var(--border-color-hover);
}

.faq-item.active {
    border-color: var(--border-color-hover);
}

.faq-header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 600;
    font-family: inherit;
    transition: color 0.2s;
}

.faq-header:hover {
    color: var(--accent);
}

.faq-toggle {
    flex-shrink: 0;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--accent);
    transition: transform 0.3s ease;
    display: inline-block;
    line-height: 1;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.faq-item.active .faq-content {
    max-height: 300px;
}

.faq-content p {
    padding: 0 1.5rem 1.25rem;
    color: var(--text-primary);
    line-height: var(--text-normal-lh);
    font-size: var(--text-normal);
}

.faq-view-all {
    text-align: center;
    margin-top: 2rem;
}

.view-all-link {
    color: var(--accent);
    font-weight: 600;
    font-size: var(--text-small);
    transition: opacity 0.2s;
}

.view-all-link:hover {
    opacity: 0.8;
}

.roadmap-section {
    padding: var(--section-gap) 2rem;
    max-width: var(--container-max);
    margin: 0 auto;
}

.roadmap-iframe-wrapper {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 1rem;
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-card);
}

.roadmap-iframe-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-card);
    pointer-events: none;
    z-index: 1;
    border-radius: 1rem;
}

.roadmap-iframe-wrapper iframe {
    display: block;
    width: 100%;
    height: 750px;
    border: none;
    position: relative;
}

.blog-section {
    padding: var(--section-gap) 2rem;
    max-width: var(--container-max);
    margin: 0 auto;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.blog-card {
    display: flex;
    flex-direction: column;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 1rem;
    padding: 1.5rem;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.blog-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-color-hover);
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

.blog-card-category {
    display: inline-block;
    background: var(--accent);
    color: #ffffff;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    padding: 3px 10px;
    border-radius: 100px;
    margin-bottom: 0.75rem;
    align-self: flex-start;
}

.blog-card-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    line-height: 1.35;
}

.blog-card-summary {
    font-size: var(--text-normal);
    color: var(--text-primary);
    line-height: var(--text-normal-lh);
    flex: 1;
    margin-bottom: 1rem;
}

.blog-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.blog-card-date {
    font-size: var(--text-small);
    color: var(--text-muted);
}

.blog-card-arrow {
    font-size: 1.1rem;
    color: var(--accent);
    transition: transform 0.2s;
}

.blog-card:hover .blog-card-arrow {
    transform: translateX(4px);
}

.blog-view-all {
    text-align: center;
    margin-top: 2rem;
}

.final-cta {
    padding: var(--section-gap) 2rem;
    text-align: center;
}

.final-cta-card {
    max-width: var(--container-narrow);
    margin: 0 auto;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 1rem;
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.final-cta-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-card);
    pointer-events: none;
}

.final-cta-card h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
    letter-spacing: -0.02em;
    position: relative;
}

.final-cta-subtitle {
    font-size: var(--text-normal);
    color: var(--text-primary);
    margin-bottom: 2rem;
    line-height: var(--text-normal-lh);
    position: relative;
}

.final-cta-card .waitlist-form {
    animation: none;
    position: relative;
}

.final-cta-card .hero-trust-points {
    animation: none;
}

.floating-cta {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    z-index: 700;
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s cubic-bezier(.4,0,.2,1);
}

.floating-cta.visible {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    pointer-events: all;
}

.floating-cta .cta-button {
    box-shadow: 0 4px 24px var(--accent-glow-strong);
    padding: 0.85rem 2.25rem;
    font-size: var(--text-small);
}

footer {
    padding: 3rem 1.5rem 1.5rem;
    margin-top: 2rem;
    margin-bottom: 5rem;
}

.footer-made-with {
    text-align: center;
    padding: 2rem 0;
    border-top: 1px solid var(--border-color);
}

.footer-made-with > p {
    font-size: var(--text-small);
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.heart {
    display: inline-block;
    animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    25% { transform: scale(1.2); }
    50% { transform: scale(1); }
}

.credits-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.developer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.dev-name {
    font-size: var(--text-small);
    font-weight: 500;
    color: var(--text-primary);
}

.social-links {
    display: flex;
    gap: 0.6rem;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 6px;
    background: var(--bg-card);
    color: var(--text-secondary);
    border: 1px solid var(--border-color);
    transition: all 0.25s ease;
}

.social-links a:hover {
    background: var(--accent-medium);
    color: #ffffff;
    border-color: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px var(--accent-glow);
}

.social-links svg {
    width: 18px;
    height: 18px;
}

.ampersand {
    font-size: 1.2rem;
    color: var(--text-muted);
    font-weight: 300;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 2rem 0;
}

.footer-column h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.6rem;
}

.footer-column ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.footer-column a {
    color: var(--text-secondary);
    font-size: var(--text-small);
    transition: color 0.2s;
}

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

.footer-column select {
    background: var(--bg-card);
    width: 100%;
    padding: 0.55rem 2rem 0.55rem 0.75rem;
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-size: var(--text-small);
    font-weight: 500;
    border: 1px solid var(--border-color);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    cursor: pointer;
    transition: all 0.2s ease;
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' fill='none' stroke='%23999' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M1 1l4 4 4-4'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 10px 6px;
}

.footer-column select:hover,
.footer-column select:focus {
    border-color: var(--accent);
    outline: none;
}

.footer-bottom {
    max-width: var(--container-max);
    margin: 0 auto;
    padding-top: 1rem;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.92);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
}

.lightbox-image {
    max-width: 90vw;
    max-height: 90vh;
    width: auto;
    height: auto;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--accent);
    font-size: 24px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: bold;
    border: none;
    transition: background 0.2s;
}

.lightbox-close:hover {
    background: var(--accent-dark);
}

#cookie-consent-container {
    display: none;
    flex-direction: column;
    position: fixed;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 380px;
    max-width: calc(100vw - 24px);
    background: var(--bg-primary);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
    border-radius: 1rem;
    padding: 16px;
    gap: 10px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
    z-index: 1000;
}

#cookie-consent-container p:first-child {
    font-size: 1.1rem;
    font-weight: 600;
}

#cookie-consent-container p:nth-child(2) {
    font-size: var(--text-normal);
    color: var(--text-secondary);
    line-height: 1.5;
}

.cookie-consent-actions {
    display: flex;
    gap: 8px;
}

#cookie-consent-container button {
    display: inline-block;
    padding: 0.55rem 1.15rem;
    border-radius: var(--radius-sm);
    font-weight: 500;
    font-size: 0.9rem;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.cookie-accept {
    background: var(--accent);
    color: #ffffff;
}

.cookie-accept:hover {
    background: var(--accent-dark);
}

.cookie-decline {
    background: var(--bg-card);
    color: var(--text-secondary);
    border: 1px solid var(--border-color) !important;
}

.cookie-decline:hover {
    background: var(--bg-card-hover);
    color: var(--text-primary);
}

.toast {
    display: none;
    position: fixed;
    top: calc(var(--total-top) + 8px);
    left: 50%;
    transform: translateX(-50%);
    width: 380px;
    max-width: calc(100vw - 24px);
    background: var(--bg-primary);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
    border-radius: 1rem;
    padding: 14px 16px;
    align-items: center;
    gap: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    z-index: 1000;
}

.toast.success { border-left: 4px solid #10b981; }
.toast.error { border-left: 4px solid #ef4444; }
.toast.warning { border-left: 4px solid #f59e0b; }
.toast.info { border-left: 4px solid var(--accent); }

.toast .content { flex: 1; }
.toast .title { font-weight: 600; font-size: var(--text-small); margin-bottom: 2px; }
.toast .message { font-size: var(--text-small); color: var(--text-secondary); }

.toast .close {
    background: none;
    border: none;
    font-size: 18px;
    color: var(--text-muted);
    cursor: pointer;
    padding: 4px;
    transition: color 0.2s;
}

.toast .close:hover {
    color: var(--text-primary);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s cubic-bezier(.4,0,.2,1), transform 0.7s cubic-bezier(.4,0,.2,1);
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .fade-in-up {
        opacity: 1;
        transform: none;
    }

    .floating-cta {
        transition-duration: 0.01ms !important;
    }

    .phone-frame.frame-left,
    .phone-frame.frame-right {
        transform: none !important;
    }
}


@media (max-width: 1199px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        display: none;
    }

    button.nav-cta {
        display: none;
    }

    nav {
        width: 95%;
    }

    .hero {
        padding: 3rem calc(2.5% + 1.5rem) 4rem;
    }

    .hero-title {
        font-size: 3.5rem;
    }

    .section-title {
        font-size: 2.75rem;
    }

    .showcase {
        padding: var(--section-gap-mobile) calc(2.5% + 1.5rem);
    }

    .showcase-inner {
        gap: 2rem;
    }

    .showcase-images {
        flex: 0 0 40%;
        max-width: 40%;
    }

    .showcase-text h2 {
        font-size: 2rem;
    }

    .phone-frame {
        flex: 0 1 180px;
        max-width: 200px;
    }

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

    .features-section,
    .how-it-works-section,
    .comparison-section,
    .value-prop-section,
    .faq-section,
    .roadmap-section,
    .blog-section,
    .final-cta {
        padding: var(--section-gap-mobile) calc(2.5% + 1.5rem);
    }

    .comparison-section {
        max-width: var(--container-max);
    }

    .blog-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .final-cta-card h2 {
        font-size: 2.25rem;
    }

    footer {
        padding: 3rem calc(2.5% + 1.5rem) 1.5rem;
    }
}

@media (max-width: 767px) {
    nav {
        width: 100%;
    }

    .mobile-menu {
        width: 100%;
        border-radius: 0.75rem;
    }

    .nav-content {
        padding: 0 1rem;
    }

    .hero {
        padding: 3rem 1rem 4rem;
    }

    .showcase {
        padding: var(--section-gap-mobile) 1rem;
    }

    .features-section,
    .how-it-works-section,
    .comparison-section,
    .value-prop-section,
    .faq-section,
    .roadmap-section,
    .blog-section,
    .final-cta {
        padding: var(--section-gap-mobile) 1rem;
    }

    footer {
        padding: 3rem 1rem 1.5rem;
    }

    .value-prop-card {
        padding: 1.5rem;
    }

    .founders-deal-banner {
        padding: 1.5rem;
    }

    .hero-title {
        font-size: 3rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

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

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

    /* Bottom padding for tap-expand indicator */
    .feature-card--has-preview {
        padding-bottom: 2rem;
    }

    /* Chevron strip — overrides desktop dot + hover opacity:0 */
    .feature-card--has-preview::after,
    .feature-card--has-preview:hover::after {
        content: '▾';
        display: block;
        position: absolute;
        top: auto;
        right: 0;
        bottom: 0;
        left: 0;
        width: auto;
        height: auto;
        border-radius: 0 0 var(--radius-md) var(--radius-md);
        background: var(--accent-subtle);
        border-top: 1px solid var(--accent-muted);
        color: var(--accent);
        font-size: 0.65rem;
        line-height: 1;
        padding: 5px 0 6px;
        text-align: center;
        opacity: 0.9;
        animation: none;
        transition: opacity 0.25s ease;
        z-index: 2;
        pointer-events: none;
    }

    /* Open state — flip chevron, includes :hover to prevent desktop override */
    .feature-card--has-preview.preview-open::after,
    .feature-card--has-preview.preview-open:hover::after {
        content: '▴';
        opacity: 0.5;
    }

    /* Preview: visible as thumbnail by default, expands on tap */
    .feature-card-preview {
        position: static;
        pointer-events: auto;
        transform: none;
        opacity: 1;
        margin-top: 0.75rem;
        display: flex;
        justify-content: center;
        align-items: flex-start;
        max-width: 100%;
        max-height: 170px;
        overflow: hidden;
        margin-bottom: 0.5rem;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                    margin-top 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .feature-card--has-preview.preview-open .feature-card-preview {
        max-height: 900px;
        margin-top: 1rem;
    }

    .feature-card--wide-preview .feature-card-preview {
        max-width: 100%;
    }

    .feature-card-preview-inner {
        display: contents;
    }

    .feature-card-preview-inner img {
        display: block;
        width: 100%;
        max-width: none;
        height: auto;
        max-height: none;
        flex-shrink: 0;
        border-radius: var(--radius-md);
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
        cursor: pointer;
    }

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

    .showcase-inner {
        flex-direction: column;
        gap: 1.5rem;
    }

    .showcase-images {
        flex: initial;
        max-width: none;
    }

    .showcase-text {
        text-align: left;
        align-self: stretch;
    }

    .showcase-inner {
        align-items: center;
    }

    .showcase-reversed .showcase-inner {
        flex-direction: column;
    }

    .showcase.fade-in-up .showcase-images,
    .showcase.fade-in-up .showcase-text,
    .showcase-reversed.fade-in-up .showcase-images,
    .showcase-reversed.fade-in-up .showcase-text {
        opacity: 0;
        transform: translateY(24px);
        transition: opacity 0.7s cubic-bezier(.4,0,.2,1), transform 0.7s cubic-bezier(.4,0,.2,1);
    }

    .showcase.fade-in-up.visible .showcase-images,
    .showcase.fade-in-up.visible .showcase-text {
        opacity: 1;
        transform: translateY(0);
    }

    .comp-check,
    .comp-justread-col,
    .comp-others-col {
        width: 48px;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 12px 8px;
    }
}

@media (max-width: 639px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: var(--text-normal);
    }

    .showcase-text h2 {
        font-size: 1.75rem;
    }

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

    .final-cta-card h2 {
        font-size: 2rem;
    }

    .value-prop-card h3 {
        font-size: 1.2rem;
    }

    .founders-deal-banner h3 {
        font-size: 1.3rem;
    }

    .cta-button {
        width: 100%;
        padding: 0.9rem 2rem;
        text-align: center;
    }

    .comparison-table td:first-child,
    .comparison-table th:first-child {
        position: sticky;
        left: 0;
        background: var(--bg-primary);
        z-index: 2;
    }

    .comparison-table thead th:first-child {
        background: var(--accent);
    }

    .category-header td {
        position: static;
    }
}

@media (max-width: 479px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-trust-points {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }

    .waitlist-input-group {
        flex-direction: column;
    }

    nav {
        top: 12px;
        width: 95%;
    }

    .mobile-menu {
        top: calc(12px + var(--nav-height) + 8px);
    }

    .credits-container {
        flex-direction: column;
        gap: 1.5rem;
    }

    .ampersand {
        display: none;
    }

    .phone-frame {
        flex: 0 1 160px;
    }
}

.pricing-section {
    padding: var(--section-gap) 2rem;
    max-width: var(--container-max);
    margin: 0 auto;
}

.pricing-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    align-items: start;
}

.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 1rem;
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.pricing-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-card);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px var(--accent-glow);
    border-color: var(--border-color-hover);
}

.pricing-card:hover::before {
    opacity: 1;
}

/* Featured card — accent ring + subtle lift */
.pricing-card--featured {
    border-color: var(--accent);
    box-shadow: 0 0 24px var(--accent-glow), var(--shadow-card);
    transform: scale(1.03);
    padding-top: 2.75rem;
}

.pricing-card--featured::before {
    opacity: 1;
}

.pricing-card--featured:hover {
    transform: scale(1.03) translateY(-4px);
    box-shadow: 0 8px 36px var(--accent-glow-strong), var(--shadow-card);
}

/* "Best Value" pill at card top */
.pricing-badge {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: #ffffff;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 5px 18px;
    border-radius: 0 0 10px 10px;
    z-index: 2;
}

.pricing-card-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    position: relative;
}

.pricing-card-name {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

/* "Save 17%" inline badge */
.pricing-save-badge {
    display: none;
    /*display: inline-block;*/
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--accent);
    background: var(--accent-muted);
    padding: 2px 8px;
    border-radius: 100px;
    white-space: nowrap;
}

.pricing-card-price-wrap {
    display: flex;
    align-items: baseline;
    gap: 3px;
    margin-bottom: 1.25rem;
    position: relative;
    white-space: nowrap;
}

.pricing-card-price {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -0.03em;
    line-height: 1;
}

.pricing-card-period {
    font-size: var(--text-small);
    color: var(--text-muted);
    font-weight: 500;
}

.pricing-card-features {
    list-style: none;
    width: 100%;
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    position: relative;
}

.pricing-card-features li {
    font-size: var(--text-small);
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    line-height: var(--text-small-lh);
}

.pricing-card-features li::before {
    content: '\2713';
    color: #10b981;
    font-weight: 700;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.pricing-cta {
    width: 100%;
    text-align: center;
    position: relative;
    margin-top: auto;
}

.pricing-disclaimer {
    text-align: center;
    color: var(--text-muted);
    font-size: var(--text-small);
    margin-top: 1.5rem;
}

/* Staggered card entrance */
.pricing-card:nth-child(1) { transition-delay: 0s; }
.pricing-card:nth-child(2) { transition-delay: 0.1s; }
.pricing-card:nth-child(3) { transition-delay: 0.2s; }

/* ─── Pricing Responsive ─── */

@media (max-width: 1199px) {
    .pricing-section {
        padding: var(--section-gap-mobile) calc(2.5% + 1.5rem);
    }
}

@media (max-width: 767px) {
    .pricing-section {
        padding: var(--section-gap-mobile) 1rem;
    }

    .pricing-cards-grid {
        grid-template-columns: 1fr;
        max-width: 380px;
        margin: 0 auto;
    }

    .pricing-card--featured {
        transform: none;
    }

    .pricing-card--featured:hover {
        transform: translateY(-4px);
    }
}

#features,
#comparison,
#pricing,
#faq,
#how-it-works,
#why-justread,
#roadmap {
    scroll-margin-top: var(--total-top);
    scroll-behavior: smooth;
}

/* ─── Legal / prose content ─── */

/* Two-column layout: sticky TOC sidebar + content */
.legal-layout {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 2.5rem;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 2rem 2rem 4rem;
    align-items: start;
}

.legal-toc {
    position: sticky;
    top: var(--total-top);
    max-height: calc(100vh - var(--total-top) - 2rem);
    overflow-y: auto;
    padding: 1.25rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 1rem;
    scrollbar-width: thin;
    scrollbar-color: var(--border-color) transparent;
}

.legal-toc h3 {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
}

.legal-toc ol {
    list-style: none;
    padding: 0;
    margin: 0;
}

.legal-toc li {
    margin-bottom: 0.15rem;
}

.legal-toc a {
    display: block;
    padding: 0.3rem 0.6rem;
    font-size: 0.78rem;
    line-height: 1.35;
    color: var(--text-secondary);
    border-radius: 6px;
    transition: all 0.2s ease;
    text-decoration: none;
}

.legal-toc a:hover {
    background: var(--bg-card-hover);
    color: var(--accent);
}

.legal-toc a.active {
    background: var(--accent-subtle);
    color: var(--accent);
    font-weight: 600;
    border-left: 2px solid var(--accent);
}

.legal-page {
    min-width: 0;
}

.legal-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: var(--text-small);
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.legal-breadcrumb a {
    color: var(--accent);
    text-decoration: none;
    transition: opacity 0.2s;
}

.legal-breadcrumb a:hover {
    opacity: 0.75;
}

.legal-breadcrumb .separator {
    color: var(--text-muted);
    font-size: 0.75rem;
}

.legal-updated-badge {
    display: inline-block;
    background: var(--accent-subtle);
    border: 1px solid var(--accent-muted);
    color: var(--accent);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 14px;
    border-radius: 100px;
    margin-bottom: 1rem;
}

.legal-page h1 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.section-number {
    color: var(--accent);
}

.legal-back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 3rem;
    padding: 0.6rem 1.25rem;
    font-size: var(--text-small);
    font-weight: 600;
    color: var(--accent);
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    text-decoration: none;
    transition: all 0.2s ease;
}

.legal-back-link:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-color-hover);
    transform: translateX(-2px);
}

/* Single-column legal hero (used by terms, etc.) */
.legal-hero {
    text-align: center;
    padding: 3rem 2rem 1rem;
}

.legal-hero .section-subtitle {
    margin-bottom: 0;
}

.legal-content {
    max-width: var(--container-narrow);
    margin: 0 auto;
    padding: 0 2rem 4rem;
}

.legal-content h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: 3rem;
    margin-bottom: 0.75rem;
    color: var(--accent);
    scroll-margin-top: var(--total-top);
}

.legal-content h3 {
    font-size: 1.15rem;
    font-weight: 600;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.legal-content p {
    font-size: var(--text-normal);
    line-height: var(--text-normal-lh);
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.legal-content ul {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.legal-content li {
    font-size: var(--text-normal);
    line-height: var(--text-normal-lh);
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.legal-content a {
    color: var(--accent);
    text-decoration: underline;
}

.legal-content a:hover {
    opacity: 0.8;
}

.legal-content strong {
    color: var(--text-primary);
}

/* TOC card */
.toc-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 1rem;
    padding: 1.5rem 2rem;
    margin-bottom: 2rem;
}

.toc-card h2 {
    color: var(--text-primary);
    font-size: 1.15rem;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 0.75rem;
}

.toc-card ol {
    padding-left: 1.25rem;
}

.toc-card li {
    margin-bottom: 0.35rem;
    font-size: var(--text-small);
}

.toc-card a {
    color: var(--accent);
    text-decoration: none;
}

.toc-card a:hover {
    text-decoration: underline;
}

/* h2 dividers inside .legal-page */
.legal-page .legal-content h2 {
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.legal-page .legal-content h2:first-of-type {
    border-top: none;
    padding-top: 0;
}

/* ─── Legal Responsive ─── */

@media (max-width: 1199px) {
    .legal-layout {
        padding: 2rem calc(2.5% + 1.5rem) 4rem;
    }
}

@media (max-width: 767px) {
    .legal-layout {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1.5rem 1rem 3rem;
    }

    .legal-toc {
        position: static;
        max-height: none;
        overflow-y: visible;
    }

    .legal-page h1 {
        font-size: 2rem;
    }

    .legal-hero {
        padding: 2rem 1rem 0.5rem;
    }

    .legal-content {
        padding: 0 1rem 3rem;
    }

    .toc-card {
        padding: 1.25rem 1.25rem;
    }

    .legal-content h2 {
        font-size: 1.3rem;
        margin-top: 2.5rem;
    }
}

@media (max-width: 479px) {
    .legal-hero .section-title {
        font-size: 2rem;
    }

    .legal-page h1 {
        font-size: 1.75rem;
    }
}

/* ─── Blog Page ─── */

.blog-hero {
    text-align: center;
    padding: 3rem 2rem 0;
    max-width: var(--container-max);
    margin: 0 auto;
}

.blog-hero .section-subtitle {
    margin-bottom: 2rem;
}

.blog-filter-pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.blog-filter-pill {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    font-size: var(--text-small);
    font-weight: 500;
    padding: 6px 16px;
    border-radius: 100px;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.blog-filter-pill:hover {
    border-color: var(--accent);
    color: var(--text-primary);
}

.blog-filter-pill.active {
    background: var(--accent);
    border-color: var(--accent);
    color: #ffffff;
}

.blog-card--featured {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr;
    padding: 2rem;
}

.blog-card--featured .blog-card-category {
    width: fit-content;
}

.blog-card--featured .blog-card-title {
    font-size: 1.5rem;
}

.blog-card--featured .blog-card-summary {
    font-size: var(--text-normal);
    max-width: 65ch;
}

.blog-card--hidden {
    display: none;
}

/* ─── Blog Page Responsive ─── */

@media (max-width: 1199px) {
    .blog-hero {
        padding: 2.5rem calc(2.5% + 1.5rem) 0;
    }
}

@media (max-width: 767px) {
    .blog-hero {
        padding: 2rem 1rem 0;
    }

    .blog-card--featured {
        grid-column: 1;
        padding: 1.5rem;
    }

    .blog-card--featured .blog-card-title {
        font-size: 1.25rem;
    }

    .blog-filter-pills {
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 4px;
    }
}

/* ─── Blog Post Article ─── */

.blog-post-hero {
    text-align: center;
    padding: 4rem 2rem 3rem;
    position: relative;
    overflow: hidden;
}

.blog-post-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-card);
    pointer-events: none;
}

.blog-post-hero::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 2px;
    background: var(--accent);
    border-radius: 1px;
    box-shadow: 0 0 12px var(--accent);
}

.blog-post-hero .legal-breadcrumb {
    max-width: var(--container-max);
    margin: 0 auto 2rem;
    position: relative;
    justify-content: center;
    opacity: 0.8;
}

.blog-post-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
    max-width: var(--container-max);
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.blog-post-meta .blog-card-category {
    margin-bottom: 0;
}

.blog-post-meta .blog-post-date {
    font-size: var(--text-small);
    color: var(--text-muted);
}

.blog-post-hero .section-title {
    font-size: 2.75rem;
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 2rem;
    max-width: var(--container-narrow);
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.blog-post-article {
    max-width: var(--container-narrow);
    margin: 0 auto;
    padding: 2rem 2rem 2rem;
}

.blog-post-article img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-sm);
    margin: 1.5rem 0;
}

.blog-post-article ol {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

@media (max-width: 767px) {
    .blog-post-hero {
        padding: 3rem 1rem 2.5rem;
    }

    .blog-post-hero .section-title {
        font-size: 2rem;
    }

    .blog-post-hero::after {
        width: 80px;
    }

    .blog-post-article {
        padding: 2rem 1rem 2rem;
    }
}

@media (max-width: 479px) {
    .blog-post-hero {
        padding: 2.5rem 1rem 2rem;
    }

    .blog-post-hero .section-title {
        font-size: 1.75rem;
    }

    .blog-post-hero::after {
        width: 60px;
    }
}

/* ─── FAQ Page ─── */

.faq-page-hero {
    text-align: center;
    padding: 3rem 2rem 1rem;
}

.faq-page-hero .section-subtitle {
    margin-bottom: 0;
}

.faq-page .faq-section {
    max-width: var(--container-narrow);
    margin: 0 auto;
    padding: 2rem 2rem 0;
}

.faq-page .faq-section:first-of-type {
    padding-top: 3rem;
}

.faq-section-heading {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    scroll-margin-top: calc(var(--nav-top) + var(--nav-height) + 60px);
}

.faq-page .faq-item.active .faq-content {
    max-height: 600px;
}

.faq-features-list {
    list-style: none;
    padding: 0 1.5rem 1rem;
}

.faq-features-list li {
    padding: 0.25rem 0;
    font-size: var(--text-normal);
    line-height: var(--text-normal-lh);
    color: var(--text-primary);
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.faq-features-list li::before {
    content: '\2713';
    color: #10b981;
    font-weight: 700;
    font-size: 0.85rem;
    flex-shrink: 0;
    margin-top: 0.15rem;
}

.faq-contact-cta {
    padding: var(--section-gap) 2rem;
    text-align: center;
}

.faq-contact-card {
    max-width: var(--container-narrow);
    margin: 0 auto;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 1rem;
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.faq-contact-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-card);
    pointer-events: none;
}

.faq-contact-card h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
    letter-spacing: -0.02em;
    position: relative;
}

.faq-contact-card p {
    font-size: var(--text-normal);
    color: var(--text-primary);
    line-height: var(--text-normal-lh);
    margin-bottom: 1.5rem;
    max-width: 480px;
    position: relative;
}

.faq-content .list-text {
    padding-bottom: 0.25rem;
}

/* ─── FAQ Page Responsive ─── */

@media (max-width: 1199px) {
    .faq-page .faq-section {
        padding: 2rem calc(2.5% + 1.5rem) 0;
    }

    .faq-contact-cta {
        padding: var(--section-gap-mobile) calc(2.5% + 1.5rem);
    }
}

@media (max-width: 767px) {
    .faq-page-hero {
        padding: 2rem 1rem 0.5rem;
    }

    .faq-page .faq-section {
        padding: 2rem 1rem 0;
    }

    .faq-contact-cta {
        padding: var(--section-gap-mobile) 1rem;
    }

    .faq-contact-card {
        padding: 2rem 1.5rem;
    }

    .faq-contact-card h2 {
        font-size: 1.75rem;
    }
}

@media (max-width: 479px) {
    .faq-page-hero .section-title {
        font-size: 2rem;
    }

}
