:root {
    --ink: #0D0D0D;
    --ink2: #3A3A38;
    --ink3: #808078;
    --paper: #F5F4EF;
    --white: #FFFFFF;
    --rule: #D8D6CF;
    --brand: #526ab2;
    --navy2: #323272;
    --navy-dark: #12143A;
    --navy-tint: #EEEEF8;
    --gold: #C8A84B;
    --gold-tint: #FBF7EC;
    --serif: 'Fraunces', Georgia, serif;
    --sans: 'DM Sans', system-ui, sans-serif;
    --max: 1200px;
    --gutter: 2.5rem;
}

body {
    font-family: var(--sans);
    color: var(--ink);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden
}

/* â”€â”€â”€ TOPBAR â”€â”€â”€ */
.topbar {
    background: var(--brand);
    padding: .5rem var(--gutter);
    overflow: hidden
}

.ticker-wrap {
    display: flex;
    align-items: center;
    max-width: var(--max);
    margin: 0 auto
}

.ticker-label {
    font-size: .7rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .4);
    white-space: nowrap;
    flex-shrink: 0;
    padding-right: 1.5rem;
    border-right: 1px solid rgba(255, 255, 255, .15);
    margin-right: 1.5rem
}

.ticker-track {
    display: flex;
    gap: 3rem;
    animation: ticker 32s linear infinite;
    white-space: nowrap
}

.ticker-track span {
    font-size: .75rem;
    font-weight: 500;
    color: rgba(255, 255, 255, .5)
}

@keyframes ticker {
    0% {
        transform: translateX(0)
    }

    100% {
        transform: translateX(-50%)
    }
}

/* â”€â”€â”€ NAV â”€â”€â”€ */
nav {
    background: var(--white);
    border-bottom: 1px solid var(--rule);
    position: sticky;
    top: 0;
    z-index: 200;
    padding: 0 var(--gutter)
}

.nav-inner {
    max-width: var(--max);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
    gap: 2rem
}

.nav-logo {
    font-family: var(--serif);
    font-size: 1.3125rem;
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: -.02em
}

.nav-logo span {
    font-weight: 300;
    font-style: italic
}

.nav-links {
    display: flex;
    gap: .125rem;
    list-style: none
}

.nav-links a {
    font-size: .8125rem;
    color: var(--ink2);
    text-decoration: none;
    font-weight: 500;
    padding: .375rem .7rem;
    border-radius: 5px;
    transition: background .12s, color .12s
}

.nav-links a:hover {
    background: var(--paper);
    color: var(--brand)
}

.nav-links a.active {
    color: var(--brand);
    font-weight: 600
}

.nav-cta {
    background: var(--brand);
    color: #fff;
    padding: .5rem 1.125rem;
    border-radius: 5px;
    font-size: .8375rem;
    font-weight: 600;
    text-decoration: none;
    transition: background .15s
}

.nav-cta:hover {
    background: var(--navy2)
}

/* â”€â”€â”€ BREADCRUMB â”€â”€â”€ */
.breadcrumb {
    background: var(--white);
    border-bottom: 1px solid var(--rule);
    padding: .875rem var(--gutter)
}

.bc-inner {
    max-width: var(--max);
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .8rem;
    color: var(--ink3)
}

.bc-inner a {
    color: var(--ink3);
    text-decoration: none
}

.bc-inner a:hover {
    color: var(--brand)
}

.bc-sep {
    opacity: .4
}

.bc-current {
    color: var(--ink2);
    font-weight: 500
}

/* â”€â”€â”€ HERO â”€â”€â”€ */
.hero {
    background: var(--navy-dark);
    padding: 7rem var(--gutter) 0;
    overflow: hidden;
    position: relative
}

/* subtle radial glow */
.hero::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(200, 168, 75, .07) 0%, transparent 70%);
    top: -150px;
    right: -100px;
    pointer-events: none
}

.hero-inner {
    max-width: var(--max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 480px;
    gap: 7rem;
    align-items: end;
    position: relative;
    z-index: 1
}

.hero-left {
    padding-bottom: 5.5rem
}

.hero-overline {
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.75rem;
    display: flex;
    align-items: center;
    gap: .75rem
}

.hero-overline::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(200, 168, 75, .25)
}

.hero h1 {
    font-family: var(--serif);
    font-size: clamp(3rem, 6vw, 5.25rem);
    font-weight: 900;
    line-height: 1.025;
    letter-spacing: -.04em;
    color: #fff;
    margin-bottom: 2rem
}

