:root {
    --deep-navy: #0f172a;
    --navy-2: #101827;
    --teal: #0d9488;
    --teal-soft: rgba(135, 251, 232, .16);
    --gold: #f59e0b;
    --bg: #050711;
    --bg-soft: #0a0f1f;
    --card: #0f172a;
    --text: #e8eef8;
    --muted: #a7b0c0;
    --line: rgba(255, 255, 255, .1);
    --line-strong: rgba(255, 255, 255, .18);
    --shadow: 0 24px 80px rgba(0, 0, 0, .34);
    --container: 1280px;
    --font-body: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --font-heading: "Manrope", "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --font-label: "JetBrains Mono", monospace;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background:
        radial-gradient(circle at 20% 0%, rgba(74, 129, 251, .16), transparent 34rem),
        radial-gradient(circle at 90% 14%, rgba(135, 251, 232, .12), transparent 28rem),
        var(--bg);
    color: var(--text);
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.55;
    overflow-x: hidden;
}

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

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

button,
input,
select,
textarea {
    font: inherit;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(5, 7, 17, .82);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 16px 44px rgba(0, 0, 0, .16);
    backdrop-filter: blur(16px);
}

.nav {
    position: relative;
    min-height: 64px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 24px;
}

.brand,
.footer-brand {
    color: #fff;
    font-family: var(--font-heading);
    font-size: clamp(1.18rem, 1.6vw, 1.42rem);
    font-weight: 700;
    letter-spacing: 0;
    white-space: nowrap;
}

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

.brand-mark {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, .12), 0 18px 40px rgba(0, 0, 0, .28);
    flex: 0 0 auto;
}

.brand-mark img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(2.35);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: clamp(8px, 1.1vw, 18px);
    margin-left: auto;
}

.nav-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: rgba(232, 238, 248, .72);
    padding: 20px 2px 16px;
    border-bottom: 3px solid transparent;
    font-size: .76rem;
    font-weight: 500;
    letter-spacing: 0;
    transition: color .18s ease, border-color .18s ease;
}

.nav-icon {
    width: 13px;
    height: 13px;
    display: inline-flex;
    flex: 0 0 auto;
    color: rgba(232, 238, 248, .58);
    transition: color .18s ease, transform .18s ease;
}

.nav-icon svg {
    width: 100%;
    height: 100%;
    display: block;
    overflow: visible;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.nav-link:hover,
.nav-link.is-active {
    color: #fff;
    border-bottom-color: #87fbe8;
    font-weight: 500;
}

.nav-link:hover .nav-icon,
.nav-link.is-active .nav-icon {
    color: #87fbe8;
    transform: translateY(-1px);
}

.site-header .nav-auth {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    flex: 0 0 auto;
    margin-left: 8px;
}

.site-header .nav-auth-btn,
.nav-login {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 48px;
    min-height: 27px;
    padding: 6px 11px;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 6px;
    color: #fff;
    background: rgba(255, 255, 255, .07);
    font-size: .7rem;
    font-weight: 600;
    line-height: 1;
    white-space: nowrap;
    box-shadow: none;
    transition: transform .18s ease, border-color .18s ease, background .18s ease, color .18s ease;
}

.site-header .nav-auth-btn:hover,
.nav-login:hover,
.nav-login.is-active {
    transform: translateY(-1px);
    border-color: rgba(135, 251, 232, .38);
    background: rgba(255, 255, 255, .1);
}

.site-header .nav-auth-signup {
    color: #050711;
    border-color: transparent;
    background: linear-gradient(95deg, #fc94fc -5.77%, #4a81fb 58.79%, #87fbe8 149.32%);
}

.site-header .nav-auth-signup:hover {
    color: #050711;
    border-color: transparent;
    background: linear-gradient(95deg, #fc94fc -5.77%, #4a81fb 58.79%, #87fbe8 149.32%);
}

.site-header .nav-auth-login.is-active {
    color: var(--teal);
    border-color: rgba(13, 148, 136, .25);
    background: rgba(13, 148, 136, .08);
}

.nav-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 4px;
    width: 42px;
    height: 42px;
    margin-left: auto;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, .08);
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    margin: 0;
    border-radius: 999px;
    background: var(--deep-navy);
    transition: transform .18s ease, width .18s ease;
}

.nav-toggle span:nth-child(2) {
    width: 15px;
    transform: translateX(4px);
}

.nav-toggle span:nth-child(3) {
    width: 19px;
    transform: translateX(-2px);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 10px 18px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-size: .92rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform .18s ease, background .18s ease, border-color .18s ease;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn-primary {
    background: linear-gradient(95deg, #fc94fc -5.77%, #4a81fb 58.79%, #87fbe8 149.32%);
    color: #050711;
}

.nav-cta {
    min-height: 42px;
    gap: 8px;
    margin-left: 6px;
    padding: 9px 15px;
    border-radius: 8px;
    color: #050711;
    background: linear-gradient(95deg, #fc94fc -5.77%, #4a81fb 58.79%, #87fbe8 149.32%);
    box-shadow: none;
    font-size: .76rem;
    line-height: 1;
}

.nav-cta:hover {
    transform: none;
    background: linear-gradient(95deg, #fc94fc -5.77%, #4a81fb 58.79%, #87fbe8 149.32%);
}

.hero h1,
.home-hero-copy h1,
.about-hero h1,
.services-hero-content h1,
.industry-hero h1,
.approach-hero h1,
.insights-intro h1,
.contact-info h1 {
    font-weight: 700;
    line-height: 1.16;
}

.home-hero-copy h1,
.about-hero h1,
.services-hero-content h1,
.industry-hero h1,
.approach-hero h1,
.insights-intro h1,
.contact-info h1 {
    font-size: clamp(2rem, 3.45vw, 3.12rem);
}

.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;
}

[data-animate] {
    opacity: 0;
    transform: translate3d(0, 22px, 0);
    transition:
        opacity .72s cubic-bezier(.22, 1, .36, 1),
        transform .72s cubic-bezier(.22, 1, .36, 1);
    transition-delay: var(--reveal-delay, 0ms);
    will-change: opacity, transform;
}

[data-animate].is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

[data-animate="fade-left"] {
    transform: translate3d(26px, 0, 0);
}

[data-animate="fade-right"] {
    transform: translate3d(-26px, 0, 0);
}

[data-animate="zoom"] {
    transform: scale(.97);
}

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

    [data-animate] {
        opacity: 1;
        transform: none;
    }
}

.btn-secondary {
    border-color: rgba(255, 255, 255, .22);
    color: #fff;
    background: rgba(255, 255, 255, .06);
}

.btn-gold {
    border-color: transparent;
    background: linear-gradient(95deg, #fc94fc -5.77%, #4a81fb 58.79%, #87fbe8 149.32%);
    color: #050711;
}

.btn-large {
    min-height: 48px;
    padding: 12px 22px;
}

.btn-inverted {
    color: #fff;
    border-color: rgba(255, 255, 255, .2);
    background: rgba(255, 255, 255, .1);
    backdrop-filter: blur(8px);
}

.btn-inverted:hover {
    background: rgba(255, 255, 255, .18);
}

.hero {
    position: relative;
    overflow: hidden;
    padding: clamp(76px, 10vw, 132px) 0 clamp(78px, 9vw, 124px);
}

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

.hero-wide {
    max-width: 940px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 8px 18px;
    border-radius: 999px;
    background: rgba(107, 216, 203, .28);
    color: var(--teal);
    font-family: var(--font-label);
    font-size: .68rem;
    font-weight: 700;
    text-transform: uppercase;
}

h1,
h2,
h3,
h4 {
    margin: 0;
    color: #f8fbff;
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.14;
    letter-spacing: 0;
}

.hero h1 {
    margin: 28px 0 22px;
    font-size: clamp(2.15rem, 4.2vw, 4rem);
    line-height: 1.1;
    font-weight: 750;
}

.hero p {
    max-width: 790px;
    margin: 0 0 28px;
    color: var(--muted);
    font-size: clamp(.98rem, 1.25vw, 1.12rem);
    line-height: 1.65;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.text-teal {
    color: var(--teal);
}

.section {
    padding: clamp(54px, 6vw, 88px) 0;
}

.section-alt {
    background: var(--bg-soft);
}

.section-head {
    max-width: 760px;
    margin-bottom: 36px;
}

.section-head.center {
    margin-inline: auto;
    text-align: center;
}

.section-head h2 {
    margin: 14px 0;
    font-size: clamp(1.75rem, 2.8vw, 2.55rem);
}

.section-lead {
    margin: 0;
    color: var(--muted);
    font-size: clamp(.98rem, 1.2vw, 1.08rem);
    line-height: 1.65;
}

.grid {
    display: grid;
    gap: 24px;
}

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

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

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

.card {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 10px 28px rgba(15, 23, 42, .05);
}

.service-card {
    min-height: 470px;
    padding: clamp(28px, 3vw, 40px);
    display: flex;
    flex-direction: column;
}

.service-card.compact-card {
    min-height: 330px;
}

.icon-box {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    margin-bottom: 28px;
    border-radius: 12px;
    background: var(--deep-navy);
    color: var(--teal);
}

.material-symbols-outlined {
    font-family: "Material Symbols Outlined";
    font-size: 28px;
    font-style: normal;
    font-weight: normal;
    line-height: 1;
    font-variation-settings: "FILL" 0, "wght" 500, "GRAD" 0, "opsz" 24;
}

.service-card h3 {
    margin-bottom: 16px;
    font-size: clamp(1.2rem, 1.65vw, 1.55rem);
}

.service-card p,
.step-card p,
.industry-card p,
.insight-card p,
.panel p {
    margin: 0;
    color: var(--muted);
}

.service-card p {
    margin-bottom: 28px;
}

.check-list {
    list-style: none;
    display: grid;
    gap: 12px;
    margin: auto 0 0;
    padding: 0;
    color: var(--muted);
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.check-list .material-symbols-outlined {
    color: var(--teal);
    font-size: 20px;
}

.feature-band {
    display: grid;
    grid-template-columns: 1.45fr .75fr;
    gap: 24px;
}

.feature-dark,
.feature-gold {
    min-height: 330px;
    padding: clamp(32px, 4vw, 56px);
    border-radius: 18px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.feature-dark {
    background:
        linear-gradient(135deg, rgba(13, 148, 136, .2), transparent 44%),
        var(--deep-navy);
    color: #fff;
}

.feature-gold {
    background: var(--gold);
    color: #fff;
}

.feature-dark h3,
.feature-gold h3 {
    color: #fff;
    margin-bottom: 14px;
    font-size: clamp(1.5rem, 2.2vw, 2rem);
}

.feature-dark p,
.feature-gold p {
    max-width: 560px;
    margin: 0;
    color: rgba(255, 255, 255, .78);
}

.split {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: clamp(28px, 5vw, 72px);
    align-items: start;
}

.panel {
    padding: clamp(28px, 4vw, 46px);
    border-radius: 14px;
    background: var(--card);
    border: 1px solid var(--line);
    box-shadow: 0 10px 28px rgba(15, 23, 42, .04);
}

.stat-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 24px;
}

.stat {
    padding: 16px;
    border-radius: 8px;
    background: var(--bg-soft);
    color: var(--muted);
    font-weight: 600;
}

.stat strong {
    display: block;
    margin-bottom: 4px;
    color: var(--teal);
    font-family: "JetBrains Mono", monospace;
}

.step-card,
.industry-card,
.insight-card {
    min-height: 220px;
    padding: clamp(26px, 3vw, 34px);
}

.step-card h3,
.industry-card h3,
.insight-card h3 {
    margin: 14px 0 12px;
    font-size: clamp(1.12rem, 1.6vw, 1.45rem);
}

.step-number,
.chip {
    color: var(--teal);
    font-family: "JetBrains Mono", monospace;
    font-size: .76rem;
    font-weight: 700;
    text-transform: uppercase;
}

.cta {
    margin: clamp(64px, 7vw, 104px) auto;
    padding: clamp(40px, 6vw, 72px);
    text-align: center;
    border-radius: 22px;
    background: var(--bg-soft);
    border: 1px solid var(--line);
}

.cta h2 {
    margin-bottom: 18px;
    font-size: clamp(1.75rem, 3.2vw, 3.1rem);
}

.cta p {
    max-width: 700px;
    margin: 0 auto 28px;
    color: var(--muted);
}

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

.field.full {
    grid-column: 1 / -1;
}

label {
    display: block;
    margin-bottom: 8px;
    color: var(--deep-navy);
    font-weight: 700;
}

input,
select,
textarea {
    width: 100%;
    min-height: 48px;
    padding: 12px 14px;
    border: 1px solid var(--line-strong);
    border-radius: 8px;
    background: #fff;
    color: var(--text);
}

textarea {
    min-height: 150px;
    resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
    outline: 3px solid rgba(13, 148, 136, .14);
    border-color: var(--teal);
}

.notice {
    padding: 13px 15px;
    margin-bottom: 18px;
    border-radius: 8px;
    border: 1px solid var(--line);
}

.notice.success {
    color: #006a61;
    background: rgba(13, 148, 136, .1);
}

.notice.error {
    color: #93000a;
    background: rgba(186, 26, 26, .08);
}

.site-footer {
    background: var(--deep-navy);
    color: rgba(255, 255, 255, .72);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 32px;
    padding: 60px 0;
}

.footer-brand,
.site-footer h2 {
    color: #fff;
}

.site-footer h2 {
    font-size: 1rem;
    margin-bottom: 16px;
}

.site-footer a {
    display: block;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, .76);
}

.site-footer a:hover {
    color: var(--teal);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 28px 0 42px;
    border-top: 1px solid rgba(255, 255, 255, .08);
    color: rgba(255, 255, 255, .42);
    font-family: var(--font-label, "JetBrains Mono", monospace);
    font-size: .75rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
}

.footer-subscribe {
    display: flex;
    gap: 8px;
}

.footer-subscribe input {
    min-height: 42px;
    color: #fff;
    border-color: rgba(255, 255, 255, .1);
    background: rgba(255, 255, 255, .05);
}

.chatbot-widget {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 80;
    font-family: var(--font-body);
}

.chatbot-toggle {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    min-height: 46px;
    padding: 0 18px;
    border: 1px solid rgba(135, 251, 232, .28);
    border-radius: 999px;
    color: #050711;
    background: linear-gradient(95deg, #fc94fc -5.77%, #4a81fb 58.79%, #87fbe8 149.32%);
    box-shadow: 0 18px 42px rgba(0, 0, 0, .28);
    font-weight: 600;
    cursor: pointer;
}

.chatbot-toggle .material-symbols-outlined,
.chatbot-close .material-symbols-outlined,
.chatbot-form .material-symbols-outlined {
    font-size: 18px;
    font-variation-settings: "FILL" 0, "wght" 250, "GRAD" 0, "opsz" 20;
}

.chatbot-panel {
    position: absolute;
    right: 0;
    bottom: 62px;
    display: none;
    width: min(390px, calc(100vw - 32px));
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: 16px;
    background:
        radial-gradient(circle at 100% 0%, rgba(74, 129, 251, .22), transparent 14rem),
        #0a0f1f;
    box-shadow: 0 24px 70px rgba(0, 0, 0, .42);
}

.chatbot-panel.is-open {
    display: block;
}

.chatbot-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 18px 18px 14px;
    border-bottom: 1px solid var(--line);
    background: rgba(255, 255, 255, .04);
}

.chatbot-head p {
    margin: 0 0 2px;
    color: #fff;
    font-weight: 700;
}

.chatbot-head span {
    color: rgba(232, 238, 248, .64);
    font-size: .82rem;
}

.chatbot-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: #fff;
    background: rgba(255, 255, 255, .08);
    cursor: pointer;
}

.chatbot-messages {
    display: flex;
    flex-direction: column;
    gap: 12px;
    height: 340px;
    max-height: min(50vh, 360px);
    overflow-y: auto;
    padding: 18px;
    background: transparent;
}

.chatbot-message {
    max-width: 86%;
}

.chatbot-message p {
    margin: 0;
    padding: 12px 14px;
    border-radius: 14px;
    font-size: .92rem;
    line-height: 1.55;
}

.chatbot-message.assistant {
    align-self: flex-start;
}

.chatbot-message.assistant p {
    color: #e8eef8;
    border: 1px solid rgba(255, 255, 255, .1);
    background: rgba(255, 255, 255, .07);
}

.chatbot-message.user {
    align-self: flex-end;
}

.chatbot-message.user p {
    color: #050711;
    background: #87fbe8;
}

.chatbot-message.is-typing {
    display: inline-flex;
    gap: 5px;
    padding: 12px 14px;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 14px;
    background: rgba(255, 255, 255, .07);
}

.chatbot-message.is-typing span {
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: rgba(135, 251, 232, .72);
    animation: chatbotTyping 1s infinite ease-in-out;
}

.chatbot-message.is-typing span:nth-child(2) {
    animation-delay: .12s;
}

.chatbot-message.is-typing span:nth-child(3) {
    animation-delay: .24s;
}

.chatbot-form {
    display: grid;
    grid-template-columns: 1fr 42px;
    gap: 10px;
    padding: 14px;
    border-top: 1px solid var(--line);
    background: rgba(255, 255, 255, .04);
}

.chatbot-form textarea {
    min-height: 42px;
    max-height: 120px;
    resize: none;
    padding: 11px 12px;
    border-radius: 10px;
    font-size: .92rem;
    line-height: 1.45;
}

.chatbot-form button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 10px;
    color: #050711;
    background: #87fbe8;
    cursor: pointer;
}

.chatbot-form button:disabled {
    cursor: not-allowed;
    opacity: .55;
}

.chatbot-note {
    margin: 0;
    padding: 0 16px 14px;
    color: rgba(232, 238, 248, .58);
    background: rgba(255, 255, 255, .04);
    font-family: var(--font-label);
    font-size: .67rem;
    line-height: 1.45;
    letter-spacing: .04em;
}

@keyframes chatbotTyping {
    0%,
    80%,
    100% {
        transform: translateY(0);
        opacity: .45;
    }

    40% {
        transform: translateY(-3px);
        opacity: 1;
    }
}

.footer-subscribe input::placeholder {
    color: rgba(255, 255, 255, .45);
}

.footer-subscribe button {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border: 0;
    border-radius: 8px;
    color: #fff;
    background: var(--teal);
    cursor: pointer;
}

.footer-social {
    display: flex;
    gap: 14px;
    margin-top: 28px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: rgba(255, 255, 255, .05);
}

/* Home page from Stitch export */
.hero-gradient {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .035), rgba(255, 255, 255, 0) 42%),
        radial-gradient(circle at 14% 10%, rgba(252, 148, 252, .16), transparent 28rem),
        radial-gradient(circle at 76% 16%, rgba(74, 129, 251, .2), transparent 32rem),
        radial-gradient(circle at 100% 72%, rgba(135, 251, 232, .14), transparent 28rem),
        #050711;
}

.home-hero {
    position: relative;
    padding: 78px 0 112px;
    overflow: hidden;
}

.home-hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    gap: 52px;
}

