:root {
    --navy: #081b36;
    --navy2: #0e3158;
    --blue: #165b92;
    --sky: #e8f3fb;
    --gold: #e2b65d;
    --gold2: #ffe0a0;
    --cream: #fbfaf5;
    --ink: #10233d;
    --muted: #607089;
    --line: #d9e0e7;
    --white: #fff;
    --green: #25d366;
    --shadow: 0 22px 60px rgba(8, 27, 54, .12)
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    font-family: "DM Sans", sans-serif;
    color: var(--ink);
    line-height: 1.65;
    background: #fff;
    font-size: 17px
}


a {
    text-decoration: none;
    color: inherit
}

button {
    font: inherit
}

.container {
    width: min(1180px, calc(100% - 48px));
    margin: auto
}

.skip {
    position: fixed;
    left: 15px;
    top: -60px;
    background: #fff;
    padding: 12px 16px;
    z-index: 999
}

.skip:focus {
    top: 15px
}

.topbar {
    height: 36px;
    background: #06162b;
    color: #bdcad9;
    font-size: 12px
}

.topbar-in {
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center
}

header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(8, 27, 54, .97);
    color: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .1)
}

.nav {
    height: 86px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;  /* added for mobile-nav positioning */
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px
}

.brand>span:last-child {
    display: grid;
    line-height: 1
}

.brand b {
    font-size: 15px;
    letter-spacing: .14em
}

.brand small {
    font-size: 9px;
    letter-spacing: .28em;
    color: var(--gold2);
    margin-top: 5px
}

.logo-fallback {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    font-family: "Playfair Display";
    font-size: 24px;
    position: relative
}

.logo-fallback:after {
    content: "";
    position: absolute;
    inset: 4px;
}

.navlinks {
    display: flex;
    align-items: center;
    gap: 26px;
    font-size: 14px;
    color: #d9e3ee
}

.navlinks>a:not(.nav-cta):hover {
    color: var(--gold2)
}

.nav-cta {
    background: var(--gold);
    color: #071b34;
    padding: 13px 18px;
    font-weight: 800
}

.nav-cta svg {
    width: 16px;
    vertical-align: middle;
    margin-left: 5px
}

.hamb {
    display: none;
    width: 42px;
    height: 42px;
    border: 0;
    background: none;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    cursor: pointer;
}
.hamb span {
    width: 24px;
    height: 2px;
    background: #fff;
    transition: 0.3s;
}
.hamb.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px,5px);
}
.hamb.active span:nth-child(2) {
    opacity: 0;
}
.hamb.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px,-5px);
}

/* Mobile menu – hidden by default, shown with .open */
.mobile-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--navy);
    padding: 20px 16px 30px;
    border-top: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    z-index: 999;
}
.mobile-nav.open {
    display: block !important;
}
.mobile-nav a {
    display: block;
    padding: 12px 0;
    font-size: 15px;
    color: rgba(255,255,255,0.8);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.mobile-nav a:last-child {
    border-bottom: none;
}
.mobile-nav a:hover {
    color: #fff;
}
.mobile-nav .nav-cta {
    margin-top: 12px;
    text-align: center;
    background: var(--gold);
    color: #071b34;
    border-radius: 6px;
    padding: 12px;
    font-weight: 700;
}

.hero {
    background: var(--navy);
    color: #fff;
    min-height: 735px;
    position: relative;
    overflow: hidden
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 78% 44%, rgba(226, 182, 93, .17), transparent 24%), radial-gradient(circle at 25% 15%, rgba(32, 111, 166, .2), transparent 28%), linear-gradient(120deg, #071a33, #0b2c50 64%, #07182f)
}

.hero-grid {
    min-height: 735px;
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 35px;
    align-items: center;
    position: relative;
    z-index: 1
}

.kicker,
.label {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .2em;
    color: #74869c
}

.kicker {
    color: #d5e0eb;
    display: flex;
    align-items: center;
    gap: 10px
}

.kicker span {
    width: 30px;
    height: 2px;
    background: var(--gold)
}

h1,
h2 {
    font-family: "Playfair Display", serif
}

h1 {
    font-size: clamp(60px, 6.3vw, 50px);
    line-height: 1.01;
    letter-spacing: -.045em;
    margin: 22px 0 28px
}

h1 em,
h2 em {
    font-style: normal;
    color: #efa100
}

.hero-copy>p {
    color: #c6d3e0;
    max-width: 720px;
    font-size: 19px;
    line-height: 1.7
}

.actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 30px
}

