@font-face {
    font-family: "PorscheNext";
    src: url("../assets/font/911porschav3.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

:root {
    --black: #050505;
    --panel: #0c0c0e;
    --panel-2: #121214;
    --ink: #f5f5f3;
    --dim: #97979e;
    --hairline: rgba(255, 255, 255, 0.12);
    --accent: #ffffff;
    --max: 1200px;
    --font: "Cormorant Garamond", "Georgia", "Times New Roman", serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background: var(--black);
    color: var(--ink);
    font-family: var(--font);
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
}

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

.wrap {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 30px;
}

section {
    padding: 130px 0;
}

h2,
h3 {
    font-weight: 600;
    letter-spacing: -0.022em;
    line-height: 1.06;
}

h2 {
    font-size: clamp(34px, 4.8vw, 58px);
}

.lede {
    color: var(--dim);
    font-size: clamp(16px, 1.7vw, 20px);
    font-weight: 400;
    max-width: 600px;
    margin-top: 20px;
}

.eyebrow {
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 20px;
}

.rv {
    opacity: 0;
    transform: translateY(28px);
    transition:
        opacity 1s cubic-bezier(0.22, 0.61, 0.36, 1),
        transform 1s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.rv.in {
    opacity: 1;
    transform: none;
}

nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background: rgba(5, 5, 5, 0.5);
    border-bottom: 1px solid transparent;
}

.navin {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    padding: 0;
    position: relative;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 0;
}

.nav-logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
}

.nav-logo img {
    height: auto;
    width: 16.666vw;
    max-width: 240px;
    min-width: 120px;
    display: block;
}

@media (max-width: 768px) {
    .nav-logo img {
        width: auto;
        height: 48px;
        max-width: none;
        min-width: unset;
    }
}

.menu-btn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 56px;
    height: 72px;
    padding: 0 16px 0 12px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 72;
    margin-right: 0;
}

.menu-btn span {
    display: block;
    height: 1.5px;
    background: var(--ink);
    transition:
        transform 0.45s cubic-bezier(0.22, 0.61, 0.36, 1),
        opacity 0.3s,
        width 0.45s;
}

.menu-btn span:nth-child(1) {
    width: 24px;
}

.menu-btn span:nth-child(2) {
    width: 16px;
    margin-left: 8px;
}

body.drawer-open .menu-btn span:nth-child(1) {
    transform: translateY(3.75px) rotate(45deg);
    width: 24px;
}

body.drawer-open .menu-btn span:nth-child(2) {
    transform: translateY(-3.75px) rotate(-45deg);
    width: 24px;
    margin-left: 0;
}

