/* MeeruAI — handwritten CSS port */
/* Inter font is loaded via <link rel="preconnect"> + <link rel="stylesheet"> in <head> for faster, non-blocking font delivery. */

:root {
    --bg: #FDFDFD;
    --fg: #221c19;
    --muted: #5e544e;
    --muted-2: #8a7e76;
    --card: #ffffff;
    --secondary: #f4f5f7;
    --border: rgba(34, 28, 25, 0.10);
    --border-strong: rgba(34, 28, 25, 0.18);
    --accent: #f86e42;
    /* coral */
    --accent-soft: #CC2A1B;
    --accent-2: #F1944F;
    --rec: #d92d2d;
    --ink: #1a1614;
    --shadow-lg: 0 30px 60px -25px rgba(34, 28, 25, 0.18);
    --shadow-sm: 0 6px 24px -10px rgba(34, 28, 25, 0.12);
    --radius: 14px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', system-ui, sans-serif;
    background: var(--bg);
    color: var(--fg);
    -webkit-font-smoothing: antialiased;
    line-height: 1.5;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

a:focus {
    outline: none;
}

p {
    margin-bottom: 16px;
}

p:last-child {
    margin-bottom: 0;
}

img {
    display: block;
    max-width: 100%;
}

button {
    font: inherit;
    cursor: pointer;
    border: 0;
    background: transparent;
    color: inherit;
}

ul,
ol {
    margin: 0;
    list-style: none;
    padding: 0;
}

.container,
.container-sm,
.container-exsm,
.container.narrow {
    margin: 0 auto;
    padding: 0;
}

.container {
    max-width: 1280px;
}

.container-sm {
    max-width: 1152px;
}

.container-exsm {
    max-width: 1104px;
}

.container.narrow {
    max-width: 1180px;
}

.page-template-acf-fields-page .site-content .ast-container {
    max-width: 100%;
    padding: 0;
    display: block;
}

.animate-fade-in-up {
    animation: .7s ease-out both fade-in-up;
}

.animate-fade-in-up.delay-1 {
    animation-delay: 0.1s;
}

.animate-fade-in-up.delay-2 {
    animation-delay: 0.2s;
}

.animate-fade-in-up.delay-3 {
    animation-delay: 0.3s;
}

.animate-fade-in-up.delay-4 {
    animation-delay: 0.4s;
}

.animate-fade-in-up.delay-5 {
    animation-delay: 0.5s;
}

.animate-fade-in-up.delay-6 {
    animation-delay: 0.6s;
}

.animate-fade-in-up.delay-8 {
    animation-delay: 0.8s;
}

.animate-fade-in-up.delay-9 {
    animation-delay: 0.9s;
}

@keyframes fade-in-up {
    0% {
        opacity: 0;
        transform: translateY(12px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============== HEADER ============== */
.site-header {
    background: rgba(253, 253, 252, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}

body .ast-main-header-wrap .ast-primary-header .site-primary-header-wrap {
    min-height: 64px;
}

body .ast-main-header-wrap .ast-primary-header .site-primary-header-wrap .site-branding .ast-site-title-wrap .site-title a {
    color: var(--foreground);
    font-size: 16px;
}

body .ast-main-header-wrap .ast-primary-header .site-primary-header-wrap .main-navigation>ul.main-header-menu {
    display: flex;
    gap: 60px;
}

body .ast-main-header-wrap .ast-primary-header .site-primary-header-wrap .main-navigation>ul.main-header-menu li a {
    color: var(--muted);
    font-size: 15px;
    font-weight: 400;
    line-height: 1.5;
    padding: 21px 0;
}

body .ast-main-header-wrap .ast-primary-header .site-primary-header-wrap .main-navigation>ul.main-header-menu li a:hover {
    color: var(--accent)
}

body .ast-main-header-wrap .ast-primary-header .site-primary-header-wrap .main-navigation ul li.menu-item-has-children a .dropdown-menu-toggle .ast-icon svg {
    width: 12px;
    margin-left: 7px;
}

body .ast-main-header-wrap .ast-primary-header .site-primary-header-wrap .main-navigation ul li.menu-item-has-children ul.sub-menu {
    padding: 8px 18px;
    width: 210px;
}

body .ast-main-header-wrap .ast-primary-header .site-primary-header-wrap .main-navigation ul li.menu-item-has-children ul.sub-menu li a {
    padding: 8px 0;
}

.header-cta,
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    font-weight: 600;
    transition: .2s ease
}

.header-cta {
padding: 7px 20px;
  background: var(--accent);
  color: #fff !important;
  font-size: 14px;
  font-weight: 400;
}

.header-cta span{
    font-size: 18px;
  margin-left: 3px;
}

.header-cta:hover,
.button:hover {
    transform: scale(105%);
    filter: saturate(1.08);
    color: #fff;
    opacity: .9;
}

body .ast-main-header-wrap .ast-primary-header .site-primary-header-wrap .site-branding .ast-site-title-wrap .site-title a {
    color: var(--foreground);
    font-size: 16px;
    font-weight: 400;
}

@media (min-width: 1024px) {
    .site-header nav {
        display: flex;
    }
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 999px;
    font-weight: 400;
    font-size: 16px;
    transition: all .25s ease;
}

.btn-primary {
    background: #f86e42;
    color: #fff !important;
}

.btn-primary:hover {
    box-shadow: 0 12px 30px -10px rgba(226, 86, 42, 0.5);
}

.btn-primary .arrow,
.btn-outline .arrow {
    transition: transform .3s;
}

.btn-primary:hover .arrow,
.btn-outline:hover .arrow {
    transform: translateX(4px);
}

.btn-outline {
    border: 1.5px solid var(--border-strong);
    color: var(--fg);
    background: transparent;
}

.btn-outline:hover {
    border-color: #f86e42;
    color: #f86e42;
}

.btn-sm {
    padding: 8px 18px;
    font-size: 13px;
}

/* ============== HERO ============== */
.hero {
    position: relative;
    display: flex;
    align-items: center;
    background: var(--bg);
    overflow: hidden;
}

.hero-grid {
    /* display: grid;
    grid-template-columns: 1fr;
    gap: 20px; */
    max-width: 1120px;
    margin: 0 auto;
    padding: 0;
    align-items: center;
}

/* @media (min-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0;
    }
} */

.eyebrow {
    color: #f86e42;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.eyebrow-sm {
    font-size: 11px;
    letter-spacing: 0.15em;
}

.hero h1 {
    font-size: 48px;
    line-height: 1.1;
    letter-spacing: -0.02em;
    font-weight: 400;
}

.hero .sub {
    font-size: 30px;
    font-weight: 400;
    line-height: 1.38;
    color: rgba(34, 28, 25, 0.65);
}

.hero .accent-line {
    width: 64px;
    height: 2px;
    background: #f86e42;
}

.hero .body {
    color: #4a403c;
    font-size: 18px;
    line-height: 1.625;
    max-width: 520px;
    margin-bottom: 28px;
}

.hero .ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

/* Video frame */
.video-frame {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid var(--border);
    background: #000;
    box-shadow: var(--shadow-lg);
    cursor: pointer;
}

.video-frame img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .7s ease;
}

.video-frame:hover img {
    transform: scale(1.04);
}

.video-frame::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, .55), rgba(0, 0, 0, .15) 40%, rgba(0, 0, 0, .3));
}

.play-btn {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.play-btn .ring {
    position: relative;
    width: 88px;
    height: 88px;
    border-radius: 50%;
    background: rgba(226, 86, 42, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-btn .ring::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: rgba(226, 86, 42, 0.3);
    animation: ping 2s cubic-bezier(0, 0, .2, 1) infinite;
}

.play-btn .core {
    position: relative;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #f86e42;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: 0 10px 30px rgba(226, 86, 42, .5);
}

.play-btn .core svg {
    width: 22px;
    height: 22px;
    margin-left: 3px;
}

/* Video frame overlay text */
.video-frame .scrim {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(to top, rgba(0, 0, 0, .6) 0%, rgba(0, 0, 0, .2) 45%, rgba(0, 0, 0, .3) 100%);
    transition: opacity .5s;
}

.video-frame:hover .scrim {
    background: linear-gradient(to top, rgba(0, 0, 0, .7) 0%, rgba(0, 0, 0, .2) 45%, rgba(0, 0, 0, .3) 100%);
}

.video-frame::after {
    display: none;
}

.video-frame .vf-title {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 22px 24px;
    z-index: 3;
    display: flex;
    flex-direction: column;
    gap: 4px;
    text-align: left;
    pointer-events: none;
}

.video-frame .vf-eyebrow {
    color: rgba(255, 255, 255, .8);
    font-size: 11px;
    letter-spacing: .18em;
    text-transform: uppercase;
    font-weight: 600;
}

.video-frame .vf-name {
    color: #fff;
    font-size: 17px;
    font-weight: 600;
    line-height: 1.3;
}

.video-frame .vf-live {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(0, 0, 0, .4);
    backdrop-filter: blur(6px);
    color: rgba(255, 255, 255, .85);
    font-size: 10px;
    letter-spacing: .15em;
    text-transform: uppercase;
}

.video-frame .vf-live .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--rec, #ef4444);
    animation: blink 1.6s ease-in-out infinite;
}

.video-frame .vf-iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    z-index: 5;
}

.video-frame.playing {
    cursor: default;
}

.video-frame.playing .scrim,
.video-frame.playing .play-btn,
.video-frame.playing .vf-title,
.video-frame.playing .vf-live,
.video-frame.playing img {
    display: none;
}

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .92);
    z-index: 100;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.lightbox.open {
    display: flex;
}

.lightbox iframe {
    width: min(1100px, 100%);
    aspect-ratio: 16/9;
    border: 0;
    border-radius: 12px;
}

.lightbox .close {
    position: absolute;
    top: 20px;
    right: 20px;
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .1);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Typewriter cursor */
.cursor {
    display: inline-block;
    width: 2px;
    height: 0.9em;
    background: #f86e42;
    margin-left: 2px;
    vertical-align: middle;
    animation: blink 1s step-end infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: 0
    }
}

@keyframes ping {

    75%,
    100% {
        transform: scale(2);
        opacity: 0;
    }
}

/* ============== SECTION COMMON ============== */
section {
    position: relative;
}

section+br {
    display: none;
}

.pt_120 {
    padding-top: 120px;
}

.pt_95 {
    padding-top: 95px;
}

.pb_120 {
    padding-bottom: 120px;
}

.pb_95 {
    padding-bottom: 95px;
}

.pt_80 {
    padding-top: 80px;
}

.pb_80 {
    padding-bottom: 80px;
}

.pb_32 {
    padding-bottom: 32px;
}

.mrg_auto {
    margin-left: auto;
    margin-right: auto;
}

.mb_80 {
    margin-bottom: 80px;
}

.mb_64 {
    margin-bottom: 64px;
}

.mb_40 {
    margin-bottom: 40px;
}

.mb_32 {
    margin-bottom: 32px;
}

.mb_24 {
    margin-bottom: 24px;
}

.mb_20 {
    margin-bottom: 20px;
}

.mb_16 {
    margin-bottom: 16px;
}

.mt_20 {
    margin-top: 20px;
}

.text-center {
    text-align: center;
}

section.alt {
    background: color-mix(in oklab, var(--secondary) 60%, transparent);
}

