:root {
    --bg: #0f1720;
    --bg-soft: #151f2b;
    --bg-gradient:
        radial-gradient(circle at top left, rgba(198, 162, 103, 0.16), transparent 32%),
        radial-gradient(circle at 85% 18%, rgba(76, 126, 172, 0.18), transparent 24%),
        linear-gradient(180deg, #0e151e 0%, #101a26 48%, #0c1219 100%);
    --surface: rgba(16, 24, 35, 0.72);
    --surface-strong: rgba(255, 255, 255, 0.06);
    --surface-light: #f5efe4;
    --text: #ebf1f6;
    --muted: #9fb0c1;
    --heading: #fff9ee;
    --accent: #c6a267;
    --accent-strong: #e0bd84;
    --border: rgba(198, 162, 103, 0.18);
    --shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
    --header-bg: rgba(8, 13, 19, 0.72);
    --header-border: rgba(255, 255, 255, 0.06);
    --footer-bg: rgba(7, 10, 15, 0.5);
    --card-bg: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.025));
    --panel-bg: linear-gradient(180deg, rgba(255, 248, 234, 0.06), rgba(255, 255, 255, 0.02));
    --subtle-bg: rgba(255, 255, 255, 0.03);
    --subtle-bg-strong: rgba(255, 255, 255, 0.04);
    --subtle-border: rgba(255, 255, 255, 0.08);
    --nav-link: rgba(235, 241, 246, 0.8);
    --nav-link-hover: #fff9ee;
    --field-bg: rgba(5, 10, 16, 0.38);
    --field-bg-focus: rgba(5, 10, 16, 0.52);
    --field-border: rgba(255, 255, 255, 0.12);
    --field-placeholder: #7f93a7;
    --focus-ring: rgba(198, 162, 103, 0.12);
    --outline-btn-bg: rgba(255, 255, 255, 0.03);
    --outline-btn-border: rgba(255, 255, 255, 0.16);
    --feature-divider: rgba(198, 162, 103, 0.16);
    --logo-shell-bg: linear-gradient(180deg, rgba(6, 12, 18, 0.95), rgba(18, 28, 40, 0.88));
    --logo-shell-border: rgba(198, 162, 103, 0.3);
    --scrollbar-track: rgba(7, 12, 18, 0.92);
    --scrollbar-thumb: linear-gradient(180deg, rgba(198, 162, 103, 0.82), rgba(150, 116, 61, 0.95));
    --scrollbar-thumb-hover: linear-gradient(180deg, rgba(224, 189, 132, 0.92), rgba(169, 131, 70, 1));
    --scrollbar-border: rgba(10, 16, 24, 0.95);
    --radius-lg: 32px;
    --radius-md: 22px;
    --radius-sm: 14px;
    --display-font: "IBM Plex Serif", "Source Serif 4", "Libre Baskerville", Georgia, serif;
    --body-font: "Inter", "Plus Jakarta Sans", "Manrope", "Segoe UI Variable", "Aptos", sans-serif;
}

html {
    scroll-behavior: smooth;
    color-scheme: dark;
    scrollbar-color: rgba(198, 162, 103, 0.88) rgba(7, 12, 18, 0.92);
    scrollbar-width: thin;
}

html[data-theme="light"] {
    color-scheme: light;
    --bg: #f7f1e7;
    --bg-soft: #eef3f7;
    --bg-gradient:
        radial-gradient(circle at top left, rgba(198, 162, 103, 0.18), transparent 28%),
        linear-gradient(180deg, #f7f1e7 0%, #f4efe7 40%, #eef3f7 100%);
    --surface: rgba(255, 255, 255, 0.72);
    --surface-strong: rgba(255, 255, 255, 0.72);
    --text: #162230;
    --muted: #4a5d70;
    --heading: #162230;
    --accent: #bc8f4a;
    --accent-strong: #bc8f4a;
    --border: rgba(21, 32, 43, 0.08);
    --shadow: 0 24px 80px rgba(60, 78, 98, 0.08);
    --header-bg: rgba(255, 250, 244, 0.8);
    --header-border: rgba(21, 32, 43, 0.08);
    --footer-bg: rgba(255, 250, 244, 0.8);
    --card-bg: rgba(255, 255, 255, 0.72);
    --panel-bg: rgba(255, 255, 255, 0.72);
    --subtle-bg: rgba(255, 255, 255, 0.72);
    --subtle-bg-strong: rgba(255, 255, 255, 0.72);
    --subtle-border: rgba(21, 32, 43, 0.08);
    --nav-link: #4a5d70;
    --nav-link-hover: #162230;
    --field-bg: rgba(255, 255, 255, 0.95);
    --field-bg-focus: rgba(255, 255, 255, 1);
    --field-border: rgba(21, 32, 43, 0.12);
    --field-placeholder: #7f93a7;
    --focus-ring: rgba(198, 162, 103, 0.12);
    --outline-btn-bg: rgba(255, 255, 255, 0.58);
    --outline-btn-border: rgba(21, 32, 43, 0.12);
    --feature-divider: rgba(21, 32, 43, 0.08);
    --logo-shell-bg: linear-gradient(180deg, rgba(10, 18, 27, 0.98), rgba(20, 31, 44, 0.94));
    --logo-shell-border: rgba(198, 162, 103, 0.34);
    --scrollbar-track: rgba(236, 231, 222, 0.95);
    --scrollbar-thumb: linear-gradient(180deg, rgba(188, 143, 74, 0.9), rgba(156, 115, 55, 0.98));
    --scrollbar-thumb-hover: linear-gradient(180deg, rgba(201, 156, 87, 0.94), rgba(166, 122, 57, 1));
    --scrollbar-border: rgba(247, 241, 231, 0.96);
}

html[data-theme="light"] {
    scrollbar-color: rgba(188, 143, 74, 0.9) rgba(236, 231, 222, 0.95);
}

* {
    box-sizing: border-box;
}

::-webkit-scrollbar {
    width: 0.9rem;
    height: 0.9rem;
}

::-webkit-scrollbar-track {
    background: var(--scrollbar-track);
}

::-webkit-scrollbar-thumb {
    background: var(--scrollbar-thumb);
    border-radius: 999px;
    border: 3px solid var(--scrollbar-border);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--scrollbar-thumb-hover);
}

