@font-face {
    font-family: 'DMSansBlack';
    src: url('./fonts/DMSans-Black.ttf') format('truetype');
}
@font-face {
    font-family: 'DMSansBold';
    src: url('./fonts/DMSans-Bold.ttf') format('truetype');
}
@font-face {
    font-family: 'DMSansMedium';
    src: url('./fonts/DMSans-Medium.ttf') format('truetype');
}
@font-face {
    font-family: 'DMSansRegular';
    src: url('./fonts/DMSans-Regular.ttf') format('truetype');
}
@font-face {
    font-family: 'DMSansSemiBold';
    src: url('./fonts/DMSans-SemiBold.ttf') format('truetype');
}

:root{
    --bg: #f6f6f3;
    --ink: #dle0e5;
    --muted: rgba(15, 15, 16, 0.68);
    --muted-2: rgba(15, 15, 16, 0.45);
    --line: rgba(15, 15, 16, 0.14);
    --focus: rgba(15, 15, 16, 0.28);
    --radius: 999px;
    --wrap: 1200px;
    --shadow: 0 18px 60px rgba(15, 15, 16, 0.10);
}

*{ box-sizing: border-box; }

html, body{ height: 100%; }

body{
    margin: 0;
    font-family: 'DMSansRegular', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    background: radial-gradient(1200px 700px at 15% 10%, rgba(15, 15, 16, 0.07), transparent 55%),
                radial-gradient(900px 600px at 85% 35%, rgba(15, 15, 16, 0.05), transparent 55%),
                var(--bg);
    color: var(--ink);
    letter-spacing: -0.01em;
}

a{ color: inherit; text-decoration: none; }

::selection{
    background: rgba(15, 15, 16, 0.12);
}

.wrap{
    max-width: var(--wrap);
    margin: 0 auto;
    padding: 0 22px;
}

.skip-link{
    position: absolute;
    left: -9999px;
    top: 12px;
    padding: 10px 12px;
    border-radius: 10px;
    background: var(--bg);
    border: 1px solid var(--line);
}
.skip-link:focus{ left: 12px; z-index: 20; outline: 2px solid var(--focus); outline-offset: 2px; }

.site-header{
    position: sticky;
    top: 0;
    z-index: 10;
    background: color-mix(in srgb, var(--bg) 82%, transparent);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--line);
}

.header-inner{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 18px 0;
}

.header-right{
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.header-tag{
    font-family: 'DMSansSemiBold', system-ui, sans-serif;
    font-size: 12px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--muted);
    padding: 10px 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.26);
}

.brand{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
}

.brand-logo{
    height: 150px;
    width: auto;
    display: block;
    object-fit: contain;
}

.brand-mark{
    width: 12px;
    height: 12px;
    border-radius: 2px;
    background: var(--ink);
    flex: 0 0 auto;
}

.brand-text{
    font-family: 'DMSansBlack', system-ui, sans-serif;
    letter-spacing: 0.08em;
    font-size: 12px;
    white-space: nowrap;
}

.brand-note{
    font-size: 12px;
    color: var(--muted-2);
    white-space: nowrap;
}

.is-disabled{ opacity: 0.45; pointer-events: none; }

.site-main{
    display: block;
}

.hero{
    padding: clamp(38px, 6vw, 84px) 0 clamp(30px, 5vw, 72px);
}

.hero > *{
    animation: rise 700ms cubic-bezier(.2,.9,.2,1) both;
}
.hero .kicker{ animation-delay: 60ms; }
.hero .headline{ animation-delay: 120ms; }
.hero .lead{ animation-delay: 180ms; }
.hero .cta{ animation-delay: 240ms; }

.cta{
    position: relative;
}
.cta::before{
    content: "";
    position: absolute;
    inset: -18px -18px -18px -18px;
    border-radius: 26px;
    background: radial-gradient(500px 160px at 20% 20%, rgba(15, 15, 16, 0.07), transparent 60%),
                radial-gradient(380px 140px at 80% 80%, rgba(15, 15, 16, 0.05), transparent 60%);
    z-index: -1;
    opacity: 0.85;
}

.kicker{
    margin: 0 0 14px;
    font-size: 12px;
    letter-spacing: 0.18em;
    color: var(--muted);
    text-transform: uppercase;
}

