﻿/*

TemplateMo 618 The Catalyst

https://templatemo.com/tm-618-the-catalyst

Silver & Acid Light-Mode SaaS Landing Page

*/


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

:root {
    /* Silver & Acid Palette */
    --bg:           #FAFAFA;
    --surface:      #F0F0F0;
    --text:         #111111;
    --text-muted:   #666666;
    --text-dim:     #999999;
    --accent:       #10b981;
    --accent-hover: #059669;
    --border:       #E5E5E5;
    --border-light: #EEEEEE;
    --white:        #FFFFFF;

    /* Spacing */
    --section-pad: clamp(80px, 10vw, 140px);
    --container:   1200px;
    --gap:         24px;
}

html:has(.landing-root) {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body.page-public-landing {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text', sans-serif;
    color: var(--text);
    line-height: 1.6;
    letter-spacing: -0.02em;
    overflow-x: hidden;
}

body.page-public-landing.bg-light {
    background-color: var(--bg) !important;
}

.landing-root a:not(.btn-hf-primary):not(.btn-hf-secondary):not(.btn-final-ghost):not(.btn-final-cta):not(.btn-premium-primary) {
    color: inherit;
    text-decoration: none;
}

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

.landing-root .container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--gap);
}

/* ===== Machined Silver Card System ===== */
.landing-root .card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    box-shadow: inset 0 1px 0 var(--white);
    transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}

.landing-root .card:hover {
    transform: translateY(-2px);
}

/* ===== Acid Button System ===== */
.btn-acid {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    background: var(--accent);
    color: #ffffff;
    font-family: inherit;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: -0.02em;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.2s cubic-bezier(0.22, 1, 0.36, 1),
                box-shadow 0.2s cubic-bezier(0.22, 1, 0.36, 1);
    user-select: none;
}

.btn-acid:hover {
    transform: translateY(-2px);
    box-shadow: 4px 4px 0px rgba(0,0,0,0.25);
}

.btn-acid:active {
    transform: translateY(0);
    box-shadow: 1px 1px 0px var(--text);
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    background: transparent;
    color: var(--text);
    font-family: inherit;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: -0.02em;
    border: 1px solid var(--border);
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.2s cubic-bezier(0.22, 1, 0.36, 1),
                box-shadow 0.2s cubic-bezier(0.22, 1, 0.36, 1),
                border-color 0.2s ease;
}

.btn-ghost:hover {
    transform: translateY(-2px);
    box-shadow: 4px 4px 0px var(--text);
    border-color: var(--text);
}

/* ===== NAVIGATION ===== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(250, 250, 250, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
}

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

.nav-logo {
    font-size: 18px;
    font-weight: 800;
    letter-spacing: -0.04em;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-logo-mark {
    width: 28px;
    height: 28px;
    background: var(--accent);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-logo-mark svg {
    width: 16px;
    height: 16px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
    list-style: none;
}

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

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

.nav-cta {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-cta .btn-acid {
    padding: 10px 22px;
    font-size: 14px;
}

.nav-cta .btn-ghost {
    padding: 10px 22px;
    font-size: 14px;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text);
    position: relative;
    transition: background 0.2s ease;
}

.nav-toggle span::before,
.nav-toggle span::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--text);
    transition: transform 0.3s ease;
}

.nav-toggle span::before { top: -7px; }
.nav-toggle span::after  { top: 7px; }

.nav-toggle.active span { background: transparent; }
.nav-toggle.active span::before { transform: rotate(45deg); top: 0; }
.nav-toggle.active span::after  { transform: rotate(-45deg); top: 0; }

/* ===== SECTION 1: HERO ===== */
.hero {
    padding-top: 160px;
    padding-bottom: 0;
    text-align: center;
    position: relative;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px 6px 8px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-muted);
    margin-bottom: 32px;
    box-shadow: inset 0 1px 0 var(--white);
}

.hero-badge-dot {
    width: 8px;
    height: 8px;
    background: #22C55E;
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.hero h1 {
    font-size: clamp(42px, 6vw, 76px);
    font-weight: 800;
    line-height: 1.02;
    letter-spacing: -0.045em;
    max-width: 820px;
    margin: 0 auto 24px;
}

.hero h1 .accent-word {
    color: var(--text);
    background: var(--accent);
    padding: 0 10px;
    border-radius: 8px;
    display: inline-block;
}

.hero-sub {
    font-size: clamp(16px, 1.8vw, 19px);
    color: var(--text-muted);
    max-width: 520px;
    margin: 0 auto 40px;
    line-height: 1.6;
    font-weight: 400;
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 72px;
}

/* Dashboard Mockup */
.hero-dashboard {
    position: relative;
    max-width: 1060px;
    margin: 0 auto;
}

.hero-dashboard::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to top, var(--bg) 0%, transparent 100%);
    pointer-events: none;
    z-index: 2;
}

.dashboard-frame {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px 16px 0 0;
    box-shadow: inset 0 1px 0 var(--white),
                0 0 0 1px rgba(0,0,0,0.02),
                0 20px 60px -10px rgba(0,0,0,0.08);
    overflow: hidden;
}

.dashboard-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    border-bottom: 1px solid var(--border);
}

.dashboard-dots {
    display: flex;
    gap: 7px;
}

.dashboard-dots span {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: var(--border);
}

.dashboard-toolbar-tabs {
    display: flex;
    gap: 2px;
}

.dashboard-toolbar-tabs span {
    padding: 5px 14px;
    font-size: 12px;
    font-weight: 500;
    color: var(--text-dim);
    border-radius: 6px;
    cursor: default;
}

.dashboard-toolbar-tabs span.active {
    background: var(--white);
    color: var(--text);
    border: 1px solid var(--border);
    box-shadow: 0 1px 2px rgba(0,0,0,0.04);
}

.dashboard-body {
    padding: 20px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 16px;
}

.dash-stat-card {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 20px;
    box-shadow: inset 0 1px 0 var(--white);
}

.dash-stat-label {
    font-size: 12px;
    font-weight: 500;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 8px;
}

.dash-stat-value {
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -0.03em;
    font-variant-numeric: tabular-nums;
}

.dash-stat-change {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: 6px;
    font-size: 12px;
    font-weight: 600;
    color: #22C55E;
}

.dash-stat-change.down { color: #EF4444; }

/* Data Table inside dashboard */
.dashboard-table-area {
    grid-column: 1 / -1;
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    overflow: hidden;
}

.dash-table-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid var(--border-light);
}

.dash-table-header span {
    font-size: 14px;
    font-weight: 600;
}

.dash-table-header .dash-filter {
    font-size: 12px;
    font-weight: 500;
    color: var(--text-dim);
    padding: 4px 12px;
    border: 1px solid var(--border);
    border-radius: 6px;
}

.dash-table {
    width: 100%;
}

.dash-table-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 100px;
    padding: 12px 20px;
    align-items: center;
    border-bottom: 1px solid var(--border-light);
    font-size: 13px;
}

.dash-table-row.head {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background: rgba(0,0,0,0.015);
}

.dash-table-row:last-child {
    border-bottom: none;
}

.dash-cell {
    font-variant-numeric: tabular-nums;
}

.dash-cell-name {
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.dash-cell-icon {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    flex-shrink: 0;
}

.dash-status {
    display: inline-flex;
    padding: 3px 10px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 600;
}

.dash-status.active {
    background: #DCFCE7;
    color: #166534;
}

.dash-status.pending {
    background: #FEF3C7;
    color: #92400E;
}

.dash-status.draft {
    background: var(--surface);
    color: var(--text-muted);
}

/* ===== SECTION 2: SPEED METRICS ===== */
.metrics {
    padding: var(--section-pad) 0;
}

.metrics-label {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-dim);
    text-align: center;
    margin-bottom: 56px;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.metric-item {
    text-align: center;
    padding: 48px 24px;
}

.metric-number {
    font-size: clamp(56px, 8vw, 88px);
    font-weight: 900;
    letter-spacing: -0.05em;
    line-height: 1;
    font-variant-numeric: tabular-nums;
    margin-bottom: 12px;
}

.metric-number .metric-unit {
    font-size: 0.45em;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: -0.02em;
}

.metric-number .metric-highlight {
    color: var(--text);
    background: var(--accent);
    padding: 0 6px;
    border-radius: 6px;
}

.metric-desc {
    font-size: 15px;
    color: var(--text-muted);
    font-weight: 500;
    max-width: 240px;
    margin: 0 auto;
}

.metric-divider {
    width: 1px;
    background: var(--border);
    margin: 24px 0;
    justify-self: center;
}

/* ===== SECTION 3: THE ENGINE — BENTO GRID ===== */
.engine {
    padding: 0 0 clamp(48px, 6vw, 80px);
}

/* Mobile app strip: cluster copy + device toward section center on wide screens */
#app.engine {
    padding-top: clamp(24px, 4vw, 48px);
}

#app .landing-app-layout {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: clamp(2rem, 5vw, 3.5rem);
}

#app .landing-app-copy {
    flex: 1 1 300px;
    max-width: 520px;
    min-width: 0;
}

#app .landing-app-visual {
    flex: 0 1 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-dim);
    margin-bottom: 16px;
}

.section-tag::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 2px;
}

.section-title {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.1;
    max-width: 600px;
    margin: 0 auto;
    /* Override styles.css `.section-title { color: #fff }` meant for dark in-app panels */
    color: var(--text);
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.bento-card {
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
}

.bento-card-icon {
    width: 48px;
    height: 48px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    box-shadow: inset 0 1px 0 var(--white);
}

.bento-card-icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--text);
}

