:root {
    --accent: #bb513b;
    --accent-2: #c8604a;
    --accent-dark: #a2452f;
    --navy: #29283a;
    --navy-2: #33324a;
    --ink: #2a2937;
    --body: #5c5b6b;
    --body-light: #7b7a89;
    --cream: #f8f7f3;
    --hero-grad-a: #f4f2f8;
    --hero-grad-b: #fbf6f4;
    --pink: #fbeeea;
    --pink-2: #fceae4;
    --line: #e8e6e1;
    --line-2: #edebe6;
    --white: #ffffff;
    --footer: #f1f1f3;
    --maxw: 1140px;
    --serif: "Newsreader", Georgia, serif;
    --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: var(--sans);
    color: var(--ink);
    background: var(--white);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
img {
    max-width: 100%;
    display: block;
}
a {
    color: inherit;
    text-decoration: none;
}
.wrap {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 24px;
}

/* ---------- shared type ---------- */
.eyebrow {
    font-family: var(--sans);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--accent);
}
.serif {
    font-family: var(--serif);
}
.ital {
    font-style: italic;
    color: var(--accent);
    font-weight: 400;
}
h1,
h2,
h3 {
    font-family: var(--serif);
    font-weight: 500;
    color: var(--ink);
    letter-spacing: -0.01em;
    line-height: 1.08;
}
p {
    color: var(--body);
}

