

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

:root {
    /* Ember & Stone Palette — warm neutrals, one accent spent sparingly */
    --bg:           #F2F0E9;
    --surface:      #FFFFFF;
    --text:         #17140F;
    --text-muted:   #5E5848;
    --text-dim:     #98917F;
    --accent:       #C9701A;
    --accent-hover: #A85C12;
    --border:       #E4DFD1;
    --border-light: #EEEAE0;
    --white:        #FFFFFF;

    /* Type */
    --font-display: 'Bricolage Grotesque', 'Inter', sans-serif;
    --font-body:    'Inter', -apple-system, BlinkMacSystemFont, 'SF Pro Text', sans-serif;
    --font-mono:    'IBM Plex Mono', 'SF Mono', monospace;

    /* Elevation */
    --shadow-sm: 0 1px 2px rgba(23,20,15,0.05), 0 1px 1px rgba(23,20,15,0.04);
    --shadow-md: 0 1px 2px rgba(23,20,15,0.04), 0 14px 32px -16px rgba(23,20,15,0.20);
    --shadow-lg: 0 2px 4px rgba(23,20,15,0.05), 0 28px 56px -20px rgba(23,20,15,0.28);

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    letter-spacing: -0.02em;
    overflow-x: hidden;
}

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

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

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

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

.card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

/* ===== Button System — quiet by default, ember spark on interaction ===== */
.btn-acid {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    background: var(--text);
    color: var(--bg);
    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 var(--accent);
}

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

.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(--accent);
    border-color: var(--text);
}

/* ===== NAVIGATION ===== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(242, 240, 233, 0.82);
    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-family: var(--font-display);
    font-size: 19px;
    font-weight: 700;
    letter-spacing: -0.03em;
    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: 96px;
    position: relative;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 56px;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-family: var(--font-mono);
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: var(--text-muted);
    margin-bottom: 22px;
}

.hero-eyebrow-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--accent);
    animation: pulse-dot 2s ease-in-out infinite;
}

.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(38px, 4.6vw, 64px);
    font-weight: 700;
    line-height: 1.06;
    letter-spacing: -0.03em;
    margin-bottom: 22px;
    text-wrap: balance;
}

.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.6vw, 18px);
    color: var(--text-muted);
    max-width: 480px;
    margin: 0 0 36px;
    line-height: 1.6;
    font-weight: 400;
}

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

/* ===== Hero service stack — a preview of the three cards below ===== */
.hero-stack {
    position: relative;
    width: 100%;
    max-width: 420px;
    aspect-ratio: 1;
    margin-left: auto;
}

.hero-stack-glow {
    position: absolute;
    top: 20%;
    left: 15%;
    width: 55%;
    height: 55%;
    background: var(--accent);
    opacity: 0.16;
    filter: blur(70px);
    border-radius: 50%;
}

.hero-stack-card {
    position: absolute;
    width: 68%;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 14px;
    box-shadow: var(--shadow-lg);
    padding: 14px 16px;
    opacity: 0;
    transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.6s cubic-bezier(0.22, 1, 0.36, 1),
                box-shadow 0.3s ease;
}

.hero-stack-card:hover {
    box-shadow: var(--shadow-lg), 0 0 0 1px var(--accent);
    z-index: 4 !important;
}

.hero-stack-card.c1 {
    top: 2%;
    left: 0;
    transform: rotate(-9deg) translateY(18px);
    z-index: 1;
}

.hero-stack-card.c2 {
    top: 26%;
    left: 24%;
    width: 72%;
    transform: rotate(4deg) translateY(18px);
    z-index: 3;
}

.hero-stack-card.c3 {
    top: 58%;
    left: 4%;
    transform: rotate(-4deg) translateY(18px);
    z-index: 2;
}

.hero-stack-card.c1.visible { transform: rotate(-9deg) translateY(0); opacity: 1; }
.hero-stack-card.c2.visible { transform: rotate(4deg) translateY(0); opacity: 1; }
.hero-stack-card.c3.visible { transform: rotate(-4deg) translateY(0); opacity: 1; }

.hero-stack-label {
    display: block;
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.09em;
    color: var(--text-dim);
    margin-bottom: 10px;
}

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

.metrics-label {
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    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-family: var(--font-display);
    font-size: clamp(52px, 7.4vw, 80px);
    font-weight: 800;
    letter-spacing: -0.03em;
    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;
}

/* ===== TRUST STRIP ===== */
.trust-strip {
    padding: 4px 0 8px;
}

.trust-strip p {
    text-align: center;
    font-family: var(--font-mono);
    font-size: 12.5px;
    font-weight: 500;
    letter-spacing: 0.01em;
    color: var(--text-dim);
}

.trust-strip p span {
    color: var(--text-muted);
    font-weight: 700;
}

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

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

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

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

.section-title {
    font-family: var(--font-display);
    font-size: clamp(30px, 3.6vw, 44px);
    font-weight: 700;
    letter-spacing: -0.025em;
    line-height: 1.12;
    max-width: 600px;
    margin: 0 auto;
    text-wrap: balance;
}

