/* Autoprop marketing pages - shared skin (green premium, 2026-07 redesign) */
/* Approved tokens: warm off-whites, green accent, Bricolage Grotesque display,
   Instrument Sans body. Legacy var names kept (--ember is now the green accent)
   so every marketing page picks up the new brand without a rewrite. Each token
   has a hex fallback then an oklch override for exact fidelity. */

:root {
    --ink: #fbfbf8;
    --ink: oklch(0.985 0.004 120);
    --ink-raised: #f1f2ec;
    --ink-raised: oklch(0.955 0.006 130);
    --ink-card: #ffffff;
    --line: #dfe0d7;
    --line: oklch(0.89 0.008 130);
    --line-strong: #cccec3;
    --line-strong: oklch(0.84 0.01 130);
    --paper: #1c2b23;
    --paper: oklch(0.23 0.02 160);
    --paper-dim: #4c5f55;
    --paper-dim: oklch(0.45 0.02 160);
    --paper-faint: #71837a;
    --paper-faint: oklch(0.58 0.015 160);
    --ember: #217a4f;
    --ember: oklch(0.52 0.12 158);
    --ember-hot: #2b8f5e;
    --ember-hot: oklch(0.57 0.12 158);
    --ember-deep: #1a6440;
    --ember-deep: oklch(0.46 0.11 158);
    --ember-soft: rgba(33, 122, 79, 0.12);
    --accent-soft: #ddefe5;
    --accent-soft: oklch(0.94 0.03 158);
    --accent-soft-line: #a4cfb8;
    --accent-soft-line: oklch(0.82 0.06 158);
    --mint: #217a4f;
    --font-display: 'Bricolage Grotesque', 'Hanken Grotesk', sans-serif;
    --font-body: 'Instrument Sans', 'Hanken Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-mono: ui-monospace, 'SF Mono', 'JetBrains Mono', Menlo, monospace;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--ink);
    color: var(--paper);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
}

h1, h2, h3 {
    font-family: var(--font-display);
    letter-spacing: 0;
}

::selection {
    background: rgba(33, 122, 79, 0.35);
    color: #fff;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    font-family: var(--font-body);
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.btn-primary {
    background: linear-gradient(135deg, var(--ember-hot), var(--ember-deep));
    color: #fff;
    box-shadow: 0 10px 28px -10px rgba(33, 122, 79, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 36px -10px rgba(33, 122, 79, 0.7), inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.btn-outline {
    border-color: var(--line-strong);
    color: var(--paper);
    background: transparent;
}

.btn-outline:hover {
    background: rgba(23, 20, 31, 0.04);
    border-color: rgba(23, 20, 31, 0.3);
    transform: translateY(-2px);
}

.btn-link {
    color: var(--paper-dim);
    background: transparent;
    border-color: transparent;
    padding-left: 8px;
    padding-right: 8px;
}

.btn-link:hover {
    color: var(--paper);
    background: transparent;
    transform: none;
    box-shadow: none;
}

.btn-large {
    padding: 15px 30px;
    font-size: 1.02rem;
}

/* ---------- Header ---------- */
header {
    position: sticky;
    top: 0;
    z-index: 900;
    background: rgba(251, 250, 247, 0.85);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(23, 20, 31, 0.07);
}

header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    gap: 24px;
}

.logo {
    font-family: var(--font-display);
    font-size: 1.45rem;
    font-weight: 700;
    color: var(--paper);
    text-decoration: none;
    flex-shrink: 0;
    letter-spacing: 0;
}

.logo span {
    color: var(--ember);
}

header nav ul {
    display: flex;
    gap: 32px;
    list-style: none;
}

header nav a {
    color: var(--paper-dim);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.15s ease;
}

header nav a:hover {
    color: var(--paper);
}

header nav a.active {
    color: var(--paper);
}

.header-cta {
    display: flex;
    gap: 10px;
    align-items: center;
}

.header-cta .btn {
    padding: 9px 18px;
    font-size: 0.9rem;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--paper);
    cursor: pointer;
    padding: 8px;
}

/* ---------- Mobile nav ---------- */
#mobile-nav {
    position: fixed;
    inset: 0;
    background: rgba(251, 250, 247, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    display: none;
    padding: 88px 32px 32px;
}

#mobile-nav.active {
    display: block;
}

#mobile-nav ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

#mobile-nav a {
    color: var(--paper);
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 600;
    font-family: var(--font-display);
    display: block;
    padding: 12px 0;
}

#mobile-nav a.btn-primary {
    text-align: center;
    margin-top: 16px;
    font-family: var(--font-body);
    font-size: 1rem;
}

#mobile-nav .close-btn {
    position: absolute;
    top: 20px;
    right: 24px;
    background: none;
    border: none;
    color: var(--paper);
    font-size: 2.2rem;
    cursor: pointer;
    line-height: 1;
}

/* ---------- Eyebrow labels ---------- */
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #e25207;
    margin-bottom: 18px;
}

.eyebrow::before {
    content: '';
    width: 22px;
    height: 1px;
    background: #e25207;
    opacity: 0.7;
}

section[id] {
    scroll-margin-top: 96px;
}

/* ---------- Hero ---------- */
.hero {
    position: relative;
    padding: 44px 0 44px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(23, 20, 31, 0.055) 1px, transparent 1px);
    background-size: 30px 30px;
    mask-image: linear-gradient(to bottom, rgba(0,0,0,0.9), transparent 75%);
    -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,0.9), transparent 75%);
    pointer-events: none;
}

.hero-glow {
    position: absolute;
    pointer-events: none;
    border-radius: 50%;
    filter: blur(90px);
}

.hero-glow-1 {
    width: 560px;
    height: 560px;
    top: -180px;
    right: -80px;
    background: radial-gradient(circle, rgba(33, 122, 79, 0.13), transparent 65%);
}

.hero-glow-2 {
    width: 420px;
    height: 420px;
    bottom: -200px;
    left: -140px;
    background: radial-gradient(circle, rgba(33, 122, 79, 0.07), transparent 65%);
}

.hero .container {
    position: relative;
}

.hero-content {
    max-width: 760px;
    margin: 0 auto;
    padding: 64px 0 28px;
    text-align: center;
}

.hero .container:has(.hero-visual) {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 64px;
    align-items: center;
}

.hero h1 {
    font-size: clamp(2.6rem, 4.2vw, 3.6rem);
    font-weight: 800;
    line-height: 1.02;
    letter-spacing: 0;
    margin-bottom: 24px;
}

.hero h1 .hero-line {
    display: block;
    white-space: nowrap;
}

.hero h1 .hero-line-accent {
    background: linear-gradient(120deg, #5eb08a, var(--ember-deep));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-tagline {
    font-size: 1.13rem;
    color: var(--paper-dim);
    max-width: 540px;
    margin: 0 auto 26px;
    line-height: 1.55;
}

.hero-brand-line {
    font-family: var(--font-display);
    font-size: clamp(1.35rem, 2.2vw, 1.78rem);
    font-weight: 700;
    color: var(--paper);
    line-height: 1.22;
    margin: -8px auto 8px;
}

.hero .container.hero-with-product {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.78fr);
    gap: 58px;
    align-items: center;
    min-height: 560px;
}

.hero-with-product .hero-content {
    max-width: 650px;
    margin: 0;
    padding: 70px 0 58px;
    text-align: left;
}

.hero-with-product .hero-tagline {
    margin-left: 0;
    margin-right: 0;
    font-size: clamp(1.06rem, 1.5vw, 1.2rem);
    line-height: 1.32;
    max-width: 520px;
}

.hero-with-product .hero-brand-line {
    margin-left: 0;
    margin-right: 0;
    max-width: 520px;
}

.hero-product-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 540px;
}

.hero-product-visual::before {
    content: '';
    position: absolute;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(33, 122, 79, 0.18), transparent 66%);
    filter: blur(22px);
}

.iphone-frame {
    position: relative;
    z-index: 1;
    width: min(290px, 72vw);
    margin: 0;
    padding: 10px;
    border-radius: 42px;
    background: #15131b;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow:
        0 34px 80px -28px rgba(23, 20, 31, 0.5),
        0 12px 32px -18px rgba(33, 122, 79, 0.6);
}

.iphone-frame img {
    display: block;
    width: 100%;
    border-radius: 31px;
    background: #fbfbf8;
}

.iphone-notch {
    position: absolute;
    top: 7px;
    left: 50%;
    z-index: 2;
    width: 74px;
    height: 16px;
    transform: translateX(-50%);
    border-radius: 999px;
    background: #15131b;
}

body.viewing-landing .hero {
    padding: 56px 0 44px;
}

body.viewing-landing .hero h1 {
    font-size: clamp(2.65rem, 4.8vw, 3.9rem);
}

body.viewing-landing .hero-tagline {
    font-size: 1.06rem;
    line-height: 1.55;
    margin-bottom: 24px;
}

body.viewing-landing .hero-cta {
    margin-bottom: 18px;
}

body.viewing-landing .hero-price {
    margin-bottom: 18px;
}

body.viewing-landing .hero-card .chat-message {
    animation: none;
    opacity: 1;
    transform: none;
}

body.viewing-landing .hero-card .chat-typing {
    display: none;
}

body.viewing-landing .hero-card {
    padding: 22px;
}

body.viewing-landing .hero-card-header {
    margin-bottom: 16px;
    padding-bottom: 14px;
}

body.viewing-landing .chat-message {
    padding: 12px 14px;
    margin-bottom: 10px;
}

body.viewing-landing .chat-message p {
    font-size: 0.88rem;
    line-height: 1.45;
}

body.viewing-landing .chat-message .time {
    margin-top: 5px;
}

.hero-cta {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 26px;
}

