* {
    box-sizing: border-box;
}

:root {
    --green: #13d77a;
    --blue-dark: #101a28;
    --orange: #ffa987;
    --yellow: #f7ee6c;
    --blue: #80d7db;
    --white: #ecede7;
    --border: rgba(236, 237, 231, 0.4);
}

html, body{
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 110px;
}

body {
    font-family: "PP Mori", helvetica, sans-serif;
    font-size: 18px;
    line-height: 1.5;
    color: var(--white);
    background: var(--blue-dark);
}

nav ul, nav li {
    margin: 0rem 0.5rem;
    padding: 0;
    display: inline-block;
    list-style-type: none;
}

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


h2 {
    margin: 0 0 0.75rem;
    font-size: 7.25rem;
    font-weight: 400;
    line-height: 1.1;
}

h3 {
    margin: 0 0 0.5rem;
    font-size: 1.25rem;
    font-weight: 400;
}

p {
    margin: 0 0 1rem;
    color: var(--white);
}

hr {
    margin: 0;
    padding: 0;
    border: 0;
}
hr.orange {
    border-top: 1px solid var(--orange);
}
hr.yellow {
    border-top: 1px solid var(--yellow);
}
hr.green {
    border-top: 1px solid var(--green);
}
hr.blue {
    border-top: 1px solid var(--blue);
}

iframe {
    border: 0 none;
}

header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(16, 26, 40, 0.5);
    backdrop-filter: blur(16px);
}

main #drop_section {
    position: relative;
}

main #drop_section aside {
    position: sticky;
    bottom: 0;

    width: max-content;
    margin-left: auto;
    margin-right: auto;

    background:rgba(16, 26, 40, 0.5);
    backdrop-filter: blur(8px);
    border-top-left-radius: 1rem;
    border-top-right-radius: 1rem;

    transition: opacity 0.4s;

    z-index: 19;
}
main #drop_section aside.hidden {
    opacity: 0;
}

main #drop_section aside li {
    margin: 0 1rem;
}

main #drop_section aside li a {
    display: inline-block;
    padding: 0.2rem 0.5rem;
    border-radius: 0.5rem;
    transition: all 0.2s;
    font-weight: 400;
    font-size: 0.8rem;
}

main #drop_section aside li a:hover, main #drop_section aside li a.active {
    background:rgba(255, 255, 255, 0.1);
}

main #drop_section aside .wrapper {
    padding: 0.75rem 0;
}

main #drop_section .drop > div.wrapper {
    padding-bottom: 6rem;
}

main section > div.wrapper {
    padding: 2rem 4rem;
}

section {
    position: relative;
    overflow: hidden;
}

section > .wrapper {
    padding-top: 0 !important;
    padding-bottom: 0;
}

section a {
    text-decoration: underline;
}
section a:hover {
    text-decoration: none;
}

footer {
    background: var(--blue-dark);
}

#hero {
    padding-top: 6rem;
    padding-bottom: 6rem;
}

h1 {
    margin: 0;
    font-size: 8.5rem;
    font-size: clamp(4.5rem, 6vw + 1rem, 8.5rem);
    font-weight: 400;
    line-height: 0.95;
}

.hero-copy .hero-lead {
    font-size: 1.25rem;
    font-size: clamp(1rem, 1vw + 0.75rem, 1.25rem);
    max-width: 48ch;
}

#video_headline .wrapper {
    padding-bottom: 2rem;
    padding-top: 0;
    text-align: center;
}

#video .main-video {
    border-radius: 2rem;
    overflow: hidden;

    aspect-ratio: 16 / 9;
    max-height: calc(95vh - 90px);
    margin: 0 auto;
}

#video iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
    margin: 0;
    padding: 0;
}

.video-shell {
    position: relative;
    width: 100%;
    height: 100%;
}

.video-shell iframe {
    display: block;
}

.video-shell:fullscreen, .video-shell:-webkit-full-screen {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
}

