@font-face {
    font-family: "TT Lakes";
    font-weight: 300;
    src: url("/fonts/tt-lakes-neue-trial-light.ttf") format("truetype");
    font-display: swap;
}

@font-face {
    font-family: "TT Lakes";
    font-weight: 400;
    src: url("/fonts/tt-lakes-neue-trial-regular.ttf") format("truetype");
    font-display: swap;
}

@font-face {
    font-family: "TT Lakes";
    font-weight: 500;
    src: url("/fonts/tt-lakes-neue-trial-medium.ttf") format("truetype");
    font-display: swap;
}

@font-face {
    font-family: "TT Lakes";
    font-weight: 600;
    src: url("/fonts/tt-lakes-neue-trial-demibold.ttf") format("truetype");
    font-display: swap;
}

@font-face {
    font-family: "TT Lakes";
    font-weight: 700;
    src: url("/fonts/tt-lakes-neue-trial-bold-1.ttf") format("truetype");
    font-display: swap;
}

@font-face {
    font-family: "TT Lakes";
    font-weight: 800;
    src: url("/fonts/tt-lakes-neue-trial-extrabold.ttf") format("truetype");
    font-display: swap;
}

@font-face {
    font-family: "TT Lakes Extended";
    font-weight: 600;
    src: url("/fonts/tt-lakes-neue-trial-extended-demibold.ttf") format("truetype");
    font-display: swap;
}

@font-face {
    font-family: "TT Lakes Extended";
    font-weight: 700;
    src: url("/fonts/tt-lakes-neue-trial-extended-bold.ttf") format("truetype");
    font-display: swap;
}

:root {
    --navy-950: #030918;
    --navy-900: #050e24;
    --navy-800: #081736;
    --navy-700: #0d2350;
    --navy-600: #143371;
    --cyan: #19c8ff;
    --cyan-soft: #6fdcff;
    --blue: #1e6fff;
    --purple: #7761df;
    --purple-dark: #5f4ac4;
    --white: #fff;
    --text: #d6deee;
    --muted: #9aa8c4;
    --line: #ffffff1f;
    --font-head: "TT Lakes", "Montserrat", sans-serif;
    --font-head-ext: "TT Lakes Extended", "TT Lakes", "Montserrat", sans-serif;
    --font-body: "Montserrat", "Poppins", sans-serif;
    --container: 1200px;
    --radius: 14px;
    --shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
    --header-h: 92px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--navy-950);
    font-size: 16px;
    line-height: 1.7;
    overflow-x: hidden;
    padding-top: var(--header-h);
}

img, video {
    max-width: 100%;
}

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

h1, h2, h3, h4 {
    font-family: var(--font-head);
    color: var(--white);
    font-weight: 700;
    line-height: 1.15;
}

h1 {
    font-size: clamp(36px, 4.6vw, 58px);
    font-family: var(--font-head-ext);
}

h2 {
    font-size: clamp(30px, 3.6vw, 46px);
}

h3 {
    font-size: 22px;
}

p {
    margin: 0 0 16px;
}

.accent {
    color: var(--cyan);
}

.lead {
    color: var(--text);
    font-size: 18px;
}

/* Section rhythm */

.section {
    padding: 96px 0;
    position: relative;
    overflow: hidden;
}

.section--tight {
    padding: 64px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 48px;
}

.section-title h2 {
    margin-bottom: 8px;
}

.section-title p {
    color: var(--muted);
    max-width: 760px;
    margin: 0 auto;
}

.section > .container {
    position: relative;
    z-index: 1;
}

@media (max-width: 767px) {
    .section {
        padding: 72px 0;
    }
}

/* Buttons */

.btn {
    font-family: var(--font-head);
    letter-spacing: .3px;
    background: var(--purple);
    color: var(--white);
    border: 2px solid transparent;
    border-radius: 6px;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    transition: transform .25s, background .25s, box-shadow .25s, color .25s, border-color .25s;
    box-shadow: 0 10px 28px rgba(119, 97, 223, .35);
}