/* ---------- buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--sans);
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 13px 22px;
    border-radius: 9px;
    cursor: pointer;
    border: 1px solid transparent;
    transition: 0.18s;
    white-space: nowrap;
}
.btn-primary {
    background: var(--accent);
    color: #fff;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
}
.btn-primary:hover {
    background: var(--accent-dark);
}
.btn-outline {
    background: transparent;
    color: var(--ink);
    border-color: #d9d6d0;
}
.btn-outline:hover {
    border-color: var(--ink);
}
.btn-outline-light {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.4);
}
.btn-outline-light:hover {
    border-color: #fff;
}

/* ---------- header ---------- */
header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(251, 248, 247, 0.85);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}
.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 74px;
}
.logo {
    display: flex;
    align-items: center;
    gap: 9px;
    font-family: var(--sans);
    font-weight: 700;
    font-size: 15px;
    line-height: 1;
    color: #1d1c28;
}
.logo .mark {
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
}
.logo small {
    display: block;
    font-weight: 500;
    font-size: 13px;
    color: #1d1c28;
}
.nav-mid {
    display: flex;
    align-items: center;
    gap: 30px;
}
.nav-mid a {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #3d3c4c;
    transition: 0.15s;
}
.nav-mid a:hover {
    color: var(--accent);
}
.nav-right {
    display: flex;
    align-items: center;
    gap: 12px;
}
.nav-right .btn {
    padding: 11px 18px;
}
.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: 0;
    cursor: pointer;
    padding: 8px;
}
.burger span {
    width: 24px;
    height: 2px;
    background: #1d1c28;
    border-radius: 2px;
    transition: 0.2s;
}
.mobile-menu {
    display: none;
    flex-direction: column;
    gap: 6px;
    padding: 8px 24px 22px;
    background: var(--hero-grad-b);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.mobile-menu a {
    padding: 11px 0;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #3d3c4c;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.mobile-menu .mm-btns {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 14px;
}

/* ---------- hero ---------- */
.hero {
    background: linear-gradient(180deg, var(--hero-grad-a) 0%, var(--hero-grad-b) 60%, #fbf7f5 100%);
    text-align: center;
    padding: 78px 0 40px;
    position: relative;
}
.hero h1 {
    font-size: clamp(34px, 5.4vw, 62px);
    max-width: 880px;
    margin: 0 auto;
    font-weight: 500;
}
.hero .sub {
    max-width: 560px;
    margin: 26px auto 0;
    font-size: 15px;
    line-height: 1.7;
    color: var(--body);
}
.hero .cta-row {
    display: flex;
    gap: 14px;
    justify-content: center;
    margin-top: 30px;
    flex-wrap: wrap;
}

/* founder card */
.founder-band {
    background: linear-gradient(180deg, #fbf7f5, #f4f1f7);
    padding: 40px 0 0;
    position: relative;
}
.founder {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 24px;
}
.founder-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 18px 50px -28px rgba(40, 40, 60, 0.28);
    display: flex;
    align-items: center;
    gap: 26px;
    padding: 0 38px 0 0;
    position: relative;
    overflow: visible;
}
.founder-photo {
    width: 128px;
    height: 150px;
    flex: 0 0 128px;
    border-radius: 14px 0 0 14px;
    background: linear-gradient(135deg, #cdd0da, #9aa0b0);
    align-self: flex-end;
    margin-top: -22px;
    object-fit: cover;
    object-position: top;
}
.founder-info {
    flex: 1;
    padding: 24px 0;
}
.founder-info .lbl {
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--body-light);
}
.founder-info h4 {
    font-family: var(--sans);
    font-size: 14px;
    font-weight: 700;
    color: #1d1c28;
    margin-top: 7px;
}
.founder-info p {
    font-size: 12.5px;
    margin-top: 3px;
    color: var(--body);
    max-width: 420px;
}
.founder-logos {
    display: flex;
    align-items: center;
    gap: 34px;
    flex: 0 0 auto;
}
.founder-logos .lg {
    font-family: var(--serif);
    color: #9b9aa6;
    font-size: 15px;
    letter-spacing: 0.02em;
}
.founder-logos .lg.tt {
    font-weight: 600;
    letter-spacing: 0.05em;
}

/* ---------- generic two col section ---------- */
.sec {
    padding: 84px 0;
}
.sec-cream {
    background: var(--cream);
}
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}
.col-head h2 {
    font-size: clamp(28px, 3.4vw, 40px);
    margin-top: 18px;
}
.col-head p {
    font-size: 13.5px;
    line-height: 1.7;
    margin-top: 18px;
    max-width: 420px;
}
.col-head .btn {
    margin-top: 26px;
}
.col-head b {
    color: #34333f;
    font-weight: 600;
}

/* feature list card */
.feat-card {
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #fff;
    overflow: hidden;
}
.feat-row {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 26px 32px;
    border-bottom: 1px solid var(--line-2);
}
.feat-row:last-child {
    border-bottom: 0;
}
.feat-row .istack {
    position: relative;
    width: 116px;
    height: 90px;
    flex: 0 0 116px;
}
.feat-row .istack .wm {
    position: absolute;
    left: -4px;
    top: -9px;
    width: 106px;
    height: 106px;
    color: #efedf3;
}
.feat-row .istack .ic {
    position: absolute;
    left: 46px;
    top: 23px;
    width: 46px;
    height: 46px;
    color: #3a3947;
}
.feat-row .ft {
    font-family: var(--serif);
    font-size: 18px;
    color: var(--ink);
}
.feat-note {
    text-align: center;
    font-size: 12.5px;
    color: var(--body-light);
    margin-top: 20px;
}

/* ---------- portfolio snapshot (image) ---------- */
.dash-band {
    background: linear-gradient(180deg, #fbf7f5 0%, #f6ece9 100%);
    padding: 30px 0 70px;
    position: relative;
    overflow: hidden;
}
.dash-band::before {
    content: "";
    position: absolute;
    left: -120px;
    top: 40px;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(212, 121, 103, 0.35), transparent 70%);
    filter: blur(20px);
}
.dash-outer {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
}
.dash-img {
    width: 100%;
    aspect-ratio: 1120/620;
    object-fit: cover;
    border-radius: 16px;
    background: linear-gradient(160deg, #2c2b42, #1f1e30);
    box-shadow: 0 40px 80px -40px rgba(30, 28, 50, 0.6);
}

/* ---------- stats row ---------- */
.stats {
    background: #fff;
}
.stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}
.stat {
    padding: 46px 40px;
    border-right: 1px solid var(--line);
}
.stat:last-child {
    border-right: 0;
}
.stat .num {
    font-family: var(--sans);
    font-size: 30px;
    font-weight: 700;
    color: #1d1c28;
}
.stat .lab {
    font-family: var(--serif);
    font-size: 21px;
    color: var(--ink);
    margin-top: 2px;
}
.stat p {
    font-size: 12.5px;
    line-height: 1.6;
    margin-top: 14px;
    max-width: 320px;
}

/* ---------- research circles ---------- */
.center-head {
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
}
.center-head h2 {
    font-size: clamp(28px, 3.6vw, 40px);
    margin-top: 16px;
}
.center-head .sub {
    font-size: 13.5px;
    line-height: 1.7;
    margin-top: 16px;
    color: var(--body);
}
.circles {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin: 48px auto 0;
    max-width: 960px;
}
.circle {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
    border-radius: 50%;
    background: radial-gradient(circle at 50% 38%, #f3f1f6, #eceaf1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 30px;
}
.circle .wm {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -47%);
    width: 158px;
    height: 158px;
    color: #e7e4ec;
    z-index: 0;
}
.circle .ic {
    position: relative;
    z-index: 1;
    width: 50px;
    height: 50px;
    color: #3a3947;
    margin-bottom: 18px;
}
.circle .ct {
    position: relative;
    z-index: 1;
    font-family: var(--serif);
    font-size: 18px;
    color: var(--ink);
    line-height: 1.35;
}
.center-btn {
    text-align: center;
    margin-top: 46px;
}

/* ---------- methodology ---------- */
.sec-lav {
    background: #f3f1f7;
}
.method-cards {
    display: flex;
    justify-content: center;
}
.method-stack {
    position: relative;
    width: 430px;
    max-width: 100%;
    height: 372px;
}
.method-svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}
.method-card {
    position: absolute;
    width: 310px;
    height: 100px;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 14px 40px -26px rgba(40, 40, 60, 0.3);
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 0 24px;
    z-index: 1;
}
.method-card .ic {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    color: #b3b1bc;
}
.method-card .mt {
    font-family: var(--serif);
    font-size: 17px;
    color: var(--ink);
    line-height: 1.32;
}
.method-card.c1 {
    left: 120px;
    top: 0;
}
.method-card.c2 {
    left: 60px;
    top: 136px;
}
.method-card.c3 {
    left: 0;
    top: 272px;
}

