@font-face {
  font-family: "Satoshi Regular";
  src: url("./assets/fonts/Satoshi/Satoshi-Regular.otf");
}

@font-face {
  font-family: "Nunito Regular";
  src: url("./assets/fonts/Nunito/Nunito-Regular.ttf");
}

@font-face {
  font-family: "Nunito SemiBold";
  src: url("./assets/fonts/Nunito/Nunito-SemiBold.ttf");
}

@font-face {
  font-family: "Nunito ExtraLight";
  src: url("./assets/fonts/Nunito/Nunito-ExtraLight.ttf");
}

:root {
  --main-bg-color: rgb(24, 23, 29);
  --page-bg-color: rgb(40, 39, 45);
  --dark-text-color: rgb(24, 23, 29);
  --main-text-color: #ececec;
  --primary-text-color: #15cbe7;
  --secondary-text-color: #bfbfc3;
  --success-color: #52b87a;
  --warning-color: #f2c037;
  --panel-color: rgb(40, 39, 45);
  --panel-color-strong: rgb(70, 69, 75);
  --font-family-satoshi-regular: "Satoshi Regular", sans-serif;
  --font-family-nunito-regular: "Nunito Regular", sans-serif;
  --font-family-nunito-semibold: "Nunito SemiBold", sans-serif;
  --font-family-nunito-extralight: "Nunito ExtraLight", sans-serif;
  --default-horizontal-section-padding: 80px;
  --default-border-radius: 10px;
  --default-light-border: 1px solid rgba(236, 236, 236, 0.08);
}

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

html {
  scroll-behavior: smooth;
}

@keyframes scrollHintBounce {
  0%,
  100% {
    transform: translateY(0) rotate(45deg);
  }

  45% {
    transform: translateY(5px) rotate(45deg);
  }
}

@keyframes flowArrowPulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(21, 203, 231, 0);
  }

  50% {
    box-shadow: 0 0 0 5px rgba(21, 203, 231, 0.06);
  }
}

@keyframes statusPulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(242, 192, 55, 0);
  }

  50% {
    box-shadow: 0 0 0 5px rgba(242, 192, 55, 0.16);
  }
}

@keyframes historyCardFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-4px);
  }
}

body {
  min-width: 320px;
  background: var(--main-bg-color);
  color: var(--main-text-color);
  font-family: var(--font-family-nunito-regular);
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

button,
a.primary-button {
  min-height: 42px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-family: var(--font-family-nunito-regular);
  font-size: 14px;
  transition:
    background-color 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease;
}

button {
  background-color: transparent;
  color: var(--main-text-color);
}

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

header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  padding: 20px 64px;
  border-bottom: var(--default-light-border);
  background-color: rgba(24, 23, 29, 0.72);
  backdrop-filter: blur(8px);
}

.service-logo {
  display: flex;
  align-items: center;
  font-size: 26px;
  line-height: 1;
}

.service-logo-text {
  font-family: var(--font-family-satoshi-regular);
}

.service-logo-text:nth-child(2) {
  color: var(--primary-text-color);
}

.brand-name {
  white-space: nowrap;
}

.brand-name span:last-child {
  color: var(--primary-text-color);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 10px;
}

.desktop-nav button,
.mobile-menu button {
  padding: 8px 14px;
}

.desktop-nav button:hover,
.mobile-menu button:hover {
  background-color: var(--panel-color-strong);
}

.primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 7px 14px;
  border: 3px solid transparent;
  background-color: var(--primary-text-color);
  color: var(--dark-text-color);
}

.primary-button:hover {
  border-color: rgba(24, 23, 29, 0.6);
}

.primary-button img {
  width: 20px;
  height: 20px;
}

.mobile-nav {
  display: none;
}

.mobile-nav.active .mobile-nav-toggle {
  background-color: var(--primary-text-color);
}

.mobile-menu {
  position: absolute;
  top: 82px;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 0;
  overflow: hidden;
  border-bottom: var(--default-light-border);
  background-color: rgba(24, 23, 29, 0.94);
  transition: height 0.3s ease;
}

.mobile-nav.active .mobile-menu {
  height: 264px;
  padding: 10px 0;
}

