/* =============================================================================
   Shared functional base for all preview landing variants.
   - Reset, structural skeleton, layouts that don't change between variants
   - Form fields, cookie banner, sniff/pounce/shepherd deep-dive layouts,
     responsive base, preview switcher
   - Theme (colors, fonts, decorative touches) lives in variant CSS files
   ============================================================================= */

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 96px;
}
@media (max-width: 768px) {
    html { scroll-padding-top: 80px; }
}

body {
    min-height: 100vh;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.55;
}

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

/* ===== HEADER (positioning shared, theming per variant) ===== */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    padding: 0.75rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
}
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: inherit;
}
.logo img { height: 44px; width: auto; }

nav {
    display: flex;
    gap: 1.75rem;
    align-items: center;
}
nav a {
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.2s;
}
.nav-dropdown { position: relative; }
.nav-dropdown-trigger {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
}
.nav-dropdown-trigger::after {
    content: "";
    width: 7px; height: 7px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: rotate(45deg) translate(-2px, -2px);
    transition: transform 0.2s;
    opacity: 0.6;
}
.nav-dropdown:hover .nav-dropdown-trigger::after,
.nav-dropdown:focus-within .nav-dropdown-trigger::after {
    transform: rotate(225deg) translate(-1px, -1px);
}
.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 14px);
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    min-width: 260px;
    padding: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s, visibility 0.2s, transform 0.2s;
    z-index: 120;
}
.nav-dropdown::before {
    content: "";
    position: absolute;
    top: 100%; left: 0; right: 0;
    height: 22px;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}
.nav-dropdown-menu a {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 0.65rem 0.85rem;
    font-size: 0.92rem;
    line-height: 1.3;
}
.nav-dropdown-menu a strong { font-weight: 700; font-size: 0.98rem; }
.nav-dropdown-menu a span { font-size: 0.82rem; font-weight: 500; }

.nav-phone {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    white-space: nowrap;
    padding: 6px 12px;
}
.nav-phone svg { flex-shrink: 0; }

.btn-nav-cta {
    padding: 10px 22px;
    border: none;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

/* .mobile-nav* and .close-menu live in site-header.css. landing.css used to
   carry duplicate rules (incl. z-index: 200) which beat site-header.css's
   9999 because landing.css loads later — the embedded search widget then
   bled through the menu. Single source of truth is now site-header.css. */

/* ===== MAIN containers ===== */
main {
    padding-top: 4.5rem;
}

/* ===== Sections shared ===== */
section {
    padding: 5rem 2rem;
    max-width: 1280px;
    margin: 0 auto;
}
@media (max-width: 768px) {
    section { padding: 3.5rem 1.25rem; }
}

.section-header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 3rem;
}
.section-header h2 {
    margin: 0.5rem 0 0.85rem;
    line-height: 1.15;
}
.section-header p {
    font-size: 1.05rem;
    max-width: 620px;
    margin: 0 auto;
}

.section-tag {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.35rem 0.85rem;
    margin-bottom: 0.5rem;
}

/* ===== Hero layout (theme-agnostic skeleton) ===== */
.hero {
    position: relative;
    min-height: 580px;
    padding-top: 7rem;
    padding-bottom: 3.5rem;
    overflow: hidden;
}
.hero-content {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3rem;
    align-items: center;
    max-width: 1180px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}
.hero h1 {
    line-height: 1.05;
    margin-bottom: 1.25rem;
}
.subtitle {
    font-size: 1.15rem;
    margin-bottom: 1.75rem;
    line-height: 1.55;
    max-width: 520px;
}
.hero-buttons {
    display: flex;
    gap: 0.9rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}
.btn-primary, .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.95rem 1.6rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s, border-color 0.2s, color 0.2s;
}
.trust-row {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    font-size: 0.92rem;
    font-weight: 500;
}
.trust-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}
.trust-icon {
    width: 18px; height: 18px;
    flex-shrink: 0;
}

.hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-logo-wrapper {
    position: relative;
    width: 100%;
    max-width: 420px;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-logo {
    max-width: 80%;
    width: auto;
    height: auto;
    position: relative;
    z-index: 2;
}
.soft-ring {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}
.soft-ring:nth-child(1) { inset: 0; }
.soft-ring:nth-child(2) { inset: 10%; }
.soft-ring:nth-child(3) { inset: 22%; }

.paw-prints {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}
.paw {
    position: absolute;
    font-size: 1.6rem;
    transform: rotate(var(--rot, 0deg));
    opacity: 0.15;
}

/* ===== Products grid ===== */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1180px;
    margin: 0 auto;
}
.product-tier-card {
    padding: 2rem 1.75rem;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
}
.product-tier-card img {
    width: 80px; height: auto;
    margin-bottom: 0.5rem;
}
.product-tier-card h3 {
    margin: 0;
    font-size: 1.5rem;
    line-height: 1.2;
}
.tier-subtitle {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.product-tier-card p { margin: 0.5rem 0; font-size: 0.95rem; }
.product-tier-card ul {
    list-style: none;
    margin: 0.5rem 0;
    padding: 0;
    font-size: 0.95rem;
}
.product-tier-card li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 0.25rem 0;
}
.tier-card-link {
    margin-top: auto;
    font-weight: 600;
    font-size: 0.92rem;
}
.tier-card-compact { padding: 1.6rem 1.4rem; }
.tier-card-compact img { width: 60px; }
.tier-card-compact h3 { font-size: 1.25rem; }

/* ===== Demo widget ===== */
.demo-container {
    max-width: 760px;
    margin: 0 auto;
}
.demo-widget { padding: 2rem; min-height: 80px; }

/* ===== Sniff/Pounce/Shepherd deep-dive layouts ===== */
.sniff-deepdive, .pounce-deepdive, .shepherd-deepdive {
    max-width: 1180px;
}
.sniff-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    padding: 3rem 0;
}
.sniff-block-reverse .sniff-block-text { order: 2; }
.sniff-block-reverse .sniff-block-media { order: 1; }
.sniff-kicker {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 0.85rem;
}
.sniff-block-text h3 {
    font-size: 1.75rem;
    line-height: 1.2;
    margin-bottom: 1rem;
}
.sniff-block-text p { margin-bottom: 1rem; font-size: 1rem; }
.sniff-bullets {
    list-style: none;
    margin: 1rem 0;
    padding: 0;
}
.sniff-bullets li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    padding: 0.3rem 0;
    font-size: 0.95rem;
}
.sniff-check {
    flex-shrink: 0;
    width: 22px; height: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 700;
}
.sniff-muted { font-size: 0.9rem; }

.sniff-video-frame {
    overflow: hidden;
    aspect-ratio: 16 / 10;
}
.sniff-video-frame video {
    width: 100%; height: 100%;
    object-fit: cover;
}

.sniff-tabs, .sniff-admin-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
    justify-content: center;
}
.sniff-tab {
    padding: 0.5rem 1rem;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    border: none;
    background: transparent;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.sniff-tab-hint {
    text-align: center;
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
    opacity: 0;
    transition: opacity 0.3s;
}
.sniff-tab-hint.is-visible { opacity: 0.7; }
.sniff-tab-hint-arrow { display: inline-block; transform: translateY(1px); }

.sniff-variant-stage, .sniff-admin-stage {
    position: relative;
    min-height: 240px;
    overflow: hidden;
}
.sniff-variant, .sniff-admin-panel {
    display: none;
}
.sniff-variant.is-active, .sniff-admin-panel.is-active {
    display: block;
}
.sniff-variant.is-active {
    width: 100%;
}
.sniff-admin-panel img {
    width: 100%;
}
.sniff-admin-panel figcaption {
    margin-top: 0.85rem;
    font-size: 0.92rem;
    line-height: 1.55;
}

.sniff-admin {
    padding: 3rem 0;
}
.sniff-admin-intro {
    max-width: 760px;
    margin: 0 auto 2rem;
    text-align: center;
}
.sniff-admin-intro h3 {
    font-size: 1.75rem;
    line-height: 1.2;
    margin: 0.5rem 0;
}

/* AI Summary card */
.sniff-ai-summary { padding: 3rem 0; }
.sniff-ai-header {
    max-width: 720px;
    margin: 0 auto 2rem;
    text-align: center;
}
.sniff-ai-header h3 {
    font-size: 1.75rem;
    line-height: 1.2;
    margin: 0.85rem 0 0.5rem;
}
.sniff-ai-badge {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.3rem 0.85rem;
    margin-bottom: 0.5rem;
}

.sniff-ai-email-wrapper {
    max-width: 720px;
    margin: 0 auto;
}
.sniff-ai-email-card {
    overflow: hidden;
}
.sniff-ai-email-meta {
    padding: 1rem 1.25rem;
}
.sniff-ai-email-meta-row {
    display: flex;
    gap: 0.5rem;
    font-size: 0.88rem;
    line-height: 1.5;
}
.sniff-ai-email-meta-label {
    font-weight: 700;
    flex-shrink: 0;
}
.sniff-ai-email-hero-row {
    text-align: center;
    padding: 1.5rem 1rem 0.5rem;
}
.sniff-ai-email-hero-row img {
    width: 120px; height: auto;
    display: inline-block;
}
.sniff-ai-email-body {
    padding: 1.25rem 1.5rem 2rem;
}
.sniff-ai-email-body h1 {
    font-size: 1.45rem;
    line-height: 1.25;
    margin-bottom: 0.85rem;
    text-align: center;
}
.sniff-ai-email-content h2 {
    font-size: 1.05rem;
    line-height: 1.3;
    margin: 1.25rem 0 0.5rem;
}
.sniff-ai-email-content p, .sniff-ai-email-content blockquote {
    margin: 0.5rem 0;
    font-size: 0.95rem;
    line-height: 1.6;
}
.sniff-ai-email-content blockquote {
    padding: 0.75rem 0.9rem;
    margin: 0.85rem 0;
    font-size: 0.92rem;
}
.sniff-ai-email-content code {
    font-family: 'Courier New', monospace;
    font-size: 0.88em;
    padding: 0 0.3em;
}
.sniff-ai-email-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 0.85rem 0;
    font-size: 0.9rem;
}
.sniff-ai-email-content th, .sniff-ai-email-content td {
    padding: 0.45rem 0.6rem;
    text-align: left;
}
.sniff-ai-email-cta {
    text-align: center;
    margin: 1.5rem 0 0.5rem;
}
.sniff-ai-email-cta a {
    display: inline-block;
    padding: 0.7rem 1.25rem;
    font-weight: 600;
    text-decoration: none;
}
.sniff-ai-email-after {
    text-align: center;
    font-size: 0.88rem;
    margin-top: 1rem;
}
.sniff-ai-email-footer-card {
    text-align: center;
    padding: 1.25rem;
    font-size: 0.85rem;
    margin-top: 1rem;
}
.sniff-ai-email-footer-card p { margin: 0.25rem 0; }