.btn:hover {
    background: var(--purple-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 14px 34px rgba(119, 97, 223, .45);
}

.btn--outline {
    border-color: var(--cyan);
    color: var(--cyan);
    box-shadow: none;
    background: transparent;
}

.btn--outline:hover {
    background: var(--cyan);
    color: var(--navy-900);
    box-shadow: 0 14px 34px rgba(25, 200, 255, .35);
}

.btn--sm {
    padding: 10px 22px;
    font-size: 14px;
}

.btn-row {
    flex-wrap: wrap;
    gap: 14px;
    display: flex;
}

/* Background video layer */

.bg-video {
    z-index: 0;
    pointer-events: none;
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.bg-video video {
    object-fit: cover;
    opacity: .55;
    width: 100%;
    height: 100%;
}

.bg-video:after {
    content: "";
    background: linear-gradient(rgba(5, 14, 36, .86), rgba(3, 9, 24, .9));
    position: absolute;
    inset: 0;
}

.shape-arrow {
    z-index: 2;
    border-left: 34px solid transparent;
    border-right: 34px solid transparent;
    border-top: 26px solid var(--navy-950);
    width: 0;
    height: 0;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

/* Header / nav */

.site-header {
    z-index: 90;
    height: var(--header-h);
    background: rgba(4, 11, 29, .96);
    backdrop-filter: blur(8px);
    align-items: center;
    box-shadow: 0 6px 30px rgba(0, 0, 0, .4);
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
}

.header__inner {
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    width: 100%;
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 28px;
    display: flex;
}

.header__logo img {
    width: auto;
    height: 62px;
}

.nav {
    align-items: center;
    gap: 6px;
    display: flex;
}

.nav__item {
    position: relative;
}

.nav__link {
    font-family: var(--font-head);
    letter-spacing: 1px;
    color: var(--white);
    border-radius: 4px;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 600;
    transition: color .2s;
    display: inline-flex;
}

.nav__link:hover,
.nav__link.active {
    color: var(--cyan);
}

.header__actions {
    align-items: center;
    gap: 10px;
    display: flex;
}

.icon-btn {
    border: 1px solid var(--line);
    width: 46px;
    height: 46px;
    color: var(--white);
    background: rgba(255, 255, 255, .04);
    border-radius: 8px;
    justify-content: center;
    align-items: center;
    transition: all .2s;
    display: inline-flex;
}

.icon-btn:hover {
    background: var(--cyan);
    color: var(--navy-900);
    border-color: var(--cyan);
}

.icon-btn svg {
    width: 22px;
    height: 22px;
}

/* Offcanvas mobile nav */

.offcanvas-dark {
    background: var(--navy-900);
    color: var(--text);
    border-left: 1px solid var(--line);
    width: min(420px, 92vw);
}

.offcanvas-dark .offcanvas-header {
    padding: 24px 32px 0;
}

.offcanvas-dark .offcanvas-body {
    padding: 16px 32px 36px;
}

.offcanvas__logo {
    width: 60%;
    margin: 0 auto;
    display: block;
}

.offcanvas__divider {
    border: 0;
    border-top: 1px solid var(--line);
    width: 80%;
    margin: 20px auto;
}

.offcanvas__nav a {
    border-bottom: 1px solid var(--line);
    font-family: var(--font-head);
    letter-spacing: 1px;
    color: var(--white);
    padding: 12px 0;
    font-size: 14px;
    font-weight: 600;
    display: block;
}

.offcanvas__nav a.active {
    color: var(--cyan);
}

.offcanvas__nav .sub a {
    color: var(--muted);
    padding-left: 18px;
    font-size: 13px;
    border-bottom: none;
}

.icon-list {
    flex-direction: column;
    gap: 10px;
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
}

.icon-list li {
    color: var(--text);
    align-items: flex-start;
    gap: 10px;
    font-size: 15px;
    display: flex;
}

.icon-list svg {
    width: 15px;
    height: 15px;
    fill: var(--cyan);
    flex: none;
    margin-top: 6px;
}

.icon-list--check svg {
    fill: var(--cyan);
}

.social {
    justify-content: center;
    gap: 12px;
    display: flex;
}

.social a {
    width: 42px;
    height: 42px;
    color: var(--white);
    border: 1px solid rgba(194, 194, 194, .27);
    border-radius: 4px;
    justify-content: center;
    align-items: center;
    transition: all .25s;
    display: inline-flex;
}

.social a svg {
    fill: currentColor;
    width: 16px;
    height: 16px;
}

.social a:hover {
    background: var(--cyan);
    border-color: var(--cyan);
    color: var(--navy-900);
}

.footer .social {
    justify-content: flex-start;
}

.offcanvas__tag {
    text-align: center;
    font-family: var(--font-head);
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--white);
    font-size: 13px;
    font-weight: 600;
}

/* Hero */

.hero {
    background-color: var(--navy-950);
    background-position: 50%;
    background-size: cover;
    align-items: flex-end;
    min-height: 100vh;
    display: flex;
    position: relative;
    overflow: hidden;
    margin-top: calc(var(--header-h) * -1);
}

.hero__overlay {
    background: linear-gradient(90deg, rgba(3, 9, 24, .85) 0%, rgba(3, 9, 24, .55) 45%, rgba(3, 9, 24, .15) 100%),
                linear-gradient(rgba(3, 9, 24, 0) 45%, rgba(3, 9, 24, .95) 100%);
    position: absolute;
    inset: 0;
}

.hero__content {
    z-index: 1;
    max-width: 880px;
    padding: 160px 0 110px;
    position: relative;
}

.hero__content h1 {
    text-shadow: 0 6px 30px rgba(0, 0, 0, .55);
    margin-bottom: 14px;
}

.hero__content .lead {
    color: var(--cyan-soft);
    font-size: 20px;
    font-family: var(--font-head);
    letter-spacing: .5px;
    margin-bottom: 30px;
    font-weight: 500;
}

.hero__scroll {
    color: var(--white);
    opacity: .8;
    margin-top: 38px;
    animation: sink 1.6s ease-in-out infinite;
    display: inline-flex;
}

.hero__scroll svg {
    width: 44px;
    height: 44px;
}

@keyframes sink {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(8px); }
}

/* About */

.about__media {
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid var(--line);
    position: relative;
    overflow: hidden;
}

.about__media video {
    aspect-ratio: 16/9;
    object-fit: cover;
    width: 100%;
}

.about__points {
    grid-template-columns: 1fr 1fr;
    gap: 12px 24px;
    margin-top: 26px;
    display: grid;
}

.about__text p {
    color: var(--text);
    margin-bottom: 26px;
}

.about__row {
    grid-template-columns: 1.05fr 1fr;
    align-items: center;
    gap: 56px;
    display: grid;
}

@media (max-width: 1024px) {
    .about__row {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about__row .about__text {
        order: -1;
    }
}

@media (max-width: 480px) {
    .about__points {
        grid-template-columns: 1fr;
    }
}

.why__intro {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 56px;
    margin-bottom: 56px;
    display: grid;
}

.why__intro p {
    color: var(--text);
}

@media (max-width: 1024px) {
    .why__intro {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

/* Feature grid */

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

@media (max-width: 900px) {
    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 560px) {
    .feature-grid {
        grid-template-columns: 1fr;
    }
}

.feature {
    text-align: center;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: linear-gradient(rgba(255, 255, 255, .05), rgba(255, 255, 255, .02));
    flex-direction: column;
    align-items: center;
    gap: 18px;
    padding: 36px 24px;
    transition: transform .3s, border-color .3s, box-shadow .3s;
    display: flex;
}

.feature:hover {
    border-color: rgba(25, 200, 255, .5);
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(25, 200, 255, .12);
}

.feature__icon {
    background: var(--white);
    border-radius: 50%;
    place-items: center;
    width: 96px;
    height: 96px;
    padding: 20px;
    display: grid;
    box-shadow: 0 0 0 8px rgba(25, 200, 255, .12);
}

.feature__icon img {
    object-fit: contain;
    width: 100%;
    height: 100%;
}

.feature h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
}

/* Band */

.band {
    text-align: center;
    padding: 56px 0;
    position: relative;
    overflow: hidden;
}

.band h2 {
    font-family: var(--font-head-ext);
    letter-spacing: .5px;
    margin: 0;
}

/* Spaces */

.grid {
    gap: 32px;
    display: grid;
}

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

@media (max-width: 1024px) {
    .grid-4, .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .grid-2, .grid-3, .grid-4 {
        grid-template-columns: 1fr;
    }
}

.space-card {
    text-align: center;
}

.space-card__img {
    border-radius: var(--radius);
    aspect-ratio: 1;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    margin-bottom: 20px;
    overflow: hidden;
}

.space-card__img img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    transition: transform .6s;
}

.space-card:hover .space-card__img img {
    transform: scale(1.06);
}

.space-card h3 {
    margin-bottom: 8px;
    font-size: 22px;
}

.space-card p {
    color: var(--muted);
    margin: 0;
    font-size: 15px;
}

/* Icon box */

.icon-box {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .03);
    align-items: flex-start;
    gap: 22px;
    padding: 30px;
    transition: transform .3s, border-color .3s;
    display: flex;
}

.icon-box:hover {
    border-color: rgba(25, 200, 255, .5);
    transform: translateY(-4px);
}

.icon-box__icon {
    width: 60px;
    height: 60px;
    color: var(--cyan);
    background: rgba(25, 200, 255, .12);
    border-radius: 12px;
    flex: none;
    place-items: center;
    display: grid;
}

.icon-box__icon svg {
    fill: currentColor;
    width: 28px;
    height: 28px;
}

.icon-box h3 {
    margin-bottom: 8px;
    font-size: 22px;
}

.icon-box p {
    color: var(--muted);
    margin: 0 0 12px;
}

.icon-box a.more {
    color: var(--cyan);
    font-family: var(--font-head);
    letter-spacing: .5px;
    font-size: 14px;
    font-weight: 600;
}

.icon-box a.more:hover {
    text-decoration: underline;
}

.icon-box--center {
    text-align: center;
    flex-direction: column;
    align-items: center;
}

/* Video frame */

.video-frame {
    border-radius: var(--radius);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    background: #000;
    overflow: hidden;
}

.video-frame video,
.video-frame iframe {
    aspect-ratio: 16/9;
    object-fit: cover;
    width: 100%;
}

/* Form */

.form {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    display: grid;
}

.form .full {
    grid-column: 1 / -1;
}

.form input,
.form textarea {
    width: 100%;
    color: var(--white);
    font-family: var(--font-body);
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 6px;
    outline: none;
    padding: 13px 16px;
    font-size: 15px;
    transition: border-color .2s, background .2s;
}

.form input::placeholder,
.form textarea::placeholder {
    color: #8f9bb8;
}

.form input:focus,
.form textarea:focus {
    border-color: var(--cyan);
    background: rgba(255, 255, 255, .09);
    color: var(--white);
    box-shadow: none;
}

.form textarea {
    resize: vertical;
    min-height: 120px;
}

.form .btn {
    width: 100%;
}

.form__note {
    color: var(--cyan-soft);
    grid-column: 1 / -1;
    margin: 0;
    font-size: 14px;
}

@media (max-width: 560px) {
    .form {
        grid-template-columns: 1fr;
    }
}

/* Cards */

.card {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .03);
    padding: 36px;
}

