:root {
    /* Colors */
    --colors-primary: #F76B1C;
    --colors-primary-gradient: linear-gradient(135deg, #F76B1C, #FF8C00);
    --colors-premium: #D97706;
    --colors-ink: #1B1A17;
    --colors-muted: #7A7568;
    --colors-canvas: #FFFAF1;
    --colors-surface-card: #FFFFFF;
    --colors-surface-hover: #FCFAF7;
    --colors-hairline: #E8E1D2;
    --colors-on-primary: #FFFFFF;
    --colors-semantic-error: #E11D48;
    --colors-semantic-success: #16A34A;

    /* Typography */
    --font-outfit: 'Outfit', -apple-system, system-ui, sans-serif;
    --font-inter: 'Inter', -apple-system, system-ui, Roboto, 'Helvetica Neue', sans-serif;

    /* Rounded */
    --rounded-none: 0px;
    --rounded-sm: 8px;
    --rounded-md: 12px;
    --rounded-lg: 24px;
    --rounded-full: 9999px;

    /* Spacing */
    --spacing-xs: 4px;
    --spacing-sm: 8px;
    --spacing-md: 16px;
    --spacing-base: 24px;
    --spacing-lg: 32px;
    --spacing-xl: 64px;
    --spacing-section: 120px;
}

/* Global Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--colors-canvas);
    color: var(--colors-ink);
    font-family: var(--font-inter);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
}

/* Technical Grid Background */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(var(--colors-hairline) 1px, transparent 1px);
    background-size: 24px 24px;
    z-index: -10;
    pointer-events: none;
    opacity: 0.7;
}

/* Typography Classes */
.display-lg {
    font-family: var(--font-outfit);
    font-size: 56px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -1.5px;
    color: var(--colors-ink);
}

.display-md {
    font-family: var(--font-outfit);
    font-size: 40px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.8px;
    color: var(--colors-ink);
}

.display-sm {
    font-family: var(--font-outfit);
    font-size: 28px;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: -0.5px;
    color: var(--colors-ink);
}

.body-md {
    font-family: var(--font-inter);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
}

.text-muted {
    color: var(--colors-muted);
}

.text-gradient {
    background: var(--colors-primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

/* Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-base);
}

.section {
    padding: var(--spacing-section) 0;
    position: relative;
}

.section-title {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--spacing-xl);
}

.section-title p {
    margin-top: var(--spacing-sm);
    font-size: 18px;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-xl);
    align-items: center;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
}

/* Components */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-inter);
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.5px;
    border-radius: var(--rounded-md);
    padding: 16px 32px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--colors-primary-gradient);
    color: var(--colors-on-primary);
    box-shadow: 0 4px 12px rgba(247, 107, 28, 0.15);
}

.btn-primary:hover {
    filter: brightness(1.05);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(247, 107, 28, 0.25);
}

.btn-secondary {
    background: transparent;
    color: var(--colors-ink);
    border: 1px solid var(--colors-hairline);
}

.btn-secondary:hover {
    background: var(--colors-surface-card);
    border-color: #d1c9b8;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(27, 26, 23, 0.03);
}

.btn-premium {
    background: var(--colors-premium);
    color: var(--colors-on-primary);
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(217, 119, 6, 0.15);
}

.btn-premium:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(217, 119, 6, 0.25);
}

