/* ============================================================
   PAPERCHASIN ACADEMY
   COMPLETE STYLESHEET
============================================================ */


/* ============================================================
   VARIABLES
============================================================ */

:root {
    --black: #050505;
    --black-soft: #080808;

    --surface: #0c0c0c;
    --surface-light: #111111;
    --surface-hover: #151515;

    --border: #222222;
    --border-light: #343434;

    --white: #f4f4f4;

    --silver: #c9c9c9;
    --silver-dark: #8c8c8c;

    --muted: #747474;
    --muted-light: #989898;

    --container: 1220px;

    --transition: 0.25s ease;
}


/* ============================================================
   RESET
============================================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--black);
    color: var(--white);

    font-family:
        Inter,
        "Segoe UI",
        Arial,
        sans-serif;

    overflow-x: hidden;

    line-height: 1.6;
}

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

button {
    border: 0;
    font: inherit;
}

img {
    display: block;
    max-width: 100%;
}

.container {
    width: min(
        var(--container),
        calc(100% - 48px)
    );

    margin: 0 auto;
}


/* ============================================================
   SCROLLBAR
============================================================ */

::-webkit-scrollbar {
    width: 9px;
}

::-webkit-scrollbar-track {
    background: #060606;
}

::-webkit-scrollbar-thumb {
    background: #303030;

    border-radius: 50px;
}

::-webkit-scrollbar-thumb:hover {
    background: #494949;
}


/* ============================================================
   NAVIGATION
============================================================ */

.navbar {
    position: fixed;

    top: 0;
    left: 0;
    right: 0;

    height: 78px;

    display: flex;
    align-items: center;

    z-index: 1000;

    background:
        rgba(5, 5, 5, 0.68);

    border-bottom:
        1px solid
        rgba(255, 255, 255, 0.07);

    backdrop-filter: blur(18px);

    transition:
        background var(--transition),
        height var(--transition);
}

.navbar.scrolled {
    height: 68px;

    background:
        rgba(5, 5, 5, 0.94);
}

.nav-container {
    width: min(
        var(--container),
        calc(100% - 48px)
    );

    margin: auto;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand {
    display: flex;
    align-items: center;

    gap: 12px;

    width: fit-content;
}

.brand-logo {
    width: 43px;
    height: 43px;

    object-fit: cover;

    border-radius: 7px;

    border:
        1px solid
        rgba(255, 255, 255, 0.13);
}

.brand-text {
    display: flex;
    flex-direction: column;

    line-height: 1;
}

.brand-text strong {
    font-size: 15px;

    letter-spacing: -0.2px;
}

.brand-text span {
    margin-top: 6px;

    font-size: 8px;
    font-weight: 800;

    letter-spacing: 3px;

    color: #777;
}

.nav-links {
    display: flex;
    align-items: center;

    gap: 33px;

    font-size: 13px;
    font-weight: 650;

    color: #a9a9a9;
}

.nav-links > a:not(.nav-cta) {
    position: relative;
}

.nav-links > a:not(.nav-cta)::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: -7px;

    width: 0;
    height: 1px;

    background: white;

    transition:
        width var(--transition);
}

.nav-links > a:not(.nav-cta):hover {
    color: white;
}

.nav-links > a:not(.nav-cta):hover::after {
    width: 100%;
}

.nav-cta {
    padding:
        11px 18px;

    color: #080808;

    background:
        linear-gradient(
            135deg,
            #ffffff,
            #a6a6a6
        );

    border-radius: 5px;

    font-weight: 800;

    transition:
        transform var(--transition),
        filter var(--transition);
}

.nav-cta:hover {
    transform:
        translateY(-2px);

    filter:
        brightness(1.12);
}


/* ============================================================
   MOBILE MENU BUTTON
============================================================ */

.mobile-menu-button {
    display: none;

    width: 35px;

    background: none;

    cursor: pointer;
}

.mobile-menu-button span {
    display: block;

    height: 1px;
    width: 100%;

    margin: 7px 0;

    background: white;

    transition:
        var(--transition);
}


/* ============================================================
   HERO
============================================================ */

.hero {
    position: relative;

    min-height: 850px;

    display: flex;
    align-items: center;

    padding-top: 78px;

    overflow: hidden;

    isolation: isolate;
}

.hero-background {
    position: absolute;

    inset: 0;

    z-index: -5;

    background-image:
        url("assets/images/companybanner.png");

    background-size: cover;

    background-position:
        center 15%;

    transform:
        scale(1.035);

    filter:
        grayscale(1)
        contrast(1.07);
}

.hero-overlay {
    position: absolute;

    inset: 0;

    z-index: -4;

    background:

        radial-gradient(
            circle at 70% 35%,
            rgba(255,255,255,0.03),
            transparent 40%
        ),

        linear-gradient(
            90deg,
            rgba(0,0,0,0.94) 0%,
            rgba(0,0,0,0.79) 42%,
            rgba(0,0,0,0.50) 76%,
            rgba(0,0,0,0.62) 100%
        ),

        linear-gradient(
            0deg,
            #050505 0%,
            transparent 45%
        );
}

.hero-grid,
.final-cta-grid {
    position: absolute;

    inset: 0;

    z-index: -3;

    opacity: 0.22;

    background-image:

        linear-gradient(
            rgba(255,255,255,0.045) 1px,
            transparent 1px
        ),

        linear-gradient(
            90deg,
            rgba(255,255,255,0.045) 1px,
            transparent 1px
        );

    background-size:
        68px 68px;

    mask-image:
        linear-gradient(
            to bottom,
            transparent,
            black 40%,
            transparent
        );
}

.hero-content {
    width: min(
        var(--container),
        calc(100% - 48px)
    );

    margin: 0 auto;

    padding-top: 35px;
}

.hero-eyebrow {
    display: flex;
    align-items: center;

    gap: 12px;

    margin-bottom: 28px;

    color: #aaa;

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 2.6px;
}

.eyebrow-line {
    width: 45px;
    height: 1px;

    background:
        linear-gradient(
            to right,
            #fff,
            #555
        );
}

