:root {
    color-scheme: light;
    --brand-500: #1f8fff;
    --brand-700: #0d66d8;
    --mint-500: #19c2a0;
    --ink-950: #0b1222;
    --ink-900: #141d2f;
    --ink-700: #3d4a66;
    --ink-500: #697691;
    --surface-0: #f3f7ff;
    --surface-1: #ffffff;
    --surface-2: #eef4ff;
    --surface-3: #e6efff;
    --line: #d8e4ff;
    --line-strong: #c0d4ff;
    --shadow-sm: 0 8px 24px -18px rgba(10, 24, 51, 0.45);
    --shadow-md: 0 18px 45px -22px rgba(10, 24, 51, 0.45);
    --shadow-lg: 0 30px 65px -26px rgba(10, 24, 51, 0.5);
    --radius-sm: 12px;
    --radius-md: 18px;
    --radius-lg: 28px;
    --max-width: 1120px;
    --header-height: 84px;
    --reveal-delay: 0ms;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Avenir Next", "SF Pro Text", "Segoe UI", "Helvetica Neue", sans-serif;
    line-height: 1.65;
    color: var(--ink-900);
    background: radial-gradient(circle at 12% -8%, rgba(31, 143, 255, 0.2), transparent 42%),
        radial-gradient(circle at 88% -16%, rgba(25, 194, 160, 0.18), transparent 36%),
        var(--surface-0);
    min-height: 100vh;
}

body::before,
body::after {
    content: "";
    position: fixed;
    z-index: -1;
    pointer-events: none;
    border-radius: 999px;
    filter: blur(40px);
}

body::before {
    width: 300px;
    height: 300px;
    background: rgba(31, 143, 255, 0.24);
    top: 62vh;
    left: -100px;
}

body::after {
    width: 240px;
    height: 240px;
    background: rgba(25, 194, 160, 0.2);
    top: 20vh;
    right: -90px;
}

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

a {
    color: inherit;
}

main {
    overflow: clip;
}

.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
.header {
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(216, 228, 255, 0.7);
    background: rgba(243, 247, 255, 0.75);
    backdrop-filter: blur(14px) saturate(150%);
    transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

.header.scrolled {
    border-bottom-color: rgba(192, 212, 255, 0.9);
    box-shadow: var(--shadow-sm);
}

.nav {
    min-height: var(--header-height);
    display: flex;
    align-items: center;
}

.nav-container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.logo {
    text-decoration: none;
    font-weight: 800;
    letter-spacing: -0.02em;
    font-size: 1.15rem;
    color: var(--ink-950);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.logo::before {
    content: "●";
    color: var(--brand-500);
    font-size: 0.7rem;
    transform: translateY(-1px);
}

.nav-menu {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--ink-700);
    font-weight: 600;
    font-size: 0.92rem;
    letter-spacing: 0.01em;
    padding: 0.45rem 0.8rem;
    border-radius: 999px;
    border: 1px solid transparent;
    transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--brand-700);
    background: rgba(31, 143, 255, 0.1);
    border-color: rgba(31, 143, 255, 0.25);
}

.theme-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.2rem;
    padding: 0.2rem;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: var(--surface-1);
    box-shadow: var(--shadow-sm);
}

.theme-toggle-btn {
    border: 0;
    background: transparent;
    color: var(--ink-700);
    font: inherit;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    border-radius: 999px;
    padding: 0.36rem 0.58rem;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    cursor: pointer;
    transition: color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.theme-toggle-btn:hover {
    color: var(--brand-700);
    background: rgba(31, 143, 255, 0.1);
}

.theme-toggle-btn.is-active {
    color: var(--brand-700);
    background: rgba(31, 143, 255, 0.15);
    box-shadow: 0 10px 20px -16px rgba(13, 102, 216, 0.85);
}

.theme-toggle-btn:focus-visible {
    outline: 2px solid rgba(13, 102, 216, 0.5);
    outline-offset: 2px;
}

/* Shared section elements */
.section-heading {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 2.2rem;
}

.section-kicker,
.eyebrow,
.page-eyebrow {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--brand-700);
    background: rgba(31, 143, 255, 0.12);
    border: 1px solid rgba(31, 143, 255, 0.25);
    border-radius: 999px;
    padding: 0.32rem 0.72rem;
}

.section-heading h2 {
    font-family: "Avenir Next", "SF Pro Display", "Segoe UI", sans-serif;
    margin-top: 0.8rem;
    font-size: clamp(1.9rem, 3.4vw, 2.8rem);
    letter-spacing: -0.03em;
    line-height: 1.15;
    color: var(--ink-950);
}

