/* Fonts */
@font-face {
  font-family: 'FK Roman Standard';
  src:
    url('../fonts/FK Roman Standard/woff2/FKRomanStandard-Light.woff2') format('woff2'),
    url('../fonts/FK Roman Standard/woff/FKRomanStandard-Light.woff') format('woff');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'HW Nuckle';
  src:
    url('../fonts/Nuckle/HW Nuckle Medium.woff2') format('woff2'),
    url('../fonts/Nuckle/HW Nuckle Medium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

/* Variables */
:root {
  --font-default: 'HW Nuckle', Arial, Helvetica, sans-serif;
  --font-accent: 'FK Roman Standard', Georgia, serif;
  --container-padding: 24px;
  --color-page-bg: #EAF2FF;
  --color-page-bg-0: rgba(234, 242, 255, 0);
  --color-primary: #695CFF;
  --color-white: #FFFFFF;
  --color-white-64: #FFFFFFA3;
  --color-white-60: #FFFFFF99;
  --color-white-08: #FFFFFF14;
  --color-text: #222;
  --color-text-dark: #16181C;
  --color-text-dark-0: rgba(22, 24, 28, 0);
  --color-text-dark-50: rgba(22, 24, 28, 0.5);
  --color-text-muted: #4E535E;
  --color-border-muted: #C6C6C6;
  --color-card-bg: #1C1F25;
  --color-card-border: #313131;
  --color-card-text-muted: #AFAFAF;
  --color-footer-border: #252525;
  --color-black-soft: #080808;
  --color-black-0: rgba(0, 0, 0, 0);
  --color-black-30: rgba(0, 0, 0, 0.3);
  --color-mask-mid: #333333;
  --color-mask-strong: #4D4D4D;
  --color-mask-fade: rgba(102, 102, 102, 0);
}

/* Visually hidden */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Base */
@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-default);
  font-weight: 500;
  line-height: 1.5;
  color: var(--color-text);
  background: var(--color-page-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-accent);
  font-weight: 300;
}

/* Buttons */
.btn {
  --btn-border-color: transparent;
  --btn-arrow-color: var(--btn-border-color);

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 62px;
  padding: 21px 36px;
  border: 1px solid var(--btn-border-color);
  border-radius: 53px;
  background: var(--color-primary);
  color: var(--color-white);
  font-size: 18px;
  line-height: 0.92;
  letter-spacing: -0.04em;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition:
    color 0.28s cubic-bezier(0.22, 1, 0.36, 1),
    background-color 0.28s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.28s cubic-bezier(0.22, 1, 0.36, 1);
  appearance: none;
}

.btn:hover {
  --btn-border-color: var(--color-primary);

  background: transparent;
  color: var(--color-text-dark);
}

.btn-outline {
  --btn-border-color: var(--color-primary);

  padding-right: 22px;
  padding-left: 22px;
  background: transparent;
  color: var(--color-text-dark);
}

.btn-outline:hover {
  background: var(--color-primary);
  color: var(--color-white);
  --btn-arrow-color: var(--color-white);
}

.btn--arrow::before {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  background: var(--btn-arrow-color);
  content: '';
  -webkit-mask: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M15.0581 11.0249L9.99974 16.0832L4.94141 11.0249' stroke='%23000' stroke-width='1.2' stroke-miterlimit='10' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M10 9V15.9417' stroke='%23000' stroke-width='1.2' stroke-miterlimit='10' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M10 1.91675V5.69175' stroke='%23000' stroke-width='1.2' stroke-miterlimit='10' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M15.0581 11.0249L9.99974 16.0832L4.94141 11.0249' stroke='%23000' stroke-width='1.2' stroke-miterlimit='10' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M10 9V15.9417' stroke='%23000' stroke-width='1.2' stroke-miterlimit='10' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M10 1.91675V5.69175' stroke='%23000' stroke-width='1.2' stroke-miterlimit='10' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
}

.btns {
  display: flex;
  justify-content: center;
}

@media (max-width: 767px) {
  .btn {
    min-height: 50px;
    padding: 16px 22px;
    font-size: 16px;
  }

  .btn-outline {
    padding-right: 16px;
    padding-left: 16px;
  }
}

/* Pills */
.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 62px;
  padding: 21px 22px;
  border: 1px solid var(--color-primary);
  border-radius: 10px;
  color: var(--color-text-dark);
  font-size: 18px;
  line-height: 0.92;
  letter-spacing: -0.04em;
}

.pill--ghost {
  border-color: var(--color-white-08);
  color: var(--color-white);
}

@media (max-width: 767px) {
  .pill {
    min-height: 50px;
    padding: 16px;
    font-size: 16px;
  }
}

/* Layout */
.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

/* Video Steps */
.video-steps {
  padding: 61px 0 200px;
}

.video-steps__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.video-steps__item {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  color: var(--color-text-dark);
  font-family: var(--font-accent);
  font-size: 30px;
  font-weight: 300;
  line-height: 1.11;
  letter-spacing: -0.04em;
}

.video-steps__icon {
  flex: 0 0 auto;
  color: var(--color-primary);
}

.video-steps__description {
  display: none;
  max-width: 344px;
  font-size: 16px;
  line-height: 130%;
  letter-spacing: 0%;
  text-align: center;
  color: var(--color-text-dark);
  margin: 0 auto;
}

