:root {
    --color-primary: #f16623;
    --color-primary-dark: #d95517;
    --color-primary-soft: rgba(241, 102, 35, 0.1);
    --color-secondary: #2b225b;
    --color-secondary-light: #44337a;
    --color-neutral: #cacaca;
    --color-white: #ffffff;
    --color-bg: #f8f8fb;
    --color-text: #1f1f29;
    --color-muted: #6b6b78;
    --color-border: #e6e6ec;
    --font-main: 'Montserrat', sans-serif;
    --radius-sm: 12px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-pill: 999px;
    --shadow-sm: 0 8px 24px rgba(31, 31, 41, 0.06);
    --shadow-md: 0 14px 40px rgba(31, 31, 41, 0.08);
    --shadow-lg: 0 20px 50px rgba(31, 31, 41, 0.12);
    --shadow-orange: 0 12px 28px rgba(241, 102, 35, 0.28);
    --container: 1200px;
    --section-space: 56px;
}

* {
    box-sizing: border-box;
}

html {
    min-width: 320px;
    scroll-behavior: smooth;
}

body {
    min-width: 320px;
    margin: 0;
    overflow-x: hidden;
    color: var(--color-text);
    background: var(--color-white);
    font-family: var(--font-main);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.65;
    text-rendering: optimizeLegibility;
}

body.nav-open {
    overflow: hidden;
}

img,
svg,
iframe {
    max-width: 100%;
}

img {
    display: block;
    height: auto;
}

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

button,
a,
summary {
    -webkit-tap-highlight-color: transparent;
}

:focus-visible {
    outline: 3px solid rgba(241, 102, 35, 0.45);
    outline-offset: 3px;
}

p,
h1,
h2,
h3 {
    margin-top: 0;
}

p {
    color: var(--color-muted);
    font-size: 15.5px;
    line-height: 1.65;
}

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

h1 {
    max-width: 12.5ch;
    margin-bottom: 18px;
    font-size: 34px;
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.03em;
}

h1 span {
    color: var(--color-primary);
}

h2 {
    margin-bottom: 14px;
    font-size: 28px;
    font-weight: 800;
    line-height: 1.15;
}

h3 {
    margin-bottom: 10px;
    font-size: 21px;
    font-weight: 700;
    line-height: 1.25;
}

.container {
    width: min(100% - 36px, var(--container));
    margin-inline: auto;
}

.section {
    padding-block: var(--section-space);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    width: fit-content;
    margin-bottom: 14px;
    padding: 8px 12px;
    color: var(--color-primary);
    background: var(--color-primary-soft);
    border: 1px solid rgba(241, 102, 35, 0.18);
    border-radius: var(--radius-pill);
    font-size: 12px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: 0;
    text-transform: none;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.88);
    border-bottom: 1px solid rgba(43, 34, 91, 0.08);
    box-shadow: 0 8px 28px rgba(31, 31, 41, 0.08);
    backdrop-filter: blur(16px);
}

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

.brand {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
}

.site-logo {
    display: block;
    width: clamp(132px, 34vw, 188px);
    height: auto;
    object-fit: contain;
}

.menu-toggle {
    position: relative;
    z-index: 120;
    display: inline-grid;
    width: 46px;
    height: 46px;
    place-items: center;
    padding: 0;
    background: var(--color-white);
    border: 1px solid rgba(43, 34, 91, 0.12);
    border-radius: 14px;
    box-shadow: var(--shadow-sm);
    cursor: pointer;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

.menu-toggle span:not(.sr-only) {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--color-secondary);
    border-radius: var(--radius-pill);
    transition: transform 220ms ease, opacity 220ms ease;
}

.menu-toggle[aria-expanded='true'] span:nth-child(2) {
    transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded='true'] span:nth-child(3) {
    opacity: 0;
}

.menu-toggle[aria-expanded='true'] span:nth-child(4) {
    transform: translateY(-6px) rotate(-45deg);
}

.site-nav {
    position: fixed;
    inset: 0;
    z-index: 110;
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 104px 18px 28px;
    background: rgba(255, 255, 255, 0.97);
    transform: translateX(100%);
    transition: transform 240ms ease;
    backdrop-filter: blur(16px);
}

.site-nav.is-open {
    transform: translateX(0);
}

.site-nav a {
    display: inline-flex;
    min-height: 46px;
    align-items: center;
    color: var(--color-secondary);
    font-size: 15px;
    font-weight: 700;
    transition: color 220ms ease, background 220ms ease, border-color 220ms ease, transform 220ms ease, box-shadow 220ms ease;
}

.site-nav a:not(.btn) {
    padding: 10px 12px;
    border-radius: 14px;
}