.overlay {
    position: fixed;
    inset: 0;
    z-index: 68;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(6px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s;
}

body.drawer-open .overlay {
    opacity: 1;
    pointer-events: auto;
}

.drawer {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 70;
    width: min(420px, 90vw);
    background: rgba(9, 9, 11, 0.96);
    backdrop-filter: saturate(160%) blur(26px);
    border-left: 1px solid var(--hairline);
    transform: translateX(100%);
    transition: transform 0.6s cubic-bezier(0.22, 0.61, 0.36, 1);
    display: flex;
    flex-direction: column;
    padding: 108px 40px 44px 52px;
    overflow-y: auto;
    margin: 0;
}

body.drawer-open .drawer {
    transform: translateX(0);
}

.drawer-header {
    display: flex;
    justify-content: flex-end;
    position: absolute;
    top: 24px;
    right: 40px;
}

.drawer-logo img {
    height: auto;
    width: 16.666vw;
    max-width: 240px;
    min-width: 120px;
    display: block;
}

.drawer .d-label {
    font-size: 10px;
    letter-spacing: 0.34em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 22px;
}

.drawer-nav {
    display: flex;
    flex-direction: column;
}

.drawer-nav a {
    display: flex;
    align-items: baseline;
    gap: 16px;
    padding: 15px 0;
    border-bottom: 1px solid var(--hairline);
    font-size: 24px;
    font-weight: 600;
    letter-spacing: -0.02em;
    transition:
        color 0.3s,
        padding-left 0.4s;
    opacity: 0;
    transform: translateX(28px);
}

body.drawer-open .drawer-nav a {
    opacity: 1;
    transform: none;
    transition:
        color 0.3s,
        padding-left 0.4s,
        opacity 0.5s cubic-bezier(0.22, 0.61, 0.36, 1) var(--d, 0s),
        transform 0.6s cubic-bezier(0.22, 0.61, 0.36, 1) var(--d, 0s);
}

.drawer-nav a:hover {
    color: var(--accent);
    padding-left: 8px;
}

.drawer-foldable {
    border-bottom: 1px solid var(--hairline);
}

.fold-trigger {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 15px 0;
    background: transparent;
    border: none;
    color: inherit;
    font-size: 24px;
    font-weight: 600;
    font-family: inherit;
    letter-spacing: -0.02em;
    cursor: pointer;
    text-align: left;
    transition: color 0.3s;
}

.fold-trigger:hover {
    color: var(--accent);
}

.fold-arrow {
    width: 8px;
    height: 8px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    transition: transform 0.3s cubic-bezier(0.22, 0.61, 0.36, 1);
    margin-right: 8px;
    transform-origin: center center;
}

.fold-trigger[aria-expanded="true"] .fold-arrow {
    transform: rotate(-135deg);
}

.fold-content {
    max-height: 0;
    overflow: hidden;
    transition:
        max-height 0.4s cubic-bezier(0.22, 0.61, 0.36, 1),
        padding 0.4s;
    padding-left: 16px;
}

.drawer-foldable.expanded .fold-content {
    max-height: 240px;
    padding-bottom: 10px;
}

.fold-content a {
    display: block !important;
    font-size: 18px !important;
    font-weight: 500 !important;
    padding: 10px 0 !important;
    border-bottom: none !important;
    opacity: 0;
    transform: translateX(14px);
    transition:
        color 0.3s,
        padding-left 0.3s,
        opacity 0.3s,
        transform 0.3s !important;
}

.drawer-foldable.expanded .fold-content a {
    opacity: 1;
    transform: none;
    transition:
        color 0.3s,
        padding-left 0.3s,
        opacity 0.4s cubic-bezier(0.22, 0.61, 0.36, 1) var(--d, 0s),
        transform 0.4s cubic-bezier(0.22, 0.61, 0.36, 1) var(--d, 0s) !important;
}

.drawer-foot {
    margin-top: auto;
    padding-top: 36px;
}

.drawer-socials {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 16px;
}

.drawer-socials a {
    color: var(--dim);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border: 1px solid var(--hairline);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    transition: all 0.3s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.drawer-socials a:hover {
    color: var(--accent);
    border-color: var(--accent);
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
}

.drawer-socials svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.btn {
    display: inline-block;
    padding: 16px 36px;
    border-radius: 999px;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: all 0.35s cubic-bezier(0.22, 0.61, 0.36, 1);
    cursor: pointer;
    border: none;
    font-family:
        "SF Pro Display", "Inter", "Segoe UI", Helvetica, Arial, sans-serif;
}

.eyebrow,
.d-label,
.d-eyebrow,
label,
input,
select,
textarea,
.fineprint {
    font-family:
        "SF Pro Display", "Inter", "Segoe UI", Helvetica, Arial, sans-serif;
}

.btn-gold {
    background: var(--accent);
    color: #000;
}

.btn-gold:hover {
    transform: scale(1.04);
    box-shadow: 0 14px 50px rgba(255, 255, 255, 0.25);
}

.btn-line {
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--ink);
    background: transparent;
}

.btn-line:hover {
    border-color: var(--ink);
}

.txtlink {
    color: var(--accent);
    font-size: 14px;
    letter-spacing: 0.06em;
}

.txtlink::after {
    content: "  ›";
}

.txtlink:hover {
    text-decoration: underline;
}

.hero {
    min-height: 100vh;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 1px;
    background: var(--hairline);
}

.hero-slides {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    opacity: 0;
    transition:
        opacity 1.6s cubic-bezier(0.4, 0, 0.2, 1),
        transform 8s ease-in-out;
    transform: scale(1.06);
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.55) 0%,
            rgba(0, 0, 0, 0.28) 45%,
            rgba(0, 0, 0, 0.72) 100%
        ),
        radial-gradient(
            1100px 540px at 50% -10%,
            rgba(255, 255, 255, 0.06),
            transparent 65%
        );
}

