:root {
  color-scheme: dark;
  --bg: #050608;
  --bg-soft: #0c0e13;
  --surface: #11141a;
  --surface-strong: #171b23;
  --text: #f7f6f2;
  --muted: rgba(247, 246, 242, 0.72);
  --faint: rgba(247, 246, 242, 0.5);
  --line: rgba(255, 255, 255, 0.12);
  --purple: #7b45f6;
  --red: #e13b35;
  --aqua: #5bc0de;
  --gold: #f0b84f;
  --green: #65c18c;
  --shadow: rgba(0, 0, 0, 0.44);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(180deg, rgba(123, 69, 246, 0.1), transparent 18rem),
    linear-gradient(180deg, #050608 0%, #0a0c11 46%, #050608 100%);
  color: var(--text);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Display",
    "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

img {
  display: block;
  max-width: 100%;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(5, 6, 8, 0.78);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  white-space: nowrap;
}

.brand img {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(225, 59, 53, 0.22);
}

.nav,
.footer nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.nav a,
.footer a {
  transition: color 160ms ease, border-color 160ms ease, background 160ms ease;
}

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

.nav-cta {
  padding: 9px 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
}

.hero {
  display: grid;
  min-height: 88svh;
  grid-template-columns: minmax(0, 0.9fr) minmax(460px, 1.1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding: 118px clamp(18px, 5vw, 72px) 52px;
  overflow: hidden;
}

.hero-content {
  max-width: 720px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 18px;
  font-size: clamp(58px, 7.4vw, 112px);
  line-height: 0.84;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(36px, 5vw, 72px);
  line-height: 0.98;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 9px;
  font-size: 20px;
  line-height: 1.16;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 680px;
  color: rgba(247, 246, 242, 0.82);
  font-size: clamp(19px, 2.2vw, 28px);
  line-height: 1.26;
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 0 20px;
  font-size: 15px;
  font-weight: 850;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

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

.button.primary {
  background: linear-gradient(135deg, var(--red), var(--purple));
  box-shadow: 0 18px 42px rgba(123, 69, 246, 0.28);
}

.button.secondary {
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(247, 246, 242, 0.88);
}

.button.full {
  width: 100%;
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  color: var(--faint);
  font-size: 13px;
  font-weight: 750;
  list-style: none;
}

.hero-facts li {
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
}

.hero-media {
  position: relative;
  margin: 0;
}

.hero-media::before {
  position: absolute;
  inset: 22px -18px -18px 18px;
  border: 1px solid rgba(91, 192, 222, 0.26);
  border-radius: 8px;
  content: "";
}

.hero-media img {
  position: relative;
  z-index: 1;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 28px 80px var(--shadow);
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: 0 clamp(18px, 5vw, 72px);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--line);
}

.proof-strip div {
  min-height: 118px;
  padding: 22px;
  background: rgba(17, 20, 26, 0.86);
}

.proof-strip strong,
.proof-strip span {
  display: block;
}

.proof-strip strong {
  margin-bottom: 7px;
  font-size: 17px;
}

.proof-strip span {
  color: var(--muted);
  font-size: 14px;
}

section:not(.hero):not(.proof-strip) {
  padding: 104px clamp(18px, 5vw, 72px);
}

.section-intro {
  max-width: 920px;
  margin-bottom: 38px;
}

.section-intro p,
.pricing-copy p {
  color: var(--muted);
  font-size: 18px;
}

.section-intro.compact {
  max-width: 760px;
}

.product-section {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent);
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.showcase-grid article,
.feature-grid article,
.pricing-card,
.faq-list details,
.legal-content {
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03)),
    var(--surface);
  box-shadow: 0 24px 60px var(--shadow);
}

.showcase-grid article {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
}

.showcase-grid img {
  width: 100%;
  border-bottom: 1px solid var(--line);
}

.showcase-grid div {
  padding: 24px;
}

.showcase-grid span {
  display: inline-block;
  margin-bottom: 24px;
  color: var(--aqua);
  font-size: 12px;
  font-weight: 900;
}

.showcase-grid p,
.feature-grid p,
.pricing-card p,
.faq-list p {
  color: var(--muted);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.feature-grid article {
  min-height: 230px;
  padding: 24px;
}

.feature-kicker {
  display: inline-block;
  margin-bottom: 34px;
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.pricing-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
  gap: clamp(28px, 6vw, 90px);
  align-items: center;
}

.pricing-copy {
  max-width: 720px;
}

.pricing-card {
  padding: 28px;
}

.price-line {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 10px;
}

.price-line span {
  font-size: 56px;
  font-weight: 900;
  line-height: 1;
}

.price-line small {
  color: var(--gold);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}

.pricing-card ul {
  display: grid;
  gap: 10px;
  margin: 22px 0 26px;
  padding: 0;
  list-style: none;
}

.pricing-card li {
  position: relative;
  padding-left: 24px;
  color: rgba(247, 246, 242, 0.88);
  font-weight: 700;
}

.pricing-card li::before {
  position: absolute;
  left: 0;
  color: var(--green);
  content: "+";
}

.audience-section {
  background: rgba(255, 255, 255, 0.025);
}

.audience-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.audience-list span {
  padding: 10px 13px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(247, 246, 242, 0.82);
  font-size: 14px;
  font-weight: 800;
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 900px;
}

.faq-list details {
  padding: 20px 22px;
}

.faq-list summary {
  cursor: pointer;
  font-size: 18px;
  font-weight: 850;
}

.faq-list p {
  margin: 12px 0 0;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 30px clamp(18px, 5vw, 72px) 42px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted);
}

.footer strong,
.footer span {
  display: block;
}

.footer strong {
  color: var(--text);
}

.footer a {
  font-weight: 800;
}

.legal-page {
  min-height: 100vh;
  padding: 128px 24px 72px;
  background: linear-gradient(180deg, rgba(123, 69, 246, 0.12), transparent 18rem), #050608;
}

.legal-hero,
.legal-content {
  width: min(820px, 100%);
  margin: 0 auto;
}

.legal-hero {
  padding-bottom: 36px;
}

.legal-hero h1 {
  margin: 10px 0 12px;
  font-size: clamp(2.4rem, 7vw, 5rem);
  line-height: 0.94;
}

.legal-hero p {
  color: var(--muted);
}

.legal-content {
  padding: 28px;
}

.legal-content h2 {
  margin: 0 0 10px;
  font-size: 1.15rem;
}

.legal-content h2:not(:first-child) {
  margin-top: 28px;
}

.legal-content p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.legal-content a {
  color: #ffffff;
  font-weight: 800;
}

@media (max-width: 1060px) {
  .hero,
  .proof-strip,
  .showcase-grid,
  .feature-grid,
  .pricing-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

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

@media (max-width: 720px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .nav {
    width: 100%;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .hero {
    padding-top: 154px;
  }

  h1 {
    font-size: clamp(44px, 16vw, 64px);
    line-height: 0.92;
  }

  .hero-actions,
  .footer {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .proof-strip {
    margin: 0 18px;
  }

  section:not(.hero):not(.proof-strip) {
    padding: 76px 18px;
  }

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

  .showcase-grid div,
  .feature-grid article,
  .pricing-card,
  .legal-content {
    padding: 20px;
  }
}
