:root {
    --bg: #f4f5f7;
    --surface: #ffffff;
    --surface-soft: #f9fafc;
    --text: #151821;
    --muted: #737988;
    --line: #e5e8ee;
    --accent: #df1673;
    --accent-dark: #b70f5d;
    --cyan: #18a8d8;
    --green: #42c928;
    --orange: #ff8a1d;
    --shadow: 0 22px 70px rgba(22, 28, 45, .13);
    --radius: 8px;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    color: var(--text);
    background: var(--bg);
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea {
    font: inherit;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
}

.brand__mark {
    display: inline-grid;
    place-items: center;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: var(--accent);
    color: #fff;
    font-weight: 900;
    text-transform: uppercase;
    box-shadow: 0 12px 28px rgba(223, 22, 115, .27);
}

.brand__mark--small {
    width: 30px;
    height: 30px;
    font-size: 14px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 18px;
    border: 1px solid transparent;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 750;
    font-size: 14px;
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

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

.button--primary {
    background: var(--accent);
    color: #fff;
    box-shadow: 0 12px 26px rgba(223, 22, 115, .22);
}

.button--primary:hover {
    background: var(--accent-dark);
}

.button--soft {
    background: #fff;
    color: var(--text);
    border-color: var(--line);
}

.button--danger {
    background: #fff;
    color: var(--accent);
    border-color: rgba(223, 22, 115, .32);
}

.button--danger-fill {
    background: var(--accent);
    color: #fff;
    box-shadow: 0 12px 26px rgba(223, 22, 115, .22);
}

.site-body {
    background: #fff;
}

.landing {
    min-height: 100vh;
}

.hero {
    min-height: 720px;
    display: grid;
    grid-template-columns: minmax(320px, 560px) minmax(420px, 1fr);
    gap: 52px;
    align-items: center;
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
    padding: 52px 0 70px;
}

.hero__copy h1 {
    margin: 62px 0 22px;
    font-size: clamp(42px, 6vw, 74px);
    line-height: .94;
    letter-spacing: 0;
}

.hero__copy p {
    width: min(100%, 560px);
    color: #4d5362;
    font-size: 20px;
    line-height: 1.55;
}

.hero__actions,
.hero__proof {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.hero__proof span {
    padding: 9px 12px;
    border-radius: 8px;
    background: var(--surface-soft);
    border: 1px solid var(--line);
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
}

.hero__visual {
    position: relative;
    min-height: 610px;
    display: grid;
    align-items: center;
}

.screen-card {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    background: #8fd2ff;
    border: 1px solid rgba(0, 0, 0, .06);
}

.screen-card--channel {
    width: min(620px, 100%);
    margin-left: auto;
}

.screen-card img {
    display: block;
    width: 100%;
    height: 470px;
    object-fit: cover;
    object-position: top center;
}

.phone-preview {
    position: absolute;
    left: 0;
    bottom: 26px;
    width: 330px;
    padding: 16px;
    border: 1px solid rgba(223, 22, 115, .18);
    border-radius: 8px;
    background: #fff7fb;
    box-shadow: 0 18px 60px rgba(40, 28, 52, .24);
}

.phone-preview__top {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 14px;
    border-bottom: 1px solid #f3cfe0;
}

.phone-preview__count {
    margin-left: auto;
    color: var(--accent);
    font-weight: 800;
}

.comment-bubble {
    margin: 16px 0;
    padding: 12px 14px;
    border-radius: 8px;
    background: #fff;
    font-weight: 800;
    box-shadow: 0 8px 20px rgba(223, 22, 115, .08);
}

.comment-row {
    display: grid;
    grid-template-columns: 38px 1fr;
    gap: 10px;
    padding: 12px 0;
}

.comment-row p {
    margin: 3px 0 0;
    color: var(--muted);
    font-size: 13px;
}

.avatar {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #ffe0ec;
    color: var(--accent);
    font-weight: 850;
    font-size: 12px;
}

.avatar--cyan {
    background: #def6ff;
    color: #087fa7;
}

.comment-input {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 44px;
    margin-top: 10px;
    padding: 0 6px 0 14px;
    border-radius: 8px;
    background: #fff;
    border: 1px solid #efc1d6;
    color: #a4a9b5;
}

.comment-input span {
    display: grid;
    place-items: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--accent);
    color: #fff;
}

.section {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
    padding: 86px 0;
}

.section h2 {
    margin: 0;
    font-size: clamp(32px, 4vw, 52px);
    line-height: 1.04;
    letter-spacing: 0;
}

.section p {
    color: #555c69;
    font-size: 18px;
    line-height: 1.6;
}

.section--steps {
    display: grid;
    grid-template-columns: .82fr 1.18fr;
    gap: 52px;
}

.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.steps article,
.feature-grid span,
.metric-grid article,
.panel {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 8px;
}

.steps article {
    padding: 22px;
}

.steps span,
.onboarding span {
    display: grid;
    place-items: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #e9f8fd;
    color: var(--cyan);
    font-weight: 850;
    margin-bottom: 18px;
}

.steps h3 {
    margin: 0 0 8px;
    font-size: 18px;
}

.steps p {
    margin: 0;
    font-size: 14px;
}

.feature-band {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 42px;
    align-items: center;
    border-top: 1px solid var(--line);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.feature-grid span {
    padding: 18px;
    font-weight: 750;
}

.auth-page {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 30px;
    background: linear-gradient(180deg, #fff, #f5f7fb);
}

.auth-card {
    width: min(440px, 100%);
    padding: 34px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.auth-card h1 {
    margin: 34px 0 8px;
    font-size: 32px;
}

.auth-card p {
    margin: 0 0 22px;
    color: var(--muted);
    line-height: 1.5;
}

label {
    display: grid;
    gap: 8px;
    color: #303541;
    font-size: 14px;
    font-weight: 750;
}

input,
textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 12px 13px;
    background: #fff;
    color: var(--text);
    outline: none;
}

textarea {
    resize: vertical;
}

input:focus,
textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(223, 22, 115, .1);
}

.auth-card form,
.auth-card {
    gap: 16px;
}

.auth-card label,
.form-panel form,
.settings-stack {
    margin-top: 16px;
}

.auth-card .button {
    width: 100%;
    margin-top: 18px;
}

.auth-card__link {
    display: block;
    margin-top: 16px;
    text-align: center;
    color: var(--accent);
    font-weight: 750;
}

.notice {
    padding: 12px 14px;
    border-radius: 8px;
    margin-bottom: 16px;
    font-weight: 700;
}

.notice--success {
    background: #eafbe7;
    color: #257a1c;
}

.notice--error {
    background: #fff0f5;
    color: #b70f5d;
}

.app-body {
    display: grid;
    grid-template-columns: 260px 1fr;
    min-height: 100vh;
}

.sidebar {
    position: sticky;
    top: 0;
    height: 100vh;
    padding: 28px 18px;
    background: #fff;
    border-right: 1px solid var(--line);
}

.sidebar nav {
    display: grid;
    gap: 8px;
    margin-top: 54px;
}

.sidebar nav a {
    padding: 12px 14px;
    border-radius: 8px;
    color: #4c5260;
    font-weight: 750;
}

.sidebar nav a:hover {
    background: #fff0f6;
    color: var(--accent);
}

.sidebar__user {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 22px;
    display: grid;
    grid-template-columns: 40px 1fr;
    gap: 10px;
    align-items: center;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
}

.sidebar__user > span {
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #edf7fb;
    color: var(--cyan);
    font-weight: 850;
}

.sidebar__user strong,
.sidebar__user a {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 13px;
}

.sidebar__user a {
    color: var(--accent);
    margin-top: 2px;
}

.app-main {
    width: min(1120px, calc(100% - 42px));
    margin: 0 auto;
    padding: 34px 0 70px;
}

.page-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 24px;
}

.head-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.page-head h1 {
    margin: 0;
    font-size: 34px;
    letter-spacing: 0;
}

.page-head p {
    margin: 6px 0 0;
    color: var(--muted);
}

.metric-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-bottom: 18px;
}

.metric-grid article {
    padding: 22px;
}

.metric-grid span {
    color: var(--muted);
    font-weight: 750;
}

.metric-grid strong {
    display: block;
    margin-top: 10px;
    font-size: 38px;
}

.panel {
    padding: 26px;
    margin-bottom: 18px;
}

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

.panel__head h2,
.panel h2 {
    margin: 0;
    font-size: 22px;
}

.panel__head a {
    color: var(--accent);
    font-weight: 800;
}

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

.onboarding div {
    padding: 18px;
    background: var(--surface-soft);
    border-radius: 8px;
}

.onboarding strong {
    display: block;
    margin-bottom: 6px;
}

.onboarding p,
.connect-panel p,
.settings-card p,
.empty-state p,
.channel-row p {
    color: var(--muted);
    line-height: 1.5;
}

.channel-list {
    display: grid;
    gap: 12px;
}

.channel-row {
    display: grid;
    grid-template-columns: 52px 1fr auto;
    align-items: center;
    gap: 16px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 8px;
}

.row-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.danger-panel {
    max-width: 720px;
}

.danger-panel p {
    color: var(--muted);
    line-height: 1.55;
}

.danger-panel form {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.channel-row__avatar {
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #fff0f6;
    color: var(--accent);
    font-weight: 900;
    font-size: 22px;
}

.channel-row__image {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
}

.channel-row h2 {
    margin: 0;
    font-size: 18px;
}

.channel-row p {
    margin: 4px 0 0;
    font-size: 14px;
}

.empty-state {
    text-align: center;
    padding: 34px;
}

.form-panel form {
    display: grid;
    gap: 16px;
    max-width: 620px;
}

.connect-panel {
    display: grid;
    grid-template-columns: .75fr 1fr;
    gap: 24px;
    align-items: center;
}

.copy-box {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px;
}

.icon-button {
    border: 1px solid var(--line);
    background: #fff;
    border-radius: 8px;
    padding: 0 14px;
    font-weight: 800;
    cursor: pointer;
}

.settings-stack {
    display: grid;
    gap: 18px;
}

.settings-card {
    display: grid;
    gap: 18px;
}

.toggle {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 14px 0;
    border-top: 1px solid var(--line);
}

.toggle input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.toggle i {
    position: relative;
    width: 48px;
    min-width: 48px;
    height: 27px;
    border-radius: 999px;
    background: #c8ccd4;
    transition: background .18s ease;
}

.toggle i::after {
    content: "";
    position: absolute;
    top: 3px;
    left: 3px;
    width: 21px;
    height: 21px;
    border-radius: 50%;
    background: #fff;
    transition: transform .18s ease;
}

.toggle input:checked + i {
    background: var(--accent);
}

.toggle input:checked + i::after {
    transform: translateX(21px);
}

.field-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.settings-save {
    justify-self: center;
}

.moderation-list {
    display: grid;
    gap: 14px;
}

.moderation-card {
    display: grid;
    gap: 12px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 8px;
}

.moderation-card span {
    display: block;
    margin-top: 4px;
    color: var(--muted);
    font-size: 13px;
}

.moderation-card p {
    margin: 0;
    font-size: 16px;
}

.moderation-card em {
    color: var(--orange);
    font-style: normal;
    font-weight: 750;
}

.moderation-card form {
    display: flex;
    gap: 10px;
}

.webapp-body {
    min-height: 100vh;
    background: #dff3ff;
}

.webapp {
    position: relative;
    display: grid;
    grid-template-rows: auto auto 1fr auto;
    width: min(440px, 100%);
    min-height: 100vh;
    margin: 0 auto;
    background: #f7fbff;
    overflow: hidden;
}

.webapp::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .42;
    background-image:
        radial-gradient(circle at 18px 18px, rgba(223, 22, 115, .16) 0 1px, transparent 2px),
        radial-gradient(circle at 58px 44px, rgba(24, 168, 216, .18) 0 1px, transparent 2px);
    background-size: 76px 76px;
    pointer-events: none;
}

.webapp > * {
    position: relative;
}

.webapp__top {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px;
    background: rgba(255, 255, 255, .92);
    border-bottom: 1px solid rgba(223, 22, 115, .15);
}

.webapp__top > div {
    min-width: 0;
}

.webapp__top span:last-child {
    display: block;
    color: var(--muted);
    font-size: 12px;
    margin-top: 2px;
}

.webapp__settings-button {
    display: grid;
    place-items: center;
    gap: 3px;
    width: 36px;
    height: 36px;
    margin-left: auto;
    border: 0;
    border-radius: 50%;
    background: #fff0f6;
    color: var(--accent);
    cursor: pointer;
}

.webapp__settings-button span {
    width: 16px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
}

.webapp__post {
    margin: 14px;
    padding: 14px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 8px 28px rgba(28, 35, 55, .08);
}

.webapp__post p {
    margin: 7px 0 0;
    color: var(--muted);
    line-height: 1.42;
    font-size: 13px;
}

.webapp__list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 6px 14px 110px;
    overflow-y: auto;
}

