:root {
    --matte-black: #1e1e1e;
    --nude: #E8D8C9;
    --creme: #DCD3CF;
    --beige: #EEE8E0;

    --bg: var(--beige);
    --ink: var(--matte-black);
    --muted: rgba(30, 30, 30, .55);
    --panel: rgba(255, 255, 255, .82);
    --line: rgba(30, 30, 30, .10);
    --sand: var(--nude);
    --sand2: var(--creme);
    --dark: var(--matte-black);
    --cream: #FAF8F5;
    --white: #FFFFFF;

    --max: 1320px;
    --radius: 24px;
    --shadow: 0 24px 60px rgba(0, 0, 0, .09);
    --shadow-sm: 0 8px 24px rgba(0, 0, 0, .06);

    --serif: 'Playfair Display', Georgia, serif;
    --sans: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    --img-hero: url('img/hero.jpg');
    --img-hero-bg: url('img/hero.png');
    --img-section-a: url('img/section-a.jpg');
    --img-form-bg: url('img/form-bg.jpg');

    --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

html, body {
    overflow-x: hidden;
}

/* ── Base ── */
* { box-sizing: border-box; }
html, body { height: 100%; scroll-behavior: smooth; }

body {
    margin: 0;
    background: var(--bg);
    color: var(--ink);
    font-family: var(--sans);
    font-weight: 300;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 32px; }

/* ── Topbar ── */
.topbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 50;
    background: transparent;
    transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease), padding 0.3s var(--ease);
}

.topbar.at-top { background: rgba(255,255,255,0.96); }
.topbar:hover, .topbar.nav-open { background: rgba(255,255,255,0.98); }

.topbar.scrolled {
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 1px 0 rgba(0,0,0,0.06), 0 8px 32px rgba(0, 0, 0, .06);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.topbar__inner {
    display: flex; flex-direction: column; align-items: center;
    padding: 22px 32px;
    transition: padding 0.3s var(--ease);
}

.topbar.scrolled .topbar__inner { padding: 14px 32px; }

.topbar__logo {
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    cursor: pointer; text-align: center;
    transition: opacity 0.3s var(--ease);
}

.topbar__logo-text {
    font-family: var(--sans);
    font-size: 24px;
    font-weight: 400;
    letter-spacing: .42em;
    text-transform: uppercase;
    color: var(--ink);
    transition: font-size 0.3s var(--ease), letter-spacing 0.3s var(--ease);
}

.topbar.scrolled .topbar__logo-text { font-size: 20px; letter-spacing: .38em; }

.nav {
    display: flex; align-items: center; justify-content: center; gap: 4px;
    font-family: var(--sans); font-size: 9.5px; font-weight: 400; letter-spacing: .22em;
    text-transform: uppercase; color: var(--matte-black); white-space: nowrap;
    max-height: 0; overflow: hidden; opacity: 0;
    transition: max-height 0.4s var(--ease), opacity 0.35s var(--ease), margin 0.3s var(--ease);
    margin-top: 0;
}

.topbar:hover .nav, .topbar.nav-open .nav, .topbar.scrolled:hover .nav {
    max-height: 60px; opacity: 1; margin-top: 14px;
}

.nav a {
    padding: 8px 12px;
    border-radius: 999px;
    transition: background 0.2s var(--ease), color 0.2s var(--ease);
    color: rgba(30,30,30,0.75);
}
.nav a:hover { background: rgba(0, 0, 0, .05); color: var(--ink); }

.hamburger {
    display: none; width: 44px; height: 44px; border-radius: 14px;
    border: 1px solid var(--line); background: rgba(255, 255, 255, .7);
    cursor: pointer; backdrop-filter: blur(8px);
    transition: background 0.2s var(--ease), border-color 0.2s var(--ease);
}
.hamburger:hover { background: rgba(255,255,255,0.95); border-color: rgba(0,0,0,0.15); }

.hamburger span {
    display: block; width: 18px; height: 1.5px; background: #111;
    margin: 5px auto; border-radius: 2px;
    transition: transform 0.35s var(--ease-out), opacity 0.25s ease;
}
.hamburger.is-active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.is-active span:nth-child(2) { opacity: 0; }
.hamburger.is-active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── Hero ── */
.hero { padding: 0; }
.hero__top {
    position: relative; min-height: 100vh;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden; padding-top: 130px; padding-bottom: 110px;
}

.hero__content { position: relative; z-index: 1; width: 100%; }
.hero__content .wrap { display: flex; flex-direction: column; align-items: center; text-align: center; }

h1 {
    font-family: var(--serif);
    font-weight: 500;
    letter-spacing: .015em;
    font-size: clamp(46px, 6vw, 76px);
    line-height: 1.04;
    margin: 0 0 20px;
    text-align: center;
    color: white;
    text-shadow: 0 4px 40px rgba(0, 0, 0, 0.35);
}

.sub {
    width: 100%; max-width: 680px;
    color: rgba(255, 255, 255, .88);
    font-size: clamp(14px, 1.5vw, 17px);
    line-height: 1.7;
    margin: 0 auto 24px;
    text-align: center;
    text-wrap: balance;
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.28);
    font-weight: 300;
}