.card-glass {
    background: var(--colors-surface-card);
    border: 1px solid var(--colors-hairline);
    border-radius: var(--rounded-lg);
    padding: var(--spacing-lg);
    box-shadow: 0 4px 20px rgba(27, 26, 23, 0.02);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.card-glass:hover {
    background: var(--colors-surface-hover);
    border-color: #d1c9b8;
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(27, 26, 23, 0.05);
}

/* Pain Cards */
.card-pain {
    background: var(--colors-surface-card);
    border: 1px solid #fee2e2; /* light warning border */
    border-radius: var(--rounded-lg);
    padding: var(--spacing-lg);
    box-shadow: 0 4px 20px rgba(225, 29, 72, 0.01);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.card-pain::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background-color: var(--colors-semantic-error);
}

.card-pain:hover {
    border-color: #fca5a5;
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(225, 29, 72, 0.05);
}

.pain-icon {
    width: 48px;
    height: 48px;
    background: rgba(225, 29, 72, 0.06);
    color: var(--colors-semantic-error);
    border-radius: var(--rounded-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-md);
}

/* Modern Comparison Table */
.modern-comparison-wrapper {
    max-width: 900px;
    margin: var(--spacing-xl) auto 0;
    overflow-x: auto;
    border-radius: var(--rounded-lg);
    border: 1px solid var(--colors-hairline);
    box-shadow: 0 10px 30px rgba(27, 26, 23, 0.02);
    background: #ffffff;
}

.modern-comparison-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.modern-comparison-table th,
.modern-comparison-table td {
    padding: 16px 24px;
    border-bottom: 1px solid var(--colors-hairline);
    font-size: 15px;
}

.modern-comparison-table th {
    background: #fffdf9;
    font-family: var(--font-outfit);
    font-size: 16px;
    font-weight: 700;
    color: var(--colors-ink);
    border-bottom: 2px solid var(--colors-hairline);
}

.modern-comparison-table tr:last-child td {
    border-bottom: none;
}

.modern-comparison-table td {
    color: var(--colors-muted);
}

.modern-comparison-table .feature-col {
    font-weight: 600;
    color: var(--colors-ink);
    width: 30%;
}

.modern-comparison-table .passnote-col {
    background: rgba(247, 107, 28, 0.02);
    width: 35%;
}

.passnote-badge-title {
    color: var(--colors-primary);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.modern-comparison-table .passnote-col {
    font-weight: 500;
    color: var(--colors-ink);
}

.modern-comparison-table span.check-icon,
.modern-comparison-table span.cross-icon {
    margin-right: 8px;
    font-size: 14px;
}

.check-icon {
    color: var(--colors-semantic-success);
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.cross-icon {
    color: var(--colors-semantic-error);
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

/* Onboarding Steps */
.onboarding-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-base);
    margin-top: var(--spacing-xl);
}

.card-step {
    background: var(--colors-surface-card);
    border: 1px solid var(--colors-hairline);
    border-radius: var(--rounded-md);
    padding: var(--spacing-lg);
    box-shadow: 0 4px 20px rgba(27, 26, 23, 0.01);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    text-align: left;
}

.card-step:hover {
    border-color: #d1c9b8;
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(27, 26, 23, 0.03);
}

.step-number {
    font-family: var(--font-outfit);
    font-size: 14px;
    font-weight: 700;
    color: var(--colors-primary);
    background: rgba(247, 107, 28, 0.08);
    width: 32px;
    height: 32px;
    border-radius: var(--rounded-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-md);
}

.card-step h4 {
    font-family: var(--font-outfit);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: var(--spacing-xs);
    color: var(--colors-ink);
}

.card-step p {
    font-size: 14px;
    color: var(--colors-muted);
    line-height: 1.5;
}

/* Header */
.header {
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 250, 241, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--colors-hairline);
    box-shadow: 0 4px 20px rgba(27, 26, 23, 0.01);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-outfit);
    font-size: 24px;
    font-weight: 700;
    color: var(--colors-ink);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
}

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

.header-tagline {
    font-size: 14px;
    font-weight: 600;
    color: var(--colors-muted);
    border-left: 1px solid var(--colors-hairline);
    padding-left: 16px;
    font-family: var(--font-outfit);
}

.nav-links {
    display: flex;
    gap: var(--spacing-xs);
    align-items: center;
}

.nav-links a:not(.btn) {
    color: var(--colors-muted);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    padding: 8px 14px;
    border-radius: var(--rounded-sm);
    transition: all 0.2s ease;
}

.nav-links a:not(.btn):hover {
    color: var(--colors-primary);
    background-color: rgba(247, 107, 28, 0.05);
}

/* Hero Section */
.hero {
    text-align: center;
    padding-top: calc(var(--spacing-section) * 1.3);
    padding-bottom: var(--spacing-section);
    position: relative;
    overflow: hidden;
}

.hero-glow {
    position: absolute;
    top: -20%;
    left: 50%;
    transform: translateX(-50%);
    width: 80vw;
    height: 50vw;
    background: radial-gradient(circle, rgba(247, 107, 28, 0.08) 0%, rgba(255, 250, 241, 0) 70%);
    z-index: -1;
    pointer-events: none;
}

.hero p {
    max-width: 650px;
    margin: var(--spacing-base) auto var(--spacing-lg);
    font-size: 18px;
}

.hero-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--spacing-base);
    margin-bottom: var(--spacing-xl);
}

.hero-actions a {
    padding: 0;
    background: none;
    border: none;
    border-radius: 0;
    box-shadow: none;
    display: block;
    transition: transform 0.2s ease, opacity 0.2s;
}

.hero-actions a:hover {
    transform: translateY(-3px);
    opacity: 0.95;
}

.hero-actions img {
    height: 48px;
    width: auto;
    display: block;
}

/* Sync & Security Shield Graphic */
.css-shield-graphic {
    position: relative;
    width: 360px;
    height: 360px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.shield-center {
    position: relative;
    width: 100px;
    height: 100px;
    background: var(--colors-primary-gradient);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    z-index: 10;
    box-shadow: 0 15px 35px rgba(247, 107, 28, 0.3);
}

.shield-center svg {
    width: 48px;
    height: 48px;
}

.shield-pulse {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    border: 2px solid var(--colors-primary);
    animation: shieldPulse 2s infinite ease-out;
    z-index: -1;
}

@keyframes shieldPulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

.orbit {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 1px dashed rgba(27, 26, 23, 0.2);
}

.orbit-1 {
    width: 220px;
    height: 220px;
    animation: rotateOrbit 15s linear infinite;
}

.orbit-2 {
    width: 340px;
    height: 340px;
    animation: rotateOrbit 25s linear infinite reverse;
}

@keyframes rotateOrbit {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.orbit-node {
    position: absolute;
    width: 48px;
    height: 48px;
    background: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 8px 20px rgba(27, 26, 23, 0.08);
    border: 1px solid var(--colors-hairline);
    color: var(--colors-ink);
}

.orbit-node svg {
    width: 20px;
    height: 20px;
    animation: counterRotate 15s linear infinite;
}

.orbit-2 .orbit-node svg {
    animation: counterRotateReverse 25s linear infinite;
}

@keyframes counterRotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(-360deg);
    }
}