.border_top {
    border-top: 1px solid var(--border);
}

.border_bottom {
    border-bottom: 1px solid var(--border);
}

.page_sec_title .eyebrow {
    margin-bottom: 12px;
}

.page_sec_title .h2 {
    font-size: 60px;
    font-weight: 400;
    line-height: 1.25;
}

.page_sec_title .h2 span {
    color: var(--accent);
}

.page_sec_title .lead {
    font-size: 20px;
    line-height: 1.625;
    color: rgba(34, 28, 25, 0.85);
}

.page_sec_title .h2.ft_54 {
    font-size: 54px;
}

.page_sec_title .h2.small {
    font-size: 48px;
}

.page_sec_title .h2.exsmall {
    font-size: 36px;
}

.page_sec_title .lead.small {
    font-size: 16px;
}

.wt_11 {
    max-width: 1100px;
}

.wt_102 {
    max-width: 1020px;
}

.wt_92 {
    max-width: 920px;
}

.wt_90 {
    max-width: 900px;
}

.wt_82 {
    max-width: 820px;
}

.wt_72 {
    max-width: 720px;
}

.wt_77 {
    max-width: 770px;
}

/* ============== OPPORTUNITY ============== */
.opportunity {
    position: relative;
    overflow: hidden;
    --opportunity-parallax: 0px;
    transform-origin: center top;
    will-change: opacity, transform
}

.opportunity.reveal {
    opacity: 0;
    transform: translate3d(-64px, 72px, 0) scale(.965);
    transition: opacity 1.1s cubic-bezier(.22, 1, .36, 1), transform 1.2s cubic-bezier(.22, 1, .36, 1)
}

.opportunity.reveal.in {
    opacity: 1;
    transform: translate3d(0, var(--opportunity-parallax), 0) scale(1);
    animation: opportunityFloat 9s ease-in-out 1.2s infinite alternate
}

.opportunity.reveal.in .blueprint-decor {
    transform: translate3d(0, calc(var(--opportunity-parallax) * -0.55), 0)
}

@keyframes opportunityFloat {
    from {
        translate: 0 0
    }

    to {
        translate: 0 -10px
    }
}

@media(prefers-reduced-motion:reduce) {

    .opportunity.reveal,
    .opportunity.reveal.in {
        opacity: 1;
        transform: none !important;
        transition: none;
        animation: none
    }

    .opportunity.reveal.in .blueprint-decor {
        transform: none
    }
}

.opportunity::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(226, 106, 69, .3), transparent)
}

.blueprint-decor {
    position: absolute;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
    opacity: 0.45;
    inset: calc(.25rem * 0);
}

.blueprint-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(to right, color-mix(in oklab, var(--accent) 45%, transparent) 1px, transparent 1px), linear-gradient(to bottom, color-mix(in oklab, var(--accent) 45%, transparent) 1px, transparent 1px);
    background-size: 56px 56px;
    -webkit-mask-image: linear-gradient(90deg, #0000, #0006 35%, #000);
    mask-image: linear-gradient(90deg, #0000, #0006 35%, #000);
    animation: gridPan 24s linear infinite;
}

@keyframes gridPan {
    to {
        background-position: 56px 56px, 56px 56px
    }
}

.blueprint-svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    -webkit-mask-image: linear-gradient(90deg, #0000, #0000004d 35%, #000);
    mask-image: linear-gradient(90deg, #0000, #0000004d 35%, #000);
}

.bp-line {
    stroke: color-mix(in oklab, var(--accent) 90%, white 10%);
    stroke-width: 1.8px;
    fill: none;
    stroke-linecap: round;
    stroke-dasharray: 1400;
    stroke-dashoffset: 1400;
    animation: bpDraw 9s ease-in-out infinite;
}

.bp-l1 {
    animation-delay: 0s
}

.bp-l2 {
    animation-delay: 1s;
    stroke-width: 1.4px;
}

.bp-l3 {
    animation-delay: 2s
}

.bp-l4 {
    animation-delay: 3s;
    stroke-width: 2px;
}

.bp-l5 {
    animation-delay: 4s
}

.bp-l6 {
    animation-delay: 1.5s;
    stroke-width: 1.3px;
    opacity: .85;
}

.bp-l7 {
    animation-delay: 3.5s;
    stroke-width: 1.3px;
    opacity: .85;
}

.bp-vert {
    stroke-dasharray: 6 8;
    stroke-width: 2;
    animation: bpVert 5s ease-in-out infinite
}

.bp-vert-2 {
    animation-delay: 1.5s;
    opacity: .75
}

@keyframes bpDraw {
    0% {
        stroke-dashoffset: 1400;
        opacity: 0
    }

    10% {
        opacity: 1
    }

    55% {
        stroke-dashoffset: 0;
        opacity: 1
    }

    85% {
        stroke-dashoffset: 0;
        opacity: .8
    }

    100% {
        stroke-dashoffset: -1400;
        opacity: 0
    }
}

@keyframes bpVert {

    0%,
    100% {
        opacity: .7
    }

    50% {
        opacity: 1
    }
}

.bp-node {
    fill: color-mix(in oklab, var(--accent) 60%, white 40%);
    animation: bpNode 3s ease-in-out infinite;
    transform-box: fill-box;
    transform-origin: center;
}

.bp-node-2 {
    animation-delay: .5s
}

.bp-node-3 {
    animation-delay: 1s
}

.bp-node-4 {
    animation-delay: 1.5s
}

.bp-node-5 {
    animation-delay: 2s
}

@keyframes bpNode {

    0%,
    100% {
        opacity: .5;
        transform: scale(1)
    }

    50% {
        opacity: 1;
        transform: scale(1.8)
    }
}

.bp-ring {
    fill: none;
    stroke: color-mix(in oklab, var(--accent) 90%, white 10%);
    stroke-width: 1.6;
    animation: bpRing 3.5s ease-in-out infinite
}

@keyframes bpRing {

    0%,
    100% {
        opacity: .6;
        r: 12
    }

    50% {
        opacity: 1;
        r: 26
    }
}

.opportunity .container-sm {
    position: relative;
    z-index: 1
}

.pillars {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    will-change: transform;
    transform-origin: center top 0;
    transition: transform 0.08s linear, border-radius 0.08s linear;
}

@media (min-width: 768px) {
    .pillars {
        grid-template-columns: repeat(3, 1fr);
    }
}

.pillar {
    position: relative;
    min-height: 460px;
    border-radius: 12px;
    overflow: hidden;
    background: #1a1a1a;
    border: 1px solid var(--border);
    cursor: pointer;
}

.pillar .img-layer,
.pillar .content-layer {
    position: absolute;
    inset: 0;
    transition: opacity .5s ease;
}

.pillar .img-layer img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pillar .img-layer .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, .9), rgba(0, 0, 0, .35) 50%, rgba(0, 0, 0, .1));
}

.pillar .img-layer .label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 28px;
}

.pillar .num {
    color: #f86e42;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: .15em;
    line-height: 1.5;
}

.pillar .title {
    color: #fff;
    font-size: 30px;
    font-weight: 400;
    line-height: 1.25;
    margin-top: 12px;
}

.pillar .content-layer {
    background: #1a1a1a;
    opacity: 0;
    padding: 28px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.pillar .content-layer ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    opacity: 0;
    transform: translateY(8px);
    transition: all .5s ease .15s;
}

.pillar .content-layer li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, .9);
    font-size: 14px;
    line-height: 1.375;
}

.pillar .content-layer li::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #f86e42;
    flex: none;
}

.pillar:hover .img-layer {
    opacity: 0;
}

.pillar:hover .content-layer {
    opacity: 1;
}

.pillar:hover .content-layer ul {
    opacity: 1;
    transform: none;
}

/* ============== WHERE FITS ============== */
.where-fits {
    position: relative;
    background: var(--bg);
    overflow: hidden;
    --wherefits-parallax: 0px;
    transform-origin: center top;
    will-change: opacity, transform
}

.where-fits.reveal {
    opacity: 0;
    transform: translate3d(64px, 72px, 0) scale(.965);
    transition: opacity 1.1s cubic-bezier(.22, 1, .36, 1), transform 1.2s cubic-bezier(.22, 1, .36, 1)
}

.where-fits.reveal.in {
    opacity: 1;
    transform: translate3d(0, var(--wherefits-parallax), 0) scale(1);
    animation: wherefitsFloat 9s ease-in-out 1.2s infinite alternate
}

.where-fits.reveal.in .where_watermark {
    transform: translate3d(0, calc(var(--wherefits-parallax) * -0.55), 0)
}

@keyframes wherefitsFloat {
    from {
        translate: 0 0
    }

    to {
        translate: 0 -10px
    }
}

@media(prefers-reduced-motion:reduce) {

    .where-fits.reveal,
    .where-fits.reveal.in {
        opacity: 1;
        transform: none !important;
        transition: none;
        animation: none
    }

    .where-fits.reveal.in .where_watermark {
        transform: none
    }
}

.where-fits .heading-block {
    position: relative;
    z-index: 1;
    max-width: 880px;
    margin-bottom: 64px;
}

@media (min-width: 768px) {
    .where-fits .heading-block {
        margin-bottom: 80px;
    }
}

.where-fits .heading-block h2 {
    margin: 14px 0 22px;
    max-width: 820px;
}

.where-fits .body {
    color: #4a403c;
    font-size: 17px;
    line-height: 1.65;
    max-width: 720px;
    white-space: pre-line;
}

.where-fits .grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: start;
}

@media (min-width: 1024px) {
    .where-fits .grid {
        grid-template-columns: 1fr 1fr;
        gap: 64px;
    }
}

.layers {
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
}

.layer {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    padding: 18px 20px;
    border-radius: 14px;
    background: color-mix(in oklab, var(--secondary) 60%, transparent);
    border: 1px solid color-mix(in oklab, var(--border) 40%, transparent);
    opacity: 0;
    transform: translateY(-32px) scale(.96);
    filter: blur(4px);
    transition: all .7s cubic-bezier(.22, 1, .36, 1)
}

.layer.show {
    opacity: 1;
    transform: none;
    filter: none
}

.layer .layer_shadow {
    background: radial-gradient(60% 80% at 50% 50%, color-mix(in oklab, var(--accent) 50%, transparent) 0%, transparent 70%);
    opacity: .2;
    border-radius: calc(.625rem + 8px);
    position: absolute;
    width: 100%;
    height: 100%;
    inset: calc(.25rem * -1);
    filter: blur(24px);
}

.layer.highlight {
    background: color-mix(in oklab, var(--accent) 10%, transparent);
    border-color: rgba(226, 86, 42, .4);
    position: relative;
}

.layer.highlight.show {
    box-shadow: 0 0 18px -8px #f86e42;
    /*animation:pulse-glow 3s ease-in-out infinite;*/
}

@keyframes pulse-glow {

    0%,
    100% {
        box-shadow: 0 0 30px -8px #f86e42;
    }

    50% {
        box-shadow: 0 0 55px -2px #f86e42;
    }
}

.layer .lhs {
    display: flex;
    align-items: center;
    gap: 10px;
}

.layer .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(34, 28, 25, .25);
    flex: none;
}

.layer .dot.bi {
    background: oklch(0.75 0.10 60);
}

.layer .dot.coral {
    background: #f86e42;
}

