/* Homebook.io — Public Website Styles */

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

:root {
    --navy: #172b4d;
    --purple: #645aa7;
    --orange: #fbaa19;
    --red: #f15938;
    --blue: #517abd;
    --white: #ffffff;
    --gray-50: #f8f9fa;
    --gray-100: #f1f3f5;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-400: #adb5bd;
    --gray-500: #6c757d;
    --gray-600: #495057;
    --gray-700: #343a40;
    --gray-800: #212529;
    --bg: var(--white);
    --bg-alt: var(--gray-50);
    --text: var(--navy);
    --text-secondary: var(--gray-500);
    --border: var(--gray-200);
    --nav-bg: rgba(255,255,255,0.85);
    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-mono: 'SF Mono', 'Fira Code', monospace;
    --max-width: 1200px;
    --section-padding: 120px 0;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Class-based dark mode */
html.dark {
    --bg: #0d1117;
    --bg-alt: #161b22;
    --text: #e6edf3;
    --text-secondary: #8b949e;
    --border: #30363d;
    --nav-bg: rgba(13,17,23,0.85);
}

html { font-size: 16px; scroll-behavior: smooth; }

body {
    font-family: var(--font);
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
ul { list-style: none; }

/* Material Symbols */
.material-symbols-outlined {
    font-family: 'Material Symbols Outlined';
    font-weight: normal; font-style: normal;
    font-size: inherit; line-height: 1;
    letter-spacing: normal; text-transform: none;
    display: inline-block; white-space: nowrap;
    word-wrap: normal; direction: ltr;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-feature-settings: 'liga';
}

/* Theme logo switching */
.logo-dark  { display: none; }
html.dark .logo-light { display: none; }
html.dark .logo-dark  { display: block; }

/* ── Typography ───────────────────────────────── */
.h-xl  { font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 700; line-height: 1.1; letter-spacing: -0.03em; }
.h-lg  { font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; line-height: 1.15; letter-spacing: -0.02em; }
.h-md  { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 600; line-height: 1.2; letter-spacing: -0.01em; }
.h-sm  { font-size: clamp(1.125rem, 2vw, 1.5rem); font-weight: 600; line-height: 1.3; }
.t-lg  { font-size: clamp(1.125rem, 1.5vw, 1.375rem); line-height: 1.6; color: var(--text-secondary); }
.t-md  { font-size: 1rem; line-height: 1.6; color: var(--text-secondary); }
.t-sm  { font-size: 0.875rem; line-height: 1.5; color: var(--text-secondary); }

/* ── Layout ───────────────────────────────────── */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.section   { padding: var(--section-padding); }
.section-alt { background: var(--bg-alt); }
.text-center { text-align: center; }

/* ── Navigation ───────────────────────────────── */
.nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: var(--nav-bg);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
}
.nav-inner {
    max-width: var(--max-width); margin: 0 auto; padding: 0 24px;
    display: flex; align-items: center; justify-content: space-between;
    height: 64px;
}
.nav-logo-wrap { display: flex; align-items: center; }
.nav-logo-wrap img { height: 28px; width: auto; }
.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a {
    font-size: 0.875rem; font-weight: 500; color: var(--text-secondary);
    transition: color var(--transition);
}
.nav-links a:hover { color: var(--text); }
.nav-cta {
    font-size: 0.875rem; font-weight: 600;
    padding: 8px 20px; border-radius: 8px;
    background: var(--navy); color: var(--white) !important;
    transition: opacity var(--transition);
}
html.dark .nav-cta { background: var(--white); color: var(--navy) !important; }
.nav-cta:hover { opacity: 0.85; }

/* Theme toggle */
.theme-toggle {
    background: none; border: 1px solid var(--border); border-radius: 8px;
    cursor: pointer; padding: 6px 8px; display: flex; align-items: center;
    justify-content: center; color: var(--text-secondary);
    transition: all var(--transition); font-size: 1rem; line-height: 1;
}
.theme-toggle:hover { color: var(--text); border-color: var(--text-secondary); }
.theme-toggle .icon-moon  { display: inline; }
.theme-toggle .icon-sun   { display: none; }
html.dark .theme-toggle .icon-moon { display: none; }
html.dark .theme-toggle .icon-sun  { display: inline; }

/* Mobile nav */
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 20px; height: 2px; background: var(--text); margin: 5px 0; transition: var(--transition); }

@media (max-width: 768px) {
    .nav-toggle { display: block; }
    .nav-links {
        display: none; flex-direction: column; position: absolute;
        top: 64px; left: 0; right: 0; background: var(--bg);
        border-bottom: 1px solid var(--border);
        padding: 24px; gap: 20px;
    }
    .nav-links.open { display: flex; }
}