/* ---------- distinction ---------- */
.dist-head h2 {
    font-size: clamp(28px, 3.6vw, 42px);
    max-width: 780px;
}
.dist-head p {
    font-size: 13.5px;
    line-height: 1.7;
    margin-top: 18px;
    max-width: 560px;
}
.dist-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 42px;
}
.dist-card {
    border-radius: 16px;
    padding: 34px 36px;
}
.dist-card.reality {
    background: var(--pink);
    border: 1px solid #f3cfc5;
}
.dist-card.solution {
    background: var(--navy);
    color: #fff;
}
.dist-card .dl {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 14px;
}
.reality .dl {
    color: var(--accent);
}
.solution .dl {
    color: #e0a08f;
}
.dist-card h3 {
    font-size: 20px;
    margin-bottom: 14px;
}
.solution h3 {
    color: #fff;
}
.dist-card p {
    font-size: 13px;
    line-height: 1.65;
}
.solution p {
    color: #b9b8c8;
}

/* ---------- about bernie ---------- */
.about {
    background: linear-gradient(180deg, #fbf7f5 0%, #fbe9e4 55%, #fbe9e4 100%);
    padding: 80px 0;
}
.about-head {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 24px;
    text-align: right;
}
.about-head .inner {
    max-width: 660px;
    margin-left: auto;
}
.about-head h2 {
    font-size: clamp(28px, 3.8vw, 42px);
    margin-top: 14px;
}
.about-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 20px 60px -36px rgba(40, 40, 60, 0.3);
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
    max-width: var(--maxw);
    margin: 34px auto 0;
    padding: 0 44px 0 0;
    overflow: hidden;
}
.about-photo {
    background: linear-gradient(150deg, #d3d6df, #9298a8);
    min-height: 300px;
    align-self: stretch;
}
.about-text {
    padding: 44px 0;
    align-self: center;
}
.about-text p {
    font-size: 13.5px;
    line-height: 1.75;
    margin-bottom: 16px;
}
.about-text p:last-child {
    margin-bottom: 0;
}

/* ---------- who this is for ---------- */
.who-head h2 {
    font-size: clamp(28px, 3.6vw, 40px);
    margin-top: 14px;
}
.who-head p {
    font-size: 13.5px;
    line-height: 1.7;
    margin-top: 14px;
    max-width: 520px;
}
.who-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 38px;
}
.who-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 28px 30px;
    display: flex;
    gap: 22px;
    align-items: flex-start;
}
.who-card .ic {
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    color: #b3b1bc;
    margin-top: 2px;
}
.who-card h4 {
    font-family: var(--serif);
    font-size: 18px;
    font-weight: 500;
    color: var(--ink);
}
.who-card p {
    font-size: 12.5px;
    line-height: 1.6;
    margin-top: 8px;
}
.who-banner {
    background: var(--pink);
    border: 1px solid #f0cabf;
    border-radius: 14px;
    text-align: center;
    padding: 26px;
    margin-top: 24px;
}
.who-banner p {
    font-size: 13px;
    line-height: 1.7;
    color: #4a4956;
}
.who-banner b {
    color: #2a2937;
    font-weight: 600;
}