.hero__actions {
    display: flex; gap: 14px; align-items: center; justify-content: center;
    flex-wrap: wrap; margin-top: 20px;
}

.btn {
    display: inline-flex; align-items: center; justify-content: center;
    height: 48px; padding: 0 32px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, .55);
    background: transparent;
    font-family: var(--sans); font-size: 10px; font-weight: 400;
    letter-spacing: .22em; text-transform: uppercase;
    cursor: pointer;
    transition: all .25s var(--ease);
    white-space: nowrap; min-width: 180px; color: white;
}

.btn:hover {
    background: rgba(255, 255, 255, .14);
    border-color: rgba(255, 255, 255, .75);
    transform: translateY(-1px);
}
.btn:active { transform: translateY(0); }

.btn--solid {
    background: white; color: var(--matte-black); border-color: white;
    box-shadow: 0 4px 20px rgba(255,255,255,0.2);
}
.btn--solid:hover {
    background: rgba(255, 255, 255, .92);
    box-shadow: 0 8px 30px rgba(255,255,255,0.25);
}

.btn--animated-border {
    position: relative; background: transparent;
    color: var(--ink) !important;
    border: none; overflow: hidden;
    font-weight: 500; z-index: 1;
}

.btn--animated-border::before {
    content: '';
    position: absolute; top: -50%; left: -50%; width: 200%; height: 200%;
    background: conic-gradient(from 0deg, transparent 0%, transparent 55%, var(--matte-black) 78%, var(--nude) 100%);
    animation: rotate-border 3.5s linear infinite;
    z-index: -2;
}

.btn--animated-border::after {
    content: ''; position: absolute; inset: 1.5px;
    background: var(--white); border-radius: 999px; z-index: -1;
    transition: background 0.3s var(--ease);
}

.btn--animated-border:hover::after { background: var(--cream); }

@keyframes rotate-border {
    100% { transform: rotate(360deg); }
}

.section .btn {
    border: 1px solid rgba(30,30,30,0.3);
    color: var(--matte-black);
    transition: all .25s var(--ease);
}
.section .btn:hover {
    background: rgba(40, 40, 40, .05);
    border-color: rgba(30,30,30,0.6);
    transform: translateY(-1px);
}
.section .btn--solid {
    background: var(--matte-black); color: var(--cream); border-color: var(--matte-black);
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}
.section .btn--solid:hover {
    background: #111;
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
    transform: translateY(-1px);
}

.hero__bg {
    position: absolute; inset: 0; z-index: 0; width: 100%; height: 100%;
    background-image: linear-gradient(160deg, rgba(0,0,0,0.22) 0%, rgba(0,0,0,0.52) 100%), url('img/bg1.jpeg');
    background-size: cover; background-position: center bottom;
    transform: scale(1.02);
}