/* ── Hero ─────────────────────────────────────── */
.hero {
    min-height: 100vh; display: flex; align-items: center;
    padding-top: 96px; padding-bottom: 32px;
}
.hero-content { max-width: 800px; margin: 0 auto; text-align: center; }
.hero-logo { height: 48px; margin: 0 auto 40px; }
.hero h1 { margin-bottom: 24px; }
.hero p { margin-bottom: 40px; }

/* ── Buttons ──────────────────────────────────── */
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 32px; border-radius: 12px;
    font-size: 1rem; font-weight: 600;
    transition: all var(--transition); border: none; cursor: pointer;
}
.btn-primary { background: var(--navy); color: var(--white); }
.btn-primary:hover { opacity: 0.85; transform: translateY(-1px); }
html.dark .btn-primary { background: var(--white); color: var(--navy); }
.btn-outline {
    background: transparent; color: var(--text);
    border: 1.5px solid var(--border);
}
.btn-outline:hover { border-color: var(--text); }
.btn-group { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-sm { padding: 10px 20px; font-size: 0.875rem; border-radius: 10px; }

/* Solution-colored buttons */
.btn-orange  { background: var(--orange); color: var(--navy); }
.btn-purple  { background: var(--purple); color: var(--white); }
.btn-red     { background: var(--red); color: var(--white); }
.btn-blue    { background: var(--blue); color: var(--white); }
.btn-orange:hover, .btn-purple:hover, .btn-red:hover, .btn-blue:hover { opacity: 0.85; transform: translateY(-1px); }

/* ── Solution Cards ───────────────────────────── */
.solutions-grid {
    display: grid; grid-template-columns: repeat(2, 1fr);
    gap: 24px; max-width: 960px; margin: 0 auto;
}
@media (max-width: 768px) {
    .solutions-grid { grid-template-columns: 1fr; }
}
.solution-card {
    background: var(--bg); border: 1px solid var(--border);
    border-radius: 16px; padding: 40px; transition: all var(--transition);
    display: flex; flex-direction: column; gap: 16px;
    position: relative; overflow: hidden;
}
.solution-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.08); }
html.dark .solution-card:hover { box-shadow: 0 12px 40px rgba(0,0,0,0.3); }
.solution-card-logo { height: 32px; width: auto; }
.solution-card-bar {
    position: absolute; top: 0; left: 0; right: 0; height: 3px;
}
.solution-card p { flex: 1; }
.solution-card .card-link {
    font-weight: 600; font-size: 0.875rem;
    display: inline-flex; align-items: center; gap: 6px;
}
.card-link::after { content: '\2192'; transition: transform var(--transition); }
.card-link:hover::after { transform: translateX(4px); }

/* Card accent colors */
.card-orange .solution-card-bar { background: var(--orange); }
.card-orange .card-link { color: var(--orange); }
.card-purple .solution-card-bar { background: var(--purple); }
.card-purple .card-link { color: var(--purple); }
.card-red .solution-card-bar { background: var(--red); }
.card-red .card-link { color: var(--red); }
.card-blue .solution-card-bar { background: var(--blue); }
.card-blue .card-link { color: var(--blue); }

/* ── Lifecycle Timeline ───────────────────────── */
.lifecycle {
    display: flex; align-items: center; justify-content: center;
    gap: 0; flex-wrap: wrap; max-width: 900px; margin: 48px auto 0;
}
.lifecycle-step {
    display: flex; align-items: center; gap: 0;
}
.lifecycle-dot {
    width: 64px; height: 64px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 0.75rem; color: var(--white);
    text-transform: uppercase; letter-spacing: 0.05em;
}
.lifecycle-arrow {
    width: 40px; text-align: center; color: var(--gray-400);
    font-size: 1.25rem;
}
@media (max-width: 600px) {
    .lifecycle { flex-direction: column; gap: 8px; }
    .lifecycle-arrow { transform: rotate(90deg); }
}

/* ── Features (alternating) ───────────────────── */
.feature-row {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 80px; align-items: center;
    padding: 80px 0;
}
.feature-row:nth-child(even) .feature-visual { order: -1; }
@media (max-width: 768px) {
    .feature-row { grid-template-columns: 1fr; gap: 40px; }
    .feature-row:nth-child(even) .feature-visual { order: 0; }
}
.feature-visual {
    background: var(--bg-alt); border-radius: 16px;
    aspect-ratio: 4/3; display: flex; align-items: center;
    justify-content: center; border: 1px solid var(--border);
}
.feature-text h3 { margin-bottom: 16px; }
.feature-text p { margin-bottom: 24px; }

