@font-face {
    font-family: 'Comfortaa-Bold';
    src: url('fonts/Comfortaa-Bold.ttf') format('truetype');
    font-display: swap;
}

@font-face {
    font-family: 'Comfortaa-Medium';
    src: url('fonts/Comfortaa-Medium.ttf') format('truetype');
    font-display: swap;
}

@font-face {
    font-family: 'Comfortaa-Regular';
    src: url('fonts/Comfortaa-Regular.ttf') format('truetype');
    font-display: swap;
}

:root {
    --primary-color: #0d6efd;
    --hero-subtitle-y: -20px;
    --hero-eyebrow-y: -200px;
    --hero-desc-y: 140px;
    --hero-cta-y: 260px;

    /* Embedded stylesheet variables */
    --way-blue: #4878C4;
    --deep-blue: #27406E;
    --ink: #1E2A40;
    --sky: #EEF3FB;
    --sky-2: #DCE7F7;
    --wise-green: #1F8A5F;
    --white: #FFFFFF;
    --radius: 14px;
    --display: 'Quicksand', sans-serif;
    --body: 'Figtree', sans-serif;
}

/* ---------- Global Resets & Common Classes ---------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--body);
    color: var(--ink);
    background: var(--white);
    line-height: 1.65;
    font-size: 17px;
}

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

.wrap {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 24px;
}

.narrow {
    max-width: 780px;
}

/* Dashed path motif */
.path-rule {
    border: none;
    border-top: 2px dashed var(--wise-green);
    opacity: .55;
    width: 72px;
    margin: 0 0 20px;
}

.path-rule.center {
    margin: 0 auto 20px;
}

.eyebrow {
    display: inline-block;
    font-family: var(--display);
    font-weight: 600;
    font-size: .82rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    margin-bottom: 18px;
    color: var(--wise-green);
}

section {
    padding: 88px 0;
}

h2 {
    font-family: var(--display);
    font-weight: 600;
    font-size: clamp(1.7rem, 3.2vw, 2.3rem);
    letter-spacing: -.01em;
    margin-bottom: 14px;
    color: var(--deep-blue);
}

.lede {
    font-size: 1.1rem;
    color: #4A5670;
    max-width: 640px;
}

/* ---------- Navigation ---------- */
header {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--sky-2);
    z-index: 50;
}

nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo {
    font-family: var(--display);
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--way-blue);
    letter-spacing: -.01em;
    display: inline-flex;
    align-items: center;
}

.logo img {
    height: 60px;
    width: auto;
    display: block;
}

.logo-img-foot {
    height: 45px;
    width: auto;
    display: block;
}

.logo span {
    color: var(--wise-green);
}

.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
    font-size: .95rem;
    font-weight: 500;
}

.nav-links a {
    color: var(--deep-blue);
    transition: color .2s;
}

.nav-links a.btn-primary {
    color: var(--white);
}

.nav-links a.btn-primary:hover {
    color: var(--white);
}

.nav-links a.btn-primary:active {
    color: var(--deep-blue);
    background: var(--white);
}

.nav-links a:hover {
    color: var(--way-blue);
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-block;
    padding: 11px 24px;
    border-radius: 0;
    font-weight: 600;
    font-size: .95rem;
    transition: transform .15s, box-shadow .15s, background .2s;
    cursor: pointer;
    border: none;
    font-family: var(--body);

}

.btn:focus-visible,
a:focus-visible {
    outline: 3px solid var(--way-blue);
    outline-offset: 3px;
}

.btn-primary {
    background: var(--way-blue);
    color: var(--white);
}

.btn-primary:hover {
    background: #3A66AE;
    transform: translateY(-1px);
}

.btn-ghost {
    border: 2px dashed var(--wise-green);
    color: var(--wise-green);
    background: transparent;
}

.btn-ghost:hover {
    background: #F0F8F4;
}