.layer .name {
    font-weight: 500;
    font-size: 16px;
}

.layer .name img {
    max-width: 120px;
    margin-bottom: 8px;
}

.layer.highlight .name {
    color: #f86e42;
}

.layer .sub {
    font-size: 14px;
    color: #4a403c;
    line-height: 1.44;
}

.layer .tag {
    font-family: ui-monospace, monospace;
    font-size: 11px;
    padding: 4px 12px;
    border-radius: 999px;
    border: 1px solid var(--border);
    color: #4a403c;
    flex: none;
}

.layer.highlight .tag {
    color: #f86e42;
    border-color: #f86e42;
}

.where-fits .headline-block {
    border: 1px solid rgba(226, 86, 42, .2);
    background: color-mix(in oklab, var(--card) 60%, transparent);
    border-radius: 14px;
    padding: 32px;
    opacity: 0;
    transform: translateY(16px);
    transition: all .7s;
}

.where-fits .headline-block.in {
    opacity: 1;
    transform: none;
}

@media (min-width: 768px) {
    .where-fits .headline-block {
        padding: 40px;
    }
}

.where-fits .headline-block .h3 {
    font-size: 36px;
    font-weight: 400;
    line-height: 1.25;
    white-space: pre-wrap;
}

.where-fits .headline-block .conclusion {
    color: #4a403c;
    font-size: 16px;
    line-height: 1.625;
}

.where-fits .where_watermark {
    position: absolute;
    right: 16px;
    top: 32px;
    max-width: 48%;
    pointer-events: none;
    width: 100%;
    z-index: 0;
    height: 520px;
}

.where-fits .where_watermark .where_watermark_shadow {
    background: radial-gradient(60% 55% at 70% 35%, color-mix(in oklab, var(--accent) 14%, transparent) 0%, transparent 70%);
    inset: calc(.25rem * 0);
    position: absolute;
}

.where-fits .m-watermark {
    opacity: .07;
    position: absolute;
    right: .25rem;
    top: .25rem;
    width: 500px;
    -webkit-mask-image: radial-gradient(ellipse at center, black 55%, transparent 80%);
    mask-image: radial-gradient(ellipse at center, black 55%, transparent 80%);
}

/* ============== PLATFORM ============== */
.platform {
    background: var(--bg);
}

.platform .heading-row {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 56px;
}

.architecture {
    position: relative;
    padding: 24px;
    border: 1px solid var(--border);
    border-radius: 28px;
    background:
        linear-gradient(135deg,
            color-mix(in oklab, var(--card) 70%, transparent) 0%,
            var(--bg) 50%,
            color-mix(in oklab, #f86e42 6%, transparent) 100%);
    box-shadow: 0 30px 80px -40px rgba(0, 0, 0, .25);
    overflow: hidden;
    will-change: transform, border-radius;
    transition: transform .08s linear, border-radius .08s linear;
}

.architecture .architecture_inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

@media (min-width: 768px) {
    .architecture {
        padding: 40px;
    }
}

/* Subtle grid backdrop */
.architecture::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: .06;
    background-image:
        linear-gradient(to right, var(--fg) 1px, transparent 1px),
        linear-gradient(to bottom, var(--fg) 1px, transparent 1px);
    background-size: 32px 32px;
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}

/* Soft accent glow behind the AI column */
.architecture::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 280px;
    pointer-events: none;
    background: radial-gradient(60% 60% at 50% 30%,
            color-mix(in oklab, #f86e42 20%, transparent) 0%, transparent 70%);
}

.architecture>* {
    position: relative;
    z-index: 1;
}

@media (min-width: 1024px) {
    .architecture .architecture_inner {
        grid-template-columns: 1fr auto 1fr;
        gap: 20px;
    }
}

.col-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 1.5px solid #f86e42;
    color: #f86e42;
    padding: 5px 14px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: .12em;
    text-transform: uppercase;
    width: fit-content;
}

.col-tag .pip {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #f86e42;
}

.col-right .col-tag {
    align-self: flex-end;
}

.arch-col {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.arch-col.col-right {
    align-items: stretch;
}

.arch-col.col-right>.col-tag {
    align-self: flex-end;
}

.arch-card {
    border: 1px solid var(--border);
    background: var(--card);
    padding: 14px 16px;
    border-radius: 12px;
    transition: border-color .3s, box-shadow .3s;
}

.arch-card:hover {
    border-color: rgba(226, 86, 42, .4);
}

.arch-card.highlight {
    border: 1.5px solid rgba(226, 86, 42, .5);
    background: rgba(226, 86, 42, .05);
}

.arch-card .cap-title {
    font-size: 13px;
    font-weight: 400;
    margin-bottom: 4px;
}

.arch-card .cap_subtitle {
    text-transform: uppercase;
    letter-spacing: .14em;
    font-size: 10px;
    line-height: 1.5;
    margin-bottom: 4px;
    color: var(--accent);
}

.arch-card .cap-sub {
    font-size: 12px;
    color: #4a403c;
    margin-bottom: 8px;
}

.chips {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.chip {
    font-size: 11px;
    padding: 2px 10px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: var(--bg);
    color: #4a403c;
}

.arch-card.highlight .chip {
    border-color: rgba(226, 86, 42, .55);
    background: rgba(226, 86, 42, .08);
    color: #f86e42;
}

/* center column */
.arch-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 220px;
}

.ai-core {
    width: 16px;
    height: 16px;
    background: #f86e42;
    transform: rotate(45deg);
    animation: ai-core 2.2s ease-in-out infinite;
}

@keyframes ai-core {

    0%,
    100% {
        transform: rotate(45deg) scale(1);
        box-shadow: 0 0 0 0 rgba(226, 86, 42, .45);
    }

    50% {
        transform: rotate(45deg) scale(1.18);
        box-shadow: 0 0 0 14px rgba(226, 86, 42, 0);
    }
}

.ai-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
}

.ai-row .label {
    font-weight: 700;
    font-size: 18px;
}

.ai-row .label img {
    max-width: 166px;
}

.connector {
    position: relative;
    width: 100%;
    height: 12px;
    margin: 6px 0 18px;
    display: flex;
    align-items: center;
}

.connector .pulse-dot {
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #f86e42;
    box-shadow: 0 0 12px #f86e42;
    /*animation: orbit-x 2.4s cubic-bezier(.65, 0, .35, 1) infinite; */
}

@keyframes orbit-x {
    0% {
        left: 0;
        opacity: 0
    }

    15% {
        opacity: 1
    }

    85% {
        opacity: 1
    }

    100% {
        left: 100%;
        opacity: 0
    }
}

.connector .line {
    position: absolute;
    left: 12px;
    right: 12px;
    height: 0;
    border-top: 2px dashed rgba(226, 86, 42, .55);
    animation: dash 1.2s linear infinite;
    background-image: none;
}

@keyframes dash {
    to {
        background-position: -24px 0;
    }
}

.connector .end {
    position: absolute;
    right: 0;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 1.5px solid #f86e42;
    background: var(--bg);
}

.steps {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.step {
    width: 100%;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: 12px;
    border: 1px solid var(--border);
    background: var(--card);
    transition: all .3s;
}

.step:hover {
    border-color: rgba(226, 86, 42, .5);
}

.step.active {
    border-color: #f86e42;
    background: rgba(226, 86, 42, .05);
    box-shadow: 0 8px 24px -12px #f86e42;
}

.step .step-num {
    font-size: 11px;
    font-weight: 600;
    padding: 2px 9px;
    border-radius: 999px;
    border: 1px solid rgba(226, 86, 42, .5);
    color: #f86e42;
}

.step.active .step-num {
    background: rgba(226, 86, 42, .1);
}

.step .step-label {
    font-size: 12px;
    font-weight: 400;
    letter-spacing: .08em;
}

.step-dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 14px;
}

.step-dots .d {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--border-strong);
    transition: all .3s;
}

.step-dots .d.active {
    background: #f86e42;
    transform: scale(1.3);
}

.powered-by {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    padding: 12px 18px;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: rgba(255, 255, 255, .6);
    backdrop-filter: blur(6px);
    margin-top: 24px;
}

.powered-by.mobile_powered_by {
    display: none;
}

.powered-by .label {
    font-size: 11px;
    font-weight: 400;
    letter-spacing: .08em;
    color: rgba(34, 28, 25, .6);
}

.powered-by .sep {
    width: 1px;
    height: 16px;
    background: var(--border);
}

.powered-by .chips .chip {
    background-color: color-mix(in oklab, var(--accent) 5%, transparent);
    color: var(--accent);
    border: 1px solid color-mix(in oklab, var(--accent) 60%, transparent);
}

/* Capabilities block (gradient) */
.capabilities {
    border-radius: 28px;
    padding: 56px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(120deg, #A8B5B0 0%, #C9C2BA 35%, #E8C9A8 70%, #E8956B 100%);
}

.capabilities:before {
    background: url(../images/capability-border-bg.svg) no-repeat center center;
    width: 100%;
    height: 100%;
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 0;
}

.capabilities .head {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 48px;
}

.capabilities .head h3 {
    font-size: clamp(26px, 3.4vw, 44px);
    font-weight: 800;
    line-height: 1.15;
}

.capabilities .head p {
    color: rgba(34, 28, 25, .75);
    margin-top: 14px;
    font-size: 18px;
    line-height: 1.6;
}

.cap-cards {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

@media (min-width: 768px) {
    .cap-cards {
        grid-template-columns: repeat(3, 1fr);
        height: 420px;
    }
}

.cap-card {
    position: relative;
    padding: 32px;
    border-radius: 18px;
    overflow: hidden;
    background: rgba(255, 255, 255, .72);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, .6);
    cursor: pointer;
    transition: background .6s, box-shadow .6s, border-color .6s;
}

.cap-card:hover {
    background: rgba(255, 255, 255, .88);
    box-shadow: var(--shadow-lg);
    border-color: rgba(226, 86, 42, .35);
}

.cap-card .num {
    color: #f86e42;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: .15em;
}

.cap-card h4 {
    font-size: 24px;
    font-weight: 400;
    margin: 8px 0 4px;
    line-height: 1.34;
}

.cap-card .cap-subtitle {
    color: #f86e42;
    font-size: 14px;
    font-weight: 400;
    margin: 0 0 16px;
}

.cap-card .cap-desc {
    color: rgba(34, 28, 25, .78);
    font-size: 15px;
    line-height: 1.625;
    opacity: 0;
    transform: translateX(14px);
    transition: all .6s ease .1s;
    margin-bottom: 20px;
}

.cap-card .cap-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 14px;
    opacity: 0;
    transform: translateX(14px);
    transition: all .6s ease .15s;
}

.cap-card .cap-tags .chip {
    font-family: ui-monospace, monospace;
    background: none;
}

.cap-card .cap-card-icon {
    position: absolute;
    right: 18px;
    bottom: 18px;
    transition: all .7s ease;
}

.cap-card .glyph {
    width: 110px;
    height: 110px;
    color: rgba(34, 28, 25, .85);

}

.cap-card .explore {
    position: absolute;
    left: 28px;
    bottom: 24px;
    color: #f86e42;
    font-weight: 400;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: opacity .3s;
}