.video-shell:fullscreen iframe, .video-shell:-webkit-full-screen iframe {
    width: 100%;
    height: auto;
    max-width: 100vw;
    max-height: 100vh;
}

.video-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    transition: opacity 0.25s ease;
    pointer-events: auto;
}

.video-overlay.is-hidden {
    opacity: 0;
    pointer-events: none;
}

.video-play {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: auto;
    max-width: 10%;
    margin: 0 auto;
    border: 0;
    padding: 0;
    border-radius: 0;
    background: transparent;
    cursor: pointer;
    transition: transform 0.2s ease;

    border-radius: 100%;
    box-shadow: 0px 7px 32px 0px rgba(0,0,0,0.19);
}

.video-play img {
    display: block;
    width: 100%;
}

.video-play:hover {
    transform: scale(1.02);
}

.video-play:focus-visible {
    outline: 2px solid var(--green);
    outline-offset: 4px;
}

.video-controls {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    gap: 0.5rem;
    align-items: center;
    padding: 0.75rem 1rem;
    background: linear-gradient(180deg, rgba(16, 26, 40, 0) 0%, rgba(16, 26, 40, 0.6) 100%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.25s ease;
}

.video-hit {
    position: absolute;
    inset: 0;
    pointer-events: none;
    cursor: pointer;
}

.video-hit.is-active {
    pointer-events: auto;
}

.video-controls.is-visible {
    opacity: 1;
    pointer-events: auto;
}

.video-spinner {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(16, 26, 40, 0.3);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
}

.video-spinner.is-visible {
    opacity: 1;
}

.video-spinner::after {
    content: "";
    width: 40px;
    height: 40px;
    border: 3px solid rgba(236, 237, 231, 0.3);
    border-top: 3px solid var(--green);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.video-progress, .video-volume {
    -webkit-appearance: none;
    appearance: none;
    height: 6px;
    border-radius: 999px;
    background: rgba(236, 237, 231, 0.25);
    outline: none;
    cursor: pointer;
}

.video-progress {
    flex: 1;
}

.video-volume {
    width: 120px;
    max-width: 28%;
}

.video-fullscreen {
    min-width: 0;
    padding: 0.25rem;
    border: 0;
    background: transparent;
    color: var(--white);
    border-radius: 0.5rem;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.video-fullscreen:focus-visible {
    outline: 2px solid var(--green);
    outline-offset: 3px;
}

.video-fullscreen:hover {
    background: rgba(255, 255, 255, 0.05);
}

.video-fullscreen .fullscreen-icon {
    width: 18px;
    height: 18px;
    border: 2px solid var(--white);
    border-radius: 3px;
    position: relative;
    box-sizing: border-box;
}

.video-fullscreen.is-active .fullscreen-icon {
    border-color: var(--green);
}

@supports (-webkit-touch-callout: none) and (hover: none) {
    .video-play img {
        image-rendering: -webkit-optimize-contrast;
    }
}

.video-toggle {
    min-width: 0;
    padding: 0.25rem;
    border: 0;
    background: transparent;
    color: var(--white);
    border-radius: 0.5rem;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}


.video-toggle:focus-visible {
    outline: 2px solid var(--green);
    outline-offset: 3px;
}

.video-toggle .toggle-icon {
    width: 18px;
    height: 18px;
    position: relative;
    display: none;
}

.video-toggle .toggle-play {
    display: block;
    border-style: solid;
    border-width: 9px 0 9px 14px;
    border-color: transparent transparent transparent var(--white);
}

.video-toggle .toggle-pause::before,
.video-toggle .toggle-pause::after {
    content: "";
    position: absolute;
    top: 0;
    width: 5px;
    height: 18px;
    background: var(--white);
}

.video-toggle .toggle-pause::before {
    left: 0;
}

.video-toggle .toggle-pause::after {
    right: 0;
}

.video-toggle.is-pause .toggle-play {
    display: none;
}

.video-toggle.is-pause .toggle-pause {
    display: block;
}

.video-progress::-webkit-slider-thumb, .video-volume::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--green);
    border: 0;
    box-shadow: 0 0 0 4px rgba(19, 215, 122, 0.25);
}

.video-progress::-moz-range-thumb, .video-volume::-moz-range-thumb {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--green);
    border: 0;
    box-shadow: 0 0 0 4px rgba(19, 215, 122, 0.25);
}