@keyframes counterRotateReverse {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.node-cloud {
    top: -24px;
    left: calc(50% - 24px);
    color: #2563EB;
}

.node-device {
    bottom: 20px;
    right: -10px;
    color: #16A34A;
}

.node-sync {
    top: 40px;
    left: -15px;
    color: #7C3AED;
}

/* Solution Section Styles */
.features-showcase-container {
    display: flex;
    flex-direction: column;
    gap: 80px;
    margin-top: var(--spacing-xl);
}

.feature-showcase {
    display: flex;
    align-items: center;
    gap: var(--spacing-xl);
}

.feature-showcase:nth-child(even) {
    flex-direction: row-reverse;
}

.feature-text {
    flex: 1;
}

.feature-tag {
    display: inline-block;
    padding: 6px 12px;
    background: rgba(247, 107, 28, 0.08);
    color: var(--colors-primary);
    font-size: 13px;
    font-weight: 600;
    border-radius: var(--rounded-full);
    margin-bottom: var(--spacing-sm);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.feature-text h3 {
    margin-bottom: var(--spacing-sm);
}

.feature-text p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: var(--spacing-base);
}

.feature-bullets {
    list-style: none;
}

.feature-bullets li {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    font-size: 15px;
    margin-bottom: 10px;
    color: var(--colors-ink);
    font-weight: 500;
}

.feature-bullets svg {
    color: var(--colors-primary);
    flex-shrink: 0;
}

.feature-image-container {
    flex: 1;
    display: flex;
    justify-content: center;
    perspective: 1000px;
}

.feature-showcase-mockup {
    max-width: 100%;
    max-height: 440px;
    border-radius: var(--rounded-lg);
    border: 1px solid var(--colors-hairline);
    padding: 8px;
    background: #ffffff;
    box-shadow: 0 15px 35px rgba(27, 26, 23, 0.04);
    transform: rotateY(-3deg) rotateX(3deg);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.feature-image-container:hover .feature-showcase-mockup {
    transform: rotateY(0deg) rotateX(0deg) scale(1.03);
    box-shadow: 0 25px 50px rgba(27, 26, 23, 0.08);
}

/* Interactive Password Generator Widget */
.generator-card {
    max-width: 500px;
    margin: var(--spacing-xl) auto 0;
    background: #ffffff;
    border: 1px solid var(--colors-hairline);
    border-radius: var(--rounded-lg);
    padding: var(--spacing-lg);
    box-shadow: 0 10px 30px rgba(27, 26, 23, 0.02);
    text-align: left;
}

.gen-output-container {
    position: relative;
    margin-bottom: var(--spacing-base);
}

.gen-output {
    width: 100%;
    padding: 14px 50px 14px 16px;
    background: #fffdf9;
    border: 1px solid var(--colors-hairline);
    border-radius: var(--rounded-md);
    font-family: monospace;
    font-size: 18px;
    color: var(--colors-ink);
    word-break: break-all;
    min-height: 56px;
    display: flex;
    align-items: center;
}

.gen-copy-btn {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--colors-primary);
    cursor: pointer;
    padding: 6px;
    transition: transform 0.2s, color 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gen-copy-btn:hover {
    color: var(--colors-premium);
    transform: translateY(-50%) scale(1.1);
}

.gen-slider-container {
    margin-bottom: var(--spacing-md);
}

.gen-slider-label {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--colors-ink);
}

.gen-slider {
    width: 100%;
    height: 6px;
    background: var(--colors-hairline);
    border-radius: var(--rounded-full);
    outline: none;
    -webkit-appearance: none;
    cursor: pointer;
}

.gen-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    border-radius: var(--rounded-full);
    background: var(--colors-primary);
    cursor: pointer;
    transition: transform 0.1s;
    border: none;
}

.gen-slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}

.gen-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: var(--spacing-base);
}

.gen-option-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--colors-muted);
    cursor: pointer;
    user-select: none;
    font-weight: 500;
}

.gen-option-label input {
    accent-color: var(--colors-primary);
    width: 16px;
    height: 16px;
    cursor: pointer;
}

.gen-strength {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: var(--spacing-md);
    border-top: 1px solid var(--colors-hairline);
}

.gen-strength-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--colors-muted);
}

.gen-strength-bars {
    display: flex;
    gap: 4px;
    align-items: center;
}

.gen-strength-bar {
    width: 24px;
    height: 6px;
    background: var(--colors-hairline);
    border-radius: 2px;
    transition: background-color 0.3s;
}

.gen-strength-label {
    font-size: 14px;
    font-weight: 700;
    margin-left: 8px;
    min-width: 60px;
    text-align: right;
}

/* Strength gauge classes */
.strength-weak .gen-strength-bar:nth-child(1) {
    background-color: var(--colors-semantic-error);
}