.loader,
.web-empty {
    align-self: center;
    margin-top: 24vh;
    padding: 10px 14px;
    border-radius: 8px;
    background: #fff;
    font-weight: 800;
    box-shadow: 0 8px 20px rgba(28, 35, 55, .08);
}

.web-comment {
    display: grid;
    grid-template-columns: 34px 1fr;
    gap: 9px;
    align-items: start;
}

.web-comment__avatar {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #fff0f6;
    color: var(--accent);
    font-weight: 850;
    font-size: 11px;
}

.web-comment__bubble {
    padding: 10px 12px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 6px 18px rgba(28, 35, 55, .07);
}

.web-comment__bubble strong {
    display: block;
    font-size: 13px;
}

.web-comment__bubble p {
    margin: 5px 0 0;
    white-space: pre-wrap;
    line-height: 1.4;
}

.web-comment__bubble small {
    display: block;
    margin-top: 7px;
    color: var(--muted);
    font-size: 11px;
}

.webapp__composer {
    position: fixed;
    left: 50%;
    bottom: 12px;
    transform: translateX(-50%);
    display: grid;
    grid-template-columns: 34px minmax(58px, 86px) 1fr 42px;
    gap: 7px;
    width: min(420px, calc(100% - 18px));
    padding: 10px;
    border: 1px solid rgba(223, 22, 115, .2);
    border-radius: 8px;
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 12px 34px rgba(28, 35, 55, .16);
}