#numbers {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#numbers .wrapper {
    padding-top: 6rem;
    padding-bottom: 6rem;
}

#numbers h2, #video_headline h2 {
    font-size: 4.5rem;
}

#video_headline h2 {
    max-width: 900px;
    margin: 0 auto;
}

.numbers-bubble {
    position: absolute;
    right: -12%;
    top: 30%;
    width: 400px;
    aspect-ratio: 2 / 0.7;
    background-color: var(--green);
    border-radius: 100%;
    filter: blur(120px);
    opacity: 0.7;
    z-index: 0;
    pointer-events: none;
}

#drop h3 {
    font-size: 4.5rem;
    font-weight: 400;
}

#cta img {
    width: 100%;
}

#submenu_toggle {
    display: none;
}

.wrapper {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 2rem;
    position: relative;
}

.site-header .nav-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.brand img {
    height: 2rem;
    width: auto;
    display: block;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-links a {
    padding: 0.5rem 0.75rem;
    font-size: 1rem;
    border-radius: 0.5rem;
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.5rem;
    border: 1px solid var(--green);
    background: var(--green);
    color: #0b161f;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.nav-links a:hover {
    background: rgba(236, 237, 231, 0.08);
    color: var(--white);
}

.nav-links a.nav-cta:hover {
    background: var(--blue-dark);
    color: var(--green);
    padding-left: 1.25rem;
    padding-right: 1.25rem;
}

.nav-toggle {
    display: none;
    position: relative;
    width: 1.75rem;
    height: 1.25rem;
    border-radius: 0;
    border: 0 none;
    background: transparent;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    cursor: pointer;
    padding: 0;
}

.nav-toggle span {
    position: absolute;
    left: 0;
    right: 0;
    width: 100%;
    height: 2px;
    background: var(--white);
    border-radius: 0.25rem;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle span:nth-child(1) {
    transform: translateY(-0.45rem);
}

.nav-toggle span:nth-child(2) {
    transform: translateY(0);
}

.nav-toggle span:nth-child(3) {
    transform: translateY(0.45rem);
}

.nav-toggle.is-active span:nth-child(1) {
    transform: translateY(0) rotate(45deg);
}

.nav-toggle.is-active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.is-active span:nth-child(3) {
    transform: translateY(0) rotate(-45deg);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.25rem;
    border-radius: 0.5rem;
    text-transform: uppercase;
    border: 1px solid var(--green);
    background: var(--green);
    color: #0b161f;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn:hover {
    background: var(--blue-dark);
    color: var(--green);
    padding-left: 1.75rem;
    padding-right: 1.75rem;
}

.btn.btn-ghost {
    background: var(--blue-dark);
    color: var(--green);
}

.btn.btn-ghost:hover {
    background: var(--green);
    color: #0b161f;
    padding-left: 1.75rem;
    padding-right: 1.75rem;
}

.btn.primary {
    background: var(--green);
    color: #0b161f;
}

.btn.ghost {
    background: transparent;
    color: var(--white);
}

.split-layout .wrapper {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
}

.split-layout .content {
    flex: 1;
}

.split-layout .content.c-1-3 {
    flex: 0 0 33.333%;
    max-width: 33.333%;
}

.split-layout .example.c-2-3 {
    flex: 2;
    max-width: 66.667%;
}

.example {
    position: relative;
    flex: 1;
    margin: 0 auto;
}
.example.ignore-max {
    max-width: 100%;
}

.example .example-stage {
    position: absolute;
    inset: 0;
}

.btn.ghost:hover {
    background: rgba(236, 237, 231, 0.12);
}

.bordered-thing {
    padding: 12px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--border);
    backdrop-filter: blur(10px);
    border-radius: 26px;
    display: inline-block;
    line-height: 0px;
    box-shadow: 0px 9px 18px rgba(0, 0, 0, 0.2);
}

.bordered-thing.nobottom {
    border-bottom-right-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
    padding-bottom: 0 !important;
    border-bottom: 0 !important;
}

.bordered-thing > * {
    border-radius: 10px;
    overflow: hidden;
    width: 100%;
}
.bordered-thing.nobottom > * {
    border-bottom-right-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
}

.ex_phone .bordered-thing {
    width: 100%;
    max-width: 360px;
}

#anim_phone {
    display: block;
    width: 100%;
    aspect-ratio: 501 / 833;
}

