/* devani-site-styles:{"backgroundColor":"#fbfaf7","textColor":"#1c1f26","fontFamily":"'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif","baseFontSize":"17px","headingFontFamily":"'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif","headingColor":"#1c1f26","linkColor":"#3f9a91","containerMaxWidth":"1080px","customCss":""} */

* { box-sizing: border-box; }

:root {
    /* Light, airy canvas */
    --bg: #fbfaf7;
    --bg-2: #f3f1ec;
    --panel: #ffffff;
    --panel-2: #ffffff;
    --border: #e9e5dd;
    --border-2: #ddd8cd;
    --text: #1c1f26;
    --muted: #5d6470;
    --faint: #8d94a0;
    /* Soft pastel turquoise (used sparingly) */
    --accent: #7cccc4;
    --accent-2: #5bb8af;
    --accent-deep: #3f9a91;
    --accent-soft: #e4f4f1;
    --accent-ink: #1f4b46;
    --green: #5cb88a;
    /* Soft, restrained radii */
    --radius: 14px;
    --radius-sm: 10px;
    --radius-lg: 20px;
    --maxw: 1080px;
    --font: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --serif: 'Georgia', 'Times New Roman', serif;
    --mono: 'JetBrains Mono', ui-monospace, 'SF Mono', Menlo, monospace;
}

body {
    margin: 0;
    font-family: var(--font);
    font-size: 17px;
    line-height: 1.65;
    color: var(--text);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3 { letter-spacing: -0.02em; color: var(--text); margin: 0; font-weight: 600; }
h1 em, h2 em {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 400;
    letter-spacing: -0.01em;
    color: var(--accent-deep);
    -webkit-text-fill-color: var(--accent-deep);
}

/* --- Canonical Devani layout classes --- */
.section { padding: 116px 24px; position: relative; }
.container { max-width: var(--maxw); margin: 0 auto; position: relative; }

.badge {
    display: inline-block;
    padding: 7px 16px;
    background: var(--accent-soft);
    border: none;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent-ink);
    margin-bottom: 24px;
}
.tagline { font-size: 1.18rem; color: var(--muted); margin: 18px 0 32px; line-height: 1.7; }

.vs-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 15px 30px;
    background: var(--text);
    color: #fff;
    border: 1px solid var(--text);
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.98rem;
    line-height: 1.2;
    transition: transform 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}
.vs-btn:hover { transform: translateY(-2px); background: #2f3440; box-shadow: 0 10px 26px rgba(28, 31, 38, 0.16); }
.vs-btn.secondary {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--border-2);
    margin-left: 10px;
}
.vs-btn.secondary:hover { background: #fff; border-color: var(--accent); box-shadow: 0 8px 22px rgba(28, 31, 38, 0.06); }

/* --- Header chrome --- */
header {
    border-bottom: 1px solid var(--border);
    background: rgba(251, 250, 247, 0.82);
    backdrop-filter: blur(12px);
    position: sticky; top: 0; z-index: 50;
}
header nav {
    max-width: var(--maxw);
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
}
.brand {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    font-weight: 600;
    font-size: 1.18rem;
    color: var(--text) !important;
    letter-spacing: -0.02em;
    margin-right: auto;
}
.brand .brand-mark {
    width: 32px; height: 32px;
    border-radius: 10px;
    background: var(--accent);
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 0.82rem; font-weight: 700; color: var(--accent-ink);
}
header nav .nav-link {
    color: var(--muted);
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.15s ease;
}
header nav .nav-link:hover { color: var(--text); }
header nav .nav-cta {
    padding: 10px 22px;
    background: var(--text);
    color: #fff;
    border-radius: 999px;
    font-size: 0.92rem;
    font-weight: 600;
    transition: background 0.15s ease;
}
header nav .nav-cta:hover { background: #2f3440; }
header nav .nav-ghost { color: var(--text); font-size: 0.95rem; font-weight: 500; }

/* --- Hero --- */
.hero { text-align: center; padding-top: 128px; padding-bottom: 80px; }
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
    padding: 7px 16px 7px 9px;
    background: var(--accent-soft);
    border: none;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--accent-ink);
}
.eyebrow .pill {
    background: var(--accent);
    color: var(--accent-ink);
    padding: 3px 11px;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.04em;
}
.hero h1 {
    font-size: clamp(2.8rem, 6.6vw, 4.6rem);
    line-height: 1.06;
    margin: 0 0 26px;
    font-weight: 600;
    letter-spacing: -0.03em;
}
.hero .tagline {
    max-width: 600px;
    margin: 0 auto 40px;
    font-size: 1.24rem;
    color: var(--muted);
}
.hero-actions { display: flex; justify-content: center; align-items: center; flex-wrap: wrap; gap: 6px; }