.webapp__composer input {
    height: 42px;
    padding: 0 12px;
}

.webapp__composer .guest-name {
    font-size: 13px;
}

.webapp__composer button {
    border: 0;
    border-radius: 50%;
    cursor: pointer;
    font-weight: 900;
}

.webapp__composer button[type="submit"] {
    background: var(--accent);
    color: #fff;
}

.attach-button {
    background: #eef1f6;
    color: #4f5665;
}

.webapp__toast {
    position: fixed;
    left: 50%;
    bottom: 82px;
    transform: translateX(-50%);
    width: min(390px, calc(100% - 32px));
    padding: 12px 14px;
    border-radius: 8px;
    background: #151821;
    color: #fff;
    text-align: center;
    box-shadow: 0 10px 34px rgba(0, 0, 0, .22);
    z-index: 5;
}

.webapp-modal {
    position: fixed;
    inset: 0;
    z-index: 10;
    display: grid;
    align-items: end;
    justify-items: center;
}

.webapp-modal[hidden] {
    display: none;
}

.webapp-modal__shade {
    position: absolute;
    inset: 0;
    border: 0;
    background: rgba(14, 20, 31, .55);
    backdrop-filter: blur(8px);
    cursor: pointer;
}

.webapp-modal__card {
    position: relative;
    width: min(440px, calc(100% - 18px));
    margin: 0 0 10px;
    padding: 28px 28px 26px;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 28px 80px rgba(0, 0, 0, .26);
}

