:root {
  --bg: #070912;
  --bg-soft: #0d1020;
  --card: rgba(17, 20, 38, 0.8);

  --text: #f5f7ff;
  --muted: #9299b2;

  --border: rgba(255, 255, 255, 0.09);

  --pink: #ff3d81;
  --purple: #a554ff;
  --cyan: #22d3ee;

  --gradient:
    linear-gradient(
      135deg,
      #ff3d81,
      #a554ff 55%,
      #22d3ee
    );
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;

  background:
    radial-gradient(
      circle at 50% -20%,
      #171c3d 0,
      transparent 45%
    ),
    var(--bg);

  color: var(--text);

  font-family:
    Inter,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;

  line-height: 1.6;

  overflow-x: hidden;
}

.background-glow {
  position: fixed;

  width: 500px;
  height: 500px;

  border-radius: 50%;

  filter: blur(130px);

  opacity: 0.1;

  pointer-events: none;

  z-index: -1;
}

.glow-one {
  background: var(--pink);

  top: 10%;
  left: -250px;
}

.glow-two {
  background: var(--cyan);

  right: -250px;
  top: 45%;
}

.navbar {
  width: min(1180px, calc(100% - 40px));

  margin: 0 auto;

  min-height: 84px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  border-bottom: 1px solid var(--border);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;

  color: inherit;

  text-decoration: none;
}

.mini-logo {
  width: 42px;
  height: 42px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 12px;

  background: var(--gradient);

  font-size: 17px;
  font-weight: 900;
}

.mini-logo strong {
  color: white;
}

.nav-brand-text {
  display: flex;
  flex-direction: column;

  line-height: 1.15;
}

.nav-brand-text strong {
  font-size: 14px;
}

.nav-brand-text span {
  margin-top: 4px;

  color: var(--muted);

  font-size: 11px;
}

.navbar nav {
  display: flex;
  gap: 28px;
}

.navbar nav a {
  color: #a6adc3;

  font-size: 13px;
  font-weight: 500;

  text-decoration: none;

  transition: 0.2s;
}

.navbar nav a:hover {
  color: white;
}

.hero {
  width: min(1000px, calc(100% - 40px));

  margin: auto;

  padding: 110px 0 70px;

  text-align: center;
}

.hero-badge {
  display: inline-flex;

  padding: 8px 14px;

  margin-bottom: 24px;

  border: 1px solid rgba(165, 84, 255, 0.35);

  border-radius: 999px;

  background: rgba(165, 84, 255, 0.07);

  color: #c9a4ff;

  font-size: 12px;
  font-weight: 600;

  letter-spacing: 0.05em;

  text-transform: uppercase;
}

.hero h1 {
  max-width: 820px;

  margin: 0 auto;

  font-size: clamp(48px, 7vw, 82px);

  line-height: 0.98;

  letter-spacing: -0.055em;
}

.hero h1 span {
  display: block;

  margin-top: 8px;

  background: var(--gradient);

  -webkit-background-clip: text;
  background-clip: text;

  color: transparent;
}

.hero-description {
  max-width: 680px;

  margin: 32px auto 0;

  color: var(--muted);

  font-size: 18px;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;

  margin-top: 38px;
}

.button {
  padding: 13px 20px;

  border-radius: 11px;

  font-size: 14px;
  font-weight: 600;

  text-decoration: none;
}

.button.primary {
  background: white;

  color: #080a13;
}

.button.secondary {
  border: 1px solid var(--border);

  color: white;

  background: rgba(255, 255, 255, 0.03);
}

.platform-pills {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;

  margin-top: 48px;
}

.platform-pill {
  display: flex;
  align-items: center;
  gap: 8px;

  padding: 7px 12px;

  border: 1px solid var(--border);

  border-radius: 999px;

  background: rgba(255, 255, 255, 0.025);

  color: #b3b9cc;

  font-size: 12px;
}

.platform-icon {
  width: 24px;
  height: 24px;

  display: grid;
  place-items: center;

  border-radius: 50%;

  font-weight: 800;
}

.tiktok {
  background: #11131d;
  color: #ff4e89;
}

.youtube {
  background: #ff3148;
  color: white;
}

.facebook {
  background: #2878ff;
  color: white;
}

.app-preview {
  width: min(1180px, calc(100% - 40px));

  margin: 0 auto 150px;
}