.hero-price {
    display: inline-flex;
    align-items: flex-start;
    gap: 10px;
    background: rgba(34, 197, 94, 0.07);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 12px;
    padding: 12px 18px;
    font-size: 0.92rem;
    color: #15803d;
    margin-bottom: 24px;
}

.hero-price svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.hero-proof {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 22px;
    font-size: 0.88rem;
    color: var(--paper-dim);
}

.hero-proof span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

/* ---------- Hero proof card ---------- */
.hero-visual {
    position: relative;
}

.hero-visual::before {
    content: '';
    position: absolute;
    inset: -8% -6%;
    background: radial-gradient(circle, rgba(33, 122, 79, 0.12), transparent 70%);
    filter: blur(50px);
    pointer-events: none;
}

.hero-card {
    position: relative;
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 26px;
    box-shadow: 0 30px 80px -24px rgba(23, 20, 31, 0.22);
    animation: none;
}

@keyframes card-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.hero-card-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--line);
}

.hero-card-icon {
    width: 46px;
    height: 46px;
    border-radius: 13px;
    background: linear-gradient(135deg, var(--ember-hot), var(--ember-deep));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: 0 8px 20px -6px rgba(33, 122, 79, 0.5);
}

.hero-card-title {
    font-weight: 700;
    font-size: 1.02rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-card-title::after {
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--mint);
    box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.5);
    animation: status-pulse 2.4s ease-out infinite;
}

@keyframes status-pulse {
    0% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.45); }
    70% { box-shadow: 0 0 0 7px rgba(74, 222, 128, 0); }
    100% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0); }
}

.hero-card-subtitle {
    font-size: 0.84rem;
    color: var(--paper-faint);
    font-family: var(--font-mono);
}

.hero-example-flow {
    display: grid;
    gap: 11px;
    margin: 18px 0;
}

.hero-example-step {
    display: grid;
    grid-template-columns: 34px 1fr;
    gap: 12px;
    align-items: center;
    border: 1px solid rgba(23, 20, 31, 0.08);
    border-radius: 12px;
    background: linear-gradient(180deg, #ffffff, #f5faf7);
    padding: 13px 15px;
}

.hero-example-step b {
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(33, 122, 79, 0.12);
    color: #155234;
    font-family: var(--font-mono);
    font-size: 0.8rem;
}

.hero-example-step span {
    color: var(--paper);
    font-size: 0.92rem;
    line-height: 1.35;
}

.hero-run-note {
    display: grid;
    gap: 4px;
    border-left: 3px solid var(--ember);
    border-radius: 10px;
    background: #eef6f1;
    color: var(--paper);
    padding: 14px 16px;
}

.hero-run-note strong {
    font-size: 0.96rem;
}

.hero-run-note span {
    color: var(--paper-dim);
    font-size: 0.9rem;
    line-height: 1.45;
}

.chat-message {
    background: #f1f2ec;
    border: 1px solid #eceae5;
    border-radius: 13px;
    padding: 14px 16px;
    margin-bottom: 12px;
    opacity: 0;
    transform: translateY(12px);
    animation: msg-in 0.55s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.chat-message:nth-of-type(1) { animation-delay: 0.4s; }
.chat-message.ai { animation-delay: 1.7s; }
.chat-message:nth-of-type(3) { animation-delay: 3s; }

@keyframes msg-in {
    to { opacity: 1; transform: translateY(0); }
}

.chat-message p {
    font-size: 0.92rem;
    line-height: 1.55;
    color: #44414e;
}

.chat-message strong {
    color: var(--paper);
}

.chat-message.ai {
    background: linear-gradient(135deg, rgba(33, 122, 79, 0.1), rgba(33, 122, 79, 0.04));
    border-color: rgba(33, 122, 79, 0.3);
}

.chat-message .time {
    font-size: 0.74rem;
    color: var(--paper-faint);
    margin-top: 7px;
    font-family: var(--font-mono);
}

.chat-typing {
    display: flex;
    gap: 5px;
    padding: 4px 2px 0;
    height: 18px;
    opacity: 0;
    animation: typing-show 0.3s ease 0.9s forwards, typing-hide 0.3s ease 1.6s forwards;
}

.chat-typing i {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--ember-hot);
    animation: typing-bounce 1s ease-in-out infinite;
}

.chat-typing i:nth-child(2) { animation-delay: 0.15s; }
.chat-typing i:nth-child(3) { animation-delay: 0.3s; }

@keyframes typing-show { to { opacity: 1; } }
@keyframes typing-hide { to { opacity: 0; height: 0; padding: 0; } }
@keyframes typing-bounce {
    0%, 60%, 100% { transform: translateY(0); }
    30% { transform: translateY(-4px); }
}

/* ---------- Section scaffolding ---------- */
section {
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 56px;
}

.section-header h2,
.problem-section h2 {
    font-size: clamp(1.9rem, 3.6vw, 2.9rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 16px;
}

.section-header p {
    color: var(--paper-dim);
    font-size: 1.05rem;
}

.section-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--line-strong), transparent);
    max-width: 1180px;
    margin: 0 auto;
}

/* ---------- Proof strip ---------- */
.proof-strip {
    padding: 36px 0 72px;
}

.proof-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.proof-panel-grid {
    display: grid;
    grid-template-columns: 1.15fr 1fr 1fr;
    gap: 20px;
}

.proof-panel {
    background: var(--ink-card);
    border: 1px solid var(--line);
    border-radius: 16px;
    min-height: 190px;
    padding: 30px 30px;
}

.proof-panel-primary {
    border-color: rgba(33, 122, 79, 0.28);
    box-shadow: 0 18px 45px rgba(33, 122, 79, 0.08);
}

.proof-panel strong {
    display: block;
    color: var(--paper);
    font-family: var(--font-display);
    font-size: clamp(1.65rem, 2.5vw, 2.35rem);
    font-weight: 800;
    line-height: 1.03;
    letter-spacing: 0;
    margin-bottom: 18px;
}

.proof-panel p {
    color: var(--paper-dim);
    font-size: 0.98rem;
    line-height: 1.65;
}

.proof-card {
    background: var(--ink-card);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 26px 28px;
    transition: border-color 0.25s ease, transform 0.25s ease;
}

.proof-card:hover {
    border-color: rgba(33, 122, 79, 0.35);
    transform: translateY(-3px);
}

.proof-card strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.proof-card p {
    color: var(--paper-dim);
    font-size: 0.93rem;
}

.proof-metric-card strong {
    color: var(--paper);
    font-size: clamp(1.7rem, 2.6vw, 2.25rem);
    line-height: 1;
    letter-spacing: 0;
    margin-bottom: 14px;
}

/* ---------- Trust bar ---------- */
.trust-bar {
    padding: 10px 0 72px;
    text-align: center;
}

.trust-bar p {
    font-family: var(--font-mono);
    font-size: 0.74rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--paper-faint);
    margin-bottom: 24px;
}

.trust-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.integration-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 10px 20px;
    border-radius: 999px;
    background: #ffffff;
    border: 1px solid var(--line);
    color: var(--paper-dim);
    font-size: 0.92rem;
    font-weight: 500;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.integration-badge:hover {
    color: var(--paper);
    border-color: rgba(33, 122, 79, 0.4);
}

.integration-badge svg {
    color: var(--ember-hot);
}

/* ---------- Evidence ---------- */
.evidence-section {
    padding: 104px 0;
    background:
        linear-gradient(180deg, #ffffff, #f7fbf8);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.evidence-metrics {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-bottom: 32px;
}

.evidence-metric {
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 22px 20px;
    min-height: 142px;
}

.evidence-metric strong {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1;
    letter-spacing: 0;
    color: var(--paper);
    margin-bottom: 12px;
}

.evidence-metric span {
    display: block;
    color: var(--paper-dim);
    font-size: 0.92rem;
    line-height: 1.45;
}

.proof-flow-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

.proof-flow {
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 28px;
}

.proof-flow-kicker {
    display: inline-flex;
    margin-bottom: 10px;
    font-family: var(--font-mono);
    font-size: 0.72rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #0f766e;
}

.proof-flow h3 {
    font-size: 1.35rem;
    margin-bottom: 18px;
}

.proof-steps {
    list-style: none;
    display: grid;
    gap: 12px;
    margin: 0 0 20px;
}

.proof-steps li {
    display: grid;
    grid-template-columns: 30px 1fr;
    gap: 12px;
    align-items: start;
}

.proof-steps li > span {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(15, 118, 110, 0.08);
    color: #0f766e;
    font-family: var(--font-mono);
    font-size: 0.78rem;
    font-weight: 700;
}

.proof-steps p {
    color: var(--paper-dim);
    font-size: 0.95rem;
    line-height: 1.55;
}

.audit-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding-top: 16px;
    border-top: 1px solid var(--line);
}

.audit-tags span {
    display: inline-flex;
    border: 1px solid rgba(15, 118, 110, 0.2);
    border-radius: 999px;
    padding: 7px 11px;
    background: rgba(15, 118, 110, 0.05);
    color: #0f766e;
    font-size: 0.78rem;
    font-weight: 600;
}

/* ---------- Demo walkthrough ---------- */
.demo-walkthrough {
    padding: 104px 0;
    background: #16141f;
    color: #f8fafc;
}

.demo-walkthrough .container {
    display: grid;
    grid-template-columns: 0.8fr 1fr;
    gap: 58px;
    align-items: center;
}

.demo-copy h2 {
    font-size: clamp(2rem, 3.8vw, 3.1rem);
    line-height: 1.07;
    margin-bottom: 18px;
}

.demo-copy p {
    color: rgba(248, 250, 252, 0.76);
    font-size: 1.02rem;
    line-height: 1.65;
    margin-bottom: 24px;
}

