:root {
  color-scheme: dark;
  --bg: #0c0d0f;
  --bg-deep: #07080a;
  --surface: rgba(255, 255, 255, 0.065);
  --surface-strong: rgba(255, 255, 255, 0.105);
  --stroke: rgba(255, 255, 255, 0.16);
  --stroke-soft: rgba(255, 255, 255, 0.09);
  --text: #f8f4ee;
  --muted: rgba(248, 244, 238, 0.72);
  --faint: rgba(248, 244, 238, 0.52);
  --accent: #ffca3a;
  --accent-soft: #ffe67a;
  --rose: #ff5ab6;
  --teal: #2fd1b0;
  --blue: #67b7ff;
  --radius: 16px;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.38);
  --max: 1280px;
  --page-gutter: clamp(28px, 5.5vw, 72px);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 202, 58, 0.20), transparent 28rem),
    radial-gradient(circle at 82% 14%, rgba(255, 90, 182, 0.16), transparent 26rem),
    radial-gradient(circle at 68% 72%, rgba(47, 209, 176, 0.10), transparent 30rem),
    linear-gradient(135deg, #0b0b0f 0%, #1b1b22 48%, #081211 100%);
  color: var(--text);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.72), transparent 75%);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(9, 10, 12, 0.76);
  backdrop-filter: blur(22px);
  border-bottom: 1px solid var(--stroke-soft);
}

.nav {
  width: min(100% - calc(var(--page-gutter) * 2), var(--max));
  min-height: 74px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 28px;
}

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

.brand img {
  width: 194px;
  height: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-left: auto;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 650;
}

.nav-links a {
  white-space: nowrap;
  transition: color 160ms ease;
}

.nav-links a:hover {
  color: var(--text);
}

.hero,
.section {
  position: relative;
  width: min(100% - calc(var(--page-gutter) * 2), var(--max));
  margin: 0 auto;
}

.hero {
  min-height: min(760px, calc(100vh - 74px));
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(580px, 1.2fr);
  align-items: center;
  gap: 38px;
  padding: 54px 0 48px;
}

.hero-copy {
  display: grid;
  gap: 26px;
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1 {
  max-width: 720px;
  font-size: clamp(3rem, 5.8vw, 5rem);
  line-height: 0.92;
  letter-spacing: 0;
}

.hero-copy p {
  max-width: 620px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.4vw, 1.22rem);
  line-height: 1.65;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 0 18px;
  font-weight: 800;
  line-height: 1;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

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

.button.primary {
  color: #10100b;
  background: linear-gradient(180deg, var(--accent-soft), var(--accent));
  box-shadow: 0 16px 34px rgba(255, 202, 58, 0.22);
}

.button.secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.075);
  border-color: var(--stroke);
}

.hero-note {
  color: var(--faint);
  font-size: 0.9rem;
}

.hero-device {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  padding: 8px;
  transform: translateX(26px);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: var(--shadow);
}

.hero-device img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 17px;
}

.mock-window {
  overflow: hidden;
  min-height: 520px;
  border-radius: 17px;
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025)),
    #101215;
  border: 1px solid var(--stroke);
}

.mock-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 13px 15px;
  border-bottom: 1px solid var(--stroke-soft);
}

.traffic {
  display: flex;
  gap: 7px;
}

.traffic span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.24);
}