/* Contact */

.contact__row {
    grid-template-columns: 1fr 1fr;
    align-items: start;
    gap: 48px;
    display: grid;
}

@media (max-width: 1024px) {
    .contact__row {
        grid-template-columns: 1fr;
    }
}

.contact__boxes {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 26px;
    display: grid;
}

.contact__boxes .icon-box:last-child {
    grid-column: 1 / -1;
}

@media (max-width: 560px) {
    .contact__boxes {
        grid-template-columns: 1fr;
    }
}

/* Footer */

.footer {
    background: var(--navy-900);
    border-top: 1px solid var(--line);
    position: relative;
    overflow: hidden;
}

.footer__grid {
    grid-template-columns: 1.4fr 1fr 1.3fr;
    gap: 40px;
    padding: 72px 0 48px;
    display: grid;
    position: relative;
}

@media (max-width: 900px) {
    .footer__grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }
}

.footer__logo img {
    width: auto;
    height: 74px;
    margin-bottom: 18px;
}

.footer h2 {
    letter-spacing: .5px;
    margin-bottom: 18px;
    font-size: 20px;
}

.footer__links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer__links li a {
    color: var(--text);
    align-items: center;
    gap: 10px;
    padding: 6px 0;
    transition: color .2s;
    display: inline-flex;
}