.strength-weak .gen-strength-label {
    color: var(--colors-semantic-error);
}

.strength-medium .gen-strength-bar:nth-child(1),
.strength-medium .gen-strength-bar:nth-child(2) {
    background-color: var(--colors-premium);
}

.strength-medium .gen-strength-label {
    color: var(--colors-premium);
}

.strength-strong .gen-strength-bar:nth-child(1),
.strength-strong .gen-strength-bar:nth-child(2),
.strength-strong .gen-strength-bar:nth-child(3),
.strength-strong .gen-strength-bar:nth-child(4) {
    background-color: var(--colors-semantic-success);
}

.strength-strong .gen-strength-label {
    color: var(--colors-semantic-success);
}

/* Premium Section */
.premium-section {
    position: relative;
}

.premium-section .card-glass {
    background: rgba(217, 119, 6, 0.01);
    border-color: rgba(217, 119, 6, 0.15);
    padding: var(--spacing-xl);
}

.premium-tag {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(217, 119, 6, 0.08);
    color: var(--colors-premium);
    font-size: 13px;
    font-weight: 600;
    border-radius: var(--rounded-full);
    margin-bottom: var(--spacing-sm);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* Premium Lifetime Pricing components */
.price-badge {
    display: inline-block;
    background: linear-gradient(135deg, #d97706, #f59e0b);
    color: white;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: var(--rounded-full);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--spacing-sm);
}

.price-value-container {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin: var(--spacing-sm) 0 var(--spacing-md);
}

.price-value {
    font-family: var(--font-outfit);
    font-size: 48px;
    font-weight: 700;
    color: var(--colors-ink);
    line-height: 1;
}

.price-sub {
    font-size: 16px;
    color: var(--colors-muted);
    text-decoration: line-through;
}

.price-note {
    font-size: 14px;
    color: var(--colors-premium);
    font-weight: 600;
}

.premium-bullets {
    list-style: none;
    margin: var(--spacing-base) 0 var(--spacing-lg);
}

.premium-bullets li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 16px;
    font-weight: 500;
}

.premium-bullets svg {
    color: var(--colors-premium);
    flex-shrink: 0;
}

.premium-image {
    width: 100%;
    max-width: 320px;
    height: auto;
    border-radius: var(--rounded-lg);
    border: 1px solid rgba(217, 119, 6, 0.15);
    padding: 8px;
    background: #ffffff;
    box-shadow: 0 20px 45px rgba(217, 119, 6, 0.08);
    transition: transform 0.5s ease;
}

.premium-section:hover .premium-image {
    transform: translateY(-5px) scale(1.02);
}

/* Slide-In animations on scroll */
.animate-slide-in-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-slide-in-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-slide-in-left.is-visible,
.animate-slide-in-right.is-visible {
    opacity: 1;
    transform: translateX(0);
}

/* Legal Content Page Styling */
.legal-content h1 {
    margin-bottom: var(--spacing-lg);
}

.legal-content .meta-info {
    margin-bottom: var(--spacing-lg);
    color: var(--colors-muted);
    font-weight: 500;
}

.legal-content h2 {
    font-family: var(--font-outfit);
    font-size: 24px;
    font-weight: 600;
    margin: var(--spacing-lg) 0 var(--spacing-sm);
    color: var(--colors-ink);
    border-bottom: 1px solid var(--colors-hairline);
    padding-bottom: 6px;
}

.legal-content p, .legal-content ul {
    margin-bottom: var(--spacing-md);
    color: var(--colors-muted);
    font-size: 16px;
    line-height: 1.6;
}

.legal-content ul {
    padding-left: var(--spacing-base);
}

.legal-content li {
    margin-bottom: var(--spacing-xs);
}

.legal-content a {
    color: var(--colors-primary);
    text-decoration: none;
    font-weight: 500;
}

.legal-content a:hover {
    text-decoration: underline;
}

/* Footer (3-column Layout) */
.footer {
    border-top: 1px solid var(--colors-hairline);
    padding: var(--spacing-xl) 0 var(--spacing-base);
    background: #ffffff;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.footer-brand p {
    font-size: 15px;
    color: var(--colors-muted);
    max-width: 320px;
}