.home-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(255, 255, 255, .045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .045) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: linear-gradient(to bottom, #000 0%, rgba(0, 0, 0, .72) 44%, transparent 92%);
    pointer-events: none;
}

.home-hero .container {
    position: relative;
    z-index: 2;
}

.home-hero-copy h1 {
    max-width: 980px;
    margin: 22px auto 20px;
    color: #fff;
    font-size: clamp(2.6rem, 5vw, 5.25rem);
    line-height: .98;
    font-weight: 800;
    text-align: center;
}

.home-hero-copy p {
    max-width: 760px;
    margin: 0 auto;
    color: rgba(232, 238, 248, .78);
    font-size: clamp(1rem, 1.25vw, 1.16rem);
    line-height: 1.7;
    text-align: center;
}

.home-hero-media {
    position: relative;
    width: min(100%, 920px);
    min-height: auto;
    display: grid;
    align-items: center;
    margin: 0 auto;
}

.home-hero-copy {
    text-align: center;
}

.home-hero-copy .eyebrow {
    margin-inline: auto;
}

.home-hero-copy .hero-actions {
    justify-content: center;
}

.image-frame {
    position: relative;
    z-index: 2;
    overflow: hidden;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, .16);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, .14), rgba(255, 255, 255, .04)),
        #0d1324;
    box-shadow: 0 34px 110px rgba(0, 0, 0, .54);
}

.image-frame::before {
    content: "";
    position: absolute;
    inset: 16px;
    z-index: 3;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 22px;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, .15), transparent 28%),
        linear-gradient(rgba(255, 255, 255, .1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .08) 1px, transparent 1px);
    background-size: auto, 100% 68px, 68px 100%;
    pointer-events: none;
    opacity: .68;
}

.image-frame::after {
    content: "";
    position: absolute;
    right: 32px;
    bottom: 32px;
    z-index: 4;
    width: min(58%, 280px);
    height: 118px;
    border: 1px solid rgba(135, 251, 232, .28);
    border-radius: 18px;
    background:
        linear-gradient(95deg, rgba(252, 148, 252, .22), rgba(74, 129, 251, .24), rgba(135, 251, 232, .18)),
        rgba(5, 7, 17, .72);
    box-shadow: 0 20px 60px rgba(0, 0, 0, .32);
    backdrop-filter: blur(14px);
}

.ai-console {
    padding: 14px;
}

.ai-console::before {
    inset: 14px;
    opacity: .34;
}

.ai-console::after {
    display: none;
}

.console-window {
    position: relative;
    z-index: 5;
    overflow: hidden;
    min-height: 430px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, .14);
    background:
        radial-gradient(circle at 90% 8%, rgba(74, 129, 251, .5), transparent 22rem),
        radial-gradient(circle at 4% 84%, rgba(135, 251, 232, .22), transparent 20rem),
        linear-gradient(135deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .03)),
        #0a1020;
}

.console-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 16px 18px;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    color: rgba(232, 238, 248, .74);
    font-family: var(--font-label);
    font-size: .72rem;
}

.console-topbar strong {
    color: #fff;
    font-family: var(--font-heading);
    font-size: .9rem;
}

.console-main {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    align-items: end;
    gap: 24px;
    padding: clamp(28px, 5vw, 58px);
}

.console-brief {
    max-width: 520px;
}

.console-pill {
    display: inline-flex;
    margin-bottom: 16px;
    padding: 7px 12px;
    border: 1px solid rgba(135, 251, 232, .25);
    border-radius: 999px;
    color: #87fbe8;
    background: rgba(135, 251, 232, .08);
    font-family: var(--font-label);
    font-size: .68rem;
    text-transform: uppercase;
}

.console-brief h2 {
    max-width: 520px;
    margin-bottom: 16px;
    font-size: clamp(1.8rem, 4vw, 3.45rem);
    line-height: 1;
}

.console-brief p {
    max-width: 470px;
    margin: 0;
    color: rgba(232, 238, 248, .72);
    font-size: .98rem;
}

.console-card-stack {
    display: grid;
    gap: 14px;
}

.console-card-stack article {
    min-height: 132px;
    padding: 22px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 18px;
    background: rgba(5, 7, 17, .55);
    box-shadow: 0 22px 70px rgba(0, 0, 0, .24);
    backdrop-filter: blur(14px);
}

.console-card-stack .material-symbols-outlined {
    color: #87fbe8;
}

.console-card-stack strong {
    display: block;
    margin-top: 14px;
    color: #fff;
    font-family: var(--font-heading);
    font-size: 1.8rem;
}

.console-card-stack p {
    margin: 4px 0 0;
    color: rgba(232, 238, 248, .68);
}

.console-service-row {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-top: 1px solid rgba(255, 255, 255, .1);
}

.console-service-row span {
    min-height: 74px;
    display: grid;
    place-items: center;
    padding: 14px;
    color: rgba(232, 238, 248, .8);
    border-right: 1px solid rgba(255, 255, 255, .1);
    font-weight: 700;
    text-align: center;
}

.console-service-row span:last-child {
    border-right: 0;
}

.image-frame img {
    width: 100%;
    min-height: 520px;
    object-fit: cover;
    opacity: .56;
    filter: saturate(1.16) contrast(1.05);
}