.demo-bullets {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.demo-bullets span {
    border: 1px solid rgba(248, 250, 252, 0.14);
    border-radius: 999px;
    padding: 9px 13px;
    color: rgba(248, 250, 252, 0.82);
    font-size: 0.84rem;
}

.demo-player {
    background: #f8fafc;
    border: 1px solid rgba(248, 250, 252, 0.16);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 30px 80px -38px rgba(33, 122, 79, 0.65);
}

.demo-player-bar {
    height: 44px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 16px;
    background: #eceff3;
    color: #64748b;
    font-family: var(--font-mono);
    font-size: 0.76rem;
}

.demo-player-bar i {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #217a4f;
}

.demo-player-bar i:nth-child(2) {
    background: #facc15;
}

.demo-player-bar i:nth-child(3) {
    background: #22c55e;
    margin-right: 8px;
}

.demo-screen {
    position: relative;
    min-height: 430px;
    padding: 28px;
    background:
        radial-gradient(circle at 85% 10%, rgba(33, 122, 79, 0.12), transparent 34%),
        #ffffff;
}

.demo-run-header {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: center;
    border-bottom: 1px solid var(--line);
    padding-bottom: 16px;
    margin-bottom: 20px;
}

.demo-run-header span {
    color: #0f766e;
    font-family: var(--font-mono);
    font-size: 0.74rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.demo-run-header strong {
    color: var(--paper);
    font-size: 1.02rem;
}

.demo-line {
    display: grid;
    grid-template-columns: 58px 1fr;
    gap: 14px;
    align-items: start;
    color: var(--paper-dim);
    background: #f8fafc;
    border: 1px solid #e7eaf0;
    border-radius: 10px;
    padding: 16px;
    margin-bottom: 12px;
    animation: demo-pulse 8s ease-in-out infinite;
}

.demo-line b {
    color: var(--paper);
    font-family: var(--font-mono);
    font-size: 0.78rem;
}

.demo-line span {
    font-size: 0.95rem;
    line-height: 1.45;
}

.demo-line-2 { animation-delay: 1.2s; }
.demo-line-3 { animation-delay: 2.4s; }
.demo-line-4 { animation-delay: 3.6s; }

@keyframes demo-pulse {
    0%, 62%, 100% {
        border-color: #e7eaf0;
        transform: translateX(0);
        box-shadow: none;
    }
    12%, 24% {
        border-color: rgba(33, 122, 79, 0.42);
        transform: translateX(4px);
        box-shadow: 0 18px 36px -28px rgba(33, 122, 79, 0.55);
    }
}

/* ---------- Problem section ---------- */
.problem-section {
    padding: 96px 0;
    background:
        radial-gradient(ellipse 60% 50% at 50% 0%, rgba(33, 122, 79, 0.05), transparent),
        var(--ink-raised);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    text-align: center;
}

.problem-section .lead {
    color: var(--paper-dim);
    font-size: 1.08rem;
    max-width: 640px;
    margin: 0 auto 48px;
}

.problem-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    max-width: 920px;
    margin: 0 auto;
    text-align: left;
}

.problem-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    background: #ffffff;
    border: 1px solid rgba(239, 68, 68, 0.25);
    border-radius: 14px;
    padding: 18px 20px;
}

.problem-item svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.problem-item p {
    color: #44414e;
    font-size: 0.96rem;
}

/* ---------- Features ---------- */
.features-section {
    padding: 104px 0;
}

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

.feature-card {
    background: var(--ink-card);
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 30px 28px;
    transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.feature-card:hover {
    border-color: rgba(33, 122, 79, 0.4);
    transform: translateY(-4px);
    box-shadow: 0 24px 48px -24px rgba(33, 122, 79, 0.2);
}

.feature-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    background: rgba(33, 122, 79, 0.09);
    border: 1px solid rgba(33, 122, 79, 0.22);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ember-deep);
    margin-bottom: 20px;
}

.feature-icon svg,
.service-icon svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    stroke: currentColor;
}

.feature-icon,
.service-icon {
    --autoprop-card-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M13 2 3 14h8l-1 8 11-13h-8l1-7z'/%3E%3C/svg%3E");
}

.feature-card:nth-child(1) .feature-icon {
    --autoprop-card-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M13 2 3 14h8l-1 8 11-13h-8l1-7z'/%3E%3C/svg%3E");
}

.feature-card:nth-child(2) .feature-icon,
.service-card:nth-child(1) .service-icon {
    --autoprop-card-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.1' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='4' width='18' height='18' rx='2'/%3E%3Cpath d='M16 2v4M8 2v4M3 10h18M9 16l2 2 4-4'/%3E%3C/svg%3E");
}

.feature-card:nth-child(3) .feature-icon {
    --autoprop-card-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.1' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M16 21v-2a4 4 0 0 0-4-4H6a4 4 0 0 0-4 4v2'/%3E%3Ccircle cx='9' cy='7' r='4'/%3E%3Cpath d='m16 11 2 2 4-4'/%3E%3C/svg%3E");
}

.feature-card:nth-child(4) .feature-icon,
.service-card:nth-child(4) .service-icon {
    --autoprop-card-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.1' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z'/%3E%3Cpath d='M14 2v6h6M9 15l2 2 4-4'/%3E%3C/svg%3E");
}

.service-card:nth-child(2) .service-icon {
    --autoprop-card-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.1' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M14.7 6.3a1 1 0 0 0 0 1.4l1.6 1.6a1 1 0 0 0 1.4 0l3.4-3.4a6 6 0 0 1-7.8 7.8L6.7 20.3a2.1 2.1 0 0 1-3-3l6.6-6.6a6 6 0 0 1 7.8-7.8z'/%3E%3C/svg%3E");
}

.service-card:nth-child(3) .service-icon {
    --autoprop-card-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.1' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M17 6.5A4.5 4.5 0 0 0 8.5 9v11M6 20h12M7 13h8'/%3E%3C/svg%3E");
}

.feature-icon:empty::before,
.service-icon:empty::before,
.feature-icon > i.fas::before,
.service-icon > i.fas::before {
    content: "";
    display: block;
    width: 24px;
    height: 24px;
    background: currentColor;
    -webkit-mask: var(--autoprop-card-icon) center / contain no-repeat;
    mask: var(--autoprop-card-icon) center / contain no-repeat;
}

.feature-icon > i.fas,
.service-icon > i.fas {
    display: flex;
    width: 24px;
    height: 24px;
    align-items: center;
    justify-content: center;
}

.feature-card h3 {
    font-size: 1.18rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.feature-card p {
    color: var(--paper-dim);
    font-size: 0.94rem;
}

/* ---------- How it works ---------- */
.how-it-works {
    padding: 104px 0;
    background: var(--ink-raised);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.step {
    position: relative;
    text-align: left;
}

.step-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    background: rgba(33, 122, 79, 0.09);
    border: 1px solid rgba(33, 122, 79, 0.22);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ember-deep);
    margin-bottom: 20px;
}

.step-icon svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.step-number {
    font-family: var(--font-display);
    font-size: 4.4rem;
    font-weight: 800;
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 1.5px rgba(33, 122, 79, 0.55);
    margin-bottom: 14px;
}

.step h3 {
    font-size: 1.08rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.step p {
    color: var(--paper-dim);
    font-size: 0.91rem;
}

/* ---------- Pricing ---------- */
.pricing-section {
    padding: 104px 0;
}

.pricing-card {
    position: relative;
    max-width: 560px;
    margin: 0 auto;
    background:
        linear-gradient(#ffffff, #ffffff) padding-box,
        linear-gradient(160deg, rgba(33, 122, 79, 0.6), rgba(23, 20, 31, 0.08) 38%, rgba(33, 122, 79, 0.3)) border-box;
    border: 1px solid transparent;
    border-radius: 22px;
    padding: 44px 44px 40px;
    text-align: center;
    box-shadow: 0 40px 90px -45px rgba(33, 122, 79, 0.35);
}

.pricing-card h3 {
    font-size: 1.45rem;
    font-weight: 700;
}

.pricing-card .subtitle {
    color: var(--paper-dim);
    font-size: 0.95rem;
    margin: 6px 0 26px;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
    margin-bottom: 8px;
    font-family: var(--font-display);
}

.price .currency {
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--paper-dim);
}

.price .amount {
    font-size: 4.4rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0;
}

.price .period {
    font-size: 1.05rem;
    color: var(--paper-faint);
}

.pricing-price {
    margin: 8px 0 4px;
}

.price .price-prefix {
    margin-right: 6px;
    color: var(--paper-faint);
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 700;
}

.pricing-included {
    margin: 0 0 22px;
    color: var(--paper-dim);
    font-size: 0.9rem;
}

.pricing-description {
    color: var(--paper-faint);
    font-size: 0.88rem;
    font-family: var(--font-mono);
    margin-bottom: 22px;
}

.workflow-explorer {
    margin: 0 auto 28px;
}

.workflow-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-bottom: 16px;
}

.workflow-tab {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-height: 36px;
    padding: 7px 12px;
    border: 1px solid rgba(33, 122, 79, 0.18);
    border-radius: 999px;
    background: rgba(33, 122, 79, 0.07);
    color: #554337;
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 700;
    cursor: pointer;
    transition: 0.18s ease;
}

.workflow-tab svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.workflow-tab:hover,
.workflow-tab.active {
    border-color: rgba(33, 122, 79, 0.48);
    background: linear-gradient(135deg, var(--ember), var(--ember-deep));
    color: #fff;
    box-shadow: 0 14px 30px -22px rgba(33, 122, 79, 0.7);
}

.workflow-panel {
    min-height: 124px;
    padding: 22px;
    border: 1px solid rgba(23, 20, 31, 0.08);
    border-radius: 16px;
    background: linear-gradient(180deg, rgba(33, 122, 79, 0.06), rgba(255, 255, 255, 0.76));
    text-align: left;
}

.workflow-panel strong {
    display: block;
    margin-bottom: 8px;
    color: var(--paper);
    font-size: 1.05rem;
}