@media (min-width: 768px) {
    .cap-card:hover .cap-card-icon {
        opacity: 0;
        transform: translateX(80px);
    }

    .cap-card:hover .explore {
        opacity: 0;
        pointer-events: none;
    }

    .cap-card:hover .cap-desc,
    .cap-card:hover .cap-tags {
        opacity: 1;
        transform: none;
    }
}

/* ============== WORKBENCHES ============== */
.workbenches {
    background: var(--bg);
    z-index: 9;
}

.tabs {
    display: flex;
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
}

.tab {
    flex: 1;
    padding: 16px;
    text-align: center;
    font-weight: 400;
    font-size: 15px;
    background: var(--card);
    color: #4a403c;
    border-right: 1px solid var(--border);
    transition: background .2s;
}

.tab:last-child {
    border-right: 0;
}

.tab:hover:not(.active) {
    background: var(--secondary);
}

.tab.active.coral {
    background: #5A2418;
    color: #FFD7C9;
}

.tab.active.ember {
    background: #2A1A12;
    color: #F2C8B0;
}

.wb-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

@media (min-width: 768px) {
    .wb-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 400;
    padding: 4px 10px;
    border-radius: 6px;
    margin-bottom: 12px;
}

.badge.coral {
    background: #FBE7DE;
    color: #7A2A12;
}

.badge.ember {
    background: #F4DCCB;
    color: #5A2C18;
}

.wb-grid h3 {
    font-size: 30px;
    font-weight: 400;
    line-height: 1.2;
}

.wb-grid .subtitle {
    font-size: 14px;
    color: #4a403c;
    line-height: 1.44;
    font-weight: 600;
    margin-bottom: 16px;
}

.wb-grid .desc {
    color: rgba(34, 28, 25, .85);
    font-size: 16px;
    line-height: 1.65;
}

.wb-grid .italic {
    font-style: italic;
    font-size: 14px;
    color: var(--accent);
}

.buyers {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}

.buyer {
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 6px;
    border: 1px solid var(--border);
    color: rgba(34, 28, 25, .7);
    background: var(--card);
    line-height: 1.35;
}

.subprods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 10px;
}

.subprod {
    border: 1px solid var(--border);
    background: var(--card);
    border-radius: 10px;
    padding: 12px;
}

.subprod .n {
    font-size: 11px;
    color: #f86e42;
}

.subprod .nm {
    font-size: 13px;
    font-weight: 400;
    margin: 4px 0;
}

.subprod .d {
    font-size: 12px;
    color: #4a403c;
    line-height: 1.5;
}

.video-inset {
    border: 1px solid var(--border);
    background: var(--card);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.video-inset .titlebar {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    background: rgba(244, 243, 241, .5);
    border-bottom: 1px solid var(--border);
}

.video-inset .titlebar .b {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.video-inset .titlebar .url {
    margin-left: 12px;
    font-family: ui-monospace, monospace;
    font-size: 10px;
    color: #4a403c;
}

.video-inset .body {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.graph-card {
    border: 1px solid var(--border);
    background: var(--card);
    border-radius: 12px;
    padding: 18px;
}

.graph-card .head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}

.graph-card .head .lab {
    font-size: 11px;
    font-weight: 400;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #4a403c;
}

.graph-card .head .pill {
    font-size: 10px;
    font-family: ui-monospace, monospace;
    padding: 2px 8px;
    border-radius: 6px;
    background: #FBE7DE;
    color: #7A2A12;
}

.graph-card svg.prerform_svg {
    display: block;
    width: 100%;
    height: 140px;
}

.graph-card svg.prerform_svg .text-border {
    color: var(--border);
}

.graph-card svg.prerform_svg .text-muted-foreground {
    color: color-mix(in oklab, var(--muted) 60%, transparent);
}

.graph-card .trend-meta {
    display: flex;
    align-items: baseline;
    gap: .75rem;
    margin-bottom: .25rem;
}

.graph-card .trend-val {
    font-size: 20px;
    line-height: 1.4;
}

.graph-card .trend-delta {
    color: var(--accent);
    font-size: 12px;
    font-weight: 400;
}

.graph-card .trend-x {
    display: flex;
    justify-content: space-between;
    margin-top: .35rem;
    font-family: 'JetBrains Mono', monospace;
    font-size: .6rem;
    color: var(--muted);
}

.graph-card .trend-legend {
    display: flex;
    gap: 1rem;
    margin-top: .75rem;
    font-size: .65rem;
    color: var(--muted);
}

.graph-card .trend-legend span {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
}

.graph-card .leg-line {
    width: 14px;
    height: 2px;
    background: var(--accent);
    display: inline-block;
}

.graph-card .leg-dash {
    width: 14px;
    border-top: 1px dashed rgba(107, 98, 91, 0.6);
    display: inline-block;
}

.bar-row {
    margin-bottom: 12px;
}

.bar-row .lbl {
    display: flex;
    justify-content: space-between;
    margin-bottom: 4px;
    font-size: 12px;
    color: rgba(34, 28, 25, .8);
}

.bar-row .val {
    font-family: ui-monospace, monospace;
    color: #4a403c;
}

.bar-row .track {
    height: 6px;
    background: var(--secondary);
    border-radius: 999px;
    overflow: hidden;
}

.bar-row .fill {
    height: 100%;
    background: #E26A45;
    border-radius: 999px;
    width: 0;
    transition: width 1s ease-out;
}

.q-card {
    border: 1px solid rgba(226, 86, 42, .2);
    background: #fff;
    border-radius: 12px;
    padding: 16px;
}

.q-card .lab {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 400;
    color: #f86e42;
    margin-bottom: 8px;
}

.q-card .text {
    font-size: 13px;
    line-height: 1.55;
    min-height: 3.5em;
    color: rgba(34, 28, 25, .85);
}

.q-card .dots {
    display: flex;
    gap: 6px;
    margin-top: 12px;
}

.q-card .dots .d {
    height: 4px;
    width: 6px;
    border-radius: 999px;
    background: var(--secondary);
    transition: all .3s;
}

.q-card .dots .d.active {
    width: 24px;
    background: #E26A45;
}

.cmd-bar {
    margin-top: 48px;
    border-radius: 14px;
    background: color-mix(in oklab, #f0f2f4 60%, transparent);
    padding: 20px;
    display: grid;
    gap: 24px;
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .cmd-bar {
        grid-template-columns: 1fr 2fr;
        align-items: center;
    }
}

.cmd-bar .l1 {
    font-size: 11px;
    font-weight: 400;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #4a403c;
    margin-bottom: 4px;
}

.cmd-bar .ttl {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 8px;
}

.cmd-bar .pill-row {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.cmd-bar .text {
    font-size: 14px;
    color: #4a403c;
    line-height: 1.65;
}

.cmd-bar .pill-row .badge {
    margin-bottom: 0;
}

/* ============== PROOF ============== */
.proof {
    position: relative;
    overflow: hidden;
    --proof-parallax: 0px;
    transform-origin: center top;
    will-change: opacity, transform;
}

.proof.reveal {
    opacity: 0;
    transform: translate3d(-64px, 72px, 0) scale(.965);
    transition: opacity 1.1s cubic-bezier(.22, 1, .36, 1), transform 1.2s cubic-bezier(.22, 1, .36, 1)
}

.proof.reveal.in {
    opacity: 1;
    transform: translate3d(0, var(--proof-parallax), 0) scale(1);
    animation: proofFloat 9s ease-in-out 1.2s infinite alternate
}

@media(prefers-reduced-motion:reduce) {

    .proof.reveal,
    .proof.reveal.in {
        opacity: 1;
        transform: none !important;
        transition: none;
        animation: none
    }
}

@keyframes proofFloat {
    from {
        translate: 0 0
    }

    to {
        translate: 0 -10px
    }
}

.proof:before {
    left: -160px;
    top: -160px;
    width: 500px;
    height: 500px;
    border: 1px solid color-mix(in oklab, var(--accent) 10%, transparent);
    content: "";
    display: block;
    position: absolute;
    border-radius: 100%;
}

.proof .container {
    position: relative;
    max-width: 1024px;
}

.quote-card {
    position: relative;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 22px;
    padding: 48px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 46px;
}

.quote-card .qmark {
    position: absolute;
    top: -16px;
    left: 32px;
    font-size: 71px;
    line-height: 1;
    color: #f86e42;
    font-family: 'Georgia', serif;
}

.quote-card p.quote {
    font-weight: 400;
    font-style: italic;
    line-height: 1.375;
    font-size: 30px;
    margin-bottom: 20px;
    letter-spacing: 0;
}

.quote-card p.attr {
    color: #4a403c;
}

.stats {
    display: grid;
    gap: 22px;
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .stats {
        grid-template-columns: repeat(3, 1fr);
    }
}

.stat {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 22px;
    padding: 30px;
    transition: all .3s;
}

.stat:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-sm);
}

.stat .ttl {
    font-size: 20px;
    color: var(--accent);
    margin-bottom: 8px;
}

.stat .body {
    color: #4a403c;
    font-size: 14px;
    line-height: 1.625;
}

/* ============== IMPACT ============== */
.impact {
    background: var(--bg);
    position: relative;
    overflow: hidden;
    --impact-parallax: 0px;
    transform-origin: center top;
    will-change: opacity, transform;
}

.impact.reveal {
    opacity: 0;
    transform: translate3d(64px, 72px, 0) scale(.965);
    transition: opacity 1.1s cubic-bezier(.22, 1, .36, 1), transform 1.2s cubic-bezier(.22, 1, .36, 1)
}

.impact.reveal.in {
    opacity: 1;
    transform: translate3d(0, var(--impact-parallax), 0) scale(1);
    animation: impactFloat 9s ease-in-out 1.2s infinite alternate
}

.impact.reveal.in .impact-grid {
    transform: translate3d(0, calc(var(--impact-parallax) * -0.22), 0)
}

@media(prefers-reduced-motion:reduce) {

    .impact.reveal,
    .impact.reveal.in {
        opacity: 1;
        transform: none !important;
        transition: none;
        animation: none
    }

    .impact.reveal.in .impact-grid {
        transform: none
    }
}

@keyframes impactFloat {
    from {
        translate: 0 0
    }

    to {
        translate: 0 -10px
    }
}

.impact .head {
    max-width: 760px;
    margin-bottom: 56px;
}

.impact .grid {
    display: grid;
    gap: 45px;
    grid-template-columns: 1fr;
    will-change: transform
}

@media (min-width: 1024px) {
    .impact .grid {
        grid-template-columns: 1fr 1fr;
    }
}

.ledger {
    border-radius: 18px;
    border: 1px solid var(--border);
    background: var(--card);
    overflow: hidden;
}

.ledger .top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 18px;
    border-bottom: 1px solid var(--border);
    background: rgba(34, 28, 25, .02);
}

.ledger .top .live {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: rgba(34, 28, 25, .6);
}

.ledger .top .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #f86e42;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: .4
    }
}

.ledger .top .ct {
    font-family: ui-monospace, monospace;
    font-size: 11px;
    color: rgba(34, 28, 25, .4);
}

.ledger .rows {
    min-height: 420px;
}

.ledger .ledger-row {
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--border);
    opacity: 0;
    transform: translateX(-20px);
    filter: blur(4px);
    transition: all .5s cubic-bezier(.65, 0, .35, 1);
}