.hero .wrap {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-tagline {
    font-family: "PorscheNext", "SF Pro Display", sans-serif;
    font-size: clamp(14px, 2.3vw, 34px);
    font-weight: 400;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ink);
    line-height: 1;
    text-shadow: 0 2px 60px rgba(0, 0, 0, 0.45);
    white-space: nowrap;
    display: block;
    text-align: center;
    width: 100%;
}

.hero-tagline.rv {
    opacity: 0;
    transform: translateY(60px);
    visibility: hidden;
    transition:
        opacity 2.5s cubic-bezier(0.16, 1, 0.3, 1),
        transform 2.5s cubic-bezier(0.16, 1, 0.3, 1),
        visibility 2.5s;
    transition-delay: 0.3s;
}

.fonts-loaded .hero-tagline.rv.in {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}

.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    background: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--ink);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    padding: 0;
}

.hero-arrow:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--accent);
}

.hero-arrow.prev {
    left: 24px;
}

.hero-arrow.next {
    right: 24px;
}

@media (max-width: 600px) {
    .hero-arrow {
        display: none;
    }
}

.divisions-wrap {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0 10px;
}

.divisions-layout {
    display: flex;
    gap: 48px;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-top: 64px;
}

.divisions-left {
    flex: 0 0 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.round-logo-container {
    height: 540px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.round-logo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.divisions-right {
    flex: 1;
    overflow: hidden;
    position: relative;
    min-width: 0;
}

.divisions-slider-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    --card-gap: 20px;
    --card-w: 280px;
}

.divisions-slider-container::before,
.divisions-slider-container::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 60px;
    z-index: 3;
    pointer-events: none;
}

.divisions-slider-container::before {
    left: 0;
    background: linear-gradient(to right, var(--panel), transparent);
}

.divisions-slider-container::after {
    right: 0;
    background: linear-gradient(to left, var(--panel), transparent);
}

.divisions-track {
    display: flex;
    width: max-content;
    animation: marquee-slide 30s linear infinite;
}

.divisions-track:hover {
    animation-play-state: paused;
}

.divisions-group {
    display: flex;
    gap: var(--card-gap);
    padding-right: var(--card-gap);
}

.divisions-group .div-card {
    flex: 0 0 var(--card-w);
    width: var(--card-w);
    border-radius: 0;
}

@keyframes marquee-slide {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.div-card {
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: var(--panel-2);
    border: 1px solid var(--hairline);
    transition:
        transform 0.55s cubic-bezier(0.22, 0.61, 0.36, 1),
        border-color 0.55s,
        box-shadow 0.55s;
}

.div-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.55);
    box-shadow:
        0 28px 70px rgba(0, 0, 0, 0.55),
        0 0 0 1px rgba(255, 255, 255, 0.15);
}

.div-card-media {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    flex: 0 0 auto;
}

.div-card-media .div-card-img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.75s cubic-bezier(0.22, 0.61, 0.36, 1);
    will-change: transform;
}

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

.div-card-text {
    padding: 24px 24px 28px;
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
}

.div-card-text .d-eyebrow {
    font-size: 10.5px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 10px;
}

.div-card-text h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.1;
}

.div-card-text p {
    color: var(--dim);
    font-size: 14px;
    line-height: 1.6;
}

.div-card-text .txtlink {
    display: inline-block;
    margin-top: auto;
    padding-top: 18px;
    font-size: 13px;
}

.vert {
    border-top: 1px solid var(--hairline);
}

.vert-alt {
    background: var(--panel);
}