/* Pounce example */
.pounce-example {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    padding: 3rem 0;
}
.pounce-url-chip {
    display: inline-block;
    font-family: 'Courier New', monospace;
    font-size: 0.85rem;
    padding: 0.35rem 0.7rem;
    margin-bottom: 0.85rem;
}
.pounce-example-text h3 {
    font-size: 1.75rem;
    line-height: 1.2;
    margin-bottom: 1rem;
}

/* Case Study */
.case-card {
    display: grid;
    grid-template-columns: minmax(280px, 1fr) 1.2fr;
    gap: 0;
    text-decoration: none;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
}
.case-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.case-card-body {
    padding: 2.25rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.75rem;
}
.case-card-meta {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-size: 0.88rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}
.case-card-logo {
    width: 36px; height: 36px;
    border-radius: 8px;
}
.case-card-body h3 {
    font-size: 1.45rem;
    line-height: 1.25;
}
.case-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-weight: 600;
    font-size: 0.95rem;
    margin-top: 0.5rem;
}

/* ===== Pricing ===== */
.pricing-container {
    max-width: 760px;
    margin: 0 auto;
    padding: 2.5rem 2rem;
}
.pricing-inputs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}
.pricing-field label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.4rem;
    font-size: 0.95rem;
}
.pricing-field input {
    width: 100%;
    padding: 0.7rem 0.85rem;
    font-size: 1rem;
    background: transparent;
}
.field-hint { font-size: 0.82rem; margin-top: 0.35rem; }

.pricing-addons { margin-bottom: 1.5rem; }
.pricing-addons h4 {
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.85rem;
}
.addon-card {
    display: block;
    padding: 1rem 1.1rem;
    cursor: pointer;
    margin-bottom: 0.7rem;
    transition: background 0.2s, border-color 0.2s;
}
.addon-header {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
}
.addon-header input[type="checkbox"] {
    width: 20px; height: 20px;
    margin-top: 1px;
    cursor: pointer;
}
.addon-header-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}
.addon-title {
    font-weight: 600;
    font-size: 0.98rem;
}
.addon-price {
    font-size: 0.88rem;
    font-weight: 600;
}
.addon-desc {
    font-size: 0.88rem;
    line-height: 1.5;
    margin-top: 0.5rem;
    opacity: 0.85;
}
.addon-product-tag {
    font-weight: 500;
    font-size: 0.85rem;
    margin-left: 0.25rem;
}

.pricing-tier-indicator {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.1rem;
    margin-bottom: 1.25rem;
}
.pricing-tier-indicator img {
    width: 56px;
    height: auto;
}
.tier-info { flex: 1; }
.tier-name { font-weight: 700; font-size: 1rem; }
.tier-desc { font-size: 0.88rem; opacity: 0.85; }

.pricing-result {
    text-align: center;
    padding: 1.5rem 1rem;
    margin-bottom: 1.25rem;
}
.pricing-result-label {
    font-size: 0.88rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
    margin-bottom: 0.5rem;
}
.pricing-result-price {
    font-size: 2.5rem;
    line-height: 1.1;
    font-weight: 800;
}
.pricing-result-price span {
    font-size: 1rem;
    font-weight: 500;
}
.pricing-result-note {
    font-size: 0.82rem;
    line-height: 1.5;
    margin-top: 0.5rem;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-cta { text-align: center; }
.pricing-cta a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem 1.5rem;
    font-weight: 700;
    text-decoration: none;
}

/* ===== How-it-works ===== */
.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
}
.step {
    padding: 2rem 1.5rem;
    text-align: center;
}
.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px; height: 56px;
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 1rem;
}
.step h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    line-height: 1.25;
}
.step p { font-size: 0.95rem; }

/* ===== Contact ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 3rem;
    align-items: start;
    max-width: 1100px;
    margin: 0 auto;
}
.contact-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.85rem;
}
.contact-info p { font-size: 1rem; margin-bottom: 1.5rem; }
.contact-detail {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.7rem 0;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    word-break: break-word;
}
.contact-detail { margin-right: 1.5rem; }
.contact-detail-icon {
    flex-shrink: 0;
    width: 36px; height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.contact-detail-icon svg { width: 18px; height: 18px; }

.contact-form { padding: 2rem; }
.form-group { margin-bottom: 1.1rem; }
.form-group label {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.35rem;
}
.form-group input, .form-group textarea {
    width: 100%;
    padding: 0.75rem 0.9rem;
    font-size: 0.98rem;
    font-family: inherit;
}
.form-group textarea {
    min-height: 110px;
    resize: vertical;
}
.form-group input.error, .form-group textarea.error {
    outline: 2px solid #dc2626;
}
.form-error {
    font-size: 0.85rem;
    color: #dc2626;
    margin-top: 0.3rem;
    display: none;
}
.form-error.visible { display: block; }
.form-group-confirm {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden;
}
.btn-submit {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 1.5rem;
    font-weight: 700;
    border: none;
    cursor: pointer;
    font-size: 0.98rem;
    width: 100%;
    justify-content: center;
    font-family: inherit;
}
.btn-submit:disabled { opacity: 0.6; cursor: wait; }

.form-success {
    display: none;
    text-align: center;
    padding: 2.5rem 1.5rem;
}
.form-success.visible { display: block; }
.form-success-icon {
    width: 56px; height: 56px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.form-success-icon svg { width: 32px; height: 32px; }
.form-success h3 { font-size: 1.25rem; margin-bottom: 0.5rem; }

/* ===== CTA ===== */
.cta-inner {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
    padding: 3rem 2rem;
}
.cta-logo {
    width: 80px;
    height: auto;
    margin: 0 auto 1rem;
}
.cta-inner h2 {
    font-size: 2rem;
    line-height: 1.2;
    margin-bottom: 0.85rem;
}
.cta-inner p {
    font-size: 1.05rem;
    margin-bottom: 1.75rem;
}

/* ===== Cookie Consent Banner ===== */
/* Embedded /widget.js search bar uses z-index 2147483647 (max int32) on its
   input + dropdown — overlapped the cookie banner whenever they shared the
   viewport. Match the max so the cookie ecosystem wins. With equal z-index
   the later DOM element wins, and the cookie banner is included at the end
   of landing.blade.php (after #woodysfetch-widget), so banner > widget. */
.cc-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.55);
    z-index: 2147483645;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s, visibility 0.25s;
}
.cc-overlay.active { opacity: 1; visibility: visible; }

.cc-banner {
    position: fixed;
    left: 1rem;
    right: 1rem;
    bottom: 5.5rem;
    z-index: 2147483646;
    padding: 1.5rem 1.75rem;
    transform: translateY(130%);
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.4s;
    max-width: 640px;
    margin: 0 auto;
}
.cc-banner.active { transform: translateY(0); opacity: 1; }
.cc-banner-inner {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 1.35rem;
    align-items: center;
}
.cc-banner-media {
    align-self: center;
}
.cc-banner-media img {
    width: 100%;
    height: auto;
    display: block;
    user-select: none;
    -webkit-user-drag: none;
}
.cc-banner-body { min-width: 0; }
.cc-banner-title {
    font-size: 1.3rem;
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin: 0 0 0.55rem;
}
.cc-banner-text {
    font-size: 0.93rem;
    margin: 0 0 1rem;
    line-height: 1.5;
}
.cc-banner-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}
.cc-btn-accept, .cc-btn-save, .cc-btn-necessary {
    padding: 0.7rem 1.25rem;
    font-weight: 600;
    font-size: 0.92rem;
    border: none;
    cursor: pointer;
    font-family: inherit;
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}
.cc-btn-link {
    background: transparent;
    border: none;
    padding: 0.35rem 0.1rem;
    font-family: inherit;
    font-size: 0.86rem;
    cursor: pointer;
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-thickness: 1px;
    text-decoration-color: rgba(15, 15, 18, 0.25);
    transition: color 0.2s, text-decoration-color 0.2s;
}
.cc-btn-link:hover { text-decoration-color: currentColor; }