.hero__caption {
    position: relative; z-index: 1;
    text-align: center; font-size: 10.5px; letter-spacing: .1em;
    color: rgba(255, 255, 255, .70);
    margin: 28px auto 0; max-width: 680px;
    font-weight: 400;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.3);
    text-transform: uppercase;
    line-height: 1.8;
}

/* ── Brandstrip ── */
.brandstrip {
    position: absolute; bottom: 0; left: 0; right: 0; z-index: 2;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
    padding: 22px 0;
    border-top: 1px solid rgba(255,255,255,0.6);
    overflow: hidden;
}

.brandstrip .wrap { display: flex; align-items: center; gap: 40px; }

.brandstrip__header {
    font-family: var(--sans); font-size: 9px; font-weight: 400;
    letter-spacing: .3em; text-transform: uppercase;
    color: var(--muted); margin: 0; white-space: nowrap; flex-shrink: 0;
}

.brandstrip__carousel {
    flex: 1; overflow: hidden; display: flex;
    mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}

.brandstrip__track {
    display: flex; width: max-content;
    animation: scroll-logos 34s linear infinite;
    cursor: default; user-select: none;
}

.brandstrip__set { display: flex; align-items: center; gap: 56px; padding-right: 56px; }

.brandstrip__track:hover { animation-play-state: paused; }

@keyframes scroll-logos {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.brandstrip__logo {
    display: flex; align-items: center; justify-content: center; height: 22px;
    opacity: 0.38; transition: opacity 0.3s var(--ease), filter 0.3s var(--ease);
    filter: grayscale(100%); flex-shrink: 0; pointer-events: none;
}
.brandstrip__logo:hover { opacity: 0.75; filter: grayscale(30%); }
.brandstrip__logo svg { height: 100%; width: auto; fill: var(--matte-black); }

/* ── Mobile menu ── */
.mobile {
    display: none; border-top: 1px solid var(--line);
    padding: 16px 0 20px;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(16px);
}
.mobile a {
    display: block; padding: 13px 10px; border-radius: 12px;
    font-family: var(--sans); font-weight: 400;
    letter-spacing: .18em; text-transform: uppercase;
    font-size: 10.5px; color: rgba(30,30,30,0.75);
    transition: background 0.2s var(--ease), color 0.2s var(--ease);
}
.mobile a:hover { background: rgba(40, 40, 40, .04); color: var(--ink); }
.mobile.is-open { display: block; }

/* ── Sections ── */
.section { padding: 110px 0; }

/* ── Platform section ── */
.section--platform {
    position: relative; min-height: 100vh;
    display: flex; align-items: center; padding: 110px 0;
    background-image: linear-gradient(160deg, rgba(0,0,0,0.48) 0%, rgba(0,0,0,0.68) 100%), url('img/bg2.jpeg');
    background-size: cover; background-position: center;
    background-attachment: fixed;
}
.section--platform .wrap { position: relative; z-index: 1; }
.section--platform .section__title { color: white; text-shadow: 0 2px 24px rgba(0, 0, 0, 0.3); }

/* ── Production section ── */
.section--production {
    position: relative; min-height: 100vh;
    display: flex; align-items: center; padding: 110px 0;
    background-image: linear-gradient(160deg, rgba(0,0,0,0.48) 0%, rgba(0,0,0,0.68) 100%), url('./img/bg3.jpg');
    background-size: cover; background-position: center;
    background-attachment: fixed;
}
.section--production .wrap { position: relative; z-index: 1; }
.section--production .section__title,
.section--production .section__copy { color: var(--creme); }

/* ── About section ── */
.section--about {
    position: relative; min-height: auto;
    display: flex; align-items: center; padding: 110px 0;
    background-image: linear-gradient(rgba(0, 0, 0, 0.22), rgba(0, 0, 0, 0.72)), url('./img/bg4-converted.jpg');
    background-size: cover; background-position: center top;
    background-repeat: no-repeat;
    background-color: var(--matte-black);
    background-attachment: fixed;
}
.section--about .wrap { position: relative; z-index: 1; }
.section--about .section__title { color: white; text-shadow: 0 2px 24px rgba(0, 0, 0, 0.3); }
.section--about .section__copy { color: rgba(255, 255, 255, 0.82); text-shadow: 0 1px 12px rgba(0, 0, 0, 0.3); }

/* ── Section head ── */
.section__head { text-align: center; margin: 0 auto 44px; max-width: 1080px; }

.section__title {
    font-family: var(--serif); font-weight: 500;
    font-size: clamp(32px, 3.2vw, 46px);
    letter-spacing: .01em; margin: 0 0 14px;
    line-height: 1.2;
}

.section__copy {
    margin: 0 auto; font-family: var(--sans); font-weight: 300;
    color: rgba(30, 30, 30, .62); font-size: 16px; line-height: 1.75;
    max-width: 760px;
}

.section__head::after {
    content: ""; display: block; width: 60px; height: 1px;
    background: rgba(0, 0, 0, .18);
    margin: 28px auto 0;
}
.band .section__head::after { background: rgba(250, 247, 242, .20); width: 60px; }

/* ── Lists ── */
.custom-list {
    list-style: none; padding: 0; margin: 0;
    display: flex; flex-direction: column; gap: 18px;
}
.custom-list li {
    position: relative; padding-left: 34px;
    font-size: 15px; color: var(--ink); font-family: var(--sans);
    line-height: 1.6;
}
.custom-list li::before {
    content: ''; position: absolute; left: 0; top: 3px;
    width: 20px; height: 20px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231e1e1e' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
    background-size: contain; background-repeat: no-repeat; opacity: 0.6;
}

/* ── Benefits grid ── */
.benefits-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 18px; margin-top: 44px;
}
.benefit-item {
    display: flex; align-items: center; gap: 18px;
    background: var(--white); padding: 22px 26px;
    border-radius: 16px;
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: var(--shadow-sm);
    transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
}
.benefit-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.07);
}
.benefit-item .check-icon { width: 22px; height: 22px; color: var(--ink); flex-shrink: 0; opacity: 0.6; }
.benefit-item p { margin: 0; font-size: 14.5px; color: var(--ink); font-family: var(--sans); line-height: 1.5; }