.section-subtitle {
    margin-top: 0.8rem;
    color: var(--ink-700);
    font-size: 1.04rem;
}

.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.98rem;
    text-decoration: none;
    letter-spacing: 0.01em;
    transition: transform 0.18s ease, box-shadow 0.2s ease, background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn-primary {
    padding: 0.88rem 1.35rem;
    color: #ffffff;
    background: linear-gradient(145deg, var(--brand-500), var(--brand-700));
    border: 1px solid rgba(13, 102, 216, 0.35);
    box-shadow: 0 16px 32px -20px rgba(13, 102, 216, 0.8);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 22px 40px -24px rgba(13, 102, 216, 0.9);
}

.btn-secondary {
    padding: 0.86rem 1.32rem;
    color: var(--brand-700);
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(13, 102, 216, 0.24);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    background: rgba(31, 143, 255, 0.12);
    border-color: rgba(13, 102, 216, 0.38);
}

/* Hero */
.hero {
    padding: 4.8rem 0 3.2rem;
}

.hero-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
    gap: 1.6rem;
    align-items: stretch;
}

.hero-copy,
.hero-panel {
    border-radius: var(--radius-lg);
    border: 1px solid rgba(216, 228, 255, 0.9);
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.95), rgba(246, 250, 255, 0.92));
    box-shadow: var(--shadow-md);
}

.hero-copy {
    padding: clamp(1.6rem, 3.5vw, 2.5rem);
}

.hero-copy h1 {
    margin-top: 1rem;
    font-family: "Avenir Next", "SF Pro Display", "Segoe UI", sans-serif;
    font-size: clamp(2.1rem, 5.8vw, 4rem);
    line-height: 1.03;
    letter-spacing: -0.038em;
    color: var(--ink-950);
    text-wrap: balance;
}

.hero-subtitle {
    margin-top: 1.1rem;
    color: var(--ink-700);
    font-size: clamp(1.03rem, 2.1vw, 1.2rem);
    max-width: 58ch;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.72rem;
    margin-top: 1.5rem;
}

.hero-proof {
    list-style: none;
    margin-top: 1.35rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
}

.hero-proof li {
    font-size: 0.84rem;
    font-weight: 700;
    color: var(--ink-700);
    background: var(--surface-2);
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 0.3rem 0.72rem;
}

.hero-panel {
    padding: clamp(1.3rem, 2.8vw, 2rem);
    display: flex;
    flex-direction: column;
}

.hero-panel h2 {
    font-family: "Avenir Next", "SF Pro Display", "Segoe UI", sans-serif;
    font-size: clamp(1.28rem, 2.4vw, 1.62rem);
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--ink-950);
}

.hero-panel-list {
    margin-top: 1rem;
    display: grid;
    gap: 0.72rem;
}

.hero-panel-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.7rem;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.86);
    padding: 0.72rem 0.78rem;
}

.hero-panel-label {
    color: var(--ink-700);
    font-weight: 600;
    font-size: 0.92rem;
}

.hero-panel-item code {
    border-radius: 8px;
    padding: 0.2rem 0.52rem;
    font-size: 0.8rem;
    font-family: "SF Mono", "Menlo", monospace;
    color: var(--brand-700);
    background: rgba(31, 143, 255, 0.12);
    border: 1px solid rgba(31, 143, 255, 0.2);
    white-space: nowrap;
}

.hero-panel-note {
    margin-top: auto;
    padding-top: 1rem;
    color: var(--ink-500);
    font-size: 0.89rem;
}

/* Feature cards */
.features {
    padding: 1.8rem 0 4.1rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.88rem;
}

.feature-item {
    border-radius: var(--radius-md);
    border: 1px solid rgba(216, 228, 255, 0.95);
    background: rgba(255, 255, 255, 0.86);
    box-shadow: var(--shadow-sm);
    padding: 1rem;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.feature-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(31, 143, 255, 0.4);
}

.feature-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.9rem;
    display: grid;
    place-items: center;
    font-size: 1.3rem;
    background: linear-gradient(145deg, rgba(31, 143, 255, 0.16), rgba(25, 194, 160, 0.13));
    border: 1px solid rgba(31, 143, 255, 0.2);
}

.feature-item h3 {
    margin-top: 0.76rem;
    font-size: 1.02rem;
    line-height: 1.25;
    letter-spacing: -0.01em;
    color: var(--ink-950);
}

.feature-item p {
    margin-top: 0.45rem;
    color: var(--ink-700);
    font-size: 0.91rem;
    line-height: 1.5;
}

/* Steps */
.how-it-works {
    padding: 4.1rem 0;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.88rem;
}