.cc-modal {
    position: fixed;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%) scale(0.95);
    width: min(520px, 92vw);
    max-height: 88vh;
    overflow-y: auto;
    padding: 1.75rem;
    z-index: 2147483647;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s, visibility 0.25s, transform 0.25s;
}
.cc-modal.active {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}
.cc-modal h3 { font-size: 1.2rem; margin-bottom: 0.5rem; }
.cc-modal-desc { font-size: 0.92rem; margin-bottom: 1.25rem; }
.cc-category {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.85rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.07);
}
.cc-category:last-of-type { border-bottom: none; }
.cc-category-info { flex: 1; }
.cc-category-info h4 { font-size: 0.95rem; margin-bottom: 0.2rem; }
.cc-category-info p { font-size: 0.84rem; margin: 0; }
.cc-toggle {
    position: relative;
    display: inline-block;
    width: 42px; height: 24px;
    flex-shrink: 0;
}
.cc-toggle input { opacity: 0; width: 0; height: 0; }
.cc-toggle-slider {
    position: absolute;
    inset: 0;
    background: #cbd5e1;
    border-radius: 24px;
    cursor: pointer;
    transition: background 0.2s;
}
.cc-toggle-slider::before {
    content: "";
    position: absolute;
    left: 3px; top: 3px;
    width: 18px; height: 18px;
    background: #fff;
    border-radius: 50%;
    transition: transform 0.2s;
}
.cc-toggle input:checked + .cc-toggle-slider::before {
    transform: translateX(18px);
}
.cc-toggle input:disabled + .cc-toggle-slider { opacity: 0.55; }
.cc-modal-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-top: 1.25rem;
}

/* ===== Preview switcher (floating bottom-right) ===== */
.preview-switcher {
    position: fixed;
    bottom: 1rem;
    right: 1rem;
    z-index: 1100;
    display: flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.5rem 0.7rem;
    background: #0f172a;
    color: #fff;
    border-radius: 14px;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.35);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 0.82rem;
    font-weight: 500;
}
.preview-switcher-label {
    opacity: 0.65;
    margin-right: 0.25rem;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.preview-switcher-link {
    color: #cbd5e1;
    text-decoration: none;
    padding: 0.3rem 0.65rem;
    border-radius: 8px;
    transition: background 0.2s, color 0.2s;
    white-space: nowrap;
}
.preview-switcher-link:hover { background: rgba(255,255,255,0.08); color: #fff; }
.preview-switcher-link.is-active {
    background: #fff;
    color: #0f172a;
    font-weight: 700;
}

.preview-footer {
    text-align: center;
    padding: 2rem 1rem 6rem;
    font-size: 0.85rem;
    opacity: 0.65;
}
.preview-footer a { color: inherit; }

/* ===== Responsive ===== */
@media (max-width: 960px) {
    .hero-content { grid-template-columns: 1fr; }
    .hero-visual { display: none; }
    .products-grid { grid-template-columns: 1fr; }
    .sniff-block { grid-template-columns: 1fr; gap: 1.75rem; padding: 2rem 0; }
    .sniff-block-reverse .sniff-block-text,
    .sniff-block-reverse .sniff-block-media { order: initial; }
    .pounce-example { grid-template-columns: 1fr; gap: 1.75rem; }
    .case-card { grid-template-columns: 1fr; }
    .case-card-thumb { aspect-ratio: 4 / 3; }
    .steps { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; gap: 1.75rem; }
    .pricing-inputs { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .site-header { padding: 0.65rem 1rem; }
    .logo img { height: 36px; }
    nav { display: none; }
    .menu-toggle { display: inline-flex; }
    .hero { padding-top: 5.5rem; min-height: 0; }
    section { padding: 3rem 1rem; }
    .section-header { margin-bottom: 2rem; }
    .section-header p { font-size: 1rem; }
    .hero h1 { font-size: 2.1rem; }
    .subtitle { font-size: 1.02rem; }
    .pricing-container { padding: 1.5rem 1.1rem; }
    .preview-switcher {
        font-size: 0.78rem;
        padding: 0.4rem 0.5rem;
        right: 0.6rem;
        bottom: 0.6rem;
    }
    .preview-switcher-label { display: none; }
    .preview-switcher-link { padding: 0.25rem 0.5rem; }
    .cc-banner {
        bottom: 4rem;
        padding: 1.25rem 1.25rem 1.4rem;
        border-radius: 20px;
    }
    .cc-banner-inner {
        grid-template-columns: 96px 1fr;
        gap: 1rem;
    }
    .cc-banner-title { font-size: 1.15rem; }
    .cc-banner-text { font-size: 0.9rem; }
}

@media (max-width: 480px) {
    .cc-banner-inner {
        grid-template-columns: 1fr;
        gap: 0.5rem;
        text-align: center;
        justify-items: center;
    }
    .cc-banner-media { width: 120px; }
    .cc-banner-actions { justify-content: center; }
}
/* =============================================================================
   Variant D: REFINED — production-derived layout, polished
   Funnel Display headlines + Inter body + JetBrains Mono for code
   Hairline eyebrows replace pill section-tags; 3 dark orb interstitials
   borrowed from the auth-split background animate as through-line.
   ============================================================================= */

body {
    /* Brand tokens */
    --ink: #0F0F12;
    --ink-soft: #1F1B2E;
    --muted: #6B6478;
    --muted-soft: #9B95A8;
    --bg: #FAFAFC;          /* matches auth-split start */
    --bg-warm: #FCFAF4;
    --bg-cool: #F6F4FD;     /* matches auth-split mid */
    --paper: #FFFFFF;
    --surface: #F9F8FC;
    --violet: #5b4fc7;
    --violet-deep: #4d40b8;
    --violet-soft: #c0b8f3;
    --violet-50: #f0eefb;
    --violet-100: #e1ddf6;
    --honey: #f0b322;
    --honey-deep: #d68f0d;
    --honey-soft: #fbecb5;
    --honey-50: #fefdf3;
    --honey-100: #fdf6dd;
    --rule: rgba(15, 15, 18, 0.08);
    --rule-strong: rgba(15, 15, 18, 0.14);
    --shadow-soft: 0 24px 50px -28px rgba(91, 79, 199, 0.28);
    --shadow-deep: 0 32px 70px -32px rgba(91, 79, 199, 0.32);

    /* Product semantic colors */
    --c-sniff: #1E7A3D;
    --c-pounce: var(--violet);
    --c-shepherd: #7c3aed;
    --c-buddy: #5b4fc7;

    background: var(--bg);
    color: var(--ink);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 17px;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
    font-family: 'Funnel Display', 'Inter', sans-serif;
    font-weight: 600;
    letter-spacing: -0.025em;
    color: var(--ink);
    line-height: 1.05;
}

a { color: inherit; }
::selection { background: var(--violet-100); color: var(--ink); }
em { font-style: italic; }

/* Header chrome lives in site-header.css (shared with case studies).
   Brand violet + Funnel Display logo + blur are driven by the
   --wf-primary family of variables defined in layouts.marketing. */
.product-sniff { color: var(--c-sniff); }
.product-pounce { color: var(--c-pounce); }
.product-shepherd { color: var(--c-shepherd); }

/* ===== Eyebrow (replaces section-tag pill) ===== */
.elv-eyebrow,
.elv-hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ink-soft);
    margin-bottom: 0.85rem;
}
.elv-eyebrow-mark {
    display: inline-block;
    width: 2rem;
    height: 1.5px;
    background: var(--violet);
    flex-shrink: 0;
}
.elv-eyebrow-sniff { color: var(--c-sniff); }
.elv-eyebrow-sniff .elv-eyebrow-mark { background: var(--c-sniff); }
.elv-eyebrow-pounce { color: var(--c-pounce); }
.elv-eyebrow-pounce .elv-eyebrow-mark { background: var(--c-pounce); }
.elv-eyebrow-shepherd { color: var(--c-shepherd); }
.elv-eyebrow-shepherd .elv-eyebrow-mark { background: var(--c-shepherd); }
.elv-eyebrow-buddy { color: var(--c-buddy); }
.elv-eyebrow-buddy .elv-eyebrow-mark { background: var(--c-buddy); }

/* ===== Buttons ===== */
.elv-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 1.4rem;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.98rem;
    border-radius: 10px;
    text-decoration: none;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all 0.25s;
}
.elv-btn-primary {
    background: var(--violet);
    color: var(--paper);
    border-color: var(--violet);
    box-shadow: 0 16px 36px -16px rgba(91, 79, 199, 0.5);
}
.elv-btn-primary:hover {
    background: var(--violet-deep);
    transform: translateY(-2px);
    box-shadow: 0 22px 44px -16px rgba(91, 79, 199, 0.6);
}
.elv-btn-ghost {
    background: var(--paper);
    color: var(--ink);
    border-color: var(--rule-strong);
}
.elv-btn-ghost:hover { border-color: var(--violet); color: var(--violet); }