.btn {
    min-height: 56px;
    padding: 0 23px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    font-size: 14px;
    font-weight: 800;
    border: 1px solid transparent;
    transition: .2s
}

.btn:hover {
    transform: translateY(-3px)
}

.btn svg {
    width: 18px;
    height: 18px
}

.primary {
    background: #fbb72c;
    color: var(--navy);
    border-color: var(--gold)
}

.primary:hover {
    background: var(--gold2)
}

.ghost {
    border-color: rgba(255, 255, 255, .38);
    color: #fff
}

.ghost:hover {
    border-color: var(--gold);
    color: var(--gold2)
}

.mini-trust {
    display: flex;
    margin-top: 43px;
    border-top: 1px solid rgba(255, 255, 255, .13);
    padding-top: 19px
}

.mini-trust span {
    font-size: 13px;
    color: #b5c3d2;
    padding: 0 20px;
    border-right: 1px solid rgba(255, 255, 255, .13)
}

.mini-trust span:first-child {
    padding-left: 0
}

.mini-trust span:last-child {
    border: 0
}

.mini-trust b {
    display: block;
    color: #fff;
    font-size: 14px;
    margin-bottom: 2px
}

.hero-art {
    height: 560px;
    position: relative;
    display: grid;
    place-items: center
}

.orbit {
    position: absolute;
    border: 1px solid rgba(226, 182, 93, .2);
    border-radius: 50%
}

.orbit-a {
    width: 480px;
    height: 480px
}

.orbit-b {
    width: 610px;
    height: 610px;
    border-style: dashed;
    opacity: .45
}

.brand-seal {
    width: 350px;
    height: 350px;
    border: 1px solid rgba(226, 182, 93, .75);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: radial-gradient(circle, rgba(226, 182, 93, .12), transparent 64%);
    position: relative;
    box-shadow: 0 25px 80px rgba(0, 0, 0, .2)
}

.brand-seal:before,
.brand-seal:after {
    content: "";
    position: absolute;
    border: 1px solid rgba(226, 182, 93, .23);
    border-radius: 50%
}

.brand-seal:before {
    inset: 20px
}

.brand-seal:after {
    inset: 48px
}

.brand-seal>* {
    position: relative;
    z-index: 1
}

.seal-top,
.brand-seal small {
    font-size: 10px;
    letter-spacing: .2em;
    color: #c0cdda
}

.seal-symbol {
    font-size: 34px;
    color: var(--gold);
    margin: 13px
}

.brand-seal strong {
    font-size: 38px;
    letter-spacing: .02em
}

.brand-seal>span {
    font-size: 12px;
    letter-spacing: .34em;
    color: var(--gold2);
    margin-top: 4px
}

.brand-seal small {
    margin-top: 19px
}

.floating-card {
    position: absolute;
    bottom: 30px;
    right: 5px;
    background: #fff;
    color: var(--navy);
    padding: 17px 20px;
    box-shadow: 0 18px 50px rgba(0, 0, 0, .3);
    border-left: 4px solid var(--gold);
    display: grid;
    font-size: 13px
}

.floating-card b {
    font-size: 12px;
    letter-spacing: .14em
}

.floating-card span {
    font-size: 12px;
    color: var(--muted)
}

.float-3d {
    position: absolute;
    z-index: 4;
    filter: drop-shadow(0 22px 20px rgba(0, 0, 0, .28));
    animation: float 5s ease-in-out infinite
}

.book-3d {
    left: 0;
    top: 65px;
    width: 115px;
    height: 145px;
    transform: perspective(500px) rotateY(-22deg) rotateZ(-8deg);
    animation-delay: -1s
}