.step-item {
    border-radius: var(--radius-md);
    border: 1px solid rgba(216, 228, 255, 0.95);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--shadow-sm);
    padding: 1rem;
}

.step-number {
    width: 2.12rem;
    height: 2.12rem;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: linear-gradient(140deg, var(--brand-500), var(--brand-700));
    color: #ffffff;
    font-size: 0.94rem;
    font-weight: 800;
}

.step-item h3 {
    margin-top: 0.76rem;
    font-size: 1rem;
    color: var(--ink-950);
    line-height: 1.25;
}

.step-item p {
    margin-top: 0.45rem;
    color: var(--ink-700);
    font-size: 0.91rem;
    line-height: 1.52;
}

/* Screenshots */
.screenshots {
    padding: 4.1rem 0;
}

.screenshots-gallery {
    max-width: 980px;
    margin: 0 auto;
    display: grid;
    gap: 0.8rem;
}

.gallery-stage {
    position: relative;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(216, 228, 255, 0.95);
    background: linear-gradient(150deg, rgba(255, 255, 255, 0.95), rgba(239, 246, 255, 0.92));
    box-shadow: var(--shadow-md);
    padding: clamp(1rem, 2.8vw, 1.8rem);
    text-align: center;
    overflow: hidden;
}

.gallery-stage::before {
    content: "";
    position: absolute;
    top: -70px;
    right: -60px;
    width: 220px;
    height: 220px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(31, 143, 255, 0.22), rgba(31, 143, 255, 0));
    pointer-events: none;
}

.gallery-main-image {
    width: min(100%, 350px);
    margin: 0 auto;
    border-radius: 24px;
    border: 1px solid rgba(7, 22, 49, 0.08);
    box-shadow: 0 22px 40px -28px rgba(11, 18, 34, 0.75);
    transition: transform 0.3s ease;
}

.gallery-stage:hover .gallery-main-image {
    transform: translateY(-3px);
}

.gallery-main-meta {
    margin-top: 0.8rem;
    padding-top: 0.72rem;
    border-top: 1px solid rgba(216, 228, 255, 0.95);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
}

.gallery-main-title {
    color: var(--ink-900);
    font-size: 0.94rem;
    font-weight: 700;
    line-height: 1.35;
}

.gallery-counter {
    color: var(--ink-500);
    font-size: 0.82rem;
    font-weight: 700;
    white-space: nowrap;
}

.gallery-controls {
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 0.78rem;
    pointer-events: none;
}

.gallery-nav {
    width: 2.3rem;
    height: 2.3rem;
    border-radius: 999px;
    border: 1px solid rgba(31, 143, 255, 0.3);
    background: rgba(255, 255, 255, 0.9);
    color: var(--brand-700);
    display: grid;
    place-items: center;
    cursor: pointer;
    font: inherit;
    font-size: 1.3rem;
    line-height: 1;
    box-shadow: 0 10px 24px -20px rgba(11, 18, 34, 0.8);
    transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
    pointer-events: auto;
}

.gallery-nav:hover {
    transform: scale(1.05);
    background: rgba(31, 143, 255, 0.1);
    border-color: rgba(31, 143, 255, 0.5);
}

.gallery-nav:focus-visible,
.gallery-thumb:focus-visible {
    outline: 2px solid rgba(13, 102, 216, 0.5);
    outline-offset: 2px;
}

.gallery-thumbs {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0.62rem;
}

.gallery-thumb {
    border: 1px solid rgba(216, 228, 255, 0.95);
    background: rgba(255, 255, 255, 0.88);
    border-radius: 14px;
    padding: 0.52rem;
    text-align: left;
    cursor: pointer;
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, background-color 0.22s ease;
    color: var(--ink-900);
    font: inherit;
}

.gallery-thumb img {
    width: 100%;
    border-radius: 10px;
    border: 1px solid rgba(7, 22, 49, 0.08);
    box-shadow: 0 10px 20px -20px rgba(11, 18, 34, 0.8);
}

.gallery-thumb span {
    display: block;
    margin-top: 0.34rem;
    font-size: 0.75rem;
    line-height: 1.34;
    color: var(--ink-700);
    font-weight: 650;
}

.gallery-thumb:hover {
    transform: translateY(-2px);
}

.gallery-thumb.is-active {
    border-color: rgba(31, 143, 255, 0.5);
    background: rgba(31, 143, 255, 0.1);
    box-shadow: 0 16px 26px -22px rgba(13, 102, 216, 0.8);
}

/* Privacy highlight */
.privacy-section {
    padding: 4.1rem 0;
}