/* ===== HERO ===== */
.elv-hero {
    position: relative;
    padding: 2rem 2rem 5rem;
    max-width: 1280px;
    margin: 0 auto;
    overflow: hidden;
}
.elv-hero-glyphs {
    position: absolute;
    inset: 0;
    pointer-events: none;
}
.elv-glyph {
    position: absolute;
    width: var(--size, 34px);
    height: var(--size, 34px);
    transform: rotate(var(--rot, 0deg));
    opacity: 0.16;
    color: var(--violet);
}
.elv-glyph svg { width: 100%; height: 100%; display: block; }

.elv-hero-inner {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 3.5rem;
    align-items: center;
    position: relative;
    z-index: 1;
}
.elv-hero-h1 {
    font-family: 'Funnel Display', sans-serif;
    font-size: clamp(2.7rem, 5.5vw, 4.5rem);
    font-weight: 700;
    line-height: 1.0;
    letter-spacing: -0.035em;
    margin-bottom: 1.25rem;
    color: var(--ink);
}
.elv-hero-h1-accent {
    background: linear-gradient(120deg, var(--violet) 0%, var(--honey-deep) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}
.elv-hero-sub {
    font-size: 1.15rem;
    line-height: 1.55;
    color: var(--ink-soft);
    max-width: 52ch;
    margin-bottom: 1.85rem;
}
.elv-hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.85rem;
}

/* ===== Inline registration form (hero + signup banner) ===== */
.elv-signup-form {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: stretch;
    max-width: 520px;
}
.elv-signup-form input[type="email"] {
    flex: 1 1 240px;
    min-width: 0;
    padding: 0.85rem 1.1rem;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: var(--ink);
    background: var(--paper);
    border: 1px solid var(--rule-strong);
    border-radius: 10px;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.elv-signup-form input[type="email"]::placeholder { color: var(--muted); }
.elv-signup-form input[type="email"]:focus {
    border-color: var(--violet);
    box-shadow: 0 0 0 3px var(--violet-50);
}
.elv-signup-form input[type="email"].is-invalid {
    border-color: #d92d20;
    box-shadow: 0 0 0 3px rgba(217, 45, 32, 0.15);
}
.elv-signup-disclaimer {
    flex: 1 1 100%;
    margin: 0.25rem 0 0 0;
    font-size: 0.85rem;
    line-height: 1.4;
    color: var(--muted);
}
.elv-signup-disclaimer a { color: inherit; text-decoration: underline; text-underline-offset: 2px; }
.elv-signup-disclaimer a:hover { color: var(--ink); }
.elv-signup-disclaimer--dark { color: rgba(245, 245, 250, 0.75); }
.elv-signup-disclaimer--dark a:hover { color: var(--paper); }
.elv-signup-error {
    flex: 1 1 100%;
    margin: 0;
    color: #d92d20;
    font-size: 0.85rem;
}

/* ===== Signup banner section (between #pricing and #setup) ===== */
.elv-section-signup {
    max-width: 1280px;
    margin: 0 auto;
    padding: 4rem 2rem;
}
.elv-signup-banner {
    position: relative;
    max-width: 880px;
    margin: 0 auto;
    background: linear-gradient(135deg, #09090b 0%, #14102a 50%, #221608 100%);
    border: 1px solid rgba(245, 245, 250, 0.08);
    border-radius: 22px;
    padding: 3.5rem 2.5rem;
    text-align: center;
    color: rgba(245, 245, 250, 0.95);
    box-shadow: 0 28px 60px -20px rgba(20, 16, 42, 0.55);
    overflow: hidden;
    isolation: isolate;
}
.elv-signup-banner::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 32rem;
    height: 32rem;
    margin-top: -16rem;
    margin-left: -16rem;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(91, 79, 199, 0.55) 0%,
        rgba(140, 132, 216, 0.35) 35%,
        rgba(240, 179, 34, 0.25) 70%,
        rgba(240, 179, 34, 0) 100%
    );
    filter: blur(70px);
    pointer-events: none;
    z-index: -1;
}
.elv-signup-kicker {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(245, 245, 250, 0.6);
    letter-spacing: 0.08em;
    margin-bottom: 1.25rem;
}
.elv-signup-banner h2 {
    font-family: 'Funnel Display', sans-serif;
    font-size: clamp(1.85rem, 3.8vw, 2.6rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.025em;
    color: var(--paper);
    margin-bottom: 0.85rem;
}
.elv-signup-banner > p {
    color: rgba(245, 245, 250, 0.7);
    font-size: 1.05rem;
    margin-bottom: 1.85rem;
}
.elv-signup-banner .elv-signup-form {
    margin: 0 auto;
    justify-content: center;
}
.elv-signup-banner .elv-signup-form input[type="email"] {
    border-color: rgba(245, 245, 250, 0.18);
    background: rgba(245, 245, 250, 0.08);
    color: var(--paper);
}
.elv-signup-banner .elv-signup-form input[type="email"]::placeholder { color: rgba(245, 245, 250, 0.45); }
.elv-signup-banner .elv-signup-form input[type="email"]:focus {
    border-color: var(--honey);
    background: rgba(245, 245, 250, 0.12);
    box-shadow: 0 0 0 3px rgba(240, 179, 34, 0.25);
}
.elv-hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    color: var(--muted);
    font-size: 0.92rem;
    font-weight: 500;
}
.elv-hero-trust span {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
}
.elv-hero-trust svg { color: var(--violet); flex-shrink: 0; }

.elv-hero-novelty {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    margin-top: 1.25rem;
    padding: 0.55rem 1rem 0.55rem 0.5rem;
    background: linear-gradient(135deg, rgba(91, 79, 199, 0.08), rgba(245, 158, 11, 0.06));
    border: 1px solid rgba(91, 79, 199, 0.18);
    border-radius: 999px;
    color: var(--ink);
    font-size: 0.92rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s;
}
.elv-hero-novelty:hover {
    background: linear-gradient(135deg, rgba(91, 79, 199, 0.14), rgba(245, 158, 11, 0.10));
    border-color: rgba(91, 79, 199, 0.32);
    transform: translateY(-1px);
}
.elv-hero-novelty-tag {
    background: var(--c-buddy);
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.7rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.22rem 0.65rem;
    border-radius: 999px;
}
.elv-hero-novelty svg { color: var(--c-buddy); }

.elv-link-buddy {
    color: var(--c-buddy);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px dashed rgba(91, 79, 199, 0.4);
}
.elv-link-buddy:hover { border-bottom-style: solid; }

/* Hero visual — Woody framed by violet→honey orb */
.elv-hero-visual {
    position: relative;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
}
.elv-hero-orb {
    position: absolute;
    inset: 5%;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(91, 79, 199, 0.32) 0%,
        rgba(140, 132, 216, 0.22) 35%,
        rgba(240, 179, 34, 0.18) 70%,
        rgba(240, 179, 34, 0) 100%
    );
    filter: blur(40px);
    z-index: 0;
}
.elv-hero-logo {
    position: relative;
    z-index: 1;
    width: 80%;
    max-width: 380px;
    height: auto;
    filter: drop-shadow(0 20px 36px rgba(91, 79, 199, 0.25));
}

/* ===== Section base ===== */
.elv-section {
    max-width: 1280px;
    margin: 0 auto;
    padding: 5.5rem 2rem;
}
.elv-head {
    max-width: 720px;
    margin: 0 auto 3.5rem;
    text-align: center;
}
.elv-head-compact { margin-bottom: 2rem; }
.elv-head .elv-eyebrow {
    display: inline-flex;
}
.elv-h2 {
    font-family: 'Funnel Display', sans-serif;
    font-size: clamp(2rem, 4vw, 2.85rem);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin-bottom: 1rem;
    color: var(--ink);
}
.elv-dek-link {
    color: var(--violet);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-thickness: 1.5px;
}
.elv-dek-link:hover { color: var(--violet-deep); }
.elv-dek {
    color: var(--ink-soft);
    font-size: 1.08rem;
    line-height: 1.55;
    max-width: 58ch;
    margin: 0 auto;
}