@media (max-width: 960px) {
  .video-steps {
    padding: 0 0 80px;
  }

  .video-steps__inner {
    flex-direction: column;
    gap: 8px;
    margin-bottom: 80px;
  }

  .video-steps__description {
    display: block;
  }
}

/* Short Note */
.short-note {
  padding: 60px 0 180px;
}

.short-note__text {
  max-width: 235px;
  margin: 0 auto;
  color: var(--color-text-dark);
  font-family: var(--font-accent);
  font-size: 18px;
  font-weight: 300;
  line-height: 1.11;
  letter-spacing: -0.02em;
  text-align: center;
}

@media (max-width: 767px) {
  .short-note {
    padding: 40px 0 140px;
  }
}

/* Footer */
.footer {
  background: var(--color-text-dark);
  color: var(--color-white);
}

.footer__top {
  max-width: 870px;
  margin: 0 auto;
  padding-top: 20px;
  text-align: center;
}

.footer__logo {
  display: inline-block;
  width: 120px;
  margin-bottom: 160px;
  line-height: 0;
}

.footer__logo img {
  display: block;
  width: 100%;
  height: auto;
}

.footer__title {
  display: block;
  width: 100%;
  max-width: 870px;
  height: auto;
  margin: 0 auto 60px;
}

.footer__text {
  margin: 0 auto 40px;
  color: var(--color-white);
  font-family: var(--font-accent);
  font-size: 18px;
  font-weight: 300;
  line-height: 1.11;
  letter-spacing: -0.02em;
  text-align: center;
}

.footer__actions {
  margin-bottom: 120px;
}

.footer__actions .btn:hover {
  color: var(--color-white);
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 30px 0;
  border-top: 1px solid var(--color-footer-border);
}

.footer__copyright {
  color: var(--color-card-text-muted);
  font-size: 16px;
  line-height: 1.3;
}

.footer__contacts {
  display: flex;
  align-items: center;
  gap: 45px;
}

.footer__question {
  color: var(--color-white);
  font-family: var(--font-accent);
  font-size: 18px;
  font-weight: 300;
  line-height: 1.11;
  letter-spacing: -0.02em;
  text-align: center;
}

.footer__contact-text {
  color: var(--color-card-text-muted);
  font-size: 16px;
  line-height: 1.3;
}

.footer__contact-text a {
  color: var(--color-white);
  text-decoration: none;
  transition: color 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

.footer__contact-text a:hover {
  color: var(--color-card-text-muted);
}

@media (max-width: 1200px) {
  .footer__title {
    width: min(100%, 550px);
  }
}

@media (max-width: 767px) {
  .footer__title {
    margin-bottom: 40px;
  }

  .footer__text {
    max-width: 184px;
    margin-bottom: 65px;
  }

  .footer__bottom {
    flex-direction: column-reverse;
    padding: 40px 0 60px;
  }

  .footer__copyright {
    width: 100%;
    padding-top: 20px;
    border-top: 1px solid var(--color-footer-border);
    text-align: center;
  }

  .footer__contacts {
    flex-direction: column;
    gap: 8px;
  }

  .footer__contact-text {
    text-align: center;
  }
}

@media (max-width: 390px) {
  .footer__actions {
    flex-wrap: wrap;
    gap: 2px;
  }
}

/* 404 */
.not-found {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 120px 0;
  text-align: center;
}

.not-found__title {
  max-width: 760px;
  margin-bottom: 40px;
  color: var(--color-text-dark);
  font-family: var(--font-default);
  font-size: 82px;
  font-weight: 500;
  line-height: 0.9;
  letter-spacing: -0.05em;
}

.not-found__description {
  max-width: 440px;
  margin-bottom: 60px;
  color: var(--color-text-dark);
  font-size: 16px;
  line-height: 1.3;
}

@media (max-width: 767px) {
  .not-found {
    padding: 80px 0;
  }

  .not-found__title {
    font-size: 64px;
  }

  .not-found__description {
    margin-bottom: 30px;
  }
}

/* Hero */
/* Hero Header */
.hero-header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  width: 100%;
  padding: 40px 0;
}

.hero-header .container {
  padding-right: 40px;
  padding-left: 40px;
}