/* ---------- insights ---------- */
.insights {
    background: linear-gradient(180deg, #fff 0%, #f6f3f9 100%);
    padding: 80px 0;
}
.ins-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 34px;
}
.ins-top h2 {
    font-size: clamp(30px, 3.8vw, 42px);
}
.ins-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}
.ins-card .thumb {
    aspect-ratio: 1/0.86;
    border-radius: 10px;
    background: linear-gradient(135deg, #8f95ad, #c5c8d6);
    filter: grayscale(1);
}
.ins-card .tag {
    font-size: 9.5px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--body-light);
    margin-top: 16px;
}
.ins-card h4 {
    font-family: var(--serif);
    font-size: 16.5px;
    font-weight: 500;
    line-height: 1.25;
    margin-top: 8px;
    color: var(--ink);
}
.ins-card .time {
    font-size: 11px;
    color: var(--body-light);
    margin-top: 16px;
}

/* ---------- newsletter ---------- */
.news {
    background: var(--navy);
    position: relative;
    overflow: hidden;
    text-align: center;
    padding: 96px 0;
}
.news::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 680px;
    height: 520px;
    background: radial-gradient(ellipse, rgba(150, 90, 110, 0.38), transparent 65%);
    filter: blur(10px);
}
.news .inner {
    position: relative;
    max-width: 620px;
    margin: 0 auto;
    padding: 0 24px;
}
.news .eyebrow {
    color: #cfcedb;
}
.news h2 {
    color: #fff;
    font-size: clamp(30px, 4vw, 44px);
    margin-top: 18px;
}
.news p {
    color: #b9b8c8;
    font-size: 13.5px;
    margin-top: 16px;
}
.news-form {
    display: flex;
    gap: 12px;
    margin-top: 32px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}
.news-form input {
    flex: 1;
    background: #fff;
    border: 0;
    border-radius: 9px;
    padding: 14px 18px;
    font-family: var(--sans);
    font-size: 13px;
    color: #1d1c28;
}
.news-form input:focus {
    outline: 2px solid var(--accent);
    outline-offset: 1px;
}
.news-form .btn {
    border: 1px solid rgba(255, 255, 255, 0.5);
    background: transparent;
    color: #fff;
}
.news-form .btn:hover {
    background: rgba(255, 255, 255, 0.08);
}

/* ---------- testimonials ---------- */
.tst {
    background: var(--cream);
    padding: 80px 0;
}
.tst-top {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 38px;
}
.tst-top h2 {
    font-size: clamp(30px, 3.8vw, 44px);
}
.tst-arrows {
    display: flex;
    gap: 10px;
}
.tst-arrows button {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    border: 1px solid var(--line);
    background: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3a3947;
    transition: 0.15s;
}
.tst-arrows button:hover {
    border-color: #bdbac6;
}
.tst-arrows button.dark {
    background: #2a2937;
    color: #fff;
    border-color: #2a2937;
}
.tst-track {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding-bottom: 6px;
}
.tst-track::-webkit-scrollbar {
    display: none;
}
.tst-card {
    flex: 0 0 calc((100% - 48px) / 3);
    min-width: 300px;
    scroll-snap-align: start;
    border-radius: 14px;
    padding: 32px 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 240px;
}
.tst-card.white {
    background: #fff;
    border: 1px solid var(--line);
}
.tst-card.plain {
    background: transparent;
}
.tst-card .q {
    font-family: var(--serif);
    font-size: 16px;
    line-height: 1.5;
    color: #3a3947;
}
.tst-card.plain .q {
    font-size: 21px;
    color: var(--ink);
}
.tst-card.bold .q {
    font-weight: 600;
    color: #2a2937;
}
.tst-card .nm {
    font-size: 11px;
    color: var(--body-light);
    margin-top: 24px;
}

