:root {
    --bg: #161616;
    --panel: #1b1a19;
    --panel-soft: #201d1b;
    --line: #2f2b2a;
    --text: #ffffff;
    --muted: #b2b0ae;
    --hero-glow: rgba(255, 152, 0, 0.42);
    --hero-glow-soft: rgba(255, 152, 0, 0.14);
    --accent: #ff9750;
    --accent-deep: #b75c2c;
    --accent-glow: rgba(255, 151, 80, 0.36);
    --radius-xl: 32px;
    --radius-lg: 20px;
    --radius-md: 14px;
    --shadow-soft: 0 30px 90px rgba(0, 0, 0, 0.45);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--text);
    background:
        radial-gradient(circle at top, rgba(255, 149, 78, 0.14), transparent 28%),
        var(--bg);
    font-family: 'Inter', sans-serif;
}

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

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

.site-shell {
    overflow-x: clip;
}

.btn-pill {
    border-radius: 999px;
    font-weight: 600;
    letter-spacing: -0.01em;
    animation: hero-button-pulse 4.6s ease-in-out infinite;
}

.btn-pill-sm {
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
}

.btn-pill-lg {
    padding: 0.85rem 1.35rem;
    font-size: 0.98rem;
}

.btn-primary {
    --bs-btn-bg: linear-gradient(180deg, #ffb280 0%, #ff9750 54%, #c95f2b 100%);
    --bs-btn-border-color: rgba(255, 215, 185, 0.45);
    --bs-btn-hover-bg: linear-gradient(180deg, #ffbc90 0%, #ffa560 54%, #d06933 100%);
    --bs-btn-hover-border-color: rgba(255, 229, 213, 0.65);
    --bs-btn-active-bg: #ff9750;
    --bs-btn-active-border-color: rgba(255, 255, 255, 0.35);
    box-shadow: 0 0 0 3px rgba(255, 152, 0, 0.12), 0 12px 34px rgba(255, 152, 0, 0.3);
}

.btn-outline-light {
    border-color: rgba(255, 255, 255, 0.12);
    color: var(--text);
    background: rgba(255, 255, 255, 0.02);
    box-shadow: 0 0 0 1px rgba(255, 152, 0, 0.1), 0 10px 28px rgba(255, 152, 0, 0.12);
}

.btn-outline-light:hover,
.btn-outline-light:focus-visible {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.18);
    color: var(--text);
}

.section-spacing {
    padding: 0 16px 16px;
}

.audience-section {
    padding: 50px 16px 32px;
}

.section-frame {
    max-width: 1440px;
    margin: 0 auto;
}

.section-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0.8rem;
    border-radius: 999px;
    background: rgba(255, 149, 78, 0.1);
    border: 1px solid rgba(255, 149, 78, 0.18);
    font-size: 0.82rem;
    color: var(--text);
}

.section-chip::before {
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 2px;
    transform: rotate(45deg);
    background: var(--accent);
    box-shadow: 0 0 12px var(--accent-glow);
}

.section-chip-muted {
    background: transparent;
    border-color: transparent;
    color: var(--muted);
    padding-left: 0;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3.3rem);
    line-height: 1.05;
    letter-spacing: -0.045em;
    max-width: 850px;
    margin: 0;
}

.section-head {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.section-head-split {
    flex-direction: row;
    justify-content: space-between;
    align-items: end;
    gap: 2rem;
}

.section-copy-block {
    max-width: 31rem;
    display: grid;
    gap: 1.2rem;
}

.section-copy-block p,
.hero-description,
.faq-answer p,
.footer-brand-block p,
.cta-panel p,
.case-description,
.metric-card p,
.testimonial-person span,
.testimonial-stats span,
.case-stats span {
    color: var(--muted);
}

.hero-section {
    padding: 0 16px 16px;
}

.hero-frame {
    position: relative;
    min-height: 960px;
    padding: 96px 0 0;
    border-radius: var(--radius-xl);
    overflow: hidden;
    background:
    radial-gradient(circle at top center, rgba(255, 152, 0, 0.35) 0%, rgba(255, 152, 0, 0.06) 32%, transparent 65%),
        radial-gradient(circle at center, rgba(255, 149, 78, 0.08) 0%, transparent 54%),
        linear-gradient(180deg, rgba(26, 21, 19, 0.8) 0%, rgba(22, 22, 22, 0.98) 85%),
        #111;
}

.hero-frame::before,
.cta-panel::before,
.footer-brand-block::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 179, 120, 0.18) 0.8px, transparent 0.8px);
    background-size: 12px 12px;
    opacity: 0.28;
    pointer-events: none;
}

.hero-backdrop {
    display: none;
}

.hero-copy {
    position: relative;
    z-index: 2;
    max-width: 850px;
    padding: 0 24px;
}