.bento-card h3 {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.03em;
    margin-bottom: 10px;
}

.bento-card p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.6;
    flex: 1;
}

.bento-card-visual {
    margin-top: 28px;
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 16px;
    min-height: 120px;
}

/* Mini chart bars in bento card */
.mini-bars {
    display: flex;
    align-items: flex-end;
    gap: 6px;
    height: 80px;
}

.mini-bar {
    flex: 1;
    background: var(--border);
    border-radius: 4px 4px 0 0;
    transition: height 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.mini-bar.highlight { background: var(--accent); }

/* Mini pipeline in bento card */
.mini-pipeline {
    display: flex;
    align-items: center;
    gap: 12px;
}

.mini-pipeline-node {
    flex: 1;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 600;
    color: var(--text-muted);
}

.mini-pipeline-node:nth-child(1) { background: var(--accent); color: #ffffff; }
.mini-pipeline-node:nth-child(2) { background: #e8e8e8; }
.mini-pipeline-node:nth-child(3) { background: #e0e0e0; }

.mini-pipeline-arrow {
    font-size: 12px;
    color: var(--text-dim);
    flex-shrink: 0;
}

/* Mini code block in bento card */
.mini-code {
    font-family: 'SF Mono', 'Fira Code', monospace;
    font-size: 12px;
    line-height: 1.7;
    color: var(--text-muted);
}

.mini-code .keyword { color: var(--text); font-weight: 600; }
.mini-code .string { color: #16A34A; }
.mini-code .comment { color: var(--text-dim); }

/* ===== SECTION 4: PRICING ===== */
.pricing {
    padding: clamp(48px, 6vw, 80px) 0;
}

.toggle-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 40px;
}

.toggle-container {
    display: flex;
    align-items: center;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 4px;
    box-shadow: inset 0 1px 0 var(--white);
}

.toggle-btn {
    padding: 10px 28px;
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: -0.02em;
    border: none;
    border-radius: 9px;
    cursor: pointer;
    background: transparent;
    color: var(--text-muted);
    transition: all 0.25s cubic-bezier(0.22, 1, 0.36, 1);
    position: relative;
}

.toggle-btn.active {
    background: var(--accent);
    color: #ffffff;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}

.toggle-save {
    font-size: 12px;
    font-weight: 600;
    color: #16A34A;
    margin-left: 12px;
    opacity: 0;
    transform: translateX(-8px);
    transition: all 0.3s ease;
}

.toggle-save.visible {
    opacity: 1;
    transform: translateX(0);
}

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

.pricing-card {
    padding: 32px 28px;
    position: relative;
}

.pricing-card.featured {
    border-color: var(--accent);
    border-width: 2px;
}

.pricing-card.featured::before {
    content: 'Most Popular';
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    padding: 4px 16px;
    background: var(--accent);
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: -0.01em;
    border-radius: 100px;
    white-space: nowrap;
}

.pricing-plan-name {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 4px;
}

.pricing-plan-desc {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.pricing-amount {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 6px;
}

.pricing-currency {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.pricing-value {
    font-size: 56px;
    font-weight: 900;
    letter-spacing: -0.05em;
    line-height: 1;
    font-variant-numeric: tabular-nums;
    transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.pricing-period {
    font-size: 14px;
    color: var(--text-dim);
    font-weight: 500;
}

.pricing-billed {
    font-size: 13px;
    color: var(--text-dim);
    margin-bottom: 28px;
    transition: all 0.25s ease;
}

.pricing-billed.yearly-active {
    color: #ffffff;
    font-weight: 600;
    background: var(--accent);
    display: inline-block;
    padding: 4px 12px;
    border-radius: 6px;
}

.pricing-card .btn-acid,
.pricing-card .btn-ghost {
    width: 100%;
    margin-bottom: 28px;
}

.pricing-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 500;
}

.pricing-features li svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    stroke: #22C55E;
}

/* ===== SECTION 7: FOOTER ===== */
.footer {
    padding: 80px 0 40px;
    border-top: 1px solid var(--border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 64px;
}

.footer-brand-desc {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 280px;
    margin-top: 16px;
}

.footer-col-title {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text);
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

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

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

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

.footer-copy {
    font-size: 13px;
    color: var(--text-dim);
}

.footer-copy a {
    color: var(--text-muted);
}

.footer-copy a:hover {
    color: var(--text);
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
    list-style: none;
}

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

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

/* ===== SECTION 5: FAQ ===== */
.faq {
    padding: var(--section-pad) 0;
}

.faq-list {
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-controls {
    max-width: 720px;
    margin: 0 auto 20px;
    display: flex;
    justify-content: flex-end;
    gap: 8px;
}

.faq-ctrl-btn {
    padding: 7px 16px;
    font-family: inherit;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: -0.01em;
    color: var(--text-muted);
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 8px;
    cursor: pointer;
    box-shadow: inset 0 1px 0 var(--white);
    transition: color 0.2s ease, border-color 0.2s ease;
}

.faq-ctrl-btn:hover {
    color: var(--text);
    border-color: #CCC;
}

.faq-item {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 14px;
    box-shadow: inset 0 1px 0 var(--white);
    overflow: hidden;
    transition: border-color 0.25s ease;
}

.faq-item.open {
    border-color: #CCCCCC;
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    width: 100%;
    padding: 22px 24px;
    background: none;
    border: none;
    font-family: inherit;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--text);
    cursor: pointer;
    text-align: left;
    line-height: 1.4;
}

.faq-question:hover {
    color: var(--text);
}

.faq-icon {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
                background 0.2s ease;
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
    background: var(--accent);
    border-color: var(--accent);
}

.faq-icon svg {
    width: 14px;
    height: 14px;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.faq-answer-inner {
    padding: 0 24px 22px;
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ===== SECTION 6: CTA BANNER ===== */
.cta-banner {
    padding: var(--section-pad) 0;
}

.cta-banner-inner {
    background: #2A2A2A;
    border-radius: 24px;
    padding: clamp(56px, 8vw, 96px) clamp(32px, 5vw, 72px);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-banner-inner::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 360px;
    height: 360px;
    background: var(--accent);
    border-radius: 50%;
    opacity: 0.08;
    filter: blur(80px);
    pointer-events: none;
}

.cta-banner-inner::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 260px;
    height: 260px;
    background: var(--accent);
    border-radius: 50%;
    opacity: 0.06;
    filter: blur(60px);
    pointer-events: none;
}

.cta-banner-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255,255,255,0.4);
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.cta-banner-tag::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 2px;
}

.cta-banner h2 {
    font-size: clamp(32px, 4.5vw, 52px);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.1;
    color: var(--white);
    max-width: 580px;
    margin: 0 auto 16px;
    position: relative;
    z-index: 1;
}

.cta-banner p {
    font-size: 16px;
    color: rgba(255,255,255,0.5);
    max-width: 420px;
    margin: 0 auto 40px;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.cta-banner-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    position: relative;
    z-index: 1;
}

.cta-banner .btn-acid {
    padding: 16px 40px;
    font-size: 16px;
}

.btn-dark-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 40px;
    background: transparent;
    color: rgba(255,255,255,0.7);
    font-family: inherit;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: -0.02em;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.2s cubic-bezier(0.22, 1, 0.36, 1),
                color 0.2s ease,
                border-color 0.2s ease;
}

.btn-dark-ghost:hover {
    transform: translateY(-2px);
    color: var(--white);
    border-color: rgba(255,255,255,0.3);
}

/* ===== SCROLL REVEAL ===== */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .bento-grid {
        grid-template-columns: 1fr;
    }

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

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

@media (max-width: 768px) {
    .nav-links { display: none; }
    .nav-cta   { display: none; }
    .nav-toggle { display: flex; }

    .nav-links.open {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 64px;
        left: 0;
        right: 0;
        bottom: 0;
        height: calc(100dvh - 64px);
        background: var(--bg);
        padding: 80px 24px;
        gap: 24px;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        z-index: 999;
        border-top: 1px solid var(--border);
    }

    .nav-links.open a {
        font-size: 20px;
        font-weight: 600;
        color: var(--text);
    }

    .hero {
        padding-top: 120px;
    }

    .hero-actions {
        flex-direction: column;
    }

    .metrics-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .metric-divider {
        width: 60px;
        height: 1px;
        margin: 0 auto;
    }

    .metric-item {
        padding: 32px 24px;
    }

    .dashboard-body {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .dash-table-row {
        grid-template-columns: 2fr 1fr 1fr;
    }

    .dash-table-row .dash-cell:nth-child(4),
    .dash-table-row .dash-cell:nth-child(5) {
        display: none;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .cta-banner-actions {
        flex-direction: column;
    }

    .cta-banner .btn-acid,
    .btn-dark-ghost {
        width: 100%;
        max-width: 300px;
    }
}

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

    .reveal {
        opacity: 1;
        transform: none;
    }
}

/* ----- IamCarla: public landing shell, brand alignment, legacy sections ----- */
body.page-public-landing .app-content-container {
    max-width: none !important;
    width: 100% !important;
    margin: 0 auto !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

body.page-public-landing.bg-light .app-content {
    background: var(--bg) !important;
}

body.page-public-landing .sidebar-toggle-btn {
    display: none !important;
}

@media (min-width: 1025px) {
    body.page-public-landing .metrics-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    body.page-public-landing .metrics-grid {
        grid-template-columns: 1fr;
    }
}

body.page-public-landing .hero h1,
body.page-public-landing .section-title,
body.page-public-landing .metric-number,
body.page-public-landing .cta-banner h2 {
    font-family: 'Poppins', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

body.page-public-landing .bento-card h3 {
    font-family: 'Poppins', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* App shell chrome omitted from base on public landing (belt-and-suspenders) */
body.page-public-landing .site-footer {
    display: none !important;
}

body.page-public-landing .section-title-premium,
body.page-public-landing .landing-premium .section-header-premium h2 {
    color: var(--premium-text);
}

body.page-public-landing {
    --landing-nav-height: 72px;
}

/* Mobile section strip under premium nav */
body.page-public-landing .landing-mobile-section-nav {
  display: none !important;
}

.landing-mobile-section-nav {
    position: sticky;
    top: var(--topbar-height, 64px);
    z-index: 900;
    background: rgba(250, 250, 250, 0.92);
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.landing-mobile-section-nav-inner {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 10px 12px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.landing-mobile-section-nav-inner::-webkit-scrollbar {
    display: none;
}

.landing-mobile-section-pill {
    flex: 0 0 auto;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
    padding: 8px 14px;
    border-radius: 100px;
    border: 1px solid var(--border);
    background: var(--white);
}

.landing-mobile-section-pill:active {
    color: var(--text);
    border-color: var(--accent);
}

/* ===== PREMIUM LANDING THEME ===== */
/* This is the new premium face of Carla - bright, warm, editorial aesthetic */

:root {
  /* Premium palette - warm light mode */
  --premium-bg: #FAFAFA;
  --premium-surface: #FFFFFF;
  --premium-surface-2: #F5F5F5;
  --premium-text: #1A1A1A;
  --premium-text-secondary: #525252;
  --premium-text-muted: #737373;
  --premium-accent: #10b981;
  --premium-accent-light: #D1FAE5;
  --premium-accent-dark: #059669;
  --premium-border: #E5E5E5;
  --premium-border-light: #F0F0F0;
  --premium-shadow: rgba(0, 0, 0, 0.08);
  --premium-shadow-lg: rgba(0, 0, 0, 0.12);
  --premium-radius: 16px;
  --premium-radius-lg: 24px;
}

/* Typography */
.landing-premium {
  font-family: 'DM Sans', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--premium-text);
  background: var(--premium-bg);
}

.landing-premium h1, 
.landing-premium h2,
.landing-premium .section-title-premium {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.landing-premium h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.1;
}

.landing-premium h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.2;
}

.landing-premium em {
  color: var(--premium-accent);
  font-style: italic;
}

.landing-premium .container-premium {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== NAVBAR PREMIUM ===== */
.nav-premium {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(250, 250, 250, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--premium-border);
  transition: all 0.3s ease;
}

.nav-premium.scrolled {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 1px 3px var(--premium-shadow);
}

.nav-premium-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-premium-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--premium-text);
  font-weight: 700;
  font-size: 1.25rem;
}

.nav-logo-accent {
  color: var(--premium-accent);
}

.nav-premium-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-link {
  color: var(--premium-text-secondary);
  text-decoration: none;
  font-size: 0.9375rem;
  font-weight: 500;
  transition: color 0.2s ease;
  position: relative;
}

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

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

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

.nav-link.active {
  color: var(--premium-text);
}

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

.landing-scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0;
  z-index: 10000;
  pointer-events: none;
  background: linear-gradient(90deg, #059669, #10b981, #34d399);
  transition: width 0.1s linear;
  box-shadow: 0 0 8px rgba(16, 185, 129, 0.7);
}

.nav-premium-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-nav-ghost {
  padding: 10px 20px;
  color: var(--premium-text-secondary);
  text-decoration: none;
  font-size: 0.9375rem;
  font-weight: 500;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.btn-nav-ghost:hover {
  color: var(--premium-text);
  background: var(--premium-surface-2);
}

.btn-nav-primary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  background: var(--premium-accent);
  color: white;
  text-decoration: none;
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.btn-nav-primary:hover {
  background: var(--premium-accent-dark);
  transform: translateY(-1px);
}

/* ===== HERO PREMIUM ===== */
.hero-premium {
  min-height: 100vh;
  padding-top: 140px;
  padding-bottom: 80px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--premium-bg) 0%, #FFFFFF 100%);
}

.hero-video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
  z-index: 0;
}

.hero-orb {
  position: absolute;
  top: 10%;
  right: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(60px);
  animation: orbFloat 20s ease-in-out infinite;
  z-index: 0;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(-30px, 30px) scale(1.1); }
  50% { transform: translate(20px, -20px) scale(0.95); }
  75% { transform: translate(-20px, -30px) scale(1.05); }
}

.hero-premium-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge-premium {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  background: var(--premium-surface);
  border: 1px solid var(--premium-border);
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--premium-text-secondary);
  margin-bottom: 24px;
  box-shadow: 0 2px 8px var(--premium-shadow);
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  background: var(--premium-accent);
  border-radius: 50%;
  animation: pulseBadge 2s ease-in-out infinite;
}

@keyframes pulseBadge {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.9); }
}

.hero-title-premium {
  margin-bottom: 20px;
}

.word-reveal {
  display: inline-block;
  opacity: 0;
  transform: translateY(30px);
  animation: wordReveal 0.6s ease forwards;
}

.word-reveal.accent {
  color: var(--premium-accent);
}

.word-reveal[data-delay="0"] { animation-delay: 0s; }
.word-reveal[data-delay="200"] { animation-delay: 0.2s; }
.word-reveal[data-delay="400"] { animation-delay: 0.4s; }
.word-reveal[data-delay="600"] { animation-delay: 0.6s; }

@keyframes wordReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Typewriter effect */
.hero-typewriter {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 1.125rem;
  color: var(--premium-text-secondary);
  margin-bottom: 20px;
  min-height: 28px;
}

.typewriter-prefix {
  font-weight: 600;
  color: var(--premium-accent);
}

.typewriter-text {
  font-weight: 500;
}

.typewriter-cursor {
  color: var(--premium-accent);
  animation: blink 1s step-end infinite;
}

@keyframes blink {
  50% { opacity: 0; }
}

.hero-sub-premium {
  font-size: 1.125rem;
  color: var(--premium-text-secondary);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 32px;
}

.hero-actions-premium {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.btn-premium-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  background: var(--premium-accent);
  color: white;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 4px 14px rgba(16, 185, 129, 0.35);
}

.btn-premium-primary:hover {
  background: var(--premium-accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.45);
}

.btn-shimmer {
  position: relative;
  overflow: hidden;
}

.btn-shimmer::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0% { left: -100%; }
  50%, 100% { left: 100%; }
}

.btn-premium-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  background: transparent;
  color: var(--premium-text);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 12px;
  border: 1px solid var(--premium-border);
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-premium-ghost:hover {
  background: var(--premium-surface);
  border-color: var(--premium-accent);
  color: var(--premium-accent);
}

/* Hero stats */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
}

.stat-item {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--premium-accent);
  font-variant-numeric: tabular-nums;
}