.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: var(--shadow-sm);
}

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

.bento-card h3 {
    font-family: var(--font-display);
    font-size: 21px;
    font-weight: 700;
    letter-spacing: -0.02em;
    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 chat widget in bento card (AI Integration) */
.mini-chat {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mini-chat-bubble {
    max-width: 85%;
    padding: 8px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.45;
}

.mini-chat-bubble.user {
    align-self: flex-end;
    background: var(--text);
    color: var(--white);
    border-bottom-right-radius: 3px;
}

.mini-chat-bubble.ai {
    align-self: flex-start;
    background: var(--border-light);
    color: var(--text);
    border-bottom-left-radius: 3px;
}

.mini-chat-row {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.mini-chat-avatar {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    border-radius: 50%;
    background: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
}

.mini-chat-avatar svg {
    width: 11px;
    height: 11px;
    stroke: var(--text);
}

.mini-chat-meta {
    display: flex;
    align-items: center;
    gap: 6px;
    margin: 4px 0 0 2px;
    font-size: 11px;
    font-weight: 600;
    color: var(--text-dim);
}

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

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

/* Mini browser wireframe in bento card (Website Revamp) */
.mini-browser {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mini-browser-bar {
    display: flex;
    gap: 5px;
}

.mini-browser-bar span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--border);
}

.mini-browser-nav {
    width: 44%;
    height: 8px;
    background: var(--border-light);
    border-radius: 4px;
}

.mini-browser-hero {
    height: 46px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--accent) 0%, #F6EEDD 70%);
}

.mini-browser-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.mini-browser-cta {
    position: relative;
    flex: 0 0 34%;
    height: 16px;
    border-radius: 20px;
    background: var(--accent);
}

.mini-browser-cta::after {
    content: '';
    position: absolute;
    top: -3px;
    right: -3px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--text);
    box-shadow: 0 0 0 0 rgba(17,17,17,0.35);
    animation: cursor-ping 2s ease-out infinite;
}

@keyframes cursor-ping {
    0%   { box-shadow: 0 0 0 0 rgba(17,17,17,0.35); }
    70%  { box-shadow: 0 0 0 7px rgba(17,17,17,0); }
    100% { box-shadow: 0 0 0 0 rgba(17,17,17,0); }
}

.mini-browser-row span {
    flex: 1;
    height: 8px;
    border-radius: 4px;
    background: var(--border-light);
}

/* Mini social insights card in bento card (Social Media Marketing) */
.mini-social {
    display: flex;
    align-items: center;
    gap: 14px;
    height: 100%;
}

.mini-social-thumb {
    position: relative;
    width: 56px;
    height: 56px;
    flex-shrink: 0;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--accent) 0%, #E8940A 100%);
}

.mini-social-thumb svg {
    position: absolute;
    inset: 0;
    margin: auto;
    width: 22px;
    height: 22px;
    stroke: rgba(17,17,17,0.55);
}

.mini-social-stats {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mini-social-stat {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 12.5px;
    font-weight: 700;
    color: var(--text);
}

.mini-social-stat svg {
    width: 14px;
    height: 14px;
    stroke: var(--text-dim);
    flex-shrink: 0;
}

/* ===== 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: var(--shadow-sm);
}

.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: var(--text);
    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: 'Recommended';
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    padding: 4px 16px;
    background: var(--accent);
    color: var(--text);
    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-family: var(--font-display);
    font-size: 54px;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1;
    font-variant-numeric: tabular-nums;
    transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.pricing-period {
    font-family: var(--font-mono);
    font-size: 12.5px;
    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: var(--text);
    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;
    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-family: var(--font-mono);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    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);
}

/* ===== 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: var(--shadow-sm);
    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: var(--shadow-sm);
    overflow: hidden;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.faq-item.open {
    border-color: #CCCCCC;
    box-shadow: var(--shadow-md);
}

.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: var(--text);
    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: 8px;
    font-family: var(--font-mono);
    font-size: 11.5px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.45);
    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-family: var(--font-display);
    font-size: clamp(30px, 4vw, 48px);
    font-weight: 700;
    letter-spacing: -0.025em;
    line-height: 1.12;
    color: var(--white);
    max-width: 580px;
    margin: 0 auto 16px;
    position: relative;
    z-index: 1;
    text-wrap: balance;
}

.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;
    background: var(--accent);
    color: var(--text);
}

.cta-banner .btn-acid:hover {
    box-shadow: 4px 4px 0px rgba(255,255,255,0.35);
}

.cta-banner .btn-acid:active {
    box-shadow: 1px 1px 0px rgba(255,255,255,0.35);
}

.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;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .hero-stack {
        max-width: 300px;
        margin: 0 auto;
        order: -1;
    }

}

@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;
        padding-bottom: 56px;
    }

    .hero-copy {
        text-align: center;
    }

    .hero-eyebrow {
        justify-content: center;
    }

    .hero-sub {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        flex-direction: column;
        justify-content: center;
    }

    .hero-stack {
        max-width: 230px;
    }

    .hero-stack-label {
        font-size: 9px;
    }

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

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

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

    .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) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }

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