.footer__links li a:hover {
    color: var(--cyan);
}

.footer__links svg {
    width: 12px;
    height: 12px;
    fill: var(--cyan);
}

.footer__bottom {
    border-top: 1px solid var(--line);
    text-align: center;
    color: var(--muted);
    padding: 20px 0;
    font-size: 14px;
    position: relative;
}

/* Page hero (inner pages) */

.page-hero {
    text-align: center;
    background: var(--navy-900);
    padding: 190px 0 90px;
    position: relative;
    overflow: hidden;
    margin-top: calc(var(--header-h) * -1);
}

.page-hero:before {
    content: "";
    opacity: .55;
    background: url("/assets/3.jpg") 50% / cover no-repeat;
    position: absolute;
    inset: 0;
}

.page-hero:after {
    content: "";
    background: linear-gradient(rgba(3, 9, 24, .75), rgba(3, 9, 24, .92));
    position: absolute;
    inset: 0;
}

.page-hero .container {
    z-index: 1;
    position: relative;
}

.page-hero h1 {
    margin-bottom: 8px;
}

.page-hero p {
    color: var(--cyan-soft);
    font-family: var(--font-head);
    letter-spacing: .5px;
    margin: 0;
}

/* Team */

.team-card {
    text-align: center;
}

.team-card__img {
    aspect-ratio: 5/6;
    border-radius: var(--radius);
    border: 1px solid var(--line);
    background: var(--navy-700);
    place-items: center;
    margin-bottom: 16px;
    display: grid;
    overflow: hidden;
}