::-webkit-scrollbar-corner {
    background: var(--scrollbar-track);
}

body {
    margin: 0;
    font-family: var(--body-font);
    font-feature-settings: "cv11" 1, "ss01" 1;
    background: var(--bg-gradient);
    color: var(--text);
    min-height: 100vh;
}

html,
body {
    max-width: 100%;
    overflow-x: clip;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
}

main {
    overflow: clip;
}

.container {
    position: relative;
    z-index: 1;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(18px);
    background: var(--header-bg);
    border-bottom: 1px solid var(--header-border);
}

.navbar {
    padding: 1rem 0;
}

.navbar-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.9rem;
    color: var(--heading);
    min-width: 0;
}

.brand-logo-shell {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3.2rem;
    height: 3.2rem;
    padding: 0.25rem;
    border-radius: 1rem;
    background: linear-gradient(180deg, rgba(6, 12, 18, 0.95), rgba(18, 28, 40, 0.88));
    border: 1px solid rgba(198, 162, 103, 0.3);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.24);
    overflow: hidden;
    flex-shrink: 0;
}

.brand-logo-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 0.8rem;
}

.brand-copy {
    display: grid;
    min-width: 0;
}

.brand-copy strong {
    font-family: var(--display-font);
    letter-spacing: 0.015em;
    font-size: 1.12rem;
    font-weight: 600;
}

.brand-copy small {
    color: var(--muted);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 600;
}

.nav-link {
    color: var(--nav-link);
    margin: 0 0.3rem;
}

.nav-link:hover,
.nav-link:focus,
.nav-link.active {
    color: var(--nav-link-hover);
}

.nav-link-button {
    background: none;
    border: 0;
    padding: 0.5rem 1rem;
}

.site-nav-dropdown .dropdown-menu {
    min-width: 13rem;
    padding: 0.55rem;
    border-radius: 1rem;
    border: 1px solid rgba(198, 162, 103, 0.16);
    background: rgba(9, 14, 21, 0.96);
    box-shadow: 0 22px 44px rgba(0, 0, 0, 0.28);
}

.site-nav-dropdown .dropdown-item {
    border-radius: 0.85rem;
    padding: 0.8rem 0.95rem;
    color: var(--nav-link);
    font-weight: 600;
}

.site-nav-dropdown .dropdown-item:hover,
.site-nav-dropdown .dropdown-item:focus,
.site-nav-dropdown .dropdown-item:active {
    color: var(--nav-link-hover);
    background: rgba(255, 255, 255, 0.05);
}

.btn {
    border-radius: 999px;
    padding: 0.9rem 1.45rem;
    font-weight: 600;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-brand {
    background: linear-gradient(135deg, var(--accent-strong), var(--accent));
    color: #0b1117;
    border: 1px solid transparent;
    box-shadow: 0 18px 36px rgba(198, 162, 103, 0.22);
}

.btn-brand:hover,
.btn-brand:focus {
    color: #0b1117;
    box-shadow: 0 24px 40px rgba(198, 162, 103, 0.3);
}

.btn-outline-brand {
    border: 1px solid var(--outline-btn-border);
    color: var(--heading);
    background: var(--outline-btn-bg);
}

.btn-nav {
    min-width: 10rem;
    text-align: center;
}

.hero-section,
.page-hero {
    position: relative;
    padding: 3.75rem 0 4rem;
}

.page-hero.compact {
    padding-top: 5.5rem;
    padding-bottom: 2rem;
}

.hero-content {
    padding-top: 2rem;
}

.hero-background {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(18px);
    opacity: 0.75;
}

.hero-orb-one {
    width: 22rem;
    height: 22rem;
    background: rgba(198, 162, 103, 0.16);
    top: 1rem;
    left: -4rem;
}

.hero-orb-two {
    width: 20rem;
    height: 20rem;
    background: rgba(90, 145, 201, 0.18);
    right: -4rem;
    top: 5rem;
}

.hero-grid {
    position: absolute;
    inset: 4.5rem 0 auto;
    height: 28rem;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.85), transparent);
}

