@font-face {
    font-family: "Core Sans";
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: url("/fonts/CoreSansC-35Light.woff2") format("woff2");
}

@font-face {
    font-family: "Core Sans";
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url("/fonts/CoreSansC-45Regular.woff2") format("woff2");
}

@font-face {
    font-family: "Core Sans";
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url("/fonts/CoreSansC-55Medium.woff2") format("woff2");
}

@font-face {
    font-family: "Core Sans";
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url("/fonts/CoreSansC-65Bold.woff2") format("woff2");
}

@font-face {
    font-family: "Bebas Neue Pro";
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url("/fonts/BebasNeuePro-Regular.woff2") format("woff2");
}

@font-face {
    font-family: "Bebas Neue Pro";
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url("/fonts/BebasNeuePro-Bold.woff2") format("woff2");
}

:root {
    --purple: #ab60f6;
    --purple-dark: #7b2ec8;
    --green: #61d16c;
    --ink: #181818;
    --black: #101012;
    --white: #fafafa;
    --muted: #a5a5ab;
    --line: rgba(255, 255, 255, 0.12);
    --display: "Bebas Neue Pro", "Arial Narrow", sans-serif;
    --body: "Core Sans", Arial, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
    margin: 0;
    background: var(--black);
    color: var(--white);
    font-family: var(--body);
    font-size: 16px;
    line-height: 1.5;
    overflow-x: hidden;
}

body.menu-open { overflow: hidden; }

button, a { font: inherit; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

::selection { background: var(--purple); color: var(--white); }

.skip-link {
    position: fixed;
    left: 16px;
    top: -80px;
    z-index: 1000;
    padding: 10px 16px;
    background: var(--white);
    color: var(--ink);
    border-radius: 999px;
    transition: top 0.2s ease;
}

.skip-link:focus { top: 16px; }

.section-shell {
    width: min(100% - 48px, 1440px);
    margin-inline: auto;
}

.section-space { padding-block: 144px; }

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 100;
    height: 92px;
    padding-inline: max(24px, calc((100vw - 1280px) / 2 + 16px));
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    border-bottom: 1px solid transparent;
    transition: background 0.25s ease, border-color 0.25s ease, height 0.25s ease;
}

.site-header.is-scrolled {
    height: 76px;
    background: rgba(16, 16, 18, 0.86);
    border-color: var(--line);
    backdrop-filter: blur(18px);
}

.brand-home {
    justify-self: start;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--display);
    font-size: 30px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.brand-home img { width: 40px; height: 40px; object-fit: contain; }
.brand-home b { color: var(--purple); }

.desktop-nav { display: flex; gap: 24px; }
.desktop-nav a { color: #cfcfd3; font-size: 14px; transition: color 0.2s ease; }
.desktop-nav a:hover, .desktop-nav a:focus-visible { color: var(--white); }

.header-download {
    justify-self: end;
    min-height: 44px;
    padding: 0 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--line);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    transition: background 0.2s ease, color 0.2s ease;
}

.header-download:hover { background: var(--white); color: var(--ink); }
.menu-toggle { display: none; }

.mobile-nav {
    position: fixed;
    inset: 0;
    z-index: 90;
    padding: 120px 24px 40px;
    background: var(--ink);
    flex-direction: column;
    justify-content: center;
    gap: 8px;
}

.mobile-nav:not([hidden]) { display: flex; }
.mobile-nav a { font-family: var(--display); font-size: clamp(40px, 12vw, 70px); line-height: 1; text-transform: uppercase; }
.mobile-nav a:hover { color: var(--purple); }

.hero {
    min-height: 930px;
    padding-top: 168px;
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(560px, 1.1fr);
    grid-template-rows: 1fr auto;
    gap: 56px 80px;
    position: relative;
}

.hero::before {
    content: "HERE";
    position: absolute;
    top: 70px;
    left: -4px;
    z-index: -1;
    color: rgba(255, 255, 255, 0.018);
    font-family: var(--display);
    font-size: min(35vw, 520px);
    font-weight: 700;
    line-height: 1;
    pointer-events: none;
}