.site-nav a:not(.btn):hover,
.site-nav a:not(.btn):focus-visible {
    color: var(--color-primary);
    background: rgba(241, 102, 35, 0.08);
}

.btn {
    display: inline-flex;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 20px;
    border: 1px solid transparent;
    border-radius: var(--radius-pill);
    font-family: var(--font-main);
    font-size: 15px;
    font-weight: 800;
    line-height: 1.2;
    text-align: center;
    cursor: pointer;
    transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease, background 220ms ease, color 220ms ease;
}

.btn:hover,
.btn:focus-visible {
    transform: translateY(-2px);
}

.btn-primary {
    color: var(--color-white);
    background: linear-gradient(135deg, var(--color-primary) 0%, #ff8a4c 100%);
    border: none;
    box-shadow: var(--shadow-orange);
}

.btn-primary:hover,
.btn-primary:focus-visible {
    color: var(--color-white);
    background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 100%);
    box-shadow: 0 16px 36px rgba(241, 102, 35, 0.35);
}

.btn-secondary {
    color: var(--color-secondary);
    background: var(--color-white);
    border-color: rgba(43, 34, 91, 0.15);
    box-shadow: 0 8px 22px rgba(31, 31, 41, 0.08);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
    color: var(--color-primary);
    border-color: var(--color-primary);
}

.btn-light {
    color: var(--color-white);
    background: var(--color-primary);
    box-shadow: var(--shadow-orange);
}

.btn-outline-light {
    color: var(--color-white);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.18);
}

.btn-outline-light:hover,
.btn-outline-light:focus-visible {
    background: rgba(255, 255, 255, 0.16);
}