.eyebrow,
.section-kicker {
    display: inline-block;
    color: var(--accent-strong);
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.74rem;
    font-weight: 600;
    margin-bottom: 1.2rem;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.status-badge::before {
    content: "";
    width: 0.58rem;
    height: 0.58rem;
    border-radius: 999px;
    background: currentColor;
    box-shadow: 0 0 0 0.24rem color-mix(in srgb, currentColor 16%, transparent);
}

.section-kicker.status-badge {
    padding: 0.45rem 0.8rem;
    border-radius: 999px;
    border: 1px solid color-mix(in srgb, currentColor 22%, transparent);
    background: color-mix(in srgb, currentColor 9%, transparent);
}

.status-badge-warm {
    color: #d9b56a;
}

.status-badge-cool {
    color: #7fb1ff;
}

.status-badge-neutral {
    color: #8fb59d;
}

.hero-title,
.page-hero h1,
.section-heading h2,
.final-cta h2 {
    font-family: var(--display-font);
    color: var(--heading);
    letter-spacing: -0.025em;
    line-height: 1.05;
    font-weight: 600;
    text-wrap: balance;
}

.hero-title {
    font-size: clamp(3rem, 7vw, 5.8rem);
    max-width: 10.5ch;
}

.hero-copy,
.page-hero p,
.section-heading p,
.content-panel p,
.info-card p,
.product-card p,
.contact-card,
.final-cta p {
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.75;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 2rem 0;
}

.hero-proof {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    width: 100%;
    justify-items: stretch;
}

.hero-proof-wide {
    margin-top: 2rem;
}

.hero-proof span,
.logo-pill,
.showcase-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.7rem 1rem;
    border-radius: 999px;
    border: 1px solid var(--subtle-border);
    background: var(--subtle-bg);
    color: var(--heading);
    text-align: center;
}

.hero-proof span {
    width: 100%;
    min-height: 92px;
    padding: 1.15rem 1rem;
    border-radius: 1.25rem;
    background: var(--card-bg);
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.08);
    font-weight: 500;
    line-height: 1.45;
}

.showcase-chip.muted {
    color: var(--muted);
}

.showcase-chip.status-badge {
    justify-content: flex-start;
    width: fit-content;
    font-weight: 600;
}

.showcase-card,
.info-card,
.product-card,
.content-panel,
.contact-card,
.map-card,
.testimonial-card,
.stat-card,
.final-cta {
    border: 1px solid var(--border);
    background: var(--card-bg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.showcase-card {
    padding: 1.6rem;
    overflow: hidden;
}

.showcase-header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 1.25rem;
    align-items: start;
}

.showcase-intro h2 {
    margin: 1rem 0 0.65rem;
    font-family: var(--display-font);
    font-size: clamp(1.7rem, 3vw, 2.35rem);
    line-height: 1.08;
    color: var(--heading);
    font-weight: 600;
}

.showcase-intro p {
    margin: 0;
    color: var(--muted);
    line-height: 1.72;
}

.showcase-brand-shell {
    display: block;
    width: 8.75rem;
    padding: 0.45rem;
    border-radius: 1.6rem;
    background: var(--logo-shell-bg);
    border: 1px solid var(--logo-shell-border);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.24);
}

.showcase-brand-shell img {
    display: block;
    width: 100%;
    border-radius: 1.15rem;
}

.showcase-panel {
    padding: 2rem;
    margin: 1.4rem 0 1rem;
    border-radius: 1.6rem;
    background: var(--panel-bg);
    border: 1px solid var(--subtle-border);
}

.showcase-stat strong,
.showcase-metrics strong {
    display: block;
    color: var(--heading);
    font-weight: 700;
}

.showcase-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 1.5rem;
}

.showcase-metrics small {
    color: var(--muted);
    display: block;
    margin-bottom: 0.2rem;
    font-weight: 600;
    letter-spacing: 0.01em;
}

