/* devani-site-styles:{"backgroundColor":"#ffffff","textColor":"#1c1c1e","fontFamily":"'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif","baseFontSize":"16px","headingFontFamily":"'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif","headingColor":"#1c1c1e","linkColor":"#1c1c1e","containerMaxWidth":"1120px","customCss":""} */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
    --ink: #1c1c1e;
    --ink-2: #3a3a3c;
    --muted: #6b6b70;
    --faint: #8e8e93;
    --bg: #ffffff;
    --bg-2: #f6f1e9;
    --bg-3: #faf7f1;
    --beige: #f6f1e9;
    --beige-deep: #efe7da;
    --hair: #e7e0d4;
    --hair-2: #efe9de;
    /* Pastel accents */
    --blue: #a9c7e8;
    --blue-soft: #eaf2fb;
    --blue-ink: #3f6790;
    --pink: #f3c4d4;
    --pink-soft: #fcecf1;
    --pink-ink: #b25976;
    --orange: #f5c9a0;
    --orange-soft: #fdf0e3;
    --orange-ink: #b9743a;
    --accent: #1c1c1e;
    --radius: 4px;
    --radius-lg: 10px;
    --radius-xl: 16px;
    --shadow-sm: 0 1px 2px rgba(40,33,24,0.04), 0 1px 3px rgba(40,33,24,0.06);
    --shadow-md: 0 10px 30px rgba(40,33,24,0.07);
    --shadow-lg: 0 24px 60px rgba(40,33,24,0.10);
}

* { box-sizing: border-box; }

body {
    margin: 0;
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--ink);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a { color: var(--ink); text-decoration: none; }
img { max-width: 100%; height: auto; }

/* ---------- Layout primitives ---------- */
.section { padding: 96px 24px; }
.section.tight { padding: 64px 24px; }
.container { max-width: 1120px; margin: 0 auto; }
.container.narrow { max-width: 820px; }

.eyebrow {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--ink);
    margin-bottom: 16px;
}
.section-head { text-align: center; max-width: 660px; margin: 0 auto 56px; }
.section-head h2 {
    font-size: clamp(1.9rem, 4vw, 2.7rem);
    margin: 0 0 16px;
    font-weight: 700;
    letter-spacing: -0.025em;
    line-height: 1.12;
}
.section-head p {
    margin: 0;
    font-size: 1.12rem;
    color: var(--muted);
    line-height: 1.6;
}

h1, h2, h3, h4 { color: var(--ink); letter-spacing: -0.02em; }

