:root {
    --bg: #090b10;
    --bg-soft: #11141c;
    --surface: rgba(18, 22, 31, 0.78);
    --surface-solid: #131722;
    --text: #f7f7f4;
    --muted: #aab0bd;
    --line: rgba(255, 255, 255, 0.12);
    --cyan: #3c9cb5;
    --pink: #e84285;
    --red: #ec1c2d;
    --lime: #d7ff48;
    --amber: #ffbf38;
    --shadow: 0 28px 90px rgba(0, 0, 0, 0.42);
    --radius-sm: 14px;
    --radius-md: 24px;
    --radius-lg: 38px;
    --container: min(1460px, calc(100vw - 40px));
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    background: var(--bg);
}

body {
    margin: 0;
    background:
        radial-gradient(circle at 10% 10%, rgba(60, 156, 181, 0.12), transparent 28%),
        radial-gradient(circle at 90% 18%, rgba(232, 66, 133, 0.10), transparent 24%),
        var(--bg);
    color: var(--text);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.5;
    overflow-x: hidden;
}

body::selection {
    background: var(--lime);
    color: #07090c;
}

button,
input,
select {
    font: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

a {
    color: inherit;
}

img {
    max-width: 100%;
}

.skip-link {
    position: fixed;
    z-index: 999;
    top: 12px;
    left: 12px;
    padding: 12px 16px;
    background: #fff;
    color: #000;
    transform: translateY(-150%);
    transition: transform 180ms ease;
}

.skip-link:focus {
    transform: translateY(0);
}

.page-noise {
    position: fixed;
    inset: 0;
    z-index: 40;
    pointer-events: none;
    opacity: 0.12;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.22'/%3E%3C/svg%3E");
    mix-blend-mode: soft-light;
}

.cursor-glow {
    position: fixed;
    z-index: 3;
    width: 420px;
    height: 420px;
    margin: -210px 0 0 -210px;
    border-radius: 50%;
    pointer-events: none;
    background: radial-gradient(circle, rgba(215, 255, 72, 0.12), rgba(60, 156, 181, 0.05) 38%, transparent 70%);
    filter: blur(10px);
    opacity: 0;
    transition: opacity 220ms ease;
}

body.has-pointer .cursor-glow {
    opacity: 1;
}

.site-header {
    position: fixed;
    z-index: 60;
    top: 0;
    left: 0;
    right: 0;
    width: var(--container);
    margin: 0 auto;
    min-height: 86px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(18px);
}

.brand-lockup {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    width: fit-content;
    text-decoration: none;
    font-weight: 900;
    letter-spacing: -0.04em;
}

.brand-lockup__event {
    font-size: 14px;
    line-height: 0.86;
}

.brand-lockup__cross {
    color: var(--muted);
    font-weight: 400;
}

.brand-lockup__psa {
    font-size: 18px;
    color: var(--red);
}

.brand-lockup sup {
    font-size: 8px;
    vertical-align: super;
}

.site-header__meta {
    display: flex;
    gap: 20px;
    color: var(--muted);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
}

.site-header > .button {
    justify-self: end;
}

.button {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    min-height: 52px;
    padding: 0 22px;
    border: 1px solid transparent;
    border-radius: 999px;
    color: var(--text);
    background: transparent;
    text-decoration: none;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: -0.01em;
    cursor: pointer;
    transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
    overflow: hidden;
}

.button:hover {
    transform: translateY(-2px);
}

.button:focus-visible,
.text-link:focus-visible,
input:focus-visible,
select:focus-visible,
summary:focus-visible {
    outline: 3px solid var(--lime);
    outline-offset: 3px;
}

.button--primary {
    color: #07090c;
    background: linear-gradient(120deg, var(--lime), #efffa9 48%, var(--amber));
    box-shadow: 0 16px 50px rgba(215, 255, 72, 0.18);
}

.button--primary::before {
    content: "";
    position: absolute;
    inset: -100% auto -100% -30%;
    width: 26%;
    transform: rotate(18deg);
    background: rgba(255, 255, 255, 0.72);
    filter: blur(10px);
    transition: left 500ms ease;
}

.button--primary:hover::before {
    left: 120%;
}

.button--ghost {
    border-color: var(--line);
    background: rgba(255, 255, 255, 0.04);
}

.button--ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.28);
}

.button--linkedin {
    color: #fff;
    background: #0a66c2;
}

.button--mini {
    min-height: 40px;
    padding: 0 17px;
    border-color: rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.05);
    font-size: 12px;
}

.button--full {
    width: 100%;
}

.button--large {
    min-height: 66px;
    padding: 0 30px;
    font-size: 17px;
}

.button:disabled {
    opacity: 0.45;
    cursor: not-allowed;
    transform: none;
}

.text-link {
    border: 0;
    border-bottom: 1px solid currentColor;
    padding: 0 0 4px;
    color: var(--text);
    background: transparent;
    text-decoration: none;
    font-weight: 700;
    cursor: pointer;
}

.hero {
    position: relative;
    z-index: 1;
    width: var(--container);
    min-height: 100svh;
    margin: 0 auto;
    padding: 150px 0 72px;
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(380px, 0.72fr);
    align-items: center;
    gap: clamp(44px, 6vw, 110px);
}

.hero__ambient {
    position: absolute;
    inset: 0;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.hero__grid {
    position: absolute;
    inset: 12% -10% -15%;
    opacity: 0.3;
    transform: perspective(900px) rotateX(69deg) translateY(18%);
    transform-origin: center bottom;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.09) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.09) 1px, transparent 1px);
    background-size: 74px 74px;
    mask-image: linear-gradient(to top, #000, transparent 85%);
    animation: gridMove 14s linear infinite;
}

.hero__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(24px);
    animation: orbFloat 9s ease-in-out infinite alternate;
}

.hero__orb--one {
    width: 480px;
    height: 480px;
    top: 8%;
    right: 24%;
    background: rgba(60, 156, 181, 0.16);
}

.hero__orb--two {
    width: 390px;
    height: 390px;
    bottom: 3%;
    left: 7%;
    background: rgba(232, 66, 133, 0.13);
    animation-delay: -3s;
}