#anim_phone svg {
    display: block;
    width: 100%;
    height: 100%;
}

.bordered-thing.smart {
    position: absolute; 
    backdrop-filter: blur(10px);
    border-radius: 14px;
    width: 34%;
    padding: 9px;
    z-index: 10;
    transition: transform 4s ease-in-out;
    will-change: transform;
}

.bordered-thing.smart > * {
    display: flex;
    justify-content: space-between;
    border-radius: 0;
    padding: 0.2rem 0.5rem;
    font-size: clamp(0.8rem, 1vw, 1rem);
}

.bordered-thing.smart div .label {
    display: flex;
    flex-direction: column;
    line-height: 1.4;
}

.bordered-thing.smart div .label strong {
    font-size: clamp(0.9rem, 2vw, 1rem);
    font-weight: 600;
}

.bordered-thing.smart div .label span {
    font-size: clamp(0.65rem, 1.5vw, 0.75rem);
    font-weight: 400;
}

.bordered-thing.smart div .icons {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    align-items: center;
}

.bordered-thing.smart div .icons img {
    height: 1.6rem;
    max-width: 2.2rem;
}

.bordered-thing.smart > * {
    font-size: clamp(0.8rem, 1vw, 1rem);
}

.bordered-thing.smart div .label strong {
    font-size: clamp(0.9rem, 2vw, 1rem);
}

.bordered-thing.smart div .label span {
    font-size: clamp(0.65rem, 1.5vw, 0.75rem);
}

.shiny {
    width: 9px;
    height: 9px;
    filter: blur(2px);
    position: absolute;
    z-index: 10;
    border-radius: 20px;
    display: none;
}

.yellow .shiny {
    background:var(--yellow);
}

.green .shiny {
    background:var(--green);
}

.orange .shiny {
    background:var(--orange);
}

.blue .shiny {
    background:var(--blue);
}

.hero {
    position: relative;
}

.hero-copy {
    display: flex;
    gap: 4rem;
}

.section-header {
    margin-bottom: 2.25rem;
}