#corporate {
    position: relative;
    min-height: 100vh;
    padding: 0;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background: var(--black);
    border-top: 1px solid var(--hairline);
}

.studio-bg {
    position: absolute;
    inset: 0;
    background: url("../assets/team.jpg") center/cover no-repeat;
    transform: scale(1.03);
}

.news-bg {
    position: absolute;
    inset: 0;
    background: url("../assets/corp/hakon-sataoen-qyfco1nfMtg-unsplash.jpg")
        center/cover no-repeat;
    transform: scale(1.03);
}

.corp-bg {
    position: absolute;
    inset: 0;
    background: url("../assets/corp/pexels-paashuu-16052836.jpg") center/cover
        no-repeat;
    transform: scale(1.03);
}

.corp-shade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.35) 0%,
            rgba(0, 0, 0, 0.12) 42%,
            rgba(0, 0, 0, 0.82) 100%
        ),
        linear-gradient(90deg, rgba(0, 0, 0, 0.55) 0%, transparent 65%);
}

.corp-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 30px 96px;
    transition:
        opacity 0.5s,
        transform 0.5s;
}

.corp-content h2 {
    font-size: clamp(36px, 5vw, 64px);
    text-shadow: 0 2px 40px rgba(0, 0, 0, 0.5);
}

.corp-content .lede {
    max-width: 520px;
}

.corp-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 30px;
}

.corp-tags span {
    font-family:
        "SF Pro Display", "Inter", "Segoe UI", Helvetica, Arial, sans-serif;
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(245, 245, 243, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 999px;
    padding: 8px 16px;
    backdrop-filter: blur(4px);
}

.corp-proposal-link {
    display: inline-flex;
    align-items: baseline;
    gap: 10px;
    margin-top: 40px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--accent);
    font-family:
        "SF Pro Display", "Inter", "Segoe UI", Helvetica, Arial, sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    padding: 0 0 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.45);
    transition:
        border-color 0.3s,
        gap 0.3s;
}

.corp-proposal-link::after {
    content: "→";
    font-size: 14px;
    transition: transform 0.35s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.corp-proposal-link:hover {
    border-bottom-color: var(--accent);
}

.corp-proposal-link:hover::after {
    transform: translateX(6px);
}

#corporate.rfq-open .corp-content {
    opacity: 0;
    transform: translateY(12px);
    pointer-events: none;
}

.rfq-layer {
    position: absolute;
    inset: 0;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 28px;
    background: rgba(0, 0, 0, 0.3);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.55s cubic-bezier(0.22, 0.61, 0.36, 1);
}

#corporate.rfq-open .rfq-layer {
    opacity: 1;
    pointer-events: auto;
}

.rfq-panel {
    position: relative;
    width: min(720px, 100%);
    max-height: 86vh;
    overflow-y: auto;
    background: rgba(14, 14, 16, 0.42);
    backdrop-filter: blur(22px) saturate(160%);
    -webkit-backdrop-filter: blur(22px) saturate(160%);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 24px;
    padding: 56px 56px 48px;
    box-shadow:
        0 30px 90px rgba(0, 0, 0, 0.55),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    transform: translateY(28px);
    transition: transform 0.65s cubic-bezier(0.22, 0.61, 0.36, 1);
}

#corporate.rfq-open .rfq-panel {
    transform: none;
}