.stat-suffix {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--premium-accent);
}

.stat-label {
  font-size: 0.875rem;
  color: var(--premium-text-muted);
  margin-left: 4px;
}

.stat-divider {
  width: 1px;
  height: 24px;
  background: var(--premium-border);
}

/* Hero dashboard */
.hero-premium-right {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-dashboard-premium {
  position: relative;
  width: 100%;
  max-width: 600px;
}

.dashboard-glow-frame {
  position: relative;
  border-radius: var(--premium-radius-lg);
  overflow: hidden;
  box-shadow: 
    0 0 0 1px var(--premium-border),
    0 20px 60px -10px var(--premium-shadow-lg),
    0 0 100px -20px rgba(16, 185, 129, 0.2);
}

.dashboard-glow-frame::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, var(--premium-accent) 0%, transparent 50%, var(--premium-accent-light) 100%);
  border-radius: calc(var(--premium-radius-lg) + 2px);
  z-index: -1;
  opacity: 0.5;
}

.dashboard-glow-frame img {
  width: 100%;
  height: auto;
  display: block;
}

/* ===== HERO PORTRAIT (Carla) ===== */
.hero-portrait-premium {
  position: relative;
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
}

.portrait-frame {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 
    0 0 0 1px var(--premium-border),
    0 25px 70px -15px var(--premium-shadow-lg),
    0 0 120px -30px rgba(16, 185, 129, 0.25);
  background: var(--premium-surface);
}

.portrait-frame::before {
  content: '';
  position: absolute;
  inset: -3px;
  background: linear-gradient(135deg, var(--premium-accent) 0%, transparent 40%, var(--premium-accent-light) 100%);
  border-radius: 27px;
  z-index: -1;
  opacity: 0.6;
  filter: blur(1px);
}

.portrait-frame img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 24px;
}

/* Integrations ticker */
.integrations-ticker {
  position: absolute;
  bottom: 40px;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.ticker-label {
  font-size: 0.875rem;
  color: var(--premium-text-muted);
  font-weight: 500;
}

.ticker-track {
  width: 100%;
  max-width: 800px;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.ticker-content {
  display: flex;
  gap: 40px;
  animation: tickerScroll 30s linear infinite;
}

.ticker-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--premium-text-secondary);
  white-space: nowrap;
  flex-shrink: 0;
}

.ticker-item img,
.ticker-item svg {
  width: 28px;
  height: 28px;
}

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

/* ===== SECTION HEADER ===== */
.section-header-premium {
  text-align: center;
  margin-bottom: 60px;
}

.section-tag-premium {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--premium-accent);
  margin-bottom: 16px;
}

.section-tag-premium::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--premium-accent);
  border-radius: 2px;
}