.footer-col h4 {
    font-family: var(--font-outfit);
    font-size: 16px;
    font-weight: 700;
    color: var(--colors-ink);
    margin-bottom: var(--spacing-md);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-col-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.footer-col-links a {
    color: var(--colors-muted);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s ease;
}

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

.footer-bottom {
    border-top: 1px solid var(--colors-hairline);
    padding-top: var(--spacing-base);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom-links {
    display: flex;
    gap: var(--spacing-base);
}

.footer-bottom-links a {
    color: var(--colors-muted);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: color 0.2s;
}

.footer-bottom-links a:hover {
    color: var(--colors-ink);
}

/* Responsive Styles */
@media (max-width: 1023px) {
    .grid-2 {
        gap: var(--spacing-lg);
    }

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

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

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

@media (max-width: 767px) {
    :root {
        --spacing-section: 64px;
    }

    body::before {
        background-size: 18px 18px;
    }

    .display-lg {
        font-size: 36px;
        letter-spacing: -1px;
    }

    .display-md {
        font-size: 28px;
        letter-spacing: -0.5px;
    }

    .display-sm {
        font-size: 22px;
    }

    .section {
        padding: var(--spacing-section) 0;
    }

    .grid-2, .grid-3 {
        grid-template-columns: 1fr;
    }

    .header {
        padding: var(--spacing-sm) 0;
    }

    .nav-links, .header-tagline {
        display: none; /* Hide nav links and tagline on mobile */
    }

    .hero-actions {
        flex-direction: column;
        gap: var(--spacing-sm);
        padding: 0 var(--spacing-base);
    }

    .hero-actions img {
        height: 44px;
    }

    .mockup-container {
        margin-top: var(--spacing-base);
    }

    .mock-phone {
        transform: none;
        width: 290px;
        height: 520px;
        border-width: 10px;
    }

    .mockup-container:hover .mock-phone {
        transform: none;
    }

    .feature-showcase {
        flex-direction: column !important;
        gap: var(--spacing-lg);
    }

    .feature-showcase-mockup {
        transform: none;
        max-height: 340px;
    }

    .feature-image-container:hover .feature-showcase-mockup {
        transform: none;
    }

    .generator-card {
        padding: var(--spacing-md);
        margin-top: var(--spacing-base);
    }

    .gen-options {
        grid-template-columns: 1fr;
        gap: 8px;
    }

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

    .premium-section .card-glass {
        padding: var(--spacing-lg);
    }

    .premium-image {
        margin: var(--spacing-base) auto 0;
        display: block;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }

    .footer-bottom {
        flex-direction: column;
        gap: var(--spacing-md);
        text-align: center;
    }

    .footer-bottom-links {
        justify-content: center;
        width: 100%;
    }
}

/* Animations */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-up {
    opacity: 0;
}

.animate-fade-up.is-visible {
    animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.delay-1 {
    animation-delay: 0.15s;
}

.delay-2 {
    animation-delay: 0.3s;
}

.delay-3 {
    animation-delay: 0.45s;
}

/* ==========================================================================
   NEW UPGRADES: ILLUSTRATIONS, SLIDER & SUPPORT
   ========================================================================== */

/* Hero Sync Graphic */
.hero-graphic-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 400px;
    position: relative;
}

.hero-app-preview {
    position: relative;
    width: 400px;
    height: 480px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
    perspective: 1000px;
}

.preview-layer {
    position: absolute;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(27, 26, 23, 0.15);
    border: 8px solid #ffffff;
    background: #ffffff;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s, opacity 0.5s;
}

.preview-layer img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 16px;
}

.preview-center {
    width: 260px;
    z-index: 3;
    transform: translateY(0) translateZ(50px) scale(1);
    box-shadow: 0 30px 60px rgba(27, 26, 23, 0.2);
}

.preview-left {
    width: 220px;
    z-index: 2;
    transform: translateX(-130px) translateY(30px) translateZ(0) scale(0.9) rotateY(15deg) rotateZ(-2deg);
    opacity: 0.85;
}

.preview-right {
    width: 220px;
    z-index: 2;
    transform: translateX(130px) translateY(30px) translateZ(0) scale(0.9) rotateY(-15deg) rotateZ(2deg);
    opacity: 0.85;
}

.hero-app-preview:hover .preview-center {
    transform: translateY(-15px) translateZ(60px) scale(1.02);
    box-shadow: 0 40px 80px rgba(27, 26, 23, 0.25);
}

.hero-app-preview:hover .preview-left {
    transform: translateX(-150px) translateY(20px) translateZ(10px) scale(0.95) rotateY(10deg) rotateZ(-1deg);
    opacity: 1;
}

.hero-app-preview:hover .preview-right {
    transform: translateX(150px) translateY(20px) translateZ(10px) scale(0.95) rotateY(-10deg) rotateZ(1deg);
    opacity: 1;
}

/* Floating Icons */
.floating-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 8px 16px 8px 8px;
    border-radius: 100px;
    box-shadow: 0 10px 25px rgba(27, 26, 23, 0.1);
    font-weight: 600;
    font-size: 13px;
    color: var(--colors-ink);
    z-index: 5;
    animation: floatAnimation 4s ease-in-out infinite;
}

.badge-icon {
    width: 32px;
    height: 32px;
    background: var(--colors-primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.badge-lock {
    top: 20%;
    left: -10%;
    animation-delay: 0s;
}

.badge-sync {
    top: 60%;
    right: -15%;
    animation-delay: 1.5s;
}

.badge-cloud {
    bottom: -5%;
    left: 20%;
    animation-delay: 0.7s;
}

@keyframes floatAnimation {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-12px);
    }
    100% {
        transform: translateY(0px);
    }
}

.glow-ring {
    position: absolute;
    border-radius: 50%;
    filter: blur(50px);
    opacity: 0.12;
    z-index: 0;
    pointer-events: none;
}

.ring-1 {
    width: 180px;
    height: 180px;
    background: var(--colors-primary);
    top: 10%;
    left: 5%;
}

.ring-2 {
    width: 200px;
    height: 200px;
    background: #FF9F1C;
    bottom: 10%;
    right: 5%;
}

/* Solution Security Diagram */
.solution-graphic-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-height: 380px;
    position: relative;
    padding: 10px;
}