.app-window {
  overflow: hidden;

  border: 1px solid rgba(255, 255, 255, 0.11);

  border-radius: 20px;

  background: #0c0f1b;

  box-shadow:
    0 60px 130px rgba(0, 0, 0, 0.45);
}

.window-header {
  height: 48px;

  display: flex;
  align-items: center;

  position: relative;

  padding: 0 18px;

  border-bottom: 1px solid var(--border);

  background: #0b0e18;
}

.window-dots {
  display: flex;
  gap: 6px;
}

.window-dots span {
  width: 8px;
  height: 8px;

  border-radius: 50%;

  background: #34394b;
}

.window-title {
  position: absolute;

  left: 50%;

  transform: translateX(-50%);

  color: #6f7589;

  font-size: 11px;
}

.app-layout {
  display: grid;

  grid-template-columns: 180px 1fr;

  min-height: 560px;
}

.sidebar {
  padding: 25px 14px;

  border-right: 1px solid var(--border);

  background: rgba(8, 10, 18, 0.65);
}

.sidebar-logo {
  width: 38px;
  height: 38px;

  display: grid;
  place-items: center;

  margin: 0 10px 30px;

  border-radius: 10px;

  background: var(--gradient);

  font-size: 14px;
  font-weight: 900;
}

.sidebar-item {
  padding: 10px 11px;

  margin-bottom: 4px;

  border-radius: 8px;

  color: #747b90;

  font-size: 12px;
}

.sidebar-item.active {
  background: rgba(255, 255, 255, 0.07);

  color: white;
}

.dashboard {
  padding: 32px;
}

.dashboard-header {
  display: flex;
  justify-content: space-between;
  align-items: center;

  margin-bottom: 25px;
}

.dashboard-header h3 {
  margin: 4px 0 0;

  font-size: 22px;
}

.eyebrow {
  color: var(--muted);

  font-size: 11px;

  text-transform: uppercase;

  letter-spacing: 0.1em;
}

.account-avatar {
  width: 34px;
  height: 34px;

  display: grid;
  place-items: center;

  border-radius: 50%;

  background: #202438;

  color: #a7aec2;

  font-size: 10px;
}

.upload-card {
  height: 150px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  border: 1px dashed #33384c;

  border-radius: 13px;

  background: rgba(255, 255, 255, 0.015);

  color: #a8aec0;
}

.upload-icon {
  width: 37px;
  height: 37px;

  display: grid;
  place-items: center;

  margin-bottom: 10px;

  border-radius: 10px;

  background: #171b2b;

  color: #d8dbea;
}

.upload-card strong {
  font-size: 13px;

  color: white;
}

.upload-card span {
  margin-top: 3px;

  color: #5f667b;

  font-size: 11px;
}

.publisher-row {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 20px;

  margin-top: 20px;
}

.video-preview,
.settings {
  padding: 19px;

  border: 1px solid var(--border);

  border-radius: 13px;

  background: rgba(255, 255, 255, 0.018);
}

.video-preview {
  display: flex;

  gap: 14px;

  align-items: flex-start;
}

.video-placeholder {
  width: 92px;
  aspect-ratio: 9 / 12;

  display: grid;
  place-items: center;

  border-radius: 8px;

  background:
    linear-gradient(
      145deg,
      #242944,
      #141827
    );

  color: white;
}

.video-preview div:last-child {
  display: flex;
  flex-direction: column;

  padding-top: 5px;
}

.video-preview strong {
  font-size: 12px;
}

.video-preview span {
  color: var(--muted);

  font-size: 10px;
}

.settings label {
  display: block;

  margin-bottom: 6px;

  color: #777e94;

  font-size: 10px;

  text-transform: uppercase;

  letter-spacing: 0.05em;
}

.fake-input {
  padding: 10px;

  margin-bottom: 16px;

  border: 1px solid var(--border);

  border-radius: 8px;

  background: #0b0e19;

  color: #9097aa;

  font-size: 11px;
}