.hero-section {
  position: relative;
  display: flex;
  min-height: 90vh;
  align-items: center;
  justify-content: center;
  padding: 82px var(--default-horizontal-section-padding) 0;
}

.hero-content {
  display: flex;
  width: min(920px, 100%);
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: var(--default-light-border);
  border-radius: 20px;
  background-color: var(--main-bg-color);
  color: var(--main-text-color);
  font-family: var(--font-family-nunito-extralight);
  font-size: 14px;
  padding: 8px 20px;
}

h1,
h2,
h3,
h4,
p,
span {
  overflow-wrap: anywhere;
}

.hero-content h1 {
  max-width: 760px;
  margin-top: 28px;
  font-family: var(--font-family-nunito-semibold);
  font-size: clamp(38px, 6vw, 58px);
  line-height: 1.12;
  letter-spacing: 0;
}

.hero-content h4,
.section-heading p,
.feature-card p,
.footer-info {
  color: var(--secondary-text-color);
  font-family: var(--font-family-nunito-extralight);
}

.hero-content h4 {
  max-width: 720px;
  margin-top: 20px;
  font-size: clamp(16px, 2vw, 18px);
  font-weight: 400;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
}

.hero-note {
  max-width: 520px;
  margin-top: 12px;
  color: var(--secondary-text-color);
  font-family: var(--font-family-nunito-extralight);
  font-size: 14px;
  line-height: 1.4;
  opacity: 0.72;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  display: flex;
  min-height: 0;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--secondary-text-color);
  font-size: 13px;
  transform: translateX(-50%);
}

.hero-scroll-hint:hover {
  color: var(--main-text-color);
  transform: translateX(-50%) translateY(-1px);
}

.hero-scroll-hint::after {
  content: "";
  width: 9px;
  height: 9px;
  border-right: 2px solid var(--primary-text-color);
  border-bottom: 2px solid var(--primary-text-color);
  animation: scrollHintBounce 1.8s ease-in-out infinite;
  transform: rotate(45deg);
}

.flow-section {
  padding-top: 120px;
}

.flow-widgets {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: min(100%, 1100px);
  margin-top: 58px;
}

.flow-widget {
  position: relative;
  align-self: center;
  width: min(720px, 100%);
}

.flow-widget--wide {
  width: min(900px, 100%);
}

.flow-arrow {
  position: relative;
  align-self: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: var(--panel-color);
  animation: flowArrowPulse 2.8s ease-in-out infinite;
}

.flow-arrow::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 13px;
  width: 14px;
  height: 14px;
  border-right: 2px solid var(--primary-text-color);
  border-bottom: 2px solid var(--primary-text-color);
  opacity: 0.9;
  transform: rotate(45deg);
}

.flow-widget--left {
  align-self: auto;
}

.flow-widget--right {
  align-self: auto;
}

.flow-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 18px;
  border-radius: 10px;
  background-color: var(--panel-color);
  text-align: left;
}

.flow-widget-heading {
  margin-bottom: 12px;
  text-align: center;
}

.flow-widget-heading .dashboard-subtitle {
  max-width: 620px;
  margin: 6px auto 0;
  line-height: 1.45;
}

.flow-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.flow-card-title {
  margin-bottom: 0;
  font-family: var(--font-family-nunito-semibold);
  font-size: 18px;
}

.create-job-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(220px, 1.1fr);
  gap: 18px;
}

.create-job-form,
.schema-card,
.item-fields-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.flow-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.flow-field span,
.schema-title,
.preview-label {
  color: var(--main-text-color);
  font-family: var(--font-family-nunito-semibold);
  font-size: 13px;
}

.flow-field small,
.preview-value {
  color: var(--secondary-text-color);
  font-size: 12px;
  line-height: 1.35;
}

.price-value {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  color: var(--main-text-color);
  font-family: var(--font-family-nunito-semibold);
}

.price-value span {
  flex: 0 0 auto;
  border-radius: 999px;
  background-color: rgba(82, 184, 122, 0.16);
  color: var(--success-color);
  font-family: var(--font-family-nunito-semibold);
  font-size: 11px;
  padding: 3px 7px;
}