.hero h1 {
    max-width: 900px;

    font-size:
        clamp(68px, 8vw, 118px);

    line-height: 0.82;

    font-weight: 900;

    letter-spacing: -6px;
}

.hero h1 span {
    color: transparent;

    -webkit-text-stroke:
        1px #bcbcbc;
}

.hero-subtitle {
    max-width: 590px;

    margin-top: 34px;

    color: #aaa;

    font-size: 17px;

    line-height: 1.8;
}

.hero-buttons {
    display: flex;

    gap: 13px;

    margin-top: 38px;
}

.button {
    min-height: 51px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 18px;

    padding:
        0 22px;

    border-radius: 5px;

    font-size: 13px;
    font-weight: 800;

    transition:
        transform var(--transition),
        filter var(--transition),
        background var(--transition),
        border-color var(--transition);
}

.button-primary {
    color: #070707;

    background:
        linear-gradient(
            135deg,
            #f9f9f9 0%,
            #9e9e9e 100%
        );

    box-shadow:
        inset 0 1px
        rgba(255,255,255,0.8);
}

.button-primary:hover {
    transform:
        translateY(-3px);

    filter:
        brightness(1.15);
}

.button-secondary {
    color: #ddd;

    border:
        1px solid #3b3b3b;

    background:
        rgba(255,255,255,0.025);
}

.button-secondary:hover {
    transform:
        translateY(-3px);

    border-color:
        #666;

    background:
        rgba(255,255,255,0.05);
}

.hero-tags {
    display: flex;
    flex-wrap: wrap;

    gap: 10px;

    margin-top: 70px;
}

.hero-tags span {
    padding:
        8px 12px;

    border:
        1px solid
        rgba(255,255,255,0.12);

    background:
        rgba(0,0,0,0.45);

    backdrop-filter:
        blur(5px);

    color: #8f8f8f;

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 1.6px;
}

.scroll-indicator {
    position: absolute;

    right: 33px;
    bottom: 55px;

    display: flex;
    flex-direction: column;
    align-items: center;

    gap: 13px;
}

.scroll-indicator span {
    color: #555;

    font-size: 8px;
    font-weight: 800;

    letter-spacing: 2px;

    writing-mode:
        vertical-rl;
}

.scroll-line {
    height: 65px;
    width: 1px;

    background:
        linear-gradient(
            to bottom,
            #888,
            transparent
        );
}


/* ============================================================
   INTRO STRIP
============================================================ */

.intro-strip {
    overflow: hidden;

    border-top:
        1px solid #1c1c1c;

    border-bottom:
        1px solid #1c1c1c;

    background:
        #090909;
}

.intro-strip-inner {
    min-height: 65px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 40px;

    white-space: nowrap;
}

.intro-strip span {
    color: #686868;

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 2.3px;
}

.strip-dot {
    width: 4px;
    height: 4px;

    border-radius: 50%;

    background:
        #555;
}


/* ============================================================
   GENERIC SECTIONS
============================================================ */

.section {
    padding:
        125px 0;
}

.section-label {
    margin-bottom: 19px;

    color: #737373;

    font-size: 9px;
    font-weight: 900;

    letter-spacing: 2.8px;
}

.section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 50px;

    margin-bottom: 55px;
}

.section-header h2,
.about-content h2,
.why-heading h2 {
    max-width: 650px;

    font-size:
        clamp(42px, 5vw, 68px);

    line-height: 1;

    letter-spacing: -3.2px;

    font-weight: 850;
}

.section-header h2 span,
.about-content h2 span,
.why-heading h2 span,
.final-cta h2 span {
    color: #777;
}

.section-header > p {
    max-width: 420px;

    color: #777;

    font-size: 14px;

    line-height: 1.8;
}


/* ============================================================
   COURSES
============================================================ */

.courses-section {
    background:
        linear-gradient(
            180deg,
            #050505,
            #080808
        );
}

.course-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 18px;
}

.course-card {
    position: relative;

    overflow: hidden;

    border:
        1px solid #202020;

    background:
        linear-gradient(
            145deg,
            #0d0d0d,
            #090909
        );

    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        opacity 0.35s ease;
}

.course-card:hover {
    transform:
        translateY(-7px);

    border-color:
        #4b4b4b;
}

.featured-card {
    border-color:
        #454545;
}

.featured-label {
    position: absolute;

    top: 14px;
    left: 50%;

    z-index: 6;

    transform:
        translateX(-50%);

    padding:
        5px 10px;

    color: #0b0b0b;

    background:
        #d4d4d4;

    font-size: 7px;
    font-weight: 900;

    letter-spacing: 1.8px;
}

.coming-course-card {
    opacity: 0.72;
}

.coming-course-card:hover {
    opacity: 1;
}

.coming-card-overlay {
    position: absolute;

    top: 14px;
    left: 50%;

    z-index: 6;

    transform:
        translateX(-50%);

    padding:
        5px 10px;

    border:
        1px solid #444;

    background:
        #161616;

    color:
        #8a8a8a;

    font-size: 7px;
    font-weight: 900;

    letter-spacing: 1.8px;
}

.course-top {
    height: 58px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding:
        0 19px;

    border-bottom:
        1px solid #202020;
}

.course-number {
    color: #555;

    font-size: 10px;
    font-weight: 900;

    letter-spacing: 2px;
}

.course-level {
    color: #6e6e6e;

    font-size: 7px;
    font-weight: 900;

    letter-spacing: 1.6px;
}

.course-visual {
    position: relative;

    height: 220px;

    overflow: hidden;

    display: flex;
    align-items: center;
    justify-content: center;

    border-bottom:
        1px solid #202020;

    background:
        radial-gradient(
            circle at center,
            #202020,
            #090909 69%
        );
}

.visual-noise {
    position: absolute;

    inset: 0;

    opacity: 0.3;

    background-image:
        radial-gradient(
            #555 0.55px,
            transparent 0.55px
        );

    background-size:
        5px 5px;
}