.section-title-premium {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--premium-text);
  margin-bottom: 16px;
}

.section-subtitle-premium {
  font-size: 1.125rem;
  color: var(--premium-text-secondary);
  max-width: 500px;
  margin: 0 auto;
}

/* ===== FEATURES PREMIUM ===== */
.features-premium {
  padding: 100px 0;
  background: var(--premium-surface);
}

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

@media (max-width: 992px) {
  .features-masonry {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .features-masonry {
    grid-template-columns: 1fr;
  }
}

.feature-card-premium {
  position: relative;
  background: var(--premium-bg);
  border: 1px solid var(--premium-border);
  border-radius: var(--premium-radius);
  padding: 32px;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  overflow: hidden;
}

.feature-card-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(16, 185, 129, 0.1) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.feature-card-premium:hover {
  transform: translateY(-4px);
  border-color: var(--premium-accent);
  box-shadow: 0 20px 40px -10px var(--premium-shadow-lg);
}

.feature-card-premium:hover .feature-card-glow {
  opacity: 1;
}

.feature-icon-wrap {
  width: 56px;
  height: 56px;
  background: var(--premium-accent-light);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--premium-accent);
}

.feature-icon-wrap svg {
  width: 28px;
  height: 28px;
}

.feature-card-premium h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--premium-text);
}

.feature-card-premium p {
  font-size: 0.9375rem;
  color: var(--premium-text-secondary);
  line-height: 1.6;
  margin-bottom: 16px;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.875rem;
  color: var(--premium-text-muted);
  margin-bottom: 8px;
  padding-left: 0;
}

.feature-list li::before {
  content: '—';
  color: var(--premium-accent);
  font-weight: 600;
  flex-shrink: 0;
}

/* ===== APP SECTION ===== */
.app-section-premium {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.app-section-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.app-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

@media (max-width: 992px) {
  .app-layout {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .app-copy {
    order: 2;
  }
  
  .app-visual {
    order: 1;
  }
}

.app-description {
  font-size: 1.0625rem;
  color: var(--premium-text-secondary);
  line-height: 1.7;
  margin: 20px 0 24px;
}

.app-features-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.app-features-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  color: var(--premium-text);
  margin-bottom: 12px;
}

@media (max-width: 992px) {
  .app-features-list li {
    justify-content: center;
  }
}

.app-feature-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Phone mockup */
.app-visual {
  display: flex;
  justify-content: center;
}

.phone-mockup {
  position: relative;
  animation: phoneBob 4s ease-in-out infinite;
}

@keyframes phoneBob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

.phone-frame {
  width: 280px;
  border-radius: 40px;
  overflow: hidden;
  box-shadow: 
    0 25px 50px -12px var(--premium-shadow-lg),
    0 0 0 12px #1a1a1a,
    0 0 0 14px #333;
}

.phone-frame img {
  width: 100%;
  height: auto;
  display: block;
}

.phone-shadow {
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 20px;
  background: radial-gradient(ellipse, rgba(0,0,0,0.2) 0%, transparent 70%);
  border-radius: 50%;
  animation: shadowPulse 4s ease-in-out infinite;
}

@keyframes shadowPulse {
  0%, 100% { transform: translateX(-50%) scale(1); opacity: 0.3; }
  50% { transform: translateX(-50%) scale(0.9); opacity: 0.2; }
}

/* ===== INTEGRATIONS PREMIUM ===== */
.integrations-premium {
  padding: 100px 0;
  background: var(--premium-surface-2);
}

.integrations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 992px) {
  .integrations-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .integrations-grid {
    grid-template-columns: 1fr;
  }
}

.integration-card {
  background: var(--premium-surface);
  border: 1px solid var(--premium-border);
  border-radius: var(--premium-radius);
  padding: 32px;
  text-align: center;
  transition: all 0.3s ease;
}

.integration-card:hover {
  transform: translateY(-4px);
  border-color: var(--premium-accent);
  box-shadow: 0 12px 24px -8px var(--premium-shadow);
}

.integration-icon {
  width: 64px;
  height: 64px;
  background: var(--premium-surface-2);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.integration-icon img,
.integration-icon svg {
  width: 32px;
  height: 32px;
}

.integration-card h4 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--premium-text);
}

.integration-card p {
  font-size: 0.9375rem;
  color: var(--premium-text-secondary);
  line-height: 1.5;
}

.integrations-cta {
  text-align: center;
  margin-top: 60px;
}

.integrations-cta p {
  font-size: 1.125rem;
  color: var(--premium-text-secondary);
  margin-bottom: 20px;
}

/* ===== PRICING PREMIUM ===== */
.pricing-premium {
  padding: 100px 0;
  background: var(--premium-bg);
}

.pricing-cards-premium {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

@media (max-width: 992px) {
  .pricing-cards-premium {
    grid-template-columns: 1fr;
    max-width: 400px;
  }
}

.pricing-card-premium {
  position: relative;
  background: var(--premium-surface);
  border: 1px solid var(--premium-border);
  border-radius: var(--premium-radius-lg);
  padding: 40px 32px;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.pricing-card-premium:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -10px var(--premium-shadow-lg);
}

.pricing-card-premium.featured {
  border-color: var(--premium-accent);
  border-width: 2px;
  transform: scale(1.02);
}

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

.popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 16px;
  background: var(--premium-accent);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 100px;
}

.pricing-card-header {
  text-align: center;
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--premium-border);
}

.pricing-card-header h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--premium-text);
}

.pricing-card-desc {
  font-size: 0.9375rem;
  color: var(--premium-text-muted);
  margin-bottom: 20px;
}

.pricing-amount {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
}

.pricing-currency {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--premium-text);
}

.pricing-value {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--premium-text);
  line-height: 1;
}

.pricing-period {
  font-size: 1rem;
  color: var(--premium-text-muted);
}

.pricing-trial {
  font-size: 0.875rem;
  color: var(--premium-accent);
  font-weight: 500;
  margin-top: 12px;
}

.pricing-features-premium {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
}

.pricing-features-premium li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9375rem;
  color: var(--premium-text-secondary);
  margin-bottom: 12px;
}

.pricing-features-premium li svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.btn-pricing-primary {
  display: block;
  width: 100%;
  padding: 14px 24px;
  background: var(--premium-accent);
  color: white;
  text-align: center;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 10px;
  transition: all 0.2s ease;
}

.btn-pricing-primary:hover {
  background: var(--premium-accent-dark);
}

.btn-pricing-ghost {
  display: block;
  width: 100%;
  padding: 14px 24px;
  background: transparent;
  color: var(--premium-text);
  text-align: center;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 10px;
  border: 1px solid var(--premium-border);
  transition: all 0.2s ease;
}

.btn-pricing-ghost:hover {
  background: var(--premium-surface-2);
  border-color: var(--premium-accent);
}

.pricing-guarantee {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 48px;
  font-size: 0.9375rem;
  color: var(--premium-text-muted);
}

/* ===== FAQ PREMIUM ===== */
.faq-premium {
  padding: 100px 0;
  background: var(--premium-surface);
}

.faq-controls {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 32px;
}

.faq-ctrl-btn {
  padding: 8px 16px;
  background: var(--premium-surface);
  border: 1px solid var(--premium-border);
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--premium-text-secondary);
  cursor: pointer;
  transition: all 0.2s ease;
}

.faq-ctrl-btn:hover {
  background: var(--premium-bg);
  border-color: var(--premium-accent);
  color: var(--premium-accent);
}

.faq-list-premium {
  max-width: 720px;
  margin: 0 auto;
}

.faq-item-premium {
  background: var(--premium-bg);
  border: 1px solid var(--premium-border);
  border-radius: var(--premium-radius);
  margin-bottom: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item-premium.open {
  border-color: var(--premium-accent);
}

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

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

.faq-icon-premium {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq-item-premium.open .faq-icon-premium {
  transform: rotate(45deg);
}

.faq-icon-premium svg {
  width: 14px;
  height: 14px;
}

.faq-answer-premium {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.faq-answer-inner {
  padding: 0 24px 24px;
  font-size: 0.9375rem;
  color: var(--premium-text-secondary);
  line-height: 1.7;
}

/* ===== FINAL CTA ===== */
.final-cta-premium {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  background: var(--premium-text);
}

.final-cta-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.final-cta-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.3;
}

.orb-1 {
  width: 500px;
  height: 500px;
  background: var(--premium-accent);
  top: -150px;
  right: -100px;
  animation: ctaOrbFloat1 15s ease-in-out infinite;
}

.orb-2 {
  width: 400px;
  height: 400px;
  background: var(--premium-accent-light);
  bottom: -100px;
  left: -100px;
  animation: ctaOrbFloat2 18s ease-in-out infinite;
}

@keyframes ctaOrbFloat1 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-50px, 30px); }
}

@keyframes ctaOrbFloat2 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(40px, -20px); }
}

.final-cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.final-cta-tag {
  display: inline-block;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 24px;
}

.final-cta-content h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: white;
  margin-bottom: 20px;
}

.final-cta-sub {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin-bottom: 40px;
}

.final-cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-final-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 32px;
  background: var(--premium-accent);
  color: white;
  text-decoration: none;
  font-size: 1.0625rem;
  font-weight: 600;
  border-radius: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(16, 185, 129, 0.4);
}

.btn-final-cta:hover {
  background: var(--premium-accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(16, 185, 129, 0.5);
}

.landing-root a.btn-final-ghost,
.btn-final-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 32px;
  background: #000 !important;
  color: var(--brand-green) !important;
  -webkit-text-fill-color: var(--brand-green);
  text-decoration: none !important;
  font-size: 1.0625rem;
  font-weight: 600;
  border-radius: 12px;
  border: 1.5px solid var(--brand-green) !important;
  transition: none;
}