.hero-title {
    display: grid;
    gap: 0;
    font-size: clamp(2.6rem, 6vw, 5rem);
    line-height: 0.98;
    letter-spacing: -0.06em;
    margin: 1.4rem 0 1rem;
}

.hero-title span {
    display: block;
}

.hero-rotating-word {
    font-family: 'Instrument Serif', serif;
    font-style: italic;
    color: #fff3e8;
}

.hero-description {
    max-width: 550px;
    margin: 0 auto 1.6rem;
    font-size: 1rem;
}

.hero-cards {
    position: relative;
    z-index: 2;
    width: min(1120px, calc(100% - 48px));
    height: auto;
    margin: 72px auto 0;
}

.hero-card-single {
    width: 100%;
    border-radius: 18px;
    box-shadow: var(--shadow-soft);
    object-fit: cover;
}

.brand-frame,
.stats-frame,
.case-frame,
.faq-frame,
.footer-frame {
    background: transparent;
}

.brand-frame {
    display: grid;
    grid-template-columns: minmax(0, 320px) minmax(0, 1fr);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.brand-summary,
.brand-marquee {
    padding: 40px 40px 32px;
}

.brand-summary {
    border-right: 1px solid var(--line);
}

.brand-summary h3 {
    margin: 0 0 0.45rem;
    font-size: 2rem;
}

.eyebrow,
.rating,
.testimonial-eyebrow {
    color: var(--muted);
    font-size: 0.95rem;
}

.brand-marquee {
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
}

.brand-marquee::before,
.brand-marquee::after {
    content: '';
    position: absolute;
    inset: 0 auto 0 0;
    width: 90px;
    background: linear-gradient(90deg, var(--bg), transparent);
    z-index: 2;
}

.brand-marquee::after {
    inset: 0 0 0 auto;
    background: linear-gradient(-90deg, var(--bg), transparent);
}

.brand-track {
    display: flex;
    align-items: center;
    gap: 24px;
    width: max-content;
    animation: marquee 26s linear infinite;
}

.brand-logo-wrap {
    width: 150px;
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.88;
}

.audience-frame {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.audience-wrapper {
    display: grid;
    gap: 32px;
}

.audience-head {
    align-items: end;
}

.audience-card {
    position: relative;
    padding: 32px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(29, 27, 26, 0.92) 0%, rgba(22, 22, 22, 0.98) 100%);
    overflow: hidden;
}

.audience-card-highlight {
    background:
        radial-gradient(circle at top center, rgba(255, 152, 0, 0.35) 0%, rgba(255, 152, 0, 0.08) 32%, transparent 68%),
        linear-gradient(180deg, rgba(33, 28, 22, 0.96) 0%, rgba(22, 22, 22, 0.98) 100%);
    border-color: rgba(255, 152, 0, 0.2);
    box-shadow: 0 16px 42px rgba(255, 152, 0, 0.12);
}

.audience-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 179, 120, 0.12) 0.8px, transparent 0.8px);
    background-size: 12px 12px;
    opacity: 0.18;
    pointer-events: none;
}

.audience-card > * {
    position: relative;
    z-index: 1;
}

.audience-list {
    margin: 18px 0 0;
    padding-left: 1.2rem;
    color: var(--text);
}

.audience-list li {
    margin-bottom: 14px;
    line-height: 1.5;
}

.audience-list li:last-child {
    margin-bottom: 0;
}

.stats-frame,
.case-frame,
.testimonial-frame,
.faq-frame {
    padding: 92px 0 0;
}

.growth-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 520px) minmax(0, 1fr);
    gap: 0;
    margin-top: 52px;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.metric-column {
    display: grid;
}

.metric-column:first-child {
    border-right: 1px solid var(--line);
}

.metric-column:last-child {
    border-left: 1px solid var(--line);
}

.metric-card {
    padding: 42px 40px;
}

.metric-card + .metric-card {
    border-top: 1px solid var(--line);
}

.metric-value {
    display: inline-block;
    margin-bottom: 12px;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1;
}

.growth-center-card {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 360px;
    overflow: hidden;
    background: rgba(255, 149, 78, 0.04);
}

.growth-center-pattern {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    opacity: 0.7;
}

.growth-center-pattern img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.growth-badge {
    position: absolute;
    top: 76px;
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    background: linear-gradient(180deg, rgba(255, 151, 80, 0.28), rgba(255, 151, 80, 0.12));
    border: 1px solid rgba(255, 151, 80, 0.22);
    color: var(--accent);
    font-size: 1.2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.24);
}