.hero h1 em {
    font-style: italic;
    font-weight: 300;
    color: rgba(255, 255, 255, .45)
}

.hero-body {
    font-size: 1.0625rem;
    color: rgba(255, 255, 255, .5);
    line-height: 1.82;
    font-weight: 300;
    max-width: 540px;
    margin-bottom: 2.75rem
}

.hero-body strong {
    color: rgba(255, 255, 255, .8);
    font-weight: 500
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: var(--gold);
    color: var(--navy-dark);
    padding: .8rem 1.75rem;
    border-radius: 6px;
    font-size: .9375rem;
    font-weight: 700;
    text-decoration: none;
    transition: opacity .15s
}

.hero-cta:hover {
    opacity: .88
}

/* stats strip */
.hero-right {
    padding-bottom: 0
}

.stats-strip {
    background: rgb(255 255 255);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 14px 14px 0 0;
    padding: 2.5rem 2.25rem;
    display: flex;
    flex-direction: column;
    gap: 0
}

.stat-row {
    display: flex;
    align-items: initial;
    gap: 1rem;
    padding: 1.25rem 0;
    border-bottom: 1px solid rgb(123 123 123 / 14%);
}

.stat-row:last-child {
    border-bottom: none
}

.stat-n {
    font-family: var(--serif);
    font-size: 2.75rem;
    font-weight: 900;
    color: var(--brand);
    letter-spacing: -.06em;
    line-height: 1;
    flex-shrink: 0;
    min-width: 7rem;
}

.stat-n span {
    font-size: 1.5rem;
    padding-left: 4px;
}

.stat-l {
    font-size: .875rem;
    color: #000;
    /* line-height: 1.5; */
    font-weight: 300
}

.stat-l strong {
    color: #000;
    font-weight: 600;
    display: block;
    font-size: 20px;
    font-family: var(--serif);
}

/* â”€â”€â”€ FOUNDING STORY â”€â”€â”€ */
.story-bg {
/*    background: var(--paper);*/
    border-bottom: 1px solid var(--rule)
}

.story-inner {
    max-width: var(--max);
    margin: 0 auto;
    padding: 6rem var(--gutter);
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: 7rem;
    align-items: start
}

.story-left {
    position: sticky;
    top: 6rem
}

.story-overline {
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--brand);
    margin-bottom: 1rem
}

.story-heading {
    font-family: var(--serif);
    font-size: clamp(2rem, 3.75vw, 3rem);
    font-weight: 900;
    color: var(--ink);
    letter-spacing: -.035em;
    line-height: 1.1;
    margin-bottom: 1.5rem
}

.story-heading em {
    font-style: italic;
    font-weight: 300;
    color: var(--brand)
}

/* year badge */
.year-badge {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 88px;
    height: 88px;
    border-radius: 50%;
    background: var(--brand);
    margin-bottom: 2rem
}

.year-badge .yr {
    font-family: var(--serif);
    font-size: 1.375rem;
    font-weight: 900;
    color: #fff;
    letter-spacing: -.04em;
    line-height: 1
}

.year-badge .yl {
    font-size: .6rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .35);
    margin-top: .2rem
}

.story-right {
    display: flex;
    flex-direction: column;
    gap: 0
}

.story-p {
    font-size: 1.0625rem;
    color: var(--ink2);
    line-height: 1.85;
    font-weight: 300;
    margin-bottom: 1.5rem
}

.story-p strong {
    color: var(--ink);
    font-weight: 600
}

/* pull quote */
.pull-quote {
    border-left: 3px solid var(--gold);
    padding: 1.375rem 1.75rem;
    margin: 2rem 0;
    background: var(--gold-tint);
    border-radius: 0 8px 8px 0
}

.pull-quote p {
    font-family: var(--serif);
    font-size: 1.1875rem;
    font-style: italic;
    font-weight: 300;
    color: var(--ink);
    line-height: 1.68
}

.pull-quote cite {
    display: block;
    margin-top: .625rem;
    font-family: var(--sans);
    font-size: .8rem;
    font-style: normal;
    font-weight: 600;
    color: var(--ink3);
    letter-spacing: .04em;
    text-transform: uppercase
}

/* â”€â”€â”€ APPROACH â”€â”€â”€ */
.approach-bg {
    background: var(--white);
    border-bottom: 1px solid var(--rule)
}

.approach-inner {
    max-width: var(--max);
    margin: 0 auto;
    padding: 6rem var(--gutter)
}

.approach-head {
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: 7rem;
    align-items: end;
    margin-bottom: 4.5rem
}