.hero__ring {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 50%;
    box-shadow: inset 0 0 60px rgba(255, 255, 255, 0.03);
}

.hero__ring--one {
    width: 520px;
    height: 520px;
    right: -80px;
    top: 12%;
    animation: ringSpin 18s linear infinite;
}

.hero__ring--two {
    width: 300px;
    height: 300px;
    right: 130px;
    top: 30%;
    border-style: dashed;
    animation: ringSpin 13s linear infinite reverse;
}

.eyebrow {
    margin: 0 0 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.eyebrow span {
    width: 44px;
    height: 2px;
    background: linear-gradient(90deg, var(--lime), transparent);
}

.hero__title {
    margin: 0;
    font-size: clamp(58px, 8vw, 132px);
    line-height: 0.78;
    letter-spacing: -0.078em;
    font-weight: 950;
}

.hero__line {
    display: block;
    transform: translateY(28px);
    opacity: 0;
    animation: titleIn 760ms cubic-bezier(.16, .86, .2, 1) forwards;
}

.hero__line:nth-child(2) {
    animation-delay: 100ms;
}

.hero__line:nth-child(3) {
    animation-delay: 200ms;
}

.hero__line--accent {
    width: fit-content;
    padding-right: 0.06em;
    color: transparent;
    background: linear-gradient(90deg, var(--lime), #fff7a6 46%, var(--pink));
    background-clip: text;
    -webkit-background-clip: text;
    text-shadow: 0 0 42px rgba(215, 255, 72, 0.08);
}

.hero__lead {
    max-width: 720px;
    margin: 32px 0 0;
    color: #d3d6de;
    font-size: clamp(18px, 1.5vw, 24px);
    line-height: 1.45;
}

.hero__actions {
    margin-top: 34px;
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.hero__facts {
    margin-top: 55px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    border: 1px solid var(--line);
    background: var(--line);
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.fact {
    min-height: 92px;
    padding: 19px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: rgba(9, 11, 16, 0.76);
}

.fact strong {
    font-size: 24px;
    letter-spacing: -0.04em;
}

.fact span {
    margin-top: 2px;
    color: var(--muted);
    font-size: 12px;
}

.entry-card {
    position: sticky;
    top: 120px;
    isolation: isolate;
    padding: clamp(26px, 3vw, 42px);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: var(--radius-lg);
    background:
        linear-gradient(150deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.02)),
        rgba(14, 17, 24, 0.88);
    backdrop-filter: blur(26px);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.entry-card::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    padding: 1px;
    border-radius: inherit;
    background: linear-gradient(140deg, rgba(215, 255, 72, 0.55), transparent 28%, transparent 72%, rgba(232, 66, 133, 0.45));
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
}

.entry-card__glow {
    position: absolute;
    z-index: -2;
    width: 290px;
    height: 290px;
    right: -80px;
    top: -90px;
    border-radius: 50%;
    background: rgba(215, 255, 72, 0.14);
    filter: blur(36px);
}

.entry-card__topline {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #e7e9ee;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.entry-card__topline .countdown {
    margin-left: auto;
    color: var(--lime);
}

.live-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--lime);
    box-shadow: 0 0 0 0 rgba(215, 255, 72, 0.45);
    animation: pulse 2s infinite;
}

.entry-card h2 {
    margin: 22px 0 6px;
    font-size: clamp(30px, 3vw, 48px);
    line-height: 0.98;
    letter-spacing: -0.055em;
}

.entry-card > p {
    margin: 0 0 22px;
    color: var(--muted);
}

.entry-form {
    display: grid;
    gap: 13px;
}

.field {
    display: grid;
    gap: 7px;
}

.field > span {
    color: #d6d9e1;
    font-size: 12px;
    font-weight: 750;
}

.field input,
.field select {
    width: 100%;
    min-height: 52px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 14px;
    padding: 0 16px;
    color: var(--text);
    background: rgba(5, 7, 11, 0.62);
    transition: border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.field input::placeholder {
    color: #6f7580;
}

.field input:focus,
.field select:focus {
    border-color: rgba(215, 255, 72, 0.65);
    background: rgba(5, 7, 11, 0.94);
    box-shadow: 0 0 0 4px rgba(215, 255, 72, 0.08);
}

.field select {
    appearance: none;
    background-image: linear-gradient(45deg, transparent 50%, #adb2bb 50%), linear-gradient(135deg, #adb2bb 50%, transparent 50%);
    background-position: calc(100% - 20px) 22px, calc(100% - 15px) 22px;
    background-size: 5px 5px, 5px 5px;
    background-repeat: no-repeat;
}

.field.has-error input,
.field.has-error select {
    border-color: #ff6b6b;
}

.check {
    display: grid;
    grid-template-columns: 18px 1fr;
    gap: 10px;
    align-items: start;
    color: #cfd3dc;
    font-size: 11px;
    line-height: 1.45;
}

.check input {
    width: 17px;
    height: 17px;
    margin: 1px 0 0;
    accent-color: var(--lime);
}

.check a {
    color: #fff;
}

.check--optional {
    color: #9299a6;
}

.entry-form small,
.social-panel small {
    color: #7f8795;
    text-align: center;
}

.honeypot {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    clip: rect(1px, 1px, 1px, 1px) !important;
    white-space: nowrap !important;
}

.form-message {
    display: none;
    border-radius: 12px;
    padding: 11px 13px;
    font-size: 12px;
}

.form-message.is-visible {
    display: block;
}

.form-message.is-error {
    color: #ffd4d4;
    background: rgba(236, 28, 45, 0.14);
    border: 1px solid rgba(236, 28, 45, 0.32);
}

.form-message.is-success {
    color: #ecffb9;
    background: rgba(215, 255, 72, 0.1);
    border: 1px solid rgba(215, 255, 72, 0.28);
}

.ticker {
    position: relative;
    z-index: 2;
    overflow: hidden;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: var(--lime);
    color: #07090c;
    transform: rotate(-1.1deg) scale(1.02);
}

.ticker__track {
    display: flex;
    align-items: center;
    width: max-content;
    min-height: 66px;
    gap: 28px;
    font-size: 18px;
    font-weight: 950;
    letter-spacing: -0.03em;
    animation: ticker 26s linear infinite;
}

.stack-intro,
.section {
    width: var(--container);
    margin: 0 auto;
}

.stack-intro {
    min-height: 58vh;
    padding: 170px 0 90px;
    display: flex;
    flex-direction: column;
    justify-content: end;
}

.stack-intro h2,
.section-heading h2,
.social-panel h2,
.final-cta h2 {
    margin: 0;
    font-size: clamp(46px, 7vw, 112px);
    line-height: 0.9;
    letter-spacing: -0.07em;
}

.stack-intro em,
.section-heading em,
.social-panel em,
.final-cta em {
    font-style: normal;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.58);
}

.sticky-story {
    position: relative;
}

.story-slide {
    position: sticky;
    top: 0;
    min-height: 100svh;
    display: grid;
    place-items: center;
    overflow: hidden;
    isolation: isolate;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    background: #0d1017;
}

.story-slide--cyan {
    background:
        radial-gradient(circle at 80% 20%, rgba(60, 156, 181, 0.38), transparent 30%),
        linear-gradient(135deg, #071015, #0d1d24 60%, #091015);
}

.story-slide--pink {
    background:
        radial-gradient(circle at 20% 25%, rgba(232, 66, 133, 0.35), transparent 28%),
        linear-gradient(135deg, #160911, #27101c 62%, #0e0a10);
}

.story-slide--red {
    background:
        radial-gradient(circle at 75% 30%, rgba(236, 28, 45, 0.34), transparent 28%),
        linear-gradient(135deg, #150607, #2b0a0d 62%, #100708);
}

.story-slide__mesh {
    position: absolute;
    inset: 0;
    z-index: -1;
    opacity: 0.32;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.11) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.11) 1px, transparent 1px);
    background-size: 58px 58px;
    mask-image: radial-gradient(circle at center, #000, transparent 78%);
}

.story-slide__content {
    width: var(--container);
    padding: 130px 0 90px;
}

.story-slide__number {
    display: block;
    margin-bottom: 26px;
    color: rgba(255, 255, 255, 0.56);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.16em;
}

.story-slide h2 {
    margin: 0;
    font-size: clamp(76px, 16vw, 260px);
    line-height: 0.72;
    letter-spacing: -0.085em;
}

.story-slide p {
    max-width: 620px;
    margin: 54px 0 30px;
    color: rgba(255, 255, 255, 0.82);
    font-size: clamp(18px, 2vw, 26px);
}

.story-slide__word {
    position: absolute;
    z-index: -1;
    right: -0.06em;
    bottom: -0.16em;
    font-size: clamp(110px, 24vw, 420px);
    line-height: 0.8;
    letter-spacing: -0.09em;
    color: rgba(255, 255, 255, 0.025);
    font-weight: 950;
    white-space: nowrap;
}

.section {
    padding: 150px 0;
}

.section-heading {
    margin-bottom: 58px;
    display: grid;
    grid-template-columns: 1.45fr 0.55fr;
    gap: 60px;
    align-items: end;
}

.section-heading > p {
    margin: 0 0 8px;
    color: var(--muted);
    font-size: 17px;
}

.section-heading--compact {
    grid-template-columns: 1fr;
}

.prize-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.prize-card {
    position: relative;
    min-height: 390px;
    padding: 34px;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background:
        radial-gradient(circle at 90% 10%, rgba(215, 255, 72, 0.12), transparent 28%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02));
    overflow: hidden;
    transition: transform 240ms ease, border-color 240ms ease;
}

.prize-card:hover {
    transform: translateY(-7px);
    border-color: rgba(215, 255, 72, 0.42);
}

.prize-card--locked {
    background:
        linear-gradient(120deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015)),
        repeating-linear-gradient(-45deg, rgba(255, 255, 255, 0.025) 0 10px, transparent 10px 20px);
}

.prize-card__index {
    position: absolute;
    top: 14px;
    right: 24px;
    color: rgba(255, 255, 255, 0.07);
    font-size: 92px;
    font-weight: 950;
    line-height: 1;
}

.prize-card__provider {
    position: relative;
    z-index: 1;
    color: var(--muted);
    font-size: 12px;
    font-weight: 850;
    letter-spacing: 0.14em;
}

.prize-card__badge {
    width: fit-content;
    margin-top: 46px;
    padding: 7px 11px;
    border: 1px solid rgba(215, 255, 72, 0.26);
    border-radius: 999px;
    color: var(--lime);
    background: rgba(215, 255, 72, 0.07);
    font-size: 11px;
    font-weight: 800;
}

.prize-card h3 {
    margin: 20px 0 12px;
    font-size: clamp(32px, 4vw, 58px);
    line-height: 0.98;
    letter-spacing: -0.055em;
}

.prize-card p {
    max-width: 580px;
    margin: 0;
    color: var(--muted);
    font-size: 16px;
}

.prize-card__footer {
    margin-top: auto;
    padding-top: 28px;
    display: flex;
    justify-content: space-between;
    border-top: 1px solid var(--line);
    color: #dfe2e9;
    font-size: 12px;
    font-weight: 750;
}

.social-panel {
    position: relative;
    min-height: 660px;
    padding: 70px;
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 70px;
    align-items: center;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background:
        radial-gradient(circle at 15% 20%, rgba(10, 102, 194, 0.3), transparent 30%),
        radial-gradient(circle at 90% 80%, rgba(232, 66, 133, 0.18), transparent 28%),
        #0c1018;
    overflow: hidden;
}

.social-panel__visual {
    position: relative;
    min-height: 430px;
}

.social-card {
    position: absolute;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 30px;
    box-shadow: var(--shadow);
    font-weight: 950;
}

.social-card--one {
    width: 260px;
    height: 260px;
    left: 0;
    top: 34px;
    color: #fff;
    background: #0a66c2;
    font-size: 110px;
    transform: rotate(-8deg);
}

.social-card--two {
    width: 190px;
    height: 190px;
    right: 7%;
    top: 3px;
    color: #07090c;
    background: var(--lime);
    font-size: 86px;
    transform: rotate(8deg);
}

.social-card--three {
    width: 260px;
    height: 150px;
    right: 0;
    bottom: 10px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(18px);
    font-size: 42px;
    transform: rotate(-4deg);
}

.social-panel__content > p:not(.eyebrow) {
    max-width: 650px;
    color: var(--muted);
    font-size: 18px;
}

.share-actions {
    margin-top: 28px;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.proof {
    border-top: 1px solid var(--line);
}

.proof-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    border: 1px solid var(--line);
    background: var(--line);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.proof-grid article {
    min-height: 220px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: end;
    background: var(--bg-soft);
}

.proof-grid strong {
    font-size: clamp(52px, 7vw, 104px);
    line-height: 0.8;
    letter-spacing: -0.075em;
}

.proof-grid span {
    margin-top: 24px;
    color: var(--muted);
}

.topic-pills {
    margin-top: 22px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.topic-pills span {
    padding: 12px 17px;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: #cdd1d9;
    background: rgba(255, 255, 255, 0.03);
}

.faq-list {
    border-top: 1px solid var(--line);
}

.faq-list details {
    border-bottom: 1px solid var(--line);
}

.faq-list summary {
    min-height: 95px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    cursor: pointer;
    list-style: none;
    font-size: clamp(20px, 2.4vw, 34px);
    font-weight: 800;
    letter-spacing: -0.035em;
}

.faq-list summary::-webkit-details-marker {
    display: none;
}

.faq-list summary span {
    color: var(--lime);
    font-size: 36px;
    font-weight: 400;
    transition: transform 180ms ease;
}

.faq-list details[open] summary span {
    transform: rotate(45deg);
}

.faq-list p {
    max-width: 850px;
    margin: -8px 0 34px;
    color: var(--muted);
    font-size: 17px;
}

.final-cta {
    padding-bottom: 180px;
}

.final-cta__inner {
    position: relative;
    min-height: 600px;
    padding: 70px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    border-radius: var(--radius-lg);
    background:
        radial-gradient(circle at 85% 22%, rgba(215, 255, 72, 0.32), transparent 25%),
        radial-gradient(circle at 18% 82%, rgba(232, 66, 133, 0.22), transparent 28%),
        linear-gradient(135deg, #121b1f, #130d16);
    overflow: hidden;
}

.final-cta__inner::after {
    content: "2026";
    position: absolute;
    right: -0.04em;
    bottom: -0.25em;
    color: rgba(255, 255, 255, 0.035);
    font-size: clamp(180px, 31vw, 540px);
    font-weight: 950;
    line-height: 1;
    letter-spacing: -0.09em;
}

.final-cta .button {
    margin-top: 40px;
    z-index: 1;
}

.site-footer {
    width: var(--container);
    margin: 0 auto;
    padding: 40px 0 48px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 30px;
    border-top: 1px solid var(--line);
    color: var(--muted);
    font-size: 12px;
}

.site-footer__links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.site-footer a {
    text-decoration: none;
}

.site-footer a:hover {
    color: #fff;
}

.success-drawer {
    position: fixed;
    z-index: 102;
    right: 20px;
    top: 20px;
    bottom: 20px;
    width: min(560px, calc(100vw - 40px));
    padding: clamp(34px, 5vw, 64px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 34px;
    background:
        radial-gradient(circle at 70% 12%, rgba(215, 255, 72, 0.2), transparent 25%),
        #11151d;
    box-shadow: 0 40px 120px rgba(0, 0, 0, 0.6);
    transform: translateX(calc(100% + 50px));
    transition: transform 420ms cubic-bezier(.2, .8, .2, 1);
}

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

.success-drawer h2 {
    margin: 0 0 15px;
    font-size: clamp(48px, 7vw, 86px);
    line-height: 0.92;
    letter-spacing: -0.065em;
}

.success-drawer > p:not(.eyebrow) {
    color: var(--muted);
    font-size: 18px;
}

.success-drawer__close {
    position: absolute;
    top: 22px;
    right: 22px;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: 50%;
    color: #fff;
    background: rgba(255, 255, 255, 0.04);
    font-size: 28px;
    cursor: pointer;
}

.drawer-backdrop {
    position: fixed;
    z-index: 101;
    inset: 0;
    background: rgba(0, 0, 0, 0.64);
    backdrop-filter: blur(8px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 280ms ease, visibility 280ms ease;
}

.drawer-backdrop.is-open {
    opacity: 1;
    visibility: visible;
}

.mobile-cta {
    position: fixed;
    z-index: 80;
    left: 14px;
    right: 14px;
    bottom: 14px;
    min-height: 56px;
    padding: 0 22px;
    display: none;
    align-items: center;
    justify-content: space-between;
    border-radius: 999px;
    color: #07090c;
    background: var(--lime);
    box-shadow: 0 18px 55px rgba(0, 0, 0, 0.42);
    text-decoration: none;
    font-weight: 900;
}

@keyframes titleIn {
    to { transform: translateY(0); opacity: 1; }
}

@keyframes gridMove {
    from { background-position: 0 0, 0 0; }
    to { background-position: 0 74px, 74px 0; }
}

@keyframes orbFloat {
    from { transform: translate3d(-30px, -10px, 0) scale(0.92); }
    to { transform: translate3d(40px, 34px, 0) scale(1.08); }
}

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

@keyframes pulse {
    70% { box-shadow: 0 0 0 12px rgba(215, 255, 72, 0); }
    100% { box-shadow: 0 0 0 0 rgba(215, 255, 72, 0); }
}

@keyframes ticker {
    to { transform: translateX(-50%); }
}

@media (max-width: 1100px) {
    .site-header {
        grid-template-columns: 1fr auto;
    }

    .site-header__meta {
        display: none;
    }

    .hero {
        grid-template-columns: 1fr;
        gap: 64px;
    }

    .entry-card {
        position: relative;
        top: auto;
        max-width: 740px;
    }

    .section-heading,
    .social-panel {
        grid-template-columns: 1fr;
    }

    .social-panel__visual {
        min-height: 360px;
        max-width: 650px;
    }

    .site-footer {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
    }
}

@media (max-width: 760px) {
    :root {
        --container: min(100% - 28px, 1460px);
        --radius-lg: 28px;
    }

    body {
        padding-bottom: 86px;
    }

    .site-header {
        min-height: 72px;
    }

    .site-header > .button {
        display: none;
    }

    .brand-lockup__event {
        font-size: 11px;
    }

    .brand-lockup__psa {
        font-size: 15px;
    }

    .hero {
        min-height: auto;
        padding: 116px 0 58px;
    }

    .hero__title {
        font-size: clamp(48px, 16.5vw, 82px);
        line-height: 0.83;
    }

    .hero__lead {
        font-size: 17px;
    }

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

    .fact {
        min-height: 74px;
    }

    .entry-card {
        padding: 24px;
        border-radius: 26px;
    }

    .ticker__track {
        min-height: 54px;
        font-size: 15px;
    }

    .stack-intro {
        min-height: 44vh;
        padding: 110px 0 60px;
    }

    .stack-intro h2,
    .section-heading h2,
    .social-panel h2,
    .final-cta h2 {
        font-size: clamp(42px, 14vw, 72px);
    }

    .story-slide {
        min-height: 100svh;
    }

    .story-slide__content {
        padding: 110px 0 80px;
    }

    .story-slide h2 {
        font-size: clamp(66px, 22vw, 120px);
    }

    .story-slide p {
        margin-top: 38px;
        font-size: 18px;
    }

    .section {
        padding: 100px 0;
    }

    .section-heading {
        gap: 24px;
        margin-bottom: 38px;
    }

    .prize-grid,
    .proof-grid {
        grid-template-columns: 1fr;
    }

    .prize-card {
        min-height: 350px;
        padding: 26px;
    }

    .social-panel {
        min-height: 0;
        padding: 28px;
        gap: 35px;
    }

    .social-panel__visual {
        min-height: 290px;
    }

    .social-card--one {
        width: 180px;
        height: 180px;
        font-size: 78px;
    }

    .social-card--two {
        width: 130px;
        height: 130px;
        font-size: 58px;
    }

    .social-card--three {
        width: 190px;
        height: 110px;
        font-size: 30px;
    }

    .share-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .share-actions .button,
    .share-actions .text-link {
        width: 100%;
        text-align: center;
    }

    .proof-grid article {
        min-height: 170px;
    }

    .final-cta__inner {
        min-height: 520px;
        padding: 34px 26px;
    }

    .mobile-cta {
        display: flex;
    }

    .success-drawer {
        inset: auto 10px 10px;
        width: auto;
        max-height: calc(100svh - 20px);
        padding: 34px 24px 28px;
        transform: translateY(calc(100% + 30px));
    }

    .success-drawer.is-open {
        transform: translateY(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .cursor-glow {
        display: none;
    }
}

.legal-page {
    width: min(900px, calc(100vw - 32px));
    margin: 0 auto;
    padding: 80px 0 120px;
}

.legal-page h1 {
    margin: 42px 0 30px;
    font-size: clamp(48px, 9vw, 100px);
    line-height: 0.9;
    letter-spacing: -0.07em;
}

.legal-page h2 {
    margin: 48px 0 12px;
    font-size: clamp(24px, 4vw, 38px);
    letter-spacing: -0.035em;
}

.legal-page p {
    color: var(--muted);
    font-size: 17px;
}

.legal-notice {
    padding: 22px;
    border: 1px solid rgba(255, 191, 56, 0.38);
    border-radius: 18px;
    color: #ffe9b7;
    background: rgba(255, 191, 56, 0.08);
}

/* ========================================================================== 
   v0.2 — ARBEITSSCHUTZ AKTUELL × PSA.PAGE® brand fusion
   Official fair: cyan #309CB5 / pink #E74187
   PSA.PAGE®: dark blue #1B3664 / green #69B42D
   ========================================================================== */
:root {
    --as-cyan: #309CB5;
    --as-pink: #E74187;
    --psa-blue: #1B3664;
    --psa-blue-deep: #07172d;
    --psa-green: #69B42D;
    --bg: #061426;
    --bg-soft: #0b203a;
    --surface: rgba(10, 31, 56, 0.82);
    --surface-solid: #102a49;
    --text: #f8fbff;
    --muted: #aebed0;
    --line: rgba(186, 215, 237, 0.16);
    --cyan: var(--as-cyan);
    --pink: var(--as-pink);
    --red: var(--psa-blue);
    --lime: var(--psa-green);
    --amber: #b8de3e;
    --shadow: 0 32px 100px rgba(0, 8, 24, 0.54);
}

html,
body {
    background-color: var(--bg);
}

body {
    background:
        radial-gradient(circle at 9% 8%, rgba(48, 156, 181, 0.19), transparent 28%),
        radial-gradient(circle at 94% 15%, rgba(231, 65, 135, 0.14), transparent 25%),
        radial-gradient(circle at 72% 86%, rgba(105, 180, 45, 0.10), transparent 27%),
        linear-gradient(180deg, #061426 0%, #081a31 52%, #061426 100%);
}

body::selection {
    background: var(--as-pink);
    color: #fff;
}

.cursor-glow {
    background: radial-gradient(circle, rgba(105, 180, 45, 0.15), rgba(48, 156, 181, 0.09) 38%, transparent 70%);
}

.site-header {
    min-height: 92px;
    border-bottom-color: rgba(168, 207, 233, 0.18);
    background: linear-gradient(180deg, rgba(6, 20, 38, 0.88), rgba(6, 20, 38, 0.48));
    backdrop-filter: blur(24px) saturate(135%);
}

.brand-lockup--logos {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 7px 10px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 12px 32px rgba(0, 10, 28, 0.22);
}

.brand-lockup--logos img:first-child {
    width: clamp(122px, 10.5vw, 172px);
    height: auto;
}

.brand-lockup--logos img:last-child {
    width: clamp(92px, 7.5vw, 128px);
    height: auto;
}

.brand-lockup--logos .brand-lockup__cross {
    color: var(--psa-blue);
    font-size: 17px;
    font-weight: 900;
}

.site-footer .brand-lockup--logos {
    padding: 6px 9px;
}

.site-header__meta {
    color: #bdd0e1;
}

.button:focus-visible,
.text-link:focus-visible,
input:focus-visible,
select:focus-visible,
summary:focus-visible {
    outline-color: var(--as-pink);
}

.button--primary {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.12);
    background:
        linear-gradient(110deg, var(--as-cyan) 0%, #2489ad 32%, var(--as-pink) 66%, #c93177 100%);
    box-shadow:
        0 20px 58px rgba(48, 156, 181, 0.22),
        0 13px 34px rgba(231, 65, 135, 0.18);
}

.button--primary::before {
    background: rgba(255, 255, 255, 0.62);
}

.button--primary:hover {
    box-shadow:
        0 24px 70px rgba(48, 156, 181, 0.28),
        0 16px 44px rgba(231, 65, 135, 0.25);
}

.button--mini {
    border-color: rgba(105, 180, 45, 0.48);
    background: linear-gradient(135deg, rgba(105, 180, 45, 0.18), rgba(48, 156, 181, 0.12));
}

.hero {
    padding-top: 170px;
}

.hero__orb--one {
    background: rgba(48, 156, 181, 0.22);
}

.hero__orb--two {
    background: rgba(231, 65, 135, 0.18);
}

.hero__orb--three {
    width: 340px;
    height: 340px;
    top: 36%;
    right: -7%;
    background: rgba(105, 180, 45, 0.15);
    animation-delay: -5s;
}

.hero__mark {
    position: absolute;
    z-index: -1;
    right: -0.07em;
    bottom: -0.18em;
    color: rgba(255, 255, 255, 0.026);
    font-size: clamp(360px, 44vw, 760px);
    font-weight: 950;
    line-height: 0.78;
    letter-spacing: -0.12em;
}

.hero__partnerline {
    display: none;
    width: fit-content;
    align-items: center;
    gap: 12px;
    margin-bottom: 26px;
    padding: 8px 11px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 16px 50px rgba(0, 8, 24, 0.25);
}

.hero__partnerline img:first-child {
    width: 155px;
    height: auto;
}

.hero__partnerline img:last-child {
    width: 112px;
    height: auto;
}

.hero__partnerline > span {
    color: var(--psa-blue);
    font-weight: 950;
}

.eyebrow span {
    background: linear-gradient(90deg, var(--as-cyan), var(--as-pink), transparent);
}

.hero__title {
    text-wrap: balance;
    text-shadow: 0 8px 60px rgba(0, 8, 24, 0.28);
}

.hero__line--accent {
    background: linear-gradient(90deg, var(--psa-green) 0%, #98cf42 25%, var(--as-cyan) 52%, var(--as-pink) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    text-shadow: 0 0 46px rgba(48, 156, 181, 0.13);
}

.fact {
    background: rgba(5, 18, 35, 0.84);
}

.fact strong {
    color: #fff;
}

.fact:nth-child(1) strong { color: var(--as-cyan); }
.fact:nth-child(2) strong { color: var(--psa-green); }
.fact:nth-child(3) strong { color: var(--as-pink); }

.entry-card {
    border-color: rgba(125, 191, 224, 0.26);
    background:
        radial-gradient(circle at 100% 0%, rgba(231, 65, 135, 0.12), transparent 35%),
        radial-gradient(circle at 0% 100%, rgba(105, 180, 45, 0.10), transparent 36%),
        linear-gradient(150deg, rgba(18, 51, 84, 0.93), rgba(6, 22, 43, 0.94));
}

.entry-card::before {
    background: linear-gradient(140deg, rgba(48, 156, 181, 0.88), transparent 28%, transparent 68%, rgba(231, 65, 135, 0.72) 84%, rgba(105, 180, 45, 0.72));
}

.entry-card__glow {
    background: rgba(48, 156, 181, 0.19);
}

.entry-card__topline .countdown {
    color: var(--psa-green);
}

.live-dot {
    background: var(--psa-green);
    box-shadow: 0 0 0 0 rgba(105, 180, 45, 0.5);
}

.field input,
.field select {
    border-color: rgba(164, 202, 227, 0.18);
    background: rgba(2, 13, 29, 0.58);
}

.field input:focus,
.field select:focus {
    border-color: rgba(48, 156, 181, 0.82);
    background: rgba(2, 13, 29, 0.9);
    box-shadow: 0 0 0 4px rgba(48, 156, 181, 0.12);
}

.check input {
    accent-color: var(--as-cyan);
}

.form-message.is-success {
    color: #e9ffd8;
    background: rgba(105, 180, 45, 0.12);
    border-color: rgba(105, 180, 45, 0.34);
}

.ticker {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.24);
    background:
        linear-gradient(90deg, var(--psa-blue) 0 18%, var(--as-cyan) 18% 43%, var(--as-pink) 43% 69%, var(--psa-green) 69% 100%);
    box-shadow: 0 16px 60px rgba(0, 12, 32, 0.38);
}

.ticker__track i {
    color: rgba(255, 255, 255, 0.74);
}

.stack-intro__copy {
    max-width: 750px;
    margin: 28px 0 0;
    color: var(--muted);
    font-size: clamp(18px, 1.7vw, 25px);
}

.story-slide--cyan {
    background:
        radial-gradient(circle at 82% 20%, rgba(48, 156, 181, 0.52), transparent 31%),
        radial-gradient(circle at 12% 82%, rgba(27, 54, 100, 0.58), transparent 34%),
        linear-gradient(135deg, #061426, #0b3851 58%, #08192c);
}

.story-slide--pink {
    background:
        radial-gradient(circle at 20% 25%, rgba(231, 65, 135, 0.47), transparent 29%),
        radial-gradient(circle at 88% 78%, rgba(48, 156, 181, 0.19), transparent 30%),
        linear-gradient(135deg, #17091b, #4a1532 58%, #11172b);
}

.story-slide--green {
    background:
        radial-gradient(circle at 76% 24%, rgba(105, 180, 45, 0.42), transparent 30%),
        radial-gradient(circle at 18% 80%, rgba(48, 156, 181, 0.24), transparent 32%),
        linear-gradient(135deg, #07172d, #173e35 58%, #07172d);
}

.story-slide__micro {
    display: inline-flex;
    width: fit-content;
    margin: 0 0 18px 24px;
    padding: 8px 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.86);
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(14px);
    font-size: 11px;
    font-weight: 850;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.story-slide h2 {
    text-shadow: 0 18px 90px rgba(0, 0, 0, 0.28);
}

.prize-grid--packages {
    align-items: stretch;
}

.prize-card--package {
    min-height: 770px;
    padding: clamp(28px, 3vw, 48px);
    background:
        radial-gradient(circle at 92% 7%, rgba(48, 156, 181, 0.18), transparent 30%),
        linear-gradient(145deg, rgba(20, 55, 91, 0.92), rgba(7, 24, 46, 0.95));
}

.prize-card--package::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    border-radius: inherit;
    background: linear-gradient(130deg, rgba(255, 255, 255, 0.09), transparent 22%, transparent 73%, rgba(105, 180, 45, 0.06));
}

.prize-card--pink {
    background:
        radial-gradient(circle at 92% 7%, rgba(231, 65, 135, 0.24), transparent 30%),
        linear-gradient(145deg, rgba(55, 25, 61, 0.94), rgba(8, 24, 46, 0.96));
}

.prize-card--cyan:hover {
    border-color: rgba(48, 156, 181, 0.66);
    box-shadow: 0 30px 90px rgba(48, 156, 181, 0.15);
}

.prize-card--pink:hover {
    border-color: rgba(231, 65, 135, 0.62);
    box-shadow: 0 30px 90px rgba(231, 65, 135, 0.14);
}

.prize-card__top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    min-height: 72px;
}

.prize-card__badge {
    margin-top: 0;
    border-color: rgba(48, 156, 181, 0.42);
    color: #dff7ff;
    background: rgba(48, 156, 181, 0.13);
}

.prize-card--pink .prize-card__badge {
    border-color: rgba(231, 65, 135, 0.45);
    color: #ffe4f0;
    background: rgba(231, 65, 135, 0.13);
}

.prize-card__index {
    position: relative;
    top: auto;
    right: auto;
    color: rgba(255, 255, 255, 0.1);
    font-size: clamp(74px, 8vw, 126px);
}

.prize-card__provider {
    margin-top: 12px;
    color: #dce8f2;
}

.prize-card__kicker {
    margin-top: 28px !important;
    color: var(--as-cyan) !important;
    font-size: 12px !important;
    font-weight: 900;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.prize-card--pink .prize-card__kicker {
    color: var(--as-pink) !important;
}

.prize-card__lead {
    font-size: 17px !important;
    line-height: 1.65;
}

.prize-card__features {
    position: relative;
    z-index: 1;
    margin: 30px 0 38px;
    padding: 0;
    display: grid;
    gap: 13px;
    list-style: none;
}

.prize-card__features li {
    display: grid;
    grid-template-columns: 24px 1fr;
    gap: 10px;
    color: #e5edf4;
    line-height: 1.45;
}

.prize-card__features li span {
    width: 22px;
    height: 22px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: var(--as-cyan);
    font-size: 12px;
    font-weight: 950;
}

.prize-card--pink .prize-card__features li span {
    background: var(--as-pink);
}

.prize-card__footer a {
    color: #fff;
    text-decoration: none;
}

.campaign-power {
    border-top: 1px solid var(--line);
}

.campaign-power__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.campaign-power__grid article {
    position: relative;
    min-height: 350px;
    padding: 36px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background:
        radial-gradient(circle at 85% 10%, rgba(48, 156, 181, 0.16), transparent 32%),
        rgba(10, 31, 56, 0.74);
    overflow: hidden;
}

.campaign-power__grid article:nth-child(2) {
    background:
        radial-gradient(circle at 85% 10%, rgba(105, 180, 45, 0.18), transparent 32%),
        rgba(10, 31, 56, 0.74);
}

.campaign-power__grid article:nth-child(3) {
    background:
        radial-gradient(circle at 85% 10%, rgba(231, 65, 135, 0.17), transparent 32%),
        rgba(10, 31, 56, 0.74);
}

.campaign-power__grid article > span {
    position: absolute;
    top: 15px;
    right: 24px;
    color: rgba(255, 255, 255, 0.07);
    font-size: 100px;
    font-weight: 950;
    line-height: 1;
}

.campaign-power__grid h3 {
    position: relative;
    z-index: 1;
    margin: 0;
    font-size: clamp(27px, 2.8vw, 44px);
    line-height: 1;
    letter-spacing: -0.05em;
}

.campaign-power__grid p {
    position: relative;
    z-index: 1;
    margin: 19px 0 0;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.65;
}

.social-panel {
    background:
        radial-gradient(circle at 14% 18%, rgba(10, 102, 194, 0.38), transparent 31%),
        radial-gradient(circle at 92% 78%, rgba(231, 65, 135, 0.20), transparent 29%),
        radial-gradient(circle at 45% 95%, rgba(105, 180, 45, 0.10), transparent 30%),
        #08192e;
}

.social-card--two {
    color: #fff;
    background: linear-gradient(145deg, var(--psa-green), #4d9424);
}

.social-card--three {
    border-color: rgba(231, 65, 135, 0.35);
    background: rgba(231, 65, 135, 0.17);
}

.share-preview {
    position: absolute;
    z-index: 5;
    left: 14%;
    bottom: 0;
    width: min(420px, 88%);
    margin: 0;
    padding: 22px 24px;
    border: 1px solid rgba(255, 255, 255, 0.19);
    border-radius: 22px;
    background: rgba(5, 18, 35, 0.84);
    backdrop-filter: blur(22px);
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.36);
    transform: rotate(1.7deg);
}

.share-preview > span {
    color: var(--as-cyan);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.share-preview p {
    margin: 11px 0 15px;
    color: #edf5fb;
    font-size: 13px;
    line-height: 1.55;
}

.share-preview strong {
    color: var(--psa-green);
    font-size: 12px;
}

.visitor-campaign {
    position: relative;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: clamp(50px, 8vw, 130px);
    align-items: center;
    min-height: 720px;
    padding-inline: clamp(30px, 5vw, 80px);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background:
        radial-gradient(circle at 90% 18%, rgba(105, 180, 45, 0.24), transparent 29%),
        radial-gradient(circle at 8% 85%, rgba(231, 65, 135, 0.16), transparent 30%),
        linear-gradient(135deg, #0a2340, #07172d 64%);
    overflow: hidden;
}

.visitor-campaign__glow {
    position: absolute;
    width: 420px;
    height: 420px;
    right: -130px;
    bottom: -150px;
    border-radius: 50%;
    background: rgba(48, 156, 181, 0.16);
    filter: blur(45px);
}

.visitor-campaign h2 {
    margin: 0;
    font-size: clamp(60px, 8vw, 128px);
    line-height: 0.83;
    letter-spacing: -0.075em;
}

.visitor-campaign > div:first-of-type > p:last-child {
    max-width: 730px;
    margin-top: 28px;
    color: var(--muted);
    font-size: clamp(18px, 1.7vw, 24px);
    line-height: 1.55;
}

.ticket-stack {
    position: relative;
    min-height: 440px;
}

.ticket {
    position: absolute;
    width: min(440px, 92%);
    min-height: 245px;
    padding: 34px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 28px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.ticket::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 68px;
    border-right: 2px dashed rgba(255, 255, 255, 0.3);
}

.ticket--front {
    z-index: 2;
    top: 30px;
    left: 0;
    color: #fff;
    background: linear-gradient(130deg, var(--as-cyan), #247c9c 58%, var(--psa-blue));
    transform: rotate(-5deg);
}

.ticket--back {
    right: 0;
    bottom: 18px;
    color: #fff;
    background: linear-gradient(130deg, var(--as-pink), #b92e6d 55%, var(--psa-green));
    transform: rotate(6deg);
}

.ticket span {
    color: rgba(255, 255, 255, 0.78);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.14em;
}

.ticket strong {
    max-width: calc(100% - 56px);
    margin: 16px 0 7px;
    font-size: clamp(30px, 4vw, 58px);
    line-height: 0.93;
    letter-spacing: -0.06em;
    overflow-wrap: anywhere;
}

.ticket small {
    color: rgba(255, 255, 255, 0.78);
}

.proof-grid--copy article:nth-child(1) strong { color: var(--as-cyan); }
.proof-grid--copy article:nth-child(2) strong { color: var(--psa-green); }
.proof-grid--copy article:nth-child(3) strong { color: var(--as-pink); }

.topic-pills span:nth-child(4n + 1) { border-color: rgba(48, 156, 181, 0.38); }
.topic-pills span:nth-child(4n + 2) { border-color: rgba(105, 180, 45, 0.38); }
.topic-pills span:nth-child(4n + 3) { border-color: rgba(231, 65, 135, 0.38); }
.topic-pills span:nth-child(4n + 4) { border-color: rgba(48, 156, 181, 0.38); }

.faq-list summary span {
    color: var(--as-pink);
}

.final-cta__inner {
    background:
        radial-gradient(circle at 85% 22%, rgba(105, 180, 45, 0.25), transparent 27%),
        radial-gradient(circle at 18% 82%, rgba(231, 65, 135, 0.24), transparent 29%),
        radial-gradient(circle at 70% 90%, rgba(48, 156, 181, 0.17), transparent 32%),
        linear-gradient(135deg, #0b2d49, #16142d);
}

.success-drawer {
    background:
        radial-gradient(circle at 70% 12%, rgba(105, 180, 45, 0.22), transparent 26%),
        radial-gradient(circle at 10% 90%, rgba(48, 156, 181, 0.15), transparent 27%),
        #081b32;
}

.mobile-cta {
    color: #fff;
    background: linear-gradient(100deg, var(--as-cyan), var(--as-pink));
    box-shadow: 0 -10px 35px rgba(0, 8, 24, 0.35);
}

.legal-notice {
    border-color: rgba(231, 65, 135, 0.42);
    color: #ffe6f1;
    background: rgba(231, 65, 135, 0.09);
}

@media (max-width: 1120px) {
    .campaign-power__grid {
        grid-template-columns: 1fr;
    }

    .campaign-power__grid article {
        min-height: 260px;
    }

    .visitor-campaign {
        grid-template-columns: 1fr;
        padding-top: 90px;
        padding-bottom: 90px;
    }

    .ticket-stack {
        width: min(620px, 100%);
        margin: 0 auto;
    }
}

@media (max-width: 780px) {
    .site-header .brand-lockup--logos {
        padding: 5px 7px;
        border-radius: 10px;
    }

    .site-header .brand-lockup--logos img:first-child {
        width: 116px;
    }

    .site-header .brand-lockup--logos img:last-child {
        width: 82px;
    }

    .site-header__meta {
        display: none;
    }

    .site-header {
        grid-template-columns: 1fr;
        justify-items: start;
    }

    .hero__partnerline {
        display: inline-flex;
    }

    .hero {
        padding-top: 120px;
    }

    .story-slide__micro {
        margin-left: 0;
    }

    .prize-card--package {
        min-height: 0;
    }

    .campaign-power__grid article {
        min-height: 235px;
        padding: 28px;
    }

    .share-preview {
        left: 2%;
        width: 96%;
    }

    .visitor-campaign {
        min-height: 0;
        padding: 80px 24px;
    }

    .ticket-stack {
        min-height: 390px;
    }

    .ticket {
        min-height: 215px;
        padding: 26px;
    }

    .ticket--front {
        top: 10px;
    }

    .ticket--back {
        bottom: 4px;
    }

    .site-footer .brand-lockup--logos {
        justify-self: start;
    }
}

.form-message.is-error {
    color: #ffe5f0;
    background: rgba(231, 65, 135, 0.12);
    border-color: rgba(231, 65, 135, 0.38);
}

.legal-page ul {
    margin: 18px 0 0;
    padding-left: 23px;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.65;
}

.legal-page li + li {
    margin-top: 7px;
}

.legal-page strong {
    color: #fff;
}