.showcase-timeline {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.showcase-timeline div {
    padding: 1rem;
    border-radius: 1.25rem;
    background: var(--subtle-bg);
}

.showcase-timeline span {
    display: block;
    color: var(--muted);
    font-size: 0.9rem;
    margin-bottom: 0.4rem;
}

.section-shell {
    padding: 2rem 0 4.5rem;
}

.section-soft {
    background: linear-gradient(180deg, rgba(245, 239, 228, 0.03), rgba(245, 239, 228, 0));
}

.section-heading {
    max-width: 48rem;
    margin-bottom: 2rem;
}

.section-heading.split {
    max-width: none;
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    align-items: end;
}

.section-heading h2,
.page-hero h1,
.final-cta h2 {
    font-size: clamp(2.2rem, 5vw, 4rem);
    margin-bottom: 1rem;
}

.logo-cloud,
.service-grid,
.product-grid,
.why-grid,
.timeline,
.stats-grid,
.footer-grid {
    display: grid;
    gap: 1.5rem;
}

.logo-cloud {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
}

.service-grid {
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

.info-card {
    padding: 1.6rem;
    height: 100%;
}

.info-card.detail h2,
.product-card h2,
.content-panel h2,
.map-card h2 {
    font-family: var(--display-font);
    color: var(--heading);
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.info-card h3,
.product-card h3,
.timeline-step h3,
.testimonial-card,
.faq-list summary {
    color: var(--heading);
    font-weight: 600;
}

.card-icon {
    width: 3rem;
    height: 3rem;
    margin-bottom: 1rem;
    border-radius: 1rem;
    background: linear-gradient(135deg, rgba(198, 162, 103, 0.28), rgba(255, 255, 255, 0.05));
}

.product-grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.product-grid.wide {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.product-card {
    padding: 1.6rem;
}

.product-card.featured {
    background: linear-gradient(180deg, rgba(198, 162, 103, 0.14), rgba(255, 255, 255, 0.03));
}

.product-visual {
    height: 10rem;
    display: grid;
    place-items: center;
    margin-bottom: 1.2rem;
    border-radius: 1.6rem;
    background: linear-gradient(135deg, rgba(198, 162, 103, 0.18), rgba(73, 125, 175, 0.16));
    font-family: var(--display-font);
    font-size: 3rem;
    color: var(--heading);
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 1.2rem 0;
    display: grid;
    gap: 0.6rem;
}

.feature-list li::before {
    content: "\\2022";
    color: var(--accent-strong);
    margin-right: 0.5rem;
}

.status-badge {
    display: inline-flex;
    width: fit-content;
    padding: 0.45rem 0.8rem;
    border-radius: 999px;
    font-size: 0.85rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.status-badge.available {
    background: rgba(76, 201, 142, 0.14);
    color: #94e1b6;
}

.status-badge.beta {
    background: rgba(88, 155, 233, 0.14);
    color: #a8c9f4;
}

.status-badge.soon {
    background: rgba(198, 162, 103, 0.14);
    color: #efd4a8;
}

.why-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.why-item,
.timeline-step,
.logo-pill,
.stat-card {
    padding: 1.25rem 1.4rem;
    border-radius: var(--radius-md);
    background: var(--subtle-bg);
    border: 1px solid var(--subtle-border);
}

.timeline {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.timeline-step span {
    display: block;
    color: var(--accent-strong);
    font-size: 0.86rem;
    letter-spacing: 0.14em;
    margin-bottom: 0.7rem;
    font-weight: 700;
}

.timeline-step h3 {
    margin: 0;
    font-size: 1.12rem;
    line-height: 1.35;
    overflow-wrap: normal;
}

.stats-grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.stat-card {
    text-align: center;
}

.stat-card strong {
    display: block;
    font-family: var(--display-font);
    font-size: 2.6rem;
    color: var(--heading);
    font-weight: 600;
}

.testimonial-stack,
.contact-stack,
.narrow-stack {
    display: grid;
    gap: 1.5rem;
}

.testimonial-card,
.content-panel,
.map-card,
.contact-card,
.final-cta {
    padding: 1.8rem;
}

.testimonial-quote {
    margin: 0;
    color: var(--heading);
    font-size: 1.04rem;
    line-height: 1.75;
    font-weight: 500;
}

.testimonial-card footer {
    display: block;
    margin-top: 1rem;
    color: var(--muted);
}

.faq-list {
    display: grid;
    gap: 1rem;
}

.faq-list details {
    padding: 1.4rem 1.5rem;
    border: 1px solid var(--subtle-border);
    border-radius: var(--radius-md);
    background: var(--subtle-bg);
}

.faq-list summary {
    cursor: pointer;
    font-weight: 700;
    list-style: none;
}

.faq-list p {
    margin: 1rem 0 0;
    color: var(--muted);
}

.contact-card label {
    display: block;
    margin-bottom: 0.45rem;
    color: var(--heading);
    font-weight: 600;
}

.form-status {
    margin-bottom: 1.5rem;
    padding: 1rem 1.2rem;
    border-radius: 1rem;
    border: 1px solid var(--subtle-border);
    background: var(--subtle-bg-strong);
}

.form-status.success {
    color: #a8e2bf;
    border-color: rgba(76, 201, 142, 0.28);
    background: rgba(76, 201, 142, 0.1);
}

.form-status.error {
    color: #ffd2c7;
    border-color: rgba(232, 103, 81, 0.28);
    background: rgba(232, 103, 81, 0.1);
}

.field-validation-error {
    display: block;
    margin-top: 0.45rem;
    color: #ffb3a6;
    font-size: 0.9rem;
}

.form-control {
    border-radius: 1rem;
    padding: 0.9rem 1rem;
    border: 1px solid var(--field-border);
    background: var(--field-bg);
    color: var(--text);
}

.form-control::placeholder {
    color: var(--field-placeholder);
}

.form-control:focus {
    background: var(--field-bg-focus);
    color: var(--text);
    border-color: rgba(198, 162, 103, 0.5);
    box-shadow: 0 0 0 0.2rem var(--focus-ring);
}

.story-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.service-story-list {
    display: grid;
    gap: 1.75rem;
}

.feature-story-list {
    display: grid;
    gap: 3.5rem;
    margin-top: 1.5rem;
}

.feature-story {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
    gap: 2.5rem;
    align-items: center;
    padding: 2rem 0;
    border-top: 1px solid var(--feature-divider);
}

.feature-story:first-child {
    border-top: 0;
    padding-top: 0;
}

.feature-story-reverse .feature-story-copy {
    order: 2;
}

.feature-story-reverse .feature-story-visual {
    order: 1;
}

.feature-story-label {
    display: inline-block;
    margin-bottom: 0.75rem;
    color: var(--accent-strong);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.74rem;
    font-weight: 700;
}

.feature-story-copy h3 {
    margin: 0 0 1rem;
    font-family: var(--display-font);
    color: var(--heading);
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.06;
    font-weight: 600;
}

.feature-story-copy p {
    margin: 0 0 1rem;
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.8;
    max-width: 62ch;
}

.feature-story-outcomes {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin: 1.5rem 0;
}

.feature-story-outcomes span,
.expertise-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1rem;
    border-radius: 999px;
    border: 1px solid var(--subtle-border);
    background: var(--subtle-bg);
    color: var(--heading);
    text-align: center;
}

.feature-story-link {
    margin-top: 0.5rem;
}

.feature-story-visual {
    display: flex;
    justify-content: center;
}

.workflow-panel {
    width: 100%;
    max-width: 28rem;
    padding: 1.35rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    background: var(--card-bg);
    box-shadow: var(--shadow);
    display: grid;
    gap: 0.85rem;
}

.workflow-panel span {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    min-height: 3.65rem;
    padding: 0.95rem 1rem;
    border-radius: 1rem;
    background: var(--subtle-bg);
    border: 1px solid var(--subtle-border);
    color: var(--heading);
    font-weight: 600;
}

.workflow-panel.alt span {
    justify-content: flex-start;
    text-align: left;
}

.feature-subsection {
    margin-top: 4rem;
}

.expertise-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.service-story-card {
    border: 1px solid var(--border);
    background: var(--card-bg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    padding: 1.9rem;
    scroll-margin-top: 7.5rem;
}

.service-story-header {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1rem;
    align-items: start;
    margin-bottom: 1.4rem;
}

.service-story-index {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border-radius: 999px;
    border: 1px solid rgba(198, 162, 103, 0.24);
    background: rgba(255, 255, 255, 0.04);
    color: var(--accent-strong);
    font-weight: 700;
}

.service-story-label {
    display: inline-block;
    margin-bottom: 0.6rem;
    color: var(--accent-strong);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.74rem;
    font-weight: 700;
}

.service-story-header h2,
.service-story-block h3,
.service-story-outcomes h3 {
    color: var(--heading);
}

.service-story-header h2 {
    margin: 0;
    font-family: var(--display-font);
    font-size: clamp(1.7rem, 3vw, 2.25rem);
    line-height: 1.12;
    font-weight: 600;
}

.service-story-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
}

.service-story-block,
.service-story-outcomes {
    padding: 1.45rem;
    border-radius: var(--radius-md);
    background: var(--subtle-bg);
    border: 1px solid var(--subtle-border);
}

.service-story-block h3,
.service-story-outcomes h3 {
    margin: 0 0 0.85rem;
    font-size: 1rem;
    font-weight: 700;
}

.service-story-block p {
    margin: 0 0 0.95rem;
    color: var(--muted);
    line-height: 1.75;
}

.service-story-block p:last-child {
    margin-bottom: 0;
}

.service-story-outcomes {
    margin-top: 1.25rem;
}

.outcome-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
}

.outcome-list span {
    display: inline-flex;
    align-items: center;
    padding: 0.75rem 1rem;
    border-radius: 999px;
    background: var(--subtle-bg-strong);
    border: 1px solid var(--subtle-border);
    color: var(--heading);
}

.text-link {
    color: var(--accent-strong);
    font-weight: 600;
}

.final-cta {
    text-align: center;
    padding: 3rem 1.5rem;
}

.coming-soon-card {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
    gap: 2rem;
    align-items: center;
    padding: 2rem;
    border: 1px solid var(--border);
    background: var(--card-bg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.coming-soon-copy h2 {
    margin: 1rem 0;
    font-family: var(--display-font);
    color: var(--heading);
    font-size: clamp(2rem, 4vw, 3.1rem);
    line-height: 1.08;
    font-weight: 600;
}

.coming-soon-copy p {
    margin: 0;
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.8;
    max-width: 58ch;
}

.coming-soon-signals {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin: 1.6rem 0 0;
}

.coming-soon-signals span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1rem;
    border-radius: 999px;
    border: 1px solid var(--subtle-border);
    background: var(--subtle-bg);
    color: var(--heading);
    text-align: center;
}

.coming-soon-status-update {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
    margin: 1rem 0 0;
    color: var(--muted);
    font-size: 0.95rem;
}

.coming-soon-status-update strong {
    color: var(--heading);
    font-weight: 600;
}

.coming-soon-status-update span {
    color: var(--accent-strong);
}

.coming-soon-panel {
    display: flex;
    justify-content: center;
}

.coming-soon-actions {
    margin-bottom: 0;
}

.coming-soon-availability {
    margin: 1.35rem 0 0;
    color: var(--accent-strong);
    font-weight: 600;
}

.coming-soon-roadmap {
    gap: 0.95rem;
}

.coming-soon-roadmap-stage {
    position: relative;
    display: grid;
    grid-template-columns: 2rem 1fr;
    gap: 0.85rem;
    align-items: start;
    min-height: 2.9rem;
}

.coming-soon-roadmap-stage:not(:last-child)::after {
    content: "";
    position: absolute;
    left: calc(1rem - 0.5px);
    top: 2.35rem;
    bottom: -0.95rem;
    width: 1px;
    background: linear-gradient(
        180deg,
        rgba(198, 162, 103, 0.22),
        rgba(120, 132, 151, 0.22)
    );
}

.coming-soon-roadmap-stage strong,
.coming-soon-roadmap-stage em {
    font-style: normal;
}

.coming-soon-roadmap-stage strong {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border-radius: 999px;
    border: 1px solid var(--subtle-border);
    background: rgba(255, 255, 255, 0.04);
    color: var(--heading);
    font-size: 0.9rem;
    font-weight: 700;
}

.coming-soon-roadmap-stage em {
    padding-top: 0.25rem;
    color: var(--heading);
    font-weight: 600;
    line-height: 1.45;
}

.coming-soon-roadmap-stage.completed strong {
    border-color: rgba(76, 201, 142, 0.28);
    background: rgba(76, 201, 142, 0.12);
    color: #a8e2bf;
}

.coming-soon-roadmap-stage.completed em {
    color: var(--text);
}

.coming-soon-roadmap-stage.completed::after {
    background: linear-gradient(
        180deg,
        rgba(76, 201, 142, 0.28),
        rgba(198, 162, 103, 0.18)
    );
}

.coming-soon-roadmap-stage.current strong {
    border-color: rgba(198, 162, 103, 0.34);
    background: rgba(198, 162, 103, 0.16);
    color: var(--accent-strong);
    box-shadow: 0 0 0 0.3rem rgba(198, 162, 103, 0.08);
}

.coming-soon-roadmap-stage.current em {
    color: var(--heading);
}

.coming-soon-roadmap-stage.pending strong {
    color: var(--muted);
}

.coming-soon-roadmap-stage.pending em {
    color: var(--muted);
}

.tool-catalog-stack {
    display: grid;
    gap: 1.5rem;
}

.tool-catalog-status {
    display: grid;
    gap: 0.8rem;
}

.tool-catalog-status .content-panel {
    padding: 1.35rem;
}

.tool-catalog-accordion {
    display: grid;
    gap: 2.75rem;
}

.tool-catalog-category {
    display: grid;
    gap: 1.35rem;
}

.tool-catalog-category-toggle {
    width: 100%;
    padding: 0;
    text-align: left;
    border: 0;
    background: transparent;
    color: inherit;
}

.tool-catalog-category-header {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: end;
    gap: 1rem;
}

.tool-catalog-category-copy {
    display: grid;
    gap: 0.55rem;
}

.tool-catalog-category-title {
    margin: 0;
    font-family: var(--display-font);
    color: var(--heading);
    font-size: clamp(1.8rem, 3vw, 2.35rem);
    line-height: 1.1;
    font-weight: 600;
}

.tool-catalog-category-description {
    margin: 0.2rem 0 0;
    color: var(--muted);
    max-width: 58ch;
    line-height: 1.75;
}

.tool-catalog-category-meta {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
}

.tool-catalog-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.5rem;
    padding: 0.65rem 1rem;
    border-radius: 999px;
    border: 1px solid var(--subtle-border);
    background: var(--subtle-bg);
    color: var(--heading);
    font-weight: 700;
    white-space: nowrap;
}

.tool-catalog-chevron {
    width: 0.95rem;
    height: 0.95rem;
    border-right: 2px solid var(--accent-strong);
    border-bottom: 2px solid var(--accent-strong);
    transform: rotate(45deg);
    transition: transform 0.25s ease, opacity 0.25s ease;
    opacity: 0.95;
    margin-bottom: 0.25rem;
}

.tool-catalog-category-toggle.collapsed .tool-catalog-chevron {
    transform: rotate(-45deg);
}

.tool-catalog-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.tool-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    gap: 1.35rem;
    padding: 1.45rem;
}

.tool-card-header {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1rem;
    align-items: start;
}

.tool-card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    border-radius: 1.2rem;
    border: 1px solid var(--subtle-border);
    background: linear-gradient(135deg, rgba(198, 162, 103, 0.22), rgba(73, 125, 175, 0.18));
    color: var(--heading);
    font-family: var(--display-font);
    font-size: 1.2rem;
    font-weight: 700;
    overflow: hidden;
    flex-shrink: 0;
}

.tool-card-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tool-card-copy h3 {
    margin: 0 0 0.5rem;
    font-size: 1.15rem;
    line-height: 1.2;
}

.tool-card-copy p {
    margin: 0;
    color: var(--muted);
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.tool-card-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: auto;
    padding-top: 0.25rem;
}

.tool-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
}

.tool-request-card {
    appearance: none;
    width: 100%;
    height: 100%;
    min-height: 100%;
    text-align: left;
    cursor: pointer;
    align-self: stretch;
    align-items: center;
    justify-content: center;
    border: 1px dashed rgba(198, 162, 103, 0.3);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.02)),
        radial-gradient(circle at top, rgba(198, 162, 103, 0.08), transparent 55%);
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.tool-request-card:hover,
.tool-request-card:focus-visible {
    transform: translateY(-4px);
    border-color: rgba(198, 162, 103, 0.48);
    box-shadow: 0 24px 44px rgba(0, 0, 0, 0.18);
}