.workflow-panel p {
    margin: 0;
    color: var(--paper-dim);
    line-height: 1.55;
    font-size: 0.94rem;
}

.pricing-features {
    list-style: none;
    text-align: left;
    margin-bottom: 32px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 0;
    font-size: 0.94rem;
    color: #44414e;
    border-bottom: 1px solid rgba(23, 20, 31, 0.07);
}

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

.pricing-features svg {
    flex-shrink: 0;
}

.pricing-cta {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pricing-cta .note {
    font-size: 0.8rem;
    color: var(--paper-faint);
}

.pricing-note {
    margin: 0;
    color: var(--paper-faint);
    font-size: 0.88rem;
}

/* ---------- FAQ ---------- */
.faq-section {
    padding: 96px 0;
    background: var(--ink-raised);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.faq-section .container {
    max-width: 760px;
}

.faq-section h2 {
    text-align: center;
    font-size: clamp(1.9rem, 3.4vw, 2.6rem);
    font-weight: 700;
    margin-bottom: 44px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--ink-card);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 20px 24px;
    transition: border-color 0.2s ease;
}

.faq-item:hover,
.faq-item[open] {
    border-color: rgba(33, 122, 79, 0.3);
}

.faq-item summary {
    font-weight: 600;
    cursor: pointer;
    font-size: 1.02rem;
    color: var(--paper);
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    color: var(--ember-hot);
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 1;
    margin-left: 16px;
    transition: transform 0.2s ease;
}

.faq-item[open] summary::after {
    transform: rotate(45deg);
}

.faq-item p {
    margin-top: 12px;
    color: var(--paper-dim);
    line-height: 1.65;
    font-size: 0.95rem;
}

/* ---------- CTA section ---------- */
.cta-section {
    padding: 110px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: #1c2b23;
}

.cta-section::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    width: 900px;
    height: 100%;
    background: radial-gradient(ellipse 50% 45% at 50% 30%, rgba(33, 122, 79, 0.16), transparent 70%);
    pointer-events: none;
}

.cta-section h2 {
    position: relative;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.08;
    max-width: 760px;
    margin: 0 auto 18px;
    color: #f1f2ec;
}

.cta-section > .container > p {
    position: relative;
    color: #a9a5b4;
    font-size: 1.08rem;
    max-width: 600px;
    margin: 0 auto 34px;
}

.cta-section .btn-large {
    position: relative;
}

.cta-form-card {
    position: relative;
    max-width: 520px;
    margin: 48px auto 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    padding: 30px;
    text-align: left;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.cta-form-card h3 {
    margin: 0 0 4px;
    font-size: 1.15rem;
    font-weight: 700;
    color: #f1f2ec;
}

.cta-form-card .form-note {
    margin: 0 0 20px;
    color: #a9a5b4;
    font-size: 0.9rem;
}

.cta-form-grid {
    display: grid;
    gap: 12px;
}

.cta-form-card input:not([aria-hidden]),
.cta-form-card textarea {
    padding: 13px 16px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 10px;
    font-size: 0.95rem;
    width: 100%;
    box-sizing: border-box;
    background: rgba(255, 255, 255, 0.06);
    color: #f1f2ec;
    font-family: var(--font-body);
    transition: border-color 0.2s ease, background 0.2s ease;
}

.cta-form-card textarea {
    min-height: 52px;
    line-height: 1.45;
    resize: vertical;
    overflow: hidden;
}

.cta-form-card input::placeholder,
.cta-form-card textarea::placeholder {
    color: #8b8896;
}

.cta-form-card input:focus,
.cta-form-card textarea:focus {
    outline: none;
    border-color: rgba(33, 122, 79, 0.6);
    background: rgba(255, 255, 255, 0.07);
}

.cta-form-card button[type="submit"] {
    width: 100%;
}

#inline-demo-status {
    margin: 10px 0 0;
    font-size: 0.85rem;
    color: #a9a5b4;
    min-height: 1.2em;
}

/* ---------- Footer ---------- */
footer {
    padding: 64px 0 32px;
    background: #1c2b23;
    color: #a9bcb1;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 48px;
    margin-bottom: 48px;
}

footer .logo {
    color: #f1f2ec;
}

.footer-brand p {
    color: #8b87a0;
    margin-top: 14px;
    font-size: 0.93rem;
    max-width: 280px;
}

.footer-column h4 {
    font-weight: 600;
    margin-bottom: 18px;
    font-size: 0.95rem;
    color: #f1f2ec;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 10px;
}

.footer-column a {
    color: #a9bcb1;
    text-decoration: none;
    font-size: 0.92rem;
    transition: color 0.15s ease;
}

.footer-column a:hover {
    color: var(--ember-hot);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 24px;
    text-align: center;
    font-size: 0.85rem;
    color: #7d7a90;
}

/* ---------- Scroll reveals ---------- */
.reveal {
    opacity: 1;
    transform: none;
    transition: none;
}

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

.proof-card.reveal:nth-child(2),
.feature-card.reveal:nth-child(2),
.step.reveal:nth-child(2),
.problem-item.reveal:nth-child(2) {
    transition-delay: 0.1s;
}

.proof-card.reveal:nth-child(3),
.feature-card.reveal:nth-child(3),
.step.reveal:nth-child(3),
.problem-item.reveal:nth-child(3) {
    transition-delay: 0.2s;
}

.feature-card.reveal:nth-child(4),
.step.reveal:nth-child(4),
.problem-item.reveal:nth-child(4) {
    transition-delay: 0.3s;
}

.feature-card.reveal:nth-child(5) {
    transition-delay: 0.4s;
}

