/* #region Variables */
:root {
  --color-bg: #f5f6fd;
  --color-bg-soft: #f9fafe;
  --color-bg-tint: #f5f7ff;
  --color-white: #ffffff;
  --color-cream: #f3f4fb;
  --color-text: #0b0d14;
  --color-text-strong: #151821;
  --color-muted: #505768;
  --color-label: #747c8e;
  --color-label-light: #979eac;
  --color-border: #e2e5ed;
  --color-border-strong: #d3d8e3;
  --color-primary: #3f6ff5;
  --color-primary-deep: #315fe4;
  --color-primary-soft: #edf2ff;
  --color-primary-mid: #afc1ff;
  --color-highlight: #3f6ff5;
  --color-lime: #b8ff22;
  --color-green: #20c969;
  --color-green-deep: #139f50;
  --color-green-soft: #eafbf1;
  --color-pink: #ff4fb8;
  --color-orange: #f5a623;
  --color-warn: #a86900;
  --color-warn-soft: #fff7e6;
  --color-dark: #0b0d14;
  --color-red-dot: #ff6467;
  --color-yellow-dot: #fdc700;
  --color-green-dot: #05df72;

  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-2xl: 28px;
  --radius-3xl: 30px;
  --radius-pill: 999px;

  --shadow-sm: 0 8px 24px rgb(11 13 20 / 6%);
  --shadow-md: 0 16px 40px rgb(11 13 20 / 10%);
  --shadow-glow: 0 12px 32px rgb(63 111 245 / 28%);

  --font: 'Inter', system-ui, sans-serif;
  --container: 1280px;
}
/* #endregion */

/* #region Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--font);
  font-weight: 400;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: inherit;
  text-decoration: none;
}
ul {
  list-style: none;
}
button {
  font: inherit;
  border: none;
  background: none;
  cursor: pointer;
}
/* #endregion */

/* #region Layout */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 96px 0;
}

.section--cream {
  background: var(--color-cream);
}

.section__title {
  font-size: 52px;
  font-weight: 900;
  text-align: center;
  letter-spacing: -1.6px;
  line-height: 1.15;
  color: var(--color-text);
}

.section__title--left {
  text-align: left;
  font-size: 42px;
  letter-spacing: -1.2px;
  max-width: 640px;
}

.section__subtitle {
  font-size: 17px;
  font-weight: 400;
  text-align: center;
  color: var(--color-muted);
  margin: 16px auto 0;
  max-width: 620px;
  line-height: 1.5;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  color: var(--color-primary);
  line-height: 17px;
}

.eyebrow--center {
  display: flex;
  justify-content: center;
  margin-bottom: 16px;
}

.eyebrow--lime {
  color: var(--color-lime);
  letter-spacing: 1.5px;
}

.eyebrow__icon {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
}

.text-highlight {
  color: var(--color-highlight);
}
/* #endregion */

/* #region Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  font-size: 14px;
  line-height: 20px;
  border-radius: var(--radius-md);
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease,
    background 0.15s ease;
  white-space: nowrap;
}

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

.btn--primary {
  background: var(--color-primary);
  color: var(--color-white);
  box-shadow: var(--shadow-glow);
}

.btn--outline {
  background: var(--color-white);
  color: var(--color-text-strong);
  border: 1px solid var(--color-border-strong);
}

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

.btn--ghost {
  background: transparent;
  color: var(--color-white);
  border: 1px solid rgb(255 255 255 / 35%);
}

.btn--nav {
  padding: 12px 20px;
  border-radius: var(--radius-md);
}

.btn--nav.btn--primary {
  font-weight: 700;
}

.btn--nav.btn--outline {
  font-weight: 600;
}

.btn--hero {
  padding: 15px 28px;
  font-size: 16px;
  line-height: 24px;
  border-radius: var(--radius-lg);
}

.btn--mode {
  padding: 12px 20px;
  width: fit-content;
}

.btn--block {
  width: 100%;
  padding: 14px 24px;
}

.btn__play {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}
/* #endregion */

/* #region Announcement */
.announce {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 8px 40px;
  background: var(--color-dark);
  color: var(--color-white);
}

.announce.is-hidden {
  display: none;
}

.announce__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  text-align: center;
}

.announce__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 2px 8px;
  border-radius: var(--radius-pill);
  background: var(--color-lime);
  color: var(--color-dark);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.9px;
  text-transform: uppercase;
}

.announce__text {
  font-size: 14px;
  line-height: 20px;
  opacity: 0.9;
}

.announce__link {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-lime);
  line-height: 20px;
}