.ledger .ledger-row .ledger_row_inner {
    display: grid;
    grid-template-columns: 90px 1fr auto;
    gap: .75rem;
    align-items: center;
}

.ledger .ledger-row .ledger_row_mobile {
    display: none;
}

.ledger .ledger-row.visible {
    opacity: 1;
    transform: translateX(0);
    filter: blur(0);
}

.ledger .ledger-row .acc {
    font-family: ui-monospace, monospace;
    font-size: 11px;
    color: rgba(34, 28, 25, .45);
    letter-spacing: .04em;
}

.ledger .ledger-row .metric {
    font-size: 14px;
    line-height: 1.467;
    color: rgba(34, 28, 25, .8);
}

.ledger .ledger-row .val {
    display: flex;
    align-items: baseline;
    gap: 8px;
    justify-content: flex-end;
}

.ledger .ledger-row .v {
    font-family: ui-monospace, monospace;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.56;
}

.ledger .ledger-row .d {
    font-family: ui-monospace, monospace;
    font-size: 11px;
    font-weight: 700;
    color: rgba(34, 28, 25, .45);
}

.ledger .ledger-row.pos .d {
    color: #f86e42;
}

.interp {
    position: relative;
}

.interp-head .interp_title {
    font-size: 11px;
    font-weight: 400;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: rgba(34, 28, 25, .5);
}

.interp-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.25rem;
}

.interp-head .interp-nav {
    display: flex;
    align-items: center;
    gap: .5rem;
}

.interp-head .interp-nav .interp-count {
    font-family: 'JetBrains Mono', monospace;
    font-size: .7rem;
    color: var(--muted);
    margin-right: .35rem;
}

.interp-head .interp-nav .nav-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid color-mix(in oklab, var(--accent) 70%, transparent);
    background: color-mix(in oklab, var(--accent) 10%, transparent);
    color: var(--accent);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 18px -4px var(--accent);
    transition: all .3s cubic-bezier(.4, 0, .2, 1);
    padding: 0;
    cursor: pointer;
}

.interp-head .nav-btn:hover {
    background: var(--accent);
    color: #fff;
    transform: scale(1.05);
    box-shadow: 0 0 24px -2px var(--accent);
}

.interp-head .nav-btn:active {
    transform: scale(.95);
}

.interp-nav .nav-btn svg {
    display: block;
    width: 24px;
    height: 24px;
}

.interp-body {
    position: relative;
    min-height: 420px;
}

.interp-card {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: translateY(12px);
    pointer-events: none;
    transition: all .7s cubic-bezier(.65, 0, .35, 1);
}

.interp-card.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.interp h3 {
    font-size: 36px;
    font-weight: 400;
    line-height: 1.25;
    margin-bottom: 16px;
}

.interp p {
    color: rgba(34, 28, 25, .7);
    font-size: 18px;
    line-height: 1.625;
    max-width: 480px;
}

.interp .cite {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 24px;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: #f86e42;
}

.interp .cite::before {
    content: "";
    width: 32px;
    height: 1px;
    background: #f86e42;
}

/* ============== CTA SECTION ============== */
.cta-section {
    text-align: center;
    background: var(--bg);
    position: relative;
    overflow: hidden;
    --cta-parallax: 0px;
    transform-origin: center top;
    will-change: opacity, transform
}

.cta-section.reveal {
    opacity: 0;
    transform: translate3d(-64px, 72px, 0) scale(.965);
    transition: opacity 1.1s cubic-bezier(.22, 1, .36, 1), transform 1.2s cubic-bezier(.22, 1, .36, 1)
}

.cta-section.reveal.in {
    opacity: 1;
    transform: translate3d(0, var(--cta-parallax), 0) scale(1);
    animation: ctaFloat 9s ease-in-out 1.2s infinite alternate
}

.cta-section.reveal.in .cta_shadow {
    transform: translate(-50%, -50%) translate3d(0, calc(var(--cta-parallax) * -0.6), 0)
}

@keyframes ctaFloat {
    from {
        translate: 0 0
    }

    to {
        translate: 0 -10px
    }
}

@media(prefers-reduced-motion:reduce) {

    .cta-section.reveal,
    .cta-section.reveal.in {
        opacity: 1;
        transform: none !important;
        transition: none;
        animation: none
    }
}

.cta-section .container {
    position: relative;
}

.cta-section .cta_shadow {
    background-color: color-mix(in oklab, var(--accent) 15%, transparent);
    width: 100%;
    max-width: 600px;
    height: 300px;
    border-radius: 3.40282e38px;
    top: 50%;
    margin: -150px auto auto;
    position: absolute;
    filter: blur(100px);
    left: 50%;
    right: 0;
}

.cta-section .ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
}

/* ============== DIALOG ============== */
.dialog-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 200;
    padding: 24px;
}

.dialog-backdrop.open {
    display: flex;
    animation: fade .25s ease;
}

@keyframes fade {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

.dialog {
    width: 100%;
    max-width: 480px;
    background: var(--card);
    border-radius: 12px;
    padding: 19px 25px;
    box-shadow: var(--shadow-lg);
    position: relative;
    max-height: 100vh;
    overflow-y: auto;
}

.dialog .x {
    position: absolute;
    top: 2px;
    right: 9px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    font-size: 12px;
    font-weight: 700;
    padding: 0;
}

.dialog .x:hover {
    background: none;
}

.dialog h3 {
    font-size: 24px;
    font-weight: 400;
    line-height: 1.34;
}

.dialog .desc {
    color: #4a403c;
    margin: 6px 0 24px;
    font-size: 14px;
    line-height: 1.45;
}

.wpcf7-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.wpcf7-form .row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 0;
}

.wpcf7-form .field {
    display: flex;
    flex-direction: column;
    gap: 1px;
    margin-bottom: 0;
}

.wpcf7-form label {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
}

.wpcf7-form label .req {
    color: #f86e42;
}

.wpcf7-form label .opt {
    font-size: 11px;
    color: #4a403c;
}

body .wpcf7-form input,
body .wpcf7-form textarea {
    font: inherit;
    padding: 7px 12px !important;
    border: 1px solid var(--border-strong);
    border-radius: 8px;
    background: var(--card);
    width: 100%;
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    height: auto;
    color: #4a403c;
}

body .wpcf7-form input:focus,
body .wpcf7-form textarea:focus {
    outline: 2px solid rgba(226, 86, 42, .35);
    outline-offset: 1px;
}

body .wpcf7-form textarea {
    resize: vertical;
    min-height: 70px;
    height: 70px;
}

body .wpcf7-form .wpcf7-submit {
    background: #f86e42;
    color: #fff !important;
    padding: 12px !important;
    border-radius: 999px;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    border: none;
}

body .wpcf7-form .wpcf7-submit:hover {
    background: #c94821;
}

.wpcf7-form .req-note {
    font-size: 12px;
    color: #4a403c;
    margin-bottom: 0;
}

body .wpcf7-spinner {
    position: absolute;
    margin: 0;
    right: 0;
}

body .wpcf7 form .wpcf7-response-output {
    margin: 0;
    padding: 8px 10px;
    font-size: 15px;
}

.success {
    text-align: center;
    padding: 30px 0;
}

.success .check {
    width: 48px;
    height: 48px;
    margin: 0 auto 12px;
    border-radius: 50%;
    background: rgba(226, 86, 42, .15);
    color: #f86e42;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

/* Scroll reveal */
.reveal {
    opacity: 0;
    transition: opacity 1100ms cubic-bezier(0.22, 1, 0.36, 1), transform 1200ms cubic-bezier(0.22, 1, 0.36, 1);
    will-change: opacity, transform;
}

.reveal.in {
    opacity: 1;
    transform: none;
}

.about-hero {
    background: var(--bg);
}

.about-hero .about-logo{
    transform: translateY(20px);
  transition: opacity 800ms, transform 800ms;
}
.about-hero .about-logo.reveal.in{
    transform: translateY(0);
}

.about-hero .mosaic {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-bottom: 112px;
}

.about-hero .mosaic .tile {
    border-radius: 18px;
    overflow: hidden;
    background: #eee;
    position: relative;
    height: 260px;
}

.about-hero .mosaic .tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .9s ease
}

.about-hero .mosaic .tile:hover img {
    transform: scale(1.06)
}

.about-hero .mosaic .tile-tall {
    grid-row: span 2
}

.about-hero .mosaic .tile-short {
    grid-row: span 1
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

@media(max-width:820px) {
    .info-grid {
        grid-template-columns: 1fr
    }
}

.info-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 36px;
    box-shadow: var(--shadow-sm);
    transition: box-shadow .3s, transform .3s
}

.info-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-2px)
}

.info-card header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.info-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: var(--secondary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
}

.info-card h3 {
    font-size: 28px;
    font-weight: 400;
    letter-spacing: -.025em;
    margin: 0;
    line-height: 1.5;
}

.info-card p {
    color: var(--muted);
    font-size: 17px;
    line-height: 1.7
}

.who_we_sec {
    background: var(--bg);
    position: relative;
    overflow: hidden;
}

.who_we_sec .timeline {
    position: relative;
    max-width: 880px;
    margin: 0 auto
}

.who_we_sec .timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 1px;
    display: none;
    background: linear-gradient(to bottom,
            rgba(224, 120, 86, .4), rgba(185, 68, 38, .4), rgba(217, 149, 96, .4));
}

.who_we_sec .row {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    padding-bottom: 64px;
    align-items: center;
    --p: 0px;
}

body .trans-ease-out{
    opacity: 0;
    translate: 0 calc(.25rem * 8);
    transition-duration: .7s;
    transition-property: all;
    transition-timing-function: cubic-bezier(0, 0, .2, 1);
}

body .trans-ease-out.reveal.in{
    opacity: 1;
    translate: 0 0;
}

body .trans-ease-out.delay-0{
    transition-delay: 0ms;
}
body .trans-ease-out.delay-1{
    transition-delay: 100ms;
}
body .trans-ease-out.delay-2{
    transition-delay: 200ms;
}
body .trans-ease-out.delay-3{
    transition-delay: 300ms;
}
body .trans-ease-out.delay-4{
    transition-delay: 400ms;
}
body .trans-ease-out.delay-5{
    transition-delay: 500ms;
}

.who_we_sec .row.reverse .col.text {
    order: 1
}

.who_we_sec .row.reverse .col.card-wrap {
    order: 0
}

.who_we_sec .col.text {
    padding: 0 0 0 0
}

.who_we_sec .big-numeral {
    position: absolute;
    top: 2%;
    transform: translateY(calc(-50% - 170px));
    font-weight: 400;
    font-size: 247px;
    letter-spacing: -.05em;
    line-height: 1;
    pointer-events: none;
    user-select: none;
    opacity: .10;
    display: none;
    z-index: 0;
    transform: translate3d(0, calc(-50% + var(--p)), 0);
    transition: transform .1s linear;
}

.who_we_sec .big-numeral.left {
    left: -2rem
}

.who_we_sec .big-numeral.right {
    right: -2rem
}

[data-color="coral"] .big-numeral {
    color: var(--accent)
}

[data-color="ember"] .big-numeral {
    color: var(--accent-soft)
}

[data-color="peach"] .big-numeral {
    color: var(--accent-2)
}

.who_we_sec .pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 3px 12px;
    border-radius: 999px;
    margin-bottom: 12px;
}