.flow-input,
.flow-textarea,
.schema-row,
.item-fields-card,
.image-grid span {
  border-radius: var(--default-border-radius);
  background-color: var(--panel-color-strong);
}

.flow-input,
.flow-textarea,
.schema-row {
  display: flex;
  align-items: center;
  min-height: 40px;
  border: 1px solid rgb(115, 114, 120);
  border-radius: 8px;
  background-color: rgba(5, 5, 6, 0.4);
  color: var(--main-text-color);
  font-size: 14px;
  line-height: 1.35;
  user-select: none;
}

.flow-input,
.schema-row {
  padding: 0 10px;
}

.flow-textarea {
  align-items: flex-start;
  min-height: 78px;
  padding: 8px;
}

.flow-input--money {
  justify-content: space-between;
  width: min(160px, 100%);
}

.flow-input-append {
  color: var(--secondary-text-color);
  font-size: 16px;
}

.schema-card,
.item-fields-card {
  padding: 14px;
}

.schema-row {
  color: var(--main-text-color);
  font-size: 14px;
}

.jobs-table-header,
.task-row {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1.7fr) minmax(112px, 0.75fr) minmax(98px, 0.65fr) minmax(128px, 0.8fr);
  gap: 10px;
  align-items: center;
  border-radius: var(--default-border-radius);
  background-color: var(--panel-color-strong);
  padding: 8px 12px;
}

.jobs-table-header {
  color: var(--main-text-color);
  font-size: 12px;
}

.jobs-table-header p,
.task-row p {
  margin-bottom: 0;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.jobs-table-header p:nth-child(5),
.task-row-date {
  text-align: right;
}

.jobs-table-header p:nth-child(4),
.task-row-status {
  text-align: center;
}

.jobs-table-header p:nth-child(3),
.task-row p:nth-child(3) {
  text-align: center;
}

.task-row {
  color: var(--secondary-text-color);
  font-size: 12px;
}

.item-preview-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 1fr);
  gap: 18px;
}

.image-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 8px;
}

.image-grid span {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1.35;
  background: var(--panel-color-strong);
}

.image-grid img {
  width: 34px;
  height: 34px;
  opacity: 0.86;
}

.item-fields-card div + div {
  margin-top: 10px;
}

.dashboard-subtitle,
.task-row-date {
  color: var(--secondary-text-color);
  font-size: 12px;
}

.dashboard-subtitle {
  margin-top: 3px;
}

.job-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 78px;
  border-radius: 999px;
  padding: 4px 12px;
  color: var(--dark-text-color);
  font-size: 12px;
}

.job-status.is-collecting {
  background-color: var(--secondary-text-color);
}

.job-status.is-ready {
  background-color: var(--success-color);
}

.job-status.is-waiting {
  animation: statusPulse 2.2s ease-in-out infinite;
  background-color: var(--warning-color);
}

.job-status.is-error {
  background-color: #f6806d;
}

.content-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 150px var(--default-horizontal-section-padding) 0;
}

