@font-face {
    font-family: "GilrInteroy";
    font-display: swap;
    src: url("../fonts/Inter-Regular.woff") format("woff");
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'tm-aure';
    src: url('../fonts/tm-aure.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: block;
}

.icon {
    font-family: 'tm-aure' !important;
    speak: never;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.tm-aure-icon-business:before {
    content: "\e900";
}

.tm-aure-icon-send:before {
    content: "\e901";
}


:root {
    --color-grey: rgba(135, 147, 174, 0.6);
}

* {
    box-sizing: border-box;
    font-family: Inter, sans-serif;
}

body {
    margin: 0;
    background: #1E2128;
    height: 100vh;
    display: flex;
    flex-direction: column;
}

.top {
    padding: 20px;
    text-align: center;
}

.logo {
    font-weight: bold;
}

.footer {
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    font-size: 14px;
}

.footer a {
    text-decoration: none;
}
.footer a:hover {
    text-decoration: underline;
}

.footer__left {
    display: flex;
    column-gap: 40px;
}
.footer__left a {
    color: var(--color-grey);
}
.footer__right a {
    color: rgba(255, 255, 255, 0.6);
}

.container {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero {
    width: 100%;
    margin-top: 120px;
    display: flex;
    justify-content: center;
    text-align: center;
    transition: margin-top 0.6s ease;
    z-index: 10;
}

.hero.fixed {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 60px;
    margin-top: 0;
}

.hero-inner {
    width: 760px;
    transition: all 0.6s ease;
}


.hero.compact {
    margin-top: 20px;
}

.hero h1 {
    margin-bottom: 30px;
    font-weight: 400;
    transition: opacity 0.3s ease;
    font-family: Inter, sans-serif;
    font-size: 16px;
    color: var(--color-grey);
}

.hero.compact h1 {
    opacity: 0;
    height: 0;
    overflow: hidden;
}

.input-wrapper {
    width: 760px;
    max-width: 760px;
    position: relative;
    transition: all 0.3s ease;
    display: flex;
}





.input:empty:before {
    content: attr(data-placeholder);
    color: #999;
    pointer-events: none;
}

textarea {
    width: 100%;
    min-height: 90px;
    color: #fff;
    padding: 20px 25px;
    border-radius: 25px;
    outline: none;
    border: 0 none;
    font-size: 12px;
    line-height: 1.2;
    background: #272935;
    resize: none;
    overflow: hidden;
    box-sizing: border-box;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.input-wrapper.small textarea {
    min-height: 30px;
    padding: 17px 25px;
    line-height: 1.1;
}

textarea::-webkit-input-placeholder {
    color: var(--color-grey);
}

textarea::-moz-placeholder {
    color: var(--color-grey);
}

textarea:-moz-placeholder {
    color: var(--color-grey);
}

textarea:-ms-input-placeholder {
    color: var(--color-grey);
}

button {
    position: absolute;
    right: 8px;
    bottom: 8px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    background: #D9D9D9;
    color: #1E2127;
}

.input-wrapper.small button {
    bottom: 10px;
    right: 10px;
}

button::after {
    font-family: 'tm-aure';
    content: "\e901";
    font-size: 17px;
}

.chat {
    width: 760px;
    margin-top: 40px;
    padding-bottom: 140px;
}

.bubble {
    max-width: 80%;
    padding: 12px 18px;
    border-radius: 18px;
    margin-bottom: 30px;
    line-height: 1.4;
}

.user {
    background: #272935;
    color: #EAEAEA;
    margin-left: auto;
}

.bot {
    background: #272935;
    margin-right: auto;
    color: #EAEAEA;
}