.privacy-highlight {
    max-width: 930px;
    margin: 0 auto;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(25, 194, 160, 0.35);
    background: linear-gradient(150deg, rgba(255, 255, 255, 0.95), rgba(232, 255, 250, 0.9));
    box-shadow: var(--shadow-md);
    padding: clamp(1.4rem, 3vw, 2.4rem);
    text-align: center;
}

.privacy-highlight h2 {
    margin-top: 0.95rem;
    font-family: "Avenir Next", "SF Pro Display", "Segoe UI", sans-serif;
    font-size: clamp(1.86rem, 3.4vw, 2.6rem);
    letter-spacing: -0.03em;
    line-height: 1.15;
    color: var(--ink-950);
}

.privacy-highlight p {
    margin-top: 0.95rem;
    color: var(--ink-700);
    max-width: 70ch;
    margin-left: auto;
    margin-right: auto;
}

.privacy-features {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.72rem;
    margin-top: 1.4rem;
}

.privacy-feature {
    border-radius: var(--radius-sm);
    border: 1px solid rgba(25, 194, 160, 0.34);
    background: rgba(255, 255, 255, 0.78);
    padding: 0.9rem 0.72rem;
}

.privacy-feature-icon {
    font-size: 1.28rem;
}

.privacy-feature-text {
    margin-top: 0.3rem;
    font-size: 0.87rem;
    font-weight: 700;
    color: var(--ink-900);
}

/* FAQ accordion */
.faq {
    padding: 4.1rem 0;
}

.faq-list {
    max-width: 860px;
    margin: 0 auto;
    display: grid;
    gap: 0.65rem;
}

.faq-item {
    border-radius: var(--radius-sm);
    border: 1px solid rgba(216, 228, 255, 0.95);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    border: 0;
    background: transparent;
    cursor: pointer;
    padding: 0.92rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem;
    text-align: left;
    font-family: inherit;
    color: var(--ink-950);
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.35;
}

.faq-indicator {
    width: 1.1rem;
    height: 1.1rem;
    border-radius: 999px;
    border: 1px solid rgba(31, 143, 255, 0.4);
    position: relative;
    flex: none;
    background: rgba(31, 143, 255, 0.08);
}

.faq-indicator::before,
.faq-indicator::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    background: var(--brand-700);
    transform: translate(-50%, -50%);
    transition: transform 0.2s ease;
}

.faq-indicator::before {
    width: 0.52rem;
    height: 1px;
}

.faq-indicator::after {
    width: 1px;
    height: 0.52rem;
}

.faq-answer {
    padding: 0 1rem 0.95rem;
    color: var(--ink-700);
    font-size: 0.9rem;
    line-height: 1.58;
}

.faq-ready .faq-item .faq-answer {
    display: none;
}

.faq-ready .faq-item.is-open .faq-answer {
    display: block;
    animation: fadeIn 0.22s ease;
}

.faq-ready .faq-item.is-open {
    border-color: rgba(31, 143, 255, 0.36);
    box-shadow: 0 12px 28px -22px rgba(13, 102, 216, 0.62);
}

.faq-ready .faq-item.is-open .faq-indicator::after {
    transform: translate(-50%, -50%) scaleY(0);
}

/* Pricing */
.pricing {
    padding: 4.1rem 0;
}

.pricing-subtitle {
    margin-top: 0.8rem;
    color: var(--ink-700);
}

.pricing-card {
    max-width: 520px;
    margin: 0 auto;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(31, 143, 255, 0.34);
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.95), rgba(239, 246, 255, 0.94));
    box-shadow: var(--shadow-lg);
    padding: clamp(1.3rem, 2.9vw, 2.2rem);
    text-align: center;
}

.pricing-price {
    font-family: "Avenir Next", "SF Pro Display", "Segoe UI", sans-serif;
    font-weight: 800;
    color: var(--brand-700);
    font-size: clamp(2.1rem, 5.6vw, 3.4rem);
    letter-spacing: -0.03em;
    line-height: 1;
}

.pricing-period {
    margin-top: 0.4rem;
    color: var(--ink-700);
    font-weight: 600;
    font-size: 0.96rem;
}

.pricing-features {
    list-style: none;
    text-align: left;
    margin: 1.1rem 0 1.3rem;
    border-top: 1px solid rgba(216, 228, 255, 0.95);
    border-bottom: 1px solid rgba(216, 228, 255, 0.95);
}

.pricing-features li {
    padding: 0.56rem 0;
    display: flex;
    align-items: center;
    gap: 0.52rem;
    border-bottom: 1px solid rgba(231, 238, 252, 0.95);
    color: var(--ink-900);
    font-size: 0.92rem;
}

.pricing-features li:last-child {
    border-bottom: 0;
}

.pricing-features li::before {
    content: "✓";
    color: var(--mint-500);
    font-weight: 800;
}