.button-row,
.cta-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hero {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding-top: 42px;
    background:
        radial-gradient(circle at 92% 14%, rgba(241, 102, 35, 0.18), transparent 27rem),
        radial-gradient(circle at 5% 12%, rgba(43, 34, 91, 0.08), transparent 24rem),
        linear-gradient(180deg, #ffffff 0%, #fbfbfe 100%);
}

.hero::before {
    position: absolute;
    inset: 8% -10% auto auto;
    z-index: -1;
    width: 340px;
    height: 340px;
    content: '';
    background: radial-gradient(circle, rgba(241, 102, 35, 0.13), transparent 68%);
    border-radius: 50%;
}

.hero-grid,
.split-grid,
.visual-grid,
.app-grid,
.demo-grid,
.faq-grid,
.usecase-panel {
    display: grid;
    gap: 32px;
}

.hero-content {
    align-self: center;
}

.hero-lead {
    max-width: 620px;
    margin-bottom: 24px;
    color: var(--color-muted);
    font-size: 17px;
    font-weight: 500;
    line-height: 1.6;
}

.hero-proof {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 20px;
}

.hero-proof span {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 7px 11px;
    color: var(--color-secondary);
    background: rgba(43, 34, 91, 0.06);
    border: 1px solid rgba(43, 34, 91, 0.08);
    border-radius: var(--radius-pill);
    font-size: 12px;
    font-weight: 800;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    max-width: 520px;
    margin-top: 18px;
}

.hero-stats div {
    min-height: 96px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(43, 34, 91, 0.08);
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
}

.hero-stats strong,
.hero-stats span {
    display: block;
}

.hero-stats strong {
    color: var(--color-secondary);
    font-size: 24px;
    font-weight: 800;
    line-height: 1;
}

.hero-stats span {
    margin-top: 8px;
    color: var(--color-muted);
    font-size: 13px;
    font-weight: 600;
    line-height: 1.4;
}

.hero-showcase {
    position: relative;
    min-height: 370px;
}

.hero-media-card,
.hero-media-card-enhanced,
.image-frame {
    overflow: hidden;
    background: var(--color-bg);
    border: 1px solid rgba(43, 34, 91, 0.08);
    border-radius: 28px;
    box-shadow: 0 18px 45px rgba(31, 31, 41, 0.12);
}

.hero-media-card-enhanced {
    height: 390px;
}

.hero-media-card img,
.image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-media-card-enhanced::after {
    position: absolute;
    inset: 0;
    content: '';
    background: linear-gradient(180deg, transparent 45%, rgba(43, 34, 91, 0.24));
    pointer-events: none;
}

.assistant-card {
    position: absolute;
    z-index: 2;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 12px;
    width: min(92%, 320px);
    padding: 16px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(16px);
}

.assistant-card-top {
    top: 14px;
    left: 14px;
}

.assistant-card-bottom {
    right: 14px;
    bottom: 14px;
}

.assistant-card strong {
    display: block;
    color: var(--color-secondary);
    font-size: 14px;
    font-weight: 800;
    line-height: 1.25;
}

.assistant-card p {
    margin: 5px 0 0;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.45;
}

.assistant-dot {
    width: 14px;
    height: 14px;
    margin-top: 2px;
    background: var(--color-secondary);
    border-radius: 50%;
    box-shadow: 0 0 0 6px rgba(43, 34, 91, 0.12);
}

.assistant-dot-orange {
    background: var(--color-primary);
    box-shadow: 0 0 0 6px rgba(241, 102, 35, 0.14);
}

.intro-section,
.visual-story,
.usecase-section {
    background: var(--color-white);
}

.muted-section,
.demo-section,
.faq-section {
    background: var(--color-bg);
}

.section-heading {
    max-width: 760px;
    margin: 0 auto 32px;
    text-align: center;
}

.section-heading .eyebrow {
    margin-inline: auto;
}

.section-heading.align-left {
    margin-inline: 0;
    text-align: left;
}

.section-heading.align-left .eyebrow {
    margin-inline: 0;
}

.section-heading p:last-child {
    margin-bottom: 0;
    font-size: 16px;
    font-weight: 500;
}

.text-stack p,
.visual-copy p,
.usecase-panel > div > p,
.app-grid > div > p {
    font-size: 16px;
    font-weight: 500;
}

.card-grid,
.function-cards,
.audience-grid,
.video-embed-grid,
.usecase-steps,
.store-buttons {
    display: grid;
    gap: 18px;
}

.feature-card,
.function-cards article,
.audience-grid article,
.video-embed-card,
.usecase-steps article,
.download-card,
.faq-list details {
    height: 100%;
    padding: 22px;
    background: var(--color-white);
    border: 1px solid rgba(43, 34, 91, 0.08);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease, background 220ms ease;
}

.function-cards article[id] {
    scroll-margin-top: 96px;
}

.feature-card:hover,
.function-cards article:hover,
.audience-grid article:hover,
.video-embed-card:hover,
.usecase-steps article:hover,
.faq-list details:hover {
    transform: translateY(-4px);
    border-color: rgba(241, 102, 35, 0.22);
    box-shadow: var(--shadow-lg);
}

.feature-card p,
.function-cards p,
.audience-grid p,
.video-embed-card p,
.usecase-steps p {
    margin-bottom: 0;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.6;
}

.card-icon,
.usecase-steps span {
    display: inline-grid;
    width: 52px;
    height: 52px;
    place-items: center;
    margin-bottom: 18px;
    color: var(--color-primary);
    background: var(--color-primary-soft);
    border-radius: 18px;
    font-size: 14px;
    font-weight: 800;
}

.check-list {
    display: grid;
    gap: 12px;
    padding: 0;
    margin: 24px 0 0;
    list-style: none;
}

.check-list li {
    position: relative;
    padding-left: 34px;
    color: var(--color-text);
    font-size: 15px;
    font-weight: 700;
    line-height: 1.55;
}

.check-list li::before {
    position: absolute;
    top: 1px;
    left: 0;
    display: grid;
    width: 22px;
    height: 22px;
    place-items: center;
    color: var(--color-white);
    content: '✓';
    background: var(--color-primary);
    border-radius: 50%;
    font-size: 12px;
    font-weight: 900;
}

.image-frame {
    min-height: 300px;
    aspect-ratio: 4 / 3;
}

.featured-video {
    display: grid;
    gap: 20px;
    margin-bottom: 18px;
    padding: 16px;
    background: var(--color-white);
    border: 1px solid rgba(43, 34, 91, 0.08);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

.featured-video-copy {
    align-self: center;
    padding: 4px;
}

.featured-video-copy h3 {
    font-size: 24px;
}

.video-embed {
    position: relative;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: var(--color-secondary);
    border-radius: 18px;
}

.video-embed iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.video-embed-card h3 {
    margin-top: 18px;
}

.usecase-panel {
    padding: 24px;
    background:
        radial-gradient(circle at 95% 8%, rgba(241, 102, 35, 0.14), transparent 22rem),
        linear-gradient(135deg, #fff6f1 0%, #ffffff 72%);
    border: 1px solid rgba(241, 102, 35, 0.18);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

.usecase-steps span {
    margin-bottom: 14px;
    color: var(--color-white);
    background: var(--color-secondary);
}

.app-section {
    position: relative;
    overflow: hidden;
    color: var(--color-white);
    background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-secondary-light) 100%);
}

.app-section::before {
    position: absolute;
    right: -120px;
    bottom: -160px;
    width: 360px;
    height: 360px;
    content: '';
    background: radial-gradient(circle, rgba(241, 102, 35, 0.28), transparent 68%);
    border-radius: 50%;
}

.app-section .container {
    position: relative;
}

.app-section h2,
.app-section h3 {
    color: var(--color-white);
}

.app-section p {
    color: rgba(255, 255, 255, 0.76);
}

.app-section .eyebrow {
    color: var(--color-white);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.18);
}

.download-card {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.18);
    box-shadow: none;
    backdrop-filter: blur(10px);
}