.announce__dismiss {
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  color: rgb(255 255 255 / 55%);
  font-size: 18px;
  line-height: 1;
  width: 24px;
  height: 24px;
}
/* #endregion */

/* #region Navigation */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgb(245 246 253 / 94%);
  border-bottom: 1px solid rgb(226 229 237 / 80%);
  backdrop-filter: blur(12px);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.nav__logo {
  display: flex;
  align-items: center;
}

.nav__logo-image {
  display: block;
  width: auto;
  height: 32px;
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav__links {
  display: flex;
  gap: 28px;
  margin-right: 8px;
}

.nav__link {
  font-size: 15px;
  font-weight: 600;
  color: var(--color-muted);
  line-height: 23px;
}

.nav__link:hover {
  color: var(--color-text);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
}
/* #endregion */

/* #region Hero */
.hero {
  position: relative;
  padding: 80px 0 64px;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 85% 80%,
      rgb(184 255 34 / 6%) 0%,
      transparent 70%
    ),
    radial-gradient(
      circle at 15% 30%,
      rgb(63 111 245 / 9%) 0%,
      transparent 70%
    ),
    var(--color-bg);
}

.hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 530px) minmax(0, 1fr);
  gap: 48px;
  align-items: center;
}

.hero__title {
  margin-top: 16px;
  font-size: 72px;
  font-weight: 900;
  letter-spacing: -2.5px;
  line-height: 1.04;
}

.hero__title-line {
  display: block;
}

.hero__subtitle {
  margin-top: 24px;
  font-size: 18px;
  line-height: 30px;
  color: var(--color-muted);
  max-width: 520px;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero__note {
  margin-top: 16px;
  font-size: 13px;
  color: var(--color-label-light);
}

.hero__proof {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 28px;
}

.avatar-stack {
  display: flex;
  flex-shrink: 0;
}

.avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  color: var(--color-white);
  margin-left: -8px;
}

.avatar:first-child {
  margin-left: 0;
}

.avatar--a {
  background: var(--color-primary);
}
.avatar--b {
  background: var(--color-pink);
}
.avatar--c {
  background: var(--color-green);
}
.avatar--d {
  background: var(--color-orange);
}

.hero__proof-text {
  font-size: 13px;
  line-height: 19px;
  color: var(--color-muted);
  max-width: 414px;
}

.hero__visual {
  position: relative;
  min-height: 440px;
}

.mock-window {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-3xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.mock-window__chrome {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 16px;
  background: var(--color-bg-soft);
  border-bottom: 1px solid var(--color-border);
}

.mock-window__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  opacity: 0.7;
}

.mock-window__dot--r {
  background: var(--color-red-dot);
}
.mock-window__dot--y {
  background: var(--color-yellow-dot);
}
.mock-window__dot--g {
  background: var(--color-green-dot);
}

.mock-window__url {
  margin-left: auto;
  margin-right: auto;
  padding: 4px 16px;
  border-radius: var(--radius-pill);
  background: var(--color-border);
  font-size: 11px;
  color: var(--color-label);
}

.mock-window__body {
  display: grid;
  grid-template-columns: 140px 1fr;
  min-height: 340px;
}

.mock-side {
  background: #f5f7ff;
  border-right: 1px solid var(--color-border);
  padding: 12px;
}

.mock-side__brand {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 16px;
  font-size: 11px;
  font-weight: 900;
  color: var(--color-primary);
}

.mock-side__mark {
  width: 20px;
  height: 20px;
  border-radius: 4px;
  object-fit: cover;
  object-position: left center;
  flex-shrink: 0;
}

.mock-side__item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  font-size: 12px;
  font-weight: 600;
  color: var(--color-muted);
  margin-bottom: 4px;
}

.mock-side__item img {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
  opacity: 0.7;
}

.mock-side__item--active {
  background: var(--color-primary);
  color: var(--color-white);
}

.mock-side__item--active img {
  filter: brightness(0) invert(1);
  opacity: 1;
}

.mock-main {
  padding: 20px;
}

.mock-main__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.mock-main__head h3 {
  font-size: 15px;
  font-weight: 700;
}

