:root {
    color-scheme: dark;
    --add-bg: #03070d;
    --add-bg-soft: #07101a;
    --add-surface: rgba(5, 16, 27, 0.68);
    --add-surface-strong: rgba(7, 19, 30, 0.92);
    --add-ink: #edf8fc;
    --add-muted: rgba(203, 223, 233, 0.66);
    --add-dim: rgba(189, 216, 229, 0.46);
    --add-steel: #8fb7c6;
    --add-steel-bright: #c8dfe6;
    --add-cyan: #51d7fb;
    --add-blue: #168cff;
    --add-line: rgba(75, 189, 229, 0.3);
    --add-line-soft: rgba(88, 199, 235, 0.13);
    --add-danger: #ff8992;
    --add-light: #edf5f8;
    --add-light-ink: #153246;
    --add-display: Inter, "Helvetica Neue", Helvetica, Arial, sans-serif;
    --add-sans: Inter, "Helvetica Neue", Helvetica, Arial, sans-serif;
    --add-mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

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

body.add-page,
body.add-page * {
    box-sizing: border-box;
}

body.add-page {
    position: relative;
    min-width: 0;
    margin: 0;
    overflow-x: hidden;
    color: var(--add-ink);
    background: var(--add-bg);
    font-family: var(--add-sans);
    font-size: 16px;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    text-rendering: geometricPrecision;
}

body.add-page > main,
body.add-page > .add-footer {
    position: relative;
    z-index: 1;
}

body.add-page::selection {
    color: #04101a;
    background: var(--add-cyan);
}

body.add-page a {
    color: inherit;
}

body.add-page button,
body.add-page input,
body.add-page textarea {
    font: inherit;
}

.add-brand:focus-visible,
.add-nav a:focus-visible,
.add-menu summary:focus-visible,
.add-menu nav a:focus-visible {
    outline: 2px solid var(--add-cyan);
    outline-offset: 5px;
}

.add-footer nav a:focus-visible {
    outline: 2px solid #0b5278;
    outline-offset: 5px;
}

.add-skip-link {
    position: fixed;
    z-index: 1000;
    top: 12px;
    left: 12px;
    padding: 10px 14px;
    color: #06111a !important;
    border-radius: 8px;
    background: var(--add-cyan);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.36);
    font-family: var(--add-mono);
    font-size: 11px;
    letter-spacing: 0.08em;
    text-decoration: none;
    text-transform: uppercase;
    transform: translateY(-170%);
    transition: transform 180ms ease;
}

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

.add-backdrop {
    position: fixed;
    z-index: 0;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    background:
        radial-gradient(circle at 78% 26%, rgba(0, 146, 214, 0.24), transparent 31%),
        radial-gradient(circle at 14% 76%, rgba(32, 85, 157, 0.18), transparent 35%),
        linear-gradient(146deg, #090e16 0%, #07101a 47%, #03070d 100%);
}

.add-backdrop__video {
    position: absolute;
    inset: -3%;
    width: 106%;
    height: 106%;
    opacity: 0.075;
    object-fit: cover;
    object-position: center 35%;
    filter: grayscale(1) contrast(1.12) brightness(0.42);
    transform: scale(1.025);
}

.add-backdrop__veil {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(3, 7, 13, 0.94) 0%, rgba(3, 8, 14, 0.63) 48%, rgba(3, 7, 13, 0.86) 100%),
        linear-gradient(180deg, rgba(3, 7, 13, 0.08), rgba(3, 7, 13, 0.92) 92%);
}