.tool-request-card:focus-visible {
    outline: 0;
}

.tool-request-kicker {
    color: var(--accent-strong);
    font-size: 0.76rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-weight: 700;
}

.tool-request-plus {
    display: block;
    margin: 0.2rem 0;
    color: var(--heading);
    font-family: var(--display-font);
    font-size: clamp(3.8rem, 8vw, 5rem);
    line-height: 1;
    font-weight: 400;
}

.tool-request-copy {
    color: var(--muted);
    line-height: 1.65;
    max-width: 26ch;
}

.tool-request-modal .modal-content {
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: linear-gradient(180deg, rgba(16, 24, 35, 0.98), rgba(11, 18, 27, 0.98));
    box-shadow: var(--shadow);
    color: var(--text);
}

.tool-request-modal .modal-header,
.tool-request-modal .modal-footer {
    border-color: var(--subtle-border);
    padding: 1.35rem 1.5rem;
}

.tool-request-modal .modal-header {
    align-items: start;
}

.tool-request-modal .modal-header h2 {
    margin: 0.45rem 0 0;
    font-family: var(--display-font);
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--heading);
}

.tool-request-modal .modal-body {
    padding: 1.25rem 1.5rem 1.5rem;
}

.tool-request-modal .form-label {
    margin-bottom: 0.45rem;
    color: var(--heading);
    font-weight: 600;
}