.approach-overline {
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--brand);
    margin-bottom: .875rem
}

.approach-heading {
    font-family: var(--serif);
    font-size: clamp(2rem, 3.75vw, 3rem);
    font-weight: 900;
    color: var(--ink);
    letter-spacing: -.035em;
    line-height: 1.1
}

.approach-heading em {
    font-style: italic;
    font-weight: 300;
    color: var(--brand)
}

.approach-sub {
    font-size: 1.0625rem;
    color: var(--ink2);
    line-height: 1.75;
    font-weight: 300
}

.approach-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: var(--rule);
    border: 1px solid var(--rule);
    border-radius: 12px;
    overflow: hidden
}

.app-card {
    background: var(--white);
    padding: 2.5rem 2.25rem;
    transition: background .18s
}

.app-card:hover {
    background: var(--paper)
}

.app-label {
    font-size: .65rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--ink3);
    margin-bottom: 1.125rem
}

.app-card h3 {
    font-family: var(--serif);
    font-size: 1.3125rem;
    font-weight: 700;
    color: var(--ink);
    letter-spacing: -.025em;
    line-height: 1.2;
    margin-bottom: .75rem
}

.app-card p {
    font-size: 15px;
    color: #000000;
    line-height: 1.72;
    font-weight: 300
}

/* â”€â”€â”€ STANDARDS â”€â”€â”€ */
.standards-bg {
    background: var(--navy-dark)
}

.standards-inner {
    max-width: var(--max);
    margin: 0 auto;
    padding: 6rem var(--gutter)
}

.std-head {
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: 7rem;
    align-items: end;
    margin-bottom: 4.5rem
}

.std-overline {
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .3);
    margin-bottom: .875rem
}

.std-heading {
    font-family: var(--serif);
    font-size: clamp(2rem, 3.75vw, 3rem);
    font-weight: 900;
    color: #fff;
    letter-spacing: -.035em;
    line-height: 1.1
}

.std-heading em {
    font-style: italic;
    font-weight: 300;
    color: rgba(255, 255, 255, .4)
}

.std-sub {
    font-size: 18px;
    color: rgb(179 190 205);
    line-height: 1.75;
    font-weight: 300
}

.standards-list {
    display: flex;
    flex-direction: column;
    border-top: 1px solid rgba(255, 255, 255, .07)
}

.std-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    padding: 2.25rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, .07);
    transition: all .18s
}

.std-item:hover .std-item-title {
    color: var(--gold)
}

.std-item-title {
    font-family: var(--serif);
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: -.025em;
    line-height: 1.25;
    transition: color .18s
}

.std-item-body {
    font-size: 15px;
    color: rgb(255 255 255 / 72%);
    line-height: 1.72;
    font-weight: 300
}

.impact-bg {
    background: var(--paper) !important;
    border-bottom: 1px solid var(--rule);
}

.impact-inner {
    max-width: var(--max);
    margin: 0 auto;
    padding: 6rem var(--gutter)
}

.impact-head {
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: 7rem;
    align-items: end;
    margin-bottom: 5rem
}

.impact-overline {
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--brand);
    margin-bottom: .875rem
}

.impact-heading {
    font-family: var(--serif);
    font-size: clamp(2rem, 3.75vw, 3rem);
    font-weight: 900;
    color: var(--ink);
    letter-spacing: -.035em;
    line-height: 1.1
}

.impact-heading em {
    font-style: italic;
    font-weight: 300;
    color: var(--brand)
}

.impact-sub {
    font-size: 1.0625rem;
    color: var(--ink2);
    line-height: 1.75;
    font-weight: 300
}

.impact-stages {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--rule);
    border: 1px solid var(--rule);
    border-radius: 12px;
    overflow: hidden
}

.stage {
    background: var(--white);
    padding: 2.5rem 2rem;
    position: relative;
    transition: background .18s;
    cursor: default
}

.stage:hover {
    background: var(--gold-tint)
}

.stage:hover .stage-letter {
    color: var(--gold);
    opacity: 1
}

.stage-letter {
    font-family: var(--serif);
    font-size: 5rem;
    font-weight: 900;
    color: var(--ink);
    opacity: .04;
    line-height: 1;
    position: absolute;
    top: 1.25rem;
    right: 1.5rem;
    letter-spacing: -.06em;
    transition: all .25s;
    pointer-events: none
}

.stage-num {
    font-size: 12px !important;
    font-weight: 700 !important;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--brand) !important;
    margin-bottom: 1.25rem
}