.mock-publish {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.mock-video {
  height: 104px;
  border-radius: 12px;
  background: linear-gradient(135deg, #0b0d14, #1a1d2e);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: rgb(255 255 255 / 40%);
  font-size: 8px;
}

.mock-video__play {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgb(63 111 245 / 20%);
  position: relative;
}

.mock-video__play::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 55%;
  transform: translate(-50%, -50%);
  border-style: solid;
  border-width: 5px 0 5px 8px;
  border-color: transparent transparent transparent var(--color-primary);
}

.mock-platforms {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mock-platforms li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
}

.mock-platforms img {
  width: 18px;
  height: 18px;
  border-radius: 4px;
  flex-shrink: 0;
}

.mock-platforms li > span:first-of-type {
  flex: 1;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 2px 8px;
  border-radius: var(--radius-pill);
  font-size: 9px;
  font-weight: 700;
  line-height: 14px;
}

.status-pill--ok {
  background: var(--color-green-soft);
  color: var(--color-green-deep);
}

.status-pill--source {
  background: var(--color-primary-soft);
  color: var(--color-primary-deep);
}

.status-pill--warn {
  background: var(--color-warn-soft);
  color: var(--color-warn);
}

.status-pill--muted {
  background: #f2f4f7;
  color: var(--color-muted);
}

.mock-progress__labels {
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  font-weight: 600;
  color: var(--color-muted);
  margin-bottom: 8px;
}

.mock-progress__track {
  height: 6px;
  border-radius: var(--radius-pill);
  background: var(--color-primary-soft);
  overflow: hidden;
}

.mock-progress__fill {
  width: 91%;
  height: 100%;
  background: var(--color-primary);
  border-radius: var(--radius-pill);
}

.float-card {
  position: absolute;
  border-radius: 18px;
  box-shadow: var(--shadow-md);
}

.float-card--sync {
  top: -16px;
  right: -8px;
  width: 176px;
  padding: 16px;
  background: linear-gradient(135deg, #315fe4, #4f7cf7);
  color: var(--color-white);
}

.float-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.live-badge {
  display: inline-flex;
  align-items: center;
  padding: 2px 8px;
  border-radius: var(--radius-pill);
  background: var(--color-lime);
  color: var(--color-dark);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: none;
}

.float-card__title {
  margin-top: 10px;
  font-size: 11px;
  font-weight: 600;
}

.float-card__sub {
  margin-top: 4px;
  font-size: 10px;
  opacity: 0.9;
}

.float-card__icons {
  display: flex;
  gap: 6px;
  margin-top: 12px;
}

.float-card__icons img {
  width: 16px;
  height: 16px;
  border-radius: 4px;
}

.float-card--creator {
  left: -24px;
  bottom: 12px;
  width: 168px;
  overflow: hidden;
  background: var(--color-dark);
  color: var(--color-white);
}

.float-card__photo {
  position: relative;
  height: 110px;
  overflow: hidden;
}

.float-card__photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.float-card__photo-treatment {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgb(11 13 20 / 0%) 30%,
    rgb(11 13 20 / 72%) 100%
  );
  pointer-events: none;
}

.float-card__photo-meta {
  position: absolute;
  left: 12px;
  bottom: 10px;
  z-index: 1;
  display: flex;
  flex-direction: column;
}

.float-card__photo-meta strong {
  font-size: 14px;
  font-weight: 900;
}

.float-card__photo-meta span {
  font-size: 9px;
  opacity: 0.6;
}

.float-card__creator-body {
  padding: 10px 12px 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.float-card__creator-body strong {
  font-size: 10px;
}

.float-card__creator-body span {
  font-size: 9px;
  font-weight: 600;
  color: var(--color-primary);
}
/* #endregion */

/* #region Platforms */
.platforms {
  padding: 0 0 32px;
}

.platforms__bar {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 18px 25px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
}

.platforms__bar > p {
  font-size: 13px;
  font-weight: 600;
  line-height: 20px;
  color: var(--color-muted);
  flex-shrink: 0;
  max-width: 359px;
}

.platforms__divider {
  flex: 1 1 auto;
  min-width: 24px;
  height: 1px;
  background: var(--color-border);
  align-self: center;
}

.platforms__list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  flex-shrink: 0;
}

.platforms__list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
}

.platforms__list img {
  width: 22px;
  height: 22px;
  border-radius: 6px;
}
/* #endregion */

/* #region Stats */
.stats {
  padding: 24px 0 64px;
}

.stats__intro {
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-muted);
  margin-bottom: 20px;
}

.stats__card {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.stats__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 36px 16px;
  text-align: center;
  border-right: 1px solid var(--color-border);
}

.stats__item:last-child {
  border-right: none;
}

.stats__value {
  font-size: 44px;
  font-weight: 900;
  letter-spacing: -1px;
  line-height: 1;
}

.stats__value--blue {
  color: var(--color-primary);
}

.stats__value--pink {
  color: var(--color-pink);
}

.stats__label {
  font-size: 13px;
  color: var(--color-muted);
}
/* #endregion */

/* #region Mode cards */
.mode-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 48px;
}