.traffic span:first-child { background: #ff6258; }
.traffic span:nth-child(2) { background: #ffc02f; }
.traffic span:nth-child(3) { background: #2ccf6e; }

.mini-logo {
  width: 136px;
  opacity: 0.96;
}

.mock-actions {
  display: flex;
  gap: 8px;
}

.mock-actions span {
  width: 30px;
  height: 22px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.mock-body {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 14px;
  padding: 14px;
}

.panel {
  border: 1px solid var(--stroke-soft);
  background: rgba(255, 255, 255, 0.055);
  border-radius: 14px;
}

.mock-sidebar {
  padding: 14px;
  display: grid;
  align-content: start;
  gap: 12px;
}

.pill {
  min-height: 34px;
  display: flex;
  align-items: center;
  padding: 0 13px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.075);
  color: var(--muted);
  font-weight: 800;
  font-size: 0.84rem;
}

.pill.active {
  color: #16100a;
  background: linear-gradient(180deg, var(--accent-soft), var(--accent));
}

.input-line,
.control-row span,
.shape-row span,
.thumb-strip span {
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.10);
}

.input-line {
  height: 48px;
  border-radius: 14px;
}

.input-line.wide {
  height: 82px;
}

.control-row,
.shape-row {
  display: flex;
  gap: 7px;
}

.control-row span {
  width: 28px;
  height: 28px;
}

.shape-row span {
  width: 40px;
  height: 34px;
}

.mock-preview {
  min-height: 452px;
  padding: 13px;
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 12px;
  background:
    linear-gradient(180deg, rgba(255, 202, 58, 0.10), transparent 44%),
    rgba(255, 255, 255, 0.045);
}

.thumb-strip {
  display: flex;
  gap: 8px;
}

.thumb-strip span {
  width: 54px;
  height: 54px;
  border-radius: 13px;
}

.social-card {
  position: relative;
  overflow: hidden;
  min-height: 372px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 202, 58, 0.20), transparent 10rem),
    linear-gradient(145deg, rgba(12, 64, 50, 0.80), rgba(33, 21, 33, 0.78));
}

.post-photo {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 52% 30%, rgba(255, 229, 177, 0.36), transparent 7rem),
    radial-gradient(circle at 46% 48%, rgba(255, 154, 82, 0.22), transparent 8rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), transparent 38%),
    linear-gradient(145deg, #153b31, #090d10);
}

.glass-title {
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: 8%;
  min-height: 172px;
  display: grid;
  gap: 14px;
  align-content: center;
  justify-items: center;
  padding: 24px;
  text-align: center;
  border-radius: 28px;
  background: rgba(255, 226, 198, 0.76);
  color: #21140d;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(16px) saturate(1.1);
}

.glass-title strong {
  font-size: clamp(1.7rem, 3.5vw, 3rem);
  line-height: 0.98;
  font-family: Georgia, "Times New Roman", serif;
}

.glass-title span {
  max-width: 360px;
  font-weight: 800;
}

.glass-title em {
  min-width: 130px;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #1c120d;
  color: white;
  font-style: normal;
  font-weight: 900;
}

.section {
  padding: 84px 0;
}

.section-head {
  display: grid;
  gap: 14px;
  max-width: 760px;
  margin-bottom: 34px;
}

h2 {
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
  letter-spacing: 0;
}

.section-head p {
  color: var(--muted);
  line-height: 1.72;
}

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

.feature-card,
.requirement-row,
.template-showcase article {
  border: 1px solid var(--stroke);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.035)),
    rgba(255, 255, 255, 0.045);
  border-radius: var(--radius);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.18);
}

.feature-card {
  min-height: 190px;
  padding: 22px;
  display: grid;
  align-content: start;
  gap: 14px;
}

.icon {
  width: 36px;
  height: 36px;
  color: var(--accent);
}

h3 {
  font-size: 1.14rem;
  line-height: 1.2;
}

.feature-card p,
.requirement-row p,
.template-showcase p {
  color: var(--muted);
  line-height: 1.58;
}

.template-section {
  padding-top: 40px;
}

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

.template-showcase article {
  min-height: 300px;
  padding: 24px;
  display: grid;
  align-content: end;
  gap: 13px;
  position: relative;
  overflow: hidden;
}

.template-showcase article::before {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 202, 58, 0.28), transparent 8rem),
    radial-gradient(circle at 82% 82%, rgba(255, 90, 182, 0.20), transparent 8rem),
    linear-gradient(180deg, rgba(255, 226, 198, 0.26), rgba(0, 0, 0, 0.32));
  border: 1px solid rgba(255, 255, 255, 0.13);
}

.template-showcase article > * {
  position: relative;
}

.template-showcase span {
  color: var(--accent-soft);
  font-weight: 900;
}

.template-showcase strong {
  font-size: 1.35rem;
}

.publish-section,
.suite-section {
  padding-top: 40px;
}

.publish-panel,
.suite-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  gap: 28px;
  align-items: stretch;
  padding: 30px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background:
    radial-gradient(circle at 0% 0%, rgba(255, 202, 58, 0.20), transparent 30rem),
    linear-gradient(130deg, rgba(255, 255, 255, 0.10), rgba(255, 255, 255, 0.035)),
    rgba(255, 255, 255, 0.055);
  box-shadow: var(--shadow);
}