/* ---------- Hero (Standard / Old) ---------- */
.hero {
    position: relative;
    background: var(--way-blue);
    color: var(--white);
    overflow: hidden;
}

.hero .wm {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--display);
    font-weight: 700;
    font-size: clamp(11rem, 30vw, 24rem);
    color: rgba(255, 255, 255, .08);
    user-select: none;
    pointer-events: none;
    letter-spacing: -.04em;
    white-space: nowrap;
}

.hero-inner {
    position: relative;
    padding: 120px 0 110px;
    text-align: center;
}

.hero h1 {
    font-family: var(--display);
    font-weight: 600;
    font-size: clamp(2.2rem, 5vw, 3.4rem);
    line-height: 1.15;
    max-width: 760px;
    margin: 0 auto 20px;
    letter-spacing: -.015em;
}

.hero p {
    font-size: 1.18rem;
    max-width: 580px;
    margin: 0 auto 36px;
    color: #E4ECFA;
}

.hero .actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero .btn-primary {
    background: var(--white);
    color: var(--way-blue);
}

.hero .btn-primary:hover {
    background: #F2F6FD;
}

#meet-cta {
    padding-top: 13px;
    padding-bottom: 9px;
}

.hero .btn-ghost {
    border-color: rgba(255, 255, 255, .85);
    color: var(--white);
}

.hero .btn-ghost:hover {
    background: rgba(255, 255, 255, .1);
}

.hero .eyebrow {
    color: var(--white);
}

/* ---------- Page Hero (For Enterprise) ---------- */
.page-hero {
    background: var(--deep-blue);
    color: var(--white);
    padding: 84px 0 76px;
    position: relative;
    overflow: hidden;
}

.page-hero .wm {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    font-family: var(--display);
    font-weight: 700;
    font-size: clamp(9rem, 26vw, 20rem);
    color: rgba(255, 255, 255, .06);
    user-select: none;
    pointer-events: none;
    white-space: nowrap;
    padding-right: 5%;
}

.page-hero .inner {
    position: relative;
}

.page-hero .eyebrow {
    color: var(--white);
}

.page-hero h1 {
    font-family: var(--display);
    font-weight: 600;
    font-size: clamp(2rem, 4.4vw, 3rem);
    line-height: 1.15;
    max-width: 680px;
    margin: 18px 0 18px;
    letter-spacing: -.015em;
}

.page-hero p {
    font-size: 1.15rem;
    max-width: 600px;
    color: #C9D6EE;
}

/* ---------- Product / EQ Agent Section ---------- */
.product {
    background: var(--white);
}

.product-row {
    background-image: url('images/bg-product-grid.jpg') !important;
    background-size: cover !important;
    background-position: top center !important;
    background-repeat: no-repeat !important;
    min-height: 650px;
    display: flex;
    flex-direction: column;
}

.product-row .wrap:last-child {
    margin-top: auto;
    padding-bottom: 40px;
}

.extra-margin {
    margin-bottom: 80px;
}

.custom-content {
    color: #676759;
    font-family: 'Comfortaa-Bold', sans-serif;
    font-weight: normal;
}

.override-section {
    padding-bottom: 0px;
}

.product-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 64px;
    align-items: center;
    margin-top: 8px;
}

.mirror-card {
    background: var(--sky);
    border-radius: var(--radius);
    padding: 36px;
    border: 1px solid var(--sky-2);
}

.chat-line {
    display: flex;
    gap: 12px;
    margin-bottom: 18px;
    align-items: flex-start;
}

.chat-dot {
    flex: none;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--way-blue);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--display);
    font-weight: 700;
    font-size: .8rem;
}

.chat-dot.you {
    background: var(--wise-green);
}

.bubble {
    background: var(--white);
    border-radius: 12px;
    padding: 12px 16px;
    font-size: .94rem;
    box-shadow: 0 1px 2px rgba(30, 42, 64, .06);
}