.landing-root a.btn-final-ghost:hover,
.landing-root a.btn-final-ghost:focus,
.landing-root a.btn-final-ghost:focus-visible,
.landing-root a.btn-final-ghost:active,
.btn-final-ghost:hover,
.btn-final-ghost:focus,
.btn-final-ghost:focus-visible,
.btn-final-ghost:active {
  background: #000 !important;
  color: var(--brand-green) !important;
  -webkit-text-fill-color: var(--brand-green);
  border-color: var(--brand-green) !important;
  box-shadow: none !important;
  transform: none !important;
  opacity: 1 !important;
}

/* ===== FOOTER PREMIUM ===== */
.footer-premium {
  padding: 80px 0 40px;
  background: var(--premium-surface);
  border-top: 1px solid var(--premium-border);
}

.footer-premium-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
}

@media (max-width: 992px) {
  .footer-premium-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 576px) {
  .footer-premium-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--premium-text);
  text-decoration: none;
  margin-bottom: 16px;
}

.footer-logo-accent {
  color: var(--premium-accent);
}

.footer-tagline {
  font-size: 0.9375rem;
  color: var(--premium-text-secondary);
  margin-bottom: 20px;
}

.footer-powered {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--premium-text-muted);
}

.footer-powered img {
  height: 32px;
  width: auto;
}

.footer-links-col h4 {
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--premium-text);
  margin-bottom: 20px;
}

.footer-links-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links-col li {
  margin-bottom: 12px;
}

.footer-links-col a {
  font-size: 0.9375rem;
  color: var(--premium-text-secondary);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-links-col a:hover {
  color: var(--premium-accent);
}

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

@media (max-width: 576px) {
  .footer-bottom-premium {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--premium-surface-2);
  border-radius: 10px;
  color: var(--premium-text-secondary);
  transition: all 0.2s ease;
}

.footer-social a:hover {
  background: var(--premium-accent);
  color: white;
}

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

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== CUSTOM CURSOR ===== */
.custom-cursor {
  width: 20px;
  height: 20px;
  border: 2px solid var(--premium-accent);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  transition: transform 0.1s ease, opacity 0.3s ease;
  opacity: 0;
}

.cursor-trail {
  width: 8px;
  height: 8px;
  background: var(--premium-accent);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9998;
  opacity: 0;
  filter: blur(2px);
}

@media (pointer: fine) {
  .custom-cursor,
  .cursor-trail {
    opacity: 0.6;
  }
  
  .landing-premium {
    cursor: none;
  }
  
  .landing-premium a,
  .landing-premium button {
    cursor: none;
  }
  
  .landing-premium a:hover ~ .custom-cursor,
  .landing-premium button:hover ~ .custom-cursor {
    transform: scale(1.5);
  }

  body.page-public-landing .topbar-modern a,
  body.page-public-landing .topbar-modern button {
    cursor: pointer;
  }

  body.page-public-landing .faq-premium,
  body.page-public-landing .faq-premium * {
    cursor: auto;
  }

  body.page-public-landing .faq-premium a,
  body.page-public-landing .faq-premium button {
    cursor: pointer;
  }

  body.page-public-landing .footer-premium,
  body.page-public-landing .footer-premium * {
    cursor: auto;
  }

  body.page-public-landing .footer-premium a,
  body.page-public-landing .footer-premium button {
    cursor: pointer;
  }
}

/* ===== RESPONSIVE PREMIUM ===== */
@media (max-width: 1024px) {
  .hero-premium-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
  
  .hero-premium-left {
    order: 2;
  }
  
  .hero-premium-right {
    order: 1;
  }
  
  .hero-sub-premium {
    max-width: 100%;
  }
  
  .hero-actions-premium {
    justify-content: center;
  }
  
  .hero-stats {
    justify-content: center;
  }
  
  .hero-dashboard-premium {
    max-width: 500px;
  }
  
  .hero-portrait-premium {
    max-width: 240px;
  }
  
  .hero-orb {
    width: 400px;
    height: 400px;
    right: -150px;
  }
  
  .features-masonry {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .pricing-cards-premium {
    grid-template-columns: 1fr;
    max-width: 400px;
  }
  
  .pricing-card-premium.featured {
    transform: none;
  }
  
  .pricing-card-premium.featured:hover {
    transform: translateY(-4px);
  }
  
  .footer-premium-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-premium {
    height: 60px;
  }
  
  .nav-premium-inner {
    height: 60px;
    padding: 0 16px;
  }
  
  .nav-premium-logo {
    font-size: 1.125rem;
  }
  
  .nav-premium-links {
    display: none;
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.98);
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 40px 24px;
    gap: 24px;
    z-index: 998;
  }
  
  .nav-premium-links.active {
    display: flex;
  }
  
  .nav-premium-links li {
    width: 100%;
    text-align: center;
  }
  
  .nav-link {
    font-size: 1.25rem;
    padding: 12px;
    display: block;
  }
  
  .nav-premium-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px 24px;
    background: white;
    border-top: 1px solid var(--premium-border);
    flex-direction: column;
    gap: 12px;
    z-index: 999;
  }
  
  .nav-premium-cta.active {
    display: flex;
  }
  
  .btn-nav-ghost,
  .btn-nav-primary {
    width: 100%;
    justify-content: center;
  }
  
  .nav-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: var(--premium-surface);
    border: 1px solid var(--premium-border);
    border-radius: 10px;
    cursor: pointer;
    z-index: 1000;
  }
  
  .nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--premium-text);
    position: relative;
    transition: background 0.2s ease;
  }
  
  .nav-toggle span::before,
  .nav-toggle span::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background: var(--premium-text);
    transition: transform 0.3s ease;
  }
  
  .nav-toggle span::before { top: -6px; }
  .nav-toggle span::after { top: 6px; }
  
  .nav-toggle.active span { background: transparent; }
  .nav-toggle.active span::before { transform: rotate(45deg); top: 0; }
  .nav-toggle.active span::after { transform: rotate(-45deg); top: 0; }
  
  .hero-premium {
    padding-top: 80px;
    padding-bottom: 60px;
  }
  
  .hero-premium-content {
    padding: 0 16px;
    gap: 24px;
  }
  
  .hero-title-premium {
    font-size: clamp(1.75rem, 8vw, 2.5rem);
  }
  
  .hero-typewriter {
    font-size: 1rem;
  }
  
  .hero-sub-premium {
    font-size: 1rem;
  }
  
  .hero-orb {
    width: 250px;
    height: 250px;
    right: -100px;
    top: 5%;
  }
  
  .hero-badge-premium {
    font-size: 0.75rem;
    padding: 6px 12px;
  }
  
  .hero-actions-premium {
    flex-direction: column;
    gap: 12px;
  }
  
  .btn-premium-primary,
  .btn-premium-ghost {
    width: 100%;
    justify-content: center;
    padding: 14px 20px;
    font-size: 0.9375rem;
  }
  
  .hero-stats {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
  }
  
  .stat-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .stat-divider {
    display: none;
  }
  
  .stat-number {
    font-size: 1.5rem;
  }
  
  .stat-label {
    font-size: 0.75rem;
    margin-left: 0;
  }
  
  .integrations-ticker {
    position: relative;
    bottom: auto;
    margin-top: 40px;
    padding: 0 16px;
  }
  
  .ticker-label {
    font-size: 0.75rem;
    text-align: center;
  }
  
  .ticker-track {
    max-width: 100%;
  }
  
  .ticker-content {
    gap: 24px;
  }
  
  .ticker-item {
    font-size: 0.8125rem;
  }
  
  .ticker-item img,
  .ticker-item svg {
    width: 24px;
    height: 24px;
  }
  
  .features-premium,
  .app-section-premium,
  .integrations-premium,
  .pricing-premium,
  .faq-premium {
    padding: 60px 0;
  }
  
  .container-premium {
    padding: 0 16px;
  }
  
  .section-header-premium {
    margin-bottom: 40px;
  }
  
  .section-title-premium {
    font-size: clamp(1.5rem, 6vw, 2rem);
  }
  
  .features-masonry {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .feature-card-premium {
    padding: 24px;
  }
  
  .feature-icon-wrap {
    width: 48px;
    height: 48px;
  }
  
  .feature-card-premium h3 {
    font-size: 1.125rem;
  }
  
  .integrations-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .integration-card {
    padding: 24px;
  }
  
  .app-layout {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
  
  .phone-mockup {
    transform: scale(0.85);
  }
  
  .pricing-cards-premium {
    grid-template-columns: 1fr;
    max-width: 100%;
    gap: 16px;
  }
  
  .pricing-card-premium {
    padding: 28px 20px;
  }
  
  .pricing-card-premium.featured {
    transform: none;
    order: -1;
  }
  
  .pricing-value {
    font-size: 2.5rem;
  }
  
  .faq-controls {
    flex-direction: row;
    gap: 8px;
  }
  
  .faq-ctrl-btn {
    padding: 6px 12px;
    font-size: 0.8125rem;
  }
  
  .faq-item-premium {
    margin-bottom: 8px;
  }
  
  .faq-question-premium {
    padding: 16px;
    font-size: 0.9375rem;
  }
  
  .faq-answer-inner {
    padding: 0 16px 16px;
    font-size: 0.875rem;
  }
  
  .final-cta-premium {
    padding: 80px 0;
  }
  
  .final-cta-content h2 {
    font-size: clamp(1.5rem, 6vw, 2rem);
  }
  
  .final-cta-sub {
    font-size: 1rem;
  }
  
  .final-cta-actions {
    flex-direction: column;
    gap: 12px;
  }
  
  .btn-final-cta,
  .btn-final-ghost {
    width: 100%;
    justify-content: center;
    padding: 14px 20px;
    font-size: 0.9375rem;
  }
  
  .footer-premium {
    padding: 60px 0 100px;
  }
  
  .footer-premium-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px 24px;
    margin-bottom: 40px;
  }
  
  .footer-brand-col {
    grid-column: 1 / -1;
    text-align: center;
  }
  
  .footer-logo {
    justify-content: center;
    font-size: 1.25rem;
  }
  
  .footer-tagline {
    font-size: 0.875rem;
  }
  
  .footer-powered {
    justify-content: center;
  }
  
  .footer-links-col h4 {
    font-size: 0.8125rem;
  }
  
  .footer-links-col a {
    font-size: 0.875rem;
  }
  
  .footer-bottom-premium {
    flex-direction: column;
    gap: 20px;
    text-align: center;
    padding-bottom: 20px;
  }
  
  .custom-cursor,
  .cursor-trail {
    display: none;
  }
  
  .landing-premium {
    cursor: auto;
  }
  
  .landing-premium a,
  .landing-premium button {
    cursor: pointer;
  }
}