.book-cover {
    position: absolute;
    inset: 0 9px 0 0;
    background: linear-gradient(135deg, #d7ab51, #f6d890 55%, #a87525);
    border-radius: 5px 10px 10px 5px;
    box-shadow: inset 0 0 0 2px rgba(255, 255, 255, .25)
}

.book-pages {
    position: absolute;
    right: 0;
    top: 8px;
    width: 15px;
    height: 129px;
    background: repeating-linear-gradient(#fff 0 4px, #e3e5e7 5px 6px);
    transform: skewY(-6deg)
}

.book-3d span {
    position: absolute;
    inset: 25px 14px 20px 15px;
    color: #183454;
    font-weight: 900;
    font-size: 18px;
    letter-spacing: .12em;
    display: grid;
    place-items: center
}

.trophy-3d {
    right: 22px;
    top: 90px;
    width: 85px;
    height: 90px;
    background: linear-gradient(145deg, #fff0b2, #d49b37 58%, #8a5c18);
    clip-path: polygon(18% 0, 82% 0, 75% 62%, 58% 76%, 58% 88%, 75% 88%, 75% 100%, 25% 100%, 25% 88%, 42% 88%, 42% 76%, 25% 62%);
    display: grid;
    place-items: center;
    animation-delay: -2.3s
}

.trophy-3d:before,
.trophy-3d:after {
    content: "";
    position: absolute;
    top: 7px;
    width: 26px;
    height: 45px;
    border: 6px solid #d6a64c
}

.trophy-3d:before {
    left: -17px;
    border-right: 0;
    border-radius: 25px 0 0 25px
}

.trophy-3d:after {
    right: -17px;
    border-left: 0;
    border-radius: 0 25px 25px 0
}

.trophy-3d span {
    color: #6f4710;
    font-size: 25px
}

.bulb-3d {
    left: 45px;
    bottom: 55px;
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 28%, #fff4c7, #e2b65d 42%, #94651e);
    display: grid;
    place-items: center;
    box-shadow: 0 0 35px rgba(226, 182, 93, .35);
    animation-delay: -3.5s
}

.bulb-3d span {
    font-size: 26px;
    color: #fff7d5
}

@keyframes float {

    0%,
    100% {
        translate: 0 0
    }

    50% {
        translate: 0 -13px
    }
}

.stats {
    background: #10385f;
    color: #fff
}

.statgrid {
    display: grid;
    grid-template-columns: repeat(4, 1fr)
}

.statgrid>div {
    min-height: 125px;
    padding: 25px 28px;
    display: flex;
    align-items: center;
    gap: 18px;
    border-right: 1px solid rgba(255, 255, 255, .1)
}

.statgrid>div:first-child {
    padding-left: 0
}

.statgrid>div:last-child {
    border: 0
}

.statgrid strong {
    font-family: "Playfair Display";
    font-size: 39px;
    color: var(--gold2);
    white-space: nowrap
}

.statgrid strong span {
    font-size: 25px
}

.statgrid p {
    font-size: 12px;
    color: #c2d0de;
    line-height: 1.4
}

.section {
    padding: 120px 0
}

.section-head {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 60px;
    margin-bottom: 52px
}

.section-head h2 {
    font-size: 62px;
    line-height: 1.06;
    margin: 12px 0 0;
    letter-spacing: -.035em
}

.section-head>p {
    max-width: 420px;
    color: var(--muted);
    font-size: 16px
}

.exam-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line)
}

.exam-grid article {
    min-height: 205px;
    padding: 29px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    position: relative;
    transition: .2s
}

.exam-grid article:hover {
    background: var(--navy);
    color: #fff;
    transform: translateY(-5px);
    z-index: 2;
    box-shadow: var(--shadow)
}

.exam-grid b {
    display: block;
    font-family: "Manrope";
    font-size: 25px
}

.exam-grid span {
    font-size: 13px;
    color: var(--muted)
}

.exam-grid article:hover span {
    color: #c2d0df
}

.exam-grid i {
    position: absolute;
    right: 24px;
    bottom: 23px;
    color: var(--gold)
}

.exam-grid i svg {
    width: 22px
}

.onepaper {
    padding: 120px 0;
    background: var(--navy);
    color: #fff;
    position: relative;
    overflow: hidden
}

.onepaper:after {
    content: "01";
    position: absolute;
    right: -20px;
    top: -80px;
    font: 700 360px "Playfair Display";
    color: rgba(255, 255, 255, .025)
}

.onegrid {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 90px;
    align-items: center;
    position: relative;
    z-index: 1
}

.op-copy {
    position: relative
}

.number {
    font: 700 13px "Manrope";
    letter-spacing: .2em;
    color: var(--gold);
    margin: 32px 0 10px
}

.op-copy h2 {
    font-size: 68px;
    line-height: 1.01;
    margin: 0 0 24px
}

.op-copy p {
    color: #c3d0dd;
    max-width: 580px;
    font-size: 17px
}

.op-panel {
    border: 1px solid rgba(226, 182, 93, .4);
    background: linear-gradient(145deg, rgba(255, 255, 255, .07), rgba(255, 255, 255, .025));
    padding: 31px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, .18)
}