.team-card__img img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.team-card__initials {
    font-family: var(--font-head-ext);
    color: var(--cyan);
    font-size: 56px;
    font-weight: 700;
}

.team-card h3 {
    margin-bottom: 2px;
    font-size: 20px;
}

.team-card span {
    color: var(--cyan);
    font-family: var(--font-head);
    letter-spacing: .5px;
    font-weight: 500;
}

/* Utilities */

.util-grid {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 14px;
    display: grid;
}

.util-item {
    border: 1px solid var(--line);
    font-family: var(--font-head);
    color: var(--white);
    background: rgba(255, 255, 255, .03);
    border-radius: 10px;
    align-items: center;
    gap: 12px;
    padding: 16px 18px;
    font-weight: 500;
    transition: all .25s;
    display: flex;
}

.util-item:hover {
    border-color: var(--cyan);
    background: rgba(25, 200, 255, .08);
}

.util-item svg {
    width: 16px;
    height: 16px;
    fill: var(--cyan);
    flex: none;
}

/* Location benefits */

.benefit {
    text-align: center;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, .03);
    border-radius: 10px;
    padding: 22px 12px;
}

.benefit small {
    color: var(--cyan);
    font-family: var(--font-head);
    letter-spacing: 1px;
    font-size: 13px;
    font-weight: 600;
    display: block;
}

.benefit strong {
    color: var(--white);
    font-family: var(--font-head);
    margin-top: 4px;
    font-size: 18px;
    font-weight: 600;
    display: block;
}

.benefits-grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
    display: grid;
}

@media (max-width: 1024px) {
    .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 600px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.light-panel {
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    background: #fff;
    padding: 16px;
}

/* Resources */

.resource {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .03);
    align-items: center;
    gap: 20px;
    padding: 26px;
    transition: all .25s;
    display: flex;
}

.resource:hover {
    border-color: var(--cyan);
    transform: translateY(-3px);
}

.resource__icon {
    color: #b9aaff;
    background: rgba(119, 97, 223, .18);
    border-radius: 12px;
    flex: none;
    place-items: center;
    width: 58px;
    height: 58px;
    display: grid;
}

.resource__icon svg {
    fill: currentColor;
    width: 28px;
    height: 28px;
}

.resource h3 {
    margin-bottom: 4px;
    font-size: 20px;
}

.resource p {
    color: var(--muted);
    margin: 0 0 10px;
    font-size: 14px;
}

@media (max-width: 1024px) {
    .nav {
        display: none !important;
    }
}