.mode-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-2xl);
  padding: 32px;
  display: flex;
  flex-direction: column;
}

.mode-card--auto {
  background: linear-gradient(160deg, #eef2ff 0%, #f5f7ff 100%);
  border-color: var(--color-primary-mid);
}

.mode-tag {
  display: inline-flex;
  align-self: flex-start;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  font-size: 11px;
  font-weight: 700;
  margin-bottom: 16px;
}

.mode-tag--manual {
  background: var(--color-primary-soft);
  color: var(--color-primary-deep);
}

.mode-tag--auto {
  background: var(--color-lime);
  color: var(--color-dark);
  font-weight: 900;
}

.mode-card__title {
  font-size: 22px;
  font-weight: 900;
  line-height: 33px;
  margin-bottom: 10px;
}

.mode-card__desc {
  font-size: 15px;
  line-height: 22px;
  color: var(--color-muted);
  margin-bottom: 24px;
}

.mode-visual {
  background: var(--color-bg-tint);
  border-radius: var(--radius-xl);
  padding: 20px;
  margin-bottom: 20px;
}

.mode-visual--auto {
  background: rgb(255 255 255 / 65%);
}

.upload-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 12px;
}

.upload-row__icon {
  width: 40px;
  height: 48px;
  border-radius: 8px;
  background: var(--color-primary-soft);
  display: flex;
  align-items: center;
  justify-content: center;
}

.upload-row strong {
  display: block;
  font-size: 12px;
}

.upload-row span {
  font-size: 10px;
  color: var(--color-label);
}

.mode-visual__arrow {
  display: block;
  text-align: center;
  color: var(--color-primary);
  font-size: 18px;
  padding: 10px 0;
}

.platform-chips {
  display: flex;
  justify-content: space-between;
  gap: 8px;
}

.platform-chip {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  font-size: 8px;
  color: var(--color-label);
}

.platform-chip img {
  width: 26px;
  height: 26px;
  border-radius: 6px;
}

.trigger-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 12px;
}

.trigger-row img {
  width: 22px;
  height: 22px;
  border-radius: 6px;
}

.trigger-row strong {
  display: block;
  font-size: 12px;
}

.trigger-row span:not(.status-pill) {
  font-size: 10px;
  color: var(--color-label);
}

.trigger-row .status-pill {
  margin-left: auto;
}

.sync-line {
  font-size: 10px;
  font-weight: 500;
  color: var(--color-muted);
  padding: 10px 0 10px 12px;
  border-left: 1px solid var(--color-primary-mid);
  margin: 8px 0 8px 12px;
}

.dest-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.dest {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-size: 10px;
  font-weight: 600;
}

.dest img {
  width: 17px;
  height: 17px;
  border-radius: 4px;
}

.dest span {
  flex: 1;
}

.dest--done {
  background: var(--color-green-soft);
  border-color: rgb(32 201 105 / 20%);
}

.mode-card__check {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-muted);
  margin-bottom: 20px;
}

.mode-card__perks {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 16px;
  margin-bottom: 20px;
  font-size: 11px;
  font-weight: 600;
  color: var(--color-muted);
}

.mode-card__note {
  margin-top: 12px;
  font-size: 11px;
  color: var(--color-label);
}
/* #endregion */

/* #region Auto Sync dark */
.autosync {
  padding: 16px 0;
  color: var(--color-white);
}

.autosync__panel {
  max-width: 1360px;
}

.autosync__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  background: var(--color-dark);
  border-radius: 32px;
  padding: 80px 64px;
}

.autosync__title {
  margin-top: 12px;
  font-size: 44px;
  font-weight: 900;
  letter-spacing: -1.2px;
  line-height: 1.1;
}

.autosync__desc {
  margin-top: 24px;
  font-size: 16px;
  line-height: 26px;
  color: rgb(255 255 255 / 57%);
}

.autosync__list {
  margin: 28px 0 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.autosync__list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: rgb(255 255 255 / 77%);
}

.autosync__list li::before {
  content: '';
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgb(184 255 34 / 15%);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M3 6.5l2 2 4-4.5' stroke='%23b8ff22' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px;
  flex-shrink: 0;
}

.activity-card {
  background: rgb(255 255 255 / 4%);
  border: 1px solid rgb(255 255 255 / 8%);
  border-radius: 24px;
  padding: 25px;
}

.activity-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.activity-card__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  color: rgb(255 255 255 / 40%);
}

.activity-card__running {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  background: rgb(184 255 34 / 15%);
  color: var(--color-lime);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 1px;
  line-height: 14px;
  white-space: nowrap;
}