/* ── Feature List (icon + text) ───────────────── */
.feature-list {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 40px; margin-top: 64px;
}
@media (max-width: 768px) {
    .feature-list { grid-template-columns: 1fr; }
}
.feature-item { }
.feature-icon {
    width: 48px; height: 48px; border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 16px; font-size: 1.5rem;
}
.feature-item h4 { font-size: 1rem; font-weight: 600; margin-bottom: 8px; }
.feature-item p { font-size: 0.875rem; color: var(--text-secondary); line-height: 1.6; }

/* Feature items as links */
a.feature-item { display: block; padding: 24px; border-radius: 12px; transition: all var(--transition); }
a.feature-item:hover { background: var(--bg-alt); transform: translateY(-2px); }

/* Icon backgrounds per solution */
.fi-orange { background: rgba(251,170,25,0.12); color: var(--orange); }
.fi-purple { background: rgba(100,90,167,0.12); color: var(--purple); }
.fi-red    { background: rgba(241,89,56,0.12); color: var(--red); }
.fi-blue   { background: rgba(81,122,189,0.12); color: var(--blue); }

/* ── Audience Picker ──────────────────────────── */
.audience-grid {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 16px; margin-top: 48px;
}
@media (max-width: 768px) {
    .audience-grid { grid-template-columns: repeat(2, 1fr); }
}
.audience-btn {
    display: flex; flex-direction: column; align-items: center; gap: 12px;
    padding: 32px 16px; border-radius: 16px;
    border: 1.5px solid var(--border); background: var(--bg);
    font-weight: 600; font-size: 1rem; cursor: pointer;
    transition: all var(--transition); color: var(--text);
}
.audience-btn:hover { transform: translateY(-2px); }
.audience-btn .audience-icon {
    width: 56px; height: 56px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem;
}

/* ── Waitlist / Notify ────────────────────────── */
.notify-form {
    display: flex; gap: 12px; max-width: 480px; margin: 32px auto 0;
}
.notify-form input {
    flex: 1; padding: 14px 20px; border-radius: 12px;
    border: 1.5px solid var(--border); background: var(--bg);
    font-size: 1rem; color: var(--text); font-family: var(--font);
    outline: none; transition: border-color var(--transition);
}
.notify-form input:focus { border-color: var(--navy); }
html.dark .notify-form input { background: var(--bg-alt); }
html.dark .notify-form input:focus { border-color: var(--gray-400); }
.notify-form button { white-space: nowrap; }
@media (max-width: 480px) {
    .notify-form { flex-direction: column; }
}

/* ── Solution Page Hero ───────────────────────── */
.solution-hero {
    min-height: 70vh; display: flex; align-items: center;
    padding-top: 96px; padding-bottom: 32px;
}
.solution-hero-logo { height: 40px; margin-bottom: 32px; }
.solution-hero h1 { margin-bottom: 20px; }
.solution-hero p { margin-bottom: 36px; }

/* Accent overrides for solution pages */
.page-build    { --accent: var(--orange); }
.page-owner    { --accent: var(--purple); }
.page-inspect  { --accent: var(--red); }
.page-manage   { --accent: var(--blue); }

.solution-hero .btn-accent { background: var(--accent); color: var(--white); }
.page-build .solution-hero .btn-accent { color: var(--navy); }

/* ── Feature Detail Page ──────────────────────── */
.feature-detail-hero {
    padding: 140px 0 80px;
}
.feature-detail-hero .breadcrumb {
    font-size: 0.875rem; color: var(--text-secondary); margin-bottom: 24px;
}
.feature-detail-hero .breadcrumb a { transition: color var(--transition); }
.feature-detail-hero .breadcrumb a:hover { color: var(--text); }
.feature-detail-hero h1 { margin-bottom: 20px; }
.feature-detail-hero p { max-width: 640px; }

.detail-section { padding: 80px 0; }
.detail-section h2 { margin-bottom: 16px; }
.detail-section p { margin-bottom: 24px; }
.detail-section ul { margin-bottom: 24px; padding-left: 0; }
.detail-section li {
    padding: 12px 0 12px 28px; position: relative;
    color: var(--text-secondary); font-size: 0.9375rem; line-height: 1.6;
    border-bottom: 1px solid var(--border);
}
.detail-section li:last-child { border-bottom: none; }
.detail-section li::before {
    content: ''; position: absolute; left: 0; top: 18px;
    width: 8px; height: 8px; border-radius: 50%;
}
.page-build .detail-section li::before  { background: var(--orange); }
.page-owner .detail-section li::before  { background: var(--purple); }
.page-inspect .detail-section li::before { background: var(--red); }
.page-manage .detail-section li::before  { background: var(--blue); }