.webapp-modal__card h2 {
    margin: 0 0 20px;
    color: var(--accent);
    text-align: center;
    font-size: 18px;
}

.webapp-setting {
    display: grid;
    gap: 12px;
    margin-bottom: 22px;
}

.webapp-setting > strong {
    color: #8c93a1;
}

.webapp-setting h3 {
    margin: 0 0 4px;
    color: var(--accent);
    text-align: center;
    font-size: 17px;
}

.segmented {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    overflow: hidden;
    border: 1px solid #d9dde6;
    border-radius: 7px;
}

.segmented button {
    height: 38px;
    border: 0;
    border-right: 1px solid #d9dde6;
    background: #fff;
    color: #555b67;
    cursor: pointer;
}

.segmented button:last-child {
    border-right: 0;
}

.segmented button.is-active {
    background: var(--accent);
    color: #fff;
    font-weight: 800;
}

.radio-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    min-height: 34px;
    color: #535865;
    font-weight: 500;
}

.radio-row input {
    position: absolute;
    opacity: 0;
}

.radio-row span {
    position: relative;
    display: grid;
    place-items: center;
    width: 22px;
    height: 22px;
    border: 1px solid #c8ced8;
    border-radius: 50%;
}

.radio-row input:checked + span {
    border-color: var(--accent);
    background: var(--accent);
}