.numbers-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.number-card {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 3.75rem 2rem;
    text-align: center;

    background: rgba(236, 237, 231, 0.08);
    border: 1px solid var(--border);
    box-shadow: 0px 10px 24px rgba(16, 26, 40, 0.16);
    backdrop-filter: blur(17px);
    border-radius: 2rem;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.number-card.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.number-value {
    font-size: 4.5rem;
    font-size: clamp(3rem, 4vw + 1rem, 4.5rem);
    font-weight: 400;
    color: var(--green);
    line-height: 1;
    white-space: nowrap;
}

.number-label {
    font-size: 1rem;
    letter-spacing: 0;
    color: var(--white);
    margin-top: 0.5rem;
}

.scene-wrap {
    width: 100%;
    aspect-ratio: 16 / 10;
    position: relative;
    margin: 0 auto;
}
.scene-wrap::before {
    content: "";
    display: block;
    width: 40%;
    height: 80%;
    aspect-ratio: 1 / 1;

    position: absolute;
    z-index: -1;
    top: 10%;
    bottom: 0;
    left: 30%;
    right: 0;

    border-radius: 50%;

    background: linear-gradient(180deg, rgba(255, 162, 125, 0.6) 3.39%, rgba(255, 242, 55, 0.6) 34.51%, rgba(0, 241, 126, 0.6) 67.02%, rgba(23, 232, 241, 0.6) 100%);
    mix-blend-mode: normal;
    opacity: 0.65;
    filter: blur(120px);
}

.scene-wrap canvas {
    width: 100%;
    height: 100%;
    display: block;
}

.section-headline {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.section-headline img {
    margin: 3rem 0;
}

.section-headline h2 {
    padding-top: 2rem;
}

.section-syndication h2, .section-syndication h3 {
    color: var(--orange);
}

.section-tour h2, .section-tour h3 {
    color: var(--yellow);
}

.section-leasing h2, .section-leasing h3 {
    color: var(--green);
}

.section-data h2, .section-data h3 {
    color: var(--blue);
}

.section-intro {
    display: flex;
    align-items: end;
    gap: 2rem;
    justify-content: space-between;
    margin-top: 6rem;
}

.section-intro .section-copy {
    max-width: 350px;
}

.section-intro .section-media {
    border-radius: 1rem;
    overflow: hidden;
    width: 50%;
    max-width: 800px;
    line-height: 0;
}
section.orange .section-media {
    box-shadow: 0px 0px 120px 0px rgba(255, 169, 135, 0.4);
}
section.drop { 
    overflow: visible;
    background: var(--blue-dark);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

section.drop.is-visible {
    opacity: 1;
    transform: translateY(0);
}
#syndication {
    z-index: 1;
}
#tour_booking {
    z-index: 2;
}
#online_leasing {
    z-index: 3;
}
#data_visibility {
    z-index: 4;
}
section.drop div.sticker-layer {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0; 
    top: calc(100vh - 25vw);
}
section.drop div.sticker {
    content: "";
    width: 25vw;
    aspect-ratio: 1 / 1;
    position: sticky;
    top: calc(100vh - 25vw);
    left: 50%;
    transform: translateX(-50%);
    filter: blur(120px);
    border-radius: 100%;
    opacity: 0.7;
    z-index: 0;
    display: block;
}
section.drop.orange div.sticker {
    background-color: var(--orange);
}
section.drop.yellow .section-media {
    box-shadow: 0px 0px 120px 0px rgba(247, 238, 108, 0.4);
}
section.drop.yellow div.sticker {
    background-color: var(--yellow);
}
section.drop.green .section-media {
    box-shadow: 0px 0px 120px 0px rgba(19, 215, 122, 0.4);
}
section.drop.green div.sticker {
    background-color: var(--green);
}
section.drop.blue .section-media {
    box-shadow: 0px 0px 120px 0px rgba(128, 215, 219, 0.4);
}
section.drop.blue div.sticker {
    background-color: var(--blue);
}

.section-intro .section-media iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
}

.section-box {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    border: 1px solid var(--white);
    box-shadow: 0px 10px 24px rgba(16, 26, 40, 0.16);
    border-radius: 2rem;
}
.section-box::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(16, 26, 40, 0.3);
    border-radius: inherit;
    backdrop-filter: blur(42px);
    -webkit-backdrop-filter: blur(42px);
    z-index: 0;
}
.section-box > * {
    position: relative;
    z-index: 1;
}
.section-box.yellow {
    border-color: var(--yellow);
}
.section-box.green {
    border-color: var(--green);
}
.section-box.blue {
    border-color: var(--blue);
}

.section-box .eyebrow {
    background: rgba(236, 237, 231, 0.08);
    border: 1px solid rgba(236, 237, 231, 0.3);
    border-radius: 4px;
    padding: 0.25em 0.75em;
    font-weight: 400;
    font-size: 0.75rem;
    margin-bottom: 0.5rem;
    display: inline-block;
}

.section-box p {
    font-size: 1rem;
}