.steps {
    list-style: none;
    margin-top: 28px;
}

.steps li {
    display: flex;
    gap: 16px;
    margin-bottom: 22px;
}

.steps .n {
    flex: none;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 2px dashed var(--wise-green);
    color: var(--wise-green);
    font-family: var(--display);
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .95rem;
}

.steps b {
    display: block;
    font-weight: 600;
    color: var(--deep-blue);
}

.steps p {
    font-size: .95rem;
    color: #4A5670;
}

/* Product Columns Layout */
.product-columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    padding: 0px;
}

.product-column {
    background-color: rgba(131, 142, 162, 0.5);
    min-height: 320px;
    min-width: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
    position: relative;
    overflow: hidden;
}

.product-column:hover {
    background-color: rgba(131, 142, 162, 0.65);
}

.column-content {
    background: transparent;
    border: 3px dashed var(--white);
    border-radius: 50%;
    width: 180px;
    height: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.column-number {
    font-weight: normal;
    font-size: 5rem;
    color: var(--white);
    margin-bottom: -8px;
    padding: 0px;
    font-family: 'Comfortaa-Bold', sans-serif;
    line-height: 1;
}

.column-label {
    font-weight: normal;
    font-size: 1.3rem;
    color: var(--white);
    font-family: 'Comfortaa-Bold', sans-serif;
}

.column-text {
    color: var(--white);
    font-family: 'Comfortaa-Bold', sans-serif;
    font-size: 1.55rem;
    text-align: left;
    padding: 32px 20px;
    max-width: 280px;
    line-height: 1.6;
    opacity: 0;
    transition: opacity 0.3s ease;
    position: absolute;
    font-family: var(--body);
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.product-column:hover .column-content {
    opacity: 0;
    pointer-events: none;
}

.product-column:hover .column-text {
    opacity: 1;
}

/* ---------- Markets Section ---------- */
.markets {
    background: var(--sky);
}

.market-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    margin-top: 40px;
}

.market-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 38px 34px;
    border: 1px solid var(--sky-2);
    transition: transform .18s, box-shadow .18s;
    display: flex;
    flex-direction: column;
}

.market-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(39, 64, 110, .10);
}

.market-card h3 {
    font-family: var(--display);
    font-weight: 600;
    font-size: 1.35rem;
    color: var(--deep-blue);
    margin-bottom: 12px;
}

.market-card p {
    font-size: .98rem;
    color: #4A5670;
    margin-bottom: 18px;
}

.market-card ul {
    list-style: none;
    margin-bottom: 26px;
}

.market-card li {
    font-size: .94rem;
    padding: 7px 0 7px 26px;
    position: relative;
    color: #3A4660;
}

.market-card li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 15px;
    width: 14px;
    border-top: 2px dashed var(--wise-green);
}

.market-card .btn {
    margin-top: auto;
    align-self: flex-start;
}

.tag {
    display: inline-block;
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--way-blue);
    background: var(--sky);
    border-radius: 999px;
    padding: 5px 14px;
    margin-bottom: 16px;
}

/* ---------- Research Section ---------- */
.research {
    background-image: url('images/bg-pitch-deck-2.jpg') !important;
    background-size: cover !important;
    background-position: top center !important;
    background-repeat: no-repeat !important;
    min-height: 685px;
    display: flex;
    flex-direction: column;
    color: #fff;
    text-align: center;
}

.research-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px !important;
    margin-top: 40px;
    margin-bottom: 40px;
}

.research h2,
.research .eyebrow,
.research .lede,
.partner h2,
.partner .eyebrow,
.partner .lede {
    color: #fff !important;
    font-family: 'Comfortaa-Regular', sans-serif;
    font-weight: 300 !important;
}

.research .eyebrow,
.partner .eyebrow {
    font-size: 1.25rem;
    text-transform: uppercase;
}

.research h2,
.partner h2 {
    font-size: 2.5rem;
}