.who_we_sec .pill .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    animation: pulse 2s ease infinite
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: .4
    }
}

[data-color="coral"] .pill {
    color: var(--accent);
    background: rgba(224, 120, 86, .1)
}

[data-color="coral"] .pill .dot {
    background: var(--accent)
}

[data-color="ember"] .pill {
    color: var(--accent-soft);
    background: rgba(185, 68, 38, .1)
}

[data-color="ember"] .pill .dot {
    background: var(--accent-soft)
}

[data-color="peach"] .pill {
    color: #a35a25;
    background: rgba(217, 149, 96, .25)
}

[data-color="peach"] .pill .dot {
    background: var(--accent-2)
}

.who_we_sec .col.text .pill p {
    font-size: 10px;
    color: var(--accent);
    letter-spacing: .1em;
    text-transform: uppercase;
}

.who_we_sec .col.text h3 {
    font-size: 22px;
    font-weight: 400;
    margin: 0 0 8px
}

.who_we_sec .col.text p {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.7;
}

.who_we_sec .chips {
    display: flex;
    gap: 6px;
    margin-top: 12px;
    flex-wrap: wrap
}

.who_we_sec .row:not(.reverse) .chips {
    justify-content: flex-start
}

.who_we_sec .chips div {
    font-size: 10px;
    font-weight: 400;
    padding: 2px 10px;
    border-radius: 999px
}

[data-color="coral"] .chips div {
    color: var(--accent);
    background: rgba(224, 120, 86, .1)
}

[data-color="ember"] .chips div {
    color: var(--accent-soft);
    background: rgba(185, 68, 38, .1)
}

[data-color="peach"] .chips div {
    color: #B15300;
    background: rgba(217, 149, 96, .25)
}

.who_we_sec .card-wrap {
    position: relative
}

.who_we_sec .node {
    position: absolute;
    top: 50%;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 2px solid;
    background: var(--bg);
    z-index: 2;
    display: none;
}

.who_we_sec .row:not(.reverse) .node {
    left: 0;
    transform: translate(-50%, -50%)
}

.who_we_sec .row.reverse .node {
    right: 0;
    transform: translate(50%, -50%)
}

[data-color="coral"] .node {
    border-color: var(--accent)
}

[data-color="ember"] .node {
    border-color: var(--accent-soft)
}

[data-color="peach"] .node {
    border-color: var(--accent-2)
}

/* Inner solid dot */
.who_we_sec .node::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    background: currentColor;
}

/* Outer ping ring */
.who_we_sec .node::after {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: 50%;
    border: 2px solid currentColor;
    opacity: .6;
    animation: nodePing 1.8s cubic-bezier(0, 0, 0.2, 1) infinite;
}

[data-color="coral"] .node {
    color: var(--accent)
}

[data-color="ember"] .node {
    color: var(--accent-soft)
}

[data-color="peach"] .node {
    color: var(--accent-2)
}

@keyframes nodePing {
    0% {
        transform: scale(1);
        opacity: .6
    }

    75%,
    100% {
        transform: scale(2.2);
        opacity: 0
    }
}

.who_we_sec .card {
    border-radius: 18px;
    padding: 22px;
    border: 1px solid;
    transition: all .5s ease;
}

.who_we_sec .card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, .1)
}

[data-color="coral"] .card {
    background: rgba(224, 120, 86, .06);
    border-color: rgba(224, 120, 86, .15)
}

[data-color="ember"] .card {
    background: rgba(185, 68, 38, .06);
    border-color: rgba(185, 68, 38, .15)
}

[data-color="peach"] .card {
    background: rgba(217, 149, 96, .12);
    border-color: rgba(217, 149, 96, .25)
}

.who_we_sec .card-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px
}

.who_we_sec .ico {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center
}

[data-color="coral"] .ico {
    background: rgba(224, 120, 86, .12)
}

[data-color="ember"] .ico {
    background: rgba(185, 68, 38, .12)
}

[data-color="peach"] .ico {
    background: rgba(217, 149, 96, .25)
}

[data-color="coral"] .ico {
    color: var(--accent);
}

[data-color="ember"] .ico {
    color: var(--accent-soft);
}

[data-color="peach"] .ico {
    color: var(--accent-2);
}

.who_we_sec .mono {
    font-family: ui-monospace, Menlo, monospace;
    font-size: 11px;
    letter-spacing: .05em;
}

[data-color="coral"] .mono {
    color: var(--accent);
}

[data-color="ember"] .mono {
    color: var(--accent-soft);
}

[data-color="peach"] .mono {
    color: #B15300;
}

.who_we_sec .grid3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px
}

.who_we_sec .grid3 div {
    border-radius: 10px;
    padding: 8px 6px;
    text-align: center;
    font-size: 10px;
    font-weight: 400;
}

[data-color="coral"] .grid3 div {
    background: rgba(224, 120, 86, .1);
    color: var(--accent);
}

[data-color="ember"] .grid3 div {
    background: rgba(185, 68, 38, .1);
    color: var(--accent-soft);
}

[data-color="peach"] .grid3 div {
    background: rgba(217, 149, 96, .25);
    color: #B15300;
}

/* Output card */
.who_we_sec .output {
    background: var(--ink);
    color: #fff;
    border-radius: 28px;
    padding: 56px 28px;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-top: 8px;
}

.who_we_sec .output .decision-icon {
    width: 56px;
    height: 56px;
    background: #f86e4226;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto auto 20px;
    border-radius: 20px;
}

.who_we_sec .output .eyebrow.accent-bg {
    display: inline-block;
    background: rgba(224, 120, 86, .15);
    padding: 4px 16px;
    border-radius: 999px;
    margin-bottom: 12px;
    font-size: 10px;
    letter-spacing: .12em;
}

.who_we_sec .output h3 {
    font-size: 26px;
    font-weight: 400;
    margin: 0 0 12px;
    color: #fff;
    line-height: 1.5;
}

.who_we_sec .output p {
    color: rgba(255, 255, 255, .5);
    font-size: 13px;
    line-height: 1.625;
    max-width: 420px;
    margin: 0 auto 32px;
}

.who_we_sec .output-chips {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.who_we_sec .output-chips div {
    font-size: 11px;
    font-weight: 400;
    padding: 8px 20px;
    border-radius: 999px;
    background: rgba(224, 120, 86, .15);
    color: var(--accent);
    border: 1px solid rgba(224, 120, 86, .25);
    transition: all .3s ease;
}

.who_we_sec .output-chips div:hover {
    background: rgba(224, 120, 86, .25);
    border-color: rgba(224, 120, 86, .4)
}

/* Stats */
.who_we_sec .stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    max-width: 880px;
    margin: 32px auto 0
}

.who_we_sec .stat {
    background: var(--secondary);
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    border: 1px solid var(--border);
}

.who_we_sec .stat .n {
    font-size: 28px;
    font-weight: 400;
    color: var(--accent);
    margin-bottom: 4px;
    line-height: 1.5;
}

.who_we_sec .stat .l {
    font-size: 11px;
    color: var(--muted);
    line-height: 1.5;
}

.quote-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.quote-grid .quote {
    font-size: 30px;
    line-height: 1.25;
    font-weight: 400;
    letter-spacing: -.01em;
    margin: 0;
}

.quote .q {
    color: var(--accent);
    font-size: 1.2em;
}

.attribution {
    margin: 32px 0 32px;
    color: var(--muted);
    font-size: 15px;
}

.quote-grid .meeruai_logo {
    max-width: 230px;
}

.portrait {
    position: relative;
    aspect-ratio: 4/3;
    border-radius: 28px;
    overflow: hidden;
    background: var(--soft);
}

.portrait img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.portrait-shade {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 33%;
    background: linear-gradient(0deg, rgba(0, 0, 0, .8), transparent);
}

.portrait-meta {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 24px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    color: #fff;
}

.portrait-meta .name {
    font-weight: 400;
    font-size: 18px;
    line-height: 1.25;
}

.portrait-meta .role {
    font-size: 12px;
    letter-spacing: .025em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .85);
}

.badge-glass {
    font-size: 10px;
    letter-spacing: .05em;
    text-transform: uppercase;
    background: rgba(255, 255, 255, .18);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, .25);
    padding: 4px 12px;
    border-radius: 999px;
}

/* -------- Leadership cards (About page) -------- */
.leadership-eyebrow {
    font-size: 12px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 12px;
    text-align: center;
}

.leadership-title {
    font-size: 36px;
    line-height: 1.15;
    font-weight: 500;
    letter-spacing: -.01em;
    text-align: center;
    margin: 0 0 8px;
}

.leadership-sub {
    text-align: center;
    color: var(--muted);
    font-size: 17px;
    margin: 0 auto;
    max-width: 600px;
}

.leadership-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.leader-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 24px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform .3s ease, box-shadow .3s ease;
}

.leader-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, .06);
}

.leader-card_photo {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: var(--soft);
}

.leader-card_photo img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
}

.leader-card_body {
    padding: 28px 26px 26px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.leader-card_header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 18px;
}

.leader-card_name {
    font-size: 21px;
    font-weight: 500;
    line-height: 1.2;
    margin: 0 0 4px;
}

.leader-card_role {
    font-size: 11px;
    letter-spacing: .05em;
    text-transform: uppercase;
    color: var(--accent);
    margin: 0;
    font-weight: 600;
}

.leader-card_linkedin {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    border: 1px solid var(--border);
    color: var(--muted);
    transition: color .2s ease, border-color .2s ease, background .2s ease;
    text-decoration: none;
}

.leader-card_linkedin:hover {
    color: #fff;
    background: #0A66C2;
    border-color: #0A66C2;
}

.leader-card_linkedin svg {
    width: 16px;
    height: 16px;
    display: block;
}

.leader-card_quote {
    font-size: 16px;
    line-height: 1.55;
    color: var(--fg);
    margin: 0;
    font-weight: 400;
}

.leader-card_quote .q {
    color: var(--accent);
    font-size: 1.2em;
    font-weight: 500;
}

@media (max-width: 960px) {
    .leadership-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        max-width: 520px;
        margin-left: auto;
        margin-right: auto;
    }

    .leadership-title {
        font-size: 28px;
    }
}

.architecture-new {
    background: var(--bg);
}

.arch-card-wrap {
    position: relative;
    border-radius: 24px;
    border: 1px solid var(--border);
    background: linear-gradient(135deg, rgba(244, 243, 240, 0.4), var(--bg) 50%, rgba(217, 106, 62, 0.04));
    padding: 2rem;
    box-shadow: 0 30px 80px -40px rgba(40, 30, 25, 0.15);
    overflow: hidden;
}

.arch-card-wrap::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(to right, rgba(42, 34, 29, 0.06) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(42, 34, 29, 0.06) 1px, transparent 1px);
    background-size: 32px 32px;
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
    pointer-events: none;
}

.arch-card-wrap .arch_shadow {
    background: radial-gradient(60% 60% at 50% 40%, color-mix(in oklab, var(--accent) 22%, transparent) 0%, transparent 70%);
    width: 280px;
    left: 0;
    bottom: 0.25rem;
    position: absolute;
    pointer-events: none;
    height: 100%;
    right: 0;
    margin: auto;
}

.arch-card-wrap>* {
    position: relative;
}

@media (min-width: 768px) {
    .arch-card-wrap {
        padding: 2.5rem;
    }
}