.section-row {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 2rem;
    margin: 2rem 0;
}
.section-row.row-1 > * {
    flex: 1;
}
.section-row.row-1-1 > * {
    flex: 1;
}
.section-row.row-1-2 > *:first-child {
    flex: 1;
}
.section-row.row-1-2 > *:last-child {
    flex: 2;
}
.section-row.row-2-1 > *:first-child {
    flex: 2;
}
.section-row.row-2-1 > *:last-child {
    flex: 1;
}



.features-grid .wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}


.feature-item {
    flex: 0 0 calc(50% - 1rem);
    display: flex;
    flex-direction: column;
}

.feature-item .eyebrow {
    align-self: flex-start;
}

.feature-item:nth-last-child(-n+2) {
    margin-bottom: 0;
}

.final-cta {
    text-align: center;
    background-image: url('../assets/footer_bg.svg');
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: contain;
}

.final-cta h2 {
    font-family: 'PP Mori';
    font-style: normal;
    font-weight: 400;
    font-size: 8.125rem;
    font-size: clamp(3.125rem, 6vw + 2rem, 8.125rem);
    line-height: 100%;
    text-align: center;
    margin-bottom: 4rem;
    background: linear-gradient(360deg, #c3ed9b -12.12%, #13d77a 37.55%, #0a854b 101.65%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.final-cta .wrapper {
    margin-bottom: 32vw;
}

.final-cta .btn {
    margin: 0 0.5rem;
}

.site-footer .footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-left {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-social span {
    display: inline-block;
    vertical-align: middle;
}

.footer-social img {
    display: inline-block;
    vertical-align: middle;
    margin-left: 0.25rem;
}

.footer-email {
    color: var(--white);
}

.footer-copy {
    margin: 0;
    color: var(--white);
}

.reveal-on-scroll {
    opacity: 1;
    transform: none;
}

.nav-links.is-open {
    display: grid;
}

@media (max-width: 1199px) {
    .bordered-thing.smart > * {
        font-size: clamp(0.8rem, 2vw, 0.95rem);
    }
    .bordered-thing.smart div .label strong {
        font-size: clamp(0.9rem, 3vw, 1rem);
    }
    .bordered-thing.smart div .label span {
        font-size: clamp(0.65rem, 2vw, 0.75rem);
    }
    .bordered-thing.smart div .icons img {
        height: 1.4rem;
        max-width: 1.9rem;
    }
    h2 {
        font-size: 6rem;
    }
    .numbers-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .final-cta .wrapper {
        margin-bottom: 32vw;
    }
    .site-footer .footer-content {
        justify-content: center;
        text-align: center;
    }
    .footer-left {
        justify-content: center;
    }
    .footer-social {
        justify-content: center;
    }
    .footer-copy {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 1000px) {
    h2 {
        font-size: 5rem;
    }
    .example {
        max-width: 450px;
    }
    .nav-toggle {
        display: inline-flex;
    }
    .nav-links {
        position: fixed;
        top: 4rem;
        left: 0;
        right: 0;
        height: calc(100vh - 4rem);
        padding: 2rem 1.5rem;
        border-radius: 0;
        border: 0 none;
        background: var(--blue-dark);
        display: none;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        overflow-y: auto;
        z-index: 30;
    }
    .nav-links ul {
        width: 100%;
        margin: 0;
        padding: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1em;
    }
    .nav-links li {
        display: block;
    }
    .nav-links a {
        display: inline-block;
        width: auto;
        text-align: center;
        font-size: 1.78rem;
    }
    .nav-links a.nav-cta {
        font-size: 0.89rem;
    }
    .nav-links a.nav-external {
        font-size: 1.11rem;
        font-weight: 400;
    }
    .nav-links a.nav-lang {
        font-size: 1.11rem;
        font-weight: 400;
    }
    .nav-links.is-open {
        display: flex;
    }

    body.nav-locked {
        overflow: hidden;
    }

    main #drop_section aside {
        bottom: 0.5rem;
        border-radius: 1rem;
    }

    #submenu {
        width: 100%;
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
        text-align: center;
    }
    #submenu ul {
        display: none;
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
        margin: 0;
        padding: 0;
        width: auto;
    }
    #submenu.is-open ul {
        display: flex;
    }
    #submenu .submenu-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 0.35rem;
        width: auto;
        padding: 0.2rem 0.5rem;
        margin: 0 1rem 0;
        align-self: center;
        border: 0 none;
        background: transparent;
        color: inherit;
        font-size: 0.8rem;
        font-weight: 400;
        line-height: 1.2;
        border-radius: 0.5rem;
        cursor: pointer;
    }
    #submenu .submenu-icon {
        position: relative;
        width: 0.75rem;
        height: 0.5rem;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
    #submenu .submenu-icon span {
        position: absolute;
        left: 0;
        right: 0;
        height: 1px;
        background: var(--white);
        border-radius: 0.25rem;
        transition: transform 0.2s ease, opacity 0.2s ease;
    }
    #submenu .submenu-icon span:nth-child(1) {
        transform: translateY(-0.16rem);
    }
    #submenu .submenu-icon span:nth-child(2) {
        transform: translateY(0);
    }
    #submenu .submenu-icon span:nth-child(3) {
        transform: translateY(0.16rem);
    }
    #submenu .submenu-toggle.is-active {
        background: rgba(255, 255, 255, 0.1);
        margin-top: 1rem;
    }
    #submenu .submenu-toggle.is-active .submenu-icon span:nth-child(1) {
        transform: translateY(0) rotate(45deg);
    }
    #submenu .submenu-toggle.is-active .submenu-icon span:nth-child(2) {
        opacity: 0;
    }
    #submenu .submenu-toggle.is-active .submenu-icon span:nth-child(3) {
        transform: translateY(0) rotate(-45deg);
    }

    .hero-copy {
        gap: 2rem;
        flex-direction: column;
    }
    .hero-copy .hero-lead {
        font-size: 1.05rem;
        max-width: 52ch;
    }

    .section-row {
        gap: 1rem;
        margin: 1rem 0;
        flex-direction: column;
    }
    .section-row.row-1 > * {
        flex: 1;
    }
    .section-row.row-1-1 > * {
        flex: 1;
    }
    .section-row.row-1-2 > *:first-child {
        flex: 1;
    }
    .section-row.row-1-2 > *:last-child {
        flex: 1;
    }
    .section-row.row-2-1 > *:first-child {
        flex: 1;
    }
    .section-row.row-2-1 > *:last-child {
        flex: 1;
    }
    .wrapper, main section > div.wrapper {
        padding: 1.5rem;
    }
    .hero-copy .hero-lead {
        font-size: 1.05rem;
        max-width: 52ch;
    }
    .number-value {
        font-size: 3.5rem;
        font-size: clamp(2.6rem, 4vw + 0.5rem, 3.5rem);
    }
    #drop h3 {
        font-size: 3.5rem;
    }
    .section-headline {
        flex-direction: column-reverse;
    }
    .section-headline img {
        max-width: 30%;
        margin: 2rem 0;
    }

    .section-intro {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.25rem;
        margin-top: 3rem;
    }

    .section-intro .section-copy {
        max-width: none;
        width: 100%;
    }

    .section-intro .section-media {
        width: 100%;
        max-width: none;
    }
    .final-cta .wrapper {
        margin-bottom: 32vw;
    }

}