/* ── Pills ── */
.pills-grid {
    display: flex; flex-wrap: wrap; gap: 14px;
    justify-content: center; margin-top: 34px;
}
.pill-item {
    padding: 12px 26px; border-radius: 999px;
    font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
    font-family: var(--sans); font-weight: 400;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.28);
    color: var(--white);
    transition: background 0.25s var(--ease), border-color 0.25s var(--ease);
}
.pill-item:hover {
    background: rgba(255,255,255,0.2);
    border-color: rgba(255,255,255,0.5);
}
.light-pill {
    background: rgba(255,255,255,0.96);
    color: var(--ink);
    border: 1px solid rgba(0,0,0,0.08);
    font-weight: 500;
    box-shadow: 0 4px 16px rgba(0,0,0,0.07);
}
.light-pill:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.10); }

/* ── Band ── */
.band {
    background: var(--matte-black); color: var(--cream);
    border-top: 1px solid rgba(255, 255, 255, .06);
    border-bottom: 1px solid rgba(255, 255, 255, .06);
}
.band .section__copy { color: rgba(250, 247, 242, .65); }

/* ── Cards ── */
.cards {
    margin-top: 32px;
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
}
.card {
    border-radius: 20px; background: var(--creme);
    border: 1px solid rgba(255, 255, 255, .6);
    padding: 34px 24px; min-height: 190px;
    color: var(--matte-black); text-align: center;
    transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}