.stage h3 {
    font-family: var(--serif);
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--ink);
    letter-spacing: -.04em;
    line-height: 1;
    margin-bottom: .875rem
}

.stage p {
    font-size: 15px;
    color: var(--link2);
    line-height: 1.7;
    font-weight: 300;
    margin-bottom: 1rem
}

.stage-tags {
    display: flex;
    flex-direction: column;
    gap: .3rem
}

.stage-tag {
    font-size: .7rem;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--ink3)
}

/* â”€â”€â”€ LEADERSHIP â”€â”€â”€ */
.team-bg {
    background: var(--white);
    border-bottom: 1px solid var(--rule)
}

.team-inner {
    max-width: var(--max);
    margin: 0 auto;
    padding: 6rem var(--gutter)
}

.team-head {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 5rem
}

.team-overline {
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--brand);
    margin-bottom: .875rem
}

.team-heading {
    font-family: var(--serif);
    font-size: clamp(2rem, 3.75vw, 3rem);
    font-weight: 900;
    color: var(--ink);
    letter-spacing: -.035em;
    line-height: 1.1;
    margin-bottom: 1rem
}

.team-heading em {
    font-style: italic;
    font-weight: 300;
    color: var(--brand)
}

.team-sub {
    font-size: 1.0625rem;
    color: var(--ink2);
    line-height: 1.75;
    font-weight: 300
}

.team-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem
}

.team-card {
    border: 1px solid var(--rule);
    border-radius: 14px;
    overflow: hidden;
    transition: border-color .18s, transform .18s
}

.team-card:hover {
    border-color: var(--brand);
    transform: translateY(-3px)
}

.tc-head {
    background: var(--paper);
    padding: 2.75rem 2.5rem 2rem
}

.tc-initials {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: var(--brand);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.75rem
}

.tc-initials span {
    font-family: var(--serif);
    font-size: 1.375rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: -.04em
}

.tc-name {
    font-family: var(--serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--ink);
    letter-spacing: -.03em;
    line-height: 1.1;
    margin-bottom: .3rem
}

.tc-title {
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--ink3)
}

.tc-body {
    padding: 2rem 2.5rem
}

.tc-body p {
    font-size: .9375rem;
    color: var(--ink2);
    line-height: 1.75;
    font-weight: 300;
    margin-bottom: 1.25rem
}

.tc-linkedin {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    font-size: .8125rem;
    font-weight: 600;
    color: var(--brand);
    text-decoration: none;
    border: 1.5px solid var(--rule);
    padding: .4rem .875rem;
    border-radius: 100px;
    transition: all .15s
}

.tc-linkedin:hover {
    background: var(--brand);
    color: #fff;
    border-color: var(--brand)
}

.tc-linkedin svg {
    width: 13px;
    height: 13px;
    fill: currentColor
}

/* â”€â”€â”€ PRESENCE â”€â”€â”€ */
.presence-bg {
    background: var(--brand)
}

.presence-inner {
    max-width: var(--max);
    margin: 0 auto;
    padding: 6rem var(--gutter);
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: 7rem;
    align-items: center
}

.presence-left .pre-overline {
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .3);
    margin-bottom: .875rem
}

.presence-left h2 {
    font-family: var(--serif);
    font-size: clamp(2rem, 3.75vw, 3rem);
    font-weight: 900;
    color: #fff;
    letter-spacing: -.035em;
    line-height: 1.1;
    margin-bottom: 1.25rem
}

.presence-left h2 em {
    font-style: italic;
    font-weight: 300;
    color: #c8a84b;
}

.presence-left p {
    font-size: .9375rem;
    color: rgba(255, 255, 255, .45);
    line-height: 1.82;
    font-weight: 300
}

.locations {
    display: flex;
    flex-direction: column;
    gap: .5rem
}

.loc-group {
    padding: 1.25rem 1.5rem;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: 9px
}

.loc-group-label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgb(255 255 255 / 65%);
    margin-bottom: .5rem
}

.loc-cities {
    display: flex;
    flex-wrap: wrap;
    gap: .375rem
}

.loc-city {
    font-size: 15px;
    color: rgb(255 255 255 / 76%);
    font-weight: 400
}

.loc-city:not(:last-child)::after {
    content: 'Â·';
    margin-left: .375rem;
    color: rgba(255, 255, 255, .2)
}

/* â”€â”€â”€ DIFFERENTIATORS â”€â”€â”€ */
.diff-bg {
    background: var(--paper);
    border-top: 1px solid var(--rule)
}