/* ---------- contact ---------- */
.contact {
    background: #fff;
    padding: 84px 0;
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.contact-head h2 {
    font-size: clamp(32px, 4.4vw, 52px);
}
.contact-form {
    background: var(--navy);
    border-radius: 16px;
    padding: 34px 36px;
}
.cf-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}
.cf-field {
    margin-bottom: 20px;
}
.cf-field label {
    display: block;
    font-size: 12px;
    color: #cfcedb;
    margin-bottom: 8px;
}
.cf-field input,
.cf-field textarea {
    width: 100%;
    background: #fff;
    border: 0;
    border-radius: 8px;
    padding: 12px 14px;
    font-family: var(--sans);
    font-size: 13px;
    color: #1d1c28;
}
.cf-field textarea {
    min-height: 96px;
    resize: vertical;
}
.cf-field input:focus,
.cf-field textarea:focus {
    outline: 2px solid var(--accent);
}
.contact-form .btn {
    display: block;
    margin: 6px auto 0;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: #fff;
}
.contact-form .btn:hover {
    background: rgba(255, 255, 255, 0.08);
}

/* ---------- footer ---------- */
footer {
    background: var(--footer);
    padding: 40px 0;
}
.foot {
    display: flex;
    align-items: center;
}
.foot .logo small {
    color: #1d1c28;
}

/* ---------- responsive ---------- */
@media (max-width: 980px) {
    .two-col {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .dist-cards,
    .who-cards,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .contact-grid {
        gap: 36px;
    }
    .about-card {
        grid-template-columns: 1fr;
        padding: 0 0 36px;
    }
    .about-photo {
        min-height: 240px;
    }
    .about-text {
        padding: 30px 36px 0;
    }
    .about-head {
        text-align: left;
    }
    .about-head .inner {
        margin-left: 0;
    }
    .ins-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 26px;
    }
    .dash-img {
        aspect-ratio: auto;
        min-height: 200px;
    }
    .method-stack {
        width: 100%;
        height: auto;
        display: flex;
        flex-direction: column;
        gap: 18px;
    }
    .method-svg {
        display: none;
    }
    .method-card {
        position: static;
        width: 100%;
        height: auto;
        min-height: 0;
        padding: 22px 26px;
    }
    .circles {
        max-width: 520px;
    }
}
@media (max-width: 900px) {
    .nav-mid,
    .nav-right {
        display: none;
    }
    .burger {
        display: flex;
    }
    header.open .mobile-menu {
        display: flex;
    }
}
@media (max-width: 720px) {
    .sec {
        padding: 60px 0;
    }
    .stats-row {
        grid-template-columns: 1fr;
    }
    .stat {
        border-right: 0;
        border-bottom: 1px solid var(--line);
        padding: 30px 4px;
    }
    .stat:last-child {
        border-bottom: 0;
    }
    .circles {
        grid-template-columns: 1fr;
        max-width: 340px;
        gap: 24px;
    }
    .tst-card {
        flex: 0 0 86%;
        min-width: 0;
    }
    .founder-card {
        flex-direction: column;
        align-items: flex-start;
        padding: 0 0 24px;
    }
    .founder-photo {
        width: 100%;
        height: 200px;
        border-radius: 14px 14px 0 0;
        margin-top: 0;
        align-self: stretch;
    }
    .founder-info {
        padding: 22px 24px 0;
    }
    .founder-logos {
        padding: 0 24px 4px;
        gap: 24px;
    }
    .news-form {
        flex-direction: column;
    }
    .cf-row {
        grid-template-columns: 1fr;
    }
    .hero {
        padding: 54px 0 30px;
    }
    .about-head .inner h2,
    .dist-head h2 {
        max-width: none;
    }
}
@media (max-width: 520px) {
    .ins-grid {
        grid-template-columns: 1fr;
    }
    .ins-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
    }
    .hero .cta-row .btn {
        width: 100%;
    }
}