.visual-title {
    position: relative;

    z-index: 3;

    color: transparent;

    -webkit-text-stroke:
        1px
        rgba(255,255,255,0.30);

    font-size: 48px;
    font-weight: 900;

    letter-spacing: -3px;
}

.code-lines {
    position: absolute;

    left: 32px;
    top: 42px;

    width: 180px;

    opacity: 0.35;
}

.code-lines span {
    display: block;

    height: 5px;

    margin-bottom: 15px;

    border-radius: 10px;

    background:
        linear-gradient(
            90deg,
            #ccc,
            transparent
        );
}

.code-lines span:nth-child(2) {
    width: 75%;
}

.code-lines span:nth-child(3) {
    width: 45%;
}

.code-lines span:nth-child(4) {
    width: 85%;
}

.code-lines span:nth-child(5) {
    width: 60%;
}

.systems-lines {
    position: absolute;

    inset: 35px;

    opacity: 0.18;
}

.systems-lines div {
    position: absolute;

    border:
        1px solid #ccc;
}

.systems-lines div:nth-child(1) {
    width: 100px;
    height: 45px;

    top: 0;
    right: 0;
}

.systems-lines div:nth-child(2) {
    width: 130px;
    height: 58px;

    left: 0;
    bottom: 15px;
}

.systems-lines div:nth-child(3) {
    width: 50px;
    height: 100px;

    right: 23%;
    bottom: 0;
}

.database-shape {
    position: absolute;

    width: 120px;
    height: 120px;

    opacity: 0.18;
}

.database-shape div {
    position: absolute;

    left: 0;

    width: 120px;
    height: 35px;

    border:
        1px solid white;

    border-radius: 50%;
}

.database-shape div:nth-child(1) {
    top: 10px;
}

.database-shape div:nth-child(2) {
    top: 42px;
}

.database-shape div:nth-child(3) {
    top: 74px;
}

.course-body {
    padding: 26px;
}

.course-category {
    color: #666;

    font-size: 8px;
    font-weight: 900;

    letter-spacing: 1.8px;
}

.course-body h3 {
    min-height: 61px;

    margin-top: 11px;

    font-size: 21px;

    letter-spacing: -0.7px;

    line-height: 1.3;
}

.course-body > p {
    min-height: 96px;

    margin-top: 14px;

    color: #797979;

    font-size: 13px;

    line-height: 1.75;
}

.course-info {
    display: flex;
    align-items: center;

    gap: 9px;

    margin-top: 23px;

    color: #555;

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 0.8px;
}

.info-divider {
    width: 3px;
    height: 3px;

    border-radius: 50%;

    background:
        #464646;
}

.course-footer {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 15px;

    margin-top: 28px;

    padding-top: 20px;

    border-top:
        1px solid #1e1e1e;
}

.course-price small {
    display: block;

    color: #555;

    font-size: 7px;
    font-weight: 900;

    letter-spacing: 1.5px;
}

.course-price strong {
    display: block;

    margin-top: 3px;

    font-size: 19px;
}

.coming-price strong {
    color: #777;

    font-size: 13px;

    text-transform: uppercase;

    letter-spacing: 0.5px;
}

.course-button {
    padding:
        9px 12px;

    cursor: pointer;

    color: #aaa;

    background:
        transparent;

    border:
        1px solid #292929;

    font-size: 10px;
    font-weight: 800;

    transition:
        color var(--transition),
        border-color var(--transition),
        background var(--transition);
}

.course-button span {
    margin-left: 6px;
}

.course-button:hover {
    color: #080808;

    background:
        #ddd;

    border-color:
        #ddd;
}


/* ============================================================
   WHY SECTION
============================================================ */

.why-section {
    border-top:
        1px solid #181818;

    border-bottom:
        1px solid #181818;

    background:
        #070707;
}

.why-grid {
    display: grid;

    grid-template-columns:
        0.85fr 1.15fr;

    gap: 90px;
}

.why-items {
    border-top:
        1px solid #222;
}

.why-item {
    display: grid;

    grid-template-columns:
        65px 1fr;

    gap: 25px;

    padding:
        31px 0;

    border-bottom:
        1px solid #222;
}

.why-number {
    color: #555;

    font-size: 9px;
    font-weight: 900;

    letter-spacing: 1px;
}

.why-item h3 {
    font-size: 17px;
}

.why-item p {
    max-width: 540px;

    margin-top: 8px;

    color: #777;

    font-size: 13px;
}


/* ============================================================
   SERVICES
============================================================ */

.service-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    border-top:
        1px solid #252525;

    border-left:
        1px solid #252525;
}

.service-card {
    position: relative;

    min-height: 320px;

    padding: 34px;

    border-right:
        1px solid #252525;

    border-bottom:
        1px solid #252525;

    transition:
        background var(--transition);
}

.service-card:hover {
    background:
        #0b0b0b;
}

.service-number {
    position: absolute;

    top: 33px;
    right: 34px;

    color: #444;

    font-size: 8px;
    font-weight: 900;
}

.service-icon {
    height: 70px;

    display: flex;
    align-items: center;

    color: #6a6a6a;

    font-family:
        Consolas,
        monospace;

    font-size: 30px;

    font-weight: 300;
}

.service-card h3 {
    margin-top: 34px;

    font-size: 20px;
}

.service-card p {
    max-width: 300px;

    margin-top: 13px;

    color: #727272;

    font-size: 13px;

    line-height: 1.75;
}

.service-link {
    position: absolute;

    bottom: 30px;
    left: 34px;

    color: #929292;

    font-size: 11px;
    font-weight: 700;
}

.service-link span {
    margin-left: 9px;

    transition:
        margin var(--transition);
}

.service-link:hover {
    color: white;
}

.service-link:hover span {
    margin-left: 14px;
}


/* ============================================================
   ABOUT
============================================================ */

.about-section {
    position: relative;

    overflow: hidden;

    background:
        linear-gradient(
            145deg,
            #090909,
            #050505
        );

    border-top:
        1px solid #171717;
}

.about-background-logo {
    position: absolute;

    right: -40px;
    bottom: -140px;

    color:
        rgba(255,255,255,0.016);

    font-size: 430px;
    font-weight: 950;

    letter-spacing: -35px;

    pointer-events: none;
}