.growth-center-panel {
    position: relative;
    z-index: 1;
    width: min(76%, 320px);
    padding: 26px;
    border-radius: 16px;
    background: rgba(15, 15, 15, 0.84);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.growth-panel-label {
    display: inline-block;
    margin-bottom: 16px;
    color: var(--muted);
}

.growth-panel-footer {
    display: flex;
    align-items: end;
    gap: 14px;
}

.growth-panel-footer strong {
    font-size: 2.8rem;
    line-height: 1;
}

.growth-panel-footer span {
    color: var(--muted);
    max-width: 14ch;
    font-size: 0.92rem;
}

.content-slider {
    margin-top: 48px;
}

.slider-track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 100%;
    transition: transform 320ms ease;
}

.slider-card {
    min-width: 0;
}

.case-card,
.testimonial-card {
    display: grid;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.case-card {
    grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
}

.case-visual {
    padding: 16px;
}

.case-visual img {
    width: 100%;
    height: 100%;
    min-height: 420px;
    object-fit: cover;
    border-radius: 12px;
}

.case-content {
    display: grid;
    grid-template-rows: 1fr auto;
    border-left: 1px solid var(--line);
}

.case-content > div:first-child {
    padding: 46px 40px 32px;
}

.case-content h3,
.testimonial-body blockquote,
.testimonial-profile h3 {
    font-size: clamp(1.65rem, 3vw, 2.65rem);
    line-height: 1.08;
    letter-spacing: -0.04em;
    margin: 0 0 1rem;
}

.case-stats,
.testimonial-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-top: 1px solid var(--line);
}

.case-stats div,
.testimonial-stats div {
    padding: 22px 24px 26px;
}

.case-stats div + div,
.testimonial-stats div + div {
    border-left: 1px solid var(--line);
}

.case-stats strong,
.testimonial-stats strong {
    display: block;
    font-size: 1.55rem;
    margin-bottom: 0.5rem;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    border: 0;
    background: #2a2726;
    padding: 0;
}

.slider-dot.is-active {
    width: 24px;
    background: linear-gradient(90deg, var(--accent-deep), var(--accent));
}

.section-testimonials {
    background: rgba(255, 255, 255, 0.02);
}

.narrow-head {
    max-width: 560px;
}

.testimonial-card {
    grid-template-columns: minmax(320px, 0.42fr) minmax(0, 1fr);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
}

.testimonial-profile,
.testimonial-body {
    padding: 36px 32px;
}

.testimonial-profile {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 430px;
    background:
        linear-gradient(180deg, rgba(255, 149, 78, 0.09), rgba(255, 149, 78, 0.02)),
        rgba(255, 149, 78, 0.02);
    border-right: 1px solid var(--line);
    overflow: hidden;
}

.testimonial-profile::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 179, 120, 0.12) 0.8px, transparent 0.8px);
    background-size: 12px 12px;
    opacity: 0.2;
}

.testimonial-profile > * {
    position: relative;
    z-index: 1;
}

.testimonial-body {
    display: grid;
    grid-template-rows: 1fr auto;
}

.testimonial-body blockquote {
    max-width: 18ch;
}

.testimonial-person {
    display: flex;
    align-items: center;
    gap: 16px;
}

.testimonial-person img {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-person strong,
.footer-links-block h3,
.footer-brand-block h3 {
    display: block;
    margin-bottom: 4px;
    font-size: 1rem;
}

.cta-frame {
    padding-top: 40px;
}

.cta-panel {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    padding: 110px 24px;
    background:
        radial-gradient(circle at center, rgba(255, 151, 80, 0.28) 0%, rgba(255, 151, 80, 0.08) 36%, transparent 74%),
        linear-gradient(180deg, rgba(34, 28, 25, 0.88) 0%, rgba(28, 25, 23, 0.96) 100%);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.cta-panel h2 {
    margin: 1.15rem 0 0.85rem;
    font-size: clamp(2.2rem, 5vw, 4rem);
    line-height: 0.98;
    letter-spacing: -0.05em;
}

.cta-panel p {
    max-width: 620px;
    margin: 0 auto 1.5rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 46px;
}

.faq-item {
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--panel);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 18px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    border: 0;
    background: transparent;
    color: var(--text);
    text-align: left;
    font-size: 0.98rem;
}

.faq-icon {
    flex: 0 0 auto;
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--muted);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 240ms ease;
}

.faq-answer p {
    padding: 0 20px 20px;
    margin: 0;
}

.faq-item.is-open .faq-answer {
    max-height: 220px;
}

.faq-item.is-open .faq-icon i {
    transform: rotate(45deg);
}

.faq-icon i {
    transition: transform 240ms ease;
}

.footer-section {
    padding: 0 16px 16px;
}

.footer-frame {
    border-radius: var(--radius-xl);
    background: var(--panel);
    border: 1px solid rgba(255, 255, 255, 0.04);
    overflow: hidden;
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr;
    border-bottom: 1px solid var(--line);
}