.decor {
    position: absolute;
    z-index: 1;
    display: block;
    border-radius: 999px;
    filter: blur(54px);
    pointer-events: none;
}

.decor-teal {
    top: -28px;
    right: -34px;
    width: 220px;
    height: 220px;
    background: rgba(135, 251, 232, .26);
}

.decor-gold {
    bottom: 8px;
    left: -54px;
    width: 260px;
    height: 260px;
    background: rgba(252, 148, 252, .16);
}

.intro-section {
    background: #050711;
    padding-top: 22px;
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    gap: 34px;
    text-align: center;
}

.intro-grid h2 {
    max-width: 760px;
    margin-inline: auto;
    margin-bottom: 18px;
    font-size: clamp(1.95rem, 3.2vw, 3rem);
}

.intro-grid p {
    max-width: 850px;
    margin: 0 auto 20px;
    color: rgba(232, 238, 248, .72);
    line-height: 1.64;
}

.stat-card-grid {
    width: min(100%, 620px);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.metric-card {
    padding: 28px 22px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 22px;
    background: linear-gradient(145deg, rgba(255, 255, 255, .1), rgba(255, 255, 255, .045));
    box-shadow: 0 24px 70px rgba(0, 0, 0, .24);
}

.metric-card.is-offset {
    margin-top: 0;
}

.metric-icon {
    display: block;
    margin-bottom: 16px;
    font-size: 40px;
}

.metric-icon.teal {
    color: var(--teal);
}

.metric-icon.gold {
    color: var(--gold);
}

.metric-card strong {
    display: block;
    margin-bottom: 6px;
    color: #fff;
    font-family: var(--font-heading);
    font-size: 1.45rem;
    line-height: 1.2;
}

.metric-card span:last-child {
    color: rgba(232, 238, 248, .7);
}

.eyebrow.plain {
    padding: 0;
    border-radius: 0;
    background: transparent;
    letter-spacing: .08em;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 18px;
}

.glass-card {
    grid-column: span 2;
    min-height: 250px;
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 24px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, .105), rgba(255, 255, 255, .04)),
        #0a0f1f;
    box-shadow: none;
    backdrop-filter: blur(12px);
    transition: box-shadow .2s ease, transform .2s ease, border-color .2s ease;
}

.glass-card:nth-child(1),
.glass-card:nth-child(2) {
    grid-column: span 3;
    min-height: 310px;
}

.glass-card:nth-child(1) {
    background:
        radial-gradient(circle at 100% 0%, rgba(74, 129, 251, .36), transparent 18rem),
        linear-gradient(145deg, rgba(255, 255, 255, .12), rgba(255, 255, 255, .04)),
        #0a0f1f;
}

.glass-card:nth-child(2) {
    background:
        radial-gradient(circle at 0% 100%, rgba(135, 251, 232, .22), transparent 18rem),
        linear-gradient(145deg, rgba(255, 255, 255, .12), rgba(255, 255, 255, .04)),
        #0a0f1f;
}

.glass-card:hover {
    transform: translateY(-2px);
    border-color: rgba(135, 251, 232, .3);
    box-shadow: 0 22px 70px rgba(0, 0, 0, .24);
}

.glass-card > .material-symbols-outlined {
    margin-bottom: 24px;
    color: #87fbe8;
    font-size: 34px;
}

.glass-card h3 {
    margin-bottom: 14px;
    font-size: 1.24rem;
}

.glass-card p {
    margin: 0;
    color: rgba(232, 238, 248, .7);
}

.why-section {
    color: #fff;
    background:
        radial-gradient(circle at 80% 14%, rgba(74, 129, 251, .22), transparent 28rem),
        #080c18;
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    gap: 42px;
}

.why-grid > div:first-child {
    display: grid;
    grid-template-columns: .72fr 1.28fr;
    align-items: start;
    gap: 42px;
}

.why-section h2 {
    margin-bottom: 32px;
    color: #fff;
    font-size: clamp(2.2rem, 3.6vw, 3.2rem);
}

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

.why-item {
    display: grid;
    gap: 18px;
    min-height: 230px;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 22px;
    background: rgba(255, 255, 255, .055);
}

.why-icon {
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    color: #87fbe8;
    background: rgba(135, 251, 232, .12);
}

.why-item h3 {
    margin-bottom: 8px;
    color: #fff;
    font-size: 1.45rem;
}

.why-item p {
    margin: 0;
    color: rgba(224, 227, 229, .8);
}

.why-media-card {
    display: none;
    padding: clamp(28px, 4vw, 48px);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 30px;
    background: linear-gradient(145deg, rgba(255, 255, 255, .11), rgba(255, 255, 255, .045));
    backdrop-filter: blur(10px);
}

.why-media-card img {
    width: 100%;
    border-radius: 22px;
    box-shadow: 0 26px 70px rgba(0, 0, 0, .28);
    opacity: .92;
}

.industries-preview {
    background: #050711;
}

.section-row-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 56px;
}

.section-row-head h2 {
    margin-top: 14px;
    font-size: clamp(1.7rem, 2.75vw, 2.45rem);
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #87fbe8;
    font-weight: 700;
}

.industry-strip {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 24px;
}

.industry-strip article {
    min-height: 150px;
    display: grid;
    place-items: center;
    gap: 14px;
    padding: 28px 18px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 22px;
    background: rgba(255, 255, 255, .055);
    transition: border-color .2s ease, transform .2s ease;
}

.industry-strip article:hover {
    transform: translateY(-2px);
    border-color: rgba(135, 251, 232, .42);
}

.industry-strip .material-symbols-outlined {
    color: #87fbe8;
    font-size: 34px;
}

.industry-strip strong {
    color: #fff;
}

.home-cta-section {
    padding: 78px 0;
}

.home-cta {
    position: relative;
    overflow: hidden;
    padding: 58px 40px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 30px;
    color: #fff;
    background:
        radial-gradient(circle at top right, rgba(135, 251, 232, .2), transparent 36%),
        radial-gradient(circle at bottom left, rgba(252, 148, 252, .18), transparent 32%),
        #0a0f1f;
    box-shadow: 0 28px 90px rgba(0, 0, 0, .3);
}

.home-cta h2 {
    max-width: 780px;
    margin: 0 auto 22px;
    color: #fff;
    font-size: clamp(1.8rem, 2.9vw, 2.6rem);
}

.home-cta p {
    max-width: 680px;
    margin: 0 auto 34px;
    color: rgba(224, 227, 229, .8);
    font-size: 1rem;
}

.center-actions {
    justify-content: center;
}

.access-gate {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 32px 16px;
    background:
        radial-gradient(circle at 0% 0%, rgba(13, 148, 136, .08) 0%, transparent 42%),
        radial-gradient(circle at 100% 100%, rgba(217, 119, 6, .06) 0%, transparent 42%),
        var(--bg);
}

.access-card {
    width: min(100%, 430px);
    padding: 36px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(255, 255, 255, .82);
    box-shadow: var(--shadow);
    backdrop-filter: blur(14px);
}

.access-card h1 {
    margin: 18px 0 10px;
    font-size: clamp(2rem, 6vw, 2.7rem);
}

.access-card p {
    margin: 0 0 24px;
    color: var(--muted);
}

.access-code-input {
    margin-bottom: 18px;
    text-align: center;
    font-family: "JetBrains Mono", monospace;
    font-size: 1.35rem;
    letter-spacing: .3em;
}

/* About page from Stitch export */
.about-hero {
    padding: 78px 0;
    overflow: hidden;
}

.about-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 64px;
}

.about-hero h1 {
    max-width: 620px;
    margin: 16px 0 20px;
    font-size: clamp(2rem, 3.5vw, 3.15rem);
    line-height: 1.12;
}

.about-hero p {
    max-width: 590px;
    margin: 0;
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.64;
}

.about-hero-media {
    position: relative;
}

.about-hero-media::before {
    content: "";
    position: absolute;
    inset: -16px;
    border-radius: 26px;
    background: rgba(13, 148, 136, .1);
    filter: blur(22px);
}

.about-hero-media img {
    position: relative;
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 14px;
    box-shadow: 0 28px 70px rgba(15, 23, 42, .18);
}

.about-bento-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.about-bento-card {
    min-height: 310px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: clamp(30px, 4vw, 48px);
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 10px 28px rgba(15, 23, 42, .04);
}

.about-bento-wide {
    grid-column: span 2;
}

.about-bento-card h3 {
    margin-bottom: 14px;
    font-size: clamp(1.5rem, 2.2vw, 2rem);
}

.about-bento-card p {
    margin: 0;
    color: var(--muted);
}

.bento-icon {
    display: block;
    margin-bottom: 24px;
    font-size: 40px;
}

.bento-icon.teal {
    color: var(--teal);
}

.bento-icon.gold {
    color: var(--gold);
}

.about-bento-dark {
    color: #fff;
    background: var(--deep-navy);
}

.about-bento-dark h3 {
    color: #fff;
}

.about-bento-dark p {
    color: rgba(224, 227, 229, .82);
}

.about-bento-dark img {
    width: 100%;
    height: 130px;
    margin-top: 32px;
    object-fit: cover;
    border-radius: 10px;
    filter: grayscale(1);
    opacity: .52;
}

.about-bento-teal {
    display: grid;
    grid-template-columns: .42fr .58fr;
    align-items: center;
    gap: 48px;
    background: rgba(13, 148, 136, .05);
    border-color: rgba(13, 148, 136, .2);
}

.about-bento-teal img {
    width: 100%;
    height: 190px;
    object-fit: cover;
    border-radius: 14px;
}

.mission-section {
    background: #fff;
}

.mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(48px, 8vw, 128px);
    margin-bottom: clamp(72px, 8vw, 128px);
}

.mission-block {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 24px;
    border-left: 4px solid var(--teal);
}

.mission-block.gold-border {
    border-left-color: var(--gold);
}

.mission-block h2 {
    margin-bottom: 24px;
    font-size: clamp(1.65rem, 2.7vw, 2.35rem);
}

.mission-block p {
    margin: 0;
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.64;
}

.teal-border p {
    font-style: italic;
}

.values-head {
    margin-bottom: 56px;
}

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

.value-card {
    padding: 32px 24px;
    text-align: center;
    border-radius: 14px;
    transition: background .2s ease;
}

.value-card:hover {
    background: var(--bg-soft);
}

.value-card .material-symbols-outlined {
    width: 64px;
    height: 64px;
    display: grid;
    place-items: center;
    margin: 0 auto 24px;
    border-radius: 999px;
    color: var(--teal);
    background: rgba(13, 148, 136, .1);
    font-size: 32px;
}

.value-card h3 {
    margin-bottom: 12px;
    font-size: 1.22rem;
}

.value-card p {
    margin: 0;
    color: var(--muted);
}

.about-goals {
    color: #fff;
    background: var(--deep-navy);
}

.about-goals-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 64px;
}

.about-goals h2 {
    margin-bottom: 34px;
    color: #fff;
    font-size: clamp(1.9rem, 3.4vw, 3rem);
}

.goal-list {
    display: grid;
    gap: 44px;
}

.goal-list article {
    display: flex;
    gap: 24px;
}

.goal-list strong {
    color: var(--gold);
    font-family: var(--font-heading);
    font-size: 1.55rem;
    line-height: 1;
}

.goal-list h3 {
    margin-bottom: 8px;
    color: #fff;
    font-size: 1.22rem;
}

.goal-list p {
    margin: 0;
    color: rgba(224, 227, 229, .8);
}

.about-goals img {
    width: 100%;
    border-radius: 22px;
    opacity: .6;
    mix-blend-mode: screen;
}

.about-final-cta {
    padding-bottom: 0;
}

.about-cta-card {
    padding: clamp(44px, 6vw, 64px);
    text-align: center;
    border: 2px solid rgba(13, 148, 136, .1);
}

.about-cta-card h2 {
    margin-bottom: 22px;
    font-size: clamp(1.9rem, 3.4vw, 3rem);
}

.about-cta-card p {
    max-width: 700px;
    margin: 0 auto 34px;
    color: var(--muted);
    font-size: 1rem;
}

/* Services page from Stitch export */
.services-hero {
    position: relative;
    overflow: hidden;
    padding: 78px 0;
}