.about-grid {
    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns:
        0.8fr 1.2fr;

    gap: 95px;

    align-items: center;
}

.about-image {
    position: relative;

    width:
        min(100%, 390px);

    aspect-ratio: 1;

    padding: 16px;

    background:
        linear-gradient(
            145deg,
            #181818,
            #080808
        );
}

.about-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    filter:
        grayscale(0.15)
        contrast(1.04);
}

.about-image-border {
    position: absolute;

    inset: -10px;

    border:
        1px solid #242424;

    pointer-events: none;
}

.about-content > p {
    max-width: 620px;

    margin-top: 22px;

    color: #808080;

    font-size: 14px;

    line-height: 1.85;
}

.about-divider {
    height: 1px;

    margin:
        35px 0;

    background:
        linear-gradient(
            to right,
            #303030,
            transparent
        );
}

.about-stats {
    display: flex;

    gap: 55px;
}

.about-stats strong {
    display: block;

    font-size: 22px;
}

.about-stats span {
    display: block;

    margin-top: 4px;

    color: #626262;

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 0.7px;
}


/* ============================================================
   COMMUNITY
============================================================ */

.community-section {
    padding:
        100px 0;

    background:
        #050505;
}

.community-box {
    display: grid;

    grid-template-columns:
        0.8fr 1.2fr;

    gap: 60px;

    padding: 55px;

    border:
        1px solid #252525;

    background:
        linear-gradient(
            135deg,
            #101010,
            #080808
        );
}

.community-text h2 {
    font-size:
        clamp(36px, 4vw, 55px);

    letter-spacing: -2.5px;

    line-height: 1;
}

.community-text p {
    max-width: 390px;

    margin-top: 16px;

    color: #737373;

    font-size: 13px;
}

.social-grid {
    display: grid;

    gap: 10px;
}

.social-card {
    min-height: 83px;

    display: grid;

    grid-template-columns:
        48px 1fr auto;

    align-items: center;

    gap: 15px;

    padding:
        13px 18px;

    border:
        1px solid #242424;

    background:
        #0b0b0b;

    transition:
        transform var(--transition),
        border-color var(--transition),
        background var(--transition);
}

.social-card:hover {
    transform:
        translateX(5px);

    border-color:
        #494949;

    background:
        #111;
}

.social-card img {
    width: 44px;
    height: 44px;

    border-radius: 10px;

    object-fit: cover;

    filter:
        saturate(0.8);
}

.social-card strong {
    display: block;

    font-size: 13px;
}

.social-card div span {
    display: block;

    margin-top: 2px;

    color: #606060;

    font-size: 9px;
}

.social-arrow {
    color: #555;

    font-size: 18px;
}


/* ============================================================
   FINAL CTA
============================================================ */

.final-cta {
    position: relative;

    overflow: hidden;

    min-height: 580px;

    display: flex;
    align-items: center;

    text-align: center;

    border-top:
        1px solid #181818;

    background:
        radial-gradient(
            circle at center,
            #151515,
            #050505 66%
        );
}

.final-cta-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cta-logo {
    width: 69px;
    height: 69px;

    margin-bottom: 29px;

    object-fit: cover;

    border-radius: 9px;

    border:
        1px solid #353535;
}

.final-cta h2 {
    max-width: 820px;

    font-size:
        clamp(47px, 6vw, 79px);

    line-height: 0.95;

    letter-spacing: -4px;
}

.final-cta p {
    max-width: 520px;

    margin:
        22px auto 30px;

    color: #747474;

    font-size: 14px;
}


/* ============================================================
   FOOTER
============================================================ */

footer {
    background:
        #050505;

    border-top:
        1px solid #1b1b1b;
}

.footer-main {
    display: grid;

    grid-template-columns:
        2fr 1fr 1fr 1fr;

    gap: 50px;

    padding:
        70px 0;
}

.footer-brand p {
    max-width: 330px;

    margin-top: 19px;

    color: #606060;

    font-size: 12px;
}

.footer-column {
    display: flex;
    flex-direction: column;

    gap: 11px;
}

.footer-column strong {
    margin-bottom: 7px;

    color: #676767;

    font-size: 8px;
    font-weight: 900;

    letter-spacing: 2px;
}

.footer-column a {
    width: fit-content;

    color: #8b8b8b;

    font-size: 12px;

    transition:
        color var(--transition);
}

.footer-column a:hover {
    color: white;
}

.footer-business-details {
    padding:
        22px 0;

    border-top:
        1px solid #181818;

    color:
        #555;

    font-size: 9px;

    line-height: 1.8;

    letter-spacing: 0.25px;
}

.footer-business-details strong {
    color: #6f6f6f;
}

.footer-business-details a {
    color: #777;

    transition:
        color var(--transition);
}

.footer-business-details a:hover {
    color: white;
}

.footer-bottom {
    min-height: 70px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    border-top:
        1px solid #181818;

    color: #4f4f4f;

    font-size: 9px;

    letter-spacing: 0.4px;
}


/* ============================================================
   SCROLL REVEAL
============================================================ */

.reveal {
    opacity: 0;

    transform:
        translateY(25px);

    transition:
        opacity 0.75s ease,
        transform 0.75s ease;
}

.reveal.visible {
    opacity: 1;

    transform:
        translateY(0);
}


/* ============================================================
   INFO / LEGAL PAGES
============================================================ */

.info-page {
    min-height: 100vh;

    padding:
        155px 0
        110px;

    background:
        radial-gradient(
            circle at 70% 15%,
            rgba(255,255,255,0.025),
            transparent 30%
        ),
        #050505;
}

.info-hero {
    max-width: 820px;

    margin-bottom: 70px;
}

.info-eyebrow {
    display: flex;
    align-items: center;

    gap: 12px;

    margin-bottom: 22px;

    color: #777;

    font-size: 9px;
    font-weight: 900;

    letter-spacing: 2.7px;
}