.detail-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start;
}
@media (max-width: 768px) {
    .detail-grid { grid-template-columns: 1fr; gap: 40px; }
}
.detail-visual {
    background: var(--bg-alt); border-radius: 16px;
    aspect-ratio: 4/3; display: flex; align-items: center;
    justify-content: center; border: 1px solid var(--border);
    font-size: 4rem; color: var(--text-secondary);
}

/* Related features */
.related-features { padding: 80px 0; }
.related-features h3 { margin-bottom: 32px; }
.related-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
@media (max-width: 768px) {
    .related-grid { grid-template-columns: 1fr; }
}
.related-card {
    display: block; padding: 32px; border-radius: 12px;
    border: 1px solid var(--border); transition: all var(--transition);
}
.related-card:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.06); }
html.dark .related-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.2); }
.related-card h4 { font-size: 1rem; font-weight: 600; margin-bottom: 8px; }
.related-card p { font-size: 0.875rem; color: var(--text-secondary); }

/* ── Footer ───────────────────────────────────── */
.footer {
    border-top: 1px solid var(--border);
    padding: 64px 0 40px;
}
.footer-grid {
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
}
@media (max-width: 768px) {
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}
.footer-brand p { margin-top: 12px; }
.footer-col h4 {
    font-size: 0.75rem; font-weight: 600; text-transform: uppercase;
    letter-spacing: 0.08em; color: var(--text-secondary); margin-bottom: 16px;
}
.footer-col a {
    display: block; font-size: 0.875rem; color: var(--text-secondary);
    padding: 4px 0; transition: color var(--transition);
}
.footer-col a:hover { color: var(--text); }
.footer-bottom {
    margin-top: 48px; padding-top: 24px; border-top: 1px solid var(--border);
    font-size: 0.8125rem; color: var(--text-secondary);
    display: flex; justify-content: space-between; align-items: center;
}
@media (max-width: 480px) {
    .footer-bottom { flex-direction: column; gap: 8px; }
}

/* ── Placeholder Pages ────────────────────────── */
.placeholder-page {
    min-height: 100vh; display: flex; align-items: center;
    justify-content: center; padding-top: 96px; padding-bottom: 32px; text-align: center;
}
.placeholder-content { max-width: 520px; }
.placeholder-content h1 { margin-bottom: 16px; }
.placeholder-content p { margin-bottom: 32px; }
.placeholder-icon {
    width: 80px; height: 80px; border-radius: 50%;
    background: var(--bg-alt); border: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    font-size: 2rem; margin: 0 auto 32px;
}

/* ── Comparison Matrix ─────────────────────────── */
.matrix-hero {
    padding: 160px 0 80px; text-align: center;
}
.matrix-hero h1 { margin-bottom: 16px; }
.matrix-hero p { max-width: 560px; margin: 0 auto; }

.matrix-wrap {
    overflow-x: auto; -webkit-overflow-scrolling: touch;
    padding-bottom: 8px;
}
.matrix {
    width: 100%; border-collapse: collapse; min-width: 700px;
    font-size: 0.9375rem;
}
.matrix thead { position: sticky; top: 64px; z-index: 5; }
.matrix th, .matrix td {
    padding: 14px 20px; text-align: left;
    border-bottom: 1px solid var(--border);
}
.matrix th {
    background: var(--bg); font-weight: 600;
    font-size: 0.8125rem; text-transform: uppercase;
    letter-spacing: 0.06em; color: var(--text-secondary);
    white-space: nowrap;
}
.matrix th:first-child { border-radius: 8px 0 0 0; }
.matrix th:last-child { border-radius: 0 8px 0 0; }
.matrix td:first-child {
    font-weight: 500; white-space: nowrap; min-width: 200px;
}
.matrix td:first-child a { border-bottom: 1px dashed var(--border); transition: border-color var(--transition); }
.matrix td:first-child a:hover { border-color: var(--text); }
.matrix td:not(:first-child) { text-align: center; width: 130px; }
.matrix tbody tr { transition: background var(--transition); }
.matrix tbody tr:hover { background: var(--bg-alt); }