.services-hero-content {
    position: relative;
    z-index: 2;
}

.services-hero-content h1 {
    max-width: 820px;
    margin: 20px 0 20px;
    font-size: clamp(2.05rem, 3.8vw, 3.45rem);
    line-height: 1.1;
}

.services-hero-content p {
    max-width: 790px;
    margin: 0;
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.64;
}

.services-hero-graphic {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    opacity: .1;
    pointer-events: none;
}

.services-hero-graphic svg {
    width: 100%;
    height: 100%;
}

.services-grid-section {
    padding: 64px 0;
    background: rgba(242, 244, 246, .7);
}

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

.service-detail-card {
    min-height: 390px;
    display: flex;
    flex-direction: column;
    padding: 26px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 10px 28px rgba(15, 23, 42, .05);
    transition: box-shadow .2s ease, transform .2s ease;
}

.service-detail-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 44px rgba(15, 23, 42, .08);
}

.service-detail-icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    margin-bottom: 24px;
    border-radius: 10px;
    color: var(--teal);
    background: var(--navy-2);
}

.service-detail-icon .material-symbols-outlined {
    font-size: 26px;
}

.service-detail-card h3 {
    margin-bottom: 16px;
    font-size: 1.22rem;
}

.service-detail-card p {
    margin: 0 0 24px;
    color: var(--muted);
}

.service-detail-card ul {
    display: grid;
    gap: 12px;
    margin: auto 0 0;
    padding: 0;
    list-style: none;
    color: var(--muted);
}

.service-detail-card li {
    display: flex;
    align-items: center;
    gap: 8px;
}

.service-detail-card li .material-symbols-outlined {
    color: var(--teal);
    font-size: 19px;
}

.service-deliverables {
    background: var(--bg);
}

.service-deliverables h2 {
    margin-bottom: 48px;
    text-align: center;
    font-size: clamp(1.75rem, 2.8vw, 2.5rem);
}

.deliverables-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 24px;
}

.deliverable-report,
.deliverable-roadmap {
    min-height: 400px;
    border-radius: 22px;
    overflow: hidden;
}

.deliverable-report {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: clamp(34px, 4vw, 48px);
    color: #fff;
    background: var(--deep-navy);
}

.deliverable-report img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .2;
}

.deliverable-report div {
    position: relative;
    z-index: 2;
    max-width: 470px;
}

.deliverable-report h3,
.deliverable-roadmap h3 {
    margin-bottom: 14px;
    color: #fff;
    font-size: clamp(1.28rem, 2vw, 1.72rem);
}

.deliverable-report p,
.deliverable-roadmap p {
    margin: 0;
    color: rgba(255, 255, 255, .82);
}

.deliverable-roadmap {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 32px;
    color: #fff;
    background: var(--gold);
}

.deliverable-roadmap .material-symbols-outlined {
    display: block;
    margin-bottom: 24px;
    font-size: 48px;
}

.services-cta-section {
    padding: 78px 0;
}

.services-cta {
    padding: clamp(38px, 5vw, 54px);
    text-align: center;
    border: 1px solid var(--line);
    border-radius: 28px;
    background: var(--bg-soft);
}

.services-cta h2 {
    max-width: 820px;
    margin: 0 auto 22px;
    font-size: clamp(1.85rem, 3.4vw, 3rem);
}

.services-cta p {
    max-width: 720px;
    margin: 0 auto 34px;
    color: var(--muted);
    font-size: 1rem;
}

/* Industries page */
.industry-hero,
.approach-hero {
    position: relative;
    overflow: hidden;
    padding: 78px 0 56px;
    background: #fff;
}

.industry-hero-content,
.approach-hero .container {
    position: relative;
    z-index: 2;
}

.industry-hero h1,
.approach-hero h1,
.insights-intro h1,
.contact-info h1 {
    max-width: 800px;
    margin: 22px 0;
    font-size: clamp(2rem, 3.5vw, 3.15rem);
}

.industry-hero p,
.approach-hero p,
.insights-intro p,
.contact-info header p {
    max-width: 790px;
    margin: 0;
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.64;
}

.industry-hero-graphic {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    opacity: .1;
}

.industry-hero-graphic svg {
    width: 100%;
    height: 100%;
}

.industry-scale-section {
    background: var(--bg-soft);
}

.industry-scale-section h2 {
    margin-bottom: 48px;
    text-align: center;
    font-size: clamp(2rem, 3.4vw, 3rem);
}

.scale-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.scale-card {
    padding: 32px;
    text-align: center;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(255, 255, 255, .72);
    box-shadow: 0 10px 28px rgba(15, 23, 42, .04);
    backdrop-filter: blur(12px);
}

.scale-card.featured {
    border: 2px solid rgba(13, 148, 136, .2);
}

.scale-icon {
    width: 64px;
    height: 64px;
    display: grid;
    place-items: center;
    margin: 0 auto 24px;
    border-radius: 999px;
    font-size: 36px;
}

.scale-icon.teal { color: var(--teal); background: rgba(13, 148, 136, .1); }
.scale-icon.gold { color: var(--gold); background: rgba(217, 119, 6, .1); }
.scale-icon.navy { color: var(--deep-navy); background: rgba(15, 23, 42, .1); }

.scale-card h3 {
    margin-bottom: 16px;
    font-size: 1.6rem;
}

.scale-card p {
    margin: 0 0 24px;
    color: var(--muted);
}

.scale-card ul {
    display: grid;
    gap: 8px;
    margin: 0;
    padding: 0;
    text-align: left;
    list-style: none;
    font-family: "JetBrains Mono", monospace;
    font-size: .76rem;
    text-transform: uppercase;
}

.scale-card li {
    display: flex;
    gap: 8px;
    align-items: center;
}

.teal-list { color: var(--teal); }
.gold-list { color: var(--gold); }
.navy-list { color: var(--deep-navy); }

.industry-bento {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 24px;
}

.industry-image-card,
.industry-use-card,
.industry-small-card {
    border-radius: 14px;
    border: 1px solid var(--line);
    overflow: hidden;
}

.industry-image-card {
    position: relative;
    min-height: 400px;
    grid-column: span 8;
}

.industry-image-card img {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
    object-fit: cover;
    transition: transform .6s ease;
}

.industry-image-card:hover img {
    transform: scale(1.04);
}

.industry-image-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, .96), rgba(15, 23, 42, .4), transparent);
}

.industry-image-card > div {
    position: absolute;
    left: 32px;
    right: 32px;
    bottom: 32px;
    z-index: 2;
    color: #fff;
}

.industry-image-card.align-right > div {
    text-align: right;
}

.industry-image-card h3 {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: #fff;
}

.industry-image-card.align-right h3 {
    justify-content: flex-end;
}

.industry-image-card p {
    max-width: 560px;
    margin: 0 0 16px;
    color: rgba(224, 227, 229, .9);
}

.industry-image-card.align-right p {
    margin-left: auto;
}

.tag-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.align-right .tag-row {
    justify-content: flex-end;
}

.tag-row span {
    padding: 6px 12px;
    border-radius: 999px;
    color: #fff;
    background: rgba(255, 255, 255, .1);
    backdrop-filter: blur(8px);
    font-family: "JetBrains Mono", monospace;
    font-size: .75rem;
}

.industry-use-card {
    grid-column: span 4;
    padding: 32px;
    background: rgba(255, 255, 255, .72);
    backdrop-filter: blur(12px);
}

.gold-border { border-left: 4px solid var(--gold); }
.teal-border-left { border-left: 4px solid var(--teal); }

.card-icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    margin-bottom: 24px;
    border-radius: 10px;
}
.card-icon.gold { color: var(--gold); background: rgba(217, 119, 6, .1); }
.card-icon.teal { color: var(--teal); background: rgba(13, 148, 136, .1); }
.card-icon.navy { color: var(--deep-navy); background: rgba(15, 23, 42, .1); }

.industry-use-card p,
.industry-small-card p {
    color: var(--muted);
}

.use-box {
    padding: 16px;
    margin-top: 16px;
    border-radius: 10px;
    background: var(--bg-soft);
}

.use-box small,
.card-head small {
    display: block;
    color: var(--teal);
    font-family: "JetBrains Mono", monospace;
    font-size: .75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.industry-small-card {
    grid-column: span 6;
    padding: 32px;
    background: rgba(255, 255, 255, .72);
    backdrop-filter: blur(12px);
}

.card-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 24px;
}

.mini-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 24px;
}

.mini-grid div {
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 10px;
}

.mini-grid span {
    color: var(--teal);
}

.industry-consulting,
.insights-cta {
    color: #fff;
    background: var(--deep-navy);
}

.industry-consulting-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 80px;
}

.industry-consulting h2,
.insights-cta h2 {
    color: #fff;
    font-size: clamp(2rem, 3.4vw, 3rem);
}

.consulting-list {
    display: grid;
    gap: 32px;
    margin-top: 32px;
}

.consulting-list article {
    display: flex;
    gap: 24px;
}

.consulting-list .material-symbols-outlined {
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(13, 148, 136, .35);
    border-radius: 999px;
    color: var(--teal);
}

.consulting-list h3 {
    color: #fff;
}

.consulting-list p {
    color: rgba(224, 227, 229, .8);
}

.consulting-media {
    position: relative;
    padding: 8px;
    border-radius: 22px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, .72);
}

.consulting-media img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 16px;
}

.efficiency-badge {
    position: absolute;
    left: -40px;
    bottom: -40px;
    padding: 28px;
    border-radius: 14px;
    background: var(--gold);
    color: var(--deep-navy);
}

.efficiency-badge strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.35rem;
    line-height: 1;
}

.efficiency-badge span {
    font-family: "JetBrains Mono", monospace;
    font-size: .75rem;
    font-weight: 700;
    text-transform: uppercase;
}

/* Insights page */
.insights-hero {
    padding: 96px 0 64px;
}

.insights-intro {
    max-width: 800px;
}

.featured-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 24px;
    margin-top: 48px;
}

.featured-primary {
    position: relative;
    min-height: 500px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 14px;
}

.featured-primary img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-primary::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, .92), rgba(15, 23, 42, .4), transparent);
}

.featured-primary > div {
    position: absolute;
    left: 40px;
    right: 40px;
    bottom: 40px;
    z-index: 2;
    max-width: 720px;
    color: #fff;
}

.featured-primary h2 {
    color: #fff;
    font-size: clamp(2rem, 3.4vw, 3rem);
}

.featured-primary p {
    color: rgba(224, 227, 229, .9);
}

.meta-row {
    display: flex;
    gap: 16px;
    align-items: center;
    margin-bottom: 16px;
    font-family: "JetBrains Mono", monospace;
    font-size: .75rem;
}

.meta-row span {
    padding: 6px 12px;
    border-radius: 999px;
    color: var(--teal);
    border: 1px solid rgba(13, 148, 136, .3);
    background: rgba(13, 148, 136, .2);
}

.featured-primary a,
.featured-secondary a,
.whitepaper-card a,
.insight-mini a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--teal);
    font-weight: 700;
}

.featured-secondary {
    display: grid;
    gap: 24px;
}

.featured-secondary article,
.whitepaper-card,
.insight-mini,
.newsletter-card {
    padding: 32px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 10px 28px rgba(15, 23, 42, .04);
}

.featured-secondary article > span,
.insight-mini small {
    color: var(--gold);
    font-family: "JetBrains Mono", monospace;
    font-size: .75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.featured-secondary p,
.whitepaper-card p,
.insight-mini p,
.newsletter-card p {
    color: var(--muted);
}

.resource-nav {
    position: sticky;
    top: 72px;
    z-index: 40;
    margin-bottom: 24px;
    padding: 16px 0;
    border-block: 1px solid var(--line);
    background: rgba(255, 255, 255, .82);
    backdrop-filter: blur(12px);
}

.insights-grid-section {
    padding-top: 24px;
}

.featured-primary a .material-symbols-outlined,
.featured-secondary a .material-symbols-outlined,
.whitepaper-card a .material-symbols-outlined,
.insight-mini a .material-symbols-outlined {
    font-family: "Material Symbols Outlined";
    font-size: 20px;
    line-height: 1;
    text-transform: none;
    font-variation-settings: "FILL" 0, "wght" 300, "GRAD" 0, "opsz" 20;
}

.resource-nav .container {
    display: flex;
    gap: 32px;
    overflow-x: auto;
}

.resource-nav button {
    border: 0;
    background: transparent;
    color: var(--muted);
    white-space: nowrap;
    font-family: "JetBrains Mono", monospace;
    font-size: .75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.resource-nav button:first-child {
    color: var(--deep-navy);
    border-bottom: 2px solid var(--deep-navy);
}

.resource-access-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
    color: var(--muted);
    font-size: .92rem;
}

.resource-access-legend span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
}

