/* ==================== RESET & TOKENS ==================== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* запрет выделения текста и перетаскивания по всему сайту */
* {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-user-drag: none;
}
img, svg, a { -webkit-user-drag: none; }
/* в полях ввода выделение/печать разрешаем */
input, textarea {
    -webkit-user-select: text;
    -moz-user-select: text;
    user-select: text;
}

:root {
    --white: #ffffff;
    --green: #FF5400;        /* hero pill / Start Free Trial / outline / Become Partner */
    --green-join: #FF5400;   /* Join Now (header + CTA) */
    --green-bright: #FF7A33; /* rate labels, small accents */
    --pill-bg: #FFE4D4;      /* hero pill bg */
    --green-soft: #FFEDE4;   /* how icon badge + card borders */
    --mint: #FFF4ED;         /* partners bg + FAQ open bg */
    --card: #F7F5F3;         /* card bg */
    --card-border: #D7DDE8;  /* faq / header border */
    --ink: #0F1114;          /* headings / dark text */
    --muted: #575D66;        /* body gray text */
    --bg-faint: #F7F5F3;     /* hero faint bg */
    --footer-bg: #111111;
    --container: 1446px;     /* 1366 usable + 40px padding each side */
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', sans-serif;
    color: var(--ink);
    background: var(--white);
    line-height: 1.4;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden; /* страховка от горизонтального скролла на узких экранах */
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { display: block; max-width: 100%; }

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 40px;
}