.activity-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 14px;
  border-radius: 12px;
  background: rgb(255 255 255 / 4%);
  border: 1px solid rgb(255 255 255 / 4%);
  font-size: 12px;
  font-weight: 600;
  color: rgb(255 255 255 / 80%);
}

.activity-row img {
  width: 18px;
  height: 18px;
  border-radius: 4px;
  flex-shrink: 0;
}

.activity-row__name {
  flex: 1;
  min-width: 0;
}

.activity-row--trigger {
  background: rgb(255 255 255 / 8%);
  border-color: transparent;
  border-radius: 14px;
  padding: 14px;
  gap: 12px;
}

.activity-row--trigger > img {
  width: 26px;
  height: 26px;
}

.activity-row__meta {
  flex: 1;
  min-width: 0;
}

.activity-row--trigger strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  line-height: 20px;
  color: var(--color-white);
}

.activity-row--trigger .activity-row__meta span {
  display: block;
  font-size: 11px;
  font-weight: 400;
  line-height: 17px;
  color: rgb(255 255 255 / 45%);
}

.live-badge--trigger {
  margin-left: auto;
  flex-shrink: 0;
  padding: 2px 8px;
  font-size: 9px;
  line-height: 14px;
}

.activity-processing {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 48px;
  padding: 0 0 0 8px;
}

.activity-processing__rail {
  width: 1px;
  height: 28px;
  background: rgb(63 111 245 / 40%);
  flex-shrink: 0;
}

.activity-processing__text {
  margin: 0;
  font-size: 11px;
  font-weight: 600;
  line-height: 17px;
  color: #4f7cf7;
}

.activity-processing__icon {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
  filter: drop-shadow(0 0 4px rgb(79 124 247 / 55%));
}

.activity-destinations {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.activity-row--done {
  background: rgb(33 201 106 / 8%);
  border-color: rgb(33 201 105 / 18%);
}

.activity-row__check {
  width: 11px;
  height: 11px;
  border-radius: 0;
}

.status-text {
  font-size: 10px;
  font-weight: 400;
  line-height: 15px;
  color: rgb(255 255 255 / 28%);
  flex-shrink: 0;
}

.status-text--ok {
  color: var(--color-green);
  font-weight: 600;
}

.status-time {
  font-size: 10px;
  font-weight: 400;
  line-height: 15px;
  color: rgb(255 255 255 / 28%);
  flex-shrink: 0;
}

.activity-card__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgb(255 255 255 / 8%);
  font-size: 11px;
  font-weight: 400;
  line-height: 17px;
  color: rgb(255 255 255 / 30%);
}

.activity-card__synced {
  color: var(--color-orange);
  font-weight: 700;
  flex-shrink: 0;
}
/* #endregion */

/* #region Features */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.feature-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 28px;
}

.feature-card__icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--color-primary-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.feature-card__icon img {
  width: 16px;
  height: 16px;
}

.feature-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 14px;
  line-height: 21px;
  color: var(--color-muted);
}
/* #endregion */

/* #region Creator */
.creator-story {
  padding: 16px 0 48px;
}

.creator-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 30px;
  overflow: hidden;
}

.creator-card__media {
  position: relative;
  min-height: 451px;
}

.creator-card__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.creator-card__treatment {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgb(11 13 20 / 0%) 40%,
    rgb(11 13 20 / 65%) 100%
  );
  pointer-events: none;
}

.creator-card__verified {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 13px;
  border-radius: 10px;
  background: rgb(255 255 255 / 12%);
  border: 1px solid rgb(255 255 255 / 15%);
  color: var(--color-white);
  font-size: 11px;
  font-weight: 700;
  line-height: 17px;
}

.creator-card__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-green);
  flex-shrink: 0;
}

.creator-card__followers {
  position: absolute;
  left: 24px;
  bottom: 24px;
  z-index: 1;
  color: var(--color-white);
}

.creator-card__followers strong {
  display: block;
  font-size: 28px;
  font-weight: 900;
  line-height: 42px;
}

.creator-card__followers span {
  display: block;
  font-size: 13px;
  font-weight: 400;
  line-height: 20px;
  color: rgb(255 255 255 / 65%);
}

.creator-card__body {
  padding: 48px;
  display: flex;
  flex-direction: column;
}

.creator-card__eyebrow {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--color-primary);
  line-height: 17px;
}

.creator-card__title {
  margin-top: 12px;
  font-size: 30px;
  font-weight: 900;
  line-height: 45px;
  letter-spacing: 0;
  color: var(--color-text);
}