.info-eyebrow::before {
    content: "";

    width: 36px;
    height: 1px;

    background: #777;
}

.info-hero h1 {
    font-size:
        clamp(52px, 7vw, 88px);

    line-height: 0.95;

    letter-spacing: -4.5px;

    font-weight: 900;
}

.info-hero h1 span {
    color: #737373;
}

.info-hero > p {
    max-width: 670px;

    margin-top: 25px;

    color: #858585;

    font-size: 15px;

    line-height: 1.85;
}

.info-updated {
    display: inline-block;

    margin-top: 24px;

    color: #565656;

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 1.5px;
}

.legal-layout {
    display: grid;

    grid-template-columns:
        230px minmax(0, 760px);

    gap: 85px;

    align-items: start;
}

.legal-sidebar {
    position: sticky;

    top: 105px;

    border-top:
        1px solid #272727;
}

.legal-sidebar a {
    display: block;

    padding:
        13px 0;

    border-bottom:
        1px solid #191919;

    color: #666;

    font-size: 10px;
    font-weight: 700;

    transition:
        color var(--transition),
        padding-left var(--transition);
}

.legal-sidebar a:hover {
    color: white;

    padding-left: 5px;
}

.legal-content {
    max-width: 760px;
}

.legal-section {
    padding:
        0 0
        48px;

    margin-bottom: 48px;

    border-bottom:
        1px solid #1d1d1d;
}

.legal-section:last-child {
    border-bottom: 0;
}

.legal-section-number {
    display: block;

    margin-bottom: 12px;

    color: #505050;

    font-size: 8px;
    font-weight: 900;

    letter-spacing: 2px;
}

.legal-section h2 {
    margin-bottom: 19px;

    font-size: 25px;

    letter-spacing: -0.8px;

    line-height: 1.25;
}

.legal-section h3 {
    margin:
        25px 0 9px;

    font-size: 15px;
}

.legal-section p {
    margin-bottom: 15px;

    color: #858585;

    font-size: 13px;

    line-height: 1.9;
}

.legal-section ul {
    margin:
        14px 0
        18px 20px;

    color: #858585;

    font-size: 13px;

    line-height: 1.9;
}

.legal-section li {
    padding-left: 7px;

    margin-bottom: 6px;
}

.legal-section a {
    color: #d1d1d1;

    text-decoration:
        underline;

    text-decoration-color:
        #4b4b4b;

    text-underline-offset: 3px;
}

.legal-section a:hover {
    color: white;
}

.legal-notice {
    margin:
        24px 0;

    padding:
        20px 22px;

    border:
        1px solid #292929;

    border-left:
        2px solid #a0a0a0;

    background:
        #0a0a0a;
}

.legal-notice strong {
    display: block;

    margin-bottom: 6px;

    font-size: 11px;

    letter-spacing: 0.3px;
}

.legal-notice p {
    margin: 0;

    font-size: 12px;
}


/* ============================================================
   CONTACT PAGE
============================================================ */

.contact-grid {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 15px;

    max-width: 950px;
}

.contact-card {
    position: relative;

    min-height: 225px;

    display: flex;
    flex-direction: column;

    padding: 30px;

    overflow: hidden;

    border:
        1px solid #252525;

    background:
        linear-gradient(
            145deg,
            #0d0d0d,
            #080808
        );

    transition:
        transform var(--transition),
        border-color var(--transition),
        background var(--transition);
}

.contact-card:hover {
    transform:
        translateY(-4px);

    border-color:
        #484848;

    background:
        #101010;
}

.contact-card-icon {
    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 27px;

    border:
        1px solid #2b2b2b;

    border-radius: 8px;

    background:
        #111;

    overflow: hidden;
}

.contact-card-icon img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}

.contact-card-icon.text-icon {
    color: #888;

    font-size: 17px;
    font-weight: 800;
}

.contact-card small {
    margin-bottom: 6px;

    color: #575757;

    font-size: 8px;
    font-weight: 900;

    letter-spacing: 1.7px;
}

.contact-card h2 {
    font-size: 20px;

    letter-spacing: -0.5px;
}

.contact-card p {
    max-width: 390px;

    margin-top: 9px;

    color: #747474;

    font-size: 12px;

    line-height: 1.7;
}

.contact-card-link {
    margin-top: auto;

    padding-top: 21px;

    color: #c5c5c5;

    font-size: 11px;
    font-weight: 700;
}

.contact-card-link span {
    margin-left: 8px;
}

.contact-note {
    max-width: 950px;

    margin-top: 40px;

    padding:
        25px 0;

    border-top:
        1px solid #202020;

    border-bottom:
        1px solid #202020;

    color: #666;

    font-size: 11px;

    line-height: 1.8;
}


/* ============================================================
   PRODUCT HERO
============================================================ */

.product-hero {
    position: relative;

    min-height: 820px;

    display: flex;
    align-items: center;

    padding:
        145px 0
        95px;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 72% 36%,
            #181818,
            transparent 35%
        ),
        #050505;
}

.product-hero-grid,
.product-enrol-grid {
    position: absolute;

    inset: 0;

    opacity: 0.18;

    pointer-events: none;

    background-image:

        linear-gradient(
            rgba(255,255,255,0.045) 1px,
            transparent 1px
        ),

        linear-gradient(
            90deg,
            rgba(255,255,255,0.045) 1px,
            transparent 1px
        );

    background-size:
        68px 68px;

    mask-image:
        linear-gradient(
            to bottom,
            transparent,
            black 25%,
            black 75%,
            transparent
        );
}

.product-hero-layout {
    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns:
        minmax(0, 1.2fr)
        minmax(340px, 0.8fr);

    gap: 90px;

    align-items: center;
}

.product-back-link {
    display: inline-block;

    margin-bottom: 32px;

    color: #666;

    font-size: 9px;
    font-weight: 900;

    letter-spacing: 1.8px;

    transition:
        color var(--transition);
}

.product-back-link:hover {
    color: white;
}

.product-badges {
    display: flex;
    flex-wrap: wrap;

    gap: 8px;

    margin-bottom: 23px;
}