/* Support and legal cards */
.support-section {
    padding: 4.1rem 0;
}

.support-card {
    max-width: 840px;
    margin: 0 auto;
    text-align: center;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(216, 228, 255, 0.95);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: var(--shadow-md);
    padding: clamp(1.4rem, 2.8vw, 2.3rem);
}

.support-card h2 {
    font-family: "Avenir Next", "SF Pro Display", "Segoe UI", sans-serif;
    font-size: clamp(1.75rem, 3.6vw, 2.4rem);
    letter-spacing: -0.03em;
    line-height: 1.16;
    color: var(--ink-950);
}

.support-email {
    margin-top: 0.86rem;
    font-size: 1.02rem;
    color: var(--ink-700);
}

.support-email a {
    color: var(--brand-700);
    font-weight: 700;
    text-decoration: none;
}

.support-email a:hover {
    text-decoration: underline;
}

.support-note {
    margin-top: 0.55rem;
    color: var(--ink-500);
    font-size: 0.9rem;
    margin-bottom: 1.05rem;
}

.legal-links {
    padding: 3.1rem 0 4.4rem;
}

.legal-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.8rem;
}

.legal-card {
    border-radius: var(--radius-md);
    border: 1px solid rgba(216, 228, 255, 0.95);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: var(--shadow-sm);
    padding: 1rem;
    text-decoration: none;
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.legal-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(31, 143, 255, 0.38);
}

.legal-card h3 {
    color: var(--ink-950);
    font-size: 1.02rem;
    letter-spacing: -0.01em;
}

.legal-card p {
    margin-top: 0.35rem;
    color: var(--ink-700);
    font-size: 0.91rem;
    line-height: 1.5;
}

/* Footer */
.footer {
    padding: 2.5rem 0 2.8rem;
    border-top: 1px solid rgba(216, 228, 255, 0.9);
    background: rgba(255, 255, 255, 0.72);
}

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

.footer-links {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.footer-links a {
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--ink-700);
    border-radius: 999px;
    border: 1px solid transparent;
    padding: 0.28rem 0.68rem;
    transition: color 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.footer-links a:hover {
    color: var(--brand-700);
    border-color: rgba(31, 143, 255, 0.28);
    background: rgba(31, 143, 255, 0.08);
}

.footer-info {
    margin-top: 0.76rem;
    color: var(--ink-500);
    font-size: 0.84rem;
}

.footer-info a {
    color: var(--brand-700);
    text-decoration: none;
}

.footer-info a:hover {
    text-decoration: underline;
}

/* Privacy and support pages */
.page-hero {
    padding: 4rem 0 1.4rem;
}

.page-hero-card {
    border-radius: var(--radius-lg);
    border: 1px solid rgba(216, 228, 255, 0.95);
    background: linear-gradient(155deg, rgba(255, 255, 255, 0.95), rgba(240, 246, 255, 0.9));
    box-shadow: var(--shadow-md);
    padding: clamp(1.35rem, 2.8vw, 2.2rem);
    text-align: center;
}

.page-title {
    margin-top: 0.82rem;
    font-family: "Avenir Next", "SF Pro Display", "Segoe UI", sans-serif;
    font-size: clamp(2.05rem, 4.8vw, 3.4rem);
    line-height: 1.05;
    letter-spacing: -0.04em;
    color: var(--ink-950);
}

.page-subtitle {
    margin: 0.82rem auto 0;
    max-width: 68ch;
    color: var(--ink-700);
    font-size: clamp(1rem, 1.9vw, 1.12rem);
}

.privacy-updated {
    margin-top: 0.82rem;
    color: var(--ink-500);
    font-size: 0.9rem;
    font-weight: 600;
}

.privacy-page,
.support-page {
    padding: 0 0 4.1rem;
}

.policy-content,
.support-content {
    max-width: 930px;
}

.privacy-page h2,
.support-page h2 {
    margin-top: 1.75rem;
    margin-bottom: 0.78rem;
    font-family: "Avenir Next", "SF Pro Display", "Segoe UI", sans-serif;
    font-size: clamp(1.28rem, 2.6vw, 1.72rem);
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--ink-950);
}

.privacy-page h3,
.support-page h3 {
    margin-top: 1rem;
    margin-bottom: 0.44rem;
    font-size: 1.04rem;
    color: var(--ink-900);
    line-height: 1.35;
}

.privacy-page p,
.support-page p {
    color: var(--ink-700);
    font-size: 0.96rem;
    line-height: 1.65;
    margin-bottom: 0.75rem;
}

.privacy-page ul,
.support-page ul {
    margin-bottom: 0.95rem;
    padding-left: 1.1rem;
    color: var(--ink-900);
}