.creator-card__quote {
  margin-top: 24px;
  padding-left: 20px;
  border-left: 2px solid var(--color-primary-soft);
  font-size: 16px;
  font-style: italic;
  font-weight: 400;
  line-height: 27px;
  color: var(--color-muted);
}

.creator-card__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 24px;
}

.creator-card__stat {
  padding: 12px;
  background: var(--color-bg-tint);
  border-radius: 14px;
  text-align: center;
}

.creator-card__stat strong {
  display: block;
  font-size: 22px;
  font-weight: 900;
  line-height: 33px;
  color: var(--color-primary);
}

.creator-card__stat span {
  display: block;
  margin-top: 0;
  font-size: 10px;
  font-weight: 400;
  line-height: 15px;
  color: var(--color-muted);
}

.creator-card__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.btn--creator {
  height: 40px;
  padding: 0 20px;
  border-radius: 12px;
  font-size: 14px;
}

.creator-card__more {
  font-size: 13px;
  font-weight: 600;
  line-height: 20px;
  color: var(--color-primary);
}
/* #endregion */

/* #region Steps */
.steps-section__title {
  font-size: 48px;
  letter-spacing: -1.4px;
  line-height: 72px;
}

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

.step {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 22px;
  padding: 29px 29px 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.step__num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--color-primary-soft);
  font-size: 18px;
  font-weight: 900;
  line-height: 28px;
  color: var(--color-primary);
}

.step__visual {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
  min-height: 48px;
}

.step__visual--platforms {
  gap: 8px;
}

.step__visual--platforms img {
  width: 26px;
  height: 26px;
  border-radius: 6px;
}

.step__visual--modes {
  gap: 8px;
}

.step__mode {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 28px;
  padding: 0 12px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  line-height: 16px;
  white-space: nowrap;
}

.step__mode--manual {
  background: var(--color-primary-soft);
  color: var(--color-primary-deep);
  font-weight: 700;
}

.step__mode--auto {
  background: var(--color-lime);
  color: var(--color-dark);
  font-weight: 900;
}

.step__visual--published {
  gap: 12px;
  align-items: flex-start;
}