.architecture-new .arch3 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    position: relative;
}

@media (min-width: 768px) {
    .architecture-new .arch3 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.architecture-new .arch-card-out {
    border: 1px solid color-mix(in oklab, var(--accent) 25%, transparent);
    border-radius: 14px;
    background: #fff;
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .8s ease, transform .8s cubic-bezier(.22, 1, .36, 1), box-shadow .5s ease;
}

.architecture-new.in .arch-card-out {
    opacity: 1;
    transform: none;
    filter: none
}

.architecture-new.in .arch3-col:nth-of-type(1) {
    transition-delay: .05s
}

.architecture-new.in .arch3-col:nth-of-type(3) {
    transition-delay: .7s
}

.architecture-new.in .arch3-col:nth-of-type(5) {
    transition-delay: 1.35s
}

.architecture-new.in .powered-card {
    transition-delay: 2s
}

.architecture-new .arch-emph {
    border-color: rgba(226, 106, 69, .45);
    box-shadow: 0 0 0 0 rgba(226, 106, 69, .4);
    animation: archPulse 2.6s ease-in-out 2.4s infinite
}

@keyframes archPulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(226, 106, 69, .35)
    }

    50% {
        box-shadow: 0 0 0 8px rgba(226, 106, 69, 0)
    }
}

.architecture-new .arch-card-out {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .8s ease, transform .8s cubic-bezier(.22, 1, .36, 1), box-shadow .5s ease;
}

.architecture-new.in-view .arch-card-out {
    opacity: 1;
    transform: translateY(0);
}

.architecture-new.in-view .arch-card-out[data-col="left"] {
    transition-delay: .1s;
}

.architecture-new.in-view .arch-card-out.emphasized {
    transition-delay: .35s;
}

.architecture-new.in-view .arch-card-out[data-col="right"] {
    transition-delay: .6s;
}

.architecture-new .arch-steps li.active {
    background: rgba(217, 106, 62, 0.10);
    box-shadow: 0 0 24px -4px var(--accent);
}

.architecture-new .arch-steps li.active .num-pill {
    background: var(--accent);
    color: #fff;
    box-shadow: 0 0 14px var(--accent);
}

.architecture-new .arch-card-out.pulse {
    box-shadow: 0 0 40px -4px var(--accent);
    background: rgba(217, 106, 62, 0.05);
    transform: translateY(-2px);
}

.architecture-new .arch-arrow {
    display: none;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 64px;
    height: 12px;
    color: var(--accent);
    z-index: 5;
    align-items: center;
    opacity: 0;
    transition: opacity .6s ease .8s;
}

.architecture-new .arch-arrow.mobile_arch_arrow,
.architecture-new .arch-powered.mobile_arch_powered {
    display: none;
}

.architecture-new.in-view .arch-arrow {
    opacity: 1;
}

.architecture-new .arch-arrow.arch-arrow-3 {
    position: relative;
    flex-direction: column;
    margin: 0;
    height: auto;
    top: 0;
    transform: none;
}

.architecture-new .arch-arrow.arch-arrow-3 .aa-dot-start,
.architecture-new .arch-arrow.arch-arrow-3 .aa-dot-end,
.architecture-new .arch-arrow.arch-arrow-3 svg {
    position: relative;
    margin: 0;
    top: 0;
    transform: none;
}

.architecture-new .arch-arrow.arch-arrow-3 svg {
    width: 2px;
    height: 40px;
    left: 0;
    right: 0;
}

.architecture-new .arch-arrow.arch-arrow-3 .aa-orbit {
    top: 0;
    margin: 2px 0 0 0px;
    left: 50%;
    animation: 2.4s cubic-bezier(.65, 0, .35, 1) infinite orbit-y;
}

@keyframes orbit-y {
    0% {
        opacity: 0;
        transform: translate(-50%)translateY(0);
    }

    15% {
        opacity: 1;
    }

    85% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: translate(-50%)translateY(100%);
    }
}

@media (min-width: 768px) {
    .arch-arrow {
        display: flex;
    }

    .arch-arrow-1 {
        left: 33.33%;
    }

    .arch-arrow-2 {
        left: 66.66%;
    }
}

.architecture-new .arch-arrow svg {
    position: absolute;
    left: 8px;
    right: 8px;
    width: calc(100% - 16px);
    height: 2px;
    top: 50%;
}

.architecture-new .arch-arrow .animate-dash-flow {
    animation: 1.2s linear infinite dash-flow;
}

@keyframes dash-flow {
    10% {
        stroke-dashoffset: -24px;
    }
}


.architecture-new .aa-dot-start,
.architecture-new .aa-dot-end {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
}

.architecture-new .aa-dot-start {
    left: 0;
    background: var(--accent);
    box-shadow: 0 0 10px var(--accent);
}

.architecture-new .aa-dot-end {
    right: 0;
    border: 1.5px solid var(--accent);
    background: var(--surface);
}

.architecture-new .aa-orbit {
    position: absolute;
    left: 0;
    top: 50%;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 10px var(--accent);
    animation: 2.4s cubic-bezier(.65, 0, .35, 1) infinite aa-orbit;
    margin: -3px 0 0;
}

@keyframes aa-orbit {
    0% {
        opacity: 0;
        transform: translate(0);
    }

    15% {
        opacity: 1;
    }

    85% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: translate(100%);
    }
}

.architecture-new .arch-col-head {
    padding: 12px 18px;
    background: color-mix(in oklab, var(--accent) 8%, transparent);
    border-bottom: 1px solid color-mix(in oklab, var(--accent) 20%, transparent);
    font-size: 11px;
    font-weight: normal;
    letter-spacing: .18em;
    color: oklch(18% .015 40);
    line-height: 1.5;
    border-radius: 14px 14px 0 0;
}

.architecture-new .arch-col-body {
    padding: 22px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 14px
}

.architecture-new .arch-col-body.center {
    align-items: center;
    justify-content: center
}

.architecture-new .arch-col-label {
    font-size: 11px;
    font-weight: normal;
    letter-spacing: .18em;
    color: oklch(38% .015 40);
    text-transform: uppercase;
    margin: 0;
}

.architecture-new .arch-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0;
    font-size: 15px;
    color: var(--fg)
}

.architecture-new .arch-list li {
    margin-bottom: 8px;
}

.architecture-new .arch-list li:last-child {
    margin-bottom: 0;
}

.architecture-new .arch-list.center {
    text-align: center
}

.architecture-new .arch-list .muted-it {
    font-style: italic;
    color: var(--muted)
}

.architecture-new .arch-steps {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px
}

.architecture-new .arch-steps li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--fg);
    padding: 4px 6px;
    border-radius: 8px;
}

.architecture-new .num-pill {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--secondary);
    color: var(--muted);
    font-size: 11px;
    display: inline-flex;
    align-items: center;
    justify-content: center
}

.architecture-new .arch-foot {
    padding-top: 14px;
    border-top: 1px solid color-mix(in oklab, var(--border) 40%, transparent);
    font-size: 10px;
    letter-spacing: .2em;
    color: var(--muted);
    text-align: center;
    margin: 4px 0 10px;
}

.architecture-new .arch-col-logo {
    max-width: 160px;
    margin: auto;
}

.architecture-new .arch-wb {
    padding-bottom: 14px;
    border-bottom: 1px solid color-mix(in oklab, var(--border) 40%, transparent);
}

.architecture-new .arch-wb:last-child {
    border-bottom: 0;
    padding-bottom: 0
}

.architecture-new .arch-wb h6 {
    font-size: 15px;
    font-weight: 400;
    margin-bottom: 4px
}

.architecture-new .arch-wb p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.5
}

.architecture-new .arch-arrow {
    display: none;
    align-items: center;
    justify-content: center;
    margin-right: -12px;
    z-index: 9;
}

@media (min-width:900px) {
    .architecture-new .arch-arrow {
        display: flex
    }
}

.architecture-new .arch-arrow .arrow-path,
.architecture-new .arch-arrow .arrow-head {
    stroke: var(--muted);
    stroke-width: 1.5;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 60;
    stroke-dashoffset: 60;
    transition: stroke-dashoffset 1.2s ease-out
}

.architecture-new.in .arch-arrow-1 .arrow-path,
.architecture-new.in .arch-arrow-1 .arrow-head {
    stroke-dashoffset: 0;
    transition-delay: .6s
}

.architecture-new.in .arch-arrow-2 .arrow-path,
.architecture-new.in .arch-arrow-2 .arrow-head {
    stroke-dashoffset: 0;
    transition-delay: 1.25s
}

.architecture-new .arch-powered {
    display: flex;
    flex-direction: column;
    align-items: center
}

.architecture-new .arch-vline {
    width: 1px;
    height: 32px;
    background: var(--border)
}

.architecture-new .powered-card {
    width: 100%;
    max-width: 380px
}

.architecture-new .arch-quote {
    margin-top: 40px;
    text-align: center;
    font-style: italic;
    font-size: 16px;
    color: var(--muted)
}

.page_info_sec .page_desc p {
    font-size: 16px;
    line-height: 1.625;
    color: rgba(34, 28, 25, 0.85);
}

.page_info_sec .page_desc ul {
    list-style: disc;
    padding: 0 0 0 15px;
}

.page_info_sec .page_desc ul li {
    margin: 0 0 8px;
}

.page_info_sec .page_desc ul li:last-child {
    margin-bottom: 0;
}

.page_info_sec .page_desc p a {
    color: var(--accent);
}

/* Footer Section */
body #page footer.site-footer{
    position: relative;
  border-top: 1px solid var(--border);
  padding: 40px 0;
  background: #fff;
}
body #page footer.site-footer .footer-widgets-sec{
    padding-bottom: 30px;
}
body #page footer.site-footer .footer-widgets{
    display: flex;
}

body #page footer.site-footer .footer-widgets .footer-widget:nth-child(2), 
body #page footer.site-footer .footer-widgets .footer-widget:last-child{
    margin-left: auto;
}
body #page footer.site-footer .footer-widgets .footer-widget:first-child{
    max-width: 31%;
}
body #page footer.site-footer .footer-widgets .footer-widget .footer-logo img{
    max-width: 160px;
    display: block;
    margin-bottom: 15px;
}
body #page footer.site-footer .footer-widgets .footer-widget .widget_heading{
font-size: 20px;
  line-height: 1.5;
  margin: 0 0 14px;
  font-weight: 400;
}
body #page footer.site-footer .footer-widgets .footer-widget .social_media ul{
display: flex;
  gap: 0 14px;
}
body #page footer.site-footer .footer-widgets .footer-widget .social_media ul li a{
    display: block;
}
body #page footer.site-footer .footer-widgets .footer-widget .social_media ul li a .social_media_box{
background: color-mix(in oklab, var(--accent) 8%, transparent);
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid color-mix(in oklab, var(--accent) 25%, transparent);
}
body #page footer.site-footer .footer-widgets .footer-widget .social_media ul li a svg{
color: var(--accent);
  fill: var(--accent);
  width: 24px;
  height: 24px;
  display: block;
  opacity: 0.9;
}
body #page footer.site-footer .footer-widgets .footer-widget .footer_certify_list ul{
display: flex;
  gap: 15px;
}
body #page footer.site-footer .footer-widgets .footer-widget .footer_certify_list ul li a{
    display: block;
}
body #page footer.site-footer .footer-widgets .footer-widget .footer_certify_list ul li img{
height: 52px;
  display: block;
}
.footer-copyright-sec .footer-copyright{
border-top: 1px solid var(--border);
padding-top: 30px;
}
.footer-copyright-sec .footer-copyright .footer_bottom{
    display: flex;
}
.footer-copyright-sec .footer-copyright .footer_bottom .footer_terms{
    margin-left: auto;
}
.footer-copyright-sec .footer-copyright .footer_bottom .footer_terms p span{
    margin: 0 6px;
}