/* ===== TRIO (products intro) ===== */
.elv-trio {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    max-width: 1180px;
    margin: 0 auto;
}
.elv-trio-quad {
    grid-template-columns: repeat(4, 1fr);
    max-width: 1320px;
}
.elv-trio-card {
    background: var(--paper);
    border: 1px solid var(--rule);
    border-radius: 18px;
    padding: 2rem 1.75rem;
    text-decoration: none;
    color: var(--ink);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
    position: relative;
    overflow: hidden;
}
.elv-trio-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: currentColor;
    opacity: 0.85;
}
.elv-trio-sniff { color: var(--c-sniff); }
.elv-trio-pounce { color: var(--c-pounce); }
.elv-trio-shepherd { color: var(--c-shepherd); }
.elv-trio-buddy { color: var(--c-buddy); }
.elv-trio-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-deep);
    border-color: var(--rule-strong);
}
/* Override layouts/marketing.blade.php's global a:hover underline.
   `text-decoration: none` on .elv-trio-card alone isn't enough —
   browsers propagate the parent anchor's underline visually onto
   block descendants (h3, p, span). Pin none on the children too,
   then opt the read-more link back in on hover. */
.elv-trio-card,
.elv-trio-card:hover,
.elv-trio-card *,
.elv-trio-card:hover * {
    text-decoration: none;
}
.elv-trio-card:hover .elv-trio-link {
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-thickness: 1.5px;
}
.elv-trio-card img {
    width: 72px; height: auto;
    margin-bottom: 0.5rem;
}
.elv-trio-card h3 {
    font-family: 'Funnel Display', sans-serif;
    font-size: 1.55rem;
    color: currentColor;
}
.elv-trio-meta {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
}
.elv-trio-card p {
    color: var(--ink-soft);
    font-size: 0.98rem;
    line-height: 1.55;
}
.elv-trio-link {
    margin-top: auto;
    color: currentColor;
    font-weight: 600;
    font-size: 0.92rem;
}

/* ===== DEMO ===== */
.elv-section-demo .elv-demo {
    max-width: 760px;
    margin: 0 auto;
    background: var(--paper);
    border: 1px solid var(--rule);
    border-radius: 18px;
    padding: 2rem;
    box-shadow: var(--shadow-deep);
}

/* ===========================================================================
   ORB INTERSTITIAL — dark sections borrowed from auth-split
   =========================================================================== */

.elv-orb {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    /* Full-bleed interstitial — breaks out of the parent <main>'s 2rem side
       padding via the negative-margin viewport trick. 50% is half of the
       parent's content box, 50vw is half of the viewport; the difference
       pulls each side to the actual viewport edge. */
    width: auto;
    max-width: none;
    padding: 6rem 2rem;
    color: rgba(245, 245, 250, 0.95);
    background: linear-gradient(135deg, #09090b 0%, #14102a 50%, #221608 100%);
    margin: 5rem calc(50% - 50vw);
}
.elv-orb-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 38rem;
    height: 38rem;
    margin-top: -19rem;
    margin-left: -19rem;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(91, 79, 199, 0.7) 0%,
        rgba(140, 132, 216, 0.5) 35%,
        rgba(240, 179, 34, 0.3) 70%,
        rgba(240, 179, 34, 0) 100%
    );
    filter: blur(90px);
    pointer-events: none;
    z-index: -1;
    transform: translate(var(--wf-orb-x), var(--wf-orb-y)) scale(var(--wf-orb-s));
    animation:
        wf-orb-x 29s ease-in-out infinite,
        wf-orb-y 37s ease-in-out infinite,
        wf-orb-s 23s ease-in-out infinite;
    will-change: transform;
}
.elv-orb-bg-honey {
    background: radial-gradient(
        circle,
        rgba(240, 179, 34, 0.55) 0%,
        rgba(214, 143, 13, 0.4) 35%,
        rgba(91, 79, 199, 0.3) 70%,
        rgba(91, 79, 199, 0) 100%
    );
}
@property --wf-orb-x {
    syntax: '<length-percentage>';
    inherits: false;
    initial-value: 0vw;
}
@property --wf-orb-y {
    syntax: '<length-percentage>';
    inherits: false;
    initial-value: 0vh;
}
@property --wf-orb-s {
    syntax: '<number>';
    inherits: false;
    initial-value: 1;
}
@keyframes wf-orb-x {
    0%   { --wf-orb-x: -28vw; }
    13%  { --wf-orb-x:  18vw; }
    27%  { --wf-orb-x: -10vw; }
    44%  { --wf-orb-x:  32vw; }
    58%  { --wf-orb-x:  -5vw; }
    72%  { --wf-orb-x: -32vw; }
    86%  { --wf-orb-x:  22vw; }
    100% { --wf-orb-x: -28vw; }
}
@keyframes wf-orb-y {
    0%   { --wf-orb-y: -22vh; }
    11%  { --wf-orb-y:  20vh; }
    24%  { --wf-orb-y:  -8vh; }
    38%  { --wf-orb-y:  28vh; }
    52%  { --wf-orb-y: -25vh; }
    67%  { --wf-orb-y:  12vh; }
    81%  { --wf-orb-y: -18vh; }
    100% { --wf-orb-y: -22vh; }
}
@keyframes wf-orb-s {
    0%   { --wf-orb-s: 1.00; }
    21%  { --wf-orb-s: 1.08; }
    47%  { --wf-orb-s: 0.94; }
    68%  { --wf-orb-s: 1.12; }
    100% { --wf-orb-s: 1.00; }
}
@media (prefers-reduced-motion: reduce) {
    .elv-orb-bg { animation: none; }
}

.elv-orb-inner {
    position: relative;
    max-width: 880px;
    margin: 0 auto;
    text-align: center;
    z-index: 1;
}
.elv-orb-kicker {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(245, 245, 250, 0.6);
    letter-spacing: 0.08em;
    margin-bottom: 1.5rem;
}
.elv-orb-quote {
    font-family: 'Funnel Display', sans-serif;
    font-size: clamp(1.85rem, 4vw, 3rem);
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: -0.025em;
    color: var(--paper);
    margin-bottom: 1.5rem;
}
.elv-orb-quote em {
    font-style: italic;
    background: linear-gradient(120deg, #c0b8f3 0%, #f0b322 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.elv-orb-attr {
    font-family: 'Inter', sans-serif;
    color: rgba(245, 245, 250, 0.65);
    font-size: 1rem;
    line-height: 1.55;
    max-width: 56ch;
    margin: 0 auto;
}

/* ===== Deep dive blocks ===== */
.elv-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    padding: 3rem 0;
    max-width: 1180px;
    margin: 0 auto;
}
.elv-block-reverse .elv-block-text { order: 2; }
.elv-block-reverse .elv-block-media { order: 1; }

.elv-block-text { max-width: 56ch; }
.elv-kicker {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--violet);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.75rem;
}
.elv-block-text h3 {
    font-family: 'Funnel Display', sans-serif;
    font-size: clamp(1.6rem, 2.5vw, 2.1rem);
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 1rem;
}
.elv-block-text p,
.elv-admin p,
.elv-ai p {
    color: var(--ink-soft);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0.9rem;
}
.elv-muted { color: var(--muted); font-style: italic; }

.elv-bullets {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}
.elv-bullets li {
    padding: 0.5rem 0 0.5rem 1.75rem;
    border-bottom: 1px solid var(--rule);
    position: relative;
    font-size: 0.98rem;
    color: var(--ink);
}
.elv-bullets li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.85rem;
    width: 1rem;
    height: 1.5px;
    background: var(--violet);
}

.elv-chip {
    display: inline-block;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.85rem;
    background: var(--violet-50);
    color: var(--violet-deep);
    border: 1px solid var(--violet-100);
    padding: 0.3rem 0.7rem;
    border-radius: 6px;
    margin-bottom: 0.85rem;
}

/* Media frame (videos + screenshots) */
.elv-frame {
    background: var(--paper);
    border: 1px solid var(--rule);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}
.elv-frame video,
.elv-frame img {
    width: 100%;
    display: block;
}
/* Reserve the video's box BEFORE metadata loads. Without this the
   element starts at height 0 and pops to the real aspect once the
   browser parses the moov atom, shifting every section below — and
   breaking anchor scrolls that targeted sections past these videos
   (e.g. clicking "Případová studie" landed on Shepherd while the
   videos finished resolving). Matches the source files (2144×1080). */
.elv-frame video {
    aspect-ratio: 2144 / 1080;
    object-fit: cover;
}

/* Tabs */
.elv-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-bottom: 1rem;
    justify-content: center;
}
.elv-tab {
    background: var(--paper);
    color: var(--ink-soft);
    border: 1px solid var(--rule);
    border-radius: 999px;
    padding: 0.45rem 0.95rem;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 0.88rem;
    cursor: pointer;
    transition: all 0.2s;
}
.elv-tab.is-active {
    background: var(--ink);
    color: var(--paper);
    border-color: var(--ink);
}
.elv-tab:hover:not(.is-active) { background: var(--violet-50); border-color: var(--violet-100); color: var(--violet-deep); }
.sniff-tab-hint {
    text-align: center;
    color: var(--muted);
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
}
.elv-stage {
    /* Stack all panels in one grid cell so the tallest sets the container
       height — switching tabs no longer reflows the page. Inactive panels
       are hidden via opacity/visibility, but still occupy layout space.
       Visual chrome (border, bg, shadow) lives on each panel so the frame
       traces the active mockup instead of an outer empty box. */
    display: grid;
    grid-template-areas: "stage";
}
.elv-stage > .elv-stage-img,
.elv-stage > .elv-stage-fig {
    grid-area: stage;
    align-self: center;
    width: 100%;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
    background: var(--paper);
    border: 1px solid var(--rule);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}