.dot.free { background: var(--teal); }
.dot.account { background: var(--deep-navy); }
.dot.paid { background: var(--gold); }

.insights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.resource-library {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.resource-card {
    display: flex;
    flex-direction: column;
    min-height: 310px;
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 10px 28px rgba(15, 23, 42, .04);
}

.resource-card small {
    margin: 18px 0 10px;
    color: var(--muted);
    font-family: "JetBrains Mono", monospace;
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
}

.resource-card h3 {
    margin-bottom: 12px;
    font-size: 1.45rem;
}

.resource-card p {
    margin: 0 0 24px;
    color: var(--muted);
}

.resource-card .btn {
    margin-top: auto;
}

.resource-card-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: auto;
}

.resource-card-actions .btn {
    margin-top: 0;
}

.resource-badge {
    width: fit-content;
    padding: 6px 10px;
    border-radius: 999px;
    color: var(--teal);
    background: rgba(13, 148, 136, .1);
    font-family: "JetBrains Mono", monospace;
    font-size: .68rem;
    font-weight: 700;
    text-transform: uppercase;
}

.resource-badge.account {
    color: var(--deep-navy);
    background: rgba(15, 23, 42, .08);
}

.resource-badge.paid {
    color: var(--gold);
    background: rgba(217, 119, 6, .1);
}

.resource-detail-hero {
    padding: 86px 0 58px;
    background:
        linear-gradient(90deg, rgba(247, 249, 251, .98), rgba(247, 249, 251, .78)),
        radial-gradient(circle at 88% 14%, rgba(13, 148, 136, .14), transparent 34%);
}

.resource-detail-grid {
    display: grid;
    grid-template-columns: minmax(0, .92fr) minmax(360px, .78fr);
    gap: clamp(28px, 5vw, 72px);
    align-items: center;
}

.resource-detail-copy small {
    display: block;
    margin: 16px 0 12px;
    color: var(--muted);
    font-family: var(--font-label);
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
}

.resource-detail-copy h1 {
    max-width: 780px;
    margin: 0 0 22px;
    font-size: clamp(2.45rem, 5vw, 4.9rem);
    line-height: 1.02;
}

.resource-detail-copy p {
    max-width: 720px;
    color: var(--muted);
    font-size: clamp(1.02rem, 1.35vw, 1.18rem);
    line-height: 1.7;
}

.resource-detail-media {
    min-height: 420px;
    margin: 0;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #0f172a;
    box-shadow: var(--shadow);
}

.resource-detail-media img {
    width: 100%;
    height: 100%;
    min-height: 420px;
    object-fit: cover;
}

.resource-detail-body {
    padding-top: 72px;
}

.resource-detail-content {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, .42fr);
    gap: clamp(28px, 5vw, 70px);
    align-items: start;
}

.resource-detail-content article,
.resource-detail-content aside {
    padding: 30px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #fff;
}

.resource-detail-content h2 {
    margin: 12px 0 16px;
    font-size: clamp(1.7rem, 3vw, 2.4rem);
}

.rich-copy,
.resource-detail-content article p {
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.8;
}

.resource-points {
    display: grid;
    gap: 14px;
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
}

.resource-points li {
    position: relative;
    padding-left: 30px;
    color: var(--text);
    line-height: 1.6;
}

.resource-points li::before {
    content: "";
    position: absolute;
    top: .52em;
    left: 0;
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: var(--teal);
    box-shadow: 0 0 0 6px rgba(13, 148, 136, .1);
}

.resource-download-band {
    padding: 42px 0 76px;
}

.resource-download-band .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: #0f172a;
    color: #fff;
}

.resource-download-band h2 {
    margin: 10px 0 8px;
    color: #fff;
    font-size: clamp(1.35rem, 2.4vw, 2rem);
}

.resource-download-band p {
    margin: 0;
    color: rgba(255, 255, 255, .72);
}

@media (max-width: 980px) {
    .resource-detail-grid,
    .resource-detail-content {
        grid-template-columns: 1fr;
    }

    .resource-detail-media,
    .resource-detail-media img {
        min-height: 320px;
    }

    .resource-download-band .container {
        align-items: flex-start;
        flex-direction: column;
    }
}

.whitepaper-card {
    padding: 0;
    overflow: hidden;
}

.whitepaper-card .thumb {
    position: relative;
    height: 190px;
}

.whitepaper-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.whitepaper-card .thumb span {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 6px 12px;
    border-radius: 6px;
    background: var(--deep-navy);
    color: #fff;
    font-family: "JetBrains Mono", monospace;
    font-size: .75rem;
}

.whitepaper-card > div:last-child {
    padding: 32px;
}

.case-study-wide {
    grid-column: span 2;
    display: grid;
    grid-template-columns: 1fr .42fr;
    gap: 32px;
    align-items: center;
    padding: 40px;
    border-radius: 14px;
    color: #fff;
    background: var(--navy-2);
}

.case-study-wide h3 {
    color: #fff;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.case-study-wide p {
    color: rgba(190, 198, 224, .9);
}

.case-study-wide > div > span {
    color: var(--teal);
    font-family: "JetBrains Mono", monospace;
    font-size: .75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.case-metrics {
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 12px;
    background: rgba(255, 255, 255, .05);
}

.case-metrics strong {
    display: block;
    color: var(--teal);
    font-family: var(--font-heading);
    font-size: 2rem;
}

.case-metrics small {
    display: block;
    margin-bottom: 24px;
    color: rgba(190, 198, 224, .9);
    font-family: "JetBrains Mono", monospace;
    text-transform: uppercase;
}

.insight-mini > .material-symbols-outlined {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    margin-bottom: 24px;
    border-radius: 10px;
}

.insight-mini .teal { color: var(--teal); background: rgba(13, 148, 136, .1); }
.insight-mini .gold { color: var(--gold); background: rgba(217, 119, 6, .1); }

.newsletter-card {
    text-align: center;
    background: var(--bg-soft);
}

.newsletter-card input {
    margin: 16px 0 12px;
}

.newsletter-card .btn {
    width: 100%;
}

.insights-cta {
    position: relative;
    overflow: hidden;
    padding: 96px 0;
    text-align: center;
}

.insights-cta .container {
    position: relative;
    z-index: 2;
    max-width: 850px;
}

.insights-cta::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -20%;
    width: 900px;
    height: 900px;
    border-radius: 999px;
    background: rgba(13, 148, 136, .12);
    filter: blur(120px);
}

.insights-cta p {
    max-width: 760px;
    margin: 22px auto 34px;
    color: rgba(224, 227, 229, .82);
    font-size: 1rem;
}

/* Approach page */
.approach-hero::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    opacity: .1;
    background: var(--teal);
    clip-path: polygon(50% 0%, 72% 15%, 88% 38%, 80% 66%, 52% 82%, 25% 72%, 10% 45%, 20% 20%);
}

.approach-timeline-section {
    padding: 64px 0;
}

.approach-timeline {
    position: relative;
}

.approach-timeline::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: rgba(118, 119, 125, .25);
}

.timeline-item {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 48px 1fr;
    align-items: center;
    gap: 48px;
    margin-bottom: 96px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-item.left .timeline-copy {
    text-align: right;
}

.timeline-item.right .timeline-copy {
    grid-column: 3;
}

.timeline-item.right .timeline-image {
    grid-column: 1;
    grid-row: 1;
}

.timeline-copy span {
    color: var(--teal);
    font-family: "JetBrains Mono", monospace;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.timeline-copy h3 {
    margin: 10px 0 16px;
    font-size: clamp(1.8rem, 3vw, 3rem);
}

.timeline-copy p {
    color: var(--muted);
}

.timeline-dot {
    z-index: 2;
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border: 4px solid var(--bg);
    border-radius: 999px;
    color: #fff;
    background: var(--deep-navy);
    box-shadow: 0 12px 26px rgba(15, 23, 42, .16);
}

.timeline-item.right .timeline-dot {
    background: var(--teal);
}

.timeline-image {
    padding: 8px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 10px 28px rgba(15, 23, 42, .04);
}

.timeline-image img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: 10px;
}

.support-model {
    border-block: 1px solid var(--line);
    background: var(--bg-soft);
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.support-grid .glass-card > .material-symbols-outlined {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    margin-bottom: 24px;
}

.support-grid .teal { color: var(--teal); background: var(--teal-soft); }
.support-grid .navy-bg { color: #fff; background: var(--navy-2); }

.approach-cta-section {
    padding: 96px 0;
}

.approach-cta {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 36px;
    padding: clamp(44px, 6vw, 64px);
    border-radius: 28px;
    color: #fff;
    background:
        radial-gradient(circle at bottom right, rgba(13, 148, 136, .2), transparent 34%),
        radial-gradient(circle at top left, rgba(217, 119, 6, .16), transparent 30%),
        var(--deep-navy);
}

.approach-cta h2 {
    color: #fff;
    font-size: clamp(2rem, 3.4vw, 3rem);
}

.approach-cta p {
    max-width: 680px;
    color: rgba(224, 227, 229, .82);
}

/* Contact page */
.contact-page {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: 64px;
    align-items: start;
}

.contact-info {
    display: grid;
    gap: 48px;
}

.contact-helper-link {
    margin-top: 24px;
}

.contact-methods {
    display: grid;
    gap: 28px;
    padding-top: 32px;
    border-top: 1px solid var(--line);
}

.contact-methods article {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-methods article > .material-symbols-outlined {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    color: var(--teal);
    background: var(--bg-soft);
}

.contact-methods small {
    display: block;
    margin-bottom: 4px;
    color: var(--muted);
    font-family: "JetBrains Mono", monospace;
    font-size: .75rem;
    text-transform: uppercase;
}

.contact-methods a,
.contact-methods strong {
    display: block;
    color: var(--deep-navy);
    font-family: var(--font-heading);
    font-size: 1.08rem;
    font-weight: 700;
}

.contact-image {
    position: relative;
    height: 260px;
    overflow: hidden;
    border-radius: 22px;
    box-shadow: 0 10px 28px rgba(15, 23, 42, .06);
}

.contact-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(.2);
    transition: transform .6s ease;
}

.contact-image:hover img {
    transform: scale(1.04);
}

.contact-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, .4), transparent);
}

.contact-form-panel {
    padding: clamp(32px, 4vw, 48px);
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(255, 255, 255, .72);
    box-shadow: 0 10px 28px rgba(15, 23, 42, .04);
    backdrop-filter: blur(12px);
}

.contact-form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.contact-form .full {
    grid-column: 1 / -1;
}

.contact-submit {
    width: 100%;
    min-height: 50px;
    font-family: var(--font-heading);
    font-size: .98rem;
}

.response-note {
    margin: 14px 0 0;
    text-align: center;
    color: var(--muted);
    font-family: "JetBrains Mono", monospace;
    font-size: .75rem;
}

/* AI Consultation Helper */
.helper-hero {
    padding: 84px 0 56px;
    background:
        radial-gradient(circle at 8% 0%, rgba(13, 148, 136, .07), transparent 34%),
        radial-gradient(circle at 100% 70%, rgba(217, 119, 6, .05), transparent 32%),
        var(--bg);
}

.helper-hero-grid {
    display: grid;
    grid-template-columns: 1.25fr .75fr;
    gap: 48px;
    align-items: center;
}

.helper-hero h1 {
    max-width: 780px;
    margin: 18px 0 22px;
    font-size: clamp(2rem, 3.4vw, 3.1rem);
    font-weight: 700;
    line-height: 1.16;
}

.helper-hero p {
    max-width: 720px;
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.64;
}