.product-badges span {
    padding:
        7px 10px;

    border:
        1px solid #272727;

    background:
        rgba(255,255,255,0.025);

    color: #777;

    font-size: 7px;
    font-weight: 900;

    letter-spacing: 1.5px;
}

.product-hero h1 {
    max-width: 750px;

    font-size:
        clamp(60px, 7vw, 98px);

    line-height: 0.86;

    letter-spacing: -5px;

    font-weight: 900;
}

.product-hero h1 span {
    display: block;

    color: transparent;

    -webkit-text-stroke:
        1px #777;
}

.product-lead {
    max-width: 630px;

    margin-top: 30px;

    color: #8c8c8c;

    font-size: 16px;

    line-height: 1.8;
}

.product-highlights {
    display: flex;

    margin-top: 52px;

    border-top:
        1px solid #242424;
}

.product-highlights > div {
    min-width: 130px;

    padding:
        21px 30px
        0 0;
}

.product-highlights strong {
    display: block;

    font-size: 17px;
}

.product-highlights span {
    display: block;

    margin-top: 3px;

    color: #5f5f5f;

    font-size: 8px;

    letter-spacing: 0.6px;
}


/* ============================================================
   PRODUCT PURCHASE CARD
============================================================ */

.product-purchase-card {
    border:
        1px solid #303030;

    background:
        #090909;

    box-shadow:
        0 30px 80px
        rgba(0,0,0,0.45);
}

.product-artwork {
    position: relative;

    aspect-ratio:
        16 / 9;

    overflow: hidden;

    border-bottom:
        1px solid #292929;

    background:
        radial-gradient(
            circle at center,
            #232323,
            #080808 70%
        );
}

.product-artwork img {
    position: relative;

    z-index: 2;

    width: 100%;
    height: 100%;

    object-fit: cover;
}

.product-artwork-placeholder {
    position: absolute;

    inset: 0;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;
}

.product-artwork-placeholder span {
    color: #555;

    font-size: 7px;
    font-weight: 900;

    letter-spacing: 2.1px;
}

.product-artwork-placeholder strong {
    margin-top: 12px;

    color: transparent;

    -webkit-text-stroke:
        1px #aaa;

    font-size: 58px;

    line-height: 1;

    letter-spacing: -4px;
}

.product-artwork-placeholder small {
    margin-top: 9px;

    color: #626262;

    font-size: 8px;
    font-weight: 800;

    letter-spacing: 1.9px;
}

.purchase-content {
    padding: 28px;
}

.purchase-label {
    color: #626262;

    font-size: 8px;
    font-weight: 900;

    letter-spacing: 1.8px;
}

.purchase-price {
    margin-top: 18px;

    padding-bottom: 21px;

    border-bottom:
        1px solid #222;
}

.purchase-price small {
    display: block;

    color: #505050;

    font-size: 7px;
    font-weight: 900;

    letter-spacing: 1.4px;
}

.purchase-price strong {
    display: block;

    margin-top: 2px;

    font-size: 35px;

    letter-spacing: -1.5px;
}

.purchase-features {
    margin:
        22px 0;

    list-style: none;
}

.purchase-features li {
    position: relative;

    padding:
        7px 0
        7px 20px;

    color: #858585;

    font-size: 11px;
}

.purchase-features li::before {
    content: "✓";

    position: absolute;

    left: 0;

    color: #c5c5c5;
}

.product-buy-button,
.product-final-buy {
    min-height: 54px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 16px;

    width: 100%;

    background:
        linear-gradient(
            135deg,
            #f4f4f4,
            #999
        );

    color: #060606;

    font-size: 10px;
    font-weight: 900;

    letter-spacing: 1.1px;

    transition:
        transform var(--transition),
        filter var(--transition);
}

.product-buy-button:hover,
.product-final-buy:not(.disabled-checkout):hover {
    transform:
        translateY(-2px);

    filter:
        brightness(1.12);
}

.purchase-secure {
    margin-top: 12px;

    color: #4e4e4e;

    text-align: center;

    font-size: 8px;
}


/* ============================================================
   PRODUCT SECTIONS
============================================================ */

.product-section {
    padding:
        120px 0;

    border-top:
        1px solid #171717;

    background:
        #070707;
}

.product-dark-section {
    background:
        #050505;
}

.product-section-heading {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;

    gap: 45px;

    margin-bottom: 55px;
}

.product-section-heading h2 {
    max-width: 700px;

    font-size:
        clamp(43px, 5vw, 66px);

    line-height: 1;

    letter-spacing: -3px;
}

.product-section-heading h2 span {
    color: #747474;
}

.product-section-heading > p {
    max-width: 400px;

    color: #777;

    font-size: 13px;

    line-height: 1.8;
}

.product-intro-grid {
    display: grid;

    grid-template-columns:
        1.4fr 0.6fr;

    gap: 80px;
}

.product-intro-main {
    max-width: 720px;
}

.product-intro-main p {
    margin-bottom: 25px;

    color: #8b8b8b;

    font-size: 15px;

    line-height: 1.95;
}

.product-for-card {
    padding: 27px;

    border:
        1px solid #272727;

    background:
        #0b0b0b;
}

.product-for-card > span {
    color: #565656;

    font-size: 7px;
    font-weight: 900;

    letter-spacing: 1.8px;
}

.product-for-card h3 {
    margin-top: 15px;

    font-size: 19px;

    line-height: 1.4;
}

.product-for-card p {
    margin-top: 15px;

    color: #737373;

    font-size: 12px;

    line-height: 1.8;
}


/* ============================================================
   LEARNING GRID
============================================================ */

.learn-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    border-top:
        1px solid #242424;

    border-left:
        1px solid #242424;
}

.learn-card {
    min-height: 255px;

    padding: 28px;

    border-right:
        1px solid #242424;

    border-bottom:
        1px solid #242424;
}

.learn-card > span {
    color: #444;

    font-size: 8px;
    font-weight: 900;
}

.learn-card h3 {
    margin-top: 40px;

    font-size: 17px;
}