.hero-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hero-header__logo {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.hero-header__logo img {
  display: block;
  width: 165px;
  height: auto;
}

.hero__actions {
  align-items: center;
}

.hero__actions--mobile {
  display: none;
}

@media (max-width: 960px) {
  .hero-header {
    position: relative;
    padding-bottom: 139px;
  }

  .hero-header__inner {
    justify-content: center;
  }

  .hero__actions--desktop {
    display: none;
  }

  .hero__actions--mobile {
    display: flex;
    flex-wrap: wrap;
    gap: 2px;
  }
}

/* Hero */
.hero {
  position: relative;
  min-height: 987px;
  overflow: hidden;
}

.hero-shadow {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 140px;
  z-index: 2;
}

.hero-shadow__inner {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-shadow__inner div,
.hero-shadow__inner::before,
.hero-shadow__inner::after {
  background: linear-gradient(180deg, var(--color-page-bg-0) 0%, var(--color-page-bg) 100%);
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.hero-shadow__inner::before,
.hero-shadow__inner::after {
  content: '';
  display: block;
}

.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  mix-blend-mode: overlay;
  opacity: 0.6;
  pointer-events: none;
  z-index: 1;
}

.hero__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  min-height: 987px;
  padding-bottom: 159px;
}

.hero__images {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
}

.hero__image {
  position: absolute;
  display: block;
  height: auto;
  border-radius: 10px;
  overflow: hidden;
}

.hero__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__image-inner {
  position: relative;
}

.hero__image img.hero__image--message {
  width: 191.3px;
  height: 58.45px;
  position: absolute;
  bottom: 129px;
  left: 50%;
  transform: translateX(-50%);
  object-fit: contain;
}

.hero__image--top {
  top: -30px;
  right: 673px;
  width: 141px;
  height: 253px;
  transform: rotate(6.48deg);
  opacity: 0;
}

.hero__image--left {
  top: 412px;
  left: 27px;
  width: 219px;
  height: 393px;
  transform: rotate(-7.42deg);
  opacity: 0;
}

.hero__image--right {
  top: 475px;
  right: -16.5px;
  width: 279px;
  height: 501px;
  transform: rotate(5.23deg);
  opacity: 0;
}

.hero__content {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 755px;
  text-align: center;
}

.hero__title {
  margin-bottom: 40px;
  line-height: 0;
}

.hero__title img {
  display: block;
  width: 100%;
  height: auto;
}

.hero__subtitle {
  margin-bottom: 139px;
  color: var(--color-text-dark);
  font-family: var(--font-accent);
  font-size: 28px;
  font-weight: 300;
  line-height: 1.11;
  letter-spacing: -0.04em;
  text-align: center;
}

.hero__description {
  max-width: 440px;
  margin: 0 auto;
  color: var(--color-text-dark);
  font-size: 16px;
  line-height: 1.3;
  text-align: center;
}

@media (max-width: 1439px) {
  .hero__title img {
    width: clamp(320px, 48vw, 755px);
    margin: 0 auto;
  }

  .hero__image--top {
    right: 55%;
  }
}

@media (max-width: 1024px) {
  .hero__image--left {
    left: -30px;
  }

  .hero__image--right {
    right: -36px;
  }
}

@media (max-width: 960px) {
  .hero {
    min-height: 0;
  }

  .hero__inner {
    min-height: 0;
    padding-bottom: 478px;
  }

  .hero__title {
    margin-bottom: 29px;
  }

  .hero__title img {
    width: clamp(320px, 55vw, 755px);
  }

  .hero__subtitle {
    font-size: 25px;
    margin-bottom: 40px;
  }

  .hero__description {
    display: none;
  }

  .hero__image--top {
    display: none;
  }

  .hero__image--right {
    width: 251px;
    height: 450px;
    top: unset;
    bottom: 0;
    right: -20px;
  }

  .hero__image--left {
    width: 175px;
    height: 314px;
    top: unset;
    bottom: 124px;
  }

  .hero-shadow {
    height: 116px;
  }
}

@media (max-width: 560px) {
  .hero__title img {
    width: min(100%, 280px);
  }

  .hero__image--right {
    width: 267px;
    height: 432px;
    right: -58px;
  }

  .hero__image--left {
    width: 119px;
    height: 213px;
    bottom: 224px;
    left: -43px;
  }
}

@media (max-width: 375px) {
  .hero__image--right {
    width: 230px;
    height: 414px;
  }

  .hero__image img.hero__image--message {

  }
}


/* Feature Section */
/* Feature Section */
.feature-section .container {
  padding: 0;
}

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

.feature-section__media {
  position: relative;
  grid-column: span 7;
  height: 720px;
  overflow: hidden;
}

.feature-section__photo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-comments {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  max-width: 413px;
  padding: 36px 0 36px 36px;
  background: linear-gradient(90deg, var(--color-black-30) 0%, var(--color-black-0) 100%);
}

.feature-comments__inner {
  height: 100%;
  -webkit-mask-image: linear-gradient(180deg, var(--color-black-0) 1.92%, var(--color-mask-mid) 14.9%, var(--color-mask-strong) 77.88%, var(--color-mask-fade) 95.19%);
  mask-image: linear-gradient(180deg, var(--color-black-0) 1.92%, var(--color-mask-mid) 14.9%, var(--color-mask-strong) 77.88%, var(--color-mask-fade) 95.19%);
}

.feature-comment-items {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 31px;
  height: 100%;
  padding: 17px 0 17px 22.39px;
}

.feature-comment-items::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 1.39px;
  background: var(--color-white-60);
  content: '';
  transform: scaleY(0);
  transform-origin: bottom center;
  transition: transform 1.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.feature-comment-items.line-animated::before {
  transform: scaleY(1);
}

.feature-comment {
  color: var(--color-white);
}

.feature-comment__header {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2px;
}

.feature-comment__avatar {
  width: 34px;
  height: 34px;
  margin-right: 9px;
  border-radius: 50%;
  object-fit: cover;
}

.feature-comment__author {
  display: flex;
  align-items: center;
  padding-top: 2.5px;
}

.feature-comment__name {
  margin-right: 15px;
  color: var(--color-white);
  font-size: 16px;
  line-height: 1;
}

.feature-comment__meta {
  display: flex;
  align-items: center;
  gap: 13px;
  color: var(--color-white-64);
  font-size: 13px;
  line-height: 1;
}

.feature-comment__meta span + span::before {
  margin-right: 13px;
  content: '•';
}

.feature-comment__body {
  display: flex;
  margin-left: 38px;
}

.feature-comment__image {
  width: 51px;
  height: 80px;
  margin-right: 15px;
  border-radius: 2.78px;
  object-fit: cover;
}

.feature-comment__content {
  padding-top: 4px;
}

.feature-comment__text {
  margin-bottom: 12px;
  color: var(--color-white);
  font-size: 16px;
  line-height: 1;
}

.feature-comment__actions {
  display: flex;
  align-items: center;
  gap: 21px;
  color: var(--color-white-64);
  font-size: 13px;
  line-height: 1;
}

.feature-comment__action {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.feature-comment__action--like::before,
.feature-comment__action--chat::before {
  content: '';
  display: inline-block;
  width: 17px;
  height: 17px;
  flex: 0 0 17px;
  background-color: var(--color-white);
}

.feature-comment__action--like::before {
  -webkit-mask: url("data:image/svg+xml,%3Csvg width='17' height='17' viewBox='0 0 17 17' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4.99939 12.2641L7.07106 13.868C7.33837 14.1353 7.93983 14.269 8.3408 14.269H10.8803C11.6822 14.269 12.551 13.6675 12.7515 12.8656L14.3553 7.98712C14.6895 7.05152 14.088 6.24959 13.0856 6.24959H10.4125C10.0115 6.24959 9.67736 5.91544 9.74419 5.44765L10.0783 3.30915C10.212 2.70769 9.81101 2.03941 9.20956 1.83893C8.67494 1.63844 8.00665 1.90576 7.73934 2.30673L4.99939 6.38324' stroke='%23000' stroke-width='1.00242' stroke-miterlimit='10'/%3E%3Cpath d='M1.59167 12.264V5.7148C1.59167 4.77921 1.99264 4.44507 2.92824 4.44507H3.59652C4.53211 4.44507 4.93308 4.77921 4.93308 5.7148V12.264C4.93308 13.1996 4.53211 13.5337 3.59652 13.5337H2.92824C1.99264 13.5337 1.59167 13.1996 1.59167 12.264Z' stroke='%23000' stroke-width='1.00242' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg width='17' height='17' viewBox='0 0 17 17' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4.99939 12.2641L7.07106 13.868C7.33837 14.1353 7.93983 14.269 8.3408 14.269H10.8803C11.6822 14.269 12.551 13.6675 12.7515 12.8656L14.3553 7.98712C14.6895 7.05152 14.088 6.24959 13.0856 6.24959H10.4125C10.0115 6.24959 9.67736 5.91544 9.74419 5.44765L10.0783 3.30915C10.212 2.70769 9.81101 2.03941 9.20956 1.83893C8.67494 1.63844 8.00665 1.90576 7.73934 2.30673L4.99939 6.38324' stroke='%23000' stroke-width='1.00242' stroke-miterlimit='10'/%3E%3Cpath d='M1.59167 12.264V5.7148C1.59167 4.77921 1.99264 4.44507 2.92824 4.44507H3.59652C4.53211 4.44507 4.93308 4.77921 4.93308 5.7148V12.264C4.93308 13.1996 4.53211 13.5337 3.59652 13.5337H2.92824C1.99264 13.5337 1.59167 13.1996 1.59167 12.264Z' stroke='%23000' stroke-width='1.00242' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
}

.feature-comment__action--chat::before {
  -webkit-mask: url("data:image/svg+xml,%3Csvg width='17' height='17' viewBox='0 0 17 17' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5.68111 12.6965H5.34697C2.67384 12.6965 1.33728 12.0282 1.33728 8.68679V5.34538C1.33728 2.67226 2.67384 1.33569 5.34697 1.33569H10.6932C13.3663 1.33569 14.7029 2.67226 14.7029 5.34538V8.68679C14.7029 11.3599 13.3663 12.6965 10.6932 12.6965H10.3591C10.1519 12.6965 9.95143 12.7967 9.82445 12.9638L8.82203 14.3003C8.38096 14.8884 7.65922 14.8884 7.21816 14.3003L6.21573 12.9638C6.10881 12.8168 5.86154 12.6965 5.68111 12.6965Z' stroke='%23000' stroke-width='1.00242' stroke-miterlimit='10' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M4.67761 5.34595H11.3604' stroke='%23000' stroke-width='1.00242' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M4.67761 8.68726H8.6873' stroke='%23000' stroke-width='1.00242' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg width='17' height='17' viewBox='0 0 17 17' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5.68111 12.6965H5.34697C2.67384 12.6965 1.33728 12.0282 1.33728 8.68679V5.34538C1.33728 2.67226 2.67384 1.33569 5.34697 1.33569H10.6932C13.3663 1.33569 14.7029 2.67226 14.7029 5.34538V8.68679C14.7029 11.3599 13.3663 12.6965 10.6932 12.6965H10.3591C10.1519 12.6965 9.95143 12.7967 9.82445 12.9638L8.82203 14.3003C8.38096 14.8884 7.65922 14.8884 7.21816 14.3003L6.21573 12.9638C6.10881 12.8168 5.86154 12.6965 5.68111 12.6965Z' stroke='%23000' stroke-width='1.00242' stroke-miterlimit='10' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M4.67761 5.34595H11.3604' stroke='%23000' stroke-width='1.00242' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M4.67761 8.68726H8.6873' stroke='%23000' stroke-width='1.00242' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
}

.feature-section__content {
  grid-column: span 5;
  padding: 80px 40px;
}

.feature-section__text {
  max-width: 400px;
}

.feature-section__title {
  margin-bottom: 40px;
  color: var(--color-text-dark);
  font-family: var(--font-default);
  font-size: 82px;
  line-height: 0.9;
  letter-spacing: -0.05em;
}

.feature-section__line {
  display: block;
  width: 20px;
  height: 1.5px;
  margin-bottom: 40px;
  background: var(--color-text-dark);
}

.feature-section__description {
  margin-bottom: 60px;
  color: var(--color-text-dark);
  font-size: 16px;
  line-height: 1.3;
}

@media (max-width: 1200px) {
  .feature-section__content {
    padding: 80px 0;
  }
}

@media (max-width: 960px) {
  .feature-section .container {
    padding: 0 var(--container-padding);
  }

  .feature-section__grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
  }

  .feature-section__media {
    order: 2;
    margin-left: -24px;
    margin-right: -24px;
  }

  .feature-section__photo {
    object-position: 37%;
  }

  .feature-section__content {
    order: 1;
    padding: 0;
  }

  .feature-section__title {
    font-size: 64px;
  }

  .feature-section__description {
    margin-bottom: 30px;
  }
}

@media (max-width: 560px) {
  .feature-section__media {
    height: 520px;
  }

  .feature-comments {
    padding: 0 0 0 20px;
    max-width: 306px;
  }

  .feature-comment-items {
    padding: 0 0 0 15px;
    gap: 28px;
  }

  .feature-comment__avatar {
    width: 25px;
    height: 25px;
    margin-right: 7px;
  }

  .feature-comment__name {
    font-size: 13px;
    margin-right: 11px;
  }

  .feature-comment__meta {
    gap: 10px;
    font-size: 10px;
  }

  .feature-comment__image {
    width: 39px;
    height: 60px;
    margin-right: 11px;
  }

  .feature-comment__text {
    font-size: 13px;
    margin-bottom: 10px;
  }

  .feature-comment__actions {
    font-size: 10px;
    gap: 18px;
  }

  .feature-comment__action {
    gap: 5px;
  }

  .feature-comment__action--like::before,
  .feature-comment__action--chat::before {
    width: 12px;
    height: 12px;
    flex: 0 0 12px;
  }
}

@media (max-width: 375px) {
  .feature-section__title {
    font-size: 48px;
  }
}


/* Real Conversations */
/* Real Conversations */
.real-conversations__content {
  max-width: 848px;
  margin: 0 auto 60px;
  text-align: center;
}

.real-conversations__title {
  margin-bottom: 40px;
  line-height: 0;
}

.real-conversations__title img {
  display: block;
  width: 100%;
  height: auto;
}

.real-conversations__subtitle {
  margin-bottom: 40px;
  color: var(--color-text-dark);
  font-family: var(--font-accent);
  font-size: 38px;
  font-weight: 300;
  line-height: 1.11;
  letter-spacing: -0.04em;
  text-align: center;
}

.real-conversations__description {
  max-width: 424px;
  margin: 0 auto;
  color: var(--color-text-dark);
  font-size: 16px;
  line-height: 1.3;
  text-align: center;
}

.real-conversations__cards {
  --real-conversations-gap: 100px;
  --real-conversations-card-width: 268.61px;
  --real-conversations-slide-size: calc(var(--real-conversations-card-width) + var(--real-conversations-gap));
  --real-conversations-scroll-distance: calc(var(--real-conversations-slide-size) * 10);
  --real-conversations-viewport-width: 100%;

  position: relative;
  left: 50%;
  width: var(--real-conversations-viewport-width);
  padding-bottom: 120px;
  overflow: hidden;
  transform: translateX(-50%);
}

.real-conversations__cards-wrapper {
  display: flex;
  align-items: flex-start;
  touch-action: pan-y pinch-zoom;
  margin-left: calc(var(--real-conversations-gap) * -1);
  animation: real-conversations-scroll 80s linear infinite;
  animation-play-state: paused;
  will-change: transform;
}

.real-conversations__cards.is-in-view .real-conversations__cards-wrapper {
  animation-play-state: running;
}

.real-conversations__cards:hover .real-conversations__cards-wrapper {
  /* animation-play-state: paused; */
}

.real-conversations__card {
  flex: 0 0 var(--real-conversations-slide-size);
  min-width: 0;
  padding-left: var(--real-conversations-gap);
}

.real-conversations__card:nth-child(even) {
  margin-top: 100px;
}

.real-conversations__card-inner {
  aspect-ratio: 268.61 / 582.2;
  border-radius: 17.56px;
  overflow: hidden;
}

.real-conversations__card--image .real-conversations__card-inner {
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

.real-conversations__card--screen-1 .real-conversations__card-inner {
  background-image: url('../img/screen-1.png');
  background-image: -webkit-image-set(url('../img/screen-1.webp') 1x, url('../img/screen-1.png') 1x);
  background-image: image-set(url('../img/screen-1.webp') type('image/webp'), url('../img/screen-1.png') type('image/png'));
}

.real-conversations__card--screen-3 .real-conversations__card-inner {
  background-image: url('../img/screen-3.png');
  background-image: -webkit-image-set(url('../img/screen-3.webp') 1x, url('../img/screen-3.png') 1x);
  background-image: image-set(url('../img/screen-3.webp') type('image/webp'), url('../img/screen-3.png') type('image/png'));
}

.real-conversations__card--screen-4 .real-conversations__card-inner {
  background-image: url('../img/screen-4.png');
  background-image: -webkit-image-set(url('../img/screen-4.webp') 1x, url('../img/screen-4.png') 1x);
  background-image: image-set(url('../img/screen-4.webp') type('image/webp'), url('../img/screen-4.png') type('image/png'));
}

.real-conversations__card--screen-5 .real-conversations__card-inner {
  background-image: url('../img/screen-5.png');
  background-image: -webkit-image-set(url('../img/screen-5.webp') 1x, url('../img/screen-5.png') 1x);
  background-image: image-set(url('../img/screen-5.webp') type('image/webp'), url('../img/screen-5.png') type('image/png'));
}

.real-conversations__card--video-feed .real-conversations__card-inner {
  position: relative;
  display: flex;
  flex-direction: column;
}

.real-conversations__card--video-feed .real-conversations__card-inner::before {
  position: absolute;
  inset: 0 0 100px;
  z-index: 0;
  background: var(--color-black-soft);
  content: '';
}

.real-conversations__video-preview {
  position: relative;
  z-index: 1;
  display: block;
  width: 136.18px;
  aspect-ratio: 136.18 / 228.01;
  margin: 25px auto 6px;
  border-radius: 7.5px;
  object-fit: cover;
}

.real-conversations__card-bottom {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: auto;
  margin-top: auto;
}

@keyframes real-conversations-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(var(--real-conversations-scroll-distance) * -1));
  }
}

.real-conversations-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding-bottom: 160px;
}