.feature-card.reveal:nth-child(6) {
    transition-delay: 0.5s;
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    .chat-message {
        opacity: 1;
        transform: none;
    }
    .reveal {
        opacity: 1;
        transform: none;
    }
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
    .hero .container,
    .hero .container:has(.hero-visual) {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .hero-visual {
        max-width: 560px;
        margin: 0 auto;
    }

    .hero .container.hero-with-product {
        min-height: auto;
    }

    .hero .container.hero-with-product .hero-content {
        margin: 0 auto;
        padding-bottom: 20px;
        text-align: center;
    }

    .hero-with-product .hero-tagline {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-with-product .hero-brand-line {
        margin-left: auto;
        margin-right: auto;
    }

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

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

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

    .proof-panel-grid {
        grid-template-columns: 1fr;
    }

    .proof-flow-grid,
    .demo-walkthrough .container {
        grid-template-columns: 1fr;
    }

    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 36px 28px;
    }

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

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    header .container {
        height: 64px;
    }

    .logo {
        font-size: 1.34rem;
    }

    header nav,
    .header-cta {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .eyebrow {
        font-size: 0.64rem;
        letter-spacing: 0.14em;
        margin-bottom: 12px;
    }

    .eyebrow::before {
        width: 18px;
    }

    .hero {
        padding: 38px 0 24px;
    }

    .hero-content {
        padding: 16px 0 0;
        text-align: center;
    }

    .hero .container,
    .hero .container:has(.hero-visual) {
        gap: 24px;
    }

    .hero .container.hero-with-product .hero-content {
        padding: 18px 0 0;
    }

    .hero h1 {
        font-size: 2.18rem;
        line-height: 1.05;
        margin-bottom: 16px;
    }

    .hero h1 .hero-line {
        white-space: normal;
    }

    .hero-with-product .hero-tagline {
        font-size: 1.04rem;
    }

    .hero-brand-line {
        font-size: 1.28rem;
        margin-top: -4px;
    }

    .hero-product-visual {
        min-height: 420px;
        margin-top: 2px;
    }

    .iphone-frame {
        width: min(230px, 68vw);
        border-radius: 34px;
        padding: 8px;
    }

    .iphone-frame img {
        border-radius: 25px;
    }

    .iphone-notch {
        top: 5px;
        width: 58px;
        height: 12px;
    }

    .proof-strip {
        padding: 36px 0 64px;
    }

    .proof-panel {
        min-height: 0;
        padding: 24px 26px;
    }

    .proof-panel strong {
        font-size: 1.8rem;
        line-height: 1.08;
        margin-bottom: 14px;
    }

    .proof-panel p {
        font-size: 0.95rem;
        line-height: 1.58;
    }

    .hero-tagline {
        font-size: 1rem;
        line-height: 1.55;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 22px;
    }

    .hero-cta {
        gap: 10px;
        justify-content: center;
        margin-bottom: 0;
    }

    .hero-cta .btn-large {
        width: 100%;
        text-align: center;
        padding: 13px 18px;
        border-radius: 8px;
    }

    .hero-price {
        width: 100%;
        border-radius: 8px;
        padding: 10px 12px;
        font-size: 0.86rem;
        line-height: 1.45;
        margin-bottom: 14px;
    }

    .hero-proof {
        display: grid;
        gap: 8px;
        font-size: 0.84rem;
    }

    .hero-visual:not(.hero-product-visual),
    .hero-visual:not(.hero-product-visual)::before,
    .hero-glow {
        display: none;
    }

    .hero-card {
        border-radius: 12px;
        padding: 16px;
        box-shadow: 0 18px 42px -26px rgba(23, 20, 31, 0.38);
        animation: none;
    }

    .hero-example-flow {
        gap: 9px;
        margin: 14px 0;
    }

    .hero-example-step {
        padding: 12px;
        border-radius: 10px;
    }

    .hero-example-step span,
    .hero-run-note span {
        font-size: 0.8rem;
    }

    .hero-card-header {
        gap: 10px;
        margin-bottom: 12px;
        padding-bottom: 12px;
    }

    .hero-card-icon {
        width: 42px;
        height: 42px;
        border-radius: 10px;
    }

    .chat-message {
        padding: 10px 12px;
        margin-bottom: 8px;
    }

    .chat-message p {
        font-size: 0.88rem;
        line-height: 1.45;
    }

    .chat-typing {
        display: none;
    }

    .page-hero {
        padding: 46px 0 34px;
    }

    .page-hero h1 {
        font-size: 2.12rem;
        line-height: 1.08;
        margin-bottom: 14px;
    }

    .page-hero p,
    .page-hero .lead {
        font-size: 1rem;
        line-height: 1.55;
    }

    .services-section,
    .how-section,
    .why-section {
        padding: 52px 0;
    }

    .services-grid,
    .how-grid,
    .why-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .service-card,
    .why-card {
        border-radius: 12px;
        padding: 22px 18px;
    }

    .service-card .btn {
        width: 100%;
    }

    .service-price {
        font-size: 1.38rem;
    }

    .how-step .step-number {
        font-size: 2.7rem;
        margin-bottom: 8px;
    }

    .proof-grid,
    .features-grid,
    .problem-list,
    .evidence-metrics,
    .proof-flow-grid {
        grid-template-columns: 1fr;
    }

    .evidence-section,
    .demo-walkthrough {
        padding: 76px 0;
    }

    .proof-flow,
    .demo-screen {
        padding: 22px 20px;
    }

    .demo-run-header {
        align-items: flex-start;
        flex-direction: column;
    }

    .demo-line {
        grid-template-columns: 1fr;
        gap: 5px;
    }

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

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

    .pricing-card {
        padding: 32px 24px;
    }

    .cta-form-card {
        padding: 24px 20px;
    }
}
    


/* ============================================================
   Subpage extras (features / pricing / about / contact / services)
   ============================================================ */

.page-hero {
    padding: 84px 0 64px;
    text-align: center;
}

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

.page-hero h1 {
    font-size: clamp(2.3rem, 4.6vw, 3.4rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: 0;
    max-width: 820px;
    margin: 0 auto 18px;
}

.page-hero h1 .highlight,
.page-hero h1 span.highlight {
    background: linear-gradient(120deg, #5eb08a, var(--ember-deep));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.page-hero p,
.page-hero .lead {
    color: var(--paper-dim);
    font-size: 1.12rem;
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.65;
}

.page-hero .hero-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

/* ---------- Legal pages ---------- */
.legal-section {
    padding: 72px 0 96px;
    background: var(--paper);
}

.legal-content {
    max-width: 860px;
    margin: 0 auto;
    color: var(--ink);
    font-size: 1.02rem;
    line-height: 1.72;
}

.legal-content h2 {
    margin: 34px 0 12px;
    font-family: var(--font-heading);
    font-size: 1.42rem;
    color: var(--ink);
}

.legal-content p,
.legal-content li {
    color: var(--paper-muted);
}

.legal-content ul {
    display: grid;
    gap: 10px;
    margin: 12px 0 18px;
    padding-left: 1.35rem;
}

.legal-content a {
    color: var(--ember-hot);
    font-weight: 700;
}

.legal-meta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    color: var(--paper-faint);
    font-size: 0.92rem;
    font-weight: 700;
    text-transform: uppercase;
}

/* ---------- Pricing page ---------- */
.modules-grid {
    align-items: start;
}

.modules-grid .pricing-card {
    max-width: none;
    height: 100%;
}

.pricing-card .pricing-badge {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--ember-hot), var(--ember-deep));
    color: #fff;
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 999px;
    box-shadow: 0 8px 20px -8px rgba(33, 122, 79, 0.6);
    white-space: nowrap;
}

.pricing-note {
    color: var(--paper-faint);
    font-size: 0.88rem;
    margin-bottom: 20px;
}

.pricing-path {
    padding: 24px 0 72px;
}

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

.path-card {
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 24px;
    min-height: 218px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.path-card.featured {
    background:
        linear-gradient(#ffffff, #ffffff) padding-box,
        linear-gradient(150deg, rgba(33, 122, 79, 0.55), rgba(15, 118, 110, 0.24)) border-box;
    border: 1px solid transparent;
    box-shadow: 0 26px 60px -38px rgba(33, 122, 79, 0.42);
}

.path-kicker {
    display: inline-flex;
    width: fit-content;
    margin-bottom: 14px;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #0f766e;
}

.path-card h3 {
    font-size: 1.22rem;
    margin-bottom: 10px;
}

.path-card p {
    color: var(--paper-dim);
    font-size: 0.94rem;
    line-height: 1.55;
    margin-bottom: 18px;
}

.path-card .btn {
    width: fit-content;
}

.pricing-page-note {
    max-width: 800px;
    margin: 28px auto 0;
    padding: 16px 18px;
    border: 1px solid rgba(15, 118, 110, 0.18);
    border-radius: 12px;
    background: rgba(15, 118, 110, 0.05);
    color: #0f766e;
    font-size: 0.94rem;
    text-align: center;
}

.service-price-label {
    font-family: var(--font-display);
    font-size: 1.3rem !important;
    font-weight: 800;
    color: var(--ember-deep) !important;
}

.pricing-features li i.fas {
    color: #22c55e;
    font-size: 0.85rem;
}

/* comparison table */
.comparison-section {
    padding: 96px 0;
    background: var(--ink-raised);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.comparison-table {
    max-width: 860px;
    margin: 0 auto;
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 18px;
    overflow: hidden;
}

.comparison-row {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    border-bottom: 1px solid var(--line);
}

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

.comparison-row.header {
    background: #1c2b23;
}

.comparison-row.header .comparison-cell {
    color: #f1f2ec;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.95rem;
}

.comparison-row.comparison-highlight {
    background: rgba(33, 122, 79, 0.05);
}

.comparison-cell {
    padding: 14px 22px;
    font-size: 0.94rem;
    color: #44414e;
    display: flex;
    align-items: center;
}

.comparison-cell:nth-child(2),
.comparison-cell:nth-child(3) {
    justify-content: center;
    text-align: center;
}

.comparison-cell strong {
    color: var(--paper);
}

.check-icon {
    color: #22c55e;
    font-weight: 700;
}

.cross-icon {
    color: #ef4444;
    font-weight: 700;
}

/* FAQ grid variant (pricing/contact pages) */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    max-width: 920px;
    margin: 0 auto;
}

.faq-grid .faq-item {
    padding: 24px 26px;
}

.faq-question {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.02rem;
    margin-bottom: 10px;
    color: var(--paper);
}

.faq-answer {
    color: var(--paper-dim);
    font-size: 0.93rem;
    line-height: 1.6;
}

/* ---------- Features page ---------- */
.feature-section {
    padding: 88px 0;
}

.feature-section:nth-of-type(even) {
    background: var(--ink-raised);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.feature-grid.reverse {
    direction: rtl;
}

.feature-grid.reverse > * {
    direction: ltr;
}

.feature-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #e25207;
    background: rgba(33, 122, 79, 0.08);
    border: 1px solid rgba(33, 122, 79, 0.22);
    border-radius: 999px;
    padding: 6px 14px;
    margin-bottom: 18px;
}

.feature-content h2 {
    font-size: clamp(1.7rem, 3vw, 2.3rem);
    font-weight: 700;
    margin-bottom: 14px;
}

.feature-content p {
    color: var(--paper-dim);
    margin-bottom: 18px;
}

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

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 7px 0;
    color: #44414e;
    font-size: 0.96rem;
}

.feature-list li i.fas {
    color: #22c55e;
    margin-top: 4px;
    font-size: 0.85rem;
}

.feature-visual {
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 28px;
    box-shadow: 0 26px 60px -28px rgba(23, 20, 31, 0.18);
}

.feature-visual-header {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-bottom: 16px;
    margin-bottom: 16px;
    border-bottom: 1px solid var(--line);
}

.feature-visual-icon {
    width: 46px;
    height: 46px;
    border-radius: 13px;
    background: linear-gradient(135deg, var(--ember-hot), var(--ember-deep));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.1rem;
}

.feature-visual-title {
    font-family: var(--font-display);
    font-weight: 700;
}

.feature-visual-subtitle {
    font-size: 0.84rem;
    color: var(--paper-faint);
    font-family: var(--font-mono);
}

.demo-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.demo-item,
.demo-stat {
    background: #f1f2ec;
    border: 1px solid #eceae5;
    border-radius: 12px;
    padding: 14px;
    text-align: center;
}

.demo-stat .number,
.demo-item .number,
.demo-stat .value {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--ember-deep);
    display: block;
}

.demo-stat .label,
.demo-item .label {
    font-size: 0.78rem;
    color: var(--paper-faint);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.all-features {
    padding: 96px 0;
    background: var(--ink-raised);
    border-top: 1px solid var(--line);
}

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

.quick-feature {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 18px 20px;
    transition: border-color 0.2s ease, transform 0.2s ease;
}

.quick-feature:hover {
    border-color: rgba(33, 122, 79, 0.35);
    transform: translateY(-2px);
}

.quick-feature i.fas {
    color: var(--ember-deep);
    margin-top: 3px;
}

.quick-feature .text strong,
.quick-feature strong {
    display: block;
    font-weight: 700;
    margin-bottom: 3px;
    color: var(--paper);
}

.quick-feature .text p,
.quick-feature p {
    color: var(--paper-dim);
    font-size: 0.88rem;
    margin: 0;
}

/* ---------- About page ---------- */
.mission-section,
.story-section {
    padding: 88px 0;
}

.mission-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 56px;
    align-items: center;
}

.mission-content h2 {
    font-size: clamp(1.8rem, 3.2vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 16px;
}

.mission-content p {
    color: var(--paper-dim);
    margin-bottom: 14px;
}

.mission-visual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.mission-stat {
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 24px 20px;
    text-align: center;
}

.mission-stat .value {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 2rem;
    color: var(--ember-deep);
    display: block;
}

.mission-stat .label {
    font-size: 0.82rem;
    color: var(--paper-faint);
}

.values-section,
.believe-section {
    padding: 88px 0;
    background: var(--ink-raised);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

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

.value-card,
.believe-card {
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 26px;
    transition: border-color 0.25s ease, transform 0.25s ease;
}

.value-card:hover,
.believe-card:hover {
    border-color: rgba(33, 122, 79, 0.35);
    transform: translateY(-3px);
}

.value-icon,
.story-icon {
    width: 48px;
    height: 48px;
    border-radius: 13px;
    background: rgba(33, 122, 79, 0.09);
    border: 1px solid rgba(33, 122, 79, 0.22);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ember-deep);
    margin-bottom: 16px;
    font-size: 1.05rem;
}

.value-card h3,
.believe-card h3 {
    font-size: 1.12rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.value-card p,
.believe-card p {
    color: var(--paper-dim);
    font-size: 0.93rem;
}

.story-block {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 26px;
    margin-bottom: 16px;
}

.story-text h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.story-text p {
    color: var(--paper-dim);
    font-size: 0.95rem;
}

.cta-buttons {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-secondary {
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: #f1f2ec;
    background: transparent;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
}

/* ---------- Contact page ---------- */
.contact-section {
    padding: 72px 0 96px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 40px;
    align-items: start;
}

.contact-form-container {
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 34px;
    box-shadow: 0 26px 60px -32px rgba(23, 20, 31, 0.16);
}

.contact-form-container h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.contact-form .form-group {
    margin-bottom: 16px;
}

.contact-form label {
    display: block;
    font-size: 0.88rem;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--paper);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    box-sizing: border-box;
    padding: 12px 15px;
    border: 1px solid var(--line-strong);
    border-radius: 10px;
    font-size: 0.95rem;
    font-family: var(--font-body);
    background: #fbfbf8;
    color: var(--paper);
    transition: border-color 0.2s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: rgba(33, 122, 79, 0.6);
    background: #ffffff;
}

.contact-form [aria-invalid="true"] {
    border-color: #dc2626;
    background: #fff7f7;
}

.contact-form-status {
    min-height: 20px;
    margin-top: 12px;
    color: #9f1239;
    font-size: 0.9rem;
    line-height: 1.45;
}

.contact-info .info-card {
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 16px;
}

.info-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 10px 0;
}

.info-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(33, 122, 79, 0.09);
    border: 1px solid rgba(33, 122, 79, 0.22);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ember-deep);
    flex-shrink: 0;
}

.info-content h3,
.info-content strong {
    font-size: 0.98rem;
    font-weight: 700;
    color: var(--paper);
}

.info-content p,
.info-content a {
    color: var(--paper-dim);
    font-size: 0.9rem;
    text-decoration: none;
}

.info-content a:hover {
    color: var(--ember-deep);
}

/* ---------- Services page ---------- */
.services-section {
    padding: 88px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 18px;
    align-items: stretch;
}

.service-card {
    position: relative;
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 30px 28px;
    transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover {
    border-color: rgba(33, 122, 79, 0.4);
    transform: translateY(-4px);
    box-shadow: 0 24px 48px -24px rgba(33, 122, 79, 0.2);
}

.service-card.featured {
    background:
        linear-gradient(#ffffff, #ffffff) padding-box,
        linear-gradient(160deg, rgba(33, 122, 79, 0.6), rgba(23, 20, 31, 0.08) 38%, rgba(33, 122, 79, 0.3)) border-box;
    border: 1px solid transparent;
}

.service-badge {
    position: absolute;
    top: -12px;
    left: 24px;
    background: linear-gradient(135deg, var(--ember-hot), var(--ember-deep));
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 999px;
}

.service-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    background: rgba(33, 122, 79, 0.09);
    border: 1px solid rgba(33, 122, 79, 0.22);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ember-deep);
    font-size: 1.15rem;
    margin-bottom: 18px;
}

.service-card h3 {
    font-size: 1.18rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.service-card > p {
    color: var(--paper-dim);
    font-size: 0.93rem;
    margin-bottom: 16px;
}

.service-price {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.6rem;
    color: var(--ember-deep);
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 14px 0 0;
}

.service-features li {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    padding: 6px 0;
    color: #44414e;
    font-size: 0.92rem;
}

.service-features li i.fas {
    color: #22c55e;
    margin-top: 4px;
    font-size: 0.8rem;
}

.pricing-features li i.fas,
.feature-list li i.fas,
.service-features li i.fas {
    display: inline-flex;
    width: 15px;
    height: 15px;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.pricing-features li i.fas::before,
.feature-list li i.fas::before,
.service-features li i.fas::before {
    content: "";
    display: block;
    width: 15px;
    height: 15px;
    background: currentColor;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m20 6-11 11-5-5'/%3E%3C/svg%3E") center / contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m20 6-11 11-5-5'/%3E%3C/svg%3E") center / contain no-repeat;
}

.how-section,
.why-section {
    padding: 88px 0;
}

.how-section {
    background: var(--ink-raised);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.how-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.how-step {
    text-align: left;
}

.how-step .step-number {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 800;
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 1.5px rgba(33, 122, 79, 0.6);
    margin-bottom: 12px;
}

.how-step h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 7px;
}

.how-step p {
    color: var(--paper-dim);
    font-size: 0.9rem;
}

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

.why-card {
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 26px;
    text-align: center;
    transition: border-color 0.25s ease, transform 0.25s ease;
}

.why-card:hover {
    border-color: rgba(33, 122, 79, 0.35);
    transform: translateY(-3px);
}

.why-card i.fas {
    font-size: 1.6rem;
    color: var(--ember-deep);
    margin-bottom: 14px;
}

.why-card h3 {
    font-size: 1.08rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.why-card p {
    color: var(--paper-dim);
    font-size: 0.92rem;
}

/* footer variant used on about/contact (footer-content/footer-links) */
.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 32px;
    margin-bottom: 40px;
}

.footer-links {
    display: flex;
    gap: 48px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #a9bcb1;
    text-decoration: none;
    font-size: 0.92rem;
}

.footer-links a:hover {
    color: var(--ember-hot);
}

@media (max-width: 1024px) {
    .features-quick-grid,
    .values-grid,
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

@media (max-width: 768px) {
    .feature-grid,
    .mission-grid,
    .contact-grid,
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .feature-grid.reverse {
        direction: ltr;
    }

    .features-quick-grid,
    .values-grid,
    .why-grid,
    .how-grid,
    .demo-stats {
        grid-template-columns: 1fr;
    }

    .contact-form .form-row {
        grid-template-columns: 1fr;
    }

    .comparison-cell {
        padding: 11px 12px;
        font-size: 0.85rem;
    }
}


/* ============================================================
   Product showcase (homepage) - CSS-built dashboard in a frame
   ============================================================ */

.product-showcase {
    padding: 104px 0;
    background: var(--ink-raised);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.browser-frame {
    max-width: 1020px;
    margin: 0 auto;
    background: #ffffff;
    border: 1px solid var(--line-strong);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 40px 90px -36px rgba(23, 20, 31, 0.3);
}

.browser-bar {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 12px 16px;
    background: #f1f2ec;
    border-bottom: 1px solid var(--line);
}

.browser-bar i {
    width: 11px;
    height: 11px;
    border-radius: 50%;
}

.browser-bar i:nth-child(1) { background: #f87171; }
.browser-bar i:nth-child(2) { background: #fbbf24; }
.browser-bar i:nth-child(3) { background: #34d399; }

.browser-url {
    margin-left: 14px;
    font-family: var(--font-mono);
    font-size: 0.76rem;
    color: var(--paper-faint);
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 4px 14px;
}

.app-mock {
    display: grid;
    grid-template-columns: 216px 1fr;
}

.app-mock-side {
    background: #1c2b23;
    padding: 20px 12px;
}

.app-mock-brand {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.05rem;
    color: #f1f2ec;
    padding: 0 12px 16px;
}

.app-mock-brand span {
    color: var(--ember);
}

.app-mock-nav div {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 12px;
    border-radius: 9px;
    color: #a9bcb1;
    font-size: 0.88rem;
    margin-bottom: 2px;
}

.app-mock-nav div.active {
    background: linear-gradient(135deg, var(--ember-hot), var(--ember-deep));
    color: #fff;
    font-weight: 600;
}

.app-mock-nav svg {
    flex-shrink: 0;
    opacity: 0.85;
}

.app-mock-main {
    padding: 22px;
    background: #fbfbf8;
}

.app-mock-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.02rem;
    margin-bottom: 14px;
    color: var(--paper);
}

.app-stat-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-bottom: 14px;
}

.app-stat {
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 14px 16px;
}

.app-stat .k {
    font-family: var(--font-mono);
    font-size: 0.66rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--paper-faint);
    display: block;
    margin-bottom: 6px;
}

.app-stat .v {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.55rem;
    line-height: 1;
    color: var(--paper);
}

.app-stat .d {
    font-size: 0.74rem;
    font-weight: 600;
    color: #16a34a;
    margin-left: 7px;
}

.app-activity {
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 6px 16px;
}

.app-activity div {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 0;
    border-bottom: 1px solid rgba(23, 20, 31, 0.05);
    font-size: 0.88rem;
    color: #44414e;
}

.app-activity div:last-child {
    border-bottom: none;
}

.app-activity .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--ember);
    flex-shrink: 0;
}

.app-activity .dot.green { background: #22c55e; }
.app-activity .dot.blue { background: #3b82f6; }

.app-activity .t {
    margin-left: auto;
    font-family: var(--font-mono);
    font-size: 0.72rem;
    color: var(--paper-faint);
    white-space: nowrap;
}

.showcase-caption {
    text-align: center;
    font-size: 0.84rem;
    color: var(--paper-faint);
    margin-top: 18px;
}

/* outline buttons inside the dark CTA band need light colors */
.cta-section .btn-outline {
    border-color: rgba(255, 255, 255, 0.35);
    color: #f1f2ec;
}

.cta-section .btn-outline:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.55);
}

/* assurance strip */
.assurance-bar {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 30px;
    margin-top: 36px;
    font-size: 0.88rem;
    color: var(--paper-dim);
}

.assurance-bar span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.assurance-bar svg {
    color: #16a34a;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .app-mock {
        grid-template-columns: 1fr;
    }

    .app-mock-side {
        display: none;
    }

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

    .app-activity .t {
        display: none;
    }
}


/* ---------- Pricing calculator ---------- */
.calc-section {
    padding: 0 0 96px;
}

.calc-card {
    max-width: 640px;
    margin: 0 auto;
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 34px 36px;
    box-shadow: 0 26px 60px -32px rgba(23, 20, 31, 0.14);
}

.calc-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 12px;
}

.calc-row label {
    font-weight: 600;
    color: var(--paper);
    font-size: 0.98rem;
}

.calc-leads {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.7rem;
    color: var(--ember-deep);
}

.calc-card input[type="range"] {
    width: 100%;
    accent-color: #1a6440;
    margin: 4px 0 26px;
    cursor: pointer;
}

.calc-results {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 18px;
}

.calc-stat {
    background: #f1f2ec;
    border: 1px solid #eceae5;
    border-radius: 14px;
    padding: 18px;
    text-align: center;
}

.calc-stat.calc-win {
    background: rgba(33, 122, 79, 0.06);
    border-color: rgba(33, 122, 79, 0.3);
}

.calc-stat .k {
    display: block;
    font-size: 0.78rem;
    color: var(--paper-faint);
    margin-bottom: 8px;
}

.calc-stat .v {
    display: block;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 2rem;
    line-height: 1;
    color: var(--paper);
}

.calc-stat.calc-win .v {
    color: var(--ember-deep);
}

.calc-stat .s {
    display: block;
    font-size: 0.78rem;
    color: var(--paper-faint);
    margin-top: 6px;
}

.calc-note {
    text-align: center;
    font-size: 0.84rem;
    color: var(--paper-faint);
    margin: 0;
}

@media (max-width: 600px) {
    .calc-results {
        grid-template-columns: 1fr;
    }
}

/* ---------- Founder note ---------- */
.founder-note {
    padding: 96px 0;
}

.founder-note blockquote {
    max-width: 740px;
    margin: 0 auto;
    text-align: center;
    border: none;
    padding: 0;
}

.founder-note .quote-mark {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 800;
    line-height: 0.6;
    color: var(--ember);
    display: block;
    margin-bottom: 18px;
}

.founder-note p {
    font-family: var(--font-display);
    font-size: clamp(1.25rem, 2.4vw, 1.7rem);
    font-weight: 600;
    line-height: 1.45;
    letter-spacing: 0;
    color: var(--paper);
    margin-bottom: 22px;
}

.founder-note cite {
    font-style: normal;
    font-family: var(--font-mono);
    font-size: 0.8rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--paper-dim);
}