.op-head {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, .13);
    padding-bottom: 17px;
    color: #c0cedc;
    font-size: 11px;
    letter-spacing: .17em
}

.op-head b {
    color: var(--gold2)
}

.subjects {
    display: grid;
    grid-template-columns: 1fr 1fr
}

.subjects span {
    padding: 20px 8px;
    border-bottom: 1px solid rgba(255, 255, 255, .09);
    font-size: 15px
}

.subjects span:before {
    content: "";
    width: 6px;
    height: 6px;
    background: var(--gold);
    display: inline-block;
    margin-right: 11px;
    vertical-align: middle
}

.cream {
    background: var(--cream)
}

.benefits {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid #d6dadc;
    border-left: 1px solid #d6dadc
}

.benefits article {
    background: rgba(255, 255, 255, .5);
    padding: 29px;
    border-right: 1px solid #d6dadc;
    border-bottom: 1px solid #d6dadc;
    min-height: 235px;
    transition: .2s
}

.benefits article:hover {
    background: #fff;
    box-shadow: var(--shadow);
    transform: translateY(-4px);
    z-index: 2
}

.benefits article>span {
    font-size: 11px;
    letter-spacing: .15em;
    color: var(--gold);
    font-weight: 800
}

.feature-icon {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: #fff;
    border: 1px solid #e2e5e8;
    color: var(--blue);
    box-shadow: 0 7px 18px rgba(16, 35, 61, .07);
    margin: 21px 0 13px
}

.feature-icon svg {
    width: 22px
}

.benefits h3 {
    font-size: 21px;
    margin: 0 0 7px
}

.benefits p {
    color: var(--muted);
    font-size: 14px;
    margin: 0
}

.whygrid {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 100px
}

.whyintro {
    position: sticky;
    top: 125px;
    align-self: start
}

.whyintro h2 {
    font-size: 60px;
    line-height: 1.06;
    margin: 12px 0 22px
}

.whyintro p {
    color: var(--muted);
    font-size: 16px
}

.underlink {
    display: inline-flex;
    gap: 10px;
    font-size: 14px;
    font-weight: 800;
    margin-top: 22px
}

.underlink svg {
    color: var(--gold);
    width: 18px
}

.whyitems {
    border-top: 1px solid var(--line)
}

.whyitems>div {
    display: grid;
    grid-template-columns: 55px 1fr;
    gap: 17px;
    padding: 25px 0;
    border-bottom: 1px solid var(--line)
}

.whyitems>div>b {
    font: 600 22px "Playfair Display";
    color: var(--gold)
}

.whyitems h3 {
    font-size: 19px;
    margin: 0 0 5px
}

.whyitems p {
    font-size: 14px;
    color: var(--muted);
    margin: 0
}

.approach {
    padding: 120px 0;
    background: var(--navy);
    color: #fff
}

.section-head.light>p {
    color: #becbd8
}

.steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    border-top: 1px solid rgba(255, 255, 255, .17)
}