.real-conversations-features__item {
  position: relative;
}

.real-conversations-features__item:not(:first-child) {
  padding-left: 25px;
  border-left: 1px solid var(--color-border-muted);
}

.real-conversations-features__title {
  margin-bottom: 60px;
  color: var(--color-text-dark);
  font-family: var(--font-default);
  font-size: 26px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.03em;
}

.real-conversations-features__text {
  color: var(--color-text-muted);
  font-size: 16px;
  line-height: 1.3;
}

@media (max-width: 1199px) {
  .real-conversations__cards {
    --real-conversations-gap: 40px;
    --real-conversations-viewport-width: 100%;
  }

  .real-conversations__title img {
    max-width: 600px;
    margin: 0 auto;
  }
}

@media (max-width: 767px) {
  .real-conversations__content {
    margin-bottom: 66px;
  }

  .real-conversations__cards {
    --real-conversations-gap: 17px;
    --real-conversations-slide-size: 50%;
    --real-conversations-viewport-width: 100%;

    padding-bottom: 83px;
  }

  .real-conversations__subtitle {
    margin-bottom: 30px;
    font-size: 30px;
  }

  .real-conversations-features {
    display: block;
    padding-bottom: 120px;
  }

  .real-conversations-features__item {
    padding-top: 30px;
    border-top: 1px solid var(--color-border-muted);
  }

  .real-conversations-features__item:not(:first-child) {
    padding-left: 0;
    border-left: 0;
  }

  .real-conversations-features__item:not(:last-child) {
    margin-bottom: 70px;
  }

  .real-conversations-features__title {
    margin-bottom: 30px;
  }
}