@media (max-width: 480px) {
  .hero-title-premium {
    font-size: 1.5rem;
  }
  
  .word-reveal {
    display: inline;
  }
  
  .hero-typewriter {
    min-height: auto;
    margin-bottom: 12px;
  }
  
  .typewriter-prefix {
    display: block;
    margin-bottom: 4px;
  }
  
  .hero-stats {
    gap: 12px;
  }
  
  .stat-item {
    padding: 0 8px;
  }
  
  .dashboard-glow-frame {
    border-radius: 16px;
  }
  
  .phone-mockup {
    transform: scale(0.75);
  }
  
  .pricing-features-premium li {
    font-size: 0.875rem;
  }
  
  .footer-premium-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .footer-links-col ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
  }
  
  .footer-links-col li {
    margin: 0;
  }
}

/* ============================================================
   HERO FULL — full-viewport dark cinematic hero (100vh)
   ============================================================ */

/* ---- hero-full: root ---- */
.hero-full {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
  background: #000;
  display: flex;
  flex-direction: column;
}

/* ---- Background image ---- */
.hero-full-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 20%;
  transform: scale(1.04);
  animation: hfSlowZoom 18s ease-out forwards;
}

@keyframes hfSlowZoom {
  from { transform: scale(1.04); }
  to   { transform: scale(1.0); }
}

/* ---- Vignette overlay ---- */
.hero-full-vignette {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 50% 40%, transparent 30%, rgba(0,0,0,0.7) 100%),
    linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, transparent 30%, transparent 60%, rgba(0,0,0,0.95) 100%),
    linear-gradient(to right, rgba(0,0,0,0.75) 0%, transparent 40%, transparent 60%, rgba(0,0,0,0.75) 100%);
  pointer-events: none;
}

/* ---- Top green aura ---- */
.hero-full-aura {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 60%;
  background: radial-gradient(ellipse 50% 60% at 50% 0%, rgba(var(--brand-green-rgb), 0.06) 0%, transparent 70%);
  pointer-events: none;
}

/* ---- 3-column stage ---- */
.hero-full-stage {
  position: relative;
  z-index: 2;
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  padding: var(--landing-nav-height, 72px) clamp(24px, 5vw, 64px) 0;
}

/* ---- Left column ---- */
.hero-full-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
  opacity: 0;
  animation: hfFadeUp 1s 0.6s ease forwards;
}

.hf-eyebrow {
  font-family: 'Syne', 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brand-green);
  display: flex;
  align-items: center;
  gap: 8px;
}

.hf-eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--brand-green);
  flex-shrink: 0;
}

.hf-carla-name {
  font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  font-size: clamp(5rem, 9vw, 9rem);
  font-weight: 300;
  line-height: 0.88;
  letter-spacing: -0.02em;
  color: #f0f8f2;
}

.hf-subtitle {
  font-family: 'Syne', 'Inter', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(240, 248, 242, 0.5);
  font-weight: 500;
}

.hf-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 12px;
}

.btn-hf-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--brand-green);
  color: #000;
  font-family: 'Syne', 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  padding: 14px 24px;
  border-radius: 6px;
  width: fit-content;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}

.btn-hf-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.3) 50%, transparent 60%);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.btn-hf-primary:hover::before { transform: translateX(100%); }
.btn-hf-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(var(--brand-green-rgb), 0.35);
}

.landing-root a.btn-hf-secondary,
.btn-hf-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  background: #000 !important;
  color: var(--brand-green) !important;
  -webkit-text-fill-color: var(--brand-green);
  border: 1.5px solid var(--brand-green) !important;
  border-radius: 6px;
  font-family: 'Syne', 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none !important;
  width: fit-content;
  transition: none;
}

.landing-root a.btn-hf-secondary svg,
.btn-hf-secondary svg {
  color: var(--brand-green) !important;
  flex-shrink: 0;
  transition: none;
}

.landing-root a.btn-hf-secondary:hover,
.landing-root a.btn-hf-secondary:focus,
.landing-root a.btn-hf-secondary:focus-visible,
.landing-root a.btn-hf-secondary:active,
.btn-hf-secondary:hover,
.btn-hf-secondary:focus,
.btn-hf-secondary:focus-visible,
.btn-hf-secondary:active {
  background: #000 !important;
  color: var(--brand-green) !important;
  -webkit-text-fill-color: var(--brand-green);
  border-color: var(--brand-green) !important;
  box-shadow: none !important;
  transform: none !important;
  opacity: 1 !important;
}

.landing-root a.btn-hf-secondary:hover svg,
.landing-root a.btn-hf-secondary:focus svg,
.landing-root a.btn-hf-secondary:active svg,
.btn-hf-secondary:hover svg,
.btn-hf-secondary:focus svg,
.btn-hf-secondary:active svg {
  color: var(--brand-green) !important;
}

/* ---- Center column (decorative) ---- */
.hero-full-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.hf-divider {
  width: 1px;
  height: clamp(120px, 20vh, 200px);
  background: linear-gradient(to bottom, transparent, rgba(var(--brand-green-rgb), 0.3), transparent);
  animation: hfPulseBar 3s ease-in-out infinite;
}

@keyframes hfPulseBar {
  0%, 100% { opacity: 0.4; }
  50%       { opacity: 1; }
}

/* ---- Right column ---- */
.hero-full-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 24px;
  opacity: 0;
  animation: hfFadeUp 1s 0.9s ease forwards;
}

.hf-tagline-static {
  font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  font-size: clamp(0.9rem, 1.4vw, 1.2rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.5;
  color: rgba(240, 248, 242, 0.5);
  text-align: right;
  max-width: 280px;
}

.hf-rotating-wrap { text-align: right; }

.hf-rotating-prefix {
  font-family: 'Syne', 'Inter', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(var(--brand-green-rgb), 0.6);
  display: block;
  margin-bottom: 6px;
}

.hf-rotating-text {
  font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  font-size: clamp(1.4rem, 2.2vw, 2rem);
  font-weight: 400;
  color: var(--brand-green);
  display: block;
  min-height: 1.3em;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.hf-rotating-text.fade {
  opacity: 0;
  transform: translateY(8px);
}

/* ---- Scroll cue ---- */
.hf-scroll-cue {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding-bottom: 32px;
  opacity: 0;
  animation: hfFadeUp 1s 1.4s ease forwards;
  text-decoration: none;
}

.hf-scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(var(--brand-green-rgb), 0.5), transparent);
  animation: hfScrollPulse 2s ease-in-out infinite;
}

@keyframes hfScrollPulse {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

.hf-scroll-label {
  font-family: 'Syne', 'Inter', sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(240, 248, 242, 0.35);
}

/* ---- Cursor glow ---- */
.hf-cursor-glow {
  position: fixed;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--brand-green-rgb), 0.07) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  transform: translate(-50%, -50%);
  transition: left 0.12s ease, top 0.12s ease;
}

/* ---- Ticker strip: caption left, integrations scroll right (full width) ---- */
.hero-ticker-strip-v2 {
  position: relative;
  z-index: 3;
  width: 100%;
  background: #fff;
  border-bottom: 1px solid var(--premium-border, #e5e7eb);
  padding: 0;
  overflow: hidden;
}

.ticker-v2-inner {
  display: flex;
  align-items: stretch;
  width: 100%;
  min-height: 58px;
}

.ticker-v2-label {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  padding: 0 clamp(16px, 4vw, 48px);
  font-family: 'Syne', 'Inter', sans-serif;
  font-size: clamp(0.65rem, 1.8vw, 0.75rem);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #444;
  white-space: nowrap;
  border-right: 1px solid #ddd;
  margin-right: 0;
}

.ticker-v2-track {
  overflow: hidden;
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  padding: 14px 0;
  mask-image: linear-gradient(to right, transparent, black 3%, black 97%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 3%, black 97%, transparent);
}

.ticker-v2-content {
  display: flex;
  align-items: center;
  gap: clamp(32px, 5vw, 56px);
  width: max-content;
  animation: tickerScrollV2 28s linear infinite;
}

@keyframes tickerScrollV2 {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.ticker-v2-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Syne', 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: #111;
  white-space: nowrap;
}

.ticker-v2-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--brand-green);
  flex-shrink: 0;
}