.site-footer {
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--header-border);
    background: var(--footer-bg);
}

.footer-grid {
    grid-template-columns: 1.4fr repeat(3, 1fr);
    margin-bottom: 2rem;
}

.site-footer h3 {
    color: var(--heading);
    font-size: 0.95rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
}

.site-footer a,
.footer-copy {
    display: block;
    color: var(--muted);
    margin-bottom: 0.65rem;
}

.footer-brand {
    margin-bottom: 1rem;
}

.footer-logo-shell {
    width: 4.2rem;
    height: 4.2rem;
    border-radius: 1.25rem;
}

.footer-bar {
    padding-top: 1.5rem;
    border-top: 1px solid var(--header-border);
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    color: var(--muted);
}

.footer-links {
    display: flex;
    gap: 1rem;
}

[data-reveal] {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1399.98px) {
    .section-heading.split,
    .footer-bar,
    .footer-links {
        display: grid;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .navbar > .container {
        gap: 0.85rem;
    }

    .navbar-brand {
        max-width: calc(100% - 4.5rem);
        gap: 0.75rem;
    }

    .brand-copy strong {
        font-size: 1rem;
    }

    .brand-copy small {
        font-size: 0.66rem;
        letter-spacing: 0.1em;
    }

    .navbar-toggler {
        margin-left: auto;
        flex-shrink: 0;
    }

    .navbar-collapse {
        padding-top: 1rem;
    }

    .site-nav-dropdown .dropdown-menu {
        margin-top: 0.65rem;
    }

    .btn-nav {
        margin-top: 1rem;
        width: 100%;
    }

    .feature-story {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .feature-story-list {
        margin-top: 2rem;
    }

    .feature-story:first-child {
        padding-top: 1.75rem;
        border-top: 1px solid var(--feature-divider);
    }

    .feature-story-visual {
        display: none;
    }

    .feature-story-link {
        display: flex;
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 767.98px) {
    .hero-section,
    .page-hero.compact {
        padding-top: 4.5rem;
    }

    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .navbar {
        padding: 0.85rem 0;
    }

    .navbar-brand {
        max-width: calc(100% - 4rem);
        gap: 0.65rem;
    }

    .brand-logo-shell {
        width: 2.85rem;
        height: 2.85rem;
        border-radius: 0.9rem;
    }

    .brand-copy strong {
        font-size: 0.88rem;
        line-height: 1.1;
    }

    .brand-copy small {
        font-size: 0.58rem;
        letter-spacing: 0.08em;
        line-height: 1.25;
    }

    .hero-title {
        font-size: 2.8rem;
        max-width: min(100%, 13ch);
    }

    .hero-content {
        padding-top: 1.5rem;
    }

    .hero-copy,
    .page-hero p,
    .section-heading p,
    .content-panel p,
    .info-card p,
    .product-card p,
    .contact-card,
    .final-cta p {
        font-size: 0.98rem;
    }

    .hero-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .showcase-card,
    .content-panel,
    .contact-card,
    .testimonial-card,
    .final-cta,
    .service-story-card {
        padding: 1.35rem;
        border-radius: 1.6rem;
    }

    .hero-proof {
        display: none;
    }

    .showcase-header {
        grid-template-columns: 1fr;
    }

    .showcase-brand-shell {
        display: none;
    }

    .tool-catalog-category-header,
    .tool-card-actions {
        display: grid;
    }

    .coming-soon-card {
        grid-template-columns: 1fr;
        padding: 1.35rem;
        border-radius: 1.6rem;
    }

    .showcase-intro h2,
    .coming-soon-copy h2,
    .feature-story-copy h3,
    .service-story-header h2,
    .content-panel h2,
    .map-card h2,
    .product-card h2,
    .info-card.detail h2 {
        overflow-wrap: anywhere;
    }

    .feature-story-reverse .feature-story-copy,
    .feature-story-reverse .feature-story-visual {
        order: initial;
    }

    .footer-grid,
    .service-story-grid,
    .showcase-metrics,
    .showcase-timeline {
        grid-template-columns: 1fr;
    }

    .section-shell {
        padding-bottom: 3.5rem;
    }
}

@media (max-width: 575.98px) {
    .hero-title,
    .page-hero h1,
    .section-heading h2,
    .final-cta h2 {
        font-size: clamp(2rem, 10vw, 2.55rem);
        line-height: 1.08;
    }

    .hero-title {
        max-width: min(100%, 13.5ch);
    }

    .showcase-timeline div,
    .showcase-panel,
    .service-story-block,
    .service-story-outcomes,
    .workflow-panel span {
        padding-left: 0.9rem;
        padding-right: 0.9rem;
    }

    .hero-proof span,
    .feature-story-outcomes span,
    .expertise-pill,
    .outcome-list span {
        width: 100%;
    }
}

html[data-theme="light"] .btn-outline-brand {
    color: #162230;
}

html[data-theme="light"] .btn-outline-brand:hover,
html[data-theme="light"] .btn-outline-brand:focus {
    color: #162230;
    background: rgba(255, 255, 255, 0.82);
    border-color: rgba(198, 162, 103, 0.34);
}

html[data-theme="light"] .brand-logo-shell,
html[data-theme="light"] .showcase-brand-shell {
    background: var(--logo-shell-bg);
    border-color: var(--logo-shell-border);
}

html[data-theme="light"] .form-status {
    background: rgba(255, 255, 255, 0.78);
    border-color: rgba(21, 32, 43, 0.08);
}

html[data-theme="light"] .form-status.success {
    color: #1d6c43;
    border-color: rgba(76, 201, 142, 0.3);
    background: rgba(188, 241, 210, 0.72);
}

html[data-theme="light"] .form-status.error,
html[data-theme="light"] .field-validation-error {
    color: #b94b36;
}

:root {
    --scroll-progress: 0;
}

body.home-page {
    position: relative;
}

body.home-page::before {
    content: "";
    position: fixed;
    inset: 0;
    background:
        radial-gradient(circle at 50% calc(12% + (var(--scroll-progress) * 28%)), rgba(198, 162, 103, 0.09), transparent 28%),
        radial-gradient(circle at calc(78% - (var(--scroll-progress) * 18%)) calc(18% + (var(--scroll-progress) * 24%)), rgba(73, 125, 175, 0.08), transparent 24%);
    pointer-events: none;
    opacity: 0.95;
    z-index: -2;
}

.scroll-progress {
    position: fixed;
    inset: 0 auto auto 0;
    width: 100%;
    height: 3px;
    background: rgba(255, 255, 255, 0.05);
    z-index: 90;
    pointer-events: none;
}

.scroll-progress-bar {
    display: block;
    width: calc(var(--scroll-progress) * 100%);
    height: 100%;
    background: linear-gradient(90deg, rgba(92, 147, 203, 0.95), rgba(198, 162, 103, 0.95), rgba(255, 248, 234, 0.98));
    box-shadow: 0 0 18px rgba(198, 162, 103, 0.45);
    transition: width 0.12s linear;
}

.page-ambient {
    position: fixed;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: -1;
}

.ambient-orb,
.ambient-beam,
.ambient-grid {
    position: absolute;
}

.ambient-orb {
    border-radius: 50%;
    filter: blur(32px);
    opacity: 0.42;
    will-change: transform;
}

.ambient-orb-gold {
    width: 28rem;
    height: 28rem;
    top: 6rem;
    left: -8rem;
    background: radial-gradient(circle, rgba(198, 162, 103, 0.32), transparent 68%);
    animation: driftGold 18s ease-in-out infinite alternate;
}

.ambient-orb-blue {
    width: 30rem;
    height: 30rem;
    right: -9rem;
    top: 18rem;
    background: radial-gradient(circle, rgba(73, 125, 175, 0.28), transparent 70%);
    animation: driftBlue 22s ease-in-out infinite alternate;
}

.ambient-beam {
    width: 30vw;
    max-width: 24rem;
    height: 115vh;
    top: -10vh;
    background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.03), transparent);
    filter: blur(3px);
    opacity: 0.55;
    transform: rotate(12deg);
}

.ambient-beam-left {
    left: 8%;
}

.ambient-beam-right {
    right: 5%;
    transform: rotate(-14deg);
}

.ambient-grid {
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: radial-gradient(circle at center, rgba(0, 0, 0, 0.85), transparent 88%);
    opacity: 0.22;
}

body.is-scrolled .site-header {
    background: rgba(8, 13, 19, 0.82);
    box-shadow: 0 20px 44px rgba(0, 0, 0, 0.24);
}

html[data-theme="light"] body.is-scrolled .site-header {
    background: rgba(255, 250, 244, 0.9);
}

[data-scroll-section] {
    position: relative;
    transition: opacity 0.45s ease, transform 0.45s ease;
}

[data-scroll-section]::before {
    content: "";
    position: absolute;
    inset: 1rem 0 auto;
    height: 18rem;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.04), transparent 72%);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
}