.step__dest {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.step__dest > img:first-child {
  width: 22px;
  height: 22px;
  border-radius: 5px;
}

.step__check {
  width: 9px;
  height: 9px;
}

.step h3 {
  margin-top: 20px;
  font-size: 17px;
  font-weight: 700;
  line-height: 26px;
  color: var(--color-text);
}

.step p {
  margin-top: 8px;
  font-size: 14px;
  line-height: 22px;
  color: var(--color-muted);
  max-width: 353px;
}

.steps__cta {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.btn--steps {
  height: 54px;
  padding: 0 32px;
  border-radius: 16px;
  font-size: 16px;
  line-height: 24px;
}
/* #endregion */

/* #region Pricing */
.pricing-section__title {
  font-size: 48px;
  letter-spacing: -1.4px;
  line-height: 72px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 860px;
  margin: 48px auto 0;
  align-items: start;
}

.pricing-card {
  position: relative;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 28px;
  padding: 41px;
  display: flex;
  flex-direction: column;
}

.pricing-card--pro {
  background: linear-gradient(160deg, #315fe4 0%, #4f7cf7 100%);
  border-color: transparent;
  padding-bottom: 40px;
  min-height: 565px;
}

.pricing-card__ribbon {
  position: absolute;
  top: -12px;
  right: 24px;
  display: inline-flex;
  align-items: center;
  height: 28px;
  padding: 0 16px;
  background: var(--color-lime);
  color: var(--color-dark);
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 900;
  line-height: 16px;
}

.pricing-card__badge {
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  height: 25px;
  padding: 0 12px;
  border-radius: var(--radius-pill);
  background: #f2f4f7;
  color: var(--color-muted);
  font-size: 11px;
  font-weight: 700;
  line-height: 17px;
}

.pricing-card__badge--pro {
  background: rgb(255 255 255 / 18%);
  color: var(--color-white);
}

.pricing-card__name {
  margin-top: 16px;
  font-size: 26px;
  font-weight: 900;
  line-height: 39px;
  color: var(--color-text);
}

.pricing-card--pro .pricing-card__name {
  color: var(--color-white);
}

.pricing-card__price {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  margin-top: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
  color: var(--color-label);
}

.pricing-card__price span {
  font-size: 38px;
  font-weight: 900;
  line-height: 57px;
  color: var(--color-text);
  letter-spacing: 0;
}

.pricing-card--pro .pricing-card__price {
  color: rgb(255 255 255 / 60%);
}

.pricing-card--pro .pricing-card__price span {
  color: var(--color-white);
}

.pricing-card__desc,
.pricing-card__trial {
  margin-top: 4px;
  font-size: 13px;
  font-weight: 400;
  line-height: 20px;
  color: var(--color-muted);
}

.pricing-card--pro .pricing-card__trial {
  color: rgb(255 255 255 / 65%);
  font-weight: 400;
}

.feature-list {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 24px 0 28px;
}

.feature-list li {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
  color: var(--color-muted);
  border: none;
}

.feature-list li::before {
  content: '';
  width: 16px;
  height: 16px;
  margin-top: 2px;
  border-radius: 50%;
  background-color: var(--color-green-soft);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 9 9'%3E%3Cpath d='M1.8 4.7L3.6 6.5L7.2 2.7' stroke='%2320c969' stroke-width='1.2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 9px;
  flex-shrink: 0;
}

.feature-list--pro li {
  color: rgb(255 255 255 / 88%);
}

.feature-list--pro li::before {
  background-color: rgb(184 255 34 / 25%);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 9 9'%3E%3Cpath d='M1.8 4.7L3.6 6.5L7.2 2.7' stroke='%230b0d14' stroke-width='1.2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.btn--pricing,
.btn--pricing-pro {
  width: 100%;
  height: 44px;
  padding: 0 20px;
  border-radius: 14px;
  font-size: 14px;
  line-height: 20px;
  margin-top: auto;
}

.btn--pricing-pro {
  background: var(--color-white);
  color: var(--color-primary-deep);
}

.pricing__footnote {
  text-align: center;
  margin-top: 24px;
  font-size: 13px;
  font-weight: 400;
  line-height: 20px;
  color: var(--color-label-light);
}
/* #endregion */

/* #region FAQ */
.faq {
  max-width: 860px;
}

.faq__title {
  font-size: 42px;
  font-weight: 900;
  letter-spacing: -1.2px;
  line-height: 63px;
  text-align: center;
  color: var(--color-text);
}

.faq__list {
  display: flex;
  flex-direction: column;
  margin-top: 48px;
}

.faq__item {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--color-border);
  border-radius: 0;
  padding: 0;
}

.faq__item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 64px;
  padding: 20px 0;
  font-size: 15px;
  font-weight: 600;
  line-height: 23px;
  color: var(--color-text);
  position: relative;
}

.faq__item summary::-webkit-details-marker {
  display: none;
}

.faq__item summary::after {
  content: '';
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  border: 1px solid var(--color-border-strong);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 11 11' fill='none'%3E%3Cpath d='M2.3 5.5H8.7' stroke='%230b0d14' stroke-width='1.2' stroke-linecap='round'/%3E%3Cpath d='M5.5 2.3V8.7' stroke='%230b0d14' stroke-width='1.2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 11px;
}

.faq__item[open] summary::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 11 11' fill='none'%3E%3Cpath d='M2.3 5.5H8.7' stroke='%230b0d14' stroke-width='1.2' stroke-linecap='round'/%3E%3C/svg%3E");
}

.faq__item p {
  padding: 0 48px 20px 0;
  font-size: 14px;
  line-height: 22px;
  color: var(--color-muted);
}
/* #endregion */

/* #region Final CTA */
.ready-section {
  padding: 24px 0 48px;
}

.ready-section__panel {
  max-width: 1360px;
}

.ready-section__card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #315fe4 0%, #4f7cf7 100%);
  border-radius: 32px;
  padding: 80px 64px;
  text-align: center;
  color: var(--color-white);
  min-height: 503px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ready-section__icon {
  position: absolute;
  width: 56px;
  height: 56px;
  border-radius: 14px;
  pointer-events: none;
  opacity: 0.18;
}

.ready-section__icon--tl {
  top: 20px;
  left: 40px;
}

.ready-section__icon--tr {
  top: 20px;
  right: 40px;
}

.ready-section__icon--bl {
  bottom: 20px;
  left: 40px;
}

.ready-section__icon--br {
  bottom: 20px;
  right: 40px;
}

.ready-section__content {
  position: relative;
  z-index: 1;
  max-width: 580px;
  margin: 0 auto;
}

.ready-section__eyebrow {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--color-lime);
  line-height: 15px;
}

.ready-section__title {
  margin-top: 12px;
  font-size: 50px;
  font-weight: 900;
  letter-spacing: -1.6px;
  line-height: 54px;
  color: var(--color-white);
}

.ready-section__desc {
  margin-top: 20px;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: rgb(255 255 255 / 68%);
}

.ready-section__actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.ready-section__btn {
  height: 54px;
  padding: 0 32px;
  border-radius: 16px;
  font-size: 16px;
  line-height: 24px;
}