.steps article {
    padding: 28px 22px 10px 0;
    border-right: 1px solid rgba(255, 255, 255, .12);
    margin-right: 22px;
    min-height: 245px
}

.steps article:last-child {
    border: 0
}

.steps span {
    font: 700 31px "Playfair Display";
    color: var(--gold)
}

.steps h3 {
    font-size: 14px;
    letter-spacing: .15em;
    margin: 32px 0 11px
}

.steps p {
    font-size: 14px;
    color: #bdcad8;
    max-width: 205px
}

.ecosystem {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px
}

.ecosystem article {
    min-height: 205px;
    border: 1px solid var(--line);
    padding: 28px;
    position: relative;
    transition: .2s
}

.ecosystem article:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
    box-shadow: var(--shadow)
}

.ecosystem small {
    font-size: 9px;
    letter-spacing: .16em;
    color: #8491a1;
    font-weight: 800
}

.ecosystem .featured {
    background: var(--navy);
    color: #fff;
    border-color: var(--navy)
}

.ecosystem .featured small {
    color: var(--gold)
}

.ecosystem h3 {
    font: 600 31px "Playfair Display";
    margin: 29px 0 7px
}

.ecosystem p {
    font-size: 13px;
    color: var(--muted);
    margin: 0
}

.ecosystem .featured p {
    color: #c2cfdd
}

.ecosystem a {
    display: block;
    margin-top: 17px;
    font-size: 12px;
    font-weight: 800;
    color: var(--gold2)
}

.session {
    background: var(--navy2);
    color: #fff;
    padding: 105px 0
}

.sessiongrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 85px;
    align-items: center
}

.session h2 {
    font-size: 63px;
    margin: 12px 0 17px
}

.sessiongrid>div>p {
    color: #c1cedb;
    font-size: 16px;
    max-width: 590px;
    margin-bottom: 29px
}

.lightbtn {
    background: #fff;
    color: var(--navy)
}

.sessionbox {
    background: #fff;
    color: var(--ink);
    border-top: 4px solid var(--gold);
    padding: 8px 30px;
    box-shadow: 0 24px 55px rgba(0, 0, 0, .18)
}

.sessionbox div {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 18px 0;
    border-bottom: 1px solid var(--line)
}

.sessionbox div:last-child {
    border: 0
}

.sessionbox small,
.contactmeta small {
    font-size: 9px;
    letter-spacing: .17em;
    color: #8491a1
}

.sessionbox b {
    font-size: 13px;
    text-align: right
}

.foundergrid {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 90px;
    align-items: center
}

.founder-art {
    height: 455px;
    background: var(--navy);
    display: grid;
    place-items: center;
    position: relative;
    color: var(--gold);
    overflow: hidden
}

.founder-art:before {
    content: "";
    width: 330px;
    height: 330px;
    border-radius: 50%;
    position: absolute
}

.founder-art span {
    font: 700 120px "Playfair Display";
    z-index: 1
}

.founder-art small {
    position: absolute;
    bottom: 27px;
    left: 27px;
    font-size: 10px;
    letter-spacing: .17em;
    color: #d4dfeb
}

.founder h2 {
    font-size: 64px;
    margin: 12px 0 4px
}

.founder h4 {
    color: var(--gold);
    font-size: 13px;
    letter-spacing: .15em;
    margin: 0 0 24px
}

.founder p {
    font-size: 16px;
    color: var(--muted);
    max-width: 650px
}

.youtube {
    background: var(--navy);
    color: #fff;
    padding: 110px 0
}

.ytgrid {
    display: grid;
    grid-template-columns: .55fr 1.45fr;
    gap: 90px;
    align-items: center
}

.ytmark {
    width: 195px;
    height: 195px;
    border: 1px solid rgba(226, 182, 93, .55);
    display: grid;
    place-items: center;
    color: var(--gold);
    transform: rotate(45deg);
    margin: auto;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .2)
}

.ytmark svg {
    width: 48px;
    height: 48px;
    transform: rotate(-45deg);
    fill: currentColor
}