.elv-stage > .elv-stage-img.is-active,
.elv-stage > .elv-stage-fig.is-active {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}
.elv-stage-img { display: block; }
.elv-stage-fig { display: block; margin: 0; }
.elv-stage-fig img { width: 100%; display: block; }
.elv-stage-fig figcaption {
    font-size: 0.92rem;
    color: var(--ink-soft);
    padding: 0.85rem 1rem;
    line-height: 1.55;
    border-top: 1px solid var(--rule);
}

.elv-stage-wide { max-width: 1100px; margin: 0 auto; }

/* Admin sub-block */
.elv-admin {
    max-width: 1180px;
    margin: 4rem auto 0;
    padding-top: 4rem;
    border-top: 1px solid var(--rule);
}

/* AI Email card */
.elv-ai {
    max-width: 760px;
    margin: 4rem auto 0;
    padding-top: 4rem;
    border-top: 1px solid var(--rule);
    text-align: center;
}
.elv-ai .elv-kicker { margin-bottom: 0.5rem; }
.elv-ai h3 {
    font-family: 'Funnel Display', sans-serif;
    font-size: clamp(1.6rem, 2.5vw, 2.1rem);
    font-weight: 600;
    margin-bottom: 1rem;
}
.elv-ai-lede {
    font-size: 1.05rem;
    max-width: 52ch;
    margin: 0 auto 2rem !important;
}

.elv-email {
    background: var(--paper);
    border: 1px solid var(--rule);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--shadow-deep);
    text-align: left;
}
.elv-email-meta {
    background: var(--violet-50);
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--rule);
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.82rem;
    color: var(--ink-soft);
    overflow-wrap: anywhere;
    word-break: break-word;
}
.elv-email-meta div { padding: 0.15rem 0; }
.elv-email-hero {
    text-align: center;
    padding: 1.5rem 0 0;
}
.elv-email-hero img { width: 110px; margin: 0 auto; }
.elv-email-body {
    padding: 1.25rem 1.75rem 2rem;
    max-height: 460px;
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-width: thin;
    scrollbar-color: rgba(91, 79, 199, 0.5) transparent;
}
.elv-email-body::-webkit-scrollbar { width: 8px; }
.elv-email-body::-webkit-scrollbar-track { background: transparent; }
.elv-email-body::-webkit-scrollbar-thumb {
    background: rgba(91, 79, 199, 0.45);
    border-radius: 4px;
}
.elv-email-body::-webkit-scrollbar-thumb:hover { background: rgba(91, 79, 199, 0.75); }
.elv-email-body h4 {
    font-family: 'Funnel Display', sans-serif;
    font-size: 1.45rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--ink);
}
.elv-email-body h5 {
    font-family: 'Funnel Display', sans-serif;
    font-size: 1.05rem;
    margin: 1.25rem 0 0.5rem;
    color: var(--ink);
}
.elv-email-body p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--ink-soft);
    margin-bottom: 0.5rem;
}
.elv-email-body blockquote {
    background: var(--violet-50);
    border-left: 3px solid var(--violet);
    padding: 0.75rem 0.9rem;
    margin: 0.85rem 0;
    border-radius: 6px;
    font-size: 0.92rem;
    color: var(--ink);
}
.elv-email-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0 1.25rem;
    font-size: 0.92rem;
}
.elv-email-table th,
.elv-email-table td {
    padding: 0.55rem 0.75rem;
    text-align: left;
    border-bottom: 1px solid var(--rule);
}
.elv-email-table th {
    font-family: 'Funnel Display', sans-serif;
    font-weight: 600;
    color: var(--ink);
    font-size: 0.85rem;
    background: var(--surface);
}
.elv-email-table td {
    color: var(--ink-soft);
}
.elv-email-table td:first-child {
    color: var(--ink);
    font-weight: 500;
}
.elv-email-table td:nth-child(2),
.elv-email-table td:nth-child(3) {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.88rem;
}
.elv-email-table td:last-child {
    color: var(--violet);
    font-weight: 600;
}
.elv-email-body code {
    font-family: 'JetBrains Mono', monospace;
    background: var(--honey-100);
    color: var(--honey-deep);
    padding: 0.05em 0.4em;
    border-radius: 4px;
    font-size: 0.88em;
    overflow-wrap: anywhere;
    word-break: break-word;
}

/* ===== CASE STUDY ===== */
.elv-section-case { background: var(--surface); }
.elv-section-case + .elv-section { padding-top: 5rem; }
.elv-case {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    max-width: 1100px;
    margin: 0 auto;
    text-decoration: none;
    background: var(--paper);
    border: 1px solid var(--rule);
    border-radius: 22px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: transform 0.3s, box-shadow 0.3s;
}
.elv-case:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-deep);
}
/* Override the global a:hover underline. Without explicit "none" on
   the descendants the underline propagates visually onto every block
   inside the card (h3, p, span). Only the read-more affordance gets
   the underline on hover. */
.elv-case,
.elv-case:hover,
.elv-case *,
.elv-case:hover * {
    text-decoration: none;
}
.elv-case:hover .elv-case-cta {
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-thickness: 1.5px;
}
.elv-case-image {
    /* Image is a 1:1 design asset. Without a fixed aspect ratio the
       container's height tracks the body column, which is rarely
       square — cover then crops top/bottom and squashes the layout.
       Lock to 1/1 on desktop so the mockup renders as-designed. */
    aspect-ratio: 1 / 1;
}
.elv-case-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.elv-case-body {
    padding: 2.25rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.85rem;
}
.elv-case-meta {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    color: var(--muted);
    font-size: 0.9rem;
    font-weight: 500;
}
.elv-case-meta img {
    /* Logo is rendered at its natural aspect. The previous 36×36 box
       squashed wide brand marks (e.g. Klášterní Officína is 244×66 ≈
       3.7:1). Cap by height + max-width so any logo fits the row. */
    height: 32px;
    width: auto;
    max-width: 140px;
    object-fit: contain;
}
.elv-case-body h3 {
    font-family: 'Funnel Display', sans-serif;
    font-size: clamp(1.45rem, 2.5vw, 1.85rem);
    font-weight: 600;
    line-height: 1.15;
}
.elv-case-body p {
    color: var(--ink-soft);
    font-size: 1rem;
    line-height: 1.55;
}
.elv-case-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--violet);
    font-weight: 600;
    font-size: 0.95rem;
}

/* ===== FEATURES ===== */
.elv-feats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    max-width: 1180px;
    margin: 0 auto;
}
.elv-feats-quad {
    grid-template-columns: repeat(4, 1fr);
    max-width: 1320px;
}
.elv-feat {
    background: var(--paper);
    border: 1px solid var(--rule);
    border-radius: 18px;
    padding: 2rem 1.75rem;
    color: var(--ink);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
}
.elv-feat::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: currentColor;
    opacity: 0.85;
}
.elv-feat-sniff { color: var(--c-sniff); }
.elv-feat-pounce { color: var(--c-pounce); }
.elv-feat-shepherd { color: var(--c-shepherd); }
.elv-feat-buddy { color: var(--c-buddy); }
.elv-feat img {
    width: 72px; height: auto;
    margin-bottom: 0.5rem;
}
.elv-feat h3 {
    font-family: 'Funnel Display', sans-serif;
    font-size: 1.55rem;
    color: currentColor;
}
.elv-feat-tag {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
}
.elv-feat-list {
    list-style: none;
    padding: 0;
    margin: 0.85rem 0 0;
}
.elv-feat-list li {
    padding: 0.4rem 0 0.4rem 1.5rem;
    position: relative;
    font-size: 0.95rem;
    color: var(--ink-soft);
    border-bottom: 1px solid var(--rule);
}
.elv-feat-list li:last-child { border-bottom: none; }
.elv-feat-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: currentColor;
    font-weight: 700;
}

/* ===== PRICING ===== */
.elv-section-pricing { background: var(--surface); }
.elv-pricing {
    max-width: 760px;
    margin: 0 auto;
    background: var(--paper);
    border: 1px solid var(--rule);
    border-radius: 22px;
    padding: 2.5rem 2rem;
    box-shadow: var(--shadow-soft);
}
.pricing-field input {
    background: var(--bg);
    border: 1px solid var(--rule-strong);
    border-radius: 10px;
    color: var(--ink);
    font-family: 'Inter', sans-serif;
    font-size: 1.02rem;
}
.pricing-field input:focus {
    outline: none;
    border-color: var(--violet);
    background: var(--paper);
    box-shadow: 0 0 0 3px var(--violet-50);
}
.pricing-field label { font-weight: 600; color: var(--ink); }
.field-hint { color: var(--muted); }
.pricing-addons h4 { color: var(--ink-soft); font-family: 'Funnel Display', sans-serif; font-weight: 600; letter-spacing: 0; text-transform: none; }
.addon-card {
    background: var(--bg);
    border: 1px solid var(--rule);
    border-radius: 12px;
    transition: all 0.2s;
}
.addon-card.selected.addon-pounce {
    background: var(--violet-50);
    border-color: var(--violet);
}
.addon-card.selected.addon-shepherd {
    background: rgba(124, 58, 237, 0.06);
    border-color: var(--c-shepherd);
}
.addon-card.selected.addon-buddy {
    background: rgba(91, 79, 199, 0.06);
    border-color: var(--c-buddy);
}
.addon-price { color: var(--honey-deep); font-weight: 700; }
.addon-desc { color: var(--ink-soft); }
.tag-pounce-inline { color: var(--c-pounce); }
.tag-shepherd-inline { color: var(--c-shepherd); }
.tag-buddy-inline { color: var(--c-buddy); }

