@charset "UTF-8";

@font-face {
    font-family: Noe Display;
    font-style: normal;
    font-display: swap;
    font-weight: 500;
    src: url(/assets/fonts/noe-display-medium.woff2) format("woff2"), url(/assets/fonts/noe-display-medium.woff) format("woff")
}

:root {
    --font-family-base: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-family-display: "Noe Display", "Georgia", serif;
    --color-bg: #1a3a5f;
    --color-text: #ffffff;
    --color-primary: #72c7c2;
    --color-primary-offset: #43a9a3;
    --color-secondary: #ffb9ad;
    --color-border: rgba(255, 255, 255, 0.1);
    --color-bg-offset: #142d4a;
    --color-text-offset: rgba(255, 255, 255, 0.6);
}

html {
    font-family: var(--font-family-base);
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    box-sizing: border-box;
    overflow-y: scroll;
    font-size: 100%;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    scroll-behavior: smooth;
    scroll-padding-top: 6rem;
}

*,
*:before,
*:after {
    box-sizing: inherit;
}

body {
    margin: 0;
    font-family: var(--font-family-base);
    font-size: 1rem;
    line-height: 1.625;
    color: var(--color-text);
    overflow-x: hidden;
    transition: color .15s, background-color .15s;
}

@viewport {
    width: device-width
}

.layout {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    position: relative;
    transition: transform .3s cubic-bezier(.4, 0, .2, 1);
}

.layout .main {
    display: flex;
    flex-direction: column;
    flex: 1 0 auto;
}

.container {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    max-width: 1200px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    line-height: 1.2;
    font-family: var(--font-family-display);
    font-weight: 500;
    text-rendering: optimizeLegibility;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2.25rem;
}

h3 {
    font-size: 2rem;
}

p {
    margin: 0;
}

.lead {
    font-size: 1.5rem;
    font-weight: 300;
    line-height: 1.4;
}

@media (min-width: 670px) {
    .lead {
        font-size: 2rem;
    }
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover,
a:focus {
    color: var(--color-primary-offset);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.sr-skip-link {
    position: absolute;
    left: 50%;
    top: 0;
    font-size: 1rem;
    transform: translate(-50%) translateY(-100%);
    background-color: var(--color-text);
    color: var(--color-bg);
    border-radius: 0 0 .5rem .5rem;
    padding: 1rem 1.5rem;
    z-index: 1000;
    transition: transform 0.2s;
}

.sr-skip-link:focus {
    transform: translate(-50%) translateY(0);
    outline: none;
}

.fade-in {
    animation: fadeInUp .5s ease forwards;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}


.hero {
    display: flex;
    flex: 1 0 auto;
    flex-direction: column;
    justify-content: center;
    padding: 5rem 0 0 0;
    margin: 0;
}

@media (min-width: 940px) {
    .hero {
        min-height: 60vh;
    }
}

.hero__inner {
    display: flex;
    flex-direction: column;
}

.hero__pretitle {
    order: -1;
    font-family: var(--font-family-base);
    font-size: 1.1875rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    color: var(--color-primary);
}

.hero__title {
    font-family: var(--font-family-display);
    font-size: clamp(3.5rem, 10vw, 7rem);
    line-height: 0.95;
    margin-bottom: 1rem;
    font-weight: 500;
    letter-spacing: -0.02em;
}

.hero__cta {
    margin-top: 3rem;
}

.hero__content {
    font-size: clamp(1.5rem, 4vw, 2.25rem);
    font-weight: 300;
    line-height: 1.4;
    max-width: 40ch;
}

.hero__link {
    display: inline-block;
    color: var(--color-text) !important;
    position: relative;
    z-index: 1;
}

.hero__link:after,
.hero__link:before {
    content: "";
    display: block;
    height: .4em;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.hero__link:before {
    background-color: var(--color-border);
}

.hero__link:after {
    background-color: var(--color-primary);
    transform: scaleX(0);
    transform-origin: 0 50%;
    transition: transform .4s cubic-bezier(.86, 0, .07, 1);
}

.hero__link:hover:after {
    transform: scaleX(1);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    user-select: none;
    transition: all .3s ease;
    font-size: 1rem;
    padding: 1rem 2rem;
    border-radius: .5rem;
    font-weight: 600;
    cursor: pointer;
}

.btn--primary {
    background: linear-gradient(135deg, #72c7c2 0%, #43a9a3 100%);
    border: none;
    color: #1a3a5f;
    box-shadow: 0 10px 25px rgba(114, 199, 194, 0.25);
    border-radius: 100px;
    padding: 1.25rem 3rem;
    font-weight: 700;
    font-size: 1.125rem;
}

.btn--primary:hover,
.btn--primary:focus {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(114, 199, 194, 0.35);
    background: linear-gradient(135deg, #87d9d4 0%, #4ebcb5 100%);
}

.btn--primary:active {
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(114, 199, 194, 0.3);
}

.icon {
    display: inline-block;
    width: 1em;
    height: 1em;
    fill: currentColor;
    vertical-align: middle;
}

.section-separator {
    display: block;
    height: 1px;
    background: rgba(255, 255, 255, 0.2) !important;
    border: none;
    margin: 5rem 0;
    width: 100%;
}

@media (prefers-reduced-motion: reduce) {

    *,
    ::before,
    ::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}