.ready-section__btn--primary {
  background: var(--color-white);
  color: var(--color-primary-deep);
  font-weight: 700;
}

.ready-section__btn--ghost {
  background: transparent;
  color: var(--color-white);
  border: 1px solid rgb(255 255 255 / 38%);
  font-weight: 600;
}

.ready-section__note {
  margin-top: 20px;
  font-size: 13px;
  font-weight: 400;
  line-height: 20px;
  color: rgb(255 255 255 / 45%);
}
/* #endregion */

/* #region Footer */
.footer {
  background: var(--color-dark);
  color: var(--color-white);
  padding: 64px 0 32px;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgb(255 255 255 / 10%);
}

.footer__brand p {
  margin-top: 12px;
  font-size: 14px;
  color: rgb(255 255 255 / 65%);
}

.footer__platforms {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.footer__platforms img {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  opacity: 0.9;
}

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

.footer__cols strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 14px;
}

.footer__cols a {
  display: block;
  font-size: 13px;
  color: rgb(255 255 255 / 65%);
  margin-bottom: 10px;
}

.footer__cols a:hover {
  color: var(--color-white);
}

.footer__bottom {
  padding-top: 24px;
}

.footer__bottom p {
  font-size: 13px;
  color: rgb(255 255 255 / 45%);
}
/* #endregion */

/* #region Responsive */
@media (max-width: 1100px) {
  .hero__inner,
  .autosync__inner {
    grid-template-columns: 1fr;
  }

  .faq__title {
    font-size: 32px;
    line-height: 1.25;
  }

  .creator-card {
    grid-template-columns: 1fr;
  }

  .creator-card__media {
    min-height: 360px;
  }

  .creator-card__body {
    padding: 36px 28px;
  }

  .autosync__inner {
    padding: 48px 32px;
  }

  .hero__visual {
    order: -1;
  }

  .float-card--sync {
    right: 8px;
  }

  .float-card--creator {
    left: 8px;
  }

  .section__title {
    font-size: 40px;
  }

  .hero__title {
    font-size: 52px;
  }

  .mode-grid,
  .pricing-grid,
  .feature-grid,
  .steps {
    grid-template-columns: 1fr;
  }

  .steps-section__title,
  .pricing-section__title {
    font-size: 36px;
    line-height: 1.2;
  }

  .pricing-card,
  .pricing-card--pro {
    min-height: 0;
    padding: 32px 24px;
  }

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

  .stats__item:nth-child(2) {
    border-right: none;
  }

  .stats__item:nth-child(1),
  .stats__item:nth-child(2) {
    border-bottom: 1px solid var(--color-border);
  }

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

@media (max-width: 768px) {
  .nav__links {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    flex-direction: column;
    padding: 20px 24px;
    background: var(--color-bg);
    border-bottom: 1px solid var(--color-border);
    gap: 14px;
  }

  .nav__links.is-open {
    display: flex;
  }

  .nav-toggle {
    display: flex;
  }

  .nav__actions .btn--outline {
    display: none;
  }

  .announce__text {
    display: none;
  }

  .platforms__bar {
    flex-direction: column;
    align-items: flex-start;
  }

  .autosync {
    padding: 8px 0;
  }

  .autosync__inner {
    padding: 40px 20px;
    border-radius: 24px;
  }

  .platforms__divider {
    display: none;
  }

  .mock-window__body {
    grid-template-columns: 1fr;
  }

  .mock-side {
    display: none;
  }

  .hero__title {
    font-size: 40px;
  }

  .autosync__title,
  .ready-section__title,
  .section__title--left {
    font-size: 32px;
    line-height: 1.15;
  }

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

  .stats__item {
    border-right: none;
    border-bottom: 1px solid var(--color-border);
  }

  .stats__item:last-child {
    border-bottom: none;
  }

  .creator-card__stats {
    grid-template-columns: 1fr;
  }

  .creator-card__media {
    min-height: 300px;
  }

  .creator-card__body {
    padding: 28px 20px;
  }

  .creator-card__title {
    font-size: 26px;
    line-height: 36px;
  }

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

  .ready-section__card {
    padding: 56px 24px;
    min-height: 0;
  }

  .ready-section__icon {
    width: 40px;
    height: 40px;
  }

  .ready-section__icon--tl,
  .ready-section__icon--bl {
    left: 16px;
  }

  .ready-section__icon--tr,
  .ready-section__icon--br {
    right: 16px;
  }

  .float-card--sync,
  .float-card--creator {
    display: none;
  }
}
/* #endregion */