.privacy-page li,
.support-page li {
    margin-bottom: 0.42rem;
    color: var(--ink-700);
    font-size: 0.95rem;
}

.highlight-box,
.no-data-box,
.contact-box,
.setup-steps,
.system-requirements,
.support-faq-item,
.support-final-card {
    border-radius: var(--radius-md);
    border: 1px solid rgba(216, 228, 255, 0.95);
    box-shadow: var(--shadow-sm);
    padding: 1rem;
}

.highlight-box {
    background: rgba(31, 143, 255, 0.1);
    border-color: rgba(31, 143, 255, 0.3);
}

.no-data-box {
    background: rgba(25, 194, 160, 0.1);
    border-color: rgba(25, 194, 160, 0.33);
}

.contact-box,
.setup-steps,
.system-requirements,
.support-faq-item,
.support-final-card {
    background: rgba(255, 255, 255, 0.9);
}

.highlight-box h2 {
    margin-top: 0;
}

.section-divider {
    border: 0;
    border-top: 1px solid rgba(216, 228, 255, 0.95);
    margin: 1.7rem 0 1rem;
}

.closing-note {
    text-align: center;
    color: var(--ink-500);
    margin-bottom: 0;
}

.support-intro {
    color: var(--ink-500);
}

.support-actions {
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.55rem;
}

.support-actions p {
    margin-bottom: 0;
    color: var(--ink-500);
    font-size: 0.88rem;
}

.setup-step {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.75rem;
    align-items: start;
    margin-bottom: 0.82rem;
}

.setup-step:last-child {
    margin-bottom: 0;
}

.setup-step-number {
    width: 1.9rem;
    height: 1.9rem;
    border-radius: 999px;
    display: grid;
    place-items: center;
    font-size: 0.86rem;
    font-weight: 800;
    color: #ffffff;
    background: linear-gradient(145deg, var(--brand-500), var(--brand-700));
}

.setup-step-content p {
    margin-bottom: 0;
}

.system-requirements ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.system-requirements li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.48rem 0;
    border-bottom: 1px solid rgba(231, 238, 252, 0.95);
}

.system-requirements li:last-child {
    border-bottom: 0;
}

.system-requirements li::before {
    content: "●";
    color: var(--brand-500);
    font-size: 0.6rem;
}

.support-faq-item {
    margin-top: 0.7rem;
}

.support-faq-item code {
    font-family: "SF Mono", "Menlo", monospace;
    font-size: 0.83rem;
    background: rgba(31, 143, 255, 0.12);
    border: 1px solid rgba(31, 143, 255, 0.2);
    color: var(--brand-700);
    border-radius: 6px;
    padding: 0.1rem 0.36rem;
}

.text-link {
    color: var(--brand-700);
    font-weight: 700;
    text-decoration: none;
}

.text-link:hover {
    text-decoration: underline;
}

.support-final-card {
    margin-top: 1.2rem;
    text-align: center;
    padding: 1.2rem;
    border-color: rgba(31, 143, 255, 0.26);
    background: linear-gradient(150deg, rgba(255, 255, 255, 0.93), rgba(239, 246, 255, 0.9));
}

.support-final-card h2 {
    margin-top: 0;
}

.support-final-card p {
    margin-bottom: 0.82rem;
}

/* Motion */
[data-reveal] {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    transition-delay: var(--reveal-delay, 0ms);
}