.pricing-tier-indicator {
    background: var(--bg);
    border: 1px solid var(--rule);
    border-radius: 12px;
}
.pricing-tier-indicator[data-tier="sniff"] { border-color: var(--c-sniff); border-left: 4px solid var(--c-sniff); }
.pricing-tier-indicator[data-tier="pounce"] { border-color: var(--c-pounce); border-left: 4px solid var(--c-pounce); }
.pricing-tier-indicator[data-tier="shepherd"] { border-color: var(--c-shepherd); border-left: 4px solid var(--c-shepherd); }
.pricing-tier-indicator[data-tier="buddy"] { border-color: var(--c-buddy); border-left: 4px solid var(--c-buddy); }
.pricing-tier-indicator .tier-name { color: var(--ink); font-family: 'Funnel Display', sans-serif; }
.pricing-tier-indicator[data-tier="sniff"] .tier-name { color: var(--c-sniff); }
.pricing-tier-indicator[data-tier="pounce"] .tier-name { color: var(--c-pounce); }
.pricing-tier-indicator[data-tier="shepherd"] .tier-name { color: var(--c-shepherd); }
.pricing-tier-indicator[data-tier="buddy"] .tier-name { color: var(--c-buddy); }
.tier-desc { color: var(--ink-soft); }

.pricing-result {
    background: linear-gradient(180deg, var(--violet-50), var(--bg));
    border: 1px solid var(--violet-100);
    border-radius: 14px;
}
.pricing-result-label { color: var(--muted); }
.pricing-result-price {
    color: var(--violet);
    font-family: 'Funnel Display', sans-serif;
    font-weight: 700;
}
.pricing-result-price span { color: var(--ink-soft); font-weight: 500; }
.pricing-result-note { color: var(--muted); }
.pricing-cta a {
    background: var(--violet);
    color: var(--paper);
    border-radius: 10px;
    box-shadow: 0 16px 36px -14px rgba(91, 79, 199, 0.5);
    font-family: 'Inter', sans-serif;
}
.pricing-cta a:hover { background: var(--violet-deep); transform: translateY(-2px); }

/* ===== STEPS ===== */
.elv-steps {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    max-width: 760px;
    counter-reset: step;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.elv-steps li {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 1.5rem;
    align-items: start;
    padding: 1.5rem 1.75rem;
    background: var(--paper);
    border: 1px solid var(--rule);
    border-radius: 16px;
    transition: transform 0.2s, box-shadow 0.2s;
}
.elv-steps li:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-soft);
}
.elv-step-num {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--violet);
    color: var(--paper);
    font-family: 'Funnel Display', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
}
.elv-step-body h3 {
    font-family: 'Funnel Display', sans-serif;
    font-size: 1.25rem;
    margin-bottom: 0.4rem;
}
.elv-step-body p {
    color: var(--ink-soft);
    font-size: 0.98rem;
    line-height: 1.55;
}

/* ===== CONTACT ===== */
.elv-section-contact { background: var(--surface); }
.elv-contact {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 3rem;
    align-items: start;
    max-width: 1100px;
    margin: 0 auto;
}
.elv-contact-info h3 {
    font-family: 'Funnel Display', sans-serif;
    font-size: 1.55rem;
    margin-bottom: 1rem;
}
.elv-contact-info p {
    color: var(--ink-soft);
    font-size: 1.02rem;
    line-height: 1.55;
    margin-bottom: 1.75rem;
}
.elv-contact-detail {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.85rem 0;
    border-top: 1px solid var(--rule);
    text-decoration: none;
    font-weight: 600;
    color: var(--ink);
    font-size: 1rem;
    word-break: break-word;
}
.elv-contact-detail:last-of-type { border-bottom: 1px solid var(--rule); }
.elv-contact-detail:hover { color: var(--violet); }
.elv-contact-icon {
    flex-shrink: 0;
    width: 40px; height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--violet-50);
    color: var(--violet);
    border-radius: 10px;
}
.elv-contact-icon svg { width: 18px; height: 18px; }

.elv-contact-form {
    background: var(--paper);
    border: 1px solid var(--rule);
    border-radius: 22px;
    padding: 2rem 1.85rem;
    box-shadow: var(--shadow-soft);
}
.form-group label { color: var(--ink); font-weight: 600; font-family: 'Inter', sans-serif; }
.form-group input,
.form-group textarea {
    background: var(--bg);
    border: 1px solid var(--rule-strong);
    border-radius: 10px;
    color: var(--ink);
    font-family: 'Inter', sans-serif;
}
.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--violet);
    background: var(--paper);
    box-shadow: 0 0 0 3px var(--violet-50);
}
.btn-submit {
    background: var(--violet);
    color: var(--paper);
    border-radius: 10px;
    box-shadow: 0 16px 36px -14px rgba(91, 79, 199, 0.5);
    font-family: 'Inter', sans-serif;
}
.btn-submit:hover:not(:disabled) { background: var(--violet-deep); transform: translateY(-1px); }
.form-success-icon {
    background: rgba(30, 122, 61, 0.12);
    color: var(--c-sniff);
    border-radius: 50%;
}

/* ===== Final CTA — dark "interstitial-in-a-card" (matches orb sections) ===== */
.elv-cta {
    max-width: 1280px;
    margin: 0 auto;
    padding: 5rem 2rem 6rem;
    text-align: center;
}
.elv-cta-inner {
    max-width: 640px;
    margin: 0 auto;
    background: linear-gradient(135deg, #09090b 0%, #14102a 50%, #221608 100%);
    border: 1px solid rgba(245, 245, 250, 0.08);
    border-radius: 22px;
    padding: 3rem 2rem;
    box-shadow: 0 28px 60px -20px rgba(20, 16, 42, 0.55);
    position: relative;
    overflow: hidden;
    isolation: isolate;
    color: rgba(245, 245, 250, 0.95);
}
.elv-cta-inner::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 28rem;
    height: 28rem;
    margin-top: -14rem;
    margin-left: -14rem;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(91, 79, 199, 0.55) 0%,
        rgba(140, 132, 216, 0.35) 35%,
        rgba(240, 179, 34, 0.25) 70%,
        rgba(240, 179, 34, 0) 100%
    );
    filter: blur(70px);
    pointer-events: none;
    z-index: -1;
}
.elv-cta-logo {
    width: 80px;
    margin: 0 auto 1.25rem;
    position: relative;
}
.elv-cta h2 {
    font-family: 'Funnel Display', sans-serif;
    font-size: clamp(1.85rem, 3.5vw, 2.4rem);
    font-weight: 700;
    margin-bottom: 0.85rem;
    line-height: 1.1;
    position: relative;
    color: var(--paper);
}
.elv-cta p {
    color: rgba(245, 245, 250, 0.7);
    font-size: 1.05rem;
    margin-bottom: 1.75rem;
    position: relative;
}
.elv-cta .elv-btn { position: relative; }
.elv-cta .elv-btn-primary {
    background: var(--violet);
    color: var(--paper);
    border-color: var(--violet);
    box-shadow: 0 14px 30px -10px rgba(91, 79, 199, 0.55);
}
.elv-cta .elv-btn-primary:hover {
    background: var(--violet-deep);
    box-shadow: 0 20px 40px -10px rgba(91, 79, 199, 0.7);
}

/* ===== Cookie banner ===== */
.cc-banner {
    background: var(--paper);
    border: 1px solid var(--rule);
    border-radius: 22px;
    box-shadow:
        0 30px 60px -20px rgba(15, 15, 18, 0.18),
        0 14px 32px -18px rgba(91, 79, 199, 0.28);
    color: var(--ink);
}
.cc-banner-title { font-family: 'Funnel Display', sans-serif; color: var(--ink); }
.cc-banner-text { color: var(--ink-soft); }
.cc-btn-accept {
    background: var(--violet);
    color: var(--paper);
    border-radius: 999px;
    box-shadow: 0 14px 30px -10px rgba(91, 79, 199, 0.55);
}
.cc-btn-accept:hover {
    background: var(--violet-deep);
    transform: translateY(-1px);
    box-shadow: 0 18px 36px -10px rgba(91, 79, 199, 0.65);
}
.cc-btn-link { color: var(--muted); }
.cc-btn-link:hover { color: var(--ink); }
.cc-modal {
    background: var(--paper);
    border: 1px solid var(--rule);
    border-radius: 16px;
    color: var(--ink);
}
.cc-modal h3 { font-family: 'Funnel Display', sans-serif; }
.cc-modal-desc { color: var(--ink-soft); }
.cc-category { border-bottom-color: var(--rule); }
.cc-category-info p { color: var(--muted); }
.cc-toggle input:checked + .cc-toggle-slider { background: var(--violet); }
.cc-btn-save { background: var(--violet); color: var(--paper); border-radius: 999px; }
.cc-btn-necessary { background: transparent; color: var(--ink); border: 1px solid var(--rule-strong); border-radius: 999px; }