.helper-hero-panel {
    padding: 32px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgba(255, 255, 255, .78);
    box-shadow: var(--shadow);
    backdrop-filter: blur(12px);
}

.helper-hero-panel > .material-symbols-outlined {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    margin-bottom: 24px;
    border-radius: 12px;
    color: var(--teal);
    background: var(--teal-soft);
}

.helper-hero-panel h2 {
    margin-bottom: 12px;
    font-size: 1.45rem;
}

.helper-hero-panel p,
.helper-hero-panel li {
    color: var(--muted);
}

.helper-hero-panel ul {
    display: grid;
    gap: 8px;
    margin: 20px 0 0;
    padding-left: 20px;
}

.helper-section {
    padding: 56px 0 96px;
}

.helper-shell {
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
    gap: 28px;
    align-items: start;
}

.helper-form,
.helper-result-card {
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgba(255, 255, 255, .82);
    box-shadow: 0 10px 28px rgba(15, 23, 42, .05);
}

.helper-form {
    position: sticky;
    top: 92px;
    padding: clamp(24px, 3vw, 36px);
}

.helper-form-head {
    margin-bottom: 24px;
}

.helper-form-head h2 {
    margin: 10px 0;
    font-size: clamp(1.8rem, 2.6vw, 2.35rem);
}

.helper-form-head p {
    margin: 0;
    color: var(--muted);
}

.helper-fields,
.helper-save-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.helper-fields label,
.helper-save label {
    display: grid;
    gap: 8px;
}

.helper-fields label > span,
.helper-save label > span {
    color: var(--muted);
    font-family: "JetBrains Mono", monospace;
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
}

.helper-full {
    grid-column: 1 / -1;
}

.helper-submit {
    width: 100%;
    margin-top: 24px;
    gap: 10px;
}

.helper-submit .material-symbols-outlined {
    font-size: 19px;
    font-variation-settings: "FILL" 0, "wght" 300, "GRAD" 0, "opsz" 20;
}

.helper-status {
    min-height: 20px;
    margin: 14px 0 0;
    color: var(--muted);
    font-family: "JetBrains Mono", monospace;
    font-size: .72rem;
    line-height: 1.5;
}

.helper-result-card {
    padding: clamp(24px, 3vw, 36px);
}

.helper-result-card h2 {
    margin: 10px 0 14px;
    font-size: clamp(1.8rem, 2.8vw, 2.6rem);
}

.helper-result-card p {
    color: var(--muted);
}

.helper-result-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin: 26px 0;
}

.helper-result-grid article {
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--bg-soft);
}

.helper-result-grid small {
    display: block;
    margin-bottom: 8px;
    color: var(--muted);
    font-family: "JetBrains Mono", monospace;
    font-size: .68rem;
    text-transform: uppercase;
}

.helper-result-grid strong {
    color: var(--deep-navy);
}

.helper-list-block,
.helper-focus,
.helper-save {
    margin-top: 26px;
    padding-top: 24px;
    border-top: 1px solid var(--line);
}

.helper-list-block h3,
.helper-focus h3 {
    margin-bottom: 12px;
    font-size: 1.15rem;
}

.helper-list-block ul,
.helper-list-block ol {
    display: grid;
    gap: 10px;
    margin: 0;
    padding-left: 20px;
    color: var(--muted);
}

.helper-save .btn {
    width: 100%;
    margin-top: 18px;
}

.helper-form.is-busy,
.helper-save.is-busy {
    opacity: .72;
}

/* Shared first-section heading tuning */
.hero h1,
.home-hero-copy h1,
.about-hero h1,
.services-hero-content h1,
.industry-hero h1,
.approach-hero h1,
.insights-intro h1,
.contact-info h1,
.helper-hero h1 {
    font-size: clamp(2.25rem, 4vw, 3.55rem);
    font-weight: 700;
    line-height: 1.16;
}

.admin-reset-shell {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 32px 16px;
}

.admin-card {
    width: min(100%, 460px);
}

.table-wrap {
    overflow-x: auto;
}

.table-wrap + .section-head {
    margin-top: 54px;
}

.client-auth-shell,
.account-hero {
    padding: 76px 0;
}

.client-auth-card {
    width: min(calc(100% - 32px), 1050px);
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 32px;
    margin-inline: auto;
    padding: 32px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(255, 255, 255, .78);
    box-shadow: var(--shadow);
}

.client-auth-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(16px, 4vw, 48px);
}

.client-auth-copy > * {
    width: min(100%, 540px);
    margin-left: auto;
}

.client-auth-copy h1,
.account-hero h1 {
    margin: 12px 0 18px;
    font-size: clamp(2.1rem, 4vw, 3.4rem);
}

.client-auth-copy p,
.account-hero p,
.client-auth-form p {
    color: var(--muted);
}

.client-auth-form {
    display: grid;
    gap: 14px;
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: #fff;
}

.auth-tabs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
    padding: 4px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: var(--bg-soft);
}

.auth-tabs a {
    min-height: 36px;
    display: grid;
    place-items: center;
    border-radius: 7px;
    color: var(--muted);
    font-size: .82rem;
    font-weight: 700;
}

.auth-tabs a.is-active {
    color: #fff;
    background: var(--deep-navy);
}

.client-auth-form .btn {
    margin-top: 8px;
}

.account-hero-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}

.account-library {
    align-items: stretch;
}

.admin-login-body {
    min-height: 100vh;
    background:
        radial-gradient(circle at 10% 0%, rgba(13, 148, 136, .08), transparent 34%),
        linear-gradient(135deg, #f8fafc 0%, #eef2f7 100%);
}

.admin-login-shell {
    min-height: 100vh;
    width: min(calc(100% - 32px), 1120px);
    display: grid;
    grid-template-columns: 1fr 430px;
    gap: 48px;
    align-items: center;
    margin-inline: auto;
}

.admin-login-copy h1 {
    max-width: 620px;
    margin: 18px 0;
    font-size: clamp(2.4rem, 5vw, 4.4rem);
}

.admin-login-copy p {
    max-width: 560px;
    color: var(--muted);
    font-size: 1.12rem;
}

.admin-login-mark {
    display: grid;
    place-items: center;
    width: 54px;
    height: 54px;
    margin-bottom: 28px;
    border-radius: 14px;
    color: #f7d7b9;
    background: #05070b;
    font-family: "Manrope", sans-serif;
    font-size: 2rem;
    font-weight: 800;
}

.admin-login-card {
    display: grid;
    gap: 14px;
    padding: 34px;
    border: 1px solid rgba(15, 23, 42, .1);
    border-radius: 18px;
    background: rgba(255, 255, 255, .9);
    box-shadow: 0 30px 80px rgba(15, 23, 42, .14);
}

.admin-login-card h2 {
    font-size: 2rem;
}

.admin-login-card p {
    margin: 0 0 8px;
    color: var(--muted);
}

.admin-login-card .btn {
    width: 100%;
    margin-top: 10px;
}

.admin-topbar {
    position: sticky;
    top: 0;
    z-index: 60;
    background: rgba(255, 255, 255, .9);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(16px);
}

.admin-body svg {
    display: block;
    flex: 0 0 auto;
    max-width: 100%;
    max-height: 100%;
    overflow: visible;
}

.admin-body svg path {
    fill: none !important;
    stroke: currentColor !important;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.admin-nav {
    min-height: 66px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.admin-brand {
    color: var(--deep-navy);
    font-family: "Manrope", sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
}

.admin-nav div {
    display: flex;
    gap: 16px;
    align-items: center;
}

.admin-nav a:not(.admin-brand) {
    color: var(--muted);
    font-weight: 600;
}

.admin-page {
    padding: 44px 0 80px;
}

.admin-stat-grid,
.admin-detail-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: 34px;
}

.admin-stat-grid article,
.admin-detail-grid article,
.admin-panel,
.admin-message-card {
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 10px 28px rgba(15, 23, 42, .04);
}

.admin-stat-grid small,
.admin-detail-grid small,
.admin-message-card small {
    display: block;
    margin-bottom: 8px;
    color: var(--muted);
    font-family: "JetBrains Mono", monospace;
    font-size: .7rem;
    text-transform: uppercase;
}

.admin-stat-grid strong {
    color: var(--deep-navy);
    font-family: "Manrope", sans-serif;
    font-size: 2rem;
}

.admin-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 18px;
}

.table-action {
    color: var(--teal);
    font-weight: 700;
}

.table-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.table-actions form {
    margin: 0;
}

.table-action {
    border: 0;
    padding: 0;
    background: transparent;
    font: inherit;
    cursor: pointer;
}

.table-action.danger {
    color: #b42318;
}

.admin-detail h1 {
    margin: 18px 0 24px;
}

.admin-detail-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.admin-message-card p {
    white-space: pre-wrap;
}

.admin-resource-grid {
    display: grid;
    grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
    gap: 24px;
}

.admin-panel h1 {
    margin: 10px 0 22px;
}

.admin-subhead {
    padding-top: 28px;
    border-top: 1px solid var(--line);
}

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

.admin-form-grid label {
    display: grid;
    gap: 8px;
}

.admin-form-grid .full,
.admin-form-grid .check-row {
    grid-column: 1 / -1;
}

.admin-form-grid .check-row {
    display: flex;
    align-items: center;
}

.admin-upload-form {
    display: grid;
    grid-template-columns: 1fr;
}

.admin-upload-form fieldset {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin: 0;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: #fbfcfd;
}

.admin-upload-form legend {
    padding: 0 8px;
    color: var(--deep-navy);
    font-size: .8rem;
    font-weight: 800;
}

.admin-upload-form .full {
    grid-column: 1 / -1;
}

.upload-dropzone {
    padding: 18px;
    border: 1px dashed rgba(13, 148, 136, .45);
    border-radius: 10px;
    background: rgba(13, 148, 136, .06);
}

.upload-dropzone span,
.admin-upload-form small {
    display: block;
}

.admin-upload-form small {
    margin-top: 8px;
    color: var(--muted);
    font-size: .78rem;
    font-weight: 500;
}

.admin-form-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
}

table {
    width: 100%;
    border-collapse: collapse;
}

th,
td {
    padding: 12px 14px;
    border-bottom: 1px solid var(--line);
    text-align: left;
    vertical-align: top;
}

.admin-body {
    min-height: 100vh;
    background: #f4f6f8;
}

.admin-shell {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 264px minmax(0, 1fr);
}

.admin-sidebar {
    position: sticky;
    top: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    gap: 22px;
    padding: 24px 16px;
    border-right: 1px solid rgba(15, 23, 42, .08);
    background: #ffffff;
}

.admin-sidebar .admin-brand {
    min-height: 48px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 6px 8px;
    color: var(--deep-navy);
    font-family: var(--font-heading);
    font-size: .98rem;
    font-weight: 700;
}

.admin-sidebar .admin-brand span {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    color: #fff;
    background: var(--deep-navy);
}

.admin-side-nav {
    display: grid;
    gap: 6px;
}

.admin-side-nav a,
.admin-logout {
    min-height: 42px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 8px;
    color: var(--muted);
    font-size: .88rem;
    font-weight: 700;
}

.admin-side-nav a:hover,
.admin-side-nav a.is-active {
    color: var(--deep-navy);
    background: rgba(13, 148, 136, .1);
}

.admin-side-nav svg,
.admin-logout svg {
    width: 16px;
    height: 16px;
    flex: 0 0 auto;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.admin-logout {
    margin-top: auto;
    color: #9f1239;
    background: rgba(159, 18, 57, .06);
}

.admin-page {
    width: min(100%, 1240px);
    padding: 36px clamp(24px, 4vw, 48px) 72px;
}

.admin-page-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 28px;
}

.admin-page-head h1 {
    margin: 10px 0 8px;
    font-size: clamp(1.75rem, 2.7vw, 2.55rem);
}

.admin-page-head p,
.admin-section-head p {
    max-width: 720px;
    margin: 0;
    color: var(--muted);
}

.admin-stat-grid {
    gap: 18px;
    margin-bottom: 28px;
}

.admin-stat-grid article {
    min-height: 128px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 22px;
    border-radius: 10px;
    box-shadow: none;
}

.admin-stat-grid strong {
    font-family: var(--font-heading);
    font-size: 2rem;
    line-height: 1;
}