/* ---- Keyframes shared ---- */
@keyframes hfFadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ---- Responsive ---- */
@media (max-width: 768px) {
  .hero-full-stage {
    grid-template-columns: 1fr;
    align-items: flex-end;
    padding-bottom: 40px;
  }

  .hero-full-center,
  .hero-full-right {
    display: none;
  }

  .hf-carla-name {
    font-size: clamp(4rem, 18vw, 6rem);
  }

  .hf-cursor-glow { display: none; }

  .ticker-v2-inner {
    flex-direction: row;
    min-height: 52px;
  }

  .ticker-v2-label {
    padding: 0 14px;
    font-size: 0.6rem;
    letter-spacing: 0.08em;
  }

  .ticker-v2-content {
    gap: 28px;
  }
}

/* ---- Reduced motion ---- */
@media (prefers-reduced-motion: reduce) {
  .hero-full-bg,
  .hf-divider,
  .hf-scroll-line,
  .hero-full-left,
  .hero-full-right,
  .hf-scroll-cue {
    animation: none !important;
    opacity: 1 !important;
  }
}

/* Dark nav override: transparent until scrolled */
body.page-public-landing .nav-premium:not(.scrolled) {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom-color: transparent;
  box-shadow: none;
}

body.page-public-landing .nav-premium:not(.scrolled) .nav-logo-text {
  color: rgba(255, 255, 255, 0.9);
}

body.page-public-landing .nav-premium:not(.scrolled) .nav-logo-accent {
  color: var(--brand-green);
}

/* Desktop/tablet bar: light links on dark hero */
body.page-public-landing .nav-premium:not(.scrolled) .nav-premium-links:not(.active) .nav-link {
  color: rgba(255, 255, 255, 0.88);
}

body.page-public-landing .nav-premium:not(.scrolled) .nav-premium-links:not(.active) .nav-link:hover {
  color: #fff;
}

body.page-public-landing .nav-premium:not(.scrolled) .nav-link::after {
  background: var(--brand-green);
}

/* Mobile drawer open: dark links on white panel */
body.page-public-landing .nav-premium:not(.scrolled) .nav-premium-links.active .nav-link {
  color: var(--premium-text-secondary);
}

body.page-public-landing .nav-premium:not(.scrolled) .nav-premium-links.active .nav-link:hover {
  color: var(--premium-text);
}

/* Dark hero nav — PWA / landing (readable on black; fixes white-on-white header buttons) */
body.page-public-landing .nav-premium:not(.scrolled) .btn-nav-ghost {
  color: #fff;
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.45);
}

body.page-public-landing .nav-premium:not(.scrolled) .btn-nav-ghost:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.65);
}

body.page-public-landing .nav-premium:not(.scrolled) .btn-nav-primary {
  color: #fff;
  background: var(--brand-green);
  border: 1px solid transparent;
}

body.page-public-landing .nav-premium:not(.scrolled) .btn-nav-primary:hover {
  color: #fff;
  background: var(--brand-green-hover, #059669);
}

body.page-public-landing .nav-premium:not(.scrolled) .nav-toggle {
  background: rgba(0, 0, 0, 0.25);
  border-color: rgba(255, 255, 255, 0.4);
}

body.page-public-landing .nav-premium:not(.scrolled) .nav-toggle:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.55);
}

body.page-public-landing .nav-premium:not(.scrolled) .nav-toggle span,
body.page-public-landing .nav-premium:not(.scrolled) .nav-toggle span::before,
body.page-public-landing .nav-premium:not(.scrolled) .nav-toggle span::after {
  background: rgba(255, 255, 255, 0.92);
}

/* Desktop: section links in header + hero layout */
@media (min-width: 992px) {
  .nav-toggle {
    display: none !important;
  }

  .nav-premium-links {
    display: flex !important;
    flex: 1 1 auto;
    justify-content: center;
    min-width: 0;
    gap: clamp(16px, 2vw, 32px);
  }

  .nav-premium-inner {
    gap: clamp(12px, 2vw, 24px);
  }

  .hero-cin-stage {
    justify-content: center;
    max-width: min(1280px, 94vw);
    margin: 0 auto;
    gap: clamp(24px, 3.5vw, 52px);
  }

  .hero-cin-left {
    flex: 0 1 380px;
    transform: translateX(5%);
  }

  .hero-cin-center {
    flex: 0 0 clamp(160px, 16vw, 260px);
  }

  .hero-cin-right {
    flex: 0 1 320px;
    transform: translateX(-5%);
  }
}

/* Silhouette bg — constrained and centered so figure isn't cropped */
.hero-cin-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(620px, 58vw);
  height: 90%;
  background-image: var(--hero-bg);
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0.92;
  z-index: 0;
}

/* Lateral gradient overlay */
.hero-cin-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.72) 0%,
    rgba(0, 0, 0, 0.25) 22%,
    rgba(0, 0, 0, 0.25) 78%,
    rgba(0, 0, 0, 0.72) 100%
  );
  z-index: 1;
}

/* Stage — full-width flex, text spread toward edges */
.hero-cin-stage {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: none;
  padding: 0 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: clamp(24px, 4vw, 64px);
}

/* Left column */
.hero-cin-left {
  flex: 1;
  max-width: 420px;
  align-self: center;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  position: relative;
  z-index: 2;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.45);
}

.carla-label {
  font-family: 'Nunito', 'Inter', sans-serif;
  font-size: clamp(2.75rem, 6vw, 5rem);
  font-weight: 900;
  color: var(--brand-green);
  line-height: 1;
  letter-spacing: -2px;
  animation: cinFadeSlideLeft 0.9s ease forwards;
  opacity: 0;
}

.carla-sub {
  font-family: 'Inter', sans-serif;
  font-size: 0.8125rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 4px;
  text-transform: uppercase;
  animation: cinFadeSlideLeft 0.9s 0.3s ease forwards;
  opacity: 0;
}

.hero-cin-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 8px;
  width: 100%;
  animation: cinFadeSlideLeft 0.9s 0.55s ease forwards;
  opacity: 0;
}

.hero-cin-actions .btn-premium-primary {
  padding: 13px 20px;
  font-size: 0.9rem;
  justify-content: center;
}

/* Ghost button inverted for dark background */
.landing-root a.btn-cin-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 18px;
  background: transparent;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  transition: all 0.25s ease;
}

.landing-root a.btn-cin-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--brand-green);
  color: #fff;
}

/* Center column — accent decoration aligned to figure */
.hero-cin-center {
  position: relative;
  flex: 0 0 clamp(200px, 22vw, 340px);
  height: 100%;
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-cin-divider {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1px;
  height: 80px;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(var(--brand-green-rgb), 0.5),
    transparent
  );
  animation: cinFadeIn 1.4s 1s ease forwards;
  opacity: 0;
}

.hero-cin-dot {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand-green);
  animation: cinPulse 2s 1s ease-in-out infinite, cinFadeIn 0.8s 1s ease forwards;
  opacity: 0;
}

/* Right column */
.hero-cin-right {
  flex: 1;
  max-width: 320px;
  align-self: center;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  position: relative;
  z-index: 2;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.45);
}

.hero-cin-tagline-static {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 3px;
  text-transform: uppercase;
  text-align: right;
  max-width: 280px;
  animation: cinFadeSlideRight 0.9s 0.5s ease forwards;
  opacity: 0;
}

.hero-cin-tagline-rotating {
  font-family: 'Inter', sans-serif;
  font-size: 1.1875rem;
  font-weight: 300;
  color: #fff;
  text-align: right;
  max-width: 280px;
  line-height: 1.4;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.6);
  animation: cinFadeSlideRight 0.9s 0.7s ease forwards;
  opacity: 0;
}

.rotating-text {
  display: inline-block;
}

.rotating-text.fade-out {
  animation: rotTextOut 0.35s ease forwards;
}

.rotating-text.fade-in {
  animation: rotTextIn 0.35s ease forwards;
}

/* Scroll hint */
.hero-cin-scroll {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  animation: cinFadeIn 1s 1.5s ease forwards;
  opacity: 0;
  text-decoration: none;
}

.hero-cin-scroll-line {
  width: 1px;
  height: 28px;
  background: linear-gradient(to bottom, rgba(var(--brand-green-rgb), 0.8), transparent);
  animation: cinScrollPulse 1.5s ease-in-out infinite;
}

.hero-cin-scroll-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.5625rem;
  color: rgba(255, 255, 255, 0.28);
  letter-spacing: 3px;
  text-transform: uppercase;
}