[data-scroll-section].is-active::before {
    opacity: 1;
}

[data-scroll-section].is-active .section-heading h2,
[data-scroll-section].is-active .feature-story-copy h3,
[data-scroll-section].is-active .final-cta h2 {
    text-shadow: 0 0 28px rgba(198, 162, 103, 0.08);
}

[data-scroll-section].is-active .logo-pill,
[data-scroll-section].is-active .why-item,
[data-scroll-section].is-active .timeline-step,
[data-scroll-section].is-active .stat-card,
[data-scroll-section].is-active .testimonial-card,
[data-scroll-section].is-active .faq-list details,
[data-scroll-section].is-active .final-cta,
[data-scroll-section].is-active .workflow-panel,
[data-scroll-section].is-active .expertise-pill {
    border-color: rgba(198, 162, 103, 0.26);
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.16);
}

[data-parallax] {
    --parallax-shift: 0px;
    transform: translate3d(0, var(--parallax-shift), 0);
    will-change: transform;
}

.hero-section {
    min-height: calc(100vh - 4rem);
    display: flex;
    align-items: center;
}

.hero-background {
    perspective: 1200px;
}

.hero-grid {
    opacity: 0.72;
}


.showcase-card,
.workflow-panel,
.final-cta,
.testimonial-card,
.stat-card,
.timeline-step,
.why-item,
.faq-list details {
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease, background-color 0.35s ease;
}