.account-options {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.account-option {
  display: flex;
  align-items: center;

  gap: 8px;

  padding: 7px;

  border: 1px solid transparent;

  border-radius: 8px;

  color: #9aa1b4;

  font-size: 11px;
}

.account-option.selected {
  border-color: rgba(165, 84, 255, 0.3);

  background: rgba(165, 84, 255, 0.08);

  color: white;
}

.account-icon {
  width: 22px;
  height: 22px;

  display: grid;
  place-items: center;

  border-radius: 6px;

  font-size: 10px;
}

.check {
  margin-left: auto;

  color: #bc91ff;
}

.publish-button {
  width: 100%;

  margin-top: 15px;

  padding: 9px;

  border: 0;

  border-radius: 8px;

  background: var(--gradient);

  color: white;

  font-weight: 600;
}

.section {
  width: min(1180px, calc(100% - 40px));

  margin: 0 auto;

  padding: 80px 0;
}

.section-heading {
  max-width: 610px;

  margin-bottom: 45px;
}

.section-label {
  color: #8d67ff;

  font-size: 11px;
  font-weight: 700;

  letter-spacing: 0.15em;
}

.section-heading h2,
.security h2 {
  margin: 11px 0 13px;

  font-size: clamp(32px, 5vw, 48px);

  line-height: 1.05;

  letter-spacing: -0.04em;
}

.section-heading p,
.security p {
  color: var(--muted);
}

.feature-grid {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 16px;
}

.feature-card {
  padding: 27px;

  border: 1px solid var(--border);

  border-radius: 14px;

  background: rgba(255, 255, 255, 0.018);
}

.feature-number {
  margin-bottom: 50px;

  color: #595f73;

  font-size: 11px;
}

.feature-card h3 {
  font-size: 17px;
}

.feature-card p {
  color: var(--muted);

  font-size: 13px;
}

.workflow-section {
  border-top: 1px solid var(--border);
}

.workflow {
  display: flex;

  align-items: flex-start;
}

.workflow-step {
  flex: 1;
}

.step-circle {
  width: 35px;
  height: 35px;

  display: grid;
  place-items: center;

  border: 1px solid #32374a;

  border-radius: 50%;

  background: #0e111e;

  color: #c5cad8;

  font-size: 11px;
}

.workflow-line {
  height: 1px;

  flex: 0.4;

  margin-top: 17px;

  background: #252a3c;
}

.workflow-step h3 {
  margin: 18px 0 7px;

  font-size: 15px;
}

.workflow-step p {
  max-width: 200px;

  color: var(--muted);

  font-size: 12px;
}

.platform-grid {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 14px;
}

.platform-card {
  display: flex;

  gap: 16px;

  padding: 25px;

  border: 1px solid var(--border);

  border-radius: 14px;

  background: rgba(255, 255, 255, 0.018);
}

.large-platform-icon {
  min-width: 43px;
  height: 43px;

  display: grid;
  place-items: center;

  border-radius: 11px;

  font-weight: 800;
}

.platform-card h3 {
  margin: 1px 0 7px;

  font-size: 16px;
}

.platform-card p {
  margin: 0;

  color: var(--muted);

  font-size: 12px;
}

.security {
  width: min(1180px, calc(100% - 40px));

  margin: 80px auto;

  padding: 60px;

  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 70px;

  align-items: center;

  border: 1px solid var(--border);

  border-radius: 18px;

  background:
    linear-gradient(
      140deg,
      rgba(165, 84, 255, 0.07),
      rgba(34, 211, 238, 0.025)
    );
}

.footer {
  width: min(1180px, calc(100% - 40px));

  margin: 80px auto 0;

  padding: 40px 0;

  display: grid;

  grid-template-columns: 1fr auto auto;

  gap: 70px;

  align-items: center;

  border-top: 1px solid var(--border);
}

.footer-brand {
  font-weight: 700;
}

.footer p,
.copyright {
  color: #646b7e;

  font-size: 11px;
}

.footer-links {
  display: flex;

  gap: 22px;
}

.footer-links a {
  color: #8e95a8;

  font-size: 11px;

  text-decoration: none;
}

@media (max-width: 850px) {

  .navbar nav {
    display: none;
  }

  .hero {
    padding-top: 80px;
  }

  .feature-grid,
  .platform-grid {
    grid-template-columns: 1fr;
  }

  .app-layout {
    grid-template-columns: 1fr;
  }

  .sidebar {
    display: none;
  }

  .publisher-row {
    grid-template-columns: 1fr;
  }

  .workflow {
    flex-direction: column;

    gap: 25px;
  }

  .workflow-line {
    display: none;
  }

  .security {
    grid-template-columns: 1fr;

    gap: 20px;

    padding: 35px;
  }

  .footer {
    grid-template-columns: 1fr;

    gap: 25px;
  }

  .footer-links {
    flex-wrap: wrap;
  }

}

.footer-copy h3 {
  margin: 0;
  font-size: clamp(1.6rem, 2.5vw, 2.6rem);
}

.footer-form {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 22px;
  align-items: end;
}

.footer-form label {
  display: grid;
  gap: 10px;
  font-weight: 700;
}

.footer-link {
  display: inline-block;
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.02);
  color: var(--text);
  text-decoration: none;
  word-break: break-all;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  text-decoration: none;
  border: none;
  border-radius: 14px;
  padding: 18px 22px;
  font-weight: 800;
  color: #081d35;
  background: linear-gradient(90deg, #ff4d9a, #8b5cf6, #2dd4ff);
  box-shadow: 0 16px 28px rgba(121, 92, 255, 0.25);
}

@media (max-width: 900px) {
  .brand-mark {
    height: 360px;
  }

  .feature-grid,
  .screenshots-grid,
  .footer-form {
    grid-template-columns: 1fr;
  }

  .social-row {
    margin-top: -18px;
  }
}

@media (max-width: 600px) {
  .page-shell {
    width: min(100% - 18px, 1200px);
    padding: 22px 16px 26px;
    margin: 14px auto;
    border-radius: 24px;
  }

  .brand-mark {
    height: 270px;
  }

  .sp-word {
    height: 220px;
    width: 92%;
  }

  .play-button {
    width: 90px;
    height: 90px;
    right: 16%;
    top: 42%;
  }

  .social-badge {
    width: 62px;
    height: 62px;
    font-size: 1.8rem;
  }
}
/* LEGAL PAGE */

.active-link { color: white !important; }

.legal-page {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.legal-hero {
  max-width: 780px;
  padding: 100px 0 70px;
}

.legal-hero h1 {
  margin: 0;
  font-size: clamp(48px, 7vw, 76px);
  line-height: 1;
  letter-spacing: -0.055em;
}

.legal-hero p {
  max-width: 690px;
  margin: 25px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.legal-meta {
  margin-top: 24px;
  color: #666d82;
  font-size: 12px;
}

.legal-container {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  gap: 60px;
  align-items: start;
  padding-bottom: 100px;
}

.legal-sidebar {
  position: sticky;
  top: 30px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 20px 0;
}

.legal-sidebar-title {
  margin-bottom: 10px;
  color: #5f667a;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.legal-sidebar a {
  padding: 7px 10px;
  border-radius: 7px;
  color: #747c91;
  font-size: 11px;
  text-decoration: none;
  transition: 0.2s;
}

.legal-sidebar a:hover {
  background: rgba(255, 255, 255, 0.04);
  color: white;
}

.legal-card {
  padding: 52px 58px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(255,255,255,0.025), rgba(255,255,255,0.012));
}

.legal-card section {
  padding: 0 0 45px;
  margin-bottom: 45px;
  border-bottom: 1px solid var(--border);
  scroll-margin-top: 30px;
}

.legal-card section:last-of-type { border-bottom: 0; }

.legal-number {
  display: inline-block;
  margin-bottom: 12px;
  color: #8d67ff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.legal-card h2 {
  margin: 0 0 18px;
  font-size: 26px;
  letter-spacing: -0.025em;
}

.legal-card p {
  margin: 0 0 17px;
  color: #9299ad;
  font-size: 14px;
  line-height: 1.8;
}

.legal-card ul {
  margin: 20px 0;
  padding-left: 22px;
}

.legal-card li {
  margin-bottom: 12px;
  padding-left: 5px;
  color: #9299ad;
  font-size: 14px;
  line-height: 1.7;
}

.legal-card li::marker { color: #8d67ff; }

.contact-card {
  margin-top: 25px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 12px;
}

.contact-card > div {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 20px;
  padding: 13px 16px;
  border-bottom: 1px solid var(--border);
}

.contact-card > div:last-child { border-bottom: 0; }

.contact-card span {
  color: #626a7e;
  font-size: 11px;
}

.contact-card strong,
.contact-card a {
  color: #d7dbea;
  font-size: 12px;
  text-decoration: none;
}

.legal-bottom {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  padding-top: 10px;
}

@media (max-width: 850px) {
  .legal-hero { padding-top: 70px; }

  .legal-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .legal-sidebar {
    position: static;
    display: none;
  }

  .legal-card { padding: 30px 22px; }

  .contact-card > div {
    grid-template-columns: 1fr;
    gap: 3px;
  }

  .legal-bottom { flex-direction: column; }
  .legal-bottom .button { text-align: center; }
}