.youtube h2 {
    font-size: 68px;
    margin: 12px 0 17px
}

.youtube p {
    color: #c1cedb;
    max-width: 630px;
    font-size: 16px
}

.youtube small {
    display: block;
    color: #8493a7;
    font-size: 11px;
    margin-top: 14px
}

.faq {
    background: #fff
}

.faqgrid {
    display: grid;
    grid-template-columns: .7fr 1.3fr;
    gap: 100px
}

.faqgrid>div:first-child h2 {
    font-size: 60px;
    margin: 12px 0
}

.faqgrid>div:first-child>p {
    font-size: 15px;
    color: var(--muted)
}

.faqs {
    border-top: 1px solid var(--line)
}

details {
    border-bottom: 1px solid var(--line)
}

summary {
    list-style: none;
    padding: 23px 48px 23px 0;
    font-weight: 800;
    font-size: 16px;
    cursor: pointer;
    position: relative
}

summary::-webkit-details-marker {
    display: none
}

summary:after {
    content: "+";
    position: absolute;
    right: 4px;
    color: var(--gold);
    font-size: 25px;
    top: 18px;
    font-weight: 400
}

details[open] summary:after {
    content: "−"
}

details p {
    font-size: 14px;
    color: var(--muted);
    margin: -4px 35px 23px 0
}

.cta {
    text-align: center;
    background: linear-gradient(135deg, #071a33, #0d3158);
    color: #fff;
    padding: 115px 0
}

.cta h2 {
    font-size: 75px;
    line-height: 1.01;
    margin: 12px 0 19px
}

.cta p {
    color: #c3cfdb;
    max-width: 640px;
    margin: 0 auto;
    font-size: 17px
}

.cta .actions {
    justify-content: center
}

.contact {
    padding: 95px 0;
    background: var(--cream)
}

.contactgrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 90px;
    align-items: center
}

.contact h2 {
    font-size: 61px;
    margin: 12px 0 4px
}

.contact p {
    color: var(--muted);
    font-size: 16px
}

.phone {
    display: inline-flex;
    flex-direction: column;
    border-left: 3px solid var(--gold);
    padding-left: 18px;
    margin-top: 22px
}

.phone small {
    font-size: 10px;
    letter-spacing: .15em;
    color: #8a96a5
}

.phone b {
    font: 600 31px "Playfair Display"
}

.contactmeta {
    border-top: 1px solid #d6d9da
}

.contactmeta>div {
    display: flex;
    justify-content: space-between;
    padding: 19px 0;
    border-bottom: 1px solid #d6d9da
}

.contactmeta b {
    font-size: 14px
}

.darkbtn {
    background: var(--navy);
    color: #fff;
    margin-top: 25px
}

footer {
    background: #041329;
    color: #aebccc;
    padding: 70px 0 0
}

.footgrid {
    display: grid;
    grid-template-columns: 1.5fr .8fr 1fr .6fr;
    gap: 55px;
    padding-bottom: 55px
}

.footgrid p {
    font-size: 12px;
    line-height: 1.75;
    color: #7f90a5;
    max-width: 350px;
    margin-top: 21px
}

.footgrid h4 {
    color: var(--gold2);
    font-size: 11px;
    letter-spacing: .16em;
    text-transform: uppercase;
    margin: 0 0 16px
}

.footgrid>div:not(:first-child) a {
    display: block;
    font-size: 12px;
    margin: 10px 0;
    color: #9cacbf
}

.footgrid a:hover {
    color: #fff
}

.copyright {
    border-top: 1px solid rgba(255, 255, 255, .08);
    padding: 19px 0;
    display: flex;
    justify-content: space-between;
    font-size: 10px;
    color: #6f8095
}

.copyright i {
    font-style: normal
}

.stickywa {
    display: none
}

svg {
    stroke-width: 1.8
}
/* ========================================
   MOBILE RESPONSIVE FIXES
   ======================================== */

