:root {
  --primary-color: #2563eb;
  --secondary-color: #0f766e;
  --white-color: #ffffff;
  --black-color: #141c24;
  --light-color: #ced2da;
  --dark-color: #344051;
  --blue-color: #2563eb;
  --blue-bg-color: #edf5ff;
  --blue-rgb: 37, 99, 235;
  --header-top: 4rem;
  --header-height: 10rem;
  --header-nav-bottom: 40px;
}

* {
  box-sizing: border-box;
}

html {
  font-size: 10px;
  scroll-behavior: smooth;
}
@media only screen and (max-width: 768px) {
  html {
    font-size: 8px;
  }
}

body {
  font-family: "Inter", sans-serif;
  scroll-behavior: smooth;
  font-size: 1.6rem;
  line-height: 1.55;
  color: var(--dark-color);
  background: #fbfcff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.004);
}
@media only screen and (max-width: 768px) {
  body {
    font-size: 2rem;
  }
}
body.no-scroll {
  height: 100%;
  overflow: hidden;
}

a {
  color: var(--black-color);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  line-height: 1.25;
  color: var(--black-color);
}

img {
  max-width: 100%;
}

.container {
  padding: 0 8rem;
  max-width: 1216px;
  margin: 0 auto;
}
@media only screen and (max-width: 768px) {
  .container {
    padding: 0 3rem;
  }
}

h2.title {
  font-size: 3.8rem;
  margin-bottom: 1.2rem;
}

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

.text-primary {
  color: var(--primary-color);
}

.text-secondary {
  color: var(--secondary-color);
}

.text-white {
  color: var(--white-color);
}

.text-bold {
  font-weight: 600;
}

.hidden {
  display: none !important;
}

.highlight {
  color: var(--primary-color);
  border-bottom: 0.16em solid rgba(var(--blue-rgb), 0.22);
  height: 1.12em;
  display: inline-block;
}

.appname {
  font-size: 1.1em;
  font-weight: 500;
  color: var(--primary-color);
}

.cta {
  background-color: var(--primary-color);
  color: var(--white-color);
  font-weight: 600;
  font-size: 1.4rem;
  padding: 12px 20px;
  border-radius: 8px;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.badge {
  font-size: 1.4rem;
  color: var(--blue-color);
  padding: 4px 12px;
  border-radius: 20px;
  background-color: var(--blue-bg-color);
  display: inline-block;
  font-weight: 600;
}

.section-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-bottom: 8rem;
  text-align: center;
}

.logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.4rem;
  height: 3.4rem;
  border-radius: 8px;
  background: var(--black-color);
  color: var(--white-color);
  font-weight: 700;
  letter-spacing: 0;
}