@media (max-width: 640px) {
    html {
        scroll-padding-top: 80px;
    }

    .ex_phone {
        max-width: 200px;
    }

    .section-header {
        margin-bottom: 0;
    }

    .scene-wrap::before {
        width: 50%;
        height: 50%;
        top: 30%;
        left: 25%;
        opacity: 0.75;
        filter: blur(30px);
    }

    #hero {
        padding-bottom: 0;
    }

    .section-headline h2 {
        padding-top: 0;
    }

    section.drop div.sticker {
        width: 50vw;
        top: calc(100vh - 50vw);
        filter: blur(50px);
        opacity: 0.9;
    }

    .bordered-thing {
        padding: 8px;
        border-radius: 15px;
    }
    .bordered-thing.smart {
        padding: 3px;
        width: 38%;
        border-radius: 7px;
    }
    .bordered-thing.smart > * {
        font-size: clamp(0.62rem, 2.4vw, 0.74rem);
    }
    .bordered-thing.smart div .label strong {
        font-size: clamp(0.7rem, 2.8vw, 0.82rem);
    }
    .bordered-thing.smart div .label span {
        font-size: clamp(0.52rem, 2.2vw, 0.62rem);
    }
    .bordered-thing.smart div .icons img {
        height: 0.9rem;
        max-width: 1.2rem;
    }
    .bordered-thing.smart div .icons {
        gap: 8px;
    }
    #numbers h2, #video_headline h2 {
        font-size: 3rem;
    }
    h1 {
        font-size: 3.5rem;
    }
    h2 {
        font-size: 3rem;
    }
    #numbers h2, #video_headline h2 {
        font-size: 2.7rem;
    }
    body {
        font-size: 1rem;
    }
    .hero-copy {
        gap: 1rem;
    }
    .numbers-grid {
        grid-template-columns: 1fr;
    }
    .cta-card {
        padding: 2rem 1.25rem;
    }
    .wrapper, main section > div.wrapper {
        padding: 1rem;
    }
    .section-box .wrapper {
        padding: 1.5rem;
    }
    #video .wrapper {
        padding-bottom: 6rem;
    }
    .hero-copy .hero-lead {
        font-size: 1rem;
        max-width: 48ch;
    }
    .split-layout .wrapper {
        flex-direction: column;
    }
    .split-layout .content.c-1-3, .split-layout .example.c-2-3 {
        flex: 1;
        max-width: 100%;
    }
    .number-value {
        font-size: 4rem;
    }
    #drop h3 {
        font-size: 2.5rem;
    }
    .final-cta .wrapper {
        margin-bottom: 32vw;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .final-cta .btn {
        margin: 0.5rem 0;
    }
    
    .feature-item {
        flex: 0 0 100%;
    }
    
    #video .main-video,
    .number-card,
    .section-box {
        border-radius: 1.5rem;
    }
}