.learn-card p {
    margin-top: 12px;

    color: #6e6e6e;

    font-size: 11px;

    line-height: 1.8;
}


/* ============================================================
   CURRICULUM
============================================================ */

.curriculum-list {
    border-top:
        1px solid #262626;
}

.curriculum-module {
    display: grid;

    grid-template-columns:
        70px 1fr auto;

    gap: 28px;

    align-items: center;

    padding:
        29px 0;

    border-bottom:
        1px solid #262626;

    transition:
        padding-left var(--transition),
        background var(--transition);
}

.curriculum-module:hover {
    padding-left: 12px;

    background:
        rgba(255,255,255,0.015);
}

.curriculum-number {
    color: #484848;

    font-size: 9px;
    font-weight: 900;
}

.curriculum-main > span {
    color: #535353;

    font-size: 7px;
    font-weight: 900;

    letter-spacing: 1.6px;
}

.curriculum-main h3 {
    margin-top: 5px;

    font-size: 18px;
}

.curriculum-main p {
    max-width: 610px;

    margin-top: 5px;

    color: #686868;

    font-size: 11px;
}

.curriculum-lessons {
    color: #545454;

    font-size: 8px;
    font-weight: 900;

    letter-spacing: 1.2px;
}


/* ============================================================
   INCLUDED
============================================================ */

.included-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 13px;
}

.included-card {
    min-height: 245px;

    padding: 27px;

    border:
        1px solid #232323;

    background:
        #090909;
}

.included-icon {
    height: 55px;

    color: #707070;

    font-family:
        Consolas,
        monospace;

    font-size: 26px;
}

.included-card h3 {
    margin-top: 29px;

    font-size: 16px;
}

.included-card p {
    margin-top: 11px;

    color: #6e6e6e;

    font-size: 11px;

    line-height: 1.8;
}


/* ============================================================
   REQUIREMENTS
============================================================ */

.requirements-layout {
    display: grid;

    grid-template-columns:
        0.75fr 1.25fr;

    gap: 85px;
}

.requirements-heading h2 {
    font-size:
        clamp(40px, 5vw, 62px);

    line-height: 1;

    letter-spacing: -3px;
}

.requirements-list {
    border-top:
        1px solid #252525;
}

.requirement {
    display: grid;

    grid-template-columns:
        60px 1fr;

    gap: 20px;

    padding:
        25px 0;

    border-bottom:
        1px solid #252525;
}

.requirement > span {
    color: #464646;

    font-size: 8px;
    font-weight: 900;
}

.requirement strong {
    font-size: 14px;
}

.requirement p {
    margin-top: 4px;

    color: #696969;

    font-size: 11px;
}


/* ============================================================
   ENROLMENT
============================================================ */

.product-enrol-section {
    position: relative;

    min-height: 650px;

    display: flex;
    align-items: center;

    overflow: hidden;

    border-top:
        1px solid #1e1e1e;

    background:
        radial-gradient(
            circle at center,
            #161616,
            #050505 68%
        );
}

.product-enrol-content {
    position: relative;

    z-index: 2;

    max-width: 740px;

    text-align: center;
}

.product-enrol-content .cta-logo {
    margin:
        0 auto
        26px;
}

.product-enrol-content h2 {
    font-size:
        clamp(48px, 6vw, 78px);

    line-height: 0.95;

    letter-spacing: -4px;
}

.product-enrol-content h2 span {
    color: #707070;
}

.enrol-product-name {
    margin-top: 23px;

    color: #949494;

    font-size: 14px;
}

.enrol-price {
    margin:
        7px 0
        27px;

    font-size: 31px;

    font-weight: 900;
}

.product-final-buy {
    max-width: 390px;

    margin: auto;
}

.disabled-checkout {
    cursor:
        not-allowed;

    background:
        #272727;

    color:
        #686868;
}

.enrol-note {
    margin-top: 14px;

    color: #505050;

    font-size: 9px;
}

.enrol-legal {
    max-width: 600px;

    margin:
        26px auto 0;

    color: #4c4c4c;

    font-size: 9px;

    line-height: 1.8;
}

.enrol-legal a {
    color: #777;

    text-decoration:
        underline;

    text-underline-offset:
        3px;
}


/* ============================================================
   COMING SOON PAGES
============================================================ */

.coming-page {
    position: relative;

    min-height:
        calc(100vh - 140px);

    display: flex;
    align-items: center;

    padding:
        135px 0
        90px;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 65% 40%,
            #171717,
            transparent 36%
        ),
        #050505;
}

.coming-grid {
    position: absolute;

    inset: 0;

    opacity: 0.18;

    background-image:

        linear-gradient(
            rgba(255,255,255,0.045) 1px,
            transparent 1px
        ),

        linear-gradient(
            90deg,
            rgba(255,255,255,0.045) 1px,
            transparent 1px
        );

    background-size:
        68px 68px;

    mask-image:
        radial-gradient(
            circle at center,
            black,
            transparent 75%
        );
}

.coming-content {
    position: relative;

    z-index: 2;

    max-width: 900px;
}

.coming-number {
    margin-bottom: 18px;

    color: #303030;

    font-size: 80px;
    font-weight: 950;

    line-height: 0.9;

    letter-spacing: -6px;
}

.coming-label {
    color: #5d5d5d;

    font-size: 8px;
    font-weight: 900;

    letter-spacing: 2.3px;
}

.coming-content h1 {
    max-width: 900px;

    margin-top: 20px;

    font-size:
        clamp(63px, 8vw, 110px);

    line-height: 0.85;

    letter-spacing: -6px;
}

.coming-content h1 span {
    display: block;

    color: transparent;

    -webkit-text-stroke:
        1px #777;
}

.coming-content > p {
    max-width: 600px;

    margin:
        30px 0;

    color: #7b7b7b;

    font-size: 14px;

    line-height: 1.85;
}

.coming-status {
    width: fit-content;

    display: flex;
    align-items: center;

    gap: 10px;

    margin-bottom: 32px;

    padding:
        9px 13px;

    border:
        1px solid #292929;

    background:
        rgba(255,255,255,0.02);

    color: #888;

    font-size: 8px;
    font-weight: 900;

    letter-spacing: 1.8px;
}