footer {
  padding: 6rem 0;
  border-top: 1px solid rgba(206, 210, 218, 0.6);
}
footer .first-block {
  padding: 2rem 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
footer .brand {
  font-size: 1.8rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 1rem;
}
footer .logo {
  display: block;
  width: 3.4rem;
}
footer .tnc {
  color: var(--primary-color);
  font-weight: 500;
}
@media only screen and (max-width: 768px) {
  footer .first-block {
    align-items: flex-start;
    flex-direction: column;
    gap: 2rem;
  }
}
footer .second-block {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
footer .second-block .copyright {
  color: var(--black-color);
  border-top: 1px solid var(--light-color);
  padding: 2rem 0;
}

header {
  padding: 1.8rem 0;
  background: rgba(251, 252, 255, 0.92);
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(10px);
}
header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .container .left {
  display: flex;
  gap: 1rem;
  align-items: center;
}
header .brand {
  display: flex;
  align-items: center;
  font-size: 1.8rem;
  font-weight: 600;
}
header .logo {
  display: flex;
  align-items: center;
  width: 3.4rem;
}
header .nav-items li {
  font-weight: 500;
  display: inline-block;
}
header .nav-items li:not(:last-child) {
  margin-right: 1rem;
}
@media only screen and (max-width: 768px) {
  header .container {
    align-items: flex-start;
    gap: 1.6rem;
    flex-direction: column;
  }
  header .nav-items li {
    margin-bottom: 0.8rem;
  }
}

section.hero-banner {
  padding: 5rem 0 7rem;
}
section.hero-banner .container {
  display: flex;
  gap: 3.2rem;
}
@media only screen and (max-width: 768px) {
  section.hero-banner .container {
    flex-direction: column-reverse;
  }
}
section.hero-banner .container .column {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
section.hero-banner figure {
  border-radius: 8px;
  box-shadow: rgba(99, 99, 99, 0.4) 0px 4px 16px 0px;
}
section.hero-banner figure img {
  display: block;
  border-radius: 8px;
}
section.hero-banner .content {
  margin-bottom: 3.2rem;
}
section.hero-banner .content .title {
  font-weight: 700;
  font-size: 5.2rem;
  margin-bottom: 1.6rem;
  letter-spacing: 0;
}
@media only screen and (max-width: 768px) {
  section.hero-banner .content .title {
    font-size: 4rem;
  }
}
section.hero-banner .content p {
  font-size: 2rem;
  max-width: 62rem;
}
section.hero-banner .content span.appname {
  font-weight: 700;
}
section.hero-banner .social {
  margin-top: 2.4rem;
  color: #657084;
  max-width: 48rem;
}
section.hero-banner .hero-actions {
  display: flex;
  gap: 1.2rem;
  margin-top: 2.4rem;
  align-items: center;
  flex-wrap: wrap;
}
section.hero-banner .secondary-link {
  color: var(--primary-color);
  font-weight: 600;
}
section.hero-banner .product-visual {
  background: #0f172a;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  box-shadow: rgba(15, 23, 42, 0.24) 0 24px 80px;
  color: #e5e7eb;
  overflow: hidden;
}
section.hero-banner .visual-toolbar {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 1.4rem 1.6rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
section.hero-banner .visual-toolbar .dot {
  width: 0.9rem;
  height: 0.9rem;
  border-radius: 50%;
  background: #38bdf8;
}
section.hero-banner .visual-toolbar .dot:nth-child(2) {
  background: #5eead4;
}
section.hero-banner .visual-toolbar .dot:nth-child(3) {
  background: #facc15;
}
section.hero-banner .visual-toolbar .label {
  margin-left: auto;
  color: #cbd5e1;
  font-size: 1.3rem;
  font-weight: 600;
}
section.hero-banner .interview-card {
  margin: 1.6rem;
  padding: 1.8rem;
  border-radius: 12px;
  background: #ffffff;
  color: var(--dark-color);
}
section.hero-banner .participant {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.6rem;
}
section.hero-banner .participant .avatar {
  display: inline-flex;
  width: 3.8rem;
  height: 3.8rem;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  background: var(--secondary-color);
  font-weight: 700;
}
section.hero-banner .participant .meta {
  display: flex;
  flex-direction: column;
}
section.hero-banner .participant .meta span {
  color: #64748b;
  font-size: 1.3rem;
}
section.hero-banner .question {
  font-weight: 700;
  color: var(--black-color);
  margin-bottom: 1.2rem;
}
section.hero-banner .answer {
  padding: 1.2rem;
  background: #f8fafc;
  border-left: 3px solid var(--primary-color);
  border-radius: 8px;
}
section.hero-banner .insight-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
  padding: 0 1.6rem 1.6rem;
}
@media only screen and (max-width: 576px) {
  section.hero-banner .insight-grid {
    grid-template-columns: 1fr;
  }
}
section.hero-banner .insight-card {
  padding: 1.4rem;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
}
section.hero-banner .insight-card .label {
  color: #93c5fd;
  display: block;
  font-size: 1.2rem;
  margin-bottom: 0.4rem;
}
section.hero-banner .insight-card strong {
  color: #f8fafc;
}
section.hero-banner .strategy-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  padding: 0 1.6rem 1.6rem;
}
section.hero-banner .strategy-row span {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  padding: 0.5rem 1rem;
  color: #cbd5e1;
  font-size: 1.3rem;
}

section.key-benefits {
  padding: 6rem 0;
  background: #ffffff;
}
section.key-benefits .container.flex {
  display: flex;
  flex-direction: row;
  gap: 3.2rem;
}
@media only screen and (max-width: 768px) {
  section.key-benefits .container.flex {
    flex-direction: column;
  }
}
section.key-benefits .container.flex .column {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
section.key-benefits .container.flex .column:nth-child(2) {
  flex-direction: row;
  gap: 3.2rem;
}
section.key-benefits .benefits .item {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-bottom: 2.4rem;
}
section.key-benefits .benefits .material-icons {
  display: block;
  align-self: flex-start;
  color: var(--blue-color);
  background-color: var(--blue-bg-color);
  padding: 8px;
  border-radius: 10px;
}
section.key-benefits .benefits h4 {
  font-size: 2rem;
}
section.key-benefits .images-wrap {
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
}
section.key-benefits .images-wrap img {
  border-radius: 16px;
  filter: grayscale(100%);
}
section.key-benefits .workflow-panel {
  display: grid;
  gap: 1.2rem;
  width: 100%;
}
section.key-benefits .workflow-step {
  border: 1px solid rgba(206, 210, 218, 0.7);
  border-radius: 12px;
  padding: 1.8rem;
  background: #fbfcff;
  box-shadow: rgba(15, 23, 42, 0.04) 0 12px 32px;
}
section.key-benefits .workflow-step .number {
  color: var(--primary-color);
  font-weight: 700;
  font-size: 1.3rem;
  display: block;
  margin-bottom: 0.5rem;
}
section.key-benefits .workflow-step strong {
  color: var(--black-color);
  font-size: 1.8rem;
}
section.key-benefits .workflow-step p {
  margin-top: 0.4rem;
  color: #64748b;
}

section.about-section {
  padding: 6rem 0;
}
section.about-section .section-heading {
  margin-bottom: 4rem;
}
section.about-section .content {
  max-width: 80rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
section.about-section .content h3 {
  font-size: 2rem;
  margin-top: 1rem;
}

section.cta-section {
  padding: 6rem 0;
  background: #f3f8ff;
}
section.cta-section .section-heading {
  margin-bottom: 4rem;
}
section.cta-section ul.features {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin: 2rem 0;
}
section.cta-section ul.features li {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
  gap: 0.4rem;
  width: 50%;
}
@media only screen and (max-width: 768px) {
  section.cta-section ul.features li {
    width: 100%;
  }
}
section.cta-section ul.features .material-icons {
  color: var(--blue-color);
  background-color: var(--blue-bg-color);
  padding: 5px;
  border-radius: 100%;
}
section.cta-section .cta {
  display: block;
  margin: auto;
  width: fit-content;
}

section.faq-section {
  padding: 6rem 0;
}
section.faq-section .questions-list {
  max-width: 80rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
section.faq-section .questions-list .question-item {
  border: 1px solid var(--light-color);
  border-radius: 0.8rem;
  padding: 3.2rem;
}
section.faq-section .questions-list .question-item .question {
  font-weight: 600;
  margin-bottom: 1rem;
}
section.faq-section .questions-list .question-item strong {
  color: var(--primary-color);
  font-weight: 600;
}

section.article {
  --block-spacing: 2rem;
  padding: 4rem 2rem;
}
@media only screen and (max-width: 768px) {
  section.article {
    padding: 6rem 0;
  }
}
section.article a {
  color: var(--primary-color);
  font-weight: bold;
}
section.article p,
section.article h1,
section.article h2,
section.article h3 {
  margin-bottom: var(--block-spacing);
  text-wrap: balance;
}
section.article strong {
  font-weight: 700;
}
section.article ul {
  margin-bottom: var(--block-spacing);
}
section.article ul li {
  margin-left: 2rem;
  list-style-type: disc;
}
section.article h1 {
  font-size: 3.2rem;
  font-weight: 700;
}
section.article p {
  text-wrap: pretty;
}
section.article .verify {
  font-weight: 600;
  color: orange;
}