@media(max-width:900px) {
    .about-hero .mosaic {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 140px;
        grid-auto-rows: inherit;
        margin-bottom: 30px;
    }

    .about-hero .mosaic .tile {
        height: auto;
    }

    .quote-grid {
        grid-template-columns: 1fr;
        gap: 48px
    }
}

@media(min-width:768px) {
    .who_we_sec .timeline-line {
        display: block
    }

    .who_we_sec .big-numeral {
        display: block
    }

    .who_we_sec .row {
        grid-template-columns: 1fr 1fr;
        gap: 56px
    }

    .who_we_sec .row.reverse .col.text {
        order: 1
    }

    .who_we_sec .row.reverse .col.card-wrap {
        order: 0
    }

    .who_we_sec .node {
        display: block
    }

    .who_we_sec .row:not(.reverse) .col.text {
        text-align: right;
        padding-right: 56px
    }

    .who_we_sec .row.reverse .col.text {
        padding-left: 56px
    }

    .who_we_sec .row:not(.reverse) .col.card-wrap {
        padding-left: 56px
    }

    .who_we_sec .row.reverse .col.card-wrap {
        padding-right: 56px
    }

    .who_we_sec .row:not(.reverse) .chips {
        justify-content: flex-end
    }
}

@media (max-width: 767px) {
    .where-fits .where_watermark {
        display: none;
    }

    .container,
    .container-sm,
    .container-exsm,
    .container.narrow,
    .hero-grid {
        padding-left: 10px;
        padding-right: 10px;
    }

    .cap-card .cap-desc,
    .cap-card .cap-tags {
        opacity: 1;
        transform: none;
    }

    .cap-card .cap-card-icon {
        display: none;
    }

    .cap-card .explore {
        position: static;
        margin-top: 18px;
    }

    .pt_120 {
        padding-top: 30px;
    }

    .pb_120 {
        padding-bottom: 30px;
    }

    .pt_95 {
        padding-top: 30px;
    }

    .pb_95 {
        padding-bottom: 30px;
    }

    .pt_80 {
        padding-top: 30px;
    }

    .pb_80 {
        padding-bottom: 30px;
    }

    .mb_32 {
        margin-bottom: 20px;
    }

    .mb_80 {
        margin-bottom: 30px;
    }

    .mb_64 {
        margin-bottom: 30px;
    }

    .mb_40 {
        margin-bottom: 30px;
    }

    .mt_20 {
        margin-top: 15px;
    }

    .hero h1 {
        font-size: 34px;
        line-height: 1.4;
        margin-bottom: 15px;
    }

    .hero .sub {
        font-size: 24px;
    }

    .hero .body {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .hero .body br {
        display: none;
    }

    .page_sec_title .h2 {
        font-size: 32px;
    }

    .page_sec_title .h2.small {
        font-size: 26px;
    }

    .page_sec_title .h2.small br,
    .page_sec_title .lead br {
        display: none;
    }

    .page_sec_title .lead {
        font-size: 16px;
    }

    .pillar .img-layer .label {
        display: none;
    }

    .pillar .content-layer {
        opacity: 1;
        background: none;
    }

    .pillar .content-layer ul {
        opacity: 1;
    }

    .where-fits .headline-block {
        padding: 20px;
    }

    .where-fits .headline-block .h3 {
        font-size: 22px;
    }

    .architecture {
        padding: 15px;
    }

    .capabilities {
        padding: 20px;
    }

    .cap-card,
    .quote-card {
        padding: 20px;
    }

    .quote-card p.quote {
        font-size: 22px;
    }

    .quote-card {
        margin-bottom: 20px;
    }

    .stat {
        padding: 20px;
    }

    .interp-wrap .lbl {
        margin-bottom: 16px;
    }

    .interp {
        inset: inherit;
        position: absolute;
        right: 0;
        top: -40px;
    }

    .interp-head .interp-nav .nav-btn {
        width: 26px;
        height: 26px;
    }

    .interp-nav .nav-btn svg {
        width: 18px;
        height: 18px;
    }

    .interp-head .interp_title,
    .interp-head .interp-nav .interp-count {
        display: none;
    }

    .interp-head {
        margin-bottom: 0;
    }

    .interp h3 {
        font-size: 28px;
        margin-bottom: 10px;
    }

    .interp p {
        font-size: 16px;
    }

    .interp-wrap {
        min-height: 240px;
    }

    .layer {
        gap: 10px;
        padding: 12px 18px;
    }

    .layer.highlight {
        flex-direction: column;
        align-items: start;
    }

    .layer .tag {
        margin-left: 20px;
    }

    .arch-card-wrap {
        padding: 15px;
    }

    .architecture-new .arch-col-body {
        padding: 20px;
    }

    .page_sec_title .h2.exsmall {
        font-size: 26px;
    }

    .tab {
        padding: 12px 16px;
    }

    .wb-grid {
        gap: 25px;
    }

    .cmd-bar {
        margin-top: 30px;
    }

    .where-fits .grid {
        gap: 30px;
    }

    .dialog-backdrop {
        padding: 12px;
    }

    .dialog {
        padding: 15px;
    }

    .architecture-new .arch3 {
        gap: 0;
    }

    .architecture-new .arch-arrow.mobile_arch_arrow,
    .architecture-new .arch-powered.mobile_arch_powered {
        display: flex;
    }

    .architecture-new .arch-arrow.arch-arrow-3 {
        display: flex;
        margin: auto;
    }

    .architecture-new .arch-powered.desktop_arch_powered {
        display: none;
    }

    .ledger .ledger-row .ledger_row_mobile {
        display: block;
        padding-top: 12px;
    }

    .ledger .ledger-row .ledger_row_inner {
        grid-template-columns: 70px 1fr auto;
        gap: 5px;
    }

    .ledger .ledger-row .v {
        font-size: 16px;
    }

    .ledger .ledger-row .ledger_row_mobile h3 {
        font-size: 20px;
        font-weight: 400;
        line-height: 1.25;
        margin-bottom: 10px;
    }

    .ledger .ledger-row .ledger_row_mobile p {
        color: rgba(34, 28, 25, .7);
        font-size: 14px;
        line-height: 1.625;
        margin-bottom: 14px;
    }

    .ledger .ledger-row .ledger_row_mobile .cite {
        display: flex;
        align-items: center;
        gap: 8px;
        margin-top: 24px;
        font-size: 11px;
        font-weight: 400;
        letter-spacing: .2em;
        text-transform: uppercase;
        color: #f86e42;
    }

    .ledger .ledger-row .ledger_row_mobile .cite::before {
        content: "";
        width: 32px;
        height: 1px;
        background: #f86e42;
    }

    .ledger .ledger-row {
        padding: 15px;
    }

    .interp-body {
        display: none;
    }

    .impact .grid {
        gap: 0;
        position: relative;
    }

    .powered-by.mobile_powered_by {
        display: flex;
    }

    .powered-by {
        margin-top: 0;
        padding: 12px;
    }

    .powered-by.desktop_powered_by {
        display: none;
    }

    .architecture .architecture_inner {
        gap: 30px;
    }

    .powered-by .label {
        margin-bottom: 5px;
    }

    .powered-by .sep {
        display: none;
    }

    body .ast-mobile-header-wrap .ast-mobile-header-content {
        box-shadow: 0 4px 10px -2px rgba(0, 0, 0, .1);
        padding: 10px 0;
    }

    body .ast-builder-menu-mobile .main-navigation .menu-item.current-menu-item>.menu-link {
        color: var(--accent);
        background: none;
    }

    body .ast-header-break-point .main-navigation ul .menu-item .menu-link {
        line-height: 40px;
        color: var(--muted);
    }

    body .ast-builder-menu-mobile .main-navigation .menu-item.menu-item-has-children>.ast-menu-toggle {
        width: 26px;
        padding: 0;
        outline: none;
        color: var(--accent) !important;
        box-shadow: none;
    }

    .ast-header-break-point .ast-icon.icon-arrow svg {
        margin: 0 !important;
    }

    .ast-header-break-point .main-navigation ul .sub-menu .menu-item:not(.menu-item-has-children) .menu-link .icon-arrow:first-of-type {
        display: none !important;
    }

    .ast-mobile-header-wrap .ast-button-wrap .menu-toggle.main-header-menu-toggle {
        border: none !important;
        outline: none !important;
    }

    body .ast-builder-menu-mobile .main-navigation .menu-link:hover,
    body .ast-builder-menu-mobile .main-navigation .main-header-menu>.menu-item:hover>.menu-link,
    body .ast-builder-menu-mobile .main-navigation .inline-on-mobile .ast-menu-toggle:hover,
    body .ast-builder-menu-mobile .main-navigation .inline-on-mobile .main-header-menu>.menu-item:hover>.ast-menu-toggle {
        color: var(--muted);
        background: none;
    }

    .page_sec_title .h2.ft_54 {
        font-size: 32px;
    }

    .info-card {
        padding: 15px;
    }

    .info-card h3 {
        font-size: 22px;
    }

    .who_we_sec .row {
        gap: 20px;
        padding-bottom: 30px;
    }

    .who_we_sec .row.reverse .col.card-wrap {
        order: 1;
    }

    .who_we_sec .row.reverse .col.text {
        order: 0;
    }

    .who_we_sec .output {
        padding: 20px;
    }

    .who_we_sec .output p br {
        display: none;
    }

    .quote-grid .quote {
        font-size: 20px;
    }

    .attribution {
        margin: 18px 0 12px;
    }

    .quote-grid {
        gap: 30px;
    }
    body #page footer.site-footer .footer-widgets{
        display: block;
    }
    body #page footer.site-footer .footer-widgets .footer-widget:first-child{
        max-width: 100%;
    }
    body #page footer.site-footer .footer-widgets .footer-widget{
        margin: 0 0 25px;
    }
    body #page footer.site-footer .footer-widgets .footer-widget:nth-child(2), 
    body #page footer.site-footer .footer-widgets .footer-widget:last-child{
        margin-left: 0;
    }
    body #page footer.site-footer .footer-widgets .footer-widget:last-child{
        margin-bottom: 0;
    }
    .footer-copyright-sec .footer-copyright .footer_bottom{
        display: block;
        text-align: center;
    }
    .footer-copyright-sec .footer-copyright .footer_bottom .footer_terms{
        margin: 12px 0 0;
    }
    .footer-copyright-sec .footer-copyright{
        padding-top: 25px;
    }
    body #page footer.site-footer .footer-widgets-sec{
        padding-bottom: 25px;
    }
    body #page footer.site-footer{
        padding: 30px 0;
    }
}

@media(min-width:640px) {
    .who_we_sec .stats {
        grid-template-columns: repeat(3, 1fr)
    }
}