.founder-note cite b {
    color: #e25207;
    font-weight: 600;
}

@media (max-width: 768px) {
    .hero.page-hero,
    .page-hero {
        padding: 42px 0 30px;
    }

    .page-hero h1 {
        font-size: 2.08rem;
        line-height: 1.08;
        margin-bottom: 14px;
    }

    .page-hero p,
    .page-hero .lead {
        font-size: 1rem;
        line-height: 1.55;
    }

    .services-section,
    .how-section,
    .why-section,
    .pricing-section,
    .comparison-section,
    .calc-section,
    .contact-section,
    .mission-section,
    .values-section,
    .story-section,
    .believe-section,
    .legal-section {
        padding-top: 54px;
        padding-bottom: 54px;
    }
}

/* =====================================================================
   Homepage v3 — green redesign (2026-07 design handoff)
   Sections: hero grid, stat chips, integrations strip, video, timeline,
   handles cards + control callout, testimonials, pricing split, FAQ,
   dark audit band. 1140px content width per handoff.
   ===================================================================== */

.hp-shell { max-width: 1140px; margin: 0 auto; padding: 0 32px; }

/* Hero */
.hp-hero {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 64px;
    align-items: center;
    padding: 80px 0 64px;
}
.hp-hero-copy { display: flex; flex-direction: column; gap: 28px; }
.hp-hero-copy h1 {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: clamp(42px, 5.2vw, 64px);
    line-height: 1.04;
    letter-spacing: -0.025em;
    margin: 0;
    text-wrap: pretty;
}
.hp-hero-sub {
    font-size: 19px;
    line-height: 1.6;
    margin: 0;
    max-width: 46ch;
    color: var(--paper);
    opacity: 0.78;
}
.hp-hero-cta { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.hp-hero-micro { font-size: 14px; opacity: 0.6; }
.hp-btn {
    display: inline-block;
    color: #fff;
    background: var(--ember);
    text-decoration: none;
    padding: 16px 30px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 17px;
    border: none;
    cursor: pointer;
    font-family: inherit;
    transition: filter 0.15s ease;
}
.hp-btn:hover { filter: brightness(0.92); }
.hp-btn-sm { padding: 10px 20px; border-radius: 8px; font-size: 15px; }

.hp-stats { display: flex; align-items: center; gap: 18px; padding-top: 8px; flex-wrap: wrap; }
.hp-stat span { max-width: 19ch; }
.hp-stat { display: flex; flex-direction: column; gap: 2px; }
.hp-stat strong {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 26px;
    color: var(--ember);
}
.hp-stat span { font-size: 13px; opacity: 0.65; }
.hp-stat-divider { width: 1px; height: 40px; background: var(--line); }

.hp-phone-wrap { display: flex; justify-content: center; }
.hp-phone {
    width: 340px;
    height: 560px;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 32px 64px -24px rgba(15, 30, 22, 0.35);
    border: 1px solid var(--line);
    background: #fff;
}
.hp-phone img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Integrations strip */
.hp-integrations { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--ink-raised); }
.hp-integrations-inner {
    max-width: 1140px;
    margin: 0 auto;
    padding: 28px 32px;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}