/* Preview footer */
.preview-footer { color: var(--muted); }

/* ===== Responsive ===== */
/* ===== AI BUDDY ===== */
.elv-section-buddy {
    background:
        radial-gradient(60% 80% at 12% 20%, rgba(91, 79, 199, 0.06), transparent 60%),
        radial-gradient(50% 70% at 88% 80%, rgba(245, 158, 11, 0.05), transparent 65%),
        var(--bg);
}
.wf-buddy {
    display: grid;
    grid-template-columns: minmax(280px, 1fr) 1.4fr;
    gap: 3rem;
    align-items: center;
    max-width: 1180px;
    margin: 0 auto;
}
.wf-buddy-media {
    display: flex;
    justify-content: center;
}
.wf-buddy-media img {
    width: 100%;
    max-width: 460px;
    height: auto;
    display: block;
}
.wf-buddy-body h3 {
    font-family: 'Funnel Display', sans-serif;
    font-size: 1.8rem;
    line-height: 1.2;
    color: var(--ink);
    margin: 0.5rem 0 0.75rem;
}
.wf-buddy-body > p {
    color: var(--ink-soft);
    font-size: 1.02rem;
    line-height: 1.6;
    margin: 0 0 1.5rem;
}
.wf-buddy-body .elv-kicker {
    color: var(--c-buddy);
}
.wf-buddy-prompts {
    list-style: none;
    padding: 0;
    margin: 0 0 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}
.wf-buddy-prompts li {
    background: var(--paper);
    border: 1px solid var(--rule);
    border-left: 3px solid var(--c-buddy);
    border-radius: 12px;
    padding: 0.85rem 1.1rem;
    color: var(--ink);
    font-size: 0.98rem;
    line-height: 1.5;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}
.wf-buddy-prompt-tag {
    flex-shrink: 0;
    background: var(--c-buddy);
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.7rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.18rem 0.55rem;
    border-radius: 999px;
    margin-top: 0.1rem;
}
.wf-buddy-bullets {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.85rem;
    margin: 0 0 1.75rem;
}
.wf-buddy-bullet {
    background: var(--paper);
    border: 1px solid var(--rule);
    border-radius: 10px;
    padding: 0.85rem 1rem;
    font-size: 0.88rem;
    line-height: 1.45;
    color: var(--ink-soft);
}
.wf-buddy-bullet strong {
    color: var(--ink);
    display: block;
    margin-bottom: 0.2rem;
    font-weight: 600;
}
.wf-buddy-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

@media (max-width: 960px) {
    .elv-hero-inner { grid-template-columns: 1fr; gap: 2rem; }
    .elv-hero-visual { display: none; }
    /* Decorative magnifier glyphs are absolutely positioned across
       the hero box. Once the hero collapses to a single column the
       right-side glyphs land on top of the eyebrow + headline copy,
       so hide them at the same breakpoint that drops the visual. */
    .elv-hero-glyphs { display: none; }
    .elv-trio { grid-template-columns: 1fr; }
    .elv-trio-quad { grid-template-columns: repeat(2, 1fr); }
    .elv-block { grid-template-columns: 1fr; gap: 1.75rem; padding: 1.75rem 0; }
    .elv-block-reverse .elv-block-text { order: 1; }
    .elv-block-reverse .elv-block-media { order: 2; }
    .elv-case { grid-template-columns: 1fr; }
    .elv-case-image { aspect-ratio: 4/3; }
    .elv-feats { grid-template-columns: 1fr; }
    .elv-feats-quad { grid-template-columns: repeat(2, 1fr); }
    .elv-contact { grid-template-columns: 1fr; gap: 2rem; }
    .pricing-inputs { grid-template-columns: 1fr; }
    .wf-buddy { grid-template-columns: 1fr; gap: 2rem; }
    .wf-buddy-media img { max-width: 320px; margin: 0 auto; }
    .wf-buddy-bullets { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    body { font-size: 16px; }
    .elv-hero { padding: 1.5rem 1.25rem 3rem; }
    .elv-section { padding: 3.5rem 1.25rem; }
    .elv-orb { padding: 4rem 1.25rem; margin: 3rem calc(50% - 50vw); }
    .elv-orb-quote { font-size: 1.6rem; }
    .elv-cta { padding: 3rem 1.25rem 4rem; }
    .elv-feats-quad { grid-template-columns: 1fr; }
    .elv-trio-quad { grid-template-columns: 1fr; }

    /* Email mockup — keep everything inside the card on narrow viewports */
    .elv-email-meta {
        padding: 0.75rem 1rem;
        font-size: 0.72rem;
    }
    .elv-email-body { padding: 1rem 1rem 1.5rem; }
    .elv-email-body h4 { font-size: 1.2rem; }
    .elv-email-body h5 { font-size: 0.98rem; }
    .elv-email-body p,
    .elv-email-body blockquote { font-size: 0.88rem; }
    .elv-email-table {
        table-layout: fixed;
        font-size: 0.78rem;
    }
    .elv-email-table th,
    .elv-email-table td {
        padding: 0.45rem 0.4rem;
        overflow-wrap: anywhere;
        word-break: break-word;
    }
    .elv-email-table td:nth-child(2),
    .elv-email-table td:nth-child(3) { font-size: 0.78rem; }
    .elv-email-table th:first-child,
    .elv-email-table td:first-child { width: 44%; }
}

/* ===========================================================================
   FOOTER — brand + sitemap + contact, with legal demoted to a quiet row
   below the meta separator.
   =========================================================================== */
.elv-footer {
    border-top: 1px solid var(--rule);
    background: var(--paper);
    padding: 4rem 2rem 1.75rem;
    font-family: 'Inter', sans-serif;
    color: var(--muted);
}
.elv-footer-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr;
    gap: 4rem;
    align-items: start;
}
.elv-footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.85rem;
}
.elv-footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    color: var(--ink);
    text-decoration: none;
    font-family: 'Funnel Display', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
}
.elv-footer-logo img { height: 32px; width: auto; }
.elv-footer-tag {
    margin: 0;
    color: var(--muted);
    font-size: 0.95rem;
    max-width: 32ch;
    line-height: 1.5;
}
.elv-footer-cta {
    margin-top: 0.4rem;
    padding: 0.75rem 1.25rem;
    font-size: 0.95rem;
}
.elv-footer-trust {
    margin: 0.2rem 0 0;
    font-size: 0.82rem;
    color: var(--muted-soft);
}
.elv-footer-heading {
    margin: 0 0 1.1rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ink-soft);
}
.elv-footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}
.elv-footer-nav a {
    color: var(--ink-soft);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s;
}
.elv-footer-nav a:hover { color: var(--violet); }
.elv-footer-contact {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.55rem;
}
.elv-footer-contact-line {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    color: var(--ink);
    text-decoration: none;
    font-size: 0.98rem;
    font-weight: 500;
    transition: color 0.2s;
}
.elv-footer-contact-line:hover { color: var(--violet); }
.elv-footer-contact-line svg {
    color: var(--violet);
    flex-shrink: 0;
}
.elv-footer-contact-cta {
    margin-top: 0.6rem;
    padding: 0.65rem 1.15rem;
    font-size: 0.93rem;
}
.elv-footer-hours {
    margin: 0.35rem 0 0;
    font-size: 0.82rem;
    color: var(--muted-soft);
}
.elv-footer-meta {
    max-width: 1280px;
    margin: 3rem auto 0;
    padding-top: 1.5rem;
    border-top: 1px solid var(--rule);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.6rem 1.5rem;
}
.elv-footer-copy {
    margin: 0;
    font-size: 0.78rem;
    color: var(--muted-soft);
}
.elv-footer-legal-row {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem 1.1rem;
    font-size: 0.78rem;
}
.elv-footer-legal-row a {
    color: var(--muted-soft);
    text-decoration: none;
    transition: color 0.2s;
}
.elv-footer-legal-row a:hover {
    color: var(--ink-soft);
    text-decoration: underline;
    text-underline-offset: 3px;
}
@media (max-width: 900px) {
    .elv-footer-inner {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
    .elv-footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 540px) {
    .elv-footer { padding: 3rem 1.25rem 1.5rem; }
    .elv-footer-inner {
        grid-template-columns: 1fr;
        gap: 2.25rem;
    }
    .elv-footer-meta {
        margin-top: 2rem;
        justify-content: flex-start;
    }
    .elv-footer-legal-row { gap: 0.35rem 0.9rem; }
}