.admin-stat-grid span {
    color: var(--muted);
    font-size: .84rem;
}

.admin-panel,
.admin-message-card {
    border-radius: 10px;
    box-shadow: none;
}

.admin-panel + .admin-panel {
    margin-top: 24px;
}

.admin-section-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 22px;
}

.admin-section-head h2,
.admin-panel h2,
.admin-subhead {
    margin: 8px 0;
    color: var(--deep-navy);
    font-size: 1.35rem;
    line-height: 1.2;
}

.admin-actions {
    margin: 0;
    justify-content: flex-end;
}

.table-wrap {
    width: 100%;
    overflow-x: auto;
}

th {
    color: var(--muted);
    background: #f8fafc;
    font-family: var(--font-label);
    font-size: .68rem;
    font-weight: 700;
    text-transform: uppercase;
}

td {
    color: var(--text);
    font-size: .9rem;
    line-height: 1.5;
}

td small {
    color: var(--muted);
}

.admin-form-grid {
    gap: 18px;
}

.admin-form-grid label {
    color: var(--deep-navy);
    font-size: .86rem;
    font-weight: 700;
}

.admin-form-grid input,
.admin-form-grid select,
.admin-form-grid textarea {
    margin-top: 8px;
    background: #fbfcfd;
}

.admin-detail {
    display: grid;
    gap: 22px;
}

.admin-detail-grid {
    grid-template-columns: repeat(5, minmax(180px, 1fr));
}

.admin-detail-grid article {
    min-height: 104px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.admin-message-card p {
    margin: 10px 0 0;
    color: var(--text);
    line-height: 1.7;
}

.admin-resource-grid {
    grid-template-columns: minmax(360px, .72fr) minmax(0, 1.28fr);
    gap: 24px;
    align-items: start;
}

/* Admin app polish */
.admin-body {
    background: #f5f6f8;
    color: #111827;
}

.admin-shell {
    min-height: 100vh;
    display: block;
}

.admin-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 50;
    width: 280px;
    min-height: 100vh;
    height: 100vh;
    padding: 28px 20px;
    border-right: 1px solid #e6e8ee;
    background: #fff;
    overflow-y: auto;
}

.admin-sidebar .admin-brand {
    width: 76px;
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    padding: 0;
    border-radius: 14px;
    overflow: hidden;
    background: #000;
}

.admin-sidebar .admin-brand img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(2.35);
}

.admin-side-nav {
    gap: 10px;
}

.admin-side-nav a,
.admin-logout {
    min-height: 48px;
    padding: 12px 14px;
    border-radius: 10px;
    color: #4b5563;
    font-size: .86rem;
}

.admin-side-nav a:hover,
.admin-side-nav a.is-active {
    color: var(--deep-navy);
    background: rgba(13, 148, 136, .1);
}

.admin-logout {
    color: #9f1239;
}

.admin-page {
    width: calc(100% - 280px);
    max-width: none;
    min-height: 100vh;
    margin-left: 280px;
    padding: 0;
    overflow-x: hidden;
}

.admin-topbar {
    position: sticky;
    top: 0;
    z-index: 40;
    min-height: 76px;
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 18px 32px;
    border-bottom: 1px solid #e6e8ee;
    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(16px);
}

.admin-menu-button {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    gap: 4px;
    border: 1px solid #e4e7ec;
    border-radius: 10px;
    background: #fff;
}

.admin-menu-button span {
    width: 16px;
    height: 2px;
    border-radius: 999px;
    background: #667085;
}

.admin-search {
    width: min(100%, 520px);
    max-width: 520px;
    min-height: 42px;
    max-height: 42px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 14px;
    border: 1px solid #e4e7ec;
    border-radius: 10px;
    background: #fff;
    overflow: hidden;
    color: #667085;
}

.admin-search svg {
    width: 17px !important;
    height: 17px !important;
    min-width: 17px;
    min-height: 17px;
    color: #667085;
    fill: none !important;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.admin-search input {
    flex: 1 1 auto;
    width: 100%;
    min-width: 0;
    min-height: 38px;
    padding: 0;
    border: 0;
    background: transparent;
    font-size: .9rem;
}

.admin-user-chip {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: auto;
    color: var(--deep-navy);
    font-size: .9rem;
}

.admin-user-chip span {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    color: #fff;
    background: var(--teal);
    font-weight: 800;
}

.admin-page-head {
    align-items: center;
    padding: 42px 32px 24px;
    margin: 0;
}

.admin-page-head h1 {
    margin: 12px 0 8px;
    font-size: clamp(1.8rem, 2.7vw, 2.55rem);
    line-height: 1;
}

.admin-page-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px;
}

.admin-page > .notice,
.admin-page > .admin-panel,
.admin-page > .admin-overview-card,
.admin-dashboard-grid,
.admin-page > .admin-detail {
    width: calc(100% - 64px);
    margin-inline: 32px;
}

.admin-overview-card,
.admin-panel,
.admin-message-card,
.admin-detail-grid article {
    border: 1px solid #e4e7ec;
    border-radius: 14px;
    background: #fff;
    box-shadow: none;
}

.admin-overview-card {
    padding: 24px;
    margin-bottom: 24px;
}

.admin-metric-strip {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    overflow: hidden;
    border: 1px solid #e4e7ec;
    border-radius: 14px;
}

.admin-metric-strip article {
    min-height: 118px;
    display: grid;
    align-content: center;
    gap: 8px;
    padding: 24px;
    border-right: 1px solid #e4e7ec;
}

.admin-metric-strip article:last-child {
    border-right: 0;
}

.admin-metric-strip small,
.admin-stat-grid small,
.admin-detail-grid small,
.admin-message-card small {
    color: #667085;
    font-family: var(--font-body);
    font-size: .84rem;
    font-weight: 600;
    text-transform: none;
}

.admin-metric-strip strong {
    color: var(--deep-navy);
    font-size: clamp(1.55rem, 2.6vw, 2.1rem);
    line-height: 1;
}

.admin-metric-strip span {
    color: #667085;
    font-size: .84rem;
}

.admin-dashboard-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.admin-panel {
    padding: 24px;
}

.admin-panel + .admin-panel {
    margin-top: 24px;
}

.admin-section-head {
    align-items: center;
}

.admin-section-head h2,
.admin-panel h2,
.admin-subhead {
    font-size: 1.2rem;
}

th {
    padding: 16px 18px;
    color: #4b5563;
    background: #f8fafc;
    font-family: var(--font-body);
    font-size: .78rem;
    letter-spacing: .02em;
}

td {
    padding: 18px;
    border-bottom-color: #e8eaef;
    font-size: .93rem;
}

tbody tr:last-child td {
    border-bottom: 0;
}

.table-action {
    color: var(--teal);
    font-size: .88rem;
    font-weight: 800;
}

.table-action.danger {
    color: #b42318;
}