/* Creator Community */
/* Creator Community */
.creator-community__hero {
  position: relative;
  min-height: 894px;
  padding: 40px 0;
  background: url('../img/creator-community-bg.jpg') center / cover no-repeat;
  background: -webkit-image-set(url('../img/creator-community-bg.webp') 1x, url('../img/creator-community-bg.jpg') 1x) center / cover no-repeat;
  background: image-set(url('../img/creator-community-bg.webp') type('image/webp'), url('../img/creator-community-bg.jpg') type('image/jpeg')) center / cover no-repeat;
}

.creator-community__hero::before,
.creator-community__hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 122px;
  pointer-events: none;
  content: '';
}

.creator-community__hero::before {
  background: linear-gradient(180deg, var(--color-text-dark-0) 0%, var(--color-text-dark-50) 100%);
}

.creator-community__hero::after {
  background: linear-gradient(180deg, var(--color-text-dark-0) 0%, var(--color-text-dark) 100%);
}

.creator-community__hero-inner {
  position: relative;
  z-index: 1;
  min-height: 814px;
}

.creator-community__eyebrow {
  margin-bottom: 190px;
  color: var(--color-white);
  font-family: var(--font-accent);
  font-size: 30px;
  font-weight: 300;
  line-height: 1.11;
  letter-spacing: -0.04em;
  text-align: center;
}