.footer-brand-block,
.footer-links-block {
    position: relative;
    padding: 40px 32px;
}

.footer-brand-block {
    width: 100%;
    border-right: 0;
    overflow: hidden;
}

.footer-brand-block p {
    width: 100%;
    max-width: none;
    margin: 0;
    text-align: justify;
    text-wrap: pretty;
}

.footer-brand-block > * {
    position: relative;
    z-index: 1;
}

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

.social-links {
    display: flex;
    gap: 10px;
    margin-top: 18px;
}

.social-links a {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text);
}

.footer-links-block {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px;
}

.footer-links-block a {
    display: block;
    color: var(--muted);
    margin-top: 10px;
}

.footer-links-block a:hover,
.footer-links-block a:focus-visible,
.social-links a:hover,
.social-links a:focus-visible {
    color: var(--text);
}

.footer-bottom {
    padding: 26px 32px 18px;
}

.footer-wordmark {
    width: 100%;
    opacity: 0.22;
    filter: sepia(1) saturate(0.8) hue-rotate(-12deg);
}

.footer-meta {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding-top: 10px;
    font-size: 0.88rem;
    color: var(--muted);
}

@keyframes hero-button-pulse {
    0%,
    100% {
        box-shadow: 0 0 0 0 var(--hero-glow-soft), 0 10px 24px rgba(255, 152, 0, 0.16);
    }

    50% {
        box-shadow: 0 0 0 8px rgba(255, 152, 0, 0.04), 0 0 28px 4px var(--hero-glow), 0 14px 34px rgba(255, 152, 0, 0.24);
    }
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@media (max-width: 1199.98px) {
    .hero-frame {
        min-height: 820px;
    }

    .hero-cards {
        width: min(920px, calc(100% - 48px));
    }

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

    .metric-card {
        padding-inline: 28px;
    }

    .case-card,
    .testimonial-card,
    .footer-top,
    .brand-frame,
    .audience-frame {
        grid-template-columns: 1fr;
    }

    .brand-summary,
    .case-content,
    .testimonial-profile,
    .footer-brand-block {
        border-right: 0;
        border-left: 0;
    }

    .brand-summary,
    .testimonial-profile,
    .footer-brand-block {
        border-bottom: 1px solid var(--line);
    }

    .section-head-split {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 991.98px) {
    .hero-frame {
        padding-top: 88px;
        min-height: 720px;
    }

    .hero-cards {
        width: min(760px, calc(100% - 32px));
    }

    .stats-frame,
    .case-frame,
    .testimonial-frame,
    .faq-frame {
        padding: 72px 24px 0;
    }

    .growth-grid {
        grid-template-columns: 1fr;
    }

    .metric-column:first-child,
    .metric-column:last-child,
    .case-content,
    .testimonial-profile {
        border: 0;
    }

    .metric-column:first-child,
    .growth-center-card {
        border-bottom: 1px solid var(--line);
    }

    .case-stats,
    .testimonial-stats,
    .footer-links-block,
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .case-stats div + div,
    .testimonial-stats div + div {
        border-left: 0;
        border-top: 1px solid var(--line);
    }

    .footer-meta {
        flex-direction: column;
    }
}

@media (max-width: 767.98px) {
    .section-spacing,
    .hero-section,
    .footer-section {
        padding-left: 12px;
        padding-right: 12px;
    }

    .hero-frame,
    .cta-panel,
    .footer-frame {
        border-radius: 24px;
    }

    .hero-frame {
        min-height: auto;
        padding-top: 72px;
    }

    .hero-title {
        font-size: 2.55rem;
    }

    .hero-cards {
        width: 100%;
        margin-top: 56px;
    }

    .brand-summary,
    .brand-marquee,
    .audience-card,
    .testimonial-profile,
    .testimonial-body,
    .footer-brand-block,
    .footer-links-block,
    .footer-bottom {
        padding: 24px 20px;
    }

    .metric-card,
    .case-content > div:first-child,
    .case-stats div,
    .testimonial-stats div,
    .faq-question,
    .faq-answer p {
        padding-left: 18px;
        padding-right: 18px;
    }

    .stats-frame,
    .case-frame,
    .testimonial-frame,
    .faq-frame {
        padding-left: 0;
        padding-right: 0;
    }

    .case-visual {
        padding: 12px;
    }

    .case-visual img {
        min-height: 280px;
    }

    .testimonial-body blockquote,
    .case-content h3,
    .testimonial-profile h3,
    .section-title,
    .cta-panel h2 {
        max-width: none;
    }

    .brand-track {
        gap: 18px;
    }

    .brand-logo-wrap {
        width: 126px;
    }
}