.store-button {
    display: flex;
    min-height: 72px;
    flex-direction: column;
    justify-content: center;
    padding: 14px 18px;
    color: var(--color-secondary);
    background: var(--color-white);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 18px;
    box-shadow: var(--shadow-sm);
    transition: transform 220ms ease, box-shadow 220ms ease;
}

.store-button:hover,
.store-button:focus-visible {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.store-button span {
    color: var(--color-muted);
    font-size: 12px;
    font-weight: 700;
}

.store-button strong {
    color: var(--color-secondary);
    font-size: 16px;
    font-weight: 800;
}

.faq-list {
    display: grid;
    gap: 14px;
}

.faq-list details {
    padding: 0;
    overflow: hidden;
}

.faq-list summary {
    min-height: 60px;
    padding: 18px 22px;
    color: var(--color-secondary);
    cursor: pointer;
    font-size: 16px;
    font-weight: 800;
    line-height: 1.35;
}

.faq-list p {
    margin: 0;
    padding: 0 22px 20px;
    font-size: 15px;
    font-weight: 500;
}

.cta-section {
    padding-top: 0;
    background: var(--color-white);
}

.cta-panel {
    position: relative;
    overflow: hidden;
    display: grid;
    gap: 24px;
    padding: 32px 22px;
    color: var(--color-white);
    background: linear-gradient(135deg, var(--color-secondary) 0%, #3b2c78 100%);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.cta-panel::after {
    position: absolute;
    right: -90px;
    bottom: -120px;
    width: 280px;
    height: 280px;
    content: '';
    background: radial-gradient(circle, rgba(241, 102, 35, 0.42), transparent 70%);
    border-radius: 50%;
}

.cta-panel > * {
    position: relative;
    z-index: 1;
}

.cta-panel h2,
.cta-panel .eyebrow {
    color: var(--color-white);
}

.cta-panel .eyebrow {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.18);
}

.cta-panel p {
    max-width: 680px;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.78);
    font-weight: 500;
}

.site-footer {
    padding-top: 64px;
    color: rgba(255, 255, 255, 0.72);
    background: var(--color-secondary);
}

.site-footer p,
.site-footer a {
    color: rgba(255, 255, 255, 0.72);
}

.site-footer a {
    transition: color 220ms ease;
}

.site-footer a:hover,
.site-footer a:focus-visible {
    color: var(--color-primary);
}

.site-footer h2 {
    margin-bottom: 16px;
    color: var(--color-white);
    font-size: 18px;
    font-weight: 800;
    line-height: 1.2;
}

.footer-grid {
    display: grid;
    gap: 32px;
    padding-bottom: 36px;
}

.footer-brand {
    margin-bottom: 18px;
}

.footer-logo {
    display: block;
    width: min(172px, 58vw);
    height: auto;
    object-fit: contain;
}

.footer-list {
    display: grid;
    gap: 10px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-block: 24px 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    line-height: 1.5;
}

