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

:root {
    --brand: #2621f7;
    --white: #ffffff;
}

html,
body {
    height: 100%;
    width: 100%;
}

body {
    background-color: var(--brand);
    color: var(--white);
    font-family: 'gilroy', 'helvetica neue', helvetica, arial, sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
}

.header {
    padding: clamp(20px, 4vw, 36px) clamp(20px, 5vw, 48px);
    position: relative;
    z-index: 10;
}

.logo {
    height: clamp(20px, 3vw, 28px);
    width: auto;
    filter: brightness(0) invert(1);
}

.main {
    flex: 1;
    display: flex;
    align-items: flex-end;
    padding: 0 clamp(20px, 5vw, 48px) clamp(48px, 8vh, 80px);
    position: relative;
    z-index: 10;
}

.content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.heading {
    font-family: 'gilroy', 'helvetica neue', helvetica, arial, sans-serif;
    font-size: clamp(64px, 13vw, 148px);
    font-weight: 800;
    line-height: 0.9;
    letter-spacing: -0.025em;
    text-transform: uppercase;
    color: var(--white);
}

.sub {
    font-size: clamp(13px, 1.5vw, 16px);
    font-weight: 400;
    opacity: 0.45;
    letter-spacing: 0.01em;
    margin-top: 8px;
}

.family-tag {
    font-size: clamp(10px, 1.1vw, 12px);
    font-weight: 400;
    opacity: 0.28;
    letter-spacing: 0.06em;
    margin-top: 28px;
}

/* icons — positioned with vw/vh so they scale with viewport */

.icons {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.ic {
    position: absolute;
    color: var(--white);
    fill: none;
}

.ic-1 {
    width: clamp(80px, 14vw, 180px);
    height: clamp(80px, 14vw, 180px);
    right: 6vw;
    bottom: 10vh;
    opacity: 0.08;
    transform: rotate(18deg);
}

.ic-2 {
    width: clamp(40px, 7vw, 90px);
    height: clamp(40px, 7vw, 90px);
    right: 24vw;
    bottom: 28vh;
    opacity: 0.06;
    transform: rotate(-11deg);
}

.ic-3 {
    width: clamp(28px, 4.5vw, 58px);
    height: clamp(28px, 4.5vw, 58px);
    right: 14vw;
    bottom: 42vh;
    opacity: 0.09;
    transform: rotate(34deg);
}

.ic-4 {
    width: clamp(55px, 9vw, 115px);
    height: clamp(55px, 9vw, 115px);
    right: 4vw;
    top: 18vh;
    opacity: 0.05;
    transform: rotate(-26deg);
}

.ic-5 {
    width: clamp(36px, 5.5vw, 70px);
    height: clamp(36px, 5.5vw, 70px);
    right: 38vw;
    bottom: 8vh;
    opacity: 0.07;
    transform: rotate(52deg);
}

.ic-6 {
    width: clamp(100px, 17vw, 210px);
    height: clamp(100px, 17vw, 210px);
    right: 12vw;
    bottom: -6vh;
    opacity: 0.045;
    transform: rotate(-6deg);
}

.ic-7 {
    width: clamp(24px, 3.5vw, 46px);
    height: clamp(24px, 3.5vw, 46px);
    right: 32vw;
    top: 24vh;
    opacity: 0.07;
    transform: rotate(14deg);
}

.ic-8 {
    width: clamp(50px, 8vw, 100px);
    height: clamp(50px, 8vw, 100px);
    right: 46vw;
    bottom: 22vh;
    opacity: 0.05;
    transform: rotate(-38deg);
}

.ic-9 {
    width: clamp(32px, 5vw, 64px);
    height: clamp(32px, 5vw, 64px);
    right: 20vw;
    top: 10vh;
    opacity: 0.06;
    transform: rotate(60deg);
}

.ic-10 {
    width: clamp(44px, 7vw, 88px);
    height: clamp(44px, 7vw, 88px);
    right: 52vw;
    bottom: 6vh;
    opacity: 0.04;
    transform: rotate(-18deg);
}

.ic-11 {
    width: clamp(28px, 4vw, 52px);
    height: clamp(28px, 4vw, 52px);
    right: 8vw;
    top: 46vh;
    opacity: 0.08;
    transform: rotate(8deg);
}

.ic-12 {
    width: clamp(60px, 10vw, 130px);
    height: clamp(60px, 10vw, 130px);
    right: 28vw;
    top: 6vh;
    opacity: 0.05;
    transform: rotate(-42deg);
}

.ic-13 {
    width: clamp(34px, 5vw, 66px);
    height: clamp(34px, 5vw, 66px);
    right: 44vw;
    top: 14vh;
    opacity: 0.06;
    transform: rotate(22deg);
}

.ic-14 {
    width: clamp(46px, 7.5vw, 96px);
    height: clamp(46px, 7.5vw, 96px);
    right: 18vw;
    bottom: 54vh;
    opacity: 0.05;
    transform: rotate(-30deg);
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
    }
}