@media (max-width: 950px) {
    /* Hide ALL .navlinks (including CTAs) on mobile */
    .navlinks {
        display: none !important;
    }

    /* Show hamburger */
    .hamb {
        display: flex;
    }

    /* Adjust nav height */
    .nav {
        height: 72px;
        position: relative; /* for absolute positioning of mobile-nav */
    }

    /* Mobile menu – hidden by default, shown with .open */
    .mobile-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--navy);
        padding: 20px 16px 30px;
        border-top: 1px solid rgba(255,255,255,0.08);
        box-shadow: 0 20px 40px rgba(0,0,0,0.3);
        z-index: 999;
    }
    .mobile-nav.open {
        display: block !important;
    }
    .mobile-nav a {
        display: block;
        padding: 12px 0;
        font-size: 15px;
        color: rgba(255,255,255,0.8);
        border-bottom: 1px solid rgba(255,255,255,0.05);
    }
    .mobile-nav a:last-child {
        border-bottom: none;
    }
    .mobile-nav a:hover {
        color: #fff;
    }
    .mobile-nav .nav-cta {
        margin-top: 12px;
        text-align: center;
        background: var(--gold);
        color: #071b34;
        border-radius: 6px;
        padding: 12px;
        font-weight: 700;
    }

    /* Existing responsive adjustments for layout */
    .hero-grid,
    .onegrid,
    .whygrid,
    .foundergrid,
    .sessiongrid,
    .contactgrid,
    .faqgrid,
    .ytgrid {
        grid-template-columns: 1fr;
        gap: 55px;
    }
    .hero-grid {
        padding-top: 85px;
        padding-bottom: 70px;
        min-height: auto;
    }
    .hero-art {
        height: 420px;
    }
    .exam-grid,
    .benefits,
    .ecosystem {
        grid-template-columns: repeat(2, 1fr);
    }
    .statgrid {
        grid-template-columns: repeat(2, 1fr);
    }
    .statgrid > div {
        border-bottom: 1px solid rgba(255, 255, 255, .1);
    }
    .steps {
        grid-template-columns: 1fr;
    }
    .steps article {
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, .12);
        margin: 0;
        min-height: auto;
    }
    .whyintro {
        position: static;
    }
    .footgrid {
        grid-template-columns: 1fr 1fr;
    }
    .footgrid > div:first-child {
        grid-column: 1/-1;
    }
}

@media (max-width: 650px) {
    .container {
        width: calc(100% - 32px);
    }
    body {
        font-size: 16px;
    }
    .topbar {
        display: none;
    }
    .nav {
        height: 72px;
    }
    .hamb {
        display: flex;
    }
    .mobile-nav {
        display: none;
    }
    .mobile-nav.open {
        display: block;
    }
    .mobile-nav > a:not(.nav-cta) {
        padding: 11px 0;
        font-size: 14px;
    }
    .mobile-nav .nav-cta {
        margin-top: 8px;
        text-align: center;
    }

    .hero h1 {
        font-size: 48px;
    }
    .hero-copy > p {
        font-size: 16px;
    }
    .mini-trust {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
    .mini-trust span,
    .mini-trust span:first-child {
        padding: 10px 7px 10px 0;
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, .1);
    }
    .hero-art {
        height: 320px;
    }
    .brand-seal {
        width: 270px;
        height: 270px;
    }
    .brand-seal strong {
        font-size: 29px;
    }
    .orbit-a {
        width: 350px;
        height: 350px;
    }
    .orbit-b {
        width: 410px;
        height: 410px;
    }
    .book-3d {
        left: 0;
        top: 35px;
        scale: .72;
    }
    .trophy-3d {
        right: 0;
        top: 45px;
        scale: .7;
    }
    .bulb-3d {
        left: 18px;
        bottom: 35px;
        scale: .7;
    }
    .floating-card {
        right: 0;
        bottom: 0;
    }
    .section {
        padding: 78px 0;
    }
    .section-head {
        display: block;
        margin-bottom: 35px;
    }
    .section-head h2,
    .whyintro h2,
    .faqgrid > div:first-child h2 {
        font-size: 43px;
    }
    .section-head > p {
        margin-top: 21px;
    }
    .exam-grid,
    .benefits,
    .ecosystem {
        grid-template-columns: 1fr;
    }
    .exam-grid article {
        min-height: 170px;
    }
    .onepaper {
        padding: 78px 0;
    }
    .op-copy h2 {
        font-size: 51px;
    }
    .subjects {
        grid-template-columns: 1fr;
    }
    .statgrid {
        grid-template-columns: 1fr 1fr;
    }
    .statgrid > div,
    .statgrid > div:first-child {
        padding: 20px 8px;
    }
    .statgrid strong {
        font-size: 27px;
    }
    .statgrid p {
        font-size: 10px;
    }
    .session h2,
    .founder h2,
    .youtube h2,
    .cta h2 {
        font-size: 48px;
    }
    .founder-art {
        height: 350px;
    }
    .ytmark {
        width: 145px;
        height: 145px;
    }
    .footgrid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
    .copyright {
        display: grid;
        gap: 8px;
    }
    .stickywa {
        position: fixed;
        display: flex;
        z-index: 90;
        left: 13px;
        right: 13px;
        bottom: 12px;
        min-height: 55px;
        background: var(--green);
        color: #062214;
        align-items: center;
        justify-content: center;
        gap: 9px;
        font-size: 13px;
        font-weight: 800;
        box-shadow: 0 12px 30px rgba(0, 0, 0, .2);
    }
    body {
        padding-bottom: 78px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
    .btn,
    .exam-grid article,
    .ecosystem article,
    .float-3d {
        transition: none;
        animation: none;
    }
}

/* V4 premium polish */
body {
    overflow-x: hidden;
}

.page-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0;
    background: linear-gradient(90deg, #e2b65d, #fff1b5, #2c8bc5);
    z-index: 1000;
}

.cursor-glow {
    position: fixed;
    pointer-events: none;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(44, 139, 197, .12), transparent 67%);
    transform: translate(-50%, -50%);
    z-index: 0;
    opacity: 0;
}