.rfq-panel h3 {
    font-size: 30px;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.rfq-panel .lede {
    font-size: 15px;
    margin-top: 12px;
}

form {
    display: grid;
    gap: 20px;
    margin-top: 44px;
}

.frow {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

label {
    font-size: 10.5px;
    color: var(--dim);
    display: block;
    margin-bottom: 9px;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

input,
select,
textarea {
    width: 100%;
    background: var(--black);
    border: 1px solid var(--hairline);
    border-radius: 12px;
    padding: 16px 18px;
    color: var(--ink);
    font-size: 15px;
    transition:
        border 0.3s,
        background 0.3s;
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--accent);
}

::placeholder {
    color: #55555c;
}

.form-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 16px;
}

.rfq-panel input,
.rfq-panel select,
.rfq-panel textarea {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.rfq-panel input:focus,
.rfq-panel select:focus,
.rfq-panel textarea:focus {
    border-color: var(--accent);
    background: rgba(255, 255, 255, 0.09);
}

.rfq-panel select option {
    background: #121214;
    color: var(--ink);
}

.rfq-close {
    position: absolute;
    top: 22px;
    right: 24px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    color: var(--ink);
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
    transition:
        border-color 0.3s,
        transform 0.3s;
}

.rfq-close:hover {
    border-color: var(--accent);
    transform: rotate(90deg);
}

footer {
    border-top: 1px solid var(--hairline);
    padding: 80px 0 44px;
    font-size: 13px;
    color: var(--dim);
    text-align: center;
}

.foot-logo {
    display: inline-block;
    margin-bottom: 18px;
}

.foot-logo img {
    height: auto;
    width: 14vw;
    max-width: 200px;
    min-width: 100px;
    display: block;
}

.foot-powered {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 44px;
    font-family:
        "SF Pro Display", "Inter", "Segoe UI", Helvetica, Arial, sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #5c5c63;
}

.foot-powered img {
    height: auto;
    width: 7vw;
    max-width: 90px;
    min-width: 56px;
    opacity: 0.55;
    display: block;
}

.foot-powered span {
    color: #5c5c63;
}

.foot-address {
    font-family:
        "SF Pro Display", "Inter", "Segoe UI", Helvetica, Arial, sans-serif;
    font-size: 13px;
    color: var(--dim);
    line-height: 1.8;
    margin-bottom: 36px;
}

.foot-socials {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 28px;
    margin-bottom: 48px;
}

.foot-socials a {
    color: var(--dim);
    font-size: 18px;
    line-height: 1;
    transition: color 0.25s;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
}

.foot-socials a:hover {
    color: var(--accent);
}

.foot-socials svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.fineprint {
    border-top: 1px solid var(--hairline);
    padding-top: 26px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 11.5px;
    color: #5c5c63;
    letter-spacing: 0.04em;
}

@media (max-width: 940px) {
    section {
        padding: 90px 0;
    }

    .hero {
        min-height: 100svh;
        height: 100svh;
    }

    .hero-tagline {
        font-size: clamp(28px, 7vw, 80px);
        white-space: normal;
        letter-spacing: 0.1em;
    }

    .divisions-layout {
        flex-direction: column;
        gap: 36px;
    }

    .divisions-left {
        flex: 0 0 auto;
    }

    .round-logo-container {
        width: 220px;
        height: 220px;
    }

    .divisions-right {
        width: 100%;
    }

    .divisions-slider-container::before,
    .divisions-slider-container::after {
        width: 36px;
    }

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

    .corp-content {
        padding: 0 24px 72px;
    }

    .rfq-panel {
        padding: 40px 26px 36px;
        max-height: 90vh;
    }
}

@media (max-width: 600px) {
    .divisions-wrap {
        padding: 0 10px;
    }

    .divisions-layout {
        gap: 28px;
        margin-top: 40px;
    }

    .round-logo-container {
        width: 180px;
        height: 180px;
    }

    .divisions-slider-container::before,
    .divisions-slider-container::after {
        width: 20px;
    }
}

@media (pointer: fine) {
    body {
        cursor: none;
    }
}

.cursor-dot {
    position: fixed;
    width: 5px;
    height: 5px;
    background: var(--accent);
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    transform: translate(-50%, -50%);
    transition:
        opacity 0.3s,
        width 0.25s,
        height 0.25s;
    top: 0;
    left: 0;
    display: none;
}

.cursor-ring {
    position: fixed;
    width: 34px;
    height: 34px;
    border: 1.5px solid rgba(255, 255, 255, 0.32);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition:
        width 0.35s ease,
        height 0.35s ease,
        border-color 0.35s,
        opacity 0.3s;
    top: 0;
    left: 0;
    display: none;
}

@media (pointer: fine) {
    .cursor-dot,
    .cursor-ring {
        display: block;
    }
}