/* --- Booking mockup --- */
.booking-wrap {
    max-width: 880px;
    margin: 80px auto 0;
}
.booking-card {
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 30px 70px rgba(28, 31, 38, 0.1), 0 4px 12px rgba(28, 31, 38, 0.04);
}
.booking-bar {
    display: flex; align-items: center; gap: 8px;
    padding: 15px 20px;
    border-bottom: 1px solid var(--border);
    background: var(--bg-2);
}
.booking-bar .dot { width: 11px; height: 11px; border-radius: 50%; background: #d8d3c9; }
.booking-bar .dot:nth-child(1) { background: #ff6259; }
.booking-bar .dot:nth-child(2) { background: #ffbd2e; }
.booking-bar .dot:nth-child(3) { background: #2bc840; }
.booking-bar .bar-title { margin-left: 12px; font-size: 0.82rem; color: var(--faint); }
.booking-body { display: grid; grid-template-columns: 1.3fr 1fr; gap: 0; }
.booking-cal { padding: 30px; border-right: 1px solid var(--border); }
.booking-side { padding: 30px; }
.booking-cal h4, .booking-side h4 {
    margin: 0 0 4px; font-size: 0.74rem; font-weight: 600;
    letter-spacing: 0.1em; text-transform: uppercase; color: var(--faint);
}
.cal-month { margin: 14px 0 18px; font-size: 1.05rem; font-weight: 600; color: var(--text); }
.cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 6px; }
.cal-grid .cal-dow { font-size: 0.68rem; color: var(--faint); text-align: center; padding: 4px 0; font-weight: 600; }
.cal-grid .cal-day {
    aspect-ratio: 1; display: flex; align-items: center; justify-content: center;
    font-size: 0.86rem; color: var(--muted); border-radius: 999px;
    border: 1px solid transparent;
}
.cal-grid .cal-day.muted { color: #c7c2b8; }
.cal-grid .cal-day.avail { color: var(--accent-deep); background: var(--accent-soft); font-weight: 600; }
.cal-grid .cal-day.sel { background: var(--accent); color: var(--accent-ink); font-weight: 700; }
.slots { display: flex; flex-direction: column; gap: 10px; margin-top: 16px; }
.slot {
    display: flex; align-items: center; justify-content: space-between;
    padding: 13px 16px; border-radius: 999px;
    border: 1px solid var(--border-2); background: var(--panel);
    font-size: 0.92rem; color: var(--text);
}
.slot.active { border-color: var(--accent); background: var(--accent-soft); color: var(--accent-ink); font-weight: 600; }
.slot .slot-tag { font-size: 0.74rem; color: var(--faint); }
.slot.active .slot-tag { color: var(--accent-deep); }
.book-confirm {
    margin-top: 18px; width: 100%; text-align: center;
    padding: 14px; border-radius: 999px;
    background: var(--text); color: #fff; font-weight: 600; font-size: 0.94rem;
}

/* --- Logo / trust strip --- */
.trust { padding: 0 24px 40px; text-align: center; }
.trust p { font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--faint); margin: 0 0 24px; }
.trust-row { display: flex; justify-content: center; flex-wrap: wrap; gap: 44px; opacity: 0.6; }
.trust-row span { font-weight: 700; font-size: 1.08rem; color: var(--muted); letter-spacing: -0.02em; }

/* --- Section heads --- */
.section-head { text-align: center; max-width: 640px; margin: 0 auto; }
.section-head h2 { font-size: clamp(2.1rem, 4.4vw, 3rem); margin: 0 0 18px; font-weight: 600; line-height: 1.12; }
.section-head p { color: var(--muted); font-size: 1.14rem; margin: 0; }

/* --- Feature grid --- */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 24px;
    margin-top: 68px;
}
.feature-card {
    padding: 36px 34px;
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    text-align: left;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 44px rgba(28, 31, 38, 0.08);
}
.feature-card h3 { margin: 0 0 10px; font-size: 1.2rem; font-weight: 600; }
.feature-card p { margin: 0; color: var(--muted); font-size: 1rem; line-height: 1.65; }
.feature-icon {
    display: inline-flex; align-items: center; justify-content: center;
    width: 52px; height: 52px; border-radius: 14px;
    background: var(--accent-soft); border: none;
    color: var(--accent-deep); margin-bottom: 22px;
}
.feature-icon svg { display: block; }

/* --- Highlight band --- */
.section.alt { background: var(--bg-2); }
.bento {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 68px;
}
.bento-cell {
    padding: 34px;
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}
.bento-cell.wide { grid-column: span 2; }
.bento-cell h3 { font-size: 1.18rem; font-weight: 600; margin: 0 0 8px; }
.bento-cell p { color: var(--muted); font-size: 1rem; margin: 0; }
.bento-stat { font-size: 3rem; font-weight: 700; letter-spacing: -0.03em; margin: 0 0 4px; color: var(--accent-deep); }

/* Transcript demo */
.transcript { display: flex; flex-direction: column; gap: 14px; margin-top: 22px; }
.t-line { display: flex; gap: 13px; align-items: flex-start; }
.t-avatar { flex: 0 0 auto; width: 34px; height: 34px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.72rem; font-weight: 700; color: #fff; }
.t-avatar.a { background: var(--accent-2); }
.t-avatar.b { background: var(--green); }
.t-body { font-size: 0.94rem; color: var(--muted); line-height: 1.55; }
.t-body .t-name { color: var(--text); font-weight: 600; font-size: 0.86rem; display: block; }
.t-insight {
    margin-top: 6px; padding: 12px 16px; border-radius: var(--radius-sm);
    background: var(--accent-soft); border: none;
    font-size: 0.86rem; color: var(--accent-ink); font-weight: 500;
}

/* --- Split paths --- */
.paths { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 68px; }
.path-card {
    padding: 48px 44px;
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.path-card:hover { transform: translateY(-3px); box-shadow: 0 18px 44px rgba(28, 31, 38, 0.08); }
.path-card .k { font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent-deep); font-weight: 700; }
.path-card h3 { font-size: 1.6rem; font-weight: 600; margin: 16px 0 12px; }
.path-card p { color: var(--muted); margin: 0 0 28px; font-size: 1.05rem; }

/* --- CTA band --- */
.cta-band { text-align: center; }
.cta-card {
    max-width: 820px; margin: 0 auto;
    padding: 80px 48px;
    background: var(--accent-soft);
    border: none;
    border-radius: var(--radius-lg);
}
.cta-card h2 { font-size: clamp(2.1rem, 4.2vw, 2.9rem); font-weight: 600; margin: 0 0 18px; }
.cta-card p { color: var(--accent-ink); opacity: 0.78; font-size: 1.16rem; margin: 0 0 36px; }

/* --- Footer --- */
footer { border-top: 1px solid var(--border); padding: 72px 24px 44px; background: var(--bg); }
.footer-inner { max-width: var(--maxw); margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 36px; padding-bottom: 44px; border-bottom: 1px solid var(--border); }
.footer-brand .brand { margin-bottom: 16px; }
.footer-brand p { color: var(--muted); font-size: 0.96rem; max-width: 280px; margin: 0; }
.footer-col h5 { font-size: 0.76rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--faint); margin: 0 0 18px; font-weight: 600; }
.footer-col a { display: block; color: var(--muted); font-size: 0.96rem; padding: 6px 0; transition: color 0.15s ease; }
.footer-col a:hover { color: var(--accent-deep); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 14px; padding-top: 30px; }
.footer-bottom .footer-meta { font-size: 0.88rem; color: var(--faint); margin: 0; }
.footer-bottom .footer-legal { display: inline-flex; gap: 22px; flex-wrap: wrap; }
.footer-bottom .footer-legal a { color: var(--faint); font-size: 0.88rem; transition: color 0.15s ease; }
.footer-bottom .footer-legal a:hover { color: var(--text); }
.footer-status { display: inline-flex; align-items: center; gap: 8px; font-size: 0.85rem; color: var(--muted); }
.footer-status .live { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 3px rgba(92,184,138,0.18); }

/* --- Responsive --- */
@media (max-width: 860px) {
    .booking-body { grid-template-columns: 1fr; }
    .booking-cal { border-right: none; border-bottom: 1px solid var(--border); }
    .bento { grid-template-columns: 1fr; }
    .bento-cell.wide { grid-column: span 1; }
    .paths { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
    .section { padding: 76px 20px; }
    .footer-top { grid-template-columns: 1fr; }
    .vs-btn.secondary { margin-left: 0; }
}

/* @devani:region nav-link-fallback */
header nav > a:not(.brand):not(.nav-cta):not(.nav-ghost) {
    color: var(--muted);
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.15s ease;
}
header nav > a:not(.brand):not(.nav-cta):not(.nav-ghost):hover { color: var(--text); }
header nav > a.active:not(.brand):not(.nav-cta):not(.nav-ghost) { color: var(--text); }
/* @devani:endregion */
/* @devani:region motion-graphics */
/* ============================================================
   Motion + graphic depth layer
   ============================================================ */

/* Site-wide soft gradient mesh — mint + peach, fixed so no overflow */
body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background:
        radial-gradient(42vw 42vw at 10% 6%, rgba(124, 204, 196, 0.18), transparent 60%),
        radial-gradient(36vw 36vw at 90% 18%, rgba(255, 206, 170, 0.13), transparent 62%),
        radial-gradient(40vw 40vw at 75% 88%, rgba(124, 204, 196, 0.10), transparent 60%);
    animation: mesh-pan 24s ease-in-out infinite alternate;
}

/* Drifting decorative blobs (placed in hero markup) */
.deco-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(56px);
    pointer-events: none;
    z-index: 0;
}
.deco-blob--a {
    width: 320px; height: 320px;
    top: 40px; left: 6%;
    background: radial-gradient(circle, rgba(124, 204, 196, 0.5), transparent 70%);
    animation: drift-a 19s ease-in-out infinite;
}
.deco-blob--b {
    width: 260px; height: 260px;
    top: 120px; right: 8%;
    background: radial-gradient(circle, rgba(255, 206, 170, 0.45), transparent 70%);
    animation: drift-b 23s ease-in-out infinite;
}
.hero .container { position: relative; z-index: 1; }

/* Hero entrance on load (staggered) */
.hero .eyebrow { animation: fade-up 0.7s cubic-bezier(.2,.7,.3,1) both; }
.hero h1 { animation: fade-up 0.7s cubic-bezier(.2,.7,.3,1) 0.08s both; }
.hero .tagline { animation: fade-up 0.7s cubic-bezier(.2,.7,.3,1) 0.16s both; }
.hero .hero-actions { animation: fade-up 0.7s cubic-bezier(.2,.7,.3,1) 0.24s both; }
.booking-wrap { animation: fade-up 0.8s cubic-bezier(.2,.7,.3,1) 0.34s both; }

/* Gradient icon tiles — interaction only, no idle float */
.feature-icon {
    background: linear-gradient(150deg, var(--accent-soft), #f0e7da);
    color: var(--accent-deep);
    transition: transform 0.3s cubic-bezier(.2,.7,.3,1), box-shadow 0.3s ease;
}
.feature-card:hover .feature-icon {
    transform: rotate(-8deg) scale(1.08);
    box-shadow: 0 10px 24px rgba(63, 154, 145, 0.22);
}

/* Pulse ring on the selected calendar day + live status dot */
.cal-grid .cal-day.sel { position: relative; }
.cal-grid .cal-day.sel::after {
    content: "";
    position: absolute; inset: 0;
    border-radius: 999px;
    border: 2px solid var(--accent);
    animation: pulse-ring 2.4s ease-out infinite;
}
.footer-status .live { animation: pulse-dot 2.4s ease-out infinite; }

/* Primary button sheen sweep on hover */
.vs-btn { position: relative; overflow: hidden; }
.vs-btn::after {
    content: "";
    position: absolute; top: 0; left: -120%;
    width: 60%; height: 100%;
    background: linear-gradient(100deg, transparent, rgba(255,255,255,0.28), transparent);
    transform: skewX(-18deg);
    transition: left 0.55s ease;
}
.vs-btn:hover::after { left: 140%; }
.vs-btn.secondary::after { display: none; }

/* CTA: living gradient wash */
.cta-card {
    background: linear-gradient(120deg, #e4f4f1, #f3ece1, #e0f1ee);
    background-size: 200% 200%;
    animation: gradient-pan 14s ease infinite;
}

/* ---- Scroll-driven video chat mockup ---- */
.videochat-wrap { max-width: 920px; margin: 64px auto 0; }
.videochat {
    background: #0f1722;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 30px 70px rgba(28, 31, 38, 0.16), 0 4px 12px rgba(28, 31, 38, 0.05);
}
.vc-bar {
    display: flex; align-items: center; gap: 8px;
    padding: 14px 18px;
    background: #0b121b;
    border-bottom: 1px solid #1d2735;
}
.vc-bar .dot { width: 11px; height: 11px; border-radius: 50%; }
.vc-bar .dot:nth-child(1) { background: #ff6259; }
.vc-bar .dot:nth-child(2) { background: #ffbd2e; }
.vc-bar .dot:nth-child(3) { background: #2bc840; }
.vc-bar .vc-rec {
    margin-left: auto;
    display: inline-flex; align-items: center; gap: 7px;
    font-size: 0.76rem; color: #e8a0a0; font-weight: 600;
    letter-spacing: 0.04em;
}
.vc-bar .vc-rec .rec-dot { width: 8px; height: 8px; border-radius: 50%; background: #ef5350; animation: pulse-dot-red 1.8s ease-out infinite; }
.vc-stage { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 16px; }
.vc-tile {
    position: relative;
    aspect-ratio: 16 / 10;
    border-radius: 12px;
    overflow: hidden;
    display: flex; align-items: center; justify-content: center;
}
.vc-tile.t1 { background: linear-gradient(150deg, #2f6f76, #1d4a55); }
.vc-tile.t2 { background: linear-gradient(150deg, #6a5a8c, #3f3563); }
.vc-tile.t3 { background: linear-gradient(150deg, #2f7a5e, #1c4a3a); }
.vc-tile.t4 { background: linear-gradient(150deg, #8c6a4f, #5a4231); }
.vc-tile .vc-avatar {
    width: 60px; height: 60px; border-radius: 50%;
    background: rgba(255,255,255,0.16);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.15rem; font-weight: 700; color: #fff;
    border: 2px solid rgba(255,255,255,0.28);
}
.vc-tile .vc-name {
    position: absolute; left: 12px; bottom: 10px;
    font-size: 0.78rem; font-weight: 600; color: #fff;
    background: rgba(0,0,0,0.32); padding: 3px 10px; border-radius: 999px;
    backdrop-filter: blur(4px);
}
.vc-tile .vc-mic {
    position: absolute; right: 12px; bottom: 10px;
    width: 22px; height: 22px; border-radius: 50%;
    background: rgba(0,0,0,0.32); color: #fff;
    display: flex; align-items: center; justify-content: center;
    backdrop-filter: blur(4px);
}
.vc-tile.speaking { outline: 2px solid var(--accent); outline-offset: -2px; }
.vc-tile.speaking::after {
    content: ""; position: absolute; inset: 0;
    border-radius: 12px; border: 2px solid var(--accent);
    animation: speak-glow 1.8s ease-out infinite;
}
.vc-caption {
    margin: 0 16px 16px;
    padding: 14px 18px;
    background: #131d2a;
    border: 1px solid #1d2735;
    border-radius: 12px;
    display: flex; gap: 12px; align-items: flex-start;
}
.vc-caption .cap-live {
    flex: 0 0 auto;
    font-size: 0.64rem; font-weight: 700; letter-spacing: 0.1em;
    color: var(--accent); background: rgba(124,204,196,0.14);
    padding: 4px 9px; border-radius: 999px; margin-top: 2px;
}
.vc-caption p { margin: 0; font-size: 0.92rem; color: #c4cfdc; line-height: 1.5; }
.vc-caption p .cap-name { color: #fff; font-weight: 600; }

/* Grow + rise as it scrolls into view */
@supports (animation-timeline: view()) {
    .videochat-wrap {
        animation: grow-in linear both;
        animation-timeline: view();
        animation-range: entry 0% entry 65%;
        transform-origin: center top;
    }
}

/* Scroll-reveal — progressive enhancement only where supported */
@supports (animation-timeline: view()) {
    .section-head,
    .feature-card,
    .bento-cell,
    .path-card,
    .cta-card,
    .trust-row {
        opacity: 0;
        animation: reveal-up linear both;
        animation-timeline: view();
        animation-range: entry 2% entry 40%;
    }
    .feature-card:nth-child(2), .bento-cell:nth-child(2) { animation-range: entry 8% entry 46%; }
    .feature-card:nth-child(3), .bento-cell:nth-child(3) { animation-range: entry 12% entry 50%; }
    .feature-card:nth-child(4), .bento-cell:nth-child(4) { animation-range: entry 8% entry 46%; }
    .feature-card:nth-child(5), .bento-cell:nth-child(5) { animation-range: entry 12% entry 50%; }
    .feature-card:nth-child(6) { animation-range: entry 16% entry 54%; }
    .path-card:nth-child(2) { animation-range: entry 10% entry 48%; }
}

/* Keyframes */
@keyframes mesh-pan {
    0%   { transform: translate3d(0, 0, 0) scale(1); }
    100% { transform: translate3d(-2%, 1.5%, 0) scale(1.06); }
}
@keyframes drift-a {
    0%, 100% { transform: translate(0, 0); }
    50%      { transform: translate(34px, 26px); }
}
@keyframes drift-b {
    0%, 100% { transform: translate(0, 0); }
    50%      { transform: translate(-30px, 22px); }
}
@keyframes fade-up {
    from { opacity: 0; transform: translateY(22px); }
    to   { opacity: 1; transform: none; }
}
@keyframes reveal-up {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: none; }
}
@keyframes grow-in {
    from { opacity: 0; transform: scale(0.86) translateY(40px); }
    to   { opacity: 1; transform: scale(1) translateY(0); }
}
@keyframes pulse-ring {
    0%   { transform: scale(1);   opacity: 0.7; }
    70%  { transform: scale(1.5); opacity: 0; }
    100% { transform: scale(1.5); opacity: 0; }
}
@keyframes pulse-dot {
    0%   { box-shadow: 0 0 0 0 rgba(92,184,138,0.45); }
    70%  { box-shadow: 0 0 0 7px rgba(92,184,138,0); }
    100% { box-shadow: 0 0 0 0 rgba(92,184,138,0); }
}
@keyframes pulse-dot-red {
    0%   { box-shadow: 0 0 0 0 rgba(239,83,80,0.5); }
    70%  { box-shadow: 0 0 0 6px rgba(239,83,80,0); }
    100% { box-shadow: 0 0 0 0 rgba(239,83,80,0); }
}
@keyframes speak-glow {
    0%   { opacity: 0.8; }
    70%  { opacity: 0; }
    100% { opacity: 0; }
}
@keyframes gradient-pan {
    0%   { background-position: 0% 50%; }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Respect reduced-motion preferences */
@media (prefers-reduced-motion: reduce) {
    body::before, .deco-blob, .cta-card,
    .hero .eyebrow, .hero h1, .hero .tagline, .hero .hero-actions, .booking-wrap,
    .cal-grid .cal-day.sel::after, .footer-status .live,
    .vc-bar .vc-rec .rec-dot, .vc-tile.speaking::after {
        animation: none !important;
    }
    @supports (animation-timeline: view()) {
        .section-head, .feature-card, .bento-cell, .path-card, .cta-card, .trust-row, .videochat-wrap {
            opacity: 1 !important;
            animation: none !important;
            transform: none !important;
        }
    }
    .vs-btn::after { display: none; }
}
/* @devani:endregion */
/* @devani:region videochat-photos */
/* Photo headshots inside video-chat tiles */
.vc-tile .vc-photo {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
}
.vc-tile .vc-photo + .vc-scrim {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(8,14,22,0.55), transparent 45%);
    pointer-events: none;
}
/* When a photo is present, hide the initials avatar and gradient fill */
.vc-tile:has(.vc-photo) { background: #0b121b; }
.vc-tile:has(.vc-photo) .vc-avatar { display: none; }
.vc-tile .vc-name, .vc-tile .vc-mic { z-index: 2; }
/* @devani:endregion */
/* @devani:region videochat-v2 */
/* ============================================================
   Redesigned "AI in action" mockup — one lively person + live AI panel
   ============================================================ */
.vc2-grid {
    display: grid;
    grid-template-columns: 0.85fr 1fr;
    gap: 14px;
    padding: 16px;
}
/* Left: single human tile */
.vc2-person {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    min-height: 360px;
    background: #0b121b;
}
.vc2-person img {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
}
.vc2-person .vc2-scrim {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(8,14,22,0.6), transparent 42%);
    pointer-events: none;
}
.vc2-person .vc-name {
    position: absolute; left: 14px; bottom: 12px; z-index: 2;
    font-size: 0.82rem; font-weight: 600; color: #fff;
    background: rgba(0,0,0,0.34); padding: 4px 12px; border-radius: 999px;
    backdrop-filter: blur(4px);
}
.vc2-person .vc2-livebadge {
    position: absolute; top: 12px; left: 12px; z-index: 2;
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 0.64rem; font-weight: 700; letter-spacing: 0.08em; color: #fff;
    background: rgba(239,83,80,0.92); padding: 4px 9px; border-radius: 999px;
}
.vc2-person .vc2-livebadge .rec-dot { width: 7px; height: 7px; border-radius: 50%; background: #fff; animation: pulse-dot-red 1.8s ease-out infinite; }
.vc2-person.speaking { outline: 2px solid var(--accent); outline-offset: -2px; }

/* Right: AI assistant panel */
.vc2-ai {
    background: #0d1620;
    border-radius: 14px;
    padding: 18px 18px 16px;
    display: flex; flex-direction: column;
    border: 1px solid #1d2735;
}
.vc2-ai-head {
    display: flex; align-items: center; gap: 9px;
    padding-bottom: 13px; margin-bottom: 13px;
    border-bottom: 1px solid #1d2735;
}
.vc2-ai-spark {
    width: 26px; height: 26px; border-radius: 8px;
    background: linear-gradient(150deg, var(--accent), var(--accent-deep));
    display: inline-flex; align-items: center; justify-content: center;
    color: #04201d; flex: 0 0 auto;
}
.vc2-ai-title { font-size: 0.82rem; font-weight: 700; color: #eaf1f0; letter-spacing: 0.01em; }
.vc2-ai-sub { font-size: 0.68rem; color: #7d8a99; }
.vc2-ai-status { margin-left: auto; display: inline-flex; align-items: center; gap: 6px; font-size: 0.64rem; font-weight: 600; color: var(--accent); }
.vc2-ai-status .live { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); animation: pulse-dot 2.2s ease-out infinite; }

/* Live caption line */
.vc2-caption-row { margin-bottom: 14px; }
.vc2-caption-row .who { font-size: 0.66rem; font-weight: 700; color: var(--accent); letter-spacing: 0.04em; margin-bottom: 3px; }
.vc2-caption-row .said { font-size: 0.9rem; color: #c9d4e0; line-height: 1.5; }
.vc2-caption-row .said .caret {
    display: inline-block; width: 2px; height: 1em; background: var(--accent);
    margin-left: 2px; vertical-align: text-bottom; animation: caret-blink 1.1s step-end infinite;
}

.vc2-label { font-size: 0.62rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: #6f7d8c; margin: 4px 0 9px; }

/* Action items that "pop" in on scroll */
.vc2-items { display: flex; flex-direction: column; gap: 8px; }
.vc2-item {
    display: flex; align-items: flex-start; gap: 9px;
    background: #131f2c; border: 1px solid #1f2c3a;
    border-radius: 10px; padding: 9px 11px;
}
.vc2-item .check {
    flex: 0 0 auto; width: 17px; height: 17px; border-radius: 50%;
    background: var(--accent); color: #04201d;
    display: inline-flex; align-items: center; justify-content: center; margin-top: 1px;
}
.vc2-item .it-text { font-size: 0.8rem; color: #d4dde8; line-height: 1.4; }
.vc2-item .it-text b { color: #fff; font-weight: 600; }
.vc2-item .it-owner { font-size: 0.66rem; color: #7d8a99; margin-top: 2px; }

/* Sentiment pulse bar */
.vc2-senti { margin-top: 14px; }
.vc2-senti-track { height: 6px; border-radius: 999px; background: #1c2836; overflow: hidden; }
.vc2-senti-fill {
    height: 100%; width: 82%;
    background: linear-gradient(90deg, var(--accent-deep), var(--accent));
    border-radius: 999px;
}
.vc2-senti-row { display: flex; justify-content: space-between; font-size: 0.66rem; color: #7d8a99; margin-top: 6px; }
.vc2-senti-row b { color: var(--accent); font-weight: 700; }

/* Scroll-driven entrances */
@supports (animation-timeline: view()) {
    .vc2-caption-row { opacity: 0; animation: reveal-up linear both; animation-timeline: view(); animation-range: entry 6% entry 34%; }
    .vc2-item { opacity: 0; animation: pop-in linear both; animation-timeline: view(); }
    .vc2-item:nth-child(1) { animation-range: entry 12% entry 34%; }
    .vc2-item:nth-child(2) { animation-range: entry 18% entry 40%; }
    .vc2-item:nth-child(3) { animation-range: entry 24% entry 46%; }
    .vc2-senti-fill { animation: senti-grow linear both; animation-timeline: view(); animation-range: entry 20% entry 55%; transform-origin: left center; }
}

@keyframes pop-in {
    from { opacity: 0; transform: translateY(8px) scale(0.96); }
    to   { opacity: 1; transform: none; }
}
@keyframes senti-grow {
    from { transform: scaleX(0.05); }
    to   { transform: scaleX(1); }
}
@keyframes caret-blink {
    0%, 100% { opacity: 1; }
    50%      { opacity: 0; }
}

@media (max-width: 720px) {
    .vc2-grid { grid-template-columns: 1fr; }
    .vc2-person { min-height: 260px; }
}
@media (prefers-reduced-motion: reduce) {
    @supports (animation-timeline: view()) {
        .vc2-caption-row, .vc2-item { opacity: 1 !important; animation: none !important; transform: none !important; }
        .vc2-senti-fill { animation: none !important; }
    }
    .vc2-caption-row .said .caret, .vc2-ai-status .live, .vc2-person .vc2-livebadge .rec-dot { animation: none !important; }
}
/* @devani:endregion */
/* @devani:region reposition-v2 */
/* ============================================================
   Repositioning v2 — all-in-one (schedule, meet, get paid)
   ============================================================ */

/* Combo strip: the three tools unified */
.combo {
    display: flex; align-items: center; justify-content: center;
    flex-wrap: wrap; gap: 14px;
    max-width: 760px; margin: 18px auto 0;
}
.combo-chip {
    display: inline-flex; align-items: center; gap: 9px;
    padding: 11px 18px; border-radius: 999px;
    background: var(--panel); border: 1px solid var(--border);
    font-weight: 600; font-size: 0.96rem; color: var(--text);
    box-shadow: 0 2px 8px rgba(28,31,38,0.04);
}
.combo-chip svg { color: var(--accent-deep); }
.combo-plus { color: var(--faint); font-weight: 600; font-size: 1.1rem; }
.combo-eq {
    display: inline-flex; align-items: center; gap: 9px;
    padding: 11px 20px; border-radius: 999px;
    background: var(--text); color: #fff;
    font-weight: 700; font-size: 0.96rem;
}

/* Three balanced audience cards */
.aud { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 68px; }
.aud-card {
    padding: 40px 34px;
    background: var(--panel); border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    display: flex; flex-direction: column;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.aud-card:hover { transform: translateY(-4px); box-shadow: 0 18px 44px rgba(28,31,38,0.08); }
.aud-card .aud-ic {
    width: 46px; height: 46px; border-radius: 12px;
    display: inline-flex; align-items: center; justify-content: center;
    background: linear-gradient(150deg, var(--accent-soft), #f0e7da);
    color: var(--accent-deep); margin-bottom: 20px;
}
.aud-card .k { font-size: 0.74rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent-deep); font-weight: 700; }
.aud-card h3 { font-size: 1.32rem; font-weight: 600; margin: 10px 0 10px; }
.aud-card p { color: var(--muted); font-size: 1rem; margin: 0 0 22px; flex: 1; }
.aud-card .aud-link { font-weight: 600; font-size: 0.95rem; color: var(--accent-deep); display: inline-flex; align-items: center; gap: 6px; }
.aud-card .aud-link svg { transition: transform 0.18s ease; }
.aud-card:hover .aud-link svg { transform: translateX(3px); }

/* Use-case chips for monetization section */
.usecases { display: flex; flex-wrap: wrap; gap: 11px; margin-top: 26px; justify-content: center; }
.usecase {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 10px 18px; border-radius: 999px;
    background: var(--panel); border: 1px solid var(--border);
    font-size: 0.95rem; font-weight: 500; color: var(--text);
}
.usecase .uc-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); }

/* Monetization mockup: person + checkout panel (reuses vc2 frame) */
.vc2-pay {
    background: #fff;
    border-radius: 14px;
    padding: 22px 22px 20px;
    display: flex; flex-direction: column;
    border: 1px solid var(--border);
}
.vc2-pay .pay-eyebrow { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent-deep); margin-bottom: 6px; }
.vc2-pay .pay-title { font-size: 1.22rem; font-weight: 600; color: var(--text); margin: 0 0 3px; }
.vc2-pay .pay-host { font-size: 0.86rem; color: var(--muted); margin: 0 0 18px; }
.vc2-pay .pay-line { display: flex; align-items: center; justify-content: space-between; padding: 11px 0; border-top: 1px solid var(--border); font-size: 0.92rem; color: var(--muted); }
.vc2-pay .pay-line .v { color: var(--text); font-weight: 600; }
.vc2-pay .pay-total { display: flex; align-items: baseline; justify-content: space-between; padding: 14px 0 0; border-top: 1px solid var(--border); margin-top: 2px; }
.vc2-pay .pay-total .lbl { font-size: 0.92rem; color: var(--text); font-weight: 600; }
.vc2-pay .pay-total .amt { font-size: 1.7rem; font-weight: 700; color: var(--text); letter-spacing: -0.02em; }
.vc2-pay .pay-btn { margin-top: 16px; width: 100%; text-align: center; padding: 14px; border-radius: 999px; background: var(--text); color: #fff; font-weight: 600; font-size: 0.95rem; }
.vc2-pay .pay-secure { display: flex; align-items: center; justify-content: center; gap: 6px; margin-top: 11px; font-size: 0.74rem; color: var(--faint); }

@media (max-width: 860px) {
    .aud { grid-template-columns: 1fr; }
}
/* @devani:endregion */
/* @devani:region inner-pages */
/* ============================================================
   Inner pages — shared components
   ============================================================ */

/* Compact page hero (non-home) */
.page-hero { text-align: center; padding-top: 96px; padding-bottom: 24px; position: relative; }
.page-hero .eyebrow { margin-bottom: 22px; }
.page-hero h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); line-height: 1.08; margin: 0 0 20px; font-weight: 600; letter-spacing: -0.03em; }
.page-hero .tagline { max-width: 600px; margin: 0 auto; font-size: 1.18rem; color: var(--muted); }

/* Pricing cards */
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 60px; align-items: stretch; }
.price-card {
    display: flex; flex-direction: column;
    padding: 40px 34px;
    background: var(--panel); border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.price-card:hover { transform: translateY(-4px); box-shadow: 0 18px 44px rgba(28,31,38,0.08); }
.price-card.featured { border-color: var(--accent); box-shadow: 0 18px 50px rgba(63,154,145,0.14); position: relative; }
.price-card.featured::before {
    content: "Most popular"; position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
    background: var(--text); color: #fff; font-size: 0.68rem; font-weight: 700;
    letter-spacing: 0.08em; text-transform: uppercase; padding: 5px 14px; border-radius: 999px;
}
.price-card .plan { font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent-deep); font-weight: 700; }
.price-card .price { display: flex; align-items: baseline; gap: 6px; margin: 16px 0 6px; }
.price-card .price .amt { font-size: 3rem; font-weight: 700; letter-spacing: -0.03em; color: var(--text); }
.price-card .price .per { font-size: 0.95rem; color: var(--muted); }
.price-card .plan-desc { color: var(--muted); font-size: 0.98rem; margin: 0 0 24px; min-height: 48px; }
.price-card .vs-btn { width: 100%; justify-content: center; }
.price-card ul { list-style: none; padding: 0; margin: 26px 0 0; display: flex; flex-direction: column; gap: 12px; }
.price-card li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.95rem; color: var(--text); }
.price-card li svg { flex: 0 0 auto; color: var(--accent-deep); margin-top: 3px; }
.price-note { text-align: center; color: var(--faint); font-size: 0.92rem; margin-top: 28px; }

/* FAQ */
.faq { max-width: 760px; margin: 56px auto 0; display: flex; flex-direction: column; gap: 0; }
.faq details {
    border-bottom: 1px solid var(--border);
    padding: 22px 4px;
}
.faq summary {
    list-style: none; cursor: pointer;
    font-size: 1.08rem; font-weight: 600; color: var(--text);
    display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary .q-ic { flex: 0 0 auto; width: 22px; height: 22px; color: var(--accent-deep); transition: transform 0.2s ease; }
.faq details[open] summary .q-ic { transform: rotate(45deg); }
.faq .faq-a { margin: 14px 0 0; color: var(--muted); font-size: 1rem; line-height: 1.7; }

/* Prose (about / legal) */
.prose { max-width: 720px; margin: 0 auto; }
.prose h2 { font-size: 1.7rem; font-weight: 600; margin: 44px 0 16px; }
.prose h3 { font-size: 1.2rem; font-weight: 600; margin: 30px 0 10px; }
.prose p { color: var(--muted); font-size: 1.06rem; line-height: 1.75; margin: 0 0 18px; }
.prose ul { color: var(--muted); font-size: 1.06rem; line-height: 1.7; padding-left: 22px; margin: 0 0 18px; }
.prose li { margin-bottom: 8px; }
.prose strong { color: var(--text); font-weight: 600; }
.prose a { color: var(--accent-deep); text-decoration: underline; text-underline-offset: 2px; }

/* Stat row (about) */
.statrow { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 60px; }
.statrow .s { text-align: center; }
.statrow .s .n { font-size: 2.6rem; font-weight: 700; letter-spacing: -0.03em; color: var(--accent-deep); }
.statrow .s .l { font-size: 0.95rem; color: var(--muted); margin-top: 4px; }

/* Contact split */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; margin-top: 56px; align-items: start; }
.contact-methods { display: flex; flex-direction: column; gap: 22px; }
.contact-method { display: flex; gap: 15px; align-items: flex-start; }
.contact-method .cm-ic {
    flex: 0 0 auto; width: 44px; height: 44px; border-radius: 12px;
    background: linear-gradient(150deg, var(--accent-soft), #f0e7da);
    color: var(--accent-deep); display: inline-flex; align-items: center; justify-content: center;
}
.contact-method h4 { margin: 0 0 3px; font-size: 1.05rem; font-weight: 600; }
.contact-method p { margin: 0; color: var(--muted); font-size: 0.98rem; }
.contact-method a { color: var(--accent-deep); }
.form-card { background: var(--panel); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 34px; }
.form-field { margin-bottom: 18px; }
.form-field label { display: block; font-size: 0.86rem; font-weight: 600; color: var(--text); margin-bottom: 7px; }
.form-field input, .form-field textarea, .form-field select {
    width: 100%; padding: 12px 15px; border-radius: var(--radius-sm);
    border: 1px solid var(--border-2); background: var(--bg); color: var(--text);
    font-family: inherit; font-size: 0.96rem;
}
.form-field input:focus, .form-field textarea:focus, .form-field select:focus { outline: none; border-color: var(--accent); background: #fff; }
.form-field textarea { resize: vertical; min-height: 120px; }

/* Code block (developers) */
.codeblock {
    background: #0d1620; border: 1px solid #1d2735; border-radius: var(--radius);
    padding: 22px 24px; overflow-x: auto; margin: 0;
}
.codeblock code { font-family: var(--mono); font-size: 0.88rem; line-height: 1.65; color: #c9d4e0; white-space: pre; }
.codeblock .c-key { color: #7cccc4; }
.codeblock .c-str { color: #e0b083; }
.codeblock .c-com { color: #5f6c7b; }
.dev-split { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: center; margin-top: 60px; }
.dev-split .dev-copy h3 { font-size: 1.5rem; font-weight: 600; margin: 0 0 14px; }
.dev-split .dev-copy p { color: var(--muted); font-size: 1.06rem; line-height: 1.7; margin: 0 0 16px; }
.dev-reassure { max-width: 680px; margin: 40px auto 0; text-align: center; padding: 22px 26px; background: var(--accent-soft); border-radius: var(--radius); color: var(--accent-ink); font-size: 1rem; }

@media (max-width: 860px) {
    .price-grid { grid-template-columns: 1fr; }
    .statrow { grid-template-columns: 1fr 1fr; }
    .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .dev-split { grid-template-columns: 1fr; gap: 32px; }
}
/* @devani:endregion */