@media (max-width: 480px) {
    .mobile-ignore-padding {
        min-width: calc(100% + 3rem);
        margin-left: -1.5rem;
    }
    .bordered-thing {
        padding: 6px !important;
        border-radius: 12px !important;
    }
    .bordered-thing > * {
        border-radius: 6px !important;
    }
    .bordered-thing.nobottom {
        border-bottom-right-radius: 0 !important;
        border-bottom-left-radius: 0 !important;
        padding-bottom: 0 !important;
        border-bottom: 0 !important;
    }
    .bordered-thing.nobottom > * {
        border-bottom-right-radius: 0 !important;
        border-bottom-left-radius: 0 !important;
    }
    .bordered-thing.smart {
        padding: 3px;
        width: 35%;
    }
    .bordered-thing.smart > * {
        font-size: clamp(0.32rem, 1.6vw, 0.4rem);
    }
    .bordered-thing.smart div .label strong {
        font-size: clamp(0.36rem, 2vw, 0.48rem);
    }
    .bordered-thing.smart div .label span {
        font-size: clamp(0.3rem, 1.6vw, 0.38rem);
    }
    .bordered-thing.smart div .icons img {
        height: 0.5rem;
        max-width: 0.7rem;
    }
    .bordered-thing.smart div .icons {
        gap: 6px;
    }
    #numbers h2, #video_headline h2 {
        font-size: 2.5rem;
    }
    .number-card {
        padding: 2rem;
    }
    .number-value {
        font-size: 5rem;
    }
}