/* Ticker strip below hero */
.hero-ticker-strip {
  position: relative;
  z-index: 3;
  background: #fff;
  border-bottom: 1px solid var(--premium-border, #e5e7eb);
}

.hero-ticker-strip .integrations-ticker {
  position: relative;
  bottom: auto;
  left: auto;
  right: auto;
  width: 100%;
  padding: 20px 2.5rem;
  background: transparent;
  border: none;
}

/* ΓöÇΓöÇ Keyframes ΓöÇΓöÇ */
@keyframes cinFadeSlideLeft {
  from { opacity: 0; transform: translateX(-28px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes cinFadeSlideRight {
  from { opacity: 0; transform: translateX(28px); }
  to   { opacity: 1; transform: translateX(0); }
}

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

@keyframes cinPulse {
  0%, 100% { box-shadow: 0 0 8px var(--brand-green); }
  50%       { box-shadow: 0 0 20px var(--brand-green); }
}

@keyframes cinScrollPulse {
  0%, 100% { opacity: 0.4; }
  50%       { opacity: 1; }
}

@keyframes rotTextOut {
  from { opacity: 1; transform: translateY(0); }
  to   { opacity: 0; transform: translateY(-10px); }
}

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

/* ΓöÇΓöÇ Responsive ΓöÇΓöÇ */
@media (max-width: 900px) {
  .hero-cinematic {
    min-height: clamp(480px, 75vh, 580px);
    padding: 90px 16px 60px;
  }

  .hero-cin-bg {
    width: 100%;
    height: 100%;
    background-size: auto 55%;
    background-position: center center;
    top: 0;
    left: 0;
    transform: none;
  }

  .hero-cin-overlay {
    background: rgba(0, 0, 0, 0.70);
  }

  .hero-cin-stage {
    flex-direction: column;
    padding: 0 1.25rem;
    gap: 16px;
    text-align: center;
  }

  .hero-cin-left {
    flex: none;
    max-width: 100%;
    align-items: center;
    order: 1;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
    transform: translateY(12px);
  }

  .hero-cin-center {
    display: none;
  }

  .hero-cin-right {
    flex: none;
    max-width: 100%;
    align-items: center;
    order: 2;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
    margin-top: -6px;
  }

  .hero-cin-tagline-static {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.6);
    max-width: 100%;
  }

  .hero-cin-tagline-rotating {
    font-size: 1.125rem;
    max-width: 100%;
  }

  .hero-cin-tagline-rotating,
  .hero-cin-tagline-static {
    text-align: center;
    justify-content: center;
  }

  .hero-ticker-strip .integrations-ticker {
    padding: 16px 1.25rem;
  }

  .carla-label {
    letter-spacing: -1px;
  }

  .hero-cin-actions {
    align-items: center;
  }

  .hero-cin-actions .btn-premium-primary,
  .hero-cin-actions .btn-cin-ghost {
    min-width: 220px;
  }
}

@media (max-width: 480px) {
  .hero-cin-actions .btn-premium-primary,
  .hero-cin-actions .btn-cin-ghost {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .landing-premium *,
  .landing-premium *::before,
  .landing-premium *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  
  .reveal {
    opacity: 1;
    transform: none;
  }
  
  .word-reveal {
    opacity: 1;
    transform: none;
  }
  
  .ticker-content {
    animation: none;
  }
  
  .phone-mockup {
    animation: none;
  }
  
  .phone-shadow {
    animation: none;
  }
  
  .hero-orb {
    animation: none;
  }

  .hero-cin-tagline-rotating,
  .hero-cin-tagline-static,
  .hero-cin-scroll,
  .carla-label,
  .carla-sub,
  .hero-cin-actions,
  .hero-cin-divider,
  .hero-cin-dot {
    animation: none;
    opacity: 1;
  }

  .landing-scroll-progress {
    display: none;
  }
}

/* ============================================================
   TOPBAR-MODERN OVERRIDES — public landing page
   Fixed over the full-viewport dark hero; transparent → white on scroll
   ============================================================ */

/* 3-column full-width layout: logo | links (center) | actions */
body.page-public-landing .topbar-modern {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 clamp(24px, 5vw, 64px);
  background: transparent;
  border-bottom-color: transparent;
  box-shadow: none;
  transition: background 0.4s ease,
              box-shadow 0.3s ease,
              border-bottom-color 0.3s ease;
}

body.page-public-landing .topbar-brand { justify-self: start; }

body.page-public-landing .landing-nav-links {
  justify-self: center;
  display: flex;
  gap: clamp(20px, 3vw, 36px);
  /* Optical center: logo/actions are asymmetric vs pure grid center */
  transform: translateX(-2cm);
}

body.page-public-landing .topbar-actions {
  justify-self: end;
}

/* Fixed social column — bottom right, PWA only */
.landing-pwa-social-fixed {
  position: fixed;
  right: clamp(14px, 4vw, 22px);
  bottom: calc(18px + env(safe-area-inset-bottom, 0px));
  z-index: 1001;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  pointer-events: auto;
}

.landing-pwa-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(115, 115, 115, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
  transition: background 0.2s ease, transform 0.2s ease;
}

.landing-pwa-social-link:hover {
  background: rgba(90, 90, 90, 0.95);
  color: #fff;
  transform: translateY(-1px);
}

.landing-pwa-social-link i {
  display: block;
  font-size: 1.05rem;
  line-height: 1;
  margin: 0;
  padding: 0;
  text-align: center;
}

/* On mobile / PWA: logo | Accedi (center) | Prenota */
@media (max-width: 991.98px) {
  body.page-public-landing {
    --landing-nav-height: 72px;
  }

  body.page-public-landing .topbar-modern {
    display: grid !important;
    grid-template-columns: auto 1fr;
    align-items: start;
    gap: 0 10px;
    height: auto !important;
    min-height: var(--topbar-height, 70px);
    padding: max(10px, env(safe-area-inset-top, 0px)) clamp(12px, 4vw, 20px) 12px !important;
  }

  body.page-public-landing .topbar-brand {
    align-self: start;
    display: flex;
    align-items: center;
    min-height: 34px;
    padding-top: 0;
  }

  body.page-public-landing .topbar-brand .navbar-brand {
    display: inline-flex;
    align-items: center;
    line-height: 1;
  }

  body.page-public-landing .landing-nav-links {
    display: none !important;
  }

  body.page-public-landing .topbar-actions {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: start;
    gap: 8px 10px;
    min-width: 0;
    width: 100%;
  }

  body.page-public-landing .topbar-actions > .btn-outline-secondary {
    justify-self: center;
    align-self: start;
    margin-top: 0;
    min-height: 34px;
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
  }

  body.page-public-landing .topbar-landing-cta-stack {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    grid-column: 2;
    grid-row: 1;
  }

  body.page-public-landing .topbar-landing-cta-stack .btn-emerald {
    margin-left: 0 !important;
    white-space: nowrap;
    border-radius: 999px;
    padding: 0.45rem 1rem;
    font-weight: 600;
    min-height: 34px;
    display: inline-flex;
    align-items: center;
  }
}

@media (max-width: 576px) {
  body.page-public-landing .topbar-modern {
    height: auto !important;
    min-height: var(--topbar-height, 60px);
  }
}

body.page-public-landing .topbar-modern.scrolled {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: var(--sidebar-border, #e5e7eb);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

/* Brand name: white over dark hero */
body.page-public-landing .topbar-modern:not(.scrolled) .brand-carla,
body.page-public-landing .topbar-modern:not(.scrolled) .brand-ai {
  color: #fff !important;
}

/* Nav link base style */
.landing-nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.2s ease;
}

/* Over dark hero */
body.page-public-landing .topbar-modern:not(.scrolled) .landing-nav-link {
  color: rgba(255, 255, 255, 0.85) !important;
}

body.page-public-landing .topbar-modern:not(.scrolled) .landing-nav-link:hover {
  color: #fff !important;
}

/* Over white scrolled bar */
body.page-public-landing .topbar-modern.scrolled .landing-nav-link {
  color: var(--premium-text-secondary, #525252) !important;
}

body.page-public-landing .topbar-modern.scrolled .landing-nav-link:hover {
  color: var(--premium-text, #1a1a1a) !important;
}

/* Accedi button over dark hero */
body.page-public-landing .topbar-modern:not(.scrolled) .btn-outline-secondary {
  color: rgba(255, 255, 255, 0.9) !important;
  border-color: rgba(255, 255, 255, 0.45) !important;
  background: transparent !important;
}

body.page-public-landing .topbar-modern:not(.scrolled) .btn-outline-secondary:hover {
  color: #fff !important;
  border-color: rgba(255, 255, 255, 0.7) !important;
  background: rgba(255, 255, 255, 0.1) !important;
}

/* Social icons over dark hero */
body.page-public-landing .topbar-modern:not(.scrolled) .topbar-social-link {
  color: rgba(255, 255, 255, 0.85) !important;
  background: rgba(255, 255, 255, 0.08) !important;
  border-color: rgba(255, 255, 255, 0.25) !important;
}

body.page-public-landing .topbar-modern:not(.scrolled) .topbar-social-link:hover {
  color: #fff !important;
  background: rgba(255, 255, 255, 0.15) !important;
  border-color: rgba(255, 255, 255, 0.45) !important;
}

/* Prenota Call CTA — keep green on both states */
body.page-public-landing .topbar-modern:not(.scrolled) .btn-emerald {
  background: var(--brand-green) !important;
  color: #fff !important;
  border-color: transparent !important;
}

/* ============================================================
   HERO-FULL STAGE — narrower center column + text closer to figure
   + larger type
   ============================================================ */

body.page-public-landing .hero-full-stage {
  grid-template-columns: 1fr 0.4fr 1fr;
  padding-top: var(--landing-nav-height, 124px);
}

body.page-public-landing .hero-full-left {
  transform: translateX(10%);
}

body.page-public-landing .hero-full-right {
  transform: translateX(-10%);
}

body.page-public-landing .hf-carla-name {
  font-size: clamp(5.5rem, 11vw, 12rem);
}

body.page-public-landing .hf-tagline-static {
  font-size: clamp(1rem, 1.6vw, 1.3rem);
  max-width: 320px;
}

body.page-public-landing .hf-rotating-text {
  font-size: clamp(1.6rem, 2.8vw, 2.6rem);
}

body.page-public-landing .hf-eyebrow {
  font-size: 0.8rem;
}

@media (max-width: 768px) {
  body.page-public-landing .hero-full-left,
  body.page-public-landing .hero-full-right {
    transform: none;
  }
}