.research .lede,
.partner .lede {
    font-size: 1.25rem;
    max-width: inherit;
}

.research .fact {
    font-size: 1.5rem;
    border-left: none;
    border-radius: 0px;
    border: none;
    background-color: #828EA3;
    color: #fff;
    padding: 26px 24px;
}

.research .fact b,
.research .fact p {
    font-family: 'Comfortaa-Regular', sans-serif;
    font-weight: 100 !important;
    text-align: left;
    font-size: 1.5rem;
    color: #fff;
}

.research .fact b {
    display: block;
    margin-bottom: 8px;
}

.research .fact p {
    font-size: 1.19rem;
}

.research .btn,
.partner .btn {
    background-color: rgba(255, 255, 255, 0) !important;
    color: #fff;
    border: 1px solid #fff;
    text-transform: uppercase;
    font-family: 'Comfortaa-Regular', sans-serif;
    font-weight: 100 !important;
    font-size: 1.25rem;
    padding: 11px 50px;
}

.research .btn:hover,
.partner .btn:hover {
    background-color: rgba(255, 255, 255, .85) !important;
    color: #828EA3;
}

/* ---------- Integration Section ---------- */
.integrate {
    background: var(--sky);
}

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

.int-card {
    border: 1px solid var(--sky-2);
    border-left: 3px solid var(--wise-green);
    border-radius: 0 var(--radius) var(--radius) 0;
    padding: 28px 26px;
    background: var(--white);
}

.int-card h3 {
    font-family: var(--display);
    font-weight: 600;
    font-size: 1.12rem;
    color: var(--deep-blue);
    margin-bottom: 10px;
}

.int-card p {
    font-size: .96rem;
    color: #4A5670;
}

/* ---------- About Section ---------- */
.about {
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 56px;
    align-items: start;
    margin-top: 8px;
}

.about-card {
    background: var(--sky);
    border: 1px solid var(--sky-2);
    border-radius: var(--radius);
    padding: 34px;
    position: sticky;
    top: 96px;
}

.about-card .role {
    font-family: var(--display);
    font-weight: 600;
    color: var(--way-blue);
    font-size: 1.3rem;
    margin-bottom: 4px;
}

.about-card .title {
    font-size: .95rem;
    color: #4A5670;
    margin-bottom: 20px;
}

.about-card ul {
    list-style: none;
}

.about-card li {
    font-size: .93rem;
    padding: 8px 0 8px 26px;
    position: relative;
    color: #3A4660;
    border-top: 1px solid var(--sky-2);
}

.about-card li:first-child {
    border-top: none;
}

.about-card li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 17px;
    width: 14px;
    border-top: 2px dashed var(--wise-green);
}

.about-prose p {
    font-size: 1.04rem;
    color: #3A4660;
    margin-bottom: 18px;
}

.about-prose p:first-of-type {
    font-size: 1.12rem;
    color: var(--deep-blue);
}

.about-prose .pull {
    font-family: var(--display);
    font-weight: 600;
    font-size: 1.2rem;
    color: var(--deep-blue);
    border-left: 3px dashed var(--wise-green);
    padding-left: 18px;
    margin: 26px 0;
    line-height: 1.4;
}

/* ---------- Value Section (Enterprise) ---------- */
.value {
    background: var(--white);
}

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

.value-card {
    background: var(--sky);
    border: 1px solid var(--sky-2);
    border-radius: var(--radius);
    padding: 30px 26px;
}

.value-card h3 {
    font-family: var(--display);
    font-weight: 600;
    font-size: 1.15rem;
    color: var(--deep-blue);
    margin-bottom: 10px;
}

.value-card p {
    font-size: .96rem;
    color: #4A5670;
}

/* ---------- FAQ Section (Enterprise) ---------- */
.faq {
    background: var(--sky);
}