.creator-community__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 757px;
  margin-left: auto;
}

.creator-community__title {
  margin-bottom: 92px;
  line-height: 0;
}

.creator-community__title-image {
  display: block;
  width: min(100%, 757px);
  height: auto;
}

@media (max-width: 1439px) {
  .creator-community__title-image {
    width: clamp(520px, 52.6vw, 757px);
  }
}

.creator-community__title-text {
  display: none;
}

.creator-community__description {
  max-width: 435px;
  margin-left: auto;
  color: var(--color-white);
  font-size: 26px;
  line-height: 1;
  letter-spacing: -0.03em;
}

.creator-community__term {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--color-white);
}

.creator-community__term span {
  position: relative;
}

.creator-community__term span::after {
  position: absolute;
  right: 0;
  bottom: -0.02em;
  left: 0;
  height: 1px;
  background: currentColor;
  content: '';
}

.creator-community__term svg {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
}

.creator-community__cards {
  background-color: #16181C;
  padding-bottom: 80px;
  margin-top: -40px;
}

.creator-community__cards-wrapper {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.creator-community-card {
  display: flex;
  min-height: 354px;
  flex-direction: column;
  padding: 60px 40px 40px;
  border-radius: 10px;
  background: var(--color-card-bg);
}

.creator-community-card__title {
  margin-bottom: 10px;
  color: var(--color-white);
  font-family: var(--font-accent);
  font-size: 30px;
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.04em;
  text-align: center;
}

.creator-community-card__media {
  position: relative;
  height: 188px;
  flex: 0 0 188px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--color-card-border);
  overflow: hidden;
}