.hp-integrations-label {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    opacity: 0.5;
    margin-right: 12px;
}
.hp-chip {
    font-size: 14px;
    font-weight: 600;
    padding: 6px 14px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--ink);
    opacity: 0.8;
}

/* Video */
.hp-video { padding: 88px 0 32px; display: flex; flex-direction: column; gap: 28px; align-items: center; }
.hp-video h2 {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 38px;
    letter-spacing: -0.02em;
    margin: 0;
    text-align: center;
    text-wrap: pretty;
}
.hp-video-frame {
    position: relative;
    width: 100%;
    max-width: 960px;
    aspect-ratio: 16 / 9;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 40px 80px -32px rgba(15, 30, 22, 0.4);
    border: 1px solid var(--line);
    background: var(--paper);
}
.hp-video-frame img, .hp-video-frame video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hp-video-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to top, rgba(10, 20, 14, 0.45), rgba(10, 20, 14, 0.05) 45%);
    pointer-events: none;
}
.hp-video-play {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    background: var(--ember);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 32px rgba(10, 20, 14, 0.35);
}
.hp-video-play::after {
    content: '';
    width: 0;
    height: 0;
    border-left: 26px solid #fff;
    border-top: 16px solid transparent;
    border-bottom: 16px solid transparent;
    margin-left: 7px;
}
.hp-video-caption {
    position: absolute;
    left: 24px;
    bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-weight: 600;
    font-size: 15px;
    pointer-events: none;
}
.hp-video-caption b { font-family: var(--font-display); font-weight: 600; }
.hp-video-caption span { opacity: 0.7; font-weight: 400; }

/* Timeline */
.hp-timeline { padding: 88px 0; }
.hp-timeline-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 72px; align-items: start; }
.hp-timeline-intro { position: sticky; top: 110px; display: flex; flex-direction: column; gap: 20px; }
.hp-eyebrow {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ember);
}
.hp-timeline-intro h2 {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 40px;
    letter-spacing: -0.02em;
    line-height: 1.08;
    margin: 0;
    text-wrap: pretty;
}
.hp-timeline-intro p { font-size: 17px; line-height: 1.65; margin: 0; opacity: 0.75; }
.hp-steps { display: flex; flex-direction: column; }
.hp-step { display: grid; grid-template-columns: 90px 24px 1fr; gap: 20px; }
.hp-step-time {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 15px;
    color: var(--ember);
    text-align: right;
    padding-top: 2px;
}
.hp-step-marker { display: flex; flex-direction: column; align-items: center; }
.hp-step-marker::before {
    content: '';
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--ember);
    flex-shrink: 0;
    margin-top: 5px;
}
.hp-step-marker::after { content: ''; width: 2px; flex: 1; background: var(--line); }
.hp-step:last-child .hp-step-marker::after { background: transparent; }
.hp-step-body { padding-bottom: 36px; display: flex; flex-direction: column; gap: 6px; }
.hp-step-body h3 { font-family: var(--font-display); font-weight: 600; font-size: 19px; margin: 0; }
.hp-step-body p { font-size: 15px; line-height: 1.6; margin: 0; opacity: 0.72; }

/* What it handles */
.hp-handles { border-top: 1px solid var(--line); background: var(--ink-raised); }
.hp-handles-inner { max-width: 1140px; margin: 0 auto; padding: 88px 32px; display: flex; flex-direction: column; gap: 48px; }
.hp-handles-inner > h2 {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 38px;
    letter-spacing: -0.02em;
    margin: 0;
    max-width: 24ch;
    text-wrap: pretty;
}
.hp-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.hp-card {
    background: var(--ink);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.hp-card-tag {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 14px;
    color: var(--ember);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.hp-card h3 { font-family: var(--font-display); font-weight: 600; font-size: 20px; margin: 0; }
.hp-card p { font-size: 14.5px; line-height: 1.6; margin: 0; opacity: 0.72; }
.hp-control {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px 26px;
    border: 1px solid var(--accent-soft-line);
    background: var(--accent-soft);
    border-radius: 14px;
}
.hp-control-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--ember);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 18px;
    flex-shrink: 0;
}
.hp-control p { margin: 0; font-size: 16px; line-height: 1.55; }