.security-diagram {
    position: relative;
    width: 100%;
    max-width: 380px;
    height: 340px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.diagram-card {
    background: var(--colors-surface-card);
    border: 1px solid var(--colors-hairline);
    border-radius: var(--rounded-md);
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 8px 20px rgba(27, 26, 23, 0.03);
    z-index: 2;
    transition: transform 0.3s, border-color 0.3s;
}

.diagram-card:hover {
    transform: translateY(-3px);
    border-color: rgba(247, 107, 28, 0.3);
}

.db-card {
    position: absolute;
    top: 0;
    border-color: rgba(247, 107, 28, 0.2);
}

.db-card svg {
    color: var(--colors-primary);
}

.diagram-card-details h5 {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    color: var(--colors-ink);
}

.status-badge {
    display: inline-block;
    margin-top: 2px;
    font-size: 10px;
    font-weight: 600;
    padding: 1px 6px;
    border-radius: 10px;
}

.status-badge.secure {
    background: rgba(16, 185, 129, 0.08);
    color: #10b981;
}

.diagram-connectors {
    position: absolute;
    top: 75px;
    bottom: 80px;
    width: 2px;
    background: repeating-linear-gradient(to bottom, transparent, transparent 5px, var(--colors-hairline) 5px, var(--colors-hairline) 10px);
    display: flex;
    justify-content: center;
}

.connector-line {
    width: 100%;
    height: 100%;
    position: relative;
}

.data-packet {
    width: 8px;
    height: 8px;
    background: #10B981;
    border-radius: 50%;
    position: absolute;
    left: -3px;
    filter: drop-shadow(0 0 3px #10B981);
    animation: packetFlow 2.5s infinite linear;
}

@keyframes packetFlow {
    0% {
        top: 0%;
        opacity: 0;
    }
    20% {
        opacity: 1;
    }
    80% {
        opacity: 1;
    }
    100% {
        top: 100%;
        opacity: 0;
    }
}

.devices-group {
    position: absolute;
    bottom: 0;
    display: flex;
    gap: 16px;
    width: 100%;
    justify-content: center;
}

.device-card {
    flex: 1;
    max-width: 150px;
    justify-content: center;
    font-size: 13px;
    font-weight: 600;
    font-family: var(--font-outfit);
}

.device-card svg {
    color: var(--colors-muted);
}

.diagram-lock-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--colors-canvas);
    border: 2px solid var(--colors-primary);
    border-radius: 50%;
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--colors-primary);
    box-shadow: 0 4px 12px rgba(247, 107, 28, 0.15);
    z-index: 3;
    animation: pulseGlow 2s infinite ease-in-out;
}

@keyframes pulseGlow {
    0% {
        box-shadow: 0 0 0 0 rgba(247, 107, 28, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(247, 107, 28, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(247, 107, 28, 0);
    }
}

/* Premium Membership Card */
.premium-graphic-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 10px;
}

.premium-membership-card {
    position: relative;
    width: 340px;
    height: 200px;
    background: linear-gradient(135deg, #1b1613 0%, #0d0a08 100%);
    border: 1px solid rgba(247, 107, 28, 0.35);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(27, 26, 23, 0.18);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s;
}

.premium-membership-card:hover {
    transform: translateY(-8px) rotate(1deg);
    box-shadow: 0 30px 60px rgba(247, 107, 28, 0.12), 0 0 20px rgba(247, 107, 28, 0.15);
    border-color: rgba(247, 107, 28, 0.6);
}

.card-chip {
    width: 40px;
    height: 28px;
    background: linear-gradient(135deg, #ffd700 0%, #cca000 100%);
    border-radius: 6px;
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.3);
}

.card-crown {
    position: absolute;
    right: 24px;
    top: 20px;
    color: #ffd700;
    filter: drop-shadow(0 2px 6px rgba(255, 215, 0, 0.3));
    animation: floatCrown 4s infinite ease-in-out;
}

@keyframes floatCrown {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
    100% {
        transform: translateY(0);
    }
}

.card-info {
    z-index: 2;
}

.card-brand {
    font-family: var(--font-outfit);
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 1px;
    margin: 0 0 2px 0;
}

.card-tier {
    font-size: 11px;
    font-weight: 700;
    color: #ffd700;
    letter-spacing: 2px;
}

.card-holder {
    font-size: 10px;
    font-weight: 600;
    color: #928b86;
    letter-spacing: 1.5px;
    margin-top: 14px;
}

.card-status-pill {
    position: absolute;
    right: 24px;
    bottom: 24px;
    background: rgba(16, 185, 129, 0.12);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: #10b981;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
}

.card-shine {
    position: absolute;
    top: 0;
    left: -150%;
    width: 60%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.08), transparent);
    transform: skewX(-25deg);
    transition: 0.75s;
}

.premium-membership-card:hover .card-shine {
    left: 180%;
    transition: 0.8s;
}