.creator-community-card__rules-image {
  position: absolute;
  bottom: 0;
  left: 50%;
  display: block;
  width: 185px;
  max-width: none;
  height: auto;
  transform-origin: 50% 100%;
}

.creator-community-card__rules-image--center {
  z-index: 2;
  bottom: -3px;
  transform: translateX(-50%);
}

.creator-community-card__rules-image--left,
.creator-community-card__rules-image--right {
  z-index: 1;
  bottom: -29px;
  opacity: 0;
}

.creator-community-card__rules-image--left {
  transform: translateX(calc(-50% - 58px)) rotate(-8deg);
}

.creator-community-card__rules-image--right {
  transform: translateX(calc(-50% + 58px)) rotate(8deg);
}

.creator-community-card__rules-fade {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 0;
  left: 0;
  height: 56px;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(28, 31, 37, 0) 0%, var(--color-card-bg) 100%);
}

.creator-community-card__reply .creator-community-card__media::before,
.creator-community-card__reply .creator-community-card__media::after {
  position: absolute;
  z-index: 3;
  top: 0;
  display: block;
  width: 63px;
  height: 100%;
  pointer-events: none;
  content: '';
}

.creator-community-card__reply .creator-community-card__media::before {
  left: 0;
  background: linear-gradient(-90deg, rgba(28, 31, 37, 0) 0%, #1C1F25 100%);
}

.creator-community-card__reply .creator-community-card__media::after {
  right: 0;
  background: linear-gradient(90deg, rgba(28, 31, 37, 0) 0%, #1C1F25 100%);
}

.creator-community-card__reply-shadow {
  position: absolute;
  bottom: 0;
  height: 44px;
  width: 100%;
  z-index: 4;
  background: linear-gradient(180deg, rgba(28, 31, 37, 0) 0%, #1C1F25 100%);
}

.creator-community-card__reply-photos {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
}

.creator-community-card__reply-photos-wrapper {
  position: relative;
  height: 100%;
  width: 100%;
  display: flex;
  gap: 8px;
  justify-content: center;
  align-items: flex-start;
}

.creator-community-card__reply-photo {
  position: relative;
  z-index: 1;
  display: block;
  height: auto;
  border-radius: 50%;
  opacity: 0;
}

.creator-community-card__reply-photo--1,
.creator-community-card__reply-photo--7 {
  top: 109px;
  width: 35px;
  height: 35px;
}

.creator-community-card__reply-photo--2,
.creator-community-card__reply-photo--6 {
  top: 79px;
  width: 43px;
  height: 43px;
}

.creator-community-card__reply-photo--3,
.creator-community-card__reply-photo--5 {
  top: 53px;
  width: 52px;
  height: 52px;
}

.creator-community-card__reply-photo--4 {
  top: 30px;
  width: 77px;
  height: 77px;
}

.creator-community-card__text {
  color: var(--color-card-text-muted);
  font-size: 16px;
  line-height: 1.3;
}

.creator-community-card__reply-vector {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 30px;
}

.creator-community-card__reply-vector__inner {
  position: relative;
  width: 100%;
  height: 100%;
}

.creator-community-card__reply-vector__inner div,
.creator-community-card__reply-vector__inner::before,
.creator-community-card__reply-vector__inner::after {
  position: absolute;
  border: 1px solid rgba(234, 242, 255, 0.3);
  border-bottom: 0;
  border-radius: 50% 50% 0 0;
}

.creator-community-card__reply-vector__inner div {
  top: 124px;
  opacity: .1;
  width: 320px;
  height: 288px;
  left: calc(50% - 320px/2);
}

.creator-community-card__reply-vector__inner::before,
.creator-community-card__reply-vector__inner::after {
  content: '';
}

.creator-community-card__reply-vector__inner::before {
  top: 40px;
  opacity: .3;
  width: 488px;
  height: 440px;
  left: calc(50% - 488px/2);
}

.creator-community-card__reply-vector__inner::after {
  top: 83px;
  opacity: .14;
  width: 408px;
  height: 368px;
  left: calc(50% - 408px/2);
}

.creator-community-card__private-photo {
  position: absolute;
  left: 50%;
  display: block;
  width: 124px;
  height: 225px;
  border-radius: 12px;
  object-fit: cover;
  transform-origin: 50% 100%;
  opacity: 0;
}

.creator-community-card--private .creator-community-card__media::before {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  height: 44px;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(28, 31, 37, 0) 0%, var(--color-card-bg) 100%);
  content: '';
}

.creator-community-card__private-photo--left {
  top: 21px;
  transform: translateX(calc(-50% - 32px)) rotate(-9.85deg);
}

.creator-community-card__private-photo--right {
  top: 8px;
  transform: translateX(calc(-50% + 48px)) rotate(6.64deg);
}

@media (max-width: 1200px) {

  .creator-community-card {
    min-height: 0;
    padding: 60px 25px 40px;
  }

  .creator-community-card__title {
    font-size: 28px;
  }

  .creator-community-card__rules-image {
    width: 162px;
  }

  .creator-community-card__rules-image--left {
    transform: translateX(calc(-50% - 27%)) rotate(-8deg);
  }

  .creator-community-card__rules-image--right {
    transform: translateX(calc(-50% + 27%)) rotate(8deg);
  }

  .creator-community-card__media {
    height: 168px;
    flex: 0 0 168px;
  }

  .creator-community-card__reply-shadow {
    height: 36px;
  }

  .creator-community-card__reply-vector__inner div {
    top: 105px;
    width: 282.67px;
    height: 254.4px;
    left: calc(50% - 282.67px/2 - 0.5px);
  }

  .creator-community-card__reply-vector__inner::before {
    top: 40px;
    width: 431.07px;
    height: 388.67px;
    left: calc(50% - 431.07px/2 - 0.5px);
  }

  .creator-community-card__reply-vector__inner::after {
    top: 72px;
    width: 360.4px;
    height: 325.07px;
    left: calc(50% - 360.4px/2 - 0.5px);
  }

  .creator-community-card__reply-photo--1,
  .creator-community-card__reply-photo--7 {
    width: 30px;
    height: 30px;
  }

  .creator-community-card__reply-photo--2,
  .creator-community-card__reply-photo--6 {
    width: 37px;
    height: 37px;
  }

  .creator-community-card__reply-photo--3,
  .creator-community-card__reply-photo--5 {
    width: 44px;
    height: 44px;
  }

  .creator-community-card__reply-photo--4 {
    width: 66px;
    height: 66px;
  }

  .creator-community-card__private-photo {
    width: 114px;
    height: 206px;
  }

  .creator-community-card__private-photo--left {
    transform: translateX(calc(-50% - 28px)) rotate(-9.85deg);
  }

  .creator-community-card__private-photo--right {
    transform: translateX(calc(-50% + 40px)) rotate(6.64deg);
  }

}

@media (max-width: 960px) {
  .creator-community__hero {
    background-position: left;
  }

  .creator-community__hero::before,
  .creator-community__hero::after {
    height: 107px;
  }

  .creator-community__hero-inner {
    display: flex;
    flex-direction: column;
  }

  .creator-community__eyebrow {
    margin-bottom: 60px;
    font-size: 24px;
    text-align: left;
  }

  .creator-community__content {
    align-items: flex-start;
    flex: 1;
    max-width: none;
    margin-left: 0;
  }

  .creator-community__title {
    margin-bottom: 0;
    color: var(--color-white);
    font-family: var(--font-default);
    font-size: 60px;
    font-weight: 500;
    line-height: 0.9;
    letter-spacing: -0.04em;
  }

  .creator-community__title-image {
    display: none;
  }

  .creator-community__title-text {
    display: block;
  }

  .creator-community__description {
    max-width: 340px;
    margin-top: auto;
    margin-left: 0;
    font-size: 20px;
  }

  .creator-community__term svg {
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
  }

  .creator-community__cards-wrapper {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .creator-community__cards {
    margin-top: 0;
  }
}

@media (max-width: 767px) {
  .creator-community__hero {
    min-height: 636px;
    padding: 32px 0 40px;
    background-position: center;
  }

  .creator-community__hero-inner {
    min-height: 564px;
  }

  .creator-community__hero {
    background-image: url('../img/creator-community-bg-m.jpg');
    background-image: -webkit-image-set(url('../img/creator-community-bg-m.webp') 1x, url('../img/creator-community-bg-m.jpg') 1x);
    background-image: image-set(url('../img/creator-community-bg-m.webp') type('image/webp'), url('../img/creator-community-bg-m.jpg') type('image/jpeg'));
  }

  .creator-community-card__rules-image--left {
    transform: translateX(calc(-50% - 18px)) rotate(-8deg);
  }

  .creator-community-card__rules-image--right {
    transform: translateX(calc(-50% + 18px)) rotate(8deg);
  }
}

@media (max-width: 375px) {
  .creator-community__title {
    font-size: 48px;
  }

  .creator-community__description {
    font-size: 16px;
  }

  .creator-community__term svg {
    width: 16px;
    height: 16px;
    flex: 0 0 16px;
  }

  .creator-community-card__media {
    margin-left: -10px;
    margin-right: -10px;
  }
}