.headline{
    margin: 0;
    font-family: 'DMSansBlack', system-ui, sans-serif;
    font-size: clamp(44px, 7.5vw, 104px);
    line-height: 0.92;
    letter-spacing: -0.04em;
    text-transform: uppercase;
}

.headline-em{
    display: block;
    font-family: 'DMSansBold', system-ui, sans-serif;
    letter-spacing: -0.03em;
    opacity: 0.95;
}

.lead{
    margin: 18px 0 0;
    max-width: 54ch;
    font-size: 16px;
    line-height: 1.55;
    color: var(--muted);
}

.cta{
    margin-top: 26px;
    max-width: 560px;
}

.notify{
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px;
    align-items: center;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.35);
    box-shadow: var(--shadow);
}

.notify input{
    width: 100%;
    border: none;
    background: transparent;
    padding: 12px 12px;
    font-size: 14px;
    outline: none;
}
.notify input::placeholder{ color: var(--muted-2); }
.notify input:focus-visible{ outline: 2px solid var(--focus); outline-offset: 2px; border-radius: 12px; }

.notify button{
    border: 1px solid var(--ink);
    background: #000;
    color: var(--bg);
    border-radius: 14px;
    padding: 12px 16px;
    font-family: 'DMSansSemiBold', system-ui, sans-serif;
    font-size: 13px;
    letter-spacing: 0.02em;
    cursor: pointer;
    transition: transform 140ms ease, opacity 140ms ease;
    white-space: nowrap;
}
.notify button:hover{ transform: translateY(-1px); opacity: 0.95; }
.notify button:active{ transform: translateY(0px); opacity: 0.9; }
.notify button:focus-visible{ outline: 2px solid var(--focus); outline-offset: 2px; }

.fineprint{
    margin: 10px 0 0;
    font-size: 12px;
    color: var(--muted-2);
}

.form-status{
    margin: 10px 0 0;
    font-size: 12px;
    color: var(--muted);
    min-height: 1.2em;
}

.form-status.is-success{ color: rgba(12, 90, 55, 0.9); }
.form-status.is-error{ color: rgba(140, 22, 22, 0.88); }

.notify[aria-busy="true"]{
    opacity: 0.9;
}
.notify[aria-busy="true"] button{
    opacity: 0.9;
    cursor: progress;
}

.marquee{
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    overflow: hidden;
    background: rgba(255, 255, 255, 0.18);
}

.marquee-track{
    display: flex;
    flex-wrap: nowrap;
    width: max-content;
    padding: 16px 0;
    will-change: transform;
    animation: scroll 24s linear infinite;
}

.marquee-group{
    display: inline-flex;
    align-items: center;
    gap: 34px;
    padding-right: 34px;
    white-space: nowrap;
    flex: 0 0 auto;
}

.marquee-group span{
    font-family: 'DMSansBlack', system-ui, sans-serif;
    letter-spacing: 0.14em;
    font-size: 12px;
    opacity: 0.85;
}

@keyframes scroll{
    from{ transform: translateX(0); }
    to{ transform: translateX(-50%); }
}

@keyframes rise{
    from{ opacity: 0; transform: translateY(10px); }
    to{ opacity: 1; transform: translateY(0); }
}

.site-footer{
    padding: 26px 0 30px;
}

.footer-inner{
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 18px;
    align-items: end;
}

.footer-title{
    margin: 0 0 6px;
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--muted);
}

.footer-link{
    display: inline-block;
    padding: 10px 0;
    font-family: 'DMSansSemiBold', system-ui, sans-serif;
    letter-spacing: 0.02em;
}
.footer-link:hover{ text-decoration: underline; text-underline-offset: 3px; }

.footer-social{
    display: flex;
    gap: 16px;
    justify-content: center;
}

.footer-copy{
    text-align: right;
    color: var(--muted-2);
    font-size: 12px;
}
.footer-copy p{ margin: 0; }

.sr-only{
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

@media (max-width: 840px){
    .header-inner{ flex-wrap: wrap; }
    .brand-logo{ height: 26px; }
    .footer-inner{ grid-template-columns: 1fr; align-items: start; }
    .footer-social{ justify-content: flex-start; }
    .footer-copy{ text-align: left; }
    .notify{ grid-template-columns: 1fr; }
    .notify button{ width: 100%; }
}

@media (prefers-reduced-motion: reduce){
    .marquee-track{ animation: none; }
    .notify button{ transition: none; }
    .hero > *{ animation: none; }
}