.publish-copy,
.suite-copy {
  display: grid;
  gap: 18px;
  align-content: center;
}

.publish-copy p,
.suite-copy p {
  color: var(--muted);
  line-height: 1.7;
  max-width: 620px;
}

.network-row,
.credit-strip,
.publish-steps {
  display: grid;
  gap: 12px;
}

.network-row {
  grid-template-columns: repeat(3, 1fr);
}

.network-row a,
.credit-strip div,
.publish-steps div {
  display: grid;
  gap: 8px;
  padding: 18px;
  border: 1px solid var(--stroke);
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.18);
}

.network-row a {
  color: #171006;
  text-align: center;
  font-weight: 900;
  background: linear-gradient(180deg, var(--accent-soft), var(--accent));
}

.credit-strip strong,
.publish-steps strong {
  color: var(--accent-soft);
}

.credit-strip span,
.publish-steps span {
  color: var(--muted);
  line-height: 1.5;
}

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

.requirement-row {
  display: grid;
  gap: 14px;
  min-height: 210px;
  padding: 24px;
  align-content: start;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.035)),
    rgba(255, 255, 255, 0.05);
}

.requirement-row::before {
  content: "";
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: linear-gradient(180deg, var(--accent-soft), var(--accent));
  box-shadow: 0 12px 28px rgba(255, 202, 58, 0.22);
}

.requirement-row strong {
  color: var(--accent-soft);
  font-size: 1.08rem;
}

.download-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  padding: 30px;
  border-radius: 22px;
  background:
    linear-gradient(120deg, rgba(255, 202, 58, 0.18), rgba(255, 90, 182, 0.10)),
    rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.download-band p {
  color: var(--muted);
  margin-top: 10px;
  line-height: 1.6;
}

.site-footer {
  margin-top: 40px;
  border-top: 1px solid var(--stroke-soft);
  background: rgba(7, 8, 10, 0.72);
}

.footer-inner {
  width: min(100% - calc(var(--page-gutter) * 2), var(--max));
  min-height: 168px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  color: var(--muted);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 18px;
}

.footer-brand img {
  width: 150px;
}

.footer-brand p {
  line-height: 1.55;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px;
  font-weight: 700;
}

.legal-page {
  width: min(100% - calc(var(--page-gutter) * 2), 920px);
  margin: 0 auto;
  padding: clamp(48px, 8vw, 96px) 0;
}

.legal-document {
  padding: clamp(26px, 5vw, 54px);
  border: 1px solid var(--stroke);
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.035)),
    rgba(255, 255, 255, 0.055);
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px);
}

.legal-kicker {
  margin-bottom: 14px;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.legal-document h1 {
  max-width: none;
  margin-bottom: 18px;
  font-size: clamp(2.6rem, 7vw, 4.4rem);
}

.legal-document h2 {
  margin: 34px 0 10px;
  font-size: clamp(1.28rem, 2.4vw, 1.7rem);
}

.legal-document p {
  color: var(--muted);
  font-size: 1.03rem;
  line-height: 1.72;
}

.legal-document a {
  color: var(--accent-soft);
  font-weight: 800;
}

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

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

  .hero-device {
    transform: none;
  }

  .feature-grid,
  .template-showcase,
  .requirements {
    grid-template-columns: repeat(2, 1fr);
  }

  .publish-panel,
  .suite-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  :root {
    --page-gutter: 20px;
  }

  .brand img {
    width: 166px;
  }

  .hero {
    padding-top: 36px;
  }

  h1 {
    font-size: clamp(2.55rem, 12vw, 3.8rem);
  }

  .mock-body,
  .feature-grid,
  .template-showcase,
  .requirements,
  .network-row,
  .download-band {
    grid-template-columns: 1fr;
  }

  .mock-sidebar {
    display: none;
  }

  .mock-window {
    min-height: auto;
  }

  .hero-device {
    border-radius: 18px;
    padding: 5px;
  }

  .hero-device img {
    border-radius: 13px;
  }

  .social-card {
    min-height: 360px;
  }

  .footer-inner,
  .footer-brand {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-inner {
    padding: 28px 0;
  }

  .footer-links {
    justify-content: flex-start;
  }
}