.faq-list {
    margin-top: 40px;
    max-width: 820px;
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--sky-2);
    border-left: 3px solid var(--wise-green);
    border-radius: 0 var(--radius) var(--radius) 0;
    padding: 32px 36px;
    margin-bottom: 22px;
}

.faq-item h3 {
    font-family: var(--display);
    font-weight: 600;
    font-size: 1.25rem;
    color: var(--deep-blue);
    margin-bottom: 14px;
    line-height: 1.3;
}

.faq-item p {
    font-size: 1.02rem;
    color: #3A4660;
    margin-bottom: 14px;
}

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

.faq-item .q-num {
    font-family: var(--display);
    font-weight: 700;
    color: var(--wise-green);
    margin-right: 8px;
}

/* ---------- CTA / Partner Section ---------- */
.partner {
    background-color: #7E93AF !important;
    min-height: 460px;
    display: flex;
    flex-direction: column;
    color: #fff;
    text-align: center;
}

.partner-box {
    max-width: 100% !important;
    border: none !important;
    background: none !important;
    padding: 0px !important;
}

.partner-box .lede {
    max-width: 850px !important;
    margin-top: 25px !important;
    margin-bottom: 40px;
}

.cta {
    text-align: center;
    background: var(--white);
}

.cta-box {
    max-width: 720px;
    margin: 0 auto;
    border: 2px solid var(--wise-green);
    border-radius: 0;
    padding: 54px 40px;
    background: #FBFDFC;
}

.cta-box .lede {
    margin: 0 auto 32px;
}

/* ---------- Footer ---------- */
footer {
    background: var(--sky);
    padding: 48px 0;
    font-size: .92rem;
    color: #4A5670;
}

.foot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 18px;
}

.foot .links {
    display: flex;
    gap: 26px;
}

.foot a:hover {
    color: var(--way-blue);
}

/* ---------- Media Queries ---------- */
@media (max-width: 840px) {
    .nav-links {
        display: none;
    }

    .product-grid,
    .market-grid,
    .research-grid,
    .about-grid,
    .integrate-grid,
    .value-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .about-card {
        position: static;
    }

    section {
        padding: 60px 0;
    }

    .hero-inner {
        padding: 88px 0 80px;
    }

    .faq-item {
        padding: 26px 24px;
    }
}

@media (prefers-reduced-motion: reduce) {
    * {
        transition: none !important;
        scroll-behavior: auto;
    }
}
/* ---------- Footer email link ---------- */
.foot a[href^="mailto:"] {
    text-decoration: underline;
    text-underline-offset: 2px;
    text-decoration-color: var(--sky-2);
}

.foot a[href^="mailto:"]:hover {
    color: var(--way-blue);
    text-decoration-color: var(--way-blue);
}


.thanks{min-height:60vh;display:flex;align-items:center;justify-content:center;padding:100px 24px;background:#fff;text-align:center}
.thanks-box{max-width:600px;border:2px solid var(--wise-green,#1F8A5F);background:#FBFDFC;padding:60px 44px}
.thanks .eyebrow{display:inline-block;font-family:'Quicksand',sans-serif;font-weight:600;font-size:.82rem;letter-spacing:.14em;text-transform:uppercase;color:var(--wise-green,#1F8A5F);margin-bottom:14px}
.thanks h1{font-family:'Quicksand',sans-serif;font-weight:600;font-size:clamp(1.7rem,3.4vw,2.3rem);color:var(--deep-blue,#27406E);margin:0 0 16px;letter-spacing:-.015em}
.thanks p{font-family:'Figtree',sans-serif;color:#4A5670;font-size:1.05rem;line-height:1.7;margin:0 0 30px}
.thanks .btn-home{display:inline-block;font-family:'Figtree',sans-serif;font-weight:600;font-size:.95rem;padding:13px 32px;background:var(--way-blue,#4878C4);color:#fff;text-decoration:none;transition:background .2s}
.thanks .btn-home:hover{background:#3A66AE}