/* Testimonials */
.hp-proof { padding: 88px 0; display: flex; flex-direction: column; gap: 48px; }
.hp-proof-head { display: flex; flex-direction: column; gap: 14px; }
.hp-proof-head h2 {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 38px;
    letter-spacing: -0.02em;
    margin: 0;
    text-wrap: pretty;
}
.hp-quotes { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.hp-quote {
    margin: 0;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 36px 32px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    background: var(--ink);
}
.hp-quote blockquote {
    margin: 0;
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 21px;
    line-height: 1.45;
    letter-spacing: -0.01em;
    text-wrap: pretty;
}
.hp-quote figcaption { display: flex; align-items: center; gap: 14px; margin-top: auto; }
.hp-quote-logo {
    width: 56px;
    height: 56px;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--line);
    background: #fff;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hp-quote-logo img { width: 100%; height: 100%; object-fit: contain; padding: 4px; }
.hp-quote-name { display: flex; flex-direction: column; gap: 2px; }
.hp-quote-name b { font-weight: 600; font-size: 15px; }
.hp-quote-name span { font-size: 13.5px; opacity: 0.6; }
.hp-founder { margin: 0; padding: 0 32px; display: flex; flex-direction: column; gap: 12px; align-items: center; text-align: center; }
.hp-founder blockquote { margin: 0; font-size: 17px; line-height: 1.6; opacity: 0.78; max-width: 62ch; text-wrap: pretty; }
.hp-founder figcaption { font-size: 14px; font-weight: 600; }
.hp-founder figcaption span { opacity: 0.55; font-weight: 400; }

/* Pricing */
.hp-pricing { border-top: 1px solid var(--line); background: var(--ink-raised); }
.hp-pricing-inner {
    max-width: 1140px;
    margin: 0 auto;
    padding: 88px 32px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.hp-pricing-copy { display: flex; flex-direction: column; gap: 20px; }
.hp-pricing-copy h2 { font-family: var(--font-display); font-weight: 600; font-size: 40px; letter-spacing: -0.02em; margin: 0; }
.hp-pricing-copy > p { font-size: 17px; line-height: 1.65; margin: 0; opacity: 0.75; max-width: 44ch; }
.hp-pricing-list { margin: 0; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 12px; font-size: 15.5px; }
.hp-pricing-list li { display: flex; gap: 10px; align-items: baseline; }
.hp-pricing-list li::before { content: '\2713'; color: var(--ember); font-weight: 700; }
.hp-price-card {
    background: var(--paper);
    color: var(--ink);
    border-radius: 20px;
    padding: 44px 40px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    box-shadow: 0 32px 64px -28px rgba(15, 30, 22, 0.45);
}
.hp-price-label { font-size: 14px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; opacity: 0.6; }
.hp-price-row { display: flex; align-items: baseline; gap: 8px; }
.hp-price-row strong {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 60px;
    letter-spacing: -0.03em;
}
.hp-price-row span { font-size: 17px; opacity: 0.65; }
.hp-price-detail { display: flex; flex-direction: column; gap: 8px; font-size: 15.5px; line-height: 1.55; opacity: 0.85; }
.hp-btn-light {
    display: block;
    color: var(--paper);
    background: var(--ink);
    text-decoration: none;
    padding: 15px 28px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 16px;
    text-align: center;
    transition: filter 0.15s ease;
}
.hp-btn-light:hover { filter: brightness(0.95); }
.hp-price-micro { font-size: 13px; opacity: 0.55; text-align: center; }

/* FAQ */
.hp-faq { max-width: 780px; margin: 0 auto; padding: 88px 32px; }
.hp-faq h2 { font-family: var(--font-display); font-weight: 600; font-size: 36px; letter-spacing: -0.02em; margin: 0 0 40px; }
.hp-faq-list { display: flex; flex-direction: column; border-top: 1px solid var(--line); }
.hp-faq-item { border-bottom: 1px solid var(--line); }
.hp-faq-item summary {
    cursor: pointer;
    padding: 22px 0;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 18px;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}
.hp-faq-item summary::-webkit-details-marker { display: none; }
.hp-faq-item summary::after { content: '+'; color: var(--ember); font-size: 22px; font-weight: 400; flex-shrink: 0; }
.hp-faq-item[open] summary::after { content: '\2212'; }
.hp-faq-item p { margin: 0; padding: 0 0 24px; font-size: 15.5px; line-height: 1.65; opacity: 0.75; max-width: 60ch; }

/* Audit form band */
.hp-audit { border-top: 1px solid var(--line); background: var(--paper); color: var(--ink); }
.hp-audit-inner {
    max-width: 1140px;
    margin: 0 auto;
    padding: 96px 32px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.hp-audit-copy { display: flex; flex-direction: column; gap: 18px; }
.hp-audit-copy h2 {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 42px;
    letter-spacing: -0.02em;
    margin: 0;
    text-wrap: pretty;
}
.hp-audit-copy p { font-size: 17px; line-height: 1.65; margin: 0; opacity: 0.75; max-width: 44ch; }
.hp-audit-form { display: flex; flex-direction: column; gap: 14px; }
.hp-audit-form input {
    padding: 15px 18px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.07);
    color: inherit;
    font-family: inherit;
    font-size: 15.5px;
}
.hp-audit-form input::placeholder { color: inherit; opacity: 0.55; }
.hp-audit-form input:focus { outline: 2px solid var(--ember-hot); outline-offset: 1px; }
.hp-audit-status { font-size: 14px; min-height: 20px; margin: 0; opacity: 0.85; }

/* Footer tune-up: dark ink, single row per handoff */
footer { background: var(--paper); }

/* Responsive */
@media (max-width: 960px) {
    .hp-hero { grid-template-columns: 1fr; gap: 48px; padding: 56px 0 48px; }
    .hp-timeline-grid { grid-template-columns: 1fr; gap: 40px; }
    .hp-timeline-intro { position: static; }
    .hp-cards { grid-template-columns: 1fr 1fr; }
    .hp-quotes { grid-template-columns: 1fr; }
    .hp-pricing-inner, .hp-audit-inner { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 640px) {
    .hp-shell, .hp-integrations-inner, .hp-handles-inner, .hp-pricing-inner, .hp-audit-inner, .hp-faq { padding-left: 20px; padding-right: 20px; }
    .hp-cards { grid-template-columns: 1fr; }
    .hp-step { grid-template-columns: 64px 20px 1fr; gap: 12px; }
    .hp-step-time { font-size: 13px; }
    .hp-phone { width: 300px; height: 494px; }
    .hp-price-row strong { font-size: 48px; }
    .hp-video h2, .hp-handles-inner > h2, .hp-proof-head h2 { font-size: 30px; }
    .hp-timeline-intro h2, .hp-pricing-copy h2, .hp-audit-copy h2 { font-size: 32px; }
}

/* Simple single-row footer variant (homepage v3) */
.hp-footer-row {
    max-width: 1140px;
    margin: 0 auto;
    padding: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    gap: 16px;
    flex-wrap: wrap;
}
.hp-footer-row .logo { font-size: 18px; }
.hp-footer-links { display: flex; gap: 24px; opacity: 0.65; }
.hp-footer-links a { color: inherit; text-decoration: none; }
.hp-footer-links a:hover { text-decoration: underline; }
.hp-footer-copy { opacity: 0.5; }

/* Why Autoprop — switch-vs-add comparison (v3 homepage) */
.hp-compare { padding: 88px 0; }
.hp-compare-head { display: flex; flex-direction: column; gap: 14px; margin-bottom: 48px; }
.hp-compare-head h2 {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 38px;
    letter-spacing: -0.02em;
    margin: 0;
    text-wrap: pretty;
}
.hp-compare-head p { font-size: 17px; line-height: 1.65; margin: 0; opacity: 0.75; max-width: 58ch; }
.hp-compare-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: stretch; }
.hp-compare-col {
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 34px 32px;
    background: var(--ink);
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.hp-compare-col.hp-compare-us {
    border: 1px solid var(--accent-soft-line);
    background: var(--accent-soft);
}
.hp-compare-col h3 {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 21px;
    margin: 0 0 4px;
}
.hp-compare-col ul { margin: 0; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 14px; font-size: 15.5px; line-height: 1.55; }
.hp-compare-col li { display: flex; gap: 12px; align-items: baseline; opacity: 0.85; }
.hp-compare-col li::before { content: '\2715'; font-size: 13px; font-weight: 700; opacity: 0.45; flex-shrink: 0; }
.hp-compare-us li::before { content: '\2713'; color: var(--ember); opacity: 1; }
@media (max-width: 800px) { .hp-compare-grid { grid-template-columns: 1fr; } }

/* Live platform proof strip */
.hp-live {
    max-width: 1140px;
    margin: 0 auto;
    padding: 18px 32px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 14.5px;
    font-weight: 500;
    flex-wrap: wrap;
    text-align: center;
}
.hp-live-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--ember-hot);
    box-shadow: 0 0 0 0 rgba(43, 143, 94, 0.5);
    animation: hp-live-pulse 2.4s infinite;
    flex-shrink: 0;
}
.hp-live-note { opacity: 0.55; font-weight: 400; }
@keyframes hp-live-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(43, 143, 94, 0.45); }
    50% { box-shadow: 0 0 0 8px rgba(43, 143, 94, 0); }
}
@media (prefers-reduced-motion: reduce) { .hp-live-dot { animation: none; } }