.coming-status span {
    width: 6px;
    height: 6px;

    border-radius: 50%;

    background: #858585;

    box-shadow:
        0 0 12px
        rgba(255,255,255,0.3);
}

.coming-return-button {
    width: fit-content;
}


/* ============================================================
   TABLET
============================================================ */

@media (max-width: 1000px) {

    .course-grid,
    .service-grid {
        grid-template-columns:
            1fr;
    }

    .course-body > p,
    .course-body h3 {
        min-height: auto;
    }

    .why-grid,
    .about-grid,
    .community-box {
        grid-template-columns:
            1fr;
    }

    .why-grid {
        gap: 55px;
    }

    .about-image {
        width: 300px;
    }

    .footer-main {
        grid-template-columns:
            2fr 1fr 1fr;
    }

    .footer-brand {
        grid-column:
            1 / -1;

        margin-bottom: 20px;
    }

    .product-hero-layout {
        grid-template-columns:
            1fr;

        gap: 55px;
    }

    .product-purchase-card {
        max-width: 570px;
    }

    .learn-grid,
    .included-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

}


/* ============================================================
   SMALL TABLET
============================================================ */

@media (max-width: 850px) {

    .legal-layout {
        grid-template-columns:
            1fr;

        gap: 45px;
    }

    .legal-sidebar {
        position: static;

        display: grid;

        grid-template-columns:
            repeat(2, 1fr);

        gap:
            0 20px;
    }

    .contact-grid {
        grid-template-columns:
            1fr;
    }

}


/* ============================================================
   MOBILE
============================================================ */

@media (max-width: 760px) {

    .container,
    .hero-content,
    .nav-container {
        width:
            calc(100% - 32px);
    }


    /* NAV */

    .mobile-menu-button {
        display: block;
    }

    .nav-links {
        position: absolute;

        top: 78px;
        left: 0;
        right: 0;

        display: none;
        flex-direction: column;
        align-items: stretch;

        gap: 0;

        padding:
            15px 16px
            22px;

        background:
            rgba(5,5,5,0.98);

        border-bottom:
            1px solid #242424;
    }

    .nav-links.open {
        display: flex;
    }

    .nav-links > a {
        padding:
            15px 8px;

        border-bottom:
            1px solid #171717;
    }

    .nav-cta {
        margin-top: 10px;

        text-align: center;
    }


    /* HERO */

    .hero {
        min-height: 760px;
    }

    .hero-background {
        background-position:
            62% center;
    }

    .hero-overlay {
        background:

            linear-gradient(
                to right,
                rgba(0,0,0,0.88),
                rgba(0,0,0,0.70)
            ),

            linear-gradient(
                to top,
                #050505,
                transparent 60%
            );
    }

    .hero h1 {
        font-size:
            clamp(55px, 17vw, 80px);

        letter-spacing:
            -4px;
    }

    .hero-subtitle {
        font-size:
            14px;
    }

    .hero-buttons {
        flex-direction:
            column;

        align-items:
            stretch;
    }

    .button {
        width: 100%;
    }

    .scroll-indicator {
        display: none;
    }

    .intro-strip-inner {
        justify-content:
            flex-start;

        padding-left:
            30px;

        overflow-x:
            auto;
    }


    /* SECTIONS */

    .section {
        padding:
            85px 0;
    }

    .section-header {
        display:
            block;

        margin-bottom:
            35px;
    }

    .section-header > p {
        margin-top:
            20px;
    }

    .section-header h2,
    .about-content h2,
    .why-heading h2 {
        font-size:
            44px;

        letter-spacing:
            -2.4px;
    }

    .course-visual {
        height: 190px;
    }

    .about-image {
        width: 220px;
    }

    .about-stats {
        flex-direction:
            column;

        gap: 20px;
    }

    .community-box {
        padding: 28px;
    }

    .social-card {
        grid-template-columns:
            42px 1fr auto;
    }

    .social-card img {
        width: 38px;
        height: 38px;
    }

    .footer-main {
        grid-template-columns:
            1fr 1fr;

        gap:
            40px 25px;
    }

    .footer-brand {
        grid-column:
            1 / -1;
    }

    .footer-business-details {
        padding:
            20px 0;

        line-height: 2;
    }

    .footer-bottom {
        flex-direction:
            column;

        justify-content:
            center;

        align-items:
            flex-start;

        gap: 7px;

        padding:
            18px 0;
    }


    /* PRODUCT */

    .product-hero {
        padding:
            120px 0
            75px;
    }

    .product-hero h1 {
        font-size:
            clamp(52px, 16vw, 72px);

        letter-spacing:
            -3.8px;
    }

    .product-highlights {
        flex-wrap:
            wrap;
    }

    .product-section {
        padding:
            80px 0;
    }

    .product-section-heading {
        display:
            block;
    }

    .product-section-heading > p {
        margin-top:
            20px;
    }

    .product-intro-grid,
    .requirements-layout {
        grid-template-columns:
            1fr;

        gap: 40px;
    }

    .learn-grid,
    .included-grid {
        grid-template-columns:
            1fr;
    }

    .curriculum-module {
        grid-template-columns:
            45px 1fr;
    }

    .curriculum-lessons {
        display: none;
    }


    /* COMING SOON */

    .coming-content h1 {
        font-size:
            58px;

        letter-spacing:
            -3.5px;
    }

}


/* ============================================================
   EXTRA SMALL
============================================================ */

@media (max-width: 550px) {

    .info-page {
        padding:
            125px 0
            75px;
    }

    .info-hero h1 {
        letter-spacing:
            -3px;
    }

    .legal-sidebar {
        grid-template-columns:
            1fr;
    }

}


/* ============================================================
   VERY SMALL
============================================================ */

@media (max-width: 480px) {

    .brand-text strong {
        font-size: 13px;
    }

    .hero h1 {
        font-size: 56px;
    }

    .hero-tags {
        margin-top: 45px;
    }

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

}