.hero-copy { align-self: center; padding-bottom: 60px; }

.eyebrow {
    margin: 0 0 24px;
    color: #c4c4c8;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.eyebrow span {
    display: inline-block;
    width: 34px;
    height: 1px;
    margin-right: 10px;
    vertical-align: middle;
    background: var(--purple);
}

.hero h1,
.section-heading h2,
.downloads h2 {
    margin: 0;
    font-family: var(--display);
    font-weight: 700;
    line-height: 0.9;
    letter-spacing: 0.015em;
    text-transform: uppercase;
}

.hero h1 { font-size: clamp(74px, 7.2vw, 132px); }
.hero h1 em { color: var(--purple); font-style: normal; }

.hero-lead {
    max-width: 590px;
    margin: 34px 0 0;
    color: #b9b9bf;
    font-size: clamp(17px, 1.4vw, 21px);
    line-height: 1.55;
}

.hero-actions, .downloads-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 42px; }

.button {
    min-height: 52px;
    padding: 0 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--purple); }
.button-primary:hover { background: #bc7bfa; }
.button-quiet { border-color: var(--line); }
.button-quiet:hover { border-color: rgba(255,255,255,.35); }
.button-light { background: var(--white); color: var(--ink); }
.button-light span { color: #777; }
.button-outline { border-color: rgba(255,255,255,.28); }
.button-outline:hover { background: rgba(255,255,255,.08); }

.hero-stage {
    min-height: 610px;
    align-self: center;
    position: relative;
    display: grid;
    place-items: center;
}

.hero-stage::before {
    content: "";
    position: absolute;
    inset: 6% 5%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(171,96,246,.24), rgba(171,96,246,0) 68%);
    filter: blur(16px);
}

.hero-orbit { position: absolute; border: 1px solid rgba(255,255,255,.1); border-radius: 50%; }
.hero-orbit-one { width: 520px; height: 520px; }
.hero-orbit-two { width: 390px; height: 390px; border-style: dashed; animation: orbit 45s linear infinite; }

@keyframes orbit { to { transform: rotate(360deg); } }

.hero-logo-card {
    width: min(84%, 560px);
    aspect-ratio: 1.3;
    position: relative;
    z-index: 1;
    padding: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(24, 24, 24, 0.68);
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 28px;
    box-shadow: 0 32px 90px rgba(0,0,0,.42);
    backdrop-filter: blur(18px);
    transform: rotate(-4deg);
}

.hero-logo-card img { width: 82%; }
.hero-card-label, .hero-card-index { position: absolute; font-size: 10px; color: #919198; letter-spacing: .14em; text-transform: uppercase; }
.hero-card-label { top: 22px; left: 24px; }
.hero-card-index { right: 24px; bottom: 22px; }

.hero-chip {
    position: absolute;
    z-index: 2;
    padding: 10px 15px;
    border-radius: 999px;
    color: var(--ink);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .08em;
    box-shadow: 0 12px 32px rgba(0,0,0,.28);
}

.hero-chip-purple { top: 18%; right: 2%; background: var(--purple); }
.hero-chip-green { bottom: 17%; left: 3%; background: var(--green); }

.hero-meta {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding-block: 24px;
    border-block: 1px solid var(--line);
}

.hero-meta div { display: flex; align-items: baseline; justify-content: space-between; padding: 0 30px; border-right: 1px solid var(--line); }
.hero-meta div:first-child { padding-left: 0; }
.hero-meta div:last-child { border: 0; padding-right: 0; }
.hero-meta span { color: #85858c; font-size: 11px; text-transform: uppercase; letter-spacing: .14em; }
.hero-meta strong { font-size: 14px; }

.manifesto { display: grid; grid-template-columns: 120px minmax(0, 1.4fr) minmax(360px, .8fr); gap: 60px; border-bottom: 1px solid var(--line); }
.section-number { color: var(--purple); font-family: var(--display); font-size: 22px; letter-spacing: .08em; }
.manifesto-copy h2 { max-width: 900px; margin: 0; font-family: var(--display); font-size: clamp(48px, 5vw, 84px); line-height: .98; text-transform: uppercase; }
.manifesto-copy > p:last-child { max-width: 720px; margin: 32px 0 0; color: var(--muted); font-size: 18px; }

.values-grid { align-self: end; }
.values-grid article { display: grid; grid-template-columns: 36px 1fr; padding: 22px 0; border-top: 1px solid var(--line); }
.values-grid article:last-child { border-bottom: 1px solid var(--line); }
.values-grid span { color: var(--purple); font-size: 11px; }
.values-grid h3 { margin: 0; font-size: 17px; }
.values-grid p { grid-column: 2; margin: 4px 0 0; color: #898990; font-size: 13px; }

.section-heading { display: grid; grid-template-columns: minmax(220px, .65fr) minmax(0, 1.35fr); gap: 60px; margin-bottom: 70px; }
.section-heading > div:first-child { display: flex; gap: 42px; align-items: baseline; }
.section-heading h2 { font-size: clamp(68px, 8vw, 132px); }
.section-heading > div:last-child > p { max-width: 680px; margin: 24px 0 0; color: var(--muted); font-size: 18px; }

.logo-grid { display: grid; grid-template-columns: 1fr 1fr .62fr; gap: 18px; }
.asset-card { overflow: hidden; border: 1px solid var(--line); border-radius: 24px; background: #202023; }
.asset-preview { min-height: 370px; padding: 50px; display: grid; place-items: center; position: relative; }
.asset-preview img { width: min(80%, 390px); max-height: 200px; }
.asset-preview-mark img { width: 96px; max-height: none; }
.asset-card-light .asset-preview { background: #f3f3f0; }
.asset-card-dark .asset-preview { background: #181818; }
.asset-card-purple .asset-preview { background: var(--purple); }
.asset-tag { position: absolute; top: 20px; left: 20px; padding: 6px 10px; border: 1px solid currentColor; border-radius: 999px; color: rgba(255,255,255,.72); font-size: 9px; letter-spacing: .12em; text-transform: uppercase; }
.asset-card-light .asset-tag { color: rgba(24,24,24,.55); }
.asset-footer { min-height: 84px; padding: 18px 20px; display: flex; justify-content: space-between; align-items: center; }
.asset-footer strong, .asset-footer span { display: block; }
.asset-footer strong { font-size: 14px; }
.asset-footer span { margin-top: 3px; color: #7f7f86; font-size: 11px; }
.download-icon { width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; font-size: 20px; transition: background .2s ease, color .2s ease; }
.download-icon:hover { background: var(--white); color: var(--ink); }

.logo-rules { margin-top: 18px; padding: 44px; display: grid; grid-template-columns: .75fr 1.25fr; gap: 70px; background: #f0eee9; border-radius: 24px; color: var(--ink); }
.rule-kicker { color: #76716b; font-size: 10px; letter-spacing: .14em; text-transform: uppercase; }
.rule-intro h3 { margin: 12px 0; font-family: var(--display); font-size: 58px; line-height: 1; text-transform: uppercase; }
.rule-intro p { max-width: 460px; margin: 0; color: #77736e; }
.logo-rules ul { margin: 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 0 24px; list-style: none; }
.logo-rules li { min-height: 92px; display: flex; gap: 18px; align-items: center; border-top: 1px solid rgba(24,24,24,.14); }
.logo-rules li:nth-last-child(-n+2) { border-bottom: 1px solid rgba(24,24,24,.14); }
.rule-symbol { width: 42px; height: 42px; flex: 0 0 auto; display: grid; place-items: center; border: 1px solid rgba(24,24,24,.2); border-radius: 50%; }
.logo-rules strong, .logo-rules small { display: block; }
.logo-rules strong { font-size: 14px; }
.logo-rules small { margin-top: 3px; color: #85817d; font-size: 11px; }

.colors-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.color-card { min-height: 470px; padding: 26px; border: 0; border-radius: 22px; display: flex; flex-direction: column; align-items: flex-start; text-align: left; cursor: pointer; transition: transform .25s ease; }
.color-card:hover { transform: translateY(-8px); }
.color-card:focus-visible { outline: 3px solid var(--white); outline-offset: 4px; }
.color-card strong { margin-top: auto; font-size: 16px; }
.color-code { margin-top: 6px; font-family: var(--display); font-size: clamp(44px, 4vw, 66px); line-height: 1; }
.color-card small { margin-top: 8px; font-size: 11px; letter-spacing: .08em; }
.color-action { font-size: 9px; letter-spacing: .12em; text-transform: uppercase; opacity: .65; }
.color-purple { background: var(--purple); color: var(--ink); }
.color-green { background: var(--green); color: var(--ink); }
.color-black { background: var(--ink); color: var(--white); border: 1px solid var(--line); }
.color-white { background: var(--white); color: var(--ink); }

.type-section { background: #f0eee9; color: var(--ink); }
.type-section .eyebrow { color: #77736e; }
.type-section .section-heading > div:last-child > p { color: #68645f; }
.type-specimens { display: grid; grid-template-columns: 1.15fr .85fr; gap: 0; border: 1px solid rgba(24,24,24,.16); border-radius: 24px; overflow: hidden; }
.type-specimens article { min-height: 620px; padding: 44px; }
.type-display { background: var(--ink); color: var(--white); }
.type-body { display: flex; flex-direction: column; }
.type-meta { display: flex; justify-content: space-between; gap: 20px; padding-bottom: 20px; border-bottom: 1px solid currentColor; font-size: 11px; letter-spacing: .08em; text-transform: uppercase; opacity: .7; }
.type-display > p { margin: 60px 0 45px; font-family: var(--display); font-size: clamp(92px, 11vw, 176px); font-weight: 700; line-height: .72; text-transform: uppercase; }
.type-display > p em { color: var(--purple); font-style: normal; }
.type-alphabet { color: #85858a; font-family: var(--display); font-size: 18px; letter-spacing: .08em; overflow-wrap: anywhere; }
.type-body > p { max-width: 600px; color: #77736e; }
.type-body .type-large { margin: 70px 0 34px; color: var(--ink); font-size: clamp(30px, 3vw, 46px); font-weight: 500; line-height: 1.17; }
.license-note { margin-top: auto; padding: 18px; display: flex; gap: 14px; align-items: center; border: 1px solid rgba(24,24,24,.15); border-radius: 14px; color: #77736e; font-size: 12px; }
.license-note span { width: 26px; height: 26px; flex: 0 0 auto; display: grid; place-items: center; border: 1px solid rgba(24,24,24,.2); border-radius: 50%; font-weight: 700; }

.graphics-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 18px; }
.graphics-card { min-height: 430px; position: relative; overflow: hidden; padding: 28px; border: 1px solid var(--line); border-radius: 24px; background: #202023; }
.graphics-card-head { position: relative; z-index: 2; display: flex; justify-content: space-between; align-items: flex-start; }
.graphics-card-head span { color: #818188; font-size: 9px; letter-spacing: .14em; text-transform: uppercase; }
.graphics-card-head h3 { margin: 5px 0 0; font-family: var(--display); font-size: 44px; line-height: 1; text-transform: uppercase; }
.graphics-card-head a { padding: 8px 12px; border: 1px solid var(--line); border-radius: 999px; color: #c7c7cb; font-size: 9px; letter-spacing: .1em; text-transform: uppercase; }
.graphics-card-head a:hover { background: var(--white); color: var(--ink); }
.icon-row { height: 310px; display: grid; grid-template-columns: repeat(6, 1fr); gap: 18px; align-items: center; }
.icon-row img { width: 100%; max-height: 112px; object-fit: contain; }
.graphics-pattern { background: var(--purple); }
.graphics-pattern .graphics-card-head span { color: rgba(24,24,24,.6); }
.graphics-pattern .graphics-card-head a { border-color: rgba(24,24,24,.25); color: var(--ink); }
.pattern-image { position: absolute; width: 128%; max-width: none; left: -12%; bottom: -31%; opacity: .88; }
.graphics-gradients { min-height: 520px; }
.gradient-row { position: absolute; inset: 115px 28px 28px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.gradient-row img { width: 100%; height: 100%; object-fit: cover; border-radius: 14px; }
.graphics-lines { min-height: 520px; background: #f0eee9; color: var(--ink); }
.graphics-lines .graphics-card-head span { color: #77736e; }
.graphics-lines .graphics-card-head a { border-color: rgba(24,24,24,.2); color: var(--ink); }
.line-stage { position: absolute; inset: 110px 20px 10px; }
.line-stage img:first-child { position: absolute; width: 85%; top: 20%; left: 8%; }
.line-stage img:last-child { position: absolute; width: 23%; right: 6%; bottom: 11%; }

.assets-library {
    overflow: hidden;
    background: #141416;
    border-top: 1px solid var(--line);
}

.assets-heading { margin-bottom: 46px; }

.carousel-toolbar {
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.carousel-progress {
    color: #8d8d94;
    font-family: var(--display);
    font-size: 18px;
    letter-spacing: .1em;
}

.carousel-actions { display: flex; gap: 8px; }

.carousel-actions button {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: rgba(255,255,255,.03);
    color: var(--white);
    font-size: 20px;
    cursor: pointer;
    transition: background .2s ease, color .2s ease, opacity .2s ease;
}

.carousel-actions button:hover:not(:disabled) { background: var(--white); color: var(--ink); }
.carousel-actions button:disabled { opacity: .28; cursor: default; }

.assets-carousel {
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-behavior: smooth;
    scroll-snap-type: inline mandatory;
    scrollbar-width: none;
    touch-action: pan-x pan-y;
}

.assets-carousel::-webkit-scrollbar { display: none; }
.assets-carousel:focus-visible { outline: 2px solid var(--purple); outline-offset: 8px; border-radius: 18px; }

.assets-track {
    display: flex;
    column-gap: 16px;
    padding-bottom: 8px;
}

.carousel-card {
    flex: 0 0 clamp(300px, 29vw, 420px);
    overflow: hidden;
    scroll-snap-align: start;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: #202023;
}

.carousel-preview {
    aspect-ratio: 4 / 3;
    padding: 42px;
    display: grid;
    place-items: center;
    overflow: hidden;
}

.carousel-preview img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform .35s ease;
}

.carousel-preview:hover img { transform: scale(1.04); }
.carousel-preview img.is-cover { object-fit: cover; }
.carousel-preview-light { background: #f0eee9; }
.carousel-preview-dark { background: #181818; }
.carousel-preview-purple { background: var(--purple); }
.carousel-preview-neutral { padding: 0; background: #29292d; }

.carousel-card-meta {
    min-height: 82px;
    padding: 16px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.carousel-card-meta span,
.carousel-card-meta strong { display: block; }
.carousel-card-meta span { color: #77777e; font-size: 9px; letter-spacing: .12em; text-transform: uppercase; }
.carousel-card-meta strong { margin-top: 4px; font-size: 13px; }

.carousel-download {
    min-width: 50px;
    height: 36px;
    padding-inline: 10px;
    display: grid;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: #bdbdc2;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .08em;
    transition: background .2s ease, color .2s ease;
}

.carousel-download:hover { background: var(--white); color: var(--ink); }
.assets-fallback { color: var(--muted); }

.downloads { position: relative; overflow: hidden; background: var(--purple-dark); }
.downloads::before { content: "HERE"; position: absolute; left: -2vw; bottom: -9vw; color: rgba(255,255,255,.055); font-family: var(--display); font-size: 33vw; font-weight: 700; line-height: .7; }
.downloads-glow { position: absolute; width: 720px; height: 720px; right: -240px; top: -220px; border-radius: 50%; background: var(--green); opacity: .16; filter: blur(90px); }
.downloads-inner { position: relative; display: grid; grid-template-columns: 1.1fr .7fr; gap: 100px; align-items: center; }
.downloads-copy { max-width: 800px; }
.downloads h2 { font-size: clamp(72px, 8vw, 132px); }
.downloads-copy > p:not(.eyebrow) { max-width: 700px; margin: 28px 0 0; color: rgba(255,255,255,.73); font-size: 18px; }
.package-card { width: min(100%, 430px); aspect-ratio: .82; justify-self: end; padding: 28px; display: flex; flex-direction: column; justify-content: space-between; border: 1px solid rgba(255,255,255,.28); border-radius: 28px; background: rgba(24,24,24,.64); box-shadow: 0 40px 100px rgba(44,0,80,.35); backdrop-filter: blur(18px); transform: rotate(4deg); }
.package-top, .package-bottom { display: flex; justify-content: space-between; gap: 20px; font-size: 10px; letter-spacing: .13em; text-transform: uppercase; }
.package-card > img { width: 38%; margin: auto; }
.package-bottom { align-items: end; }
.package-bottom strong, .package-bottom span { display: block; }
.package-bottom strong { font-family: var(--display); font-size: 24px; }
.package-bottom > span { color: #8c8c92; text-align: right; }

.shared-site-footer { position: relative; z-index: 2; padding-top: 96px; background: var(--black); }
.shared-site-footer .card-glow { position: relative; overflow: hidden; }
.footer-fallback { min-height: 220px; padding-block: 64px; border-top: 1px solid var(--line); }
.footer-fallback img { width: 220px; }
.footer-fallback p { max-width: 460px; margin: 18px 0 0; color: #7e7e85; font-size: 13px; }

.copy-toast { position: fixed; z-index: 200; left: 50%; bottom: 28px; padding: 11px 18px; background: var(--white); color: var(--ink); border-radius: 999px; font-size: 12px; font-weight: 700; opacity: 0; transform: translate(-50%, 20px); pointer-events: none; transition: opacity .2s ease, transform .2s ease; }
.copy-toast.is-visible { opacity: 1; transform: translate(-50%, 0); }

.reveal { opacity: 1; transform: none; }
.has-js .reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.8,.2,1); }
.has-js .reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1100px) {
    .desktop-nav { display: none; }
    .site-header { grid-template-columns: 1fr auto auto; gap: 14px; }
    .menu-toggle { width: 42px; height: 42px; padding: 0; display: grid; place-items: center; background: transparent; border: 0; color: var(--white); }
    .menu-icon { grid-area: 1 / 1; width: 32px; height: 32px; }
    .menu-icon-close { display: none; }
    .menu-toggle[aria-expanded="true"] .menu-icon-open { display: none; }
    .menu-toggle[aria-expanded="true"] .menu-icon-close { display: block; }
    .hero { grid-template-columns: 1fr; min-height: auto; }
    .hero-copy { padding-bottom: 0; }
    .hero-stage { min-height: 580px; }
    .manifesto { grid-template-columns: 70px 1fr; }
    .values-grid { grid-column: 2; }
    .logo-grid { grid-template-columns: 1fr 1fr; }
    .asset-card-purple { grid-column: 1 / -1; }
    .asset-card-purple .asset-preview { min-height: 300px; }
    .type-specimens { grid-template-columns: 1fr; }
    .type-specimens article { min-height: 540px; }
    .downloads-inner { gap: 50px; }
}

@media (max-width: 760px) {
    .section-shell { width: min(100% - 32px, 1440px); }
    .section-space { padding-block: 92px; }
    .site-header,
    .site-header.is-scrolled {
        inset: 0 0 auto;
        width: 100%;
        height: 88px;
        padding: 24px 16px;
        grid-template-columns: minmax(0, 1fr) auto auto;
        gap: 8px;
        border: 0;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
        backdrop-filter: none;
    }
    .site-header.is-scrolled {
        height: 72px;
        padding-block: 16px;
        background: rgba(15,15,17,.8);
        border-bottom: 1px solid rgba(255,255,255,.05);
        backdrop-filter: blur(12px);
    }
    .brand-home { min-width: 40px; gap: 0; }
    .brand-home img { width: 40px; height: 40px; flex: 0 0 auto; }
    .brand-home span { display: none; }
    .header-download { min-width: 78px; min-height: 40px; padding: 0 14px; display: inline-flex; align-items: center; justify-content: center; font-size: 10px; line-height: 1; }
    .menu-toggle { width: 32px; height: 32px; }
    .mobile-nav { padding-top: 106px; }
    .hero { padding-top: 116px; gap: 22px; }
    .hero h1 { font-size: clamp(59px, 19vw, 90px); }
    .hero-lead { margin-top: 24px; }
    .hero-actions { margin-top: 30px; }
    .button { width: 100%; }
    .hero-stage { min-height: 390px; }
    .hero-orbit-one { width: 340px; height: 340px; }
    .hero-orbit-two { width: 270px; height: 270px; }
    .hero-logo-card { width: 91%; padding: 18px; border-radius: 20px; }
    .hero-chip-purple { right: -3%; }
    .hero-chip-green { left: -3%; }
    .hero-meta { grid-template-columns: 1fr; }
    .hero-meta div, .hero-meta div:first-child, .hero-meta div:last-child { padding: 14px 0; border-right: 0; border-bottom: 1px solid var(--line); }
    .hero-meta div:last-child { border-bottom: 0; }
    .manifesto { grid-template-columns: 1fr; gap: 22px; }
    .values-grid { grid-column: 1; }
    .manifesto-copy h2 { font-size: 47px; }
    .section-heading { grid-template-columns: 1fr; gap: 8px; margin-bottom: 42px; }
    .section-heading > div:first-child { gap: 24px; }
    .section-heading h2 { font-size: 72px; }
    .section-heading > div:last-child > p { font-size: 16px; }
    .logo-grid { grid-template-columns: 1fr; }
    .asset-card-purple { grid-column: auto; }
    .asset-preview, .asset-card-purple .asset-preview { min-height: 280px; padding: 34px; }
    .logo-rules { padding: 28px 22px; grid-template-columns: 1fr; gap: 38px; }
    .logo-rules ul { grid-template-columns: 1fr; }
    .logo-rules li:nth-last-child(-n+2) { border-bottom: 0; }
    .logo-rules li:last-child { border-bottom: 1px solid rgba(24,24,24,.14); }
    .colors-grid { grid-template-columns: 1fr 1fr; }
    .color-card { min-height: 300px; padding: 20px; }
    .color-code { font-size: 42px; }
    .type-specimens article { min-height: 0; padding: 28px 22px; }
    .type-meta { flex-direction: column; gap: 5px; }
    .type-display > p { margin: 50px 0; font-size: 91px; }
    .type-body .type-large { margin-top: 46px; }
    .license-note { margin-top: 48px; }
    .graphics-grid { grid-template-columns: 1fr; }
    .graphics-card { min-height: 390px; padding: 22px; }
    .graphics-card-head { gap: 16px; }
    .graphics-card-head h3 { font-size: 38px; }
    .icon-row { grid-template-columns: repeat(3, 1fr); height: 290px; padding-top: 60px; }
    .gradient-row { inset: 100px 18px 18px; grid-template-columns: 1fr 1fr; }
    .graphics-gradients { min-height: 620px; }
    .assets-heading { margin-bottom: 34px; }
    .carousel-card { flex-basis: min(82vw, 330px); }
    .carousel-preview { padding: 30px; }
    .carousel-preview-neutral { padding: 0; }
    .carousel-actions button { width: 42px; height: 42px; }
    .downloads-inner { grid-template-columns: 1fr; }
    .downloads h2 { font-size: 64px; }
    .package-card { justify-self: center; transform: rotate(2deg); }
    .shared-site-footer { padding-top: 72px; }
}

@media (max-width: 430px) {
    .header-download { min-width: 74px; padding-inline: 12px; }
    .colors-grid { grid-template-columns: 1fr; }
    .color-card { min-height: 270px; }
    .hero-chip { padding: 8px 11px; font-size: 9px; }
    .type-display > p { font-size: 78px; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
    .reveal { opacity: 1; transform: none; }
}