/* App Previews horizontal scrolling slider */
.previews-slider-container {
    width: 100%;
    overflow-x: auto;
    padding: 20px 4px 30px 4px;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    display: flex;
    justify-content: flex-start;
    scroll-snap-type: x mandatory;
}

.previews-slider-container::-webkit-scrollbar {
    height: 6px;
}

.previews-slider-container::-webkit-scrollbar-track {
    background: var(--colors-hairline);
    border-radius: 10px;
}

.previews-slider-container::-webkit-scrollbar-thumb {
    background: var(--colors-primary);
    border-radius: 10px;
}

.previews-track {
    display: flex;
    gap: 24px;
}

.screenshot-slide {
    flex: 0 0 auto;
    width: 210px;
    display: flex;
    flex-direction: column;
    align-items: center;
    scroll-snap-align: center;
}

.phone-frame {
    width: 200px;
    height: 400px;
    background: #0d0d0d;
    border: 6px solid #1f1f1f;
    border-radius: 28px;
    box-shadow: 0 10px 25px rgba(27, 26, 23, 0.1), 0 0 0 1px rgba(0, 0, 0, 0.9);
    overflow: hidden;
    position: relative;
    transition: transform 0.3s;
}

.phone-frame:hover {
    transform: translateY(-5px);
}

.phone-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-caption {
    margin-top: 12px;
    text-align: center;
}

.slide-caption h5 {
    font-size: 13px;
    font-weight: 600;
    color: var(--colors-ink);
    margin-bottom: 2px;
}

.slide-caption p {
    font-size: 11px;
    color: var(--colors-muted);
    line-height: 1.4;
    margin: 0;
}