@media (max-width: 480px) {
    .button-row .btn,
    .cta-actions .btn {
        width: 100%;
    }

    .hero-stats {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 641px) {
    :root {
        --section-space: 72px;
    }

    .container {
        width: min(100% - 48px, var(--container));
    }

    h1 {
        font-size: 44px;
    }

    h2 {
        font-size: 34px;
    }

    h3 {
        font-size: 24px;
    }

    .button-row,
    .cta-actions {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .card-grid,
    .function-cards,
    .audience-grid,
    .video-embed-grid,
    .store-buttons {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hero-media-card-enhanced {
        height: 480px;
    }

    .featured-video {
        grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
        align-items: center;
        padding: 20px;
    }
}

@media (min-width: 768px) {
    .split-grid,
    .visual-grid,
    .app-grid,
    .faq-grid,
    .cta-panel {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        align-items: center;
    }

    .usecase-panel {
        grid-template-columns: 0.9fr 1.1fr;
        align-items: center;
        padding: 36px;
    }

    .usecase-steps {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr;
    }

    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

@media (min-width: 1025px) {
    :root {
        --section-space: 104px;
    }

    .container {
        width: min(100% - 64px, var(--container));
    }

    h1 {
        font-size: 56px;
    }

    h2 {
        font-size: 40px;
    }

    h3 {
        font-size: 26px;
    }

    p {
        font-size: 16px;
    }

    .header-inner {
        min-height: 82px;
    }

    .menu-toggle {
        display: none;
    }

    .site-nav {
        position: static;
        z-index: auto;
        flex: 1 1 auto;
        flex-direction: row;
        align-items: center;
        justify-content: flex-end;
        gap: 8px;
        padding: 0;
        background: transparent;
        transform: none;
        transition: none;
        backdrop-filter: none;
    }

    .site-nav a {
        min-height: 44px;
        font-size: 14px;
        font-weight: 700;
    }

    .site-nav a:not(.btn) {
        padding: 10px 11px;
    }

    .nav-cta {
        margin-left: 6px;
        min-height: 46px;
        padding-inline: 20px;
    }

    .hero {
        min-height: calc(100vh - 82px);
        display: grid;
        align-items: center;
        padding-block: 70px 88px;
    }

    .hero-grid-enhanced {
        grid-template-columns: 0.9fr 1.1fr;
        gap: 64px;
        align-items: center;
    }

    .hero-lead {
        font-size: 20px;
    }

    .hero-showcase {
        min-height: 560px;
    }

    .hero-media-card-enhanced {
        height: min(70vh, 560px);
        min-height: 520px;
    }

    .assistant-card-top {
        top: 24px;
        left: -14px;
    }

    .assistant-card-bottom {
        right: -10px;
        bottom: 28px;
    }

    .benefits-grid,
    .function-cards {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 24px;
    }

    .audience-grid,
    .video-embed-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 24px;
    }

    .visual-grid {
        gap: 64px;
    }

    .feature-card,
    .function-cards article,
    .audience-grid article,
    .video-embed-card,
    .usecase-steps article,
    .download-card,
    .faq-list details {
        padding: 30px;
    }

    .cta-panel {
        padding: 64px;
    }
}

@media (min-width: 1200px) {
    :root {
        --section-space: 112px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}

.hero-media-card,
.hero-media-card-enhanced {
    position: relative;
}

@media (min-width: 1025px) {
    .video-embed-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.contact-panel {
    align-items: stretch;
}

.contact-copy {
    align-self: center;
}

.contact-copy .cta-actions {
    margin-top: 24px;
}

.contact-card {
    position: relative;
    z-index: 1;
    padding: 24px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--radius-lg);
    box-shadow: 0 18px 45px rgba(31, 31, 41, 0.14);
    backdrop-filter: blur(12px);
}

.contact-card-label {
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
}

.contact-card h3 {
    color: var(--color-white);
}

.contact-list {
    display: grid;
    gap: 14px;
    padding: 0;
    margin: 22px 0;
    list-style: none;
}

.contact-list li {
    display: grid;
    gap: 3px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.contact-list span {
    color: rgba(255, 255, 255, 0.62);
    font-size: 13px;
    font-weight: 700;
}

.contact-list a,
.contact-list strong,
.powered-by a {
    color: var(--color-white);
    font-weight: 800;
}

.contact-list a:hover,
.powered-by a:hover {
    color: var(--color-primary);
}

.powered-by,
.footer-powered {
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    font-weight: 700;
}

.footer-powered {
    margin-top: 18px;
}

@media (min-width: 768px) {
    .contact-card {
        padding: 30px;
    }
}

/* Final CTA and footer refinements */
.btn,
.site-nav .btn,
.nav-cta {
    white-space: nowrap;
}

.btn-primary,
.site-nav .btn-primary,
.nav-cta {
    color: var(--color-white) !important;
    background: linear-gradient(135deg, var(--color-primary) 0%, #ff8a4c 100%) !important;
    border: 0 !important;
    box-shadow: var(--shadow-orange);
}

.btn-primary:hover,
.btn-primary:focus-visible,
.site-nav .btn-primary:hover,
.site-nav .btn-primary:focus-visible,
.nav-cta:hover,
.nav-cta:focus-visible {
    color: var(--color-white) !important;
    background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 100%) !important;
    box-shadow: 0 16px 36px rgba(241, 102, 35, 0.35);
}

.btn-light {
    color: var(--color-white) !important;
    background: linear-gradient(135deg, var(--color-primary) 0%, #ff8a4c 100%);
    box-shadow: var(--shadow-orange);
}

.site-footer {
    background:
        radial-gradient(circle at 88% 18%, rgba(43, 34, 91, 0.2), transparent 22rem),
        linear-gradient(135deg, var(--color-primary) 0%, #ff8a4c 100%);
}

.site-footer p,
.site-footer a,
.footer-list li,
.footer-powered,
.footer-bottom p {
    color: rgba(255, 255, 255, 0.86);
}

.site-footer h2 {
    color: var(--color-white);
}

.site-footer a:hover,
.site-footer a:focus-visible {
    color: var(--color-secondary);
}

.footer-bottom {
    border-top-color: rgba(255, 255, 255, 0.24);
}

@media (min-width: 1025px) {
    .nav-cta {
        min-width: max-content;
        padding-inline: 22px;
    }
}

.btn {
    flex-shrink: 0;
}

.site-nav {
    min-width: 0;
}

.hero-video-showcase {
    min-height: auto;
    display: grid;
    align-items: center;
}

.hero-video-card {
    position: relative;
    overflow: hidden;
    padding: 10px;
    background:
        linear-gradient(var(--color-white), var(--color-white)) padding-box,
        linear-gradient(135deg, rgba(241, 102, 35, 0.36), rgba(43, 34, 91, 0.24)) border-box;
    border: 1px solid transparent;
    border-radius: 30px;
    box-shadow: 0 22px 58px rgba(31, 31, 41, 0.14);
}

.hero-video-embed {
    border-radius: 22px;
    box-shadow: none;
}

.hero-video-showcase .assistant-card-top {
    top: -14px;
    left: 12px;
}

.hero-video-showcase .assistant-card-bottom {
    right: 12px;
    bottom: -18px;
}

@media (max-width: 767px) {
    .hero-video-showcase {
        padding-bottom: 54px;
    }

    .hero-video-showcase .assistant-card-top {
        top: -10px;
        left: 10px;
    }

    .hero-video-showcase .assistant-card-bottom {
        right: 10px;
        bottom: 0;
    }
}

@media (min-width: 1025px) {
    .hero-video-showcase {
        min-height: 500px;
    }
}

/* Hero cleanup after video placement */
.hero-grid-enhanced {
    gap: 42px;
}

.hero-content {
    max-width: 640px;
}

.hero-content .eyebrow {
    margin-bottom: 18px;
}

.hero-lead {
    margin-bottom: 28px;
}

.hero-proof {
    margin-top: 24px;
}

.hero-video-showcase {
    gap: 18px;
    padding-bottom: 0;
}

.hero-video-card {
    padding: 12px;
}

.hero-video-notes {
    display: grid;
    gap: 14px;
    grid-template-columns: 1fr;
}

.hero-video-notes > div {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 10px 12px;
    align-items: start;
    padding: 16px;
    background: var(--color-white);
    border: 1px solid rgba(43, 34, 91, 0.08);
    border-radius: 18px;
    box-shadow: var(--shadow-sm);
}

.hero-video-notes strong {
    display: block;
    color: var(--color-secondary);
    font-size: 14px;
    font-weight: 800;
    line-height: 1.25;
}

.hero-video-notes p {
    grid-column: 2;
    margin: -4px 0 0;
    font-size: 13px;
    line-height: 1.45;
}

@media (max-width: 640px) {
    .hero-proof {
        display: none;
    }

    .hero-stats {
        margin-top: 18px;
    }
}

@media (min-width: 641px) {
    .hero-video-notes {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1025px) {
    .hero-grid-enhanced {
        grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
        gap: 86px;
    }

    .hero-content {
        padding-right: 10px;
    }

    .hero-video-showcase {
        min-height: auto;
    }
}

.download-buttons .download-button {
    position: relative;
    overflow: hidden;
}

.download-buttons .download-button::after {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 10px;
    height: 10px;
    content: '';
    border-right: 2px solid var(--color-primary);
    border-bottom: 2px solid var(--color-primary);
    transform: rotate(45deg);
}

.download-help {
    display: inline-flex;
    margin-top: 18px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 14px;
    font-weight: 800;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.download-help:hover,
.download-help:focus-visible {
    color: var(--color-white);
}

.hero-content .button-row {
    margin-top: 4px;
}

.hero-content {
    padding-bottom: 10px;
}

.site-footer {
    padding-top: 48px;
}

.footer-grid {
    padding-bottom: 28px;
}

.hero h1 {
    max-width: 13.6ch;
}

@media (min-width: 1025px) {
    .hero h1 {
        font-size: 52px;
    }
}

.hero h1 {
    font-size: 33px;
}

@media (min-width: 641px) {
    .hero h1 {
        font-size: 42px;
    }
}

@media (min-width: 1025px) {
    .hero h1 {
        font-size: 50px;
    }
}

.hero h1 span {
    color: inherit;
}


/* Keep section eyebrow badges visually consistent with the calmer visual-copy style */
.section-heading .eyebrow,
.visual-copy .eyebrow,
.usecase-panel .eyebrow,
.app-grid .eyebrow,
.faq-grid .eyebrow {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.65;
}

.hero-content .eyebrow,
.cta-panel .eyebrow {
    font-size: 13px;
    font-weight: 700;
}

.hero-content .eyebrow,
.intro-section .eyebrow {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.65;
}

.faq-grid-enhanced {
    align-items: start;
}

.faq-intro {
    position: sticky;
    top: 110px;
}

.faq-intro > p:not(.eyebrow) {
    font-size: 16px;
    font-weight: 500;
}

.faq-highlight {
    margin-top: 24px;
    padding: 20px;
    background: var(--color-white);
    border: 1px solid rgba(241, 102, 35, 0.18);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.faq-highlight strong,
.faq-highlight span {
    display: block;
}

.faq-highlight strong {
    color: var(--color-secondary);
    font-size: 15px;
    font-weight: 800;
}

.faq-highlight span {
    margin-top: 6px;
    color: var(--color-muted);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.55;
}

.faq-list {
    gap: 12px;
}

.faq-list details {
    border-radius: 20px;
}

.faq-list details[open] {
    border-color: rgba(241, 102, 35, 0.24);
    box-shadow: var(--shadow-lg);
}

.faq-list summary {
    position: relative;
    padding-right: 54px;
    list-style: none;
}

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

.faq-list summary::after {
    position: absolute;
    top: 50%;
    right: 22px;
    display: grid;
    width: 28px;
    height: 28px;
    place-items: center;
    color: var(--color-primary);
    content: '+';
    background: var(--color-primary-soft);
    border-radius: 50%;
    font-size: 18px;
    font-weight: 800;
    line-height: 1;
    transform: translateY(-50%);
}

.faq-list details[open] summary::after {
    content: '-';
}

@media (max-width: 767px) {
    .faq-intro {
        position: static;
    }
}

/* Compact FAQ layout */
.faq-grid-enhanced {
    display: block;
}

.faq-intro {
    position: static;
    max-width: 860px;
    margin: 0 auto 28px;
    text-align: center;
}

.faq-intro .eyebrow {
    margin-inline: auto;
}

.faq-highlight {
    max-width: 640px;
    margin: 20px auto 0;
    padding: 16px 18px;
}

.faq-list {
    display: grid;
    gap: 12px;
}

.faq-list details {
    box-shadow: var(--shadow-sm);
}

.faq-list details:hover,
.faq-list details[open] {
    transform: none;
    box-shadow: var(--shadow-md);
}

.faq-list summary {
    min-height: auto;
    padding: 15px 50px 15px 18px;
    font-size: 15px;
}

.faq-list summary::after {
    right: 18px;
    width: 24px;
    height: 24px;
    font-size: 16px;
}

.faq-list p {
    padding: 0 18px 16px;
    font-size: 14px;
    line-height: 1.55;
}

@media (min-width: 900px) {
    .faq-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        align-items: start;
    }
}

/* Mobile navigation hardening */
html,
body {
    max-width: 100%;
    overflow-x: clip;
}

.site-header,
main,
.site-footer {
    max-width: 100%;
    overflow-x: clip;
}

@media (max-width: 1024px) {
    .site-header {
        background: rgba(255, 255, 255, 0.96);
    }

    .header-inner {
        min-height: 70px;
    }

    .menu-toggle {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 5px;
        width: 46px;
        height: 46px;
        background: var(--color-white);
        border: 1px solid rgba(43, 34, 91, 0.14);
        border-radius: 16px;
        box-shadow: 0 8px 22px rgba(31, 31, 41, 0.08);
    }

    .menu-toggle span:not(.sr-only) {
        width: 21px;
        height: 2px;
        background: var(--color-secondary);
        transform-origin: center;
    }

    .menu-toggle[aria-expanded='true'] {
        background: var(--color-secondary);
        border-color: var(--color-secondary);
    }

    .menu-toggle[aria-expanded='true'] span:not(.sr-only) {
        background: var(--color-white);
    }

    .menu-toggle[aria-expanded='true'] span:nth-of-type(2) {
        transform: translateY(7px) rotate(45deg);
    }

    .menu-toggle[aria-expanded='true'] span:nth-of-type(3) {
        opacity: 0;
    }

    .menu-toggle[aria-expanded='true'] span:nth-of-type(4) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .site-nav {
        position: fixed;
        inset: 70px 12px auto 12px;
        z-index: 105;
        display: grid;
        gap: 6px;
        max-height: calc(100dvh - 92px);
        padding: 14px;
        overflow-y: auto;
        background: var(--color-white);
        border: 1px solid rgba(43, 34, 91, 0.1);
        border-radius: 22px;
        box-shadow: 0 24px 70px rgba(31, 31, 41, 0.18);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-8px) scale(0.98);
        transform-origin: top right;
        pointer-events: none;
        backdrop-filter: none;
        transition: opacity 200ms ease, visibility 200ms ease, transform 200ms ease;
    }

    .site-nav.is-open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0) scale(1);
        pointer-events: auto;
    }

    .site-nav a {
        width: 100%;
        min-height: 48px;
        justify-content: flex-start;
        padding: 12px 14px;
        color: var(--color-secondary);
        background: rgba(43, 34, 91, 0.03);
        border-radius: 14px;
        font-size: 15px;
        font-weight: 700;
    }

    .site-nav a:not(.btn):hover,
    .site-nav a:not(.btn):focus-visible {
        color: var(--color-secondary);
        background: rgba(241, 102, 35, 0.1);
    }

    .site-nav .nav-cta {
        justify-content: center;
        margin-top: 6px;
        background: linear-gradient(135deg, var(--color-primary) 0%, #ff8a4c 100%) !important;
    }

    body.nav-open::before {
        position: fixed;
        inset: 0;
        z-index: 90;
        content: '';
        background: rgba(43, 34, 91, 0.24);
        backdrop-filter: blur(4px);
    }
}

@media (max-width: 640px) {
    .container {
        width: min(100% - 36px, var(--container));
    }

    .hero::before,
    .app-section::before,
    .cta-panel::after {
        display: none;
    }
}

/* Mobile menu final fix: solid, clickable full-screen panel */
@media (max-width: 1024px) {
    .site-header {
        overflow: visible;
        z-index: 9990;
    }

    body.nav-open::before {
        display: none;
    }

    .menu-toggle {
        z-index: 10020;
    }

    .site-nav {
        position: fixed;
        top: 70px;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: 10010;
        display: flex;
        flex-direction: column;
        gap: 8px;
        width: 100vw;
        max-width: 100vw;
        height: calc(100dvh - 70px);
        max-height: none;
        padding: 22px 18px 28px;
        overflow-y: auto;
        background: #ffffff;
        border: 0;
        border-radius: 0;
        box-shadow: none;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        pointer-events: none;
        transition: opacity 180ms ease, visibility 180ms ease, transform 180ms ease;
    }

    .site-nav.is-open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        pointer-events: auto;
    }

    .site-nav a,
    .site-nav a:not(.btn) {
        display: flex;
        width: 100%;
        min-height: 52px;
        align-items: center;
        justify-content: flex-start;
        padding: 14px 16px;
        color: var(--color-secondary);
        background: #f8f8fb;
        border: 1px solid rgba(43, 34, 91, 0.08);
        border-radius: 16px;
        font-size: 16px;
        font-weight: 700;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .site-nav .nav-cta {
        justify-content: center;
        margin-top: 8px;
        color: #ffffff !important;
        background: linear-gradient(135deg, var(--color-primary) 0%, #ff8a4c 100%) !important;
        border: 0;
    }
}

.breadcrumb {
    padding-top: 24px;
}

.breadcrumb ol {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 0;
    margin: 0;
    list-style: none;
    color: var(--color-muted);
    font-size: 14px;
    font-weight: 700;
}

.breadcrumb li + li::before {
    margin-right: 8px;
    color: var(--color-primary);
    content: '/';
}

.breadcrumb a {
    color: var(--color-secondary);
}

.breadcrumb a:hover,
.breadcrumb a:focus-visible,
.function-cards h3 a:hover,
.function-cards h3 a:focus-visible {
    color: var(--color-primary);
}

.service-hero {
    background:
        radial-gradient(circle at 92% 14%, rgba(241, 102, 35, 0.14), transparent 26rem),
        linear-gradient(180deg, #ffffff 0%, #fbfbfe 100%);
}

.service-summary {
    padding: 24px;
    background: var(--color-white);
    border: 1px solid rgba(43, 34, 91, 0.08);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.service-summary p {
    font-size: 16px;
    font-weight: 500;
}

@media (min-width: 768px) {
    .service-summary {
        padding: 34px;
    }
}

.service-hero h1 {
    max-width: 18ch;
}

.video-embed,
.video-embed iframe,
.faq-list,
.faq-list details {
    overflow-anchor: none;
}

@media (max-width: 767px) {
    .video-embed-card,
    .faq-list details {
        transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
    }
}


.video-play {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    padding: 0;
    overflow: hidden;
    background: var(--color-secondary);
    border: 0;
    cursor: pointer;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

.video-play img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-play::after {
    position: absolute;
    inset: 0;
    content: '';
    background: linear-gradient(180deg, rgba(31, 31, 41, 0.04), rgba(31, 31, 41, 0.28));
}

.video-play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 1;
    display: grid;
    width: 62px;
    height: 62px;
    place-items: center;
    background: var(--color-primary);
    border-radius: 50%;
    box-shadow: 0 16px 38px rgba(31, 31, 41, 0.28);
    transform: translate(-50%, -50%);
}

.video-play-icon::before {
    width: 0;
    height: 0;
    margin-left: 4px;
    content: '';
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    border-left: 18px solid var(--color-white);
}

.video-play:focus-visible .video-play-icon {
    outline: 3px solid rgba(255, 255, 255, 0.72);
    outline-offset: 4px;
}