/* ---------- Buttons (black / white) ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 24px;
    background: var(--ink);
    color: #ffffff;
    border: 1px solid var(--ink);
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.98rem;
    line-height: 1.2;
    cursor: pointer;
    transition: background 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}
.btn:hover { background: #000; border-color: #000; transform: translateY(-1px); box-shadow: 0 8px 20px rgba(28,28,30,0.18); }
.btn.secondary {
    background: #ffffff;
    color: var(--ink);
    border: 1px solid var(--hair);
}
.btn.secondary:hover { background: var(--bg-2); border-color: var(--beige-deep); box-shadow: none; }
.btn.lg { padding: 16px 30px; font-size: 1.04rem; }
.btn.on-dark { background: #ffffff; color: var(--ink); border-color: #ffffff; }
.btn.on-dark:hover { background: #f0ece4; border-color: #f0ece4; }
.btn.on-dark.secondary { background: transparent; color: #ffffff; border-color: rgba(255,255,255,0.32); }
.btn.on-dark.secondary:hover { background: rgba(255,255,255,0.08); }

.cta-row { display: flex; gap: 12px; flex-wrap: wrap; }
.cta-row.center { justify-content: center; }
.cta-note { font-size: 0.86rem; color: var(--faint); margin-top: 16px; }

/* ---------- Hero ---------- */
.hero { text-align: center; padding-top: 104px; padding-bottom: 88px; }
.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px 6px 12px;
    background: var(--blue-soft);
    border: 1px solid var(--blue);
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--blue-ink);
    margin-bottom: 28px;
}
.hero-tag .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--blue-ink); }
.hero h1 {
    font-size: clamp(2.5rem, 6vw, 4.1rem);
    line-height: 1.04;
    margin: 0 auto 22px;
    font-weight: 800;
    letter-spacing: -0.035em;
    max-width: 900px;
}
.hero h1 .grad {
    background: linear-gradient(95deg, var(--blue-ink), var(--pink-ink) 55%, var(--orange-ink));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hero p.lead {
    max-width: 600px;
    margin: 0 auto 34px;
    font-size: 1.22rem;
    color: var(--muted);
    line-height: 1.55;
}

/* ---------- AI chat → form visual ---------- */
.ai-visual {
    max-width: 940px;
    margin: 64px auto 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: stretch;
    text-align: left;
}
.chat-card, .form-card {
    background: #ffffff;
    border: 1px solid var(--hair);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    overflow: hidden;
}
.card-bar {
    display: flex; align-items: center; gap: 9px;
    padding: 12px 16px;
    border-bottom: 1px solid var(--hair-2);
    background: var(--bg-3);
    font-size: 0.82rem; font-weight: 600; color: var(--ink-2);
}
.card-bar .dots { display: flex; gap: 5px; margin-right: 4px; }
.card-bar .dots i { width: 9px; height: 9px; border-radius: 50%; background: var(--beige-deep); display: block; }
/* AI brand mark in card bars and bubbles */
.ai-mark { width: 20px; height: 20px; flex: 0 0 auto; display: inline-flex; align-items: center; justify-content: center; }
.ai-mark svg { display: block; width: 100%; height: 100%; }
.chat-body { padding: 20px; display: flex; flex-direction: column; gap: 14px; }
.bubble { padding: 12px 15px; border-radius: 14px; font-size: 0.95rem; line-height: 1.45; max-width: 90%; }
.bubble.user { align-self: flex-end; background: var(--ink); color: #fff; border-bottom-right-radius: 4px; }
.bubble.ai { align-self: flex-start; background: var(--blue-soft); color: var(--ink-2); border-bottom-left-radius: 4px; }
.bubble.ai .tiny { display: block; font-size: 0.78rem; color: var(--blue-ink); margin-top: 6px; }
.form-card { display: flex; flex-direction: column; }
.form-preview { padding: 28px 24px; flex: 1; display: flex; flex-direction: column; justify-content: center; }
.form-preview .q-num { font-size: 0.8rem; font-weight: 600; color: var(--pink-ink); margin-bottom: 10px; }
.form-preview .q-text { font-size: 1.3rem; font-weight: 600; letter-spacing: -0.02em; margin: 0 0 20px; line-height: 1.25; }
.form-preview .q-opt {
    display: flex; align-items: center; gap: 10px;
    padding: 12px 14px; border: 1px solid var(--hair); border-radius: var(--radius);
    margin-bottom: 9px; font-size: 0.95rem; color: var(--ink-2);
    transition: border-color 0.15s, background 0.15s;
}
.form-preview .q-opt .k { width: 22px; height: 22px; border: 1px solid var(--hair); border-radius: 4px; display: inline-flex; align-items: center; justify-content: center; font-size: 0.72rem; font-weight: 700; color: var(--faint); }
.form-preview .q-opt.sel { border-color: var(--pink); background: var(--pink-soft); color: var(--pink-ink); }
.form-preview .q-opt.sel .k { background: var(--pink); border-color: var(--pink); color: #fff; }
.form-foot { padding: 14px 24px; border-top: 1px solid var(--hair-2); display: flex; align-items: center; justify-content: space-between; font-size: 0.82rem; color: var(--faint); }
.form-foot .ok { display: inline-flex; align-items: center; gap: 6px; color: var(--pink-ink); font-weight: 600; }

/* ---------- Logos / trust strip ---------- */
.trust { padding: 40px 24px; border-top: 1px solid var(--hair-2); border-bottom: 1px solid var(--hair-2); background: var(--beige); }
.trust p { text-align: center; font-size: 0.84rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); margin: 0 0 22px; }
.trust-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; }
.trust-pill { display: inline-flex; align-items: center; gap: 9px; padding: 9px 18px; background: #fff; border: 1px solid var(--hair); border-radius: 999px; font-weight: 600; font-size: 0.92rem; color: var(--ink-2); }
.trust-pill .b { width: 20px; height: 20px; border-radius: 5px; background: var(--ink); color: #fff; display: inline-flex; align-items: center; justify-content: center; font-size: 0.66rem; font-weight: 800; }
.trust-pill:nth-child(1) .b { background: var(--blue); color: var(--blue-ink); }
.trust-pill:nth-child(2) .b { background: var(--pink); color: var(--pink-ink); }
.trust-pill:nth-child(3) .b { background: var(--orange); color: var(--orange-ink); }
.trust-pill:nth-child(4) .b { background: var(--blue); color: var(--blue-ink); }
.trust-pill:nth-child(5) .b { background: var(--pink); color: var(--pink-ink); }

/* ---------- Section variants ---------- */
.section.soft { background: var(--beige); border-top: 1px solid var(--hair-2); border-bottom: 1px solid var(--hair-2); }
.section.dark { background: var(--ink); color: #f2f2f4; }
.section.dark h2, .section.dark h3 { color: #fff; }
.section.dark .section-head p { color: #c4c0b8; }
.section.dark .eyebrow { color: var(--blue); }

/* ---------- AI chat workflow steps ---------- */
.chat-flow { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.chat-flow .bubble { max-width: 80%; font-size: 1rem; box-shadow: var(--shadow-sm); display: flex; gap: 10px; align-items: flex-start; }
.chat-flow .bubble .ai-mark { margin-top: 1px; }
.chat-flow .bubble.user { background: var(--ink); color: #fff; }
.chat-flow .bubble.ai { background: #fff; border: 1px solid var(--hair); color: var(--ink-2); }
.chat-flow .bubble.ai strong { color: var(--ink); }
.chat-flow .bubble.ai.claude { background: var(--orange-soft); border-color: var(--orange); }
.chat-flow .bubble.user .who { font-weight: 700; opacity: 0.65; font-size: 0.82rem; }

/* ---------- Feature grid ---------- */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 16px;
}
.feature-card {
    padding: 28px 26px;
    background: #ffffff;
    border: 1px solid var(--hair);
    border-radius: var(--radius-xl);
    text-align: left;
    transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}
.feature-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--beige-deep); }
.feature-icon {
    display: inline-flex; align-items: center; justify-content: center;
    width: 44px; height: 44px; border-radius: 11px;
    background: var(--blue-soft); color: var(--blue-ink);
    margin-bottom: 18px;
}
.feature-icon svg { display: block; }
/* rotate accent colour across the grid */
.feature-card:nth-child(3n+1) .feature-icon { background: var(--blue-soft); color: var(--blue-ink); }
.feature-card:nth-child(3n+2) .feature-icon { background: var(--pink-soft); color: var(--pink-ink); }
.feature-card:nth-child(3n+3) .feature-icon { background: var(--orange-soft); color: var(--orange-ink); }
.feature-card h3 { margin: 0 0 8px; font-size: 1.1rem; font-weight: 700; }
.feature-card p { margin: 0; color: var(--muted); font-size: 0.96rem; line-height: 1.55; }

/* ---------- Split feature rows ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split.reverse .split-media { order: -1; }
.split-text h2 { font-size: clamp(1.7rem, 3.4vw, 2.3rem); margin: 0 0 16px; font-weight: 700; letter-spacing: -0.025em; line-height: 1.15; }
.split-text p { color: var(--muted); font-size: 1.06rem; line-height: 1.6; margin: 0 0 20px; }
.check-list { list-style: none; margin: 0 0 24px; padding: 0; }
.check-list li { display: flex; align-items: flex-start; gap: 11px; padding: 7px 0; font-size: 1rem; color: var(--ink-2); }
.check-list li svg { flex: 0 0 auto; margin-top: 2px; color: var(--pink-ink); }
.split-media {
    background: #fff; border: 1px solid var(--hair); border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md); overflow: hidden;
}

/* ---------- Theme swatches ---------- */
.theme-row { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }
.theme-chip {
    width: 150px; border: 1px solid var(--hair); border-radius: var(--radius-lg);
    overflow: hidden; background: #fff; box-shadow: var(--shadow-sm);
}
.theme-chip .swatch { height: 78px; display: flex; align-items: flex-end; padding: 10px; }
.theme-chip .swatch span { width: 30px; height: 30px; border-radius: 50%; background: rgba(255,255,255,0.85); }
.theme-chip .label { padding: 10px 12px; font-size: 0.86rem; font-weight: 600; color: var(--ink-2); }

/* ---------- Pricing ---------- */
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: start; }
.price-card {
    background: #fff; border: 1px solid var(--hair); border-radius: var(--radius-xl);
    padding: 32px 28px; display: flex; flex-direction: column;
}
.price-card.featured { border-color: var(--ink); box-shadow: 0 0 0 1px var(--ink), var(--shadow-md); position: relative; }
.price-card .plan-badge { position: absolute; top: -12px; left: 28px; background: var(--ink); color: #fff; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; padding: 4px 11px; border-radius: 999px; }
.price-card h3 { margin: 0 0 6px; font-size: 1.2rem; font-weight: 700; }
.price-card .blurb { margin: 0 0 20px; color: var(--muted); font-size: 0.92rem; min-height: 38px; }
.price-card .price { font-size: 2.6rem; font-weight: 800; letter-spacing: -0.04em; line-height: 1; }
.price-card .price small { font-size: 0.95rem; font-weight: 500; color: var(--faint); letter-spacing: 0; }
.price-card .price-sub { font-size: 0.86rem; color: var(--faint); margin: 8px 0 24px; }
.price-card .btn { width: 100%; justify-content: center; margin-bottom: 24px; }
.price-card ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 11px; }
.price-card ul li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.94rem; color: var(--ink-2); line-height: 1.45; }
.price-card ul li svg { flex: 0 0 auto; margin-top: 2px; color: var(--pink-ink); }
.price-card ul li.muted { color: var(--faint); }

/* ---------- Final CTA ---------- */
.final-cta { text-align: center; }
.final-cta h2 { font-size: clamp(2rem, 4.5vw, 3rem); margin: 0 0 18px; font-weight: 800; letter-spacing: -0.03em; }
.final-cta p { font-size: 1.15rem; color: #c4c0b8; margin: 0 0 32px; }

/* ---------- Header chrome ---------- */
header {
    border-bottom: 1px solid var(--hair-2);
    background: rgba(255,255,255,0.82);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    position: sticky; top: 0; z-index: 50;
}
header nav {
    max-width: 1120px; margin: 0 auto;
    display: flex; align-items: center; gap: 28px;
    padding: 15px 24px;
}
.brand {
    font-weight: 800; font-size: 1.24rem; color: var(--ink) !important;
    letter-spacing: -0.04em; margin-right: auto;
    display: inline-flex; align-items: center; gap: 8px;
}
.brand .mark {
    width: 26px; height: 26px; border-radius: 6px;
    background: var(--ink); color: #fff;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 0.86rem; font-weight: 800;
}
header nav a:not(.brand):not(.btn) {
    color: var(--ink-2); font-weight: 500; font-size: 0.95rem;
    transition: color 0.15s ease;
}
header nav a:not(.brand):not(.btn):hover { color: var(--ink); }
header nav .btn { padding: 9px 18px; font-size: 0.92rem; }
header nav .nav-cta { margin-left: 4px; }

/* ---------- Footer ---------- */
footer {
    border-top: 1px solid var(--hair-2);
    padding: 56px 24px 40px;
    background: var(--beige);
}
.footer-inner { max-width: 1120px; margin: 0 auto; }
.footer-top { display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; margin-bottom: 40px; }
.footer-brand { max-width: 280px; }
.footer-brand .brand { margin-bottom: 12px; }
.footer-brand p { color: var(--muted); font-size: 0.92rem; margin: 0; line-height: 1.55; }
.footer-cols { display: flex; gap: 56px; flex-wrap: wrap; }
.footer-col h4 { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--faint); margin: 0 0 14px; }
.footer-col a { display: block; color: var(--ink-2); font-size: 0.94rem; padding: 4px 0; transition: color 0.15s; }
.footer-col a:hover { color: var(--ink); }
.footer-bottom { border-top: 1px solid var(--hair-2); padding-top: 22px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 0.85rem; color: var(--faint); }

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
    .ai-visual { grid-template-columns: 1fr; }
    .split { grid-template-columns: 1fr; gap: 32px; }
    .split.reverse .split-media { order: 0; }
    .price-grid { grid-template-columns: 1fr; }
    .section { padding: 68px 20px; }
    header nav { gap: 16px; }
    header nav a:not(.brand):not(.btn) { display: none; }
}

/* @devani:region embed-demo */
/* ---------- Live embedded form demo ---------- */
.embed-demo .section-head { margin-bottom: 40px; }
.embed-wrap {
    max-width: 720px;
    margin: 0 auto;
    background: #fff;
    border: 1px solid var(--hair);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}
.embed-wrap .embed-bar {
    display: flex; align-items: center; gap: 8px;
    padding: 12px 16px;
    border-bottom: 1px solid var(--hair-2);
    background: var(--bg-3);
    font-size: 0.82rem; font-weight: 600; color: var(--muted);
}
.embed-wrap .embed-bar .dots { display: flex; gap: 5px; }
.embed-wrap .embed-bar .dots i { width: 9px; height: 9px; border-radius: 50%; background: var(--beige-deep); display: block; }
.embed-wrap .embed-bar .live {
    margin-left: auto; display: inline-flex; align-items: center; gap: 6px;
    color: var(--pink-ink); font-weight: 700;
}
.embed-wrap .embed-bar .live::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--pink-ink); }
.embed-wrap iframe { display: block; width: 100%; height: 560px; border: 0; }
.embed-proof {
    text-align: center;
    margin: 26px auto 0;
    max-width: 560px;
    font-size: 0.96rem;
    color: var(--muted);
}
@media (max-width: 860px) {
    .embed-wrap iframe { height: 600px; }
}
/* @devani:endregion */
/* @devani:region mobile-nav */
/* ============================================================
   Mobile hamburger navigation
   ============================================================ */
.nav-burger { display: none; }
.nav-menu { display: flex; align-items: center; gap: 28px; margin-left: auto; }
.nav-menu .nav-cta { margin-left: 4px; }

@media (max-width: 860px) {
    .nav-burger {
        display: inline-flex;
        flex-direction: column;
        justify-content: center;
        gap: 5px;
        width: 44px; height: 44px;
        margin-left: auto;
        padding: 11px;
        border-radius: var(--radius);
        cursor: pointer;
    }
    .nav-burger span {
        display: block; width: 100%; height: 2px;
        background: var(--ink); border-radius: 2px;
        transition: transform 0.25s ease, opacity 0.2s ease;
    }

    .nav-menu {
        position: absolute;
        top: 100%; left: 0; right: 0;
        margin-left: 0;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 8px 20px 18px;
        background: rgba(255,255,255,0.98);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        border-bottom: 1px solid var(--hair-2);
        box-shadow: var(--shadow-md);
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        pointer-events: none;
        transition: max-height 0.3s ease, opacity 0.25s ease, padding 0.3s ease;
    }
    .nav-toggle:checked ~ .nav-menu {
        max-height: 80vh;
        opacity: 1;
        pointer-events: auto;
    }
    .nav-toggle:checked ~ .nav-burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .nav-toggle:checked ~ .nav-burger span:nth-child(2) { opacity: 0; }
    .nav-toggle:checked ~ .nav-burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    /* Re-show links inside the dropdown (base rule hides bare nav links) */
    .nav-menu a:not(.btn) {
        display: block !important;
        width: 100%;
        padding: 13px 4px;
        border-bottom: 1px solid var(--hair-2);
        font-size: 1rem;
    }
    .nav-menu .nav-cta {
        margin: 12px 0 0;
        width: 100%;
        justify-content: center;
    }
}
/* @devani:endregion */