/* ==================== SHARED ==================== */
h1, h2, h3 {
    color: var(--ink);
    letter-spacing: -0.04em;
    line-height: 1.05;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: -0.04em;
    border-radius: 12px;
    padding: 12px 24px;
    cursor: pointer;
    border: 1px solid transparent;
    transition: background-color .25s ease, color .25s ease, border-color .25s ease;
    white-space: nowrap;
}
.btn--primary { background: var(--green); color: #fff; }
.btn--primary:hover { background: #CC4300; }
.btn--outline { background: transparent; color: var(--green); border-color: var(--green); }
.btn--outline:hover { background: var(--green); color: #fff; }
.btn--join { background: var(--green-join); color: #fff; border-radius: 8px; font-size: 16px; }
.btn--join:hover { background: #CC4300; }
.btn--block { width: 100%; padding: 21px; font-size: 16px; }

/* hero eyebrow pill */
.pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--pill-bg);
    color: var(--green);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 100px;
}
.pill__dot { width: 8px; height: 8px; border-radius: 3px; background: var(--green); }

/* centered section head */
.section-head { text-align: center; max-width: 820px; margin: 0 auto; }
.eyebrow {
    color: var(--green);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 18px;
}
.section-title { font-size: 44px; font-weight: 800; }
.section-sub { color: var(--muted); font-size: 17px; margin-top: 20px; letter-spacing: -0.02em; }

/* ==================== HEADER ==================== */
.header {
    height: 88px;
    background: #fff;
    border-bottom: 1px solid var(--card-border);
    position: sticky;
    top: 0;
    z-index: 100;
}
.header__inner {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.header__left { display: flex; align-items: center; gap: 48px; }
.logo__img { height: 28px; width: auto; }

.header .nav {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    gap: 32px;
}
.header .nav a {
    font-size: 16px;
    font-weight: 400;
    color: var(--muted);
    letter-spacing: -0.04em;
    transition: color .2s ease;
}
.header .nav a:hover { color: var(--green); }

.header__actions { display: flex; align-items: center; gap: 24px; }
.link-signin {
    font-size: 16px;
    font-weight: 600;
    color: var(--ink);
    letter-spacing: -0.04em;
    transition: color .2s ease;
}
.link-signin:hover { color: var(--green); }

/* ==================== HERO ==================== */
.hero { background: var(--bg-faint); }
.hero__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    min-height: 655px;
    padding-top: 60px;    /* только вертикаль — горизонтальные 40px берём из .container */
    padding-bottom: 60px;
}
.hero__content { max-width: 640px; flex-shrink: 0; }

/* плавное появление содержимого hero со стаггером */
@keyframes hero-rise {
    from { opacity: 0; transform: translateY(18px); }
    to   { opacity: 1; transform: translateY(0); }
}
.hero__content > * {
    opacity: 0;
    animation: hero-rise .6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.hero__content > .pill        { animation-delay: .05s; }
.hero__content > .hero__title { animation-delay: .15s; }
.hero__content > .hero__subtitle { animation-delay: .28s; }
.hero__content > .hero__buttons  { animation-delay: .40s; }
.hero__title {
    font-size: 56px;
    font-weight: 800;
    margin-top: 24px;
    max-width: 620px;
}
.hero__subtitle {
    color: var(--muted);
    font-size: 18px;
    letter-spacing: -0.04em;
    margin-top: 24px;
    max-width: 560px;
}
.hero__buttons { display: flex; gap: 16px; margin-top: 32px; }

.hero__visual {
    position: relative;
    flex-shrink: 0;
    width: 520px;
    max-width: 45%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero__img { width: 100%; height: auto; object-fit: contain; }
.hero__burst { position: absolute; z-index: 1; pointer-events: none; }
.hero__burst--1 { top: 4%; left: 2%; width: 30%; }
.hero__burst--2 { top: 0; right: -4%; width: 46%; }

/* ==================== DIVIDER (hero → stats) ==================== */
.divider {
    line-height: 0;
    background: var(--bg-faint); /* верх волны совпадает с фоном hero */
}
.divider img {
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: -1px; /* убираем возможный шов с полосой статистики */
}

/* ==================== STATS BAR ==================== */
.stats { background: var(--green); color: #fff; }
.stats__inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 35px 0;
}
.stat { text-align: center; }
.stat__num { font-size: 40px; font-weight: 800; letter-spacing: -0.04em; line-height: 1; font-variant-numeric: tabular-nums; }
.stat__label { font-size: 14px; color: rgba(255,255,255,0.75); margin-top: 12px; }

/* анимированное появление + счётчик (класс anim-ready вешает JS, чтобы без JS всё было видно) */
.stats.anim-ready .stat {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity .6s ease, transform .6s cubic-bezier(0.22, 1, 0.36, 1);
}
.stats.anim-ready.is-revealed .stat { opacity: 1; transform: none; }
.stats.anim-ready.is-revealed .stat:nth-child(1) { transition-delay: 0s; }
.stats.anim-ready.is-revealed .stat:nth-child(2) { transition-delay: .08s; }
.stats.anim-ready.is-revealed .stat:nth-child(3) { transition-delay: .16s; }
.stats.anim-ready.is-revealed .stat:nth-child(4) { transition-delay: .24s; }
/* лёгкий «толчок» числа, пока идёт отсчёт */
.stat__num.counting { animation: stat-pop .6s ease; }
@keyframes stat-pop {
    0% { transform: scale(0.94); }
    60% { transform: scale(1.04); }
    100% { transform: scale(1); }
}

/* ==================== HOW IT WORKS ==================== */
.how { padding: 80px 0; background: #fff; }
.how__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 64px;
}
.how-card {
    background: #fff;
    border: 1px solid var(--green-soft);
    border-radius: 24px;
    padding: 40px;
    filter: drop-shadow(0 10px 10px rgba(0,0,0,0.03));
    transition: transform .25s ease, box-shadow .25s ease;
}
.how-card:hover { transform: translateY(-3px); box-shadow: 0 14px 30px rgba(15,17,20,0.07); }
.how-card__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
}
.how-card__icon {
    width: 64px;
    height: 64px;
    border-radius: 20px;
    background: var(--green-soft);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.how-card__icon img { width: 32px; height: 32px; }
.how-card__num { font-size: 40px; font-weight: 800; color: rgba(255,84,0,0.2); }
.how-card__title { font-size: 24px; font-weight: 600; margin-bottom: 16px; letter-spacing: -0.04em; }
.how-card__text { color: var(--muted); font-size: 16px; line-height: 1.5; letter-spacing: -0.04em; }

/* ==================== PARTNERS / LOGOS ==================== */
.partners { background: var(--mint); padding: 25px 0; }
.partners__title {
    text-align: center;
    color: #6B6560;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: -0.04em;
    text-transform: uppercase;
    margin-bottom: 26px;
}
.partners__logos {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: clamp(16px, 4vw, 56px);
}

.brand-logo {
    position: relative;
    display: inline-flex;
    flex: 1 1 0;
    min-width: 0;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    min-height: 36px;
}
.brand-logo img {
    height: 32px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    display: block;
}
.brand-logo__grey {
    transition: opacity .28s ease;
}
.brand-logo__color {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity .28s ease;
    pointer-events: none;
}
.brand-logo:hover .brand-logo__grey,
.brand-logo:focus-within .brand-logo__grey {
    opacity: 0;
}
.brand-logo:hover .brand-logo__color,
.brand-logo:focus-within .brand-logo__color {
    opacity: 1;
}

/* ==================== SOCIAL REQUIREMENTS ==================== */
.creators { padding: 80px 0; background: #fff; }
.creators__grid {
    display: grid;
    grid-template-columns: repeat(3, 434px);
    justify-content: center;
    gap: 24px;
    margin-top: 60px;
}
.platform-card {
    background: var(--card);
    border-radius: 16px;
    padding: 24px;
    transition: box-shadow .25s ease;
}
.platform-card:hover { box-shadow: 0 10px 26px rgba(15,17,20,0.06); }
/* второй ряд: 2 карточки отцентрованы (сдвиг на полколонки = (434+24)/2) */
.platform-card:nth-child(4) { grid-column: 1 / 2; transform: translateX(229px); }
.platform-card:nth-child(5) { grid-column: 3 / 4; transform: translateX(-229px); }

.platform-card__head { display: flex; align-items: center; gap: 16px; }
.platform-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.platform-icon img { width: 28px; height: 28px; object-fit: contain; }
.platform-title { font-size: 18px; font-weight: 700; color: var(--ink); letter-spacing: -0.04em; }
.platform-rate { font-size: 13px; color: var(--green-bright); font-weight: 500; margin-top: 4px; letter-spacing: -0.04em; }

.platform-line { border: none; border-top: 1px solid #EDE8E4; margin: 20px 0; }

.req-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--ink);
    letter-spacing: -0.04em;
    margin-bottom: 10px;
}
.req-list li:last-child { margin-bottom: 0; }
.req-list li img { width: 16px; height: 16px; flex-shrink: 0; }

/* ==================== PARTNER BENEFITS ==================== */
.benefits { background: var(--mint); padding: 40px 0; }
.benefits__inner { display: flex; align-items: center; gap: 80px; min-height: 600px; }
.benefits__visual {
    position: relative;
    width: 640px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}
.benefits__glow {
    position: absolute;
    width: 400px;
    height: 400px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}
.benefits__frame {
    position: relative;
    width: 100%;
    height: 600px;
    border-radius: 32px;
    overflow: hidden;
}
.benefits__img { width: 100%; height: 100%; object-fit: cover; }
.benefits__badge {
    position: absolute;
    top: 24px;
    left: 24px;
    background: #fff;
    color: var(--ink);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: -0.04em;
    text-transform: uppercase;
    padding: 10px 16px;
    border-radius: 99px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    z-index: 2;
}
.benefits__stat {
    position: absolute;
    right: 24px;
    bottom: 24px;
    width: 200px;
    background: #fff;
    border-radius: 16px;
    padding: 16px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    z-index: 2;
}
.benefits__stat-label { font-size: 12px; font-weight: 500; letter-spacing: -0.04em; text-transform: uppercase; color: #4b5563; }
.benefits__stat-num { font-size: 20px; font-weight: 700; letter-spacing: -0.04em; color: #FF5400; margin-top: 4px; }

.benefits__content { flex: 1; max-width: 563px; }
.benefits__title { font-size: 44px; font-weight: 800; }
.benefits__title .hl { color: var(--green); }
.benefits__sub { color: var(--muted); font-size: 16px; letter-spacing: -0.04em; margin-top: 20px; }
.benefits__list { margin: 32px 0; }
.benefits__list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    color: var(--ink);
    letter-spacing: -0.04em;
    margin-bottom: 16px;
}
.check-round {
    width: 24px;
    height: 24px;
    border-radius: 12px;
    background: #FFD8C4;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.check-round img { width: 14px; height: 14px; }

/* ==================== FAQ ==================== */
.faq { padding: 100px 0; background: #fff; }
.faq__title { text-align: center; font-size: 48px; font-weight: 800; margin-bottom: 48px; }
.faq__list { max-width: 1366px; margin: 0 auto; display: flex; flex-direction: column; gap: 16px; }
.faq-item {
    background: #fff;
    border: 1px solid var(--card-border);
    border-radius: 12px;
    overflow: hidden;
    transition: background-color .25s ease, border-color .25s ease;
}
.faq-item.is-open { background: var(--mint); }
.faq-item__q {
    width: 100%;
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 24px;
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--ink);
    letter-spacing: -0.04em;
    text-align: left;
}
.faq-item__icon { width: 20px; height: 20px; flex-shrink: 0; }
.faq-item__icon img { width: 20px; height: 20px; }
.faq-item__icon .ic-minus { display: none; }
.faq-item.is-open .ic-plus { display: none; }
.faq-item.is-open .ic-minus { display: block; }
.faq-item__a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-item__a p {
    padding: 0 24px 24px;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: -0.04em;
}

/* ==================== CTA BANNER ==================== */
.cta { padding: 40px 0; background: #fff; }
.cta__banner {
    background: rgba(255, 84, 0, 0.12);
    border-radius: 50px;
    padding: 80px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}
.cta__logo { height: 32px; width: auto; }
.cta__heading {
    font-size: 48px;
    font-weight: 700;
    color: #000;
    max-width: 800px;
    text-transform: capitalize;
}
.cta__sub {
    color: var(--muted);
    font-size: 18px;
    font-weight: 600;
    letter-spacing: -0.04em;
    text-transform: uppercase;
    max-width: 720px;
    margin-top: -15px;
}
.cta .btn--join { width: 220px; }

/* ==================== FOOTER ==================== */
.footer { background: var(--footer-bg); color: #fff; padding: 80px 0 40px; }
.footer__top { display: flex; align-items: flex-start; justify-content: space-between; }
.footer__brand { width: 400px; }
.footer__logo { height: 28px; width: auto; }
.footer__desc {
    font-size: 16px;
    line-height: 1.6;
    opacity: 0.6;
    margin: 24px 0;
}
.footer__socials { display: flex; gap: 16px; }
.footer__socials a {
    width: 40px;
    height: 40px;
    border-radius: 20px;
    background: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform .2s ease;
}
.footer__socials a:hover { transform: translateY(-2px); }
.footer__socials img { width: 24px; height: 24px; object-fit: contain; }

.footer__cols { display: flex; gap: 100px; }
.footer__col { width: 180px; }
.footer__col-title { font-size: 18px; font-weight: 700; margin-bottom: 24px; }
.footer__col a {
    display: block;
    font-size: 16px;
    opacity: 0.6;
    margin-bottom: 12px;
    transition: opacity .2s ease;
}
.footer__col a:hover { opacity: 1; }

.footer__bottom {
    margin-top: 80px;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 14px;
}
.footer__bottom-links { display: flex; gap: 24px; }
.footer__bottom-links a { opacity: 0.85; }
.footer__bottom-links a:hover { opacity: 1; }

/* ==================== RESPONSIVE ==================== */

/* --- 2K и большие мониторы: шире контейнер + крупнее типографика --- */
@media (min-width: 2000px) {
    :root { --container: 1680px; }
    .hero__title { font-size: 64px; }
    .hero__subtitle { font-size: 19px; }
    .section-title { font-size: 52px; }
    .benefits__title { font-size: 52px; }
    .faq__title { font-size: 54px; }
    .cta__heading { font-size: 56px; }
    .stat__num { font-size: 46px; }
    .section-sub { font-size: 18px; }
}

/* --- Секция креаторов: 2 колонки заранее, чтобы фикс-карточки 434px не вылезали --- */
@media (max-width: 1430px) {
    .creators__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .platform-card:nth-child(4),
    .platform-card:nth-child(5) { grid-column: auto; transform: none; }
}

/* --- Планшеты альбомные / узкие ноутбуки --- */
@media (max-width: 1100px) {
    .header .nav { display: none; }
    .hero__inner { flex-direction: column; align-items: flex-start; min-height: 0; padding-top: 48px; padding-bottom: 48px; }
    .hero__visual { width: 100%; max-width: 520px; }
    .creators__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .platform-card:nth-child(4),
    .platform-card:nth-child(5) { grid-column: auto; transform: none; }
    .benefits__inner { flex-direction: column; }
    .benefits__visual { width: 100%; max-width: 560px; padding: 20px; }
    .footer__top { flex-wrap: wrap; gap: 40px; }
    .footer__cols { gap: 60px; flex-wrap: wrap; }
}

/* --- Планшеты книжные --- */
@media (max-width: 860px) {
    .hero__title { font-size: 44px; }
    .section-title, .benefits__title, .faq__title, .cta__heading { font-size: 34px; }
    .benefits__frame { height: auto; aspect-ratio: 1 / 1.05; }
}

/* --- Телефоны --- */
@media (max-width: 700px) {
    .container { padding: 0 20px; }
    .hero__title { font-size: 34px; }
    .hero__subtitle { font-size: 16px; }
    .section-title, .benefits__title, .faq__title, .cta__heading { font-size: 28px; }
    .hero__buttons { flex-direction: column; align-items: stretch; }
    .stats__inner { grid-template-columns: repeat(2, 1fr); gap: 30px 16px; }
    .stat__num { font-size: 34px; }
    .how { padding: 56px 0; }
    .how__grid { grid-template-columns: 1fr; gap: 20px; margin-top: 40px; }
    .how-card { padding: 28px; }
    .creators { padding: 56px 0; }
    .creators__grid { grid-template-columns: 1fr; margin-top: 40px; }
    .platform-card { width: 100%; max-width: 434px; margin: 0 auto; }
    .partners__logos { gap: 10px; justify-content: space-between; }
    .partners__title { font-size: 15px; }
    .brand-logo img { height: 22px; }
    .faq { padding: 64px 0; }
    .faq-item__q { font-size: 16px; padding: 20px; }
    .cta__banner { padding: 48px 24px; border-radius: 28px; }
    .cta__heading { font-size: 26px; }
    .cta__sub { font-size: 14px; margin-top: 0; }
    .footer { padding: 56px 0 32px; }
    .footer__top { flex-direction: column; gap: 32px; }
    .footer__brand { width: 100%; }
    .footer__cols { gap: 32px; }
    .footer__bottom { flex-direction: column; gap: 16px; align-items: flex-start; }
}

/* --- Маленькие телефоны --- */
@media (max-width: 420px) {
    .header__left { gap: 0; }
    .header__actions { gap: 12px; }
    .link-signin { font-size: 14px; }
    .btn--join { font-size: 14px; padding: 9px 16px; }
    .logo__img { height: 20px; }
    .hero__title { font-size: 29px; }
    .section-title, .benefits__title, .faq__title { font-size: 24px; }
    .stat__num { font-size: 28px; }
    .stat__label { font-size: 13px; }
    .cta__heading { font-size: 22px; }
}

button.btn,
button.link-signin,
button.faq-item__q {
    font-family: inherit;
}
button.link-signin {
    background: transparent;
    border: 0;
    padding: 0;
    cursor: pointer;
}

.demo-modal {
    position: fixed;
    inset: 0;
    z-index: 50;
    display: flex;
    align-items: stretch;
    justify-content: center;
    background: #fff;
}
.auth-screen {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    width: 100%;
    min-height: 100%;
    background: #fff;
}
.auth-screen__left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 48px 8vw;
    max-width: 640px;
}
.auth-screen__brand {
    width: 140px;
    height: auto;
    margin-bottom: 28px;
}
.auth-screen__left h2 {
    font-size: 32px;
    margin-bottom: 12px;
}
.auth-screen__left p,
.auth-screen__left label {
    display: block;
    color: var(--muted);
    font-size: 14px;
    margin-bottom: 12px;
}
.auth-screen__left input {
    display: block;
    width: 100%;
    margin-top: 6px;
    border: 1px solid var(--card-border);
    border-radius: 12px;
    padding: 10px 12px;
    font-size: 14px;
}
.auth-screen__left .btn { margin-top: 8px; }
.auth-screen__panel {
    position: relative;
    overflow: hidden;
    background: #111;
}
.auth-screen__art {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right bottom;
}
.auth-screen__logo {
    position: absolute;
    left: 40px;
    top: 36px;
    width: 150px;
    z-index: 2;
}
.auth-screen__squiggle {
    position: absolute;
    z-index: 2;
    width: 90px;
    opacity: 0.9;
}
.auth-screen__squiggle--1 { right: 40px; top: 28%; }
.auth-screen__squiggle--2 { left: 12%; bottom: 18%; }
@media (max-width: 900px) {
    .auth-screen { grid-template-columns: 1fr; }
    .auth-screen__panel { min-height: 240px; }
}