.quick-proof {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 28px;
}

.quick-proof span {
    display: inline-flex;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, .16);
    background: rgba(255, 255, 255, .045);
    padding: 8px 11px;
    color: #dce7f0;
    font-size: 11px;
}

.hero h1 {
    max-width: 850px;
    text-wrap: balance;
}

.section-head h2,
.whyintro h2,
.faqgrid > div:first-child h2,
.founder h2,
.session h2,
.youtube h2,
.cta h2,
.contact h2 {
    letter-spacing: -.045em;
    text-wrap: balance;
}

.exam-grid article,
.benefits article,
.ecosystem article {
    overflow: hidden;
}

.exam-grid article:before,
.benefits article:before,
.ecosystem article:before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(226, 182, 93, .1), transparent 35%);
    opacity: 0;
    transition: .25s;
    pointer-events: none;
}

.exam-grid article:hover:before,
.benefits article:hover:before,
.ecosystem article:hover:before {
    opacity: 1;
}

.op-panel,
.sessionbox {
    position: relative;
    overflow: hidden;
}

.op-panel:after,
.sessionbox:after {
    content: "";
    position: absolute;
    right: -60px;
    bottom: -70px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    border: 1px solid rgba(226, 182, 93, .15);
    box-shadow: 0 0 0 25px rgba(226, 182, 93, .025), 0 0 0 50px rgba(226, 182, 93, .02);
}

.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .7s ease, transform .7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: none;
}

@media (max-width: 650px) {
    .quick-proof {
        display: grid;
        grid-template-columns: 1fr;
    }
}

@media (prefers-reduced-motion: reduce) {
    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
    .cursor-glow {
        display: none;
    }
}

/* Scroll to top button */
.scroll-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    background: #071b34;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 9999;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    border: none;
}
.scroll-top.show {
    opacity: 1;
    visibility: visible;
}
.scroll-top:hover {
    background: #102a43;
}

/* WhatsApp floating button */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 55px;
    height: 55px;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    z-index: 9999;
    text-decoration: none;
}
.whatsapp-float:hover {
    background: #1eb851;
    transform: scale(1.05);
}

/* Remove old stickywa if it exists */
.stickywa {
    display: none !important;
}