.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}
.card__icon {
    width: 58px; height: 58px; border-radius: 999px;
    border: 1px solid rgba(0, 0, 0, .10);
    background: rgba(255, 255, 255, .65);
    display: grid; place-items: center;
    margin: 0 auto 22px;
    transition: background 0.25s var(--ease);
}
.card:hover .card__icon { background: rgba(255,255,255,0.9); }
.card__icon svg { width: 26px; height: 26px; opacity: .75; }
.card h3 {
    margin: 0 0 12px;
    font-family: var(--serif); font-weight: 500;
    letter-spacing: .01em; font-size: 18px; line-height: 1.3;
}
.card p {
    margin: 0; font-family: var(--sans); font-weight: 300;
    color: rgba(30, 30, 30, .62); font-size: 14.5px; line-height: 1.65;
}

.category-card {
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    padding: 28px 24px; min-height: auto;
    background: var(--white);
    box-shadow: 0 4px 18px rgba(0,0,0,0.03);
    border: 1px solid rgba(0,0,0,0.05);
}
.category-card h3 {
    margin: 0; font-size: 13px; text-transform: uppercase;
    letter-spacing: .1em; font-family: var(--sans); font-weight: 400;
}

/* ── Leadership ── */
.leaders {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 260px));
    justify-content: center; gap: 44px;
    max-width: 600px; margin: 0 auto;
}
.leader { background: transparent; border: none; padding: 10px; text-align: center; }

.leader__avatar {
    width: 148px; height: 148px; border-radius: 999px;
    margin: 0 auto 20px;
    background: var(--creme);
    border: 1.5px solid rgba(255, 255, 255, .35);
    overflow: hidden;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
    transition: box-shadow 0.35s var(--ease-out), transform 0.35s var(--ease-out);
}
.leader:hover .leader__avatar {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.28);
}
.leader__avatar img { width: 100%; height: 100%; object-fit: cover; }
.leader__avatar--placeholder {
    font-family: var(--serif); font-size: 48px;
    font-weight: 500; color: rgba(40, 40, 40, 0.35);
}
.leader__name {
    font-family: var(--serif); font-weight: 500;
    font-size: 21px; margin: 0 0 8px; color: var(--white);
    letter-spacing: .01em;
}
.leader__role {
    margin: 0; font-family: var(--sans); font-weight: 300;
    color: rgba(255, 255, 255, 0.6); font-size: 14px;
    letter-spacing: .04em;
}

/* ── Partner section ── */
.partnergrid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 70px; align-items: center; margin-top: 44px;
}
.partnerlist { display: grid; grid-template-columns: 1fr; gap: 20px; }

.pl {
    display: flex; align-items: flex-start; gap: 18px;
    background: rgba(255,255,255,0.03);
    padding: 20px; border-radius: 18px;
    border: 1px solid rgba(255,255,255,0.06);
    transition: background 0.25s var(--ease), border-color 0.25s var(--ease);
}
.pl:hover {
    background: rgba(255,255,255,0.06);
    border-color: rgba(255,255,255,0.1);
}
.pl-icon {
    width: 46px; height: 46px; flex-shrink: 0;
    display: grid; place-items: center;
    background: rgba(255,255,255,0.08);
    border-radius: 14px; color: var(--nude);
    transition: background 0.25s var(--ease);
}
.pl:hover .pl-icon { background: rgba(255,255,255,0.13); }
.pl-icon svg { width: 22px; height: 22px; }
.pl-content { flex: 1; }
.pl h4 {
    margin: 0 0 7px;
    font-family: var(--serif); font-weight: 500;
    font-size: 18px; color: var(--cream);
}
.pl p {
    margin: 0; font-family: var(--sans); font-weight: 300;
    color: rgba(250, 247, 242, .60); font-size: 14px; line-height: 1.6;
}
.partner-subhead {
    font-family: var(--sans); font-size: 10px; font-weight: 400;
    letter-spacing: .22em; text-transform: uppercase;
    color: rgba(250, 247, 242, .45); margin: 0 0 26px;
}