.section-heading {
  display: flex;
  max-width: 760px;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.section-heading h2 {
  margin-top: 28px;
  font-family: var(--font-family-nunito-semibold);
  font-size: clamp(32px, 5vw, 44px);
  line-height: 1.18;
  letter-spacing: 0;
}

.section-heading p {
  margin-top: 16px;
  font-size: 16px;
  line-height: 1.55;
}

.data-history-widget {
  gap: 18px;
  background-color: transparent;
  padding: 0;
}

.data-history-widget > .flow-card-header {
  justify-content: center;
  text-align: center;
}

.data-history-deck {
  position: relative;
  min-width: 0;
  --card-step-x: 30px;
  --card-step-y: 66px;
  --card-width: min(430px, calc(100% - (var(--card-step-x) * 2)));
  --deck-offset-x: max(0px, calc((100% - var(--card-width) - (var(--card-step-x) * 2)) / 2));
  min-height: 400px;
}

.data-history-card {
  position: absolute;
  left: calc(var(--deck-offset-x) + (var(--card-index) * var(--card-step-x)));
  top: calc(var(--card-index) * var(--card-step-y));
  z-index: calc(10 + var(--card-index));
  display: flex;
  width: var(--card-width);
  min-height: 252px;
  flex-direction: column;
  gap: 14px;
  padding: 16px;
  border: var(--default-light-border);
  border-radius: 10px;
  background-color: var(--panel-color-strong);
  animation: historyCardFloat 4.2s ease-in-out infinite;
  box-shadow: 0 16px 36px rgba(5, 5, 6, 0.22);
}

.data-history-card:nth-child(1) {
  --card-index: 0;
}

.data-history-card:nth-child(2) {
  --card-index: 1;
  animation-delay: 0.35s;
  opacity: 0.9;
}

.data-history-card:nth-child(3) {
  --card-index: 2;
  animation-delay: 0.7s;
  opacity: 0.82;
}

.data-history-card:not(:first-child) .data-history-card-content {
  opacity: 0.7;
}

.data-history-card-date {
  flex: 0 0 auto;
  text-align: right;
}

.data-history-card-date p {
  margin-bottom: 2px;
  color: var(--main-text-color);
  font-family: var(--font-family-nunito-semibold);
  font-size: 12px;
}

.data-history-card-date span {
  color: var(--secondary-text-color);
  font-size: 12px;
}

.data-history-card-content {
  display: grid;
  grid-template-columns: minmax(130px, 0.78fr) minmax(0, 1fr);
  gap: 14px;
}

.data-history-card-images {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 0;
}

.data-history-card-fields {
  min-width: 0;
  padding: 12px;
  background-color: rgba(5, 5, 6, 0.24);
}

.export-widget {
  gap: 10px;
}

.export-widget-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 4px;
}

.export-format-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 6px;
}

.export-format-list span {
  border-radius: 999px;
  background-color: rgba(21, 203, 231, 0.14);
  color: var(--primary-text-color);
  font-family: var(--font-family-nunito-semibold);
  font-size: 12px;
  padding: 5px 10px;
}

.export-table-header,
.export-table-row {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(86px, 0.6fr) minmax(112px, 0.75fr) minmax(138px, 0.9fr);
  gap: 10px;
  align-items: center;
  border-radius: 10px;
  background-color: var(--panel-color-strong);
  padding: 9px 12px;
}

.export-table-header {
  color: var(--main-text-color);
  font-family: var(--font-family-nunito-semibold);
  font-size: 12px;
}

.export-table-row {
  color: var(--secondary-text-color);
  font-size: 12px;
}