.add-backdrop__grid {
    position: absolute;
    inset: 0;
    opacity: 0.58;
    background-image:
        linear-gradient(rgba(84, 190, 231, 0.075) 1px, transparent 1px),
        linear-gradient(90deg, rgba(84, 190, 231, 0.075) 1px, transparent 1px),
        repeating-linear-gradient(135deg, transparent 0 34px, rgba(133, 220, 247, 0.026) 34px 35px);
    background-size: 44px 44px, 44px 44px, auto;
    -webkit-mask-image: linear-gradient(180deg, transparent 0, #000 10%, #000 90%, transparent 100%);
    mask-image: linear-gradient(180deg, transparent 0, #000 10%, #000 90%, transparent 100%);
}

.add-backdrop__glow {
    position: absolute;
    width: min(620px, 42vw);
    aspect-ratio: 1;
    border-radius: 50%;
    opacity: 0.14;
    filter: blur(94px);
    transition: transform 800ms cubic-bezier(0.2, 0.7, 0, 1);
}

.add-backdrop__glow--pink {
    top: -24vw;
    right: -8vw;
    background: #18b9de;
}

.add-backdrop__glow--green {
    bottom: -28vw;
    left: -18vw;
    background: #315ca8;
}

.add-header {
    position: absolute;
    z-index: 20;
    top: 0;
    left: 50%;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    width: min(100% - 64px, 1600px);
    min-height: 92px;
    border-bottom: 1px solid rgba(88, 199, 235, 0.18);
    transform: translateX(-50%);
}

.add-header::before {
    position: fixed;
    z-index: -1;
    top: 0;
    left: 50%;
    width: 100vw;
    height: 112px;
    background: linear-gradient(180deg, rgba(4, 8, 14, 0.88), rgba(5, 10, 17, 0));
    content: "";
    pointer-events: none;
    transform: translateX(-50%);
}

.add-brand {
    display: inline-flex;
    align-items: center;
    justify-self: start;
    line-height: 0;
    text-decoration: none;
}

.add-brand__image {
    display: block;
    width: clamp(170px, 12.5vw, 200px);
    height: auto;
}

.add-nav {
    display: flex;
    align-items: center;
    gap: clamp(18px, 2.1vw, 34px);
}

.add-nav a {
    position: relative;
    padding: 8px 0;
    color: rgba(213, 230, 240, 0.64);
    font-size: 12px;
    text-decoration: none;
    transition: color 260ms ease;
}

.add-nav a::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 1px;
    background: var(--add-cyan);
    content: "";
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 320ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

.add-nav a:hover,
.add-nav a:focus-visible,
.add-nav .add-nav__current {
    color: #f1fbff;
}

.add-nav a:hover::after,
.add-nav a:focus-visible::after,
.add-nav .add-nav__current::after {
    transform: scaleX(1);
    transform-origin: left;
}

.add-header::after {
    justify-self: end;
    color: rgba(193, 216, 229, 0.52);
    font-family: var(--add-mono);
    font-size: 9px;
    line-height: 1.55;
    letter-spacing: 0.12em;
    text-align: right;
    text-transform: uppercase;
    white-space: pre;
    content: "Digital culture / TEXT007\A Moscow · online";
}

.add-menu {
    display: none;
}

.add-hero {
    position: relative;
    display: grid;
    grid-template-columns: minmax(300px, 0.37fr) minmax(580px, 0.63fr);
    gap: clamp(42px, 6vw, 96px);
    align-items: center;
    width: min(100% - 64px, 1600px);
    min-height: 100svh;
    margin: 0 auto;
    padding: 132px 0 72px;
    isolation: isolate;
}

.add-hero::before {
    position: absolute;
    z-index: -1;
    right: -0.02em;
    bottom: -0.08em;
    color: transparent;
    -webkit-text-stroke: 1px rgba(148, 221, 245, 0.07);
    font-family: var(--add-display);
    font-size: min(38vw, 610px);
    font-weight: 500;
    line-height: 0.8;
    letter-spacing: -0.12em;
    content: "01";
    pointer-events: none;
}

.add-hero::after {
    position: absolute;
    z-index: -1;
    top: 22%;
    left: 38%;
    width: 1px;
    height: 58%;
    opacity: 0.38;
    background: linear-gradient(180deg, transparent, rgba(81, 215, 251, 0.58) 34%, rgba(81, 215, 251, 0.13) 76%, transparent);
    box-shadow: 0 0 14px rgba(53, 191, 234, 0.18);
    content: "";
    pointer-events: none;
}

.add-intro {
    min-width: 0;
    align-self: center;
}

.add-intro__eyebrow {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    max-width: 560px;
    margin-bottom: clamp(28px, 5vh, 54px);
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(88, 199, 235, 0.2);
    color: var(--add-steel);
    font-family: var(--add-mono);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.add-live {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(203, 231, 240, 0.72);
    white-space: nowrap;
}

.add-live i {
    width: 5px;
    height: 5px;
    flex: 0 0 5px;
    border-radius: 50%;
    background: var(--add-cyan);
    box-shadow: 0 0 8px rgba(81, 215, 251, 0.68);
    animation: addPulse 2.6s ease-in-out infinite;
}

@keyframes addPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(81, 215, 251, 0.38), 0 0 8px rgba(81, 215, 251, 0.68); }
    50% { box-shadow: 0 0 0 7px rgba(81, 215, 251, 0), 0 0 14px rgba(81, 215, 251, 0.88); }
}

.add-intro__title {
    max-width: 760px;
    margin: 0;
    font-family: var(--add-display);
    font-size: clamp(54px, 5.4vw, 86px);
    font-weight: 500;
    line-height: 0.92;
    letter-spacing: -0.065em;
}

.add-intro__title span,
.add-intro__title em {
    display: block;
}

.add-intro__title em {
    color: var(--add-steel-bright);
    background: linear-gradient(108deg, #799baa 0%, #c6dbe2 48%, #8eb6c5 100%);
    background-size: 180% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    font-style: normal;
    font-weight: 500;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 7px 24px rgba(92, 143, 162, 0.1));
    animation: addTitleFlow 8s ease-in-out infinite alternate;
}

@keyframes addTitleFlow {
    to { background-position: 100% 0; }
}

.add-intro__lead {
    max-width: 520px;
    margin: clamp(28px, 4.8vh, 52px) 0 0;
    color: var(--add-muted);
    font-size: clamp(15px, 1.15vw, 18px);
    line-height: 1.68;
}

.add-intro__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    max-width: 560px;
    margin-top: 28px;
    border-block: 1px solid rgba(88, 199, 235, 0.14);
}