/* Admin production typography */
.admin-body {
    color: #1f2937;
    font-size: 14px;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

.admin-body h1,
.admin-body h2,
.admin-body h3,
.admin-body h4,
.admin-body strong,
.admin-body label,
.admin-body button,
.admin-body .btn,
.admin-body .table-action {
    letter-spacing: 0;
}

.admin-page-head h1 {
    color: #0f172a;
    font-size: clamp(1.55rem, 2vw, 2.05rem);
    font-weight: 650;
    line-height: 1.08;
}

.admin-page-head p,
.admin-section-head p,
.admin-metric-strip span,
td small,
.admin-form-grid small,
.admin-upload-form small {
    color: #64748b;
    font-size: .84rem;
    font-weight: 400;
}

.admin-sidebar .admin-brand {
    margin-bottom: 24px;
}

.admin-side-nav a,
.admin-logout {
    min-height: 40px;
    padding: 9px 11px;
    border-radius: 8px;
    color: #475569;
    font-size: .82rem;
    font-weight: 500;
}

.admin-side-nav svg,
.admin-logout svg {
    width: 15px;
    height: 15px;
    stroke-width: 1.7;
}

.admin-side-nav a:hover,
.admin-side-nav a.is-active {
    color: #0f172a;
    background: #edf7f6;
}

.admin-page > .notice,
.admin-page > .admin-panel,
.admin-page > .admin-overview-card,
.admin-dashboard-grid,
.admin-page > .admin-detail {
    width: min(calc(100% - 64px), 1320px);
}

.admin-overview-card,
.admin-panel,
.admin-message-card,
.admin-detail-grid article,
.report-card {
    border-color: #e5e7eb;
    border-radius: 12px;
}

.admin-overview-card,
.admin-panel {
    padding: 22px;
}

.admin-section-head {
    margin-bottom: 18px;
}

.admin-section-head h2,
.admin-panel h2,
.admin-subhead {
    color: #111827;
    font-size: 1.04rem;
    font-weight: 600;
    line-height: 1.25;
}

.admin-metric-strip article {
    min-height: 104px;
    gap: 7px;
    padding: 20px 22px;
}

.admin-metric-strip small,
.admin-stat-grid small,
.admin-detail-grid small,
.admin-message-card small {
    color: #64748b;
    font-size: .78rem;
    font-weight: 500;
}

.admin-metric-strip strong,
.admin-stat-grid strong {
    color: #0f172a;
    font-size: clamp(1.35rem, 2vw, 1.75rem);
    font-weight: 600;
    letter-spacing: -.01em;
}

th {
    padding: 12px 16px;
    color: #64748b;
    background: #f8fafc;
    font-size: .7rem;
    font-weight: 600;
    letter-spacing: .04em;
}

td {
    padding: 14px 16px;
    color: #334155;
    font-size: .86rem;
    font-weight: 400;
    line-height: 1.5;
}

td a {
    color: #0f172a;
    font-weight: 500;
}

.table-action {
    color: #0f766e;
    font-size: .8rem;
    font-weight: 600;
}

.admin-body .btn,
.admin-page-actions .btn {
    min-height: 38px;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: .82rem;
    font-weight: 600;
}

.admin-form-grid label {
    color: #1f2937;
    font-size: .82rem;
    font-weight: 500;
}

.admin-form-grid input,
.admin-form-grid select,
.admin-form-grid textarea {
    color: #111827;
    font-size: .88rem;
    font-weight: 400;
}

.admin-form-grid input::placeholder,
.admin-form-grid textarea::placeholder {
    color: #94a3b8;
    font-weight: 400;
}

.report-card strong {
    font-size: clamp(1.45rem, 2.35vw, 1.85rem);
    font-weight: 600;
}

.report-card small,
.trend {
    font-weight: 600;
}

.admin-form-panel {
    max-width: 760px;
}

.admin-upload-form fieldset {
    padding: 22px;
    border-color: #e4e7ec;
    background: #fff;
}

.admin-form-grid input,
.admin-form-grid select,
.admin-form-grid textarea {
    min-height: 48px;
    border-color: #d7dbe3;
    border-radius: 10px;
    background: #fbfcfd;
}

.admin-form-grid input[type="checkbox"],
.admin-form-grid input[type="radio"] {
    width: 18px;
    min-width: 18px;
    height: 18px;
    min-height: 18px;
    margin: 0;
    accent-color: var(--teal);
}

.admin-form-grid input[type="file"] {
    min-height: auto;
    padding: 12px;
    font-size: .9rem;
}

.admin-form-grid .check-row {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.admin-form-actions {
    justify-content: flex-start;
}

.report-grid {
    width: calc(100% - 64px);
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin: 0 32px 24px;
}

.report-card {
    display: grid;
    gap: 10px;
    padding: 22px;
    border: 1px solid #e4e7ec;
    border-radius: 14px;
    background: #fff;
}

.report-card small {
    color: #667085;
    font-weight: 700;
}

.report-card strong {
    color: var(--deep-navy);
    font-size: clamp(1.7rem, 3vw, 2.25rem);
    line-height: 1;
}

.trend {
    width: fit-content;
    padding: 5px 9px;
    border-radius: 999px;
    font-size: .78rem;
    font-weight: 800;
}

.trend.up {
    color: #027a48;
    background: #dcfae6;
}

.trend.down {
    color: #b42318;
    background: #fee4e2;
}

.trend.neutral {
    color: #475467;
    background: #f2f4f7;
}

.reports-tables {
    align-items: start;
}

@media (max-width: 1120px) {
    .grid-4 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .grid-3,
    .feature-band,
    .split,
    .home-hero-grid,
    .intro-grid,
    .why-grid,
    .about-hero-grid,
    .mission-grid,
    .about-goals-grid,
    .deliverables-grid,
    .industry-consulting-grid,
    .featured-grid,
    .helper-hero-grid,
    .helper-shell,
    .contact-grid {
        grid-template-columns: 1fr;
    }

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

    .about-bento-grid,
    .values-grid,
    .services-grid,
    .scale-grid,
    .support-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .industry-bento,
    .insights-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .industry-image-card,
    .industry-use-card,
    .industry-small-card,
    .case-study-wide {
        grid-column: span 2;
    }

    .approach-timeline::before {
        left: 24px;
    }

    .timeline-item,
    .timeline-item.right {
        grid-template-columns: 48px 1fr;
        gap: 24px;
    }

    .timeline-item .timeline-dot,
    .timeline-item.right .timeline-dot {
        grid-column: 1;
        grid-row: 1;
    }

    .timeline-item .timeline-copy,
    .timeline-item.left .timeline-copy,
    .timeline-item.right .timeline-copy {
        grid-column: 2;
        text-align: left;
    }

    .timeline-image,
    .timeline-item.right .timeline-image {
        grid-column: 2;
        grid-row: 2;
    }

    .efficiency-badge {
        left: 24px;
        bottom: 24px;
    }

    .about-bento-wide {
        grid-column: span 1;
    }

    .about-bento-teal {
        grid-template-columns: 1fr;
    }

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

    .admin-shell {
        display: block;
    }

    .admin-resource-grid,
    .admin-detail-grid {
        grid-template-columns: 1fr;
    }

    .admin-metric-strip,
    .admin-dashboard-grid,
    .report-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .site-header .nav-auth-btn {
        padding-inline: 10px;
    }
}

@media (max-width: 820px) {
    .container {
        width: min(calc(100% - 24px), var(--container));
    }

    .nav {
        min-height: 66px;
        gap: 12px;
    }

    .brand {
        margin-right: auto;
    }

    .nav-auth,
    .nav-login {
        order: 2;
    }

    .nav-toggle {
        order: 3;
        display: inline-flex;
        flex: 0 0 auto;
        margin-left: 0;
    }

    .nav-menu {
        position: absolute;
        top: calc(100% + 8px);
        left: 0;
        right: 0;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 8px;
        background: rgba(8, 12, 24, .98);
        border: 1px solid var(--line);
        border-radius: 12px;
        box-shadow: var(--shadow);
    }

    .nav-menu.is-open {
        display: flex;
    }

    .nav-link {
        padding: 12px 14px;
        border: 0;
        border-radius: 8px;
    }

    .nav-link.is-active {
        background: rgba(135, 251, 232, .1);
    }

    .site-header .nav-auth {
        gap: 6px;
        margin-left: 0;
    }

    .site-header .nav-auth-btn,
    .nav-login {
        min-width: 46px;
        min-height: 30px;
        padding: 7px 9px;
        font-size: .68rem;
    }

    .hero {
        padding: 52px 0 60px;
    }

    .hero h1 {
        font-size: clamp(2.05rem, 9.5vw, 2.8rem);
        line-height: 1.12;
    }

    .hero p,
    .home-hero-copy p,
    .about-hero p,
    .services-hero-content p,
    .industry-hero p,
    .approach-hero p,
    .insights-intro p,
    .helper-hero p,
    .contact-info p {
        font-size: 1rem;
        line-height: 1.65;
    }

    .hero-actions,
    .center-actions {
        width: 100%;
        align-items: stretch;
    }

    .hero-actions .btn,
    .center-actions .btn {
        width: 100%;
    }

    .section {
        padding: 54px 0;
    }

    .grid-2,
    .grid-4,
    .footer-grid,
    .form-grid,
    .stat-grid,
    .bento-grid,
    .stat-card-grid,
    .industry-strip,
    .about-bento-grid,
    .values-grid,
    .services-grid,
    .scale-grid,
    .support-grid,
    .industry-bento,
    .insights-grid,
    .contact-form {
        grid-template-columns: 1fr;
    }

    .helper-hero {
        padding: 54px 0 34px;
    }

    .helper-hero h1 {
        font-size: clamp(2.05rem, 9.5vw, 2.85rem);
        line-height: 1.12;
    }

    .helper-hero-panel,
    .helper-form,
    .helper-result-card {
        padding: 24px;
    }

    .helper-section {
        padding: 36px 0 64px;
    }

    .helper-form {
        position: static;
    }

    .helper-fields,
    .helper-save-grid,
    .helper-result-grid,
    .resource-library,
    .client-auth-card,
    .admin-login-shell,
    .admin-stat-grid,
    .admin-resource-grid,
    .admin-form-grid {
        grid-template-columns: 1fr;
    }

    .client-auth-copy > * {
        margin-left: 0;
    }

    .admin-shell {
        display: block;
    }

    .admin-sidebar {
        position: static;
        width: auto;
        height: auto;
        min-height: auto;
        flex-direction: row;
        align-items: center;
        flex-wrap: wrap;
        gap: 10px;
        padding: 12px;
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .admin-side-nav {
        display: flex;
        flex: 1 1 auto;
        gap: 6px;
        overflow-x: auto;
    }

    .admin-side-nav a,
    .admin-logout {
        flex: 0 0 auto;
    }

    .admin-logout {
        margin-top: 0;
    }

    .admin-page {
        width: 100%;
        margin-left: 0;
        padding: 24px 16px 56px;
    }

    .admin-topbar {
        padding: 12px 16px;
        flex-wrap: wrap;
    }

    .admin-search {
        order: 3;
        width: 100%;
    }

    .admin-user-chip strong {
        display: none;
    }

    .admin-page > .notice,
    .admin-page > .admin-panel,
    .admin-page > .admin-overview-card,
    .admin-dashboard-grid,
    .report-grid,
    .admin-page > .admin-detail {
        width: calc(100% - 32px);
        margin-inline: 16px;
    }

    .admin-metric-strip,
    .admin-dashboard-grid,
    .report-grid {
        grid-template-columns: 1fr;
    }

    .admin-metric-strip article {
        border-right: 0;
        border-bottom: 1px solid #e4e7ec;
    }

    .admin-metric-strip article:last-child {
        border-bottom: 0;
    }

    .admin-page-head,
    .admin-section-head {
        align-items: flex-start;
        flex-direction: column;
    }

    .admin-upload-form fieldset {
        grid-template-columns: 1fr;
    }

    .admin-form-actions {
        justify-content: flex-start;
        flex-wrap: wrap;
    }

    .client-auth-shell,
    .account-hero {
        padding: 54px 0;
    }

    .client-auth-card,
    .admin-login-card {
        padding: 24px;
    }

    .account-hero-grid,
    .admin-nav {
        align-items: flex-start;
        flex-direction: column;
    }

    .admin-login-shell {
        align-content: center;
        gap: 24px;
        padding: 28px 0;
    }

    .admin-login-copy h1 {
        font-size: clamp(2rem, 9.5vw, 3rem);
    }

    .admin-nav div {
        flex-wrap: wrap;
    }

    .industry-image-card,
    .industry-use-card,
    .industry-small-card,
    .case-study-wide {
        grid-column: span 1;
    }

    .industry-image-card {
        min-height: 340px;
    }

    .mini-grid,
    .case-study-wide,
    .contact-form {
        grid-template-columns: 1fr;
    }

    .featured-primary {
        min-height: 430px;
    }

    .featured-primary > div {
        left: 24px;
        right: 24px;
        bottom: 24px;
    }

    .resource-nav {
        top: 66px;
    }

    .approach-timeline::before {
        display: none;
    }

    .timeline-item,
    .timeline-item.right {
        grid-template-columns: 1fr;
        margin-bottom: 56px;
    }

    .timeline-dot,
    .timeline-item .timeline-dot,
    .timeline-item.right .timeline-dot,
    .timeline-copy,
    .timeline-item.left .timeline-copy,
    .timeline-item.right .timeline-copy,
    .timeline-image,
    .timeline-item.right .timeline-image {
        grid-column: auto;
        grid-row: auto;
    }

    .timeline-item.left .timeline-copy,
    .timeline-item.right .timeline-copy {
        text-align: left;
    }

    .timeline-image {
        display: none;
    }

    .approach-cta {
        flex-direction: column;
        align-items: flex-start;
    }

    .contact-form .full {
        grid-column: auto;
    }

    .contact-page {
        padding: 56px 0;
    }

    .home-hero {
        padding: 54px 0 64px;
    }

    .home-hero-grid,
    .intro-grid,
    .why-grid,
    .about-hero-grid,
    .mission-grid,
    .about-goals-grid {
        gap: 38px;
    }

    .home-hero-copy h1,
    .industry-hero h1,
    .approach-hero h1,
    .insights-intro h1,
    .helper-hero h1,
    .contact-info h1 {
        font-size: clamp(2.05rem, 9.5vw, 2.85rem);
        line-height: 1.12;
    }

    .image-frame img {
        min-height: 280px;
    }

    .metric-card.is-offset {
        margin-top: 0;
    }

    .section-row-head,
    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }

    .home-cta {
        padding: 42px 20px;
        border-radius: 18px;
    }

    .about-hero {
        padding: 54px 0;
    }

    .about-hero h1,
    .about-goals h2 {
        font-size: clamp(2.05rem, 9.5vw, 2.8rem);
        line-height: 1.14;
    }

    .about-hero-media img {
        height: 330px;
    }

    .about-bento-card,
    .about-cta-card {
        padding: 28px;
    }

    .industry-hero,
    .approach-hero,
    .insights-hero,
    .contact-page {
        padding: 54px 0;
    }

    .industry-image-card,
    .featured-primary {
        min-height: 360px;
    }

    .industry-image-card > div {
        padding: 24px;
    }

    .industry-tags,
    .meta-row {
        flex-wrap: wrap;
    }

    .featured-primary h2 {
        font-size: clamp(1.55rem, 7vw, 2.15rem);
        line-height: 1.14;
    }

    .featured-primary > div {
        left: 20px;
        right: 20px;
        bottom: 20px;
    }

    .featured-secondary article,
    .whitepaper-card > div:last-child,
    .insight-mini,
    .newsletter-card,
    .case-study-wide {
        padding: 24px;
    }

    .resource-nav .container {
        gap: 18px;
        padding-bottom: 2px;
    }

    .resource-nav button {
        font-size: .68rem;
    }

    .services-hero {
        padding: 54px 0;
    }

    .services-hero-content h1 {
        font-size: clamp(2.05rem, 9.5vw, 2.85rem);
        line-height: 1.12;
    }

    .services-hero-graphic {
        display: none;
    }

    .service-detail-card {
        min-height: auto;
    }

    .deliverable-report,
    .deliverable-roadmap {
        min-height: 310px;
    }

    .service-card,
    .service-card.compact-card {
        min-height: auto;
    }

    .chatbot-widget {
        right: 16px;
        bottom: 16px;
    }

    .chatbot-toggle {
        min-height: 44px;
        padding-inline: 15px;
    }

    .chatbot-panel {
        bottom: 58px;
        width: calc(100vw - 32px);
    }

    .chatbot-messages {
        height: min(58vh, 390px);
    }
}

@media (max-width: 1120px) {
    .glass-card,
    .glass-card:nth-child(1),
    .glass-card:nth-child(2) {
        grid-column: auto;
    }

    .why-grid > div:first-child {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 820px) {
    .home-hero {
        padding-top: 56px;
    }

    .home-hero-media {
        width: 100%;
    }

    .console-main,
    .console-service-row,
    .why-list {
        grid-template-columns: 1fr;
    }

    .console-window {
        min-height: auto;
    }

    .console-service-row span {
        min-height: 58px;
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, .1);
    }

    .console-service-row span:last-child {
        border-bottom: 0;
    }

    .home-hero-copy h1 {
        font-size: clamp(2.35rem, 12vw, 3.6rem);
    }

    .stat-card-grid {
        grid-template-columns: 1fr;
    }
}
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .12);
    background: rgba(5, 7, 17, .55);