[data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

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

/* Responsive */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

    .gallery-thumbs {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .privacy-features {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 88px;
    }

    .container,
    .nav-container {
        padding: 0 20px;
    }

    .nav-container {
        gap: 0.8rem;
    }

    .nav-menu {
        width: 100%;
        justify-content: center;
        order: 3;
        padding-top: 0.7rem;
        border-top: 1px solid rgba(216, 228, 255, 0.75);
    }

    .theme-toggle {
        margin-left: auto;
        order: 2;
    }

    .hero {
        padding-top: 3.8rem;
    }

    .hero-layout {
        grid-template-columns: 1fr;
    }

    .hero-cta {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
    }

    .features,
    .how-it-works,
    .screenshots,
    .privacy-section,
    .faq,
    .pricing,
    .support-section,
    .legal-links {
        padding: 3.35rem 0;
    }

    .gallery-main-meta {
        flex-direction: column;
        align-items: flex-start;
    }

    .gallery-controls {
        padding: 0 0.45rem;
    }

    .gallery-nav {
        width: 2.08rem;
        height: 2.08rem;
    }

    .gallery-thumbs {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

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

    .footer-links {
        flex-direction: column;
        gap: 0.25rem;
    }

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

    .setup-step-number {
        margin-bottom: 0.2rem;
    }
}

@media (max-width: 480px) {
    .container,
    .nav-container {
        padding: 0 16px;
    }

    .hero-copy,
    .hero-panel,
    .feature-item,
    .step-item,
    .gallery-stage,
    .gallery-thumb,
    .pricing-card,
    .support-card,
    .legal-card,
    .page-hero-card,
    .highlight-box,
    .no-data-box,
    .contact-box,
    .setup-steps,
    .system-requirements,
    .support-faq-item,
    .support-final-card {
        padding: 0.9rem;
    }

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

    .gallery-main-image {
        width: min(100%, 295px);
    }

    .gallery-thumbs {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hero-proof {
        gap: 0.45rem;
    }

    .hero-proof li {
        width: calc(50% - 0.25rem);
        text-align: center;
    }

    .theme-toggle-btn {
        padding: 0.4rem 0.46rem;
    }

    .theme-toggle-btn span:last-child {
        display: none;
    }
}

html[data-theme="dark"] {
    color-scheme: dark;
    --brand-500: #57a8ff;
    --brand-700: #2f86f0;
    --mint-500: #2ad0b0;
    --ink-950: #ecf3ff;
    --ink-900: #d8e5fb;
    --ink-700: #a8bbda;
    --ink-500: #8094b7;
    --surface-0: #060b14;
    --surface-1: #0d1523;
    --surface-2: #111b2d;
    --surface-3: #162235;
    --line: #24344d;
    --line-strong: #314a70;
    --shadow-sm: 0 14px 30px -24px rgba(0, 0, 0, 0.86);
    --shadow-md: 0 24px 48px -28px rgba(0, 0, 0, 0.86);
    --shadow-lg: 0 34px 62px -34px rgba(0, 0, 0, 0.9);
}

html[data-theme="dark"] body {
    background: radial-gradient(circle at 10% -10%, rgba(87, 168, 255, 0.2), transparent 40%),
        radial-gradient(circle at 92% -18%, rgba(42, 208, 176, 0.16), transparent 36%),
        var(--surface-0);
}

html[data-theme="dark"] body::before {
    background: rgba(87, 168, 255, 0.22);
}

html[data-theme="dark"] body::after {
    background: rgba(42, 208, 176, 0.18);
}

html[data-theme="dark"] .header {
    border-bottom-color: rgba(56, 78, 112, 0.72);
    background: rgba(8, 14, 25, 0.74);
}

html[data-theme="dark"] .header.scrolled {
    border-bottom-color: rgba(70, 99, 145, 0.84);
    box-shadow: 0 12px 32px -24px rgba(0, 0, 0, 0.85);
}

html[data-theme="dark"] .nav-menu a:hover,
html[data-theme="dark"] .nav-menu a.active {
    background: rgba(87, 168, 255, 0.16);
    border-color: rgba(87, 168, 255, 0.36);
}

html[data-theme="dark"] .section-kicker,
html[data-theme="dark"] .eyebrow,
html[data-theme="dark"] .page-eyebrow {
    background: rgba(87, 168, 255, 0.15);
    border-color: rgba(87, 168, 255, 0.35);
}

html[data-theme="dark"] .btn-secondary {
    background: rgba(13, 22, 36, 0.84);
    border-color: rgba(87, 168, 255, 0.34);
    color: #9ecbff;
}

html[data-theme="dark"] .btn-secondary:hover {
    background: rgba(87, 168, 255, 0.22);
    border-color: rgba(87, 168, 255, 0.55);
}

html[data-theme="dark"] .hero-copy,
html[data-theme="dark"] .hero-panel,
html[data-theme="dark"] .gallery-stage,
html[data-theme="dark"] .pricing-card,
html[data-theme="dark"] .privacy-highlight,
html[data-theme="dark"] .page-hero-card,
html[data-theme="dark"] .support-final-card {
    border-color: rgba(52, 74, 108, 0.92);
    background: linear-gradient(158deg, rgba(20, 30, 47, 0.95), rgba(12, 20, 33, 0.93));
}

html[data-theme="dark"] .feature-item,
html[data-theme="dark"] .step-item,
html[data-theme="dark"] .gallery-thumb,
html[data-theme="dark"] .faq-item,
html[data-theme="dark"] .support-card,
html[data-theme="dark"] .legal-card,
html[data-theme="dark"] .contact-box,
html[data-theme="dark"] .setup-steps,
html[data-theme="dark"] .system-requirements,
html[data-theme="dark"] .support-faq-item {
    border-color: rgba(52, 74, 108, 0.92);
    background: rgba(14, 23, 37, 0.9);
}

html[data-theme="dark"] .feature-item:hover,
html[data-theme="dark"] .legal-card:hover {
    border-color: rgba(87, 168, 255, 0.52);
}

html[data-theme="dark"] .feature-icon {
    background: linear-gradient(145deg, rgba(87, 168, 255, 0.2), rgba(42, 208, 176, 0.16));
    border-color: rgba(87, 168, 255, 0.32);
}

html[data-theme="dark"] .hero-proof li {
    background: rgba(17, 28, 45, 0.9);
    border-color: rgba(53, 75, 109, 0.9);
}

html[data-theme="dark"] .hero-panel-item {
    border-color: rgba(53, 75, 109, 0.9);
    background: rgba(15, 24, 39, 0.92);
}

html[data-theme="dark"] .hero-panel-item code,
html[data-theme="dark"] .support-faq-item code {
    background: rgba(87, 168, 255, 0.2);
    border-color: rgba(87, 168, 255, 0.36);
    color: #bddcff;
}

html[data-theme="dark"] .gallery-stage::before {
    background: radial-gradient(circle, rgba(87, 168, 255, 0.24), rgba(87, 168, 255, 0));
}

html[data-theme="dark"] .gallery-main-image,
html[data-theme="dark"] .gallery-thumb img {
    border-color: rgba(137, 165, 208, 0.24);
    box-shadow: 0 26px 52px -36px rgba(0, 0, 0, 0.92);
}

html[data-theme="dark"] .gallery-main-meta,
html[data-theme="dark"] .pricing-features {
    border-top-color: rgba(53, 75, 109, 0.9);
    border-bottom-color: rgba(53, 75, 109, 0.9);
}

html[data-theme="dark"] .pricing-features li {
    border-bottom-color: rgba(43, 62, 91, 0.85);
}

html[data-theme="dark"] .gallery-nav {
    border-color: rgba(87, 168, 255, 0.45);
    background: rgba(14, 24, 39, 0.92);
    color: #c1ddff;
    box-shadow: 0 16px 30px -24px rgba(0, 0, 0, 0.92);
}

html[data-theme="dark"] .gallery-nav:hover {
    background: rgba(87, 168, 255, 0.22);
    border-color: rgba(87, 168, 255, 0.58);
}

html[data-theme="dark"] .gallery-thumb.is-active {
    border-color: rgba(87, 168, 255, 0.56);
    background: rgba(87, 168, 255, 0.2);
    box-shadow: 0 16px 30px -24px rgba(0, 0, 0, 0.9);
}

html[data-theme="dark"] .privacy-highlight {
    border-color: rgba(42, 208, 176, 0.45);
}

html[data-theme="dark"] .privacy-feature {
    border-color: rgba(42, 208, 176, 0.4);
    background: rgba(13, 24, 31, 0.9);
}

html[data-theme="dark"] .highlight-box {
    background: rgba(47, 134, 240, 0.18);
    border-color: rgba(87, 168, 255, 0.4);
}

html[data-theme="dark"] .no-data-box {
    background: rgba(42, 208, 176, 0.14);
    border-color: rgba(42, 208, 176, 0.4);
}

html[data-theme="dark"] .faq-indicator {
    border-color: rgba(87, 168, 255, 0.45);
    background: rgba(87, 168, 255, 0.18);
}

html[data-theme="dark"] .faq-ready .faq-item.is-open {
    border-color: rgba(87, 168, 255, 0.52);
    box-shadow: 0 20px 42px -32px rgba(87, 168, 255, 0.5);
}

html[data-theme="dark"] .system-requirements li {
    border-bottom-color: rgba(43, 62, 91, 0.85);
}

html[data-theme="dark"] .section-divider {
    border-top-color: rgba(53, 75, 109, 0.9);
}

html[data-theme="dark"] .footer {
    border-top-color: rgba(56, 78, 112, 0.72);
    background: rgba(8, 14, 25, 0.74);
}

html[data-theme="dark"] .footer-links a:hover {
    border-color: rgba(87, 168, 255, 0.42);
    background: rgba(87, 168, 255, 0.22);
}

html[data-theme="dark"] .nav-menu {
    border-top-color: rgba(56, 78, 112, 0.72);
}

html[data-theme="dark"] .theme-toggle {
    background: rgba(13, 22, 36, 0.84);
    border-color: rgba(87, 168, 255, 0.34);
}

html[data-theme="dark"] .theme-toggle-btn:hover {
    background: rgba(87, 168, 255, 0.18);
}

html[data-theme="dark"] .theme-toggle-btn.is-active {
    background: rgba(87, 168, 255, 0.24);
    color: #d7eaff;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    [data-reveal] {
        opacity: 1;
        transform: none;
    }
}