.add-intro__meta span {
    position: relative;
    flex: 1 1 auto;
    padding: 11px 14px 11px 17px;
    color: rgba(193, 216, 229, 0.54);
    font-family: var(--add-mono);
    font-size: 9px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.add-intro__meta span + span {
    border-left: 1px solid rgba(88, 199, 235, 0.14);
}

.add-intro__meta span::before {
    position: absolute;
    top: 50%;
    left: 7px;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: var(--add-cyan);
    content: "";
    transform: translateY(-50%);
}

.add-submission {
    position: relative;
    width: 100%;
    max-width: 820px;
    justify-self: end;
    padding: 26px 20px 20px 0;
}

.add-card {
    position: relative;
    z-index: 2;
    overflow: hidden;
    color: var(--add-ink);
    border: 1px solid rgba(80, 202, 244, 0.4);
    border-radius: clamp(22px, 2.2vw, 32px);
    background: rgba(5, 16, 27, 0.72);
    box-shadow:
        inset 0 1px rgba(255, 255, 255, 0.055),
        0 30px 78px rgba(0, 0, 0, 0.34),
        0 0 52px rgba(0, 132, 199, 0.07);
    -webkit-backdrop-filter: blur(18px) saturate(118%);
    backdrop-filter: blur(18px) saturate(118%);
    isolation: isolate;
    transition: border-color 420ms ease, box-shadow 550ms ease, transform 550ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

.add-card:hover,
.add-card:focus-within {
    border-color: rgba(97, 224, 255, 0.66);
    box-shadow:
        inset 0 1px rgba(255, 255, 255, 0.09),
        0 36px 88px rgba(0, 0, 0, 0.42),
        0 0 42px rgba(34, 188, 229, 0.12);
}

.add-card:hover {
    transform: translateY(-4px);
}

.add-card::before {
    position: absolute;
    z-index: -2;
    inset: 0;
    opacity: 0.32;
    background:
        linear-gradient(rgba(88, 211, 242, 0.14) 1px, transparent 1px),
        linear-gradient(90deg, rgba(88, 211, 242, 0.14) 1px, transparent 1px);
    background-size: 34px 34px;
    -webkit-mask-image: radial-gradient(circle at 88% 12%, #000 0 9%, transparent 48%);
    mask-image: radial-gradient(circle at 88% 12%, #000 0 9%, transparent 48%);
    content: "";
    pointer-events: none;
}

.add-card::after {
    position: absolute;
    z-index: -1;
    top: 0;
    left: -28%;
    width: 26%;
    height: 1px;
    opacity: 0.9;
    background: radial-gradient(ellipse at center, #effeff, rgba(51, 193, 236, 0.54) 38%, transparent 74%);
    box-shadow: 0 0 15px rgba(53, 191, 234, 0.52);
    content: "";
    pointer-events: none;
    animation: addCardSweep 7s linear infinite;
}

@keyframes addCardSweep {
    to { left: 108%; }
}

.add-card__header {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 58px;
    padding: 0 30px;
    border-bottom: 1px solid rgba(88, 199, 235, 0.15);
    color: rgba(189, 216, 229, 0.58);
    font-family: var(--add-mono);
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.add-card__header span:last-child {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(193, 216, 229, 0.5);
}

.add-card__header span:last-child::before {
    width: 5px;
    height: 5px;
    flex: 0 0 5px;
    border-radius: 50%;
    background: var(--add-cyan);
    box-shadow: 0 0 8px rgba(81, 215, 251, 0.62);
    content: "";
}

.add-notice {
    position: relative;
    z-index: 1;
    display: flex;
    gap: 13px;
    align-items: center;
    margin: 20px 30px 0;
    padding: 14px 16px;
    border: 1px solid rgba(77, 203, 239, 0.3);
    border-radius: 12px;
    color: rgba(224, 240, 247, 0.82);
    background: rgba(7, 19, 30, 0.72);
    font-size: 13px;
    line-height: 1.4;
}

.add-notice p {
    margin: 0;
    overflow-wrap: anywhere;
}

.add-notice--attention {
    border-color: rgba(81, 215, 251, 0.34);
    background: rgba(17, 60, 79, 0.44);
}

.add-notice__icon {
    display: grid;
    flex: 0 0 auto;
    width: 28px;
    height: 28px;
    place-items: center;
    border: 1px solid rgba(95, 224, 255, 0.5);
    border-radius: 50%;
    color: var(--add-cyan);
    background: rgba(5, 14, 23, 0.62);
    font-family: var(--add-mono);
    font-size: 11px;
}

.add-card--success {
    min-height: 654px;
    border-color: rgba(92, 224, 242, 0.58);
    background:
        radial-gradient(circle at 18% 32%, rgba(21, 154, 189, 0.19), transparent 36%),
        radial-gradient(circle at 88% 82%, rgba(49, 92, 168, 0.14), transparent 34%),
        rgba(5, 16, 27, 0.8);
    box-shadow:
        inset 0 1px rgba(255, 255, 255, 0.07),
        0 36px 92px rgba(0, 0, 0, 0.42),
        0 0 62px rgba(22, 174, 216, 0.1);
}

.add-card--success .add-card__header {
    border-bottom-color: rgba(88, 211, 242, 0.24);
}

.add-success {
    position: relative;
    z-index: 1;
    display: flex;
    min-height: 594px;
    padding: clamp(44px, 5vw, 64px);
    overflow: hidden;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    scroll-margin-top: 24px;
}

.add-success:focus-visible {
    outline: 2px solid var(--add-cyan);
    outline-offset: -10px;
    border-radius: 24px;
}

.add-success::before {
    position: absolute;
    z-index: -1;
    right: -0.12em;
    bottom: -0.25em;
    color: transparent;
    -webkit-text-stroke: 1px rgba(110, 218, 242, 0.09);
    font-family: var(--add-display);
    font-size: clamp(190px, 26vw, 370px);
    font-weight: 500;
    line-height: 0.72;
    letter-spacing: -0.1em;
    content: "200";
    pointer-events: none;
}

.add-success__signal {
    position: relative;
    display: grid;
    width: clamp(104px, 9vw, 132px);
    aspect-ratio: 1;
    margin-bottom: clamp(30px, 4vw, 44px);
    place-items: center;
    border: 1px solid rgba(95, 224, 255, 0.62);
    border-radius: 50%;
    color: #90eaff;
    background: rgba(7, 31, 43, 0.64);
    box-shadow:
        inset 0 0 34px rgba(81, 215, 251, 0.08),
        0 0 48px rgba(42, 193, 226, 0.14);
}

.add-success__signal::before,
.add-success__signal::after {
    position: absolute;
    border: 1px solid rgba(81, 215, 251, 0.22);
    border-radius: inherit;
    content: "";
    pointer-events: none;
}

.add-success__signal::before {
    inset: 9px;
}

.add-success__signal::after {
    inset: -10px;
    animation: addSuccessRing 2.8s ease-in-out infinite;
}

.add-success__signal svg {
    width: 66%;
    height: 66%;
    overflow: visible;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2.25;
}

.add-success__signal circle {
    opacity: 0.22;
    stroke-width: 1;
}

@keyframes addSuccessRing {
    0%, 100% {
        opacity: 0.35;
        transform: scale(0.96);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}

.add-success__kicker {
    margin: 0 0 18px;
    color: var(--add-cyan);
    font-family: var(--add-mono);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.add-success__message {
    max-width: 680px;
}

.add-success__message .result {
    min-width: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    color: #eafaff !important;
    background: transparent !important;
    font-family: var(--add-display);
    font-size: clamp(32px, 3.2vw, 48px) !important;
    font-weight: 500;
    line-height: 1.08;
    letter-spacing: -0.045em;
    text-wrap: balance;
}

.add-success__again {
    display: inline-flex;
    min-height: 44px;
    margin-top: clamp(30px, 4vw, 46px);
    padding: 10px 0 8px;
    align-items: center;
    gap: 16px;
    border-bottom: 1px solid rgba(81, 215, 251, 0.42);
    color: #a9dfec !important;
    font-family: var(--add-mono);
    font-size: 10px;
    letter-spacing: 0.11em;
    text-decoration: none;
    text-transform: uppercase;
    transition: color 240ms ease, border-color 240ms ease, gap 320ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

.add-success__again span:last-child {
    color: var(--add-cyan);
    font-size: 18px;
}

.add-success__again:hover,
.add-success__again:focus-visible {
    gap: 22px;
    color: #f1fcff !important;
    border-color: var(--add-cyan);
}

.add-success__again:focus-visible {
    outline: 2px solid var(--add-cyan);
    outline-offset: 5px;
}

.add-form {
    position: relative;
    z-index: 1;
    scroll-margin-top: 24px;
    padding: 28px 30px 30px;
}

.add-form:focus-visible {
    outline: 2px solid var(--add-cyan);
    outline-offset: -8px;
    border-radius: 20px;
}

.add-field {
    display: block;
    min-width: 0;
}

.add-field__topline,
.add-field__label {
    display: flex;
    justify-content: space-between;
    margin-bottom: 9px;
    color: rgba(189, 216, 229, 0.58);
    font-family: var(--add-mono);
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.add-field__topline b,
.add-field__label b {
    margin-right: 8px;
    color: var(--add-steel);
    font-weight: 500;
}

.add-field__count {
    color: rgba(196, 220, 231, 0.62);
    font-weight: 400;
    letter-spacing: 0.04em;
    transition: color 220ms ease;
}

.add-field__count.is-near-limit {
    color: #ffd19d;
}

.add-field textarea,
.add-field input {
    display: block;
    width: 100%;
    min-width: 0;
    border: 1px solid rgba(75, 189, 229, 0.3);
    border-radius: 11px;
    outline: 2px solid transparent;
    outline-offset: 3px;
    color: #e8f7fc;
    background: rgba(7, 19, 30, 0.72);
    box-shadow: inset 0 1px rgba(255, 255, 255, 0.045);
    caret-color: var(--add-cyan);
    appearance: none;
    -webkit-appearance: none;
    transition: outline-color 240ms ease, border-color 240ms ease, background 240ms ease, box-shadow 240ms ease;
}

.add-field textarea:hover,
.add-field input:hover {
    border-color: rgba(85, 213, 250, 0.56);
}

.add-field textarea:focus,
.add-field input:focus {
    outline-color: rgba(82, 215, 251, 0.34);
    border-color: var(--add-cyan);
    background: rgba(9, 25, 39, 0.94);
    box-shadow:
        0 0 0 5px rgba(35, 177, 222, 0.09),
        inset 0 1px rgba(255, 255, 255, 0.06);
}

.add-field textarea:user-invalid,
.add-field input:user-invalid {
    border-color: rgba(255, 137, 146, 0.72);
}

.add-field textarea {
    min-height: 190px;
    padding: 18px 19px;
    font-size: clamp(16px, 1.2vw, 18px);
    font-weight: 400;
    line-height: 1.55;
    letter-spacing: -0.012em;
    resize: vertical;
}

.add-field input {
    height: 58px;
    padding: 0 17px;
    font-size: 14px;
}

.add-field textarea::placeholder,
.add-field input::placeholder {
    color: rgba(198, 222, 233, 0.62);
    opacity: 1;
}

.add-field__hint {
    display: block;
    max-width: 510px;
    margin-top: 9px;
    color: rgba(203, 225, 235, 0.7);
    font-size: 11px;
    line-height: 1.45;
}

.add-form__person {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 22px;
}

.add-form__footer {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 16px;
    margin-top: 24px;
    padding-top: 18px;
    border-top: 1px solid rgba(88, 199, 235, 0.14);
}

.add-form__footer p {
    max-width: 520px;
    margin: 0;
    color: rgba(203, 225, 235, 0.67);
    font-size: 11px;
    line-height: 1.5;
}

.add-submit {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 86px;
    align-items: center;
    min-height: 108px;
    padding: 0;
    overflow: hidden;
    isolation: isolate;
    border: 1px solid rgba(78, 202, 240, 0.46);
    border-radius: 22px;
    color: #a0c5d1;
    background: rgba(5, 16, 27, 0.64);
    box-shadow: inset 0 1px rgba(255, 255, 255, 0.05);
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    transition: color 450ms ease, border-color 420ms ease, box-shadow 520ms ease, transform 520ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

.add-submit::before {
    position: absolute;
    z-index: -1;
    inset: -1px;
    border-radius: inherit;
    background: linear-gradient(112deg, #173e56, #286b82 70%, #6ba6b6);
    content: "";
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 750ms cubic-bezier(0.17, 0.78, 0.18, 1);
}

.add-submit::after {
    position: absolute;
    z-index: -1;
    top: 50%;
    right: -27px;
    width: 140px;
    aspect-ratio: 1;
    border-radius: 50%;
    background: linear-gradient(135deg, #183d54, #28637b 58%, #6a9eae);
    box-shadow: 0 0 60px rgba(79, 151, 174, 0.22);
    content: "";
    opacity: 0.1;
    transform: translateY(-50%) scale(0.35);
    transition: opacity 420ms ease, transform 850ms cubic-bezier(0.17, 0.78, 0.18, 1);
}

.add-submit__label {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    min-width: 0;
    padding: 0 26px;
    font-size: clamp(22px, 2.2vw, 31px);
    font-weight: 500;
    line-height: 1;
    letter-spacing: -0.045em;
    text-align: left;
}

.add-submit__arrow {
    position: relative;
    z-index: 1;
    display: grid;
    align-self: center;
    justify-self: center;
    width: 66px;
    height: 66px;
    place-items: center;
    border: 1px solid currentColor;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.025);
    transition: color 360ms ease, background 360ms ease, transform 600ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

.add-submit__arrow::before {
    position: absolute;
    inset: 7px;
    border: 1px solid currentColor;
    border-radius: 50%;
    content: "";
    opacity: 0.22;
}

.add-submit__arrow svg {
    width: 27px;
    height: 27px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.35;
    transition: transform 360ms ease;
}

.add-submit:hover,
.add-submit:focus-visible {
    color: #f4fdff;
    border-color: rgba(95, 224, 255, 0.84);
    outline: 2px solid var(--add-cyan);
    outline-offset: 4px;
    box-shadow: 0 28px 62px rgba(0, 0, 0, 0.4), 0 0 34px rgba(34, 185, 225, 0.13);
    transform: translateY(-4px);
}

.add-submit:hover::before,
.add-submit:focus-visible::before {
    transform: scaleX(1);
}

.add-submit:hover::after,
.add-submit:focus-visible::after {
    opacity: 0.52;
    transform: translateY(-50%) scale(2.8);
}

.add-submit:hover .add-submit__arrow,
.add-submit:focus-visible .add-submit__arrow {
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(45deg);
}

.add-submit:hover .add-submit__arrow svg,
.add-submit:focus-visible .add-submit__arrow svg {
    transform: translateX(4px);
}

.add-submit.is-sending .add-submit__label {
    animation: addSending 700ms ease-in-out infinite alternate;
}

.add-submit:disabled {
    cursor: wait;
    opacity: 0.72;
    transform: none;
}

@keyframes addSending {
    to { opacity: 0.45; }
}

.add-sticker {
    position: absolute;
    z-index: 4;
    top: -68px;
    right: -10px;
    display: grid;
    width: 96px;
    height: 96px;
    place-items: center;
    overflow: hidden;
    border: 1px solid rgba(95, 224, 255, 0.54);
    border-radius: 50%;
    color: var(--add-steel);
    background: rgba(5, 16, 27, 0.8);
    box-shadow:
        inset 0 1px rgba(255, 255, 255, 0.07),
        0 18px 42px rgba(0, 0, 0, 0.42),
        0 0 30px rgba(34, 185, 225, 0.12);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    animation: addSticker 5.5s ease-in-out infinite;
}

.add-sticker::before {
    position: absolute;
    inset: 8px;
    border: 1px solid rgba(95, 224, 255, 0.2);
    border-radius: 50%;
    content: "";
}

@keyframes addSticker {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-6px) rotate(3deg); }
}

.add-sticker__orbit {
    position: absolute;
    z-index: 2;
    bottom: 10px;
    left: 50%;
    width: 84px;
    overflow: hidden;
    color: rgba(207, 229, 238, 0.58);
    font-family: var(--add-mono);
    font-size: 5px;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-align: center;
    white-space: nowrap;
    transform: translateX(-50%);
}

.add-sticker__bird {
    display: grid;
    width: 55px;
    height: 55px;
    place-items: center;
    overflow: hidden;
    border-radius: 50%;
    opacity: 0.72;
}

.add-sticker__bird img {
    display: block;
    width: 58px;
    height: auto;
    filter: grayscale(1) brightness(1.8) contrast(0.78);
}

.add-submission__caption {
    margin: 22px 0 0;
    color: rgba(193, 216, 229, 0.5);
    font-family: var(--add-mono);
    font-size: 9px;
    letter-spacing: 0.13em;
    text-align: right;
    text-transform: uppercase;
}

.add-submission__caption::after {
    display: inline-block;
    width: 5px;
    height: 5px;
    margin-left: 9px;
    border-radius: 50%;
    background: var(--add-cyan);
    box-shadow: 0 0 8px rgba(81, 215, 251, 0.58);
    content: "";
    vertical-align: 1px;
}

.add-marquee {
    position: relative;
    z-index: 4;
    overflow: hidden;
    border-block: 1px solid rgba(88, 199, 235, 0.2);
    color: rgba(200, 223, 232, 0.45);
    background: rgba(5, 14, 23, 0.86);
}

.add-marquee::before {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 1px;
    background: var(--add-cyan);
    box-shadow: 0 0 14px rgba(81, 215, 251, 0.44);
    content: "";
    opacity: 0.42;
}

.add-marquee__track {
    display: flex;
    width: max-content;
    font-family: var(--add-display);
    font-size: clamp(28px, 3.8vw, 56px);
    font-weight: 400;
    line-height: 1.22;
    letter-spacing: -0.035em;
    text-transform: uppercase;
    animation: addMarquee 24s linear infinite;
}

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

.add-process {
    position: relative;
    display: grid;
    grid-template-columns: minmax(280px, 0.42fr) minmax(520px, 0.58fr);
    gap: clamp(64px, 8vw, 138px);
    width: min(100% - 64px, 1500px);
    margin: 0 auto;
    padding: clamp(120px, 12vw, 190px) 0 clamp(110px, 11vw, 180px);
}

.add-process::before {
    position: absolute;
    top: 17%;
    bottom: 15%;
    left: 42%;
    width: 1px;
    background: linear-gradient(180deg, transparent, rgba(81, 215, 251, 0.32), transparent);
    content: "";
    pointer-events: none;
}

.add-section-index {
    display: block;
    margin-bottom: 28px;
    color: var(--add-steel);
    font-family: var(--add-mono);
    font-size: 10px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.add-process__heading h2 {
    margin: 0;
    font-family: var(--add-display);
    font-size: clamp(46px, 5.2vw, 78px);
    font-weight: 500;
    line-height: 0.95;
    letter-spacing: -0.06em;
}

.add-process__heading h2 em {
    color: var(--add-steel-bright);
    background: linear-gradient(108deg, #799baa, #c6dbe2 50%, #8eb6c5);
    -webkit-background-clip: text;
    background-clip: text;
    font-style: normal;
    font-weight: 500;
    -webkit-text-fill-color: transparent;
}

.add-process__list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.add-process__list li {
    display: grid;
    grid-template-columns: 58px 1fr;
    gap: 22px;
    padding: 27px 0 31px;
    border-top: 1px solid rgba(88, 199, 235, 0.17);
    transition: border-color 300ms ease, padding-left 420ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

.add-process__list li:last-child {
    border-bottom: 1px solid rgba(88, 199, 235, 0.17);
}

.add-process__list li:hover {
    padding-left: 12px;
    border-color: rgba(81, 215, 251, 0.48);
}

.add-process__number {
    color: var(--add-cyan);
    font-family: var(--add-mono);
    font-size: 10px;
}

.add-process__list h3 {
    margin: -4px 0 9px;
    color: #e9f7fb;
    font-family: var(--add-display);
    font-size: clamp(25px, 2.2vw, 35px);
    font-weight: 500;
    line-height: 1.05;
    letter-spacing: -0.04em;
}

.add-process__list p {
    max-width: 500px;
    margin: 0;
    color: rgba(203, 223, 233, 0.6);
    font-size: 13px;
    line-height: 1.62;
}

.add-manifesto {
    position: relative;
    display: grid;
    grid-template-columns: 0.48fr 2fr 0.65fr;
    gap: 40px;
    align-items: end;
    padding: clamp(78px, 9vw, 140px) max(32px, calc((100vw - 1500px) / 2));
    overflow: hidden;
    color: var(--add-light-ink);
    background:
        radial-gradient(circle at 78% 18%, rgba(29, 167, 212, 0.16), transparent 28%),
        linear-gradient(146deg, #edf5f8 0%, #dbeaf0 48%, #e9f3f7 100%);
}

.add-manifesto::before {
    position: absolute;
    inset: 0;
    opacity: 0.5;
    background-image:
        linear-gradient(rgba(24, 102, 142, 0.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(24, 102, 142, 0.07) 1px, transparent 1px);
    background-size: 44px 44px;
    content: "";
    pointer-events: none;
}

.add-manifesto::after {
    position: absolute;
    right: -0.08em;
    bottom: -0.3em;
    color: transparent;
    -webkit-text-stroke: 1px rgba(20, 102, 143, 0.11);
    font-family: var(--add-display);
    font-size: clamp(190px, 33vw, 530px);
    font-weight: 500;
    line-height: 0.72;
    letter-spacing: -0.12em;
    content: "007";
    pointer-events: none;
}

.add-manifesto > * {
    position: relative;
    z-index: 1;
}

.add-manifesto__label {
    margin: 0;
    color: #3f667c;
    font-family: var(--add-mono);
    font-size: 10px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.add-manifesto__quote {
    margin: 0;
    color: #102d41;
    font-family: var(--add-display);
    font-size: clamp(46px, 6.5vw, 98px);
    font-weight: 500;
    line-height: 0.91;
    letter-spacing: -0.065em;
}

.add-manifesto__quote span {
    color: #087dbb;
}

.add-manifesto > a {
    justify-self: end;
    padding-bottom: 7px;
    border-bottom: 1px solid rgba(18, 112, 153, 0.35);
    color: #075e89;
    font-family: var(--add-mono);
    font-size: 10px;
    letter-spacing: 0.09em;
    text-decoration: none;
    text-transform: uppercase;
}

.add-manifesto > a span {
    display: inline-block;
    margin-left: 10px;
    font-size: 17px;
    transition: transform 240ms ease;
}

.add-manifesto > a:hover span {
    transform: translate(4px, -4px);
}

.add-footer {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 50px;
    align-items: end;
    width: 100%;
    margin: 0;
    padding: 58px max(32px, calc((100vw - 1500px) / 2)) 42px;
    border-top: 1px solid rgba(24, 102, 142, 0.12);
    color: var(--add-light-ink);
    background: #edf5f8;
}

.add-brand--footer .add-brand__image {
    width: 220px;
}

.add-footer nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 24px;
}

.add-footer nav a {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    color: #365f75;
    font-size: 12px;
    text-decoration: none;
    transition: color 220ms ease;
}

.add-footer nav a:hover,
.add-footer nav a:focus-visible {
    color: #087dbb;
}

.add-footer > p {
    justify-self: end;
    margin: 0;
    color: #486b7d;
    font-family: var(--add-mono);
    font-size: 10px;
    line-height: 1.65;
    letter-spacing: 0.1em;
    text-align: right;
    text-transform: uppercase;
}

.add-has-motion .add-reveal {
    opacity: 0;
    transform: translateY(26px);
    transition:
        opacity 780ms ease var(--add-delay, 0ms),
        transform 860ms cubic-bezier(0.2, 0.75, 0.2, 1) var(--add-delay, 0ms);
}

.add-has-motion .add-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

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

    .add-header::after {
        display: none;
    }

    .add-hero {
        grid-template-columns: minmax(0, 0.34fr) minmax(520px, 0.66fr);
        gap: 48px;
    }

    .add-hero::after {
        display: none;
    }

    .add-intro__title {
        font-size: clamp(50px, 5.8vw, 68px);
    }

    .add-sticker {
        display: none;
    }
}

@media (max-width: 960px) {
    .add-header {
        width: min(100% - 44px, 860px);
        min-height: 82px;
    }

    .add-nav {
        display: none;
    }

    .add-menu {
        position: relative;
        display: block;
        grid-column: 3;
        justify-self: end;
    }

    .add-menu summary {
        display: grid;
        width: 46px;
        height: 46px;
        place-content: center;
        gap: 7px;
        border: 1px solid rgba(78, 202, 240, 0.4);
        border-radius: 50%;
        color: var(--add-steel-bright);
        background: rgba(5, 16, 27, 0.72);
        cursor: pointer;
        list-style: none;
        -webkit-backdrop-filter: blur(12px);
        backdrop-filter: blur(12px);
    }

    .add-menu summary::-webkit-details-marker {
        display: none;
    }

    .add-menu summary span {
        display: block;
        width: 18px;
        height: 1px;
        background: currentColor;
        transition: transform 180ms ease;
    }

    .add-menu[open] summary span:first-child {
        transform: translateY(4px) rotate(45deg);
    }

    .add-menu[open] summary span:last-child {
        transform: translateY(-4px) rotate(-45deg);
    }

    .add-menu nav {
        position: absolute;
        top: 56px;
        right: 0;
        display: grid;
        min-width: 220px;
        padding: 9px;
        border: 1px solid rgba(78, 202, 240, 0.36);
        border-radius: 14px;
        color: var(--add-ink);
        background: rgba(5, 14, 23, 0.97);
        box-shadow: 0 26px 58px rgba(0, 0, 0, 0.5);
        -webkit-backdrop-filter: blur(18px);
        backdrop-filter: blur(18px);
    }

    .add-menu nav a {
        padding: 12px 13px;
        border-bottom: 1px solid rgba(88, 199, 235, 0.13);
        color: rgba(207, 229, 238, 0.74);
        font-size: 13px;
        text-decoration: none;
    }

    .add-menu nav a:last-child {
        border-bottom: 0;
    }

    .add-menu nav a[aria-current="page"] {
        color: #f1fbff;
        background: rgba(81, 215, 251, 0.09);
    }

    .add-hero {
        grid-template-columns: minmax(0, 1fr);
        gap: 64px;
        width: min(100% - 44px, 780px);
        min-height: 0;
        padding: 130px 0 88px;
    }

    .add-hero::before {
        top: 34%;
        bottom: auto;
        font-size: min(72vw, 520px);
    }

    .add-intro {
        max-width: 680px;
    }

    .add-intro__title {
        font-size: clamp(58px, 11.5vw, 94px);
    }

    .add-intro__lead {
        max-width: 600px;
    }

    .add-submission {
        max-width: 780px;
        justify-self: center;
    }

    .add-process {
        grid-template-columns: minmax(0, 1fr);
        gap: 58px;
        width: min(100% - 44px, 780px);
    }

    .add-process::before {
        display: none;
    }

    .add-process__heading {
        max-width: 650px;
    }

    .add-process__list {
        max-width: 700px;
        margin-left: auto;
    }

    .add-manifesto {
        grid-template-columns: 1fr;
        gap: 34px;
        align-items: start;
        padding-inline: 28px;
    }

    .add-manifesto > a {
        justify-self: start;
    }

    .add-footer {
        grid-template-columns: 1fr 1fr;
        padding-inline: 22px;
    }

    .add-footer nav {
        grid-column: 1 / -1;
        grid-row: 1;
        justify-content: flex-start;
    }
}

@media (max-width: 620px) {
    .add-backdrop__video {
        display: none;
    }

    .add-backdrop__grid {
        background-size: 42px 42px, 42px 42px, auto;
    }

    .add-header,
    .add-hero,
    .add-process {
        width: calc(100% - 32px);
    }

    .add-header {
        min-height: 74px;
    }

    .add-brand__image {
        width: 168px;
    }

    .add-menu summary {
        width: 44px;
        height: 44px;
    }

    .add-hero {
        gap: 50px;
        padding: 108px 0 74px;
    }

    .add-intro__eyebrow {
        margin-bottom: 34px;
        font-size: 8px;
    }

    .add-intro__title {
        font-size: clamp(46px, 14.4vw, 68px);
        line-height: 0.94;
    }

    .add-intro__lead {
        margin-top: 30px;
        font-size: 15px;
    }

    .add-intro__meta {
        display: grid;
        grid-template-columns: 1fr;
    }

    .add-intro__meta span + span {
        border-top: 1px solid rgba(88, 199, 235, 0.14);
        border-left: 0;
    }

    .add-intro__scroll {
        margin-top: 30px;
    }

    .add-submission {
        padding: 0;
    }

    .add-card {
        border-radius: 21px;
    }

    .add-card:hover,
    .add-card:focus-within {
        transform: none;
    }

    .add-card__header {
        min-height: 52px;
        padding: 0 18px;
        font-size: 8px;
    }

    .add-card--success {
        min-height: 0;
    }

    .add-success {
        min-height: 480px;
        padding: 38px 24px 42px;
    }

    .add-success::before {
        right: -0.05em;
        bottom: -0.13em;
        font-size: 190px;
    }

    .add-success__signal {
        width: 88px;
        margin-bottom: 32px;
    }

    .add-success__kicker {
        margin-bottom: 14px;
        font-size: 8px;
    }

    .add-success__message .result {
        font-size: clamp(27px, 8.2vw, 34px) !important;
        line-height: 1.1;
    }

    .add-success__again {
        margin-top: 30px;
        font-size: 9px;
    }

    .add-notice {
        margin: 14px 18px 0;
    }

    .add-form {
        padding: 21px 18px 18px;
    }

    .add-field textarea {
        min-height: 175px;
        padding: 16px;
        font-size: 16px;
    }

    .add-field input {
        height: 55px;
    }

    .add-field__hint {
        padding-right: 10px;
    }

    .add-form__person {
        grid-template-columns: minmax(0, 1fr);
        gap: 19px;
    }

    .add-form__footer {
        margin-top: 22px;
    }

    .add-submit {
        grid-template-columns: minmax(0, 1fr) 68px;
        min-height: 96px;
        border-radius: 19px;
    }

    .add-submit__label {
        padding: 0 19px;
        font-size: clamp(20px, 6vw, 25px);
    }

    .add-submit__arrow {
        width: 54px;
        height: 54px;
    }

    .add-submit__arrow svg {
        width: 22px;
        height: 22px;
    }

    .add-submission__caption {
        margin-top: 16px;
        text-align: left;
    }

    .add-marquee__track {
        font-size: 27px;
    }

    .add-process {
        gap: 44px;
        padding: 94px 0 88px;
    }

    .add-process__heading h2 {
        font-size: clamp(43px, 13vw, 62px);
    }

    .add-process__list li {
        grid-template-columns: 38px 1fr;
        gap: 12px;
        padding: 23px 0 27px;
    }

    .add-process__list li:hover {
        padding-left: 0;
    }

    .add-process__list h3 {
        font-size: 25px;
    }

    .add-manifesto {
        gap: 29px;
        padding: 66px 16px 72px;
    }

    .add-manifesto__quote {
        font-size: clamp(42px, 13.5vw, 60px);
    }

    .add-footer {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 46px 16px 32px;
    }

    .add-footer nav {
        grid-column: auto;
        grid-row: auto;
        justify-content: flex-start;
        gap: 10px 17px;
    }

    .add-brand--footer .add-brand__image {
        width: 200px;
    }

    .add-footer > p {
        justify-self: start;
        text-align: left;
    }
}

@media (max-width: 390px) {
    .add-intro__eyebrow {
        align-items: flex-start;
        flex-direction: column;
        gap: 9px;
    }

    .add-live {
        white-space: normal;
    }

    .add-card__header span:last-child {
        display: none;
    }
}

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

    .add-backdrop__video {
        display: none;
    }

    .add-live i,
    .add-card::after,
    .add-intro__title em,
    .add-sticker,
    .add-marquee__track,
    .add-success__signal::after,
    .add-submit.is-sending .add-submit__label {
        animation: none;
    }

    .add-card,
    .add-intro__scroll svg,
    .add-submit,
    .add-submit::before,
    .add-submit::after,
    .add-submit__arrow,
    .add-submit__arrow svg,
    .add-success__again,
    .add-process__list li,
    .add-manifesto > a span,
    .add-backdrop__glow,
    .add-reveal {
        transition: none !important;
    }

    .add-has-motion .add-reveal {
        opacity: 1;
        transform: none;
    }
}

@media (forced-colors: active) {
    .add-intro__title em,
    .add-process__heading h2 em {
        color: CanvasText;
        background: none;
        -webkit-text-fill-color: currentColor;
        filter: none;
    }
}