.showcase-card:hover,
.workflow-panel:hover,
.final-cta:hover,
.testimonial-card:hover,
.stat-card:hover,
.timeline-step:hover,
.why-item:hover,
.faq-list details:hover {
    transform: translateY(-6px);
}

.feature-story-visual {
    transform: translate3d(0, var(--parallax-shift), 0);
}

@keyframes driftGold {
    from {
        transform: translate3d(0, 0, 0) scale(1);
    }

    to {
        transform: translate3d(4rem, 2rem, 0) scale(1.08);
    }
}

@keyframes driftBlue {
    from {
        transform: translate3d(0, 0, 0) scale(1);
    }

    to {
        transform: translate3d(-4rem, -2rem, 0) scale(1.12);
    }
}

@keyframes pulseLine {
    0%,
    100% {
        opacity: 0.45;
        transform: scaleY(0.9);
        transform-origin: top;
    }

    50% {
        opacity: 1;
        transform: scaleY(1.08);
        transform-origin: top;
    }
}

@media (prefers-reduced-motion: reduce) {
    .ambient-orb,
    .hero-scroll-line {
        animation: none;
    }

    [data-parallax] {
        transform: none;
    }

    .scroll-progress-bar,
    [data-scroll-section],
    [data-scroll-section]::before,
    .showcase-card,
    .workflow-panel,
    .final-cta,
    .testimonial-card,
    .stat-card,
    .timeline-step,
    .why-item,
    .faq-list details {
        transition: none;
    }
}

@media (max-width: 767.98px) {
    .page-ambient {
        opacity: 0.7;
    }

    .ambient-grid {
        background-size: 48px 48px;
    }

    .hero-section {
        min-height: auto;
    }

    .hero-scroll-cue {
        margin-top: 1.5rem;
    }
}