.radio-row input:checked + span::after {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #fff;
}

.webapp-modal__action,
.webapp-modal__danger {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 40px;
    border-radius: 999px;
    font-weight: 800;
}

.webapp-modal__action {
    margin-top: 4px;
    background: var(--accent);
    color: #fff;
}

.webapp-modal__danger {
    margin-top: 12px;
    border: 1px solid var(--accent);
    background: #fff;
    color: var(--accent);
    cursor: pointer;
}

.webapp-modal__hint {
    margin: 14px 0 0;
    color: var(--muted);
    text-align: center;
    line-height: 1.4;
    font-size: 12px;
}

.webapp[data-theme="soft"] {
    background: #fff7fb;
}

.webapp[data-theme="soft"]::before {
    opacity: .7;
    background-image:
        radial-gradient(circle at 18px 18px, rgba(223, 22, 115, .22) 0 1px, transparent 2px),
        radial-gradient(circle at 58px 44px, rgba(223, 22, 115, .14) 0 1px, transparent 2px);
}

.webapp[data-theme="dark"] {
    color: #f6f7fb;
    background: #151821;
}

.webapp[data-theme="dark"] .webapp__top,
.webapp[data-theme="dark"] .webapp__post,
.webapp[data-theme="dark"] .web-comment__bubble,
.webapp[data-theme="dark"] .webapp__composer {
    background: #202636;
    border-color: rgba(255, 255, 255, .08);
}

.webapp[data-theme="dark"] .webapp__post p,
.webapp[data-theme="dark"] .web-comment__bubble small,
.webapp[data-theme="dark"] .webapp__top span:last-child {
    color: #aab1c1;
}

.webapp[data-theme="dark"] input {
    background: #151821;
    color: #fff;
    border-color: rgba(255, 255, 255, .13);
}

@media (max-width: 940px) {
    .hero,
    .section--steps,
    .feature-band {
        grid-template-columns: 1fr;
    }

    .hero {
        padding-top: 30px;
    }

    .hero__copy h1 {
        margin-top: 42px;
    }

    .hero__visual {
        min-height: 560px;
    }

    .phone-preview {
        left: 20px;
    }

    .steps,
    .onboarding,
    .metric-grid {
        grid-template-columns: 1fr;
    }

    .app-body {
        grid-template-columns: 1fr;
    }

    .sidebar {
        position: relative;
        height: auto;
    }

    .sidebar__user {
        position: relative;
        left: auto;
        right: auto;
        bottom: auto;
        margin-top: 20px;
    }

    .connect-panel,
    .field-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 620px) {
    .hero {
        width: min(100% - 28px, 1180px);
        min-height: auto;
    }

    .hero__copy h1 {
        font-size: 42px;
    }

    .screen-card img {
        height: 340px;
    }

    .phone-preview {
        position: relative;
        left: auto;
        bottom: auto;
        width: 100%;
        margin-top: -44px;
    }

    .section {
        width: min(100% - 28px, 1180px);
        padding: 58px 0;
    }

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

    .page-head,
    .channel-row {
        grid-template-columns: 1fr;
        display: grid;
    }

    .copy-box {
        grid-template-columns: 1fr;
    }

    .webapp__composer {
        grid-template-columns: 34px 1fr 42px;
    }

    .webapp__composer .guest-name {
        display: none;
    }
}