/* Support Page Accoridon & Form */
.support-hero {
    text-align: center;
    padding: 60px 0 40px 0;
    background: linear-gradient(180deg, var(--colors-canvas) 0%, #ffffff 100%);
    border-bottom: 1px solid var(--colors-hairline);
}

.faq-section {
    max-width: 760px;
    margin: 60px auto;
    padding: 0 20px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 30px;
}

.faq-item {
    background: var(--colors-surface-card);
    border: 1px solid var(--colors-hairline);
    border-radius: 12px;
    overflow: hidden;
    transition: box-shadow 0.3s, border-color 0.3s;
}

.faq-item.active {
    box-shadow: 0 4px 15px rgba(27, 26, 23, 0.03);
    border-color: rgba(247, 107, 28, 0.25);
}

.faq-question {
    width: 100%;
    padding: 20px 24px;
    text-align: left;
    background: none;
    border: none;
    font-family: var(--font-outfit);
    font-size: 15px;
    font-weight: 600;
    color: var(--colors-ink);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question::after {
    content: "+";
    font-size: 18px;
    font-weight: 400;
    color: var(--colors-muted);
    transition: transform 0.3s;
}

.faq-item.active .faq-question::after {
    content: "−";
    transform: rotate(180deg);
    color: var(--colors-primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s;
    background: var(--colors-canvas);
}

.faq-item.active .faq-answer {
    max-height: 250px;
    padding: 20px 24px;
    border-top: 1px solid var(--colors-hairline);
}

.faq-answer p {
    margin: 0;
    font-size: 13.5px;
    color: var(--colors-body);
    line-height: 1.6;
}

.contact-form-section {
    max-width: 600px;
    margin: 60px auto 80px auto;
    padding: 0 20px;
}

.support-form {
    background: var(--colors-surface-card);
    border: 1px solid var(--colors-hairline);
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(27, 26, 23, 0.02);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 12.5px;
    font-weight: 600;
    color: var(--colors-ink);
    margin-bottom: 6px;
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--colors-hairline);
    border-radius: 8px;
    background: var(--colors-canvas);
    font-size: 13.5px;
    color: var(--colors-ink);
    transition: border-color 0.3s, background-color 0.3s;
}

.form-control:focus {
    outline: none;
    border-color: var(--colors-primary);
    background: #ffffff;
}

.form-textarea {
    resize: vertical;
    min-height: 110px;
}

.btn-submit {
    width: 100%;
    padding: 14px;
    background: var(--colors-primary);
    color: #ffffff;
    font-family: var(--font-outfit);
    font-size: 14.5px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-submit:hover {
    background: #e05e15;
}

/* Redesigned Premium Section Layout */
.premium-box-layout {
    display: grid;
    grid-template-columns: 1.15fr 1.85fr;
    gap: 32px;
    align-items: stretch;
    margin-top: 30px;
}

.premium-cta-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 32px;
    background: rgba(255, 255, 255, 0.45);
    border: 1px solid var(--colors-hairline);
    border-radius: var(--rounded-lg);
    box-shadow: 0 10px 30px rgba(27, 26, 23, 0.03);
}

.premium-cta-content {
    margin-top: 24px;
    text-align: center;
}

.premium-cta-content h3 {
    font-family: var(--font-outfit);
    font-size: 24px;
    font-weight: 700;
    color: var(--colors-ink);
    margin-bottom: 8px;
}

.premium-cta-content p {
    font-size: 14px;
    line-height: 1.5;
    color: var(--colors-body);
    margin: 12px 0 20px 0;
}

.premium-features-card-group {
    display: flex;
    flex-direction: column;
    gap: 24px;
    justify-content: space-between;
}

.premium-feature-box {
    padding: 24px 28px;
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid var(--colors-hairline);
    border-radius: var(--rounded-lg);
    box-shadow: 0 8px 24px rgba(27, 26, 23, 0.02);
}

.premium-feature-box h4 {
    font-family: var(--font-outfit);
    font-size: 14px;
    font-weight: 700;
    color: var(--colors-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0 0 16px 0;
    border-bottom: 1px dashed var(--colors-hairline);
    padding-bottom: 8px;
}

.feature-grid-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 24px;
}

.feature-grid-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.feature-item-icon {
    font-size: 18px;
    line-height: 1;
    padding: 4px;
    background: rgba(247, 107, 28, 0.06);
    border-radius: 6px;
    flex-shrink: 0;
}

.secondary-box .feature-item-icon {
    background: rgba(204, 160, 0, 0.06);
}

.feature-grid-item h5 {
    font-family: var(--font-outfit);
    font-size: 14px;
    font-weight: 600;
    color: var(--colors-ink);
    margin: 0 0 4px 0;
}

.feature-grid-item p {
    font-size: 12px;
    color: var(--colors-muted);
    line-height: 1.4;
    margin: 0;
}

/* Responsive Rules for Premium Section */
@media (max-width: 1023px) {
    .premium-box-layout {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

@media (max-width: 600px) {
    .feature-grid-items {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

/* ==========================================================================
   UTILITY CLASSES & NEW STYLES
   ========================================================================== */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.desktop-br {
    display: none;
}

@media (min-width: 768px) {
    .desktop-br {
        display: block;
    }
}

.btn-sm {
    padding: 10px 20px;
    font-size: 14px;
}

.btn-block {
    width: 100%;
    text-align: center;
}

.hero-container {
    text-align: left;
    align-items: center;
}

.hero-title {
    margin-bottom: 4px;
}

.hero-subtitle {
    font-family: var(--font-outfit);
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-desc {
    margin-left: 0;
    margin-right: 0;
    line-height: 1.8;
    margin-bottom: 24px;
}

.hero-desc-main {
    margin-bottom: 16px;
    font-size: 16px;
}

.hero-security-notice {
    border-left: 3px solid var(--colors-primary);
    padding: 12px 18px;
    background: rgba(247, 107, 28, 0.02);
    border-radius: 8px;
}

.hero-security-notice p {
    margin: 0;
    font-size: 14px;
    font-weight: 500;
    color: var(--colors-ink);
    line-height: 1.6;
}

.hero-actions-aligned {
    justify-content: flex-start;
    gap: 12px;
    margin-top: 24px;
}

.badge-hover {
    transition: transform 0.2s;
    display: inline-block;
}

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

.badge-img {
    height: 48px;
}

.badge-img-lg {
    height: 54px;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.08));
}

.section-alt {
    background: #fffdf9;
    border-top: 1px solid var(--colors-hairline);
}

.section-bordered {
    border-bottom: 1px solid var(--colors-hairline);
}

.feature-tag-error {
    background: rgba(225, 29, 72, 0.08);
    color: var(--colors-semantic-error);
}

.feature-tag-primary {
    background: rgba(247, 107, 28, 0.08);
    color: var(--colors-primary);
    margin-bottom: 16px;
}

.mb-sm {
    margin-bottom: var(--spacing-sm);
}

.mb-base {
    margin-bottom: var(--spacing-base);
}

.section-desc-centered {
    max-width: 600px;
    margin: 0 auto 32px auto;
}

.section-title-premium {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.section-title-premium p {
    margin: 0 auto;
}

.premium-badge {
    display: inline-block;
}

.text-warning {
    color: #cca000;
}

.sync-subtitle {
    margin-bottom: var(--spacing-md);
    font-size: 24px;
}

.feature-glass-card {
    margin-bottom: var(--spacing-md);
    padding: var(--spacing-md);
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.feature-glass-icon {
    color: var(--colors-primary);
    font-size: 24px;
}

.feature-glass-title {
    font-weight: 600;
    margin-bottom: 4px;
    font-size: 16px;
}

.feature-glass-desc {
    font-size: 14px;
    margin-bottom: 0;
}

.section-download {
    background: linear-gradient(180deg, #ffffff 0%, #fffdf9 100%);
    border-top: 1px solid var(--colors-hairline);
    text-align: center;
}

.download-badges-container {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.logo-large {
    font-size: 20px;
}

.footer-title {
    font-family: var(--font-outfit);
    font-weight: 700;
    font-size: 16px;
    margin-top: 12px;
    margin-bottom: 4px;
    color: var(--colors-ink);
}

.footer-slogan {
    margin-bottom: 0;
    font-weight: 600;
}

.footer-bottom-centered {
    justify-content: center;
    text-align: center;
}

.m-0 {
    margin: 0;
}

/* App Previews Scroll Snap */
.previews-track {
    scroll-snap-type: x mandatory;
}

.screenshot-slide {
    scroll-snap-align: center;
}