.export-table-header p,
.export-table-row p {
  margin-bottom: 0;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.export-table-header p:nth-child(2),
.export-table-row p:nth-child(2),
.export-table-header p:nth-child(3),
.export-table-row p:nth-child(3) {
  text-align: center;
}

.export-table-header p:nth-child(4),
.export-table-row p:nth-child(4) {
  text-align: right;
}

.feature-grid {
  display: grid;
  width: min(100%, 920px);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  margin-top: 54px;
}

.feature-card {
  position: relative;
  display: flex;
  min-height: 280px;
  flex-direction: column;
  align-items: flex-start;
  padding: 24px;
  border-radius: 10px;
  background-color: var(--panel-color);
}

.feature-card img {
  width: 76px;
  height: 76px;
  margin: 32px 0;
  padding: 14px;
  border-radius: 10px;
  background-color: var(--panel-color-strong);
}

.feature-card .feature-number {
  position: absolute;
  top: -15px;
  align-self: center;
  border-radius: 30px;
  background-color: var(--primary-text-color);
  color: var(--dark-text-color);
  font-family: var(--font-family-nunito-semibold);
  padding: 3px 20px;
}

.feature-card h3 {
  font-family: var(--font-family-nunito-semibold);
  font-size: 22px;
  font-weight: 400;
}

.feature-card p:last-child {
  margin-top: 10px;
  font-size: 16px;
  line-height: 1.48;
}

.use-cases-grid {
  display: grid;
  width: min(100%, 920px);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 48px;
}

.use-case-card {
  min-height: 132px;
  padding: 22px;
  border-radius: 10px;
  background-color: var(--panel-color);
}

.use-case-card h3 {
  color: var(--main-text-color);
  font-family: var(--font-family-nunito-semibold);
  font-size: 18px;
  line-height: 1.35;
}

.use-case-card p {
  margin-top: 10px;
  color: var(--secondary-text-color);
  font-family: var(--font-family-nunito-extralight);
  font-size: 15px;
  line-height: 1.45;
}

.pricing-calculator {
  display: grid;
  width: min(100%, 660px);
  gap: 20px;
  align-items: stretch;
  margin-top: 48px;
  padding: 24px;
  border: var(--default-light-border);
  border-radius: 10px;
  background-color: var(--panel-color);
}

.pricing-main-formula {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(150px, 0.76fr);
  align-items: start;
  gap: 10px;
}

.pricing-formula-sign {
  color: var(--secondary-text-color);
  font-family: var(--font-family-nunito-semibold);
  font-size: 22px;
  line-height: 62px;
  margin-top: 31px;
}

.pricing-input-group {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 12px;
}

.pricing-input-group label,
.pricing-result-group > span {
  color: var(--secondary-text-color);
  font-size: 14px;
  line-height: 1.35;
}

.pricing-input-control {
  display: grid;
  min-height: 62px;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(191, 191, 195, 0.24);
  border-radius: 8px;
  background-color: rgba(236, 236, 236, 0.07);
  padding: 10px 16px;
  box-shadow: inset 0 0 0 1px rgba(236, 236, 236, 0.04);
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease;
}

.pricing-input-control:focus-within {
  border-color: rgba(236, 236, 236, 0.4);
  background-color: rgba(236, 236, 236, 0.1);
  box-shadow: 0 0 0 3px rgba(236, 236, 236, 0.08);
}

.pricing-input-control input {
  min-width: 0;
  border: none;
  outline: none;
  background-color: transparent;
  color: var(--main-text-color);
  font-family: var(--font-family-nunito-semibold);
  font-size: 28px;
  line-height: 1.2;
}

.pricing-input-control input::-webkit-outer-spin-button,
.pricing-input-control input::-webkit-inner-spin-button {
  appearance: none;
  -webkit-appearance: none;
  margin: 0;
}

.pricing-input-control input[type="number"] {
  appearance: textfield;
  -moz-appearance: textfield;
}

.pricing-input-control span {
  color: var(--secondary-text-color);
  font-family: var(--font-family-nunito-semibold);
  font-size: 16px;
}

.pricing-result-group {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 12px;
  align-self: start;
}

.pricing-result {
  display: grid;
  min-width: 0;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  min-height: 62px;
  border: 1px solid rgba(191, 191, 195, 0.16);
  border-radius: 8px;
  background-color: rgba(236, 236, 236, 0.04);
  padding: 10px 16px;
  box-shadow: inset 0 0 0 1px rgba(236, 236, 236, 0.03);
}

.pricing-result strong {
  color: var(--main-text-color);
  font-family: var(--font-family-nunito-semibold);
  font-size: 28px;
  line-height: 1.2;
  word-break: break-word;
}

.pricing-result span {
  color: var(--secondary-text-color);
  font-family: var(--font-family-nunito-semibold);
  font-size: 16px;
}

.pricing-hint {
  margin-top: -4px;
  color: var(--secondary-text-color);
  font-size: 11px;
  line-height: 1.4;
}

.faq-list {
  display: grid;
  width: min(100%, 920px);
  gap: 14px;
  margin-top: 48px;
}

.faq-item {
  padding: 22px 24px;
  border-radius: 10px;
  background-color: var(--panel-color);
}

.faq-item h3 {
  color: var(--main-text-color);
  font-family: var(--font-family-nunito-semibold);
  font-size: 18px;
  line-height: 1.35;
}

.faq-item p {
  margin-top: 10px;
  color: var(--secondary-text-color);
  font-family: var(--font-family-nunito-extralight);
  font-size: 16px;
  line-height: 1.5;
}

footer {
  position: relative;
  overflow: hidden;
  margin-top: 110px;
  padding: 32px 64px;
  border-top: var(--default-light-border);
  background-color: rgba(24, 23, 29, 0.72);
  backdrop-filter: blur(8px);
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.footer-column {
  display: flex;
  flex-direction: column;
}

.footer-details {
  align-items: center;
  text-align: center;
}

.footer-legal {
  gap: 8px;
}

.footer-logo {
  font-family: var(--font-family-nunito-semibold);
  font-size: 26px;
}

.footer-logo span:last-child {
  color: var(--primary-text-color);
}

.footer-info {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}

a.footer-info:hover {
  color: var(--primary-text-color);
}

@media (max-width: 980px) {
  .desktop-nav {
    display: none;
  }

  .mobile-nav {
    display: flex;
  }
}

@media (max-width: 820px) {
  header {
    min-height: 72px;
    padding: 14px 32px;
  }

  .desktop-nav {
    display: none;
  }

  .mobile-nav {
    display: flex;
  }

  .mobile-menu {
    top: 72px;
  }

  .hero-section {
    padding: 72px 24px 0;
  }

  .content-section {
    padding: 110px 24px 0;
  }

  .flow-section {
    padding-top: 96px;
  }

  .flow-widgets {
    gap: 34px;
  }

  .flow-widget,
  .flow-widget--left,
  .flow-widget--right {
    align-self: auto;
    width: 100%;
  }

  .create-job-grid,
  .item-preview-grid {
    grid-template-columns: 1fr;
  }

  .jobs-table-header,
  .task-row {
    grid-template-columns: minmax(0, 1fr) minmax(92px, auto);
  }

  .jobs-table-header p:nth-child(2),
  .jobs-table-header p:nth-child(3),
  .jobs-table-header p:nth-child(5),
  .task-row p:nth-child(2),
  .task-row p:nth-child(3),
  .task-row-date,
  .export-table-header p:nth-child(4),
  .export-table-row p:nth-child(4) {
    display: none;
  }

  .export-table-header,
  .export-table-row {
    grid-template-columns: minmax(0, 1fr) minmax(86px, 0.48fr) minmax(112px, 0.65fr);
  }

  .feature-grid,
  .use-cases-grid,
  .pricing-calculator,
  .pricing-main-formula {
    grid-template-columns: 1fr;
  }

  .pricing-formula-sign {
    line-height: 1;
    margin-top: 0;
  }

  .data-history-deck {
    --card-step-x: 22px;
    min-height: 400px;
  }

  .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-column {
    align-items: center;
  }
}

@media (max-width: 620px) {
  .data-history-deck {
    display: flex;
    min-height: 0;
    flex-direction: column;
    --card-width: 100%;
  }

  .data-history-card {
    position: relative;
    animation: none;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    width: 100%;
    min-height: 0;
  }

  .data-history-card + .data-history-card {
    margin-top: -148px;
  }

  .data-history-card:nth-child(n + 2) {
    transform: translateX(6px);
  }

  .data-history-card:nth-child(n + 3) {
    transform: translateX(12px);
  }

  .data-history-card-content {
    grid-template-columns: 1fr;
  }

  .data-history-card:not(:first-child) .data-history-card-content {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
  }
}

@media (max-width: 480px) {
  .hero-section {
    padding-top: 112px;
    padding-bottom: 40px;
  }

  .hero-content h1 {
    font-size: 34px;
  }

  .hero-actions {
    width: 100%;
  }

  .hero-actions .primary-button {
    width: 100%;
  }

  .flow-card {
    padding: 14px;
  }

  .flow-card-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .create-job-grid {
    gap: 12px;
  }

  .export-widget-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .export-format-list {
    justify-content: flex-start;
  }

  .export-table-header,
  .export-table-row {
    grid-template-columns: minmax(0, 1fr) minmax(82px, auto);
  }

  .export-table-header p:nth-child(3),
  .export-table-row p:nth-child(3) {
    display: none;
  }

  .feature-card {
    min-height: 0;
  }

  .pricing-calculator {
    padding: 18px;
  }

  .pricing-input-control {
    min-height: 58px;
    padding: 10px 14px;
  }

  .pricing-result {
    min-height: 58px;
    padding: 10px 14px;
  }

  .pricing-input-control input {
    font-size: 24px;
  }

  .pricing-result strong {
    font-size: 24px;
  }

  footer {
    padding: 30px 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