.diff-inner {
    max-width: var(--max);
    margin: 0 auto;
    padding: 6rem var(--gutter)
}

.diff-head {
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: 7rem;
    align-items: end;
    margin-bottom: 4.5rem
}

.diff-overline {
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--brand);
    margin-bottom: .875rem
}

.diff-heading {
    font-family: var(--serif);
    font-size: clamp(2rem, 3.75vw, 3rem);
    font-weight: 900;
    color: var(--ink);
    letter-spacing: -.035em;
    line-height: 1.1
}

.diff-heading em {
    font-style: italic;
    font-weight: 300;
    color: var(--brand)
}

.diff-sub {
    font-size: 1.0625rem;
    color: var(--ink2);
    line-height: 1.75;
    font-weight: 300
}

.diff-list {
    display: flex;
    flex-direction: column;
    border-top: 1px solid var(--rule)
}

.diff-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    padding: 2rem 0;
    border-bottom: 1px solid var(--rule);
    transition: all .18s
}

.diff-item:hover {
    padding-left: .5rem
}

.diff-item:hover .diff-title {
    color: var(--brand)
}

.diff-title {
    font-family: var(--serif);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--ink);
    letter-spacing: -.02em;
    line-height: 1.3;
    transition: color .18s
}

.diff-body {
    font-size: .9rem;
    color: var(--ink2);
    line-height: 1.72;
    font-weight: 300
}

/* â”€â”€â”€ CTA â”€â”€â”€ */
.cta-bg {
    background: var(--navy-dark);
    padding: 7rem var(--gutter)
}

.cta-inner {
    max-width: 780px;
    margin: 0 auto;
    text-align: center
}

.cta-overline {
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .3);
    margin-bottom: 1.5rem
}

.cta-heading {
    font-family: var(--serif);
    font-size: clamp(2.25rem, 4.5vw, 3.75rem);
    font-weight: 900;
    color: #fff;
    letter-spacing: -.04em;
    line-height: 1.08;
    margin-bottom: 1.375rem
}

.cta-heading em {
    font-style: italic;
    font-weight: 300;
    color: var(--gold)
}

.cta-body {
    font-size: 1.0625rem;
    color: rgba(255, 255, 255, .45);
    line-height: 1.8;
    font-weight: 300;
    margin-bottom: 2.75rem;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap
}

.btn-gold {
    background: var(--gold);
    color: var(--navy-dark);
    padding: .8125rem 2rem;
    border-radius: 6px;
    font-size: .9375rem;
    font-weight: 700;
    text-decoration: none;
    transition: opacity .15s
}

.btn-gold:hover {
    opacity: .88
}

.btn-ghost {
    border: 1.5px solid rgba(255, 255, 255, .2);
    color: rgba(255, 255, 255, .65);
    padding: .8rem 2rem;
    border-radius: 6px;
    font-size: .9375rem;
    font-weight: 500;
    text-decoration: none;
    transition: all .15s
}

.btn-ghost:hover {
    border-color: rgba(255, 255, 255, .5);
    color: #fff
}


.fu {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .6s ease, transform .6s ease
}

.fu.vis {
    opacity: 1;
    transform: none
}

.fu-d2 {
    transition-delay: .1s
}

.fu-d3 {
    transition-delay: .2s
}

/* â”€â”€â”€ RESPONSIVE â”€â”€â”€ */
@media(max-width:1024px) {

    .hero-inner,
    .story-inner,
    .approach-head,
    .std-head,
    .impact-head,
    .presence-inner,
    .diff-head {
        grid-template-columns: 1fr;
        gap: 3rem
    }

    .story-left {
        position: static
    }

    .approach-cards,
    .team-grid {
        grid-template-columns: 1fr
    }

    .impact-stages {
        grid-template-columns: 1fr 1fr
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem
    }

    .std-item,
    .diff-item {
        grid-template-columns: 1fr;
        gap: 1rem
    }
}

@media(max-width:768px) {
    :root {
        --gutter: 1.25rem
    }

    nav .nav-links {
        display: none
    }

    .hero {
        padding: 4rem var(--gutter) 0
    }

    .hero h1 {
        font-size: 2.625rem
    }

    .stats-strip {
        border-radius: 10px 10px 0 0
    }

    .stat-n {
        font-size: 2.25rem;
        min-width: 5.5rem
    }

    .impact-stages {
        grid-template-columns: 1fr
    }

    .footer-grid {
        grid-template-columns: 1fr
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center
    }

    .hero-right {
        display: none
    }
}