/* Check / dash icons in matrix */
.mx-check { color: var(--text); font-size: 1.25rem; }
.mx-dash  { color: var(--gray-400); font-size: 1rem; }
.mx-soon  {
    font-size: 0.6875rem; font-weight: 600; text-transform: uppercase;
    letter-spacing: 0.05em; color: var(--text-secondary);
    background: var(--bg-alt); padding: 2px 8px; border-radius: 6px;
}

/* Category row */
.matrix .cat-row td {
    padding: 20px 20px 10px; font-weight: 700; font-size: 0.75rem;
    text-transform: uppercase; letter-spacing: 0.08em;
    color: var(--text-secondary); border-bottom: 2px solid var(--border);
    background: var(--bg);
}

/* Column header accent bars */
.matrix .col-build  { border-top: 3px solid var(--orange); }
.matrix .col-inspect { border-top: 3px solid var(--red); }
.matrix .col-own    { border-top: 3px solid var(--purple); }
.matrix .col-manage { border-top: 3px solid var(--blue); }
.matrix .col-smart  { border-top: 3px solid #2ea043; }

/* Smart matrix — combined integrations + tiers layout */
.smart-matrix { min-width: 0; width: 100%; }
.smart-matrix.show-domains,
.smart-matrix.show-tiers { width: auto; }
.smart-matrix th:not(:first-child),
.smart-matrix td:not(:first-child) { width: 80px; min-width: 80px; text-align: center; }
.smart-matrix th:not(:first-child) { font-size: 0.6875rem; }
.smart-matrix td:first-child { min-width: 160px; }
.smart-matrix .col-divider {
    width: 2px !important; min-width: 2px !important; padding: 0 !important;
    border-bottom-color: transparent !important;
    background: var(--border);
}
.smart-matrix thead .col-divider,
.smart-matrix .cat-row .col-divider { background: transparent; }
.matrix .col-tier { border-top: 3px solid var(--navy); }
html.dark .matrix .col-tier { border-top: 3px solid var(--gray-400); }

/* Smart matrix toggle — hide tier side when showing domains */
.smart-matrix.show-domains .col-divider,
.smart-matrix.show-domains .col-tier,
.smart-matrix.show-domains th:nth-child(n+9),
.smart-matrix.show-domains td:nth-child(n+9) { display: none; }

/* Smart matrix toggle — hide domain side when showing tiers */
.smart-matrix.show-tiers .col-divider,
.smart-matrix.show-tiers .col-smart,
.smart-matrix.show-tiers th:nth-child(n+2):nth-child(-n+8),
.smart-matrix.show-tiers td:nth-child(n+2):nth-child(-n+8) { display: none; }

/* ── Smart Page — Accent & Integrations ───────── */
.page-smart   { --accent: #2ea043; }
.fi-green { background: rgba(46,160,67,0.12); color: #2ea043; }

.integration-categories { display: flex; flex-direction: column; gap: 56px; }
.integ-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
@media (max-width: 768px) {
    .integ-grid { grid-template-columns: 1fr; }
}
.integ-card {
    padding: 28px; border-radius: 14px;
    border: 1px solid var(--border); background: var(--bg);
    transition: all var(--transition);
}
.integ-card:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.06); }
html.dark .integ-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.25); }
.integ-icon {
    width: 44px; height: 44px; border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 14px; font-size: 1.25rem;
    background: rgba(46,160,67,0.12); color: #2ea043;
}
.integ-card h4 { font-size: 0.9375rem; font-weight: 600; margin-bottom: 6px; }
.integ-card p { font-size: 0.8125rem; color: var(--text-secondary); line-height: 1.55; }

/* ── Pricing — Compare Toggle ────────────────── */
.pricing-tabs {
    display: flex; justify-content: center; gap: 0; margin-bottom: 48px;
    border: 1.5px solid var(--border); border-radius: 12px;
    overflow: hidden; max-width: 320px; margin-left: auto; margin-right: auto;
}
.pricing-tab {
    flex: 1; padding: 12px 24px; font-size: 0.875rem; font-weight: 600;
    text-align: center; cursor: pointer; background: var(--bg);
    border: none; color: var(--text-secondary); transition: all var(--transition);
    font-family: var(--font);
}
.pricing-tab.active { background: var(--navy); color: var(--white); }
html.dark .pricing-tab.active { background: var(--white); color: var(--navy); }
.pricing-panel { display: none; }
.pricing-panel.active { display: block; }

/* ── Animations ───────────────────────────────── */
.fade-in {
    opacity: 0; transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* Stagger children */
.stagger > * { transition-delay: calc(var(--i, 0) * 0.1s); }