/* ── Form ── */
.formbg {
    border-radius: 32px; overflow: hidden;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    background: #d8d0c4;
    background-image: linear-gradient(rgba(246, 243, 238, .86), rgba(246, 243, 238, .3)), var(--img-form-bg);
    background-size: cover; background-position: center;
    padding: 52px 0;
}
.formpanel {
    max-width: 780px; margin: 0 auto;
    background: rgba(255, 255, 255, .82);
    border: 1px solid rgba(0, 0, 0, .10);
    border-radius: 22px; padding: 46px;
    backdrop-filter: blur(16px);
    box-shadow: 0 16px 60px rgba(0,0,0,0.07);
}
.formpanel h3 {
    margin: 0 0 28px;
    font-family: var(--serif); font-weight: 500;
    font-size: 28px; text-align: start;
    letter-spacing: .01em;
    color: var(--matte-black);
}

form { display: grid; grid-template-columns: 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 8px; }

label {
    font-family: var(--sans); font-size: 10px; font-weight: 400;
    letter-spacing: .18em; text-transform: uppercase; color: var(--muted);
}

.formpanel input,
.formpanel textarea,
.formpanel select {
    width: 100%; border-radius: 14px;
    border: 1px solid rgba(0,0,0,0.14) !important;
    background: #fafaf8 !important;
    color: var(--ink) !important;
    padding: 15px 18px;
    font-family: var(--sans); font-weight: 400;
    font-size: 14px; outline: none;
    transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.formpanel input:focus,
.formpanel textarea:focus,
.formpanel select:focus {
    border-color: rgba(30,30,30,0.5) !important;
    box-shadow: 0 0 0 3px rgba(30,30,30,0.05);
}
.formpanel input::placeholder,
.formpanel textarea::placeholder { color: rgba(0,0,0,0.32) !important; }

.select-wrapper { position: relative; }
.formpanel select {
    appearance: none; -webkit-appearance: none;
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22%231e1e1e%22%20stroke-width%3D%221.5%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Cpolyline%20points%3D%226%209%2012%2015%2018%209%22%3E%3C%2Fpolyline%3E%3C%2Fsvg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 16px center !important;
    background-size: 15px !important; cursor: pointer;
}

textarea { min-height: 130px; resize: vertical; grid-column: 1/-1; }

/* ── Animations ── */
.fade-in {
    opacity: 0; transform: translateY(24px);
    transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.fade-in.is-visible { opacity: 1; transform: translateY(0); }



/* ── Footer ── */
footer {
    background: var(--matte-black);
    color: rgba(250, 247, 242, .72);
    padding: 68px 0;
    border-top: 1px solid rgba(255, 255, 255, .06);
}
.footergrid {
    display: flex; justify-content: space-between;
    align-items: center; gap: 40px;
}
.back-to-top { display: flex; justify-content: center; }
.back-to-top a {
    display: flex; flex-direction: column; align-items: center; gap: 10px;
    color: rgba(250, 247, 242, .55);
    transition: opacity 0.3s var(--ease), transform 0.3s var(--ease), color 0.3s var(--ease);
}
.back-to-top a:hover { color: rgba(250, 247, 242, .9); transform: translateY(-5px); }
.back-to-top svg { width: 26px; height: 26px; stroke: currentColor; }
.back-to-top span {
    font-family: var(--sans); font-size: 8.5px;
    font-weight: 400; letter-spacing: .2em; text-transform: uppercase;
}
.footbrand {
    font-family: var(--sans); font-weight: 400; letter-spacing: .4em;
    text-transform: uppercase; font-size: 13px;
    margin: 0 0 7px; color: rgba(250, 247, 242, .88);
}
.foottagline {
    font-family: var(--sans); font-weight: 300;
    letter-spacing: .22em; text-transform: uppercase;
    font-size: 8.5px; margin: 0 0 26px;
    color: rgba(250, 247, 242, .38);
}
.footlinks {
    display: flex; flex-direction: column; gap: 13px;
    font-family: var(--sans); font-size: 9.5px;
    font-weight: 400; letter-spacing: .18em;
    text-transform: uppercase; text-align: right;
}
.footlinks a { color: rgba(250, 247, 242, .55); transition: color 0.2s var(--ease); }
.footlinks a:hover { color: rgba(250, 247, 242, .92); }
.social { display: flex; gap: 10px; margin-top: 16px; }
.iconbtn {
    width: 42px; height: 42px; border-radius: 14px;
    border: 1px solid rgba(250, 247, 242, .12);
    background: rgba(250, 247, 242, .04);
    display: grid; place-items: center;
    transition: background 0.25s var(--ease), border-color 0.25s var(--ease);
}
.iconbtn:hover {
    background: rgba(250, 247, 242, .1);
    border-color: rgba(250, 247, 242, .22);
}
.iconbtn img { width: 18px; height: 18px; object-fit: contain; opacity: .85; }

/* ── Breakpoints ── */
@media (max-width: 980px) {
    h1 { font-size: 52px; }
    .cards { grid-template-columns: repeat(2, 1fr); }
    .benefits-grid { grid-template-columns: repeat(2, 1fr); }
    .leaders { grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .partnergrid { grid-template-columns: 1fr; gap: 44px; }
    .partnerlist { grid-template-columns: 1fr; margin-bottom: 30px; }
    .section--platform, .section--production, .section--about { background-attachment: scroll; }
}

@media (max-width: 860px) {
    .leaders { grid-template-columns: repeat(2, 1fr); max-width: 420px; gap: 20px; }
}

@media (max-width: 760px) {
    .nav { display: none; }
    .topbar__inner { flex-direction: row; justify-content: space-between; align-items: center; }
    .topbar__logo { order: 1; }
    .hamburger { display: block; order: 2; }
    h1 { font-size: 40px; letter-spacing: .03em; }
    .hero__top { min-height: 100vh; padding-top: 100px; padding-bottom: 90px; }
    .section { padding: 72px 0; }
    .benefits-grid { grid-template-columns: 1fr; }
    form { grid-template-columns: 1fr; }
    .footergrid { flex-direction: column; gap: 30px; }
    .back-to-top { order: -1; }
    .footlinks { text-align: left; flex-direction: row; flex-wrap: wrap; gap: 16px; }
    .btn { min-width: 0; width: 220px; }
}

@media (max-width: 768px) {
    .section__title { font-size: 30px; }
    .section__copy { font-size: 15px; }
    .cards[style*="repeat(4"] { grid-template-columns: repeat(2, 1fr) !important; }
    .leaders { grid-template-columns: repeat(2, 1fr); max-width: 400px; gap: 16px; }
    .partnergrid { grid-template-columns: 1fr; }
    .formpanel { padding: 28px; }
}

@media (max-width: 480px) {
    .wrap { padding: 0 20px; }
    h1 { font-size: 32px; letter-spacing: .02em; }
    .sub { max-width: none; }
    .section { padding: 56px 0; }
    .section__title { font-size: 26px; }
    .section__copy { font-size: 14px; }
    .hero__top { padding-top: 90px; padding-bottom: 60px; }
    .hero__actions { flex-direction: column; width: 100%; }
    .btn { width: 100%; min-width: 0; }
    .cards[style*="repeat(4"] { grid-template-columns: 1fr !important; }
    .card { min-height: auto; padding: 22px 18px; }
    .leader__avatar { width: 110px; height: 110px;  }
    .leader__name { font-size: 18px; }
    .topbar__logo-text { font-size: 17px; letter-spacing: .26em; }
    .footergrid { text-align: center; align-items: center; }
    .footlinks { justify-content: center; }
    .leaders {
        grid-template-columns: 1fr;
        max-width: 280px;
    }
    .cards[style*="repeat(2"] {
        grid-template-columns: 1fr !important;
    }
    .cards[style*="repeat(3"] {
        grid-template-columns: 1fr !important;
    }
    .formbg {
        border-radius: 0;
        padding: 32px 0;
    }
    .formpanel {
        padding: 20px;
        border-radius: 12px;
    }
}