:root {
  --bg: #07090f;
  --bg-soft: #0c111b;
  --panel: #111827;
  --panel-2: #151f2f;
  --line: #273244;
  --line-strong: #3a4961;
  --text: #f7f9fc;
  --muted: #9ca8ba;
  --muted-2: #c4ccda;
  --blue: #2f6df6;
  --blue-2: #184fc4;
  --cyan: #10b7d4;
  --amber: #f59e0b;
  --green: #12b981;
  --danger: #ef4444;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.36);
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", "Be Vietnam Pro", "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
}

body::selection {
  background: rgba(47, 109, 246, 0.42);
}

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 76px;
  padding: 14px 36px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(7, 9, 15, 0.62);
  backdrop-filter: blur(18px);
  transition: background 180ms ease, border-color 180ms ease, min-height 180ms ease;
}

.site-header.is-scrolled {
  min-height: 64px;
  background: rgba(7, 9, 15, 0.92);
  border-color: rgba(255, 255, 255, 0.14);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 190px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(47, 109, 246, 0.55);
  border-radius: 8px;
  background: linear-gradient(135deg, #2f6df6, #10b7d4);
  color: #fff;
  font-weight: 900;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  color: #fff;
  font-size: 1rem;
  line-height: 1.1;
}

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 6px;
}

.nav-links a,
.header-cta,
.btn {
  min-height: 44px;
  border-radius: 8px;
  font-weight: 800;
  white-space: nowrap;
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  color: var(--muted-2);
  transition: color 160ms ease, background 160ms ease;
}

.nav-links a:hover,
.nav-links a.is-active {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  background: linear-gradient(180deg, #ffc233, var(--amber));
  color: #12100a;
  border: 1px solid rgba(255, 214, 89, 0.6);
  box-shadow: 0 16px 42px rgba(245, 158, 11, 0.32);
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 88svh;
  padding: 112px 36px 44px;
  overflow: hidden;
}

.hero-bg,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-bg {
  background-image: url("IMAGES/z7840173422138_e1f04d78607c579df5667d85ce13f706.jpg");
  background-position: center;
  background-size: cover;
  filter: saturate(1.05) contrast(1.03);
  transform: scale(1.02);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(7, 9, 15, 0.96) 0%, rgba(7, 9, 15, 0.84) 36%, rgba(7, 9, 15, 0.50) 68%, rgba(7, 9, 15, 0.74) 100%),
    linear-gradient(180deg, rgba(7, 9, 15, 0.72), rgba(7, 9, 15, 0.68) 52%, rgba(7, 9, 15, 0.98));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(920px, 100%);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--amber);
  font-size: 0.84rem;
  font-weight: 900;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 18px;
  color: #fff;
  font-size: 5.25rem;
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  color: #fff;
  font-size: 2.65rem;
  line-height: 1.06;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  color: #fff;
  font-size: 1.2rem;
  line-height: 1.25;
}

.hero-copy {
  max-width: 800px;
  color: #e5eaf3;
  font-size: 1.16rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 26px 0 30px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 168px;
  padding: 0 22px;
  border: 1px solid transparent;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

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

.btn.primary {
  background: linear-gradient(180deg, #ffc233, var(--amber));
  color: #12100a;
  border-color: rgba(255, 214, 89, 0.7);
  box-shadow: 0 18px 42px rgba(245, 158, 11, 0.34);
}

.btn.primary:hover {
  background: linear-gradient(180deg, #ffd35f, #f59e0b);
}

.btn.secondary {
  border-color: var(--line-strong);
  background: rgba(17, 24, 39, 0.78);
  color: #fff;
}

.btn.secondary:hover {
  border-color: var(--cyan);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 820px;
  margin: 0;
}

.hero-stats div {
  min-height: 104px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(17, 24, 39, 0.72);
}

.hero-stats dt {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 900;
}

.hero-stats dd {
  margin: 4px 0 0;
  color: var(--muted-2);
  font-size: 0.92rem;
}

.scroll-hint {
  position: absolute;
  right: 36px;
  bottom: 24px;
  z-index: 1;
  color: var(--muted-2);
  font-size: 0.86rem;
  font-weight: 800;
}

.section {
  padding: 92px 36px;
}

.intro-band {
  background:
    linear-gradient(180deg, #0a0e16, #0f141d 48%, #090d14);
}

.section-heading {
  width: min(920px, 100%);
  margin: 0 auto 36px;
  text-align: center;
}

.section-heading p,
.pricing-copy p,
.workflow-copy p {
  color: var(--muted-2);
}

.section-heading.compact {
  margin-bottom: 28px;
}

.feature-grid,
.audience-grid,
.plan-grid,
.screen-grid,
.workflow-steps {
  width: min(1200px, 100%);
  margin: 0 auto;
}

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

.feature-card,
.plan-card,
.workflow-steps div,
.audience-grid div,
.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.04) inset;
}

.feature-card {
  min-height: 252px;
  padding: 22px;
}

.feature-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 30px;
  margin-bottom: 24px;
  border-radius: 8px;
  background: rgba(16, 183, 212, 0.14);
  color: var(--cyan);
  font-size: 0.82rem;
  font-weight: 900;
}

.feature-card p,
.workflow-steps p,
.audience-grid span,
.plan-card li,
.faq-list p {
  color: var(--muted-2);
}

.product-strip {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  align-items: start;
  gap: 42px;
  background: #0d111a;
}

.workflow-copy {
  width: min(500px, 100%);
  justify-self: end;
}

.workflow-steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
}

.workflow-steps div {
  min-height: 162px;
  padding: 22px;
}

.workflow-steps span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 18px;
  border-radius: 8px;
  background: rgba(245, 158, 11, 0.15);
  color: var(--amber);
  font-weight: 900;
}

.workflow-steps strong,
.audience-grid strong {
  display: block;
  color: #fff;
  font-size: 1.05rem;
}

.screens {
  background: linear-gradient(180deg, #090d14, #111827);
}

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

.screen-shot {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.screen-shot.wide {
  grid-column: 1 / -1;
}

.screen-shot img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #0d111a;
}

.screen-shot figcaption {
  min-height: 70px;
  padding: 16px 18px 18px;
  color: var(--muted-2);
  font-size: 0.95rem;
}

.audience {
  background: #0a0f18;
}

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

.audience-grid div {
  min-height: 150px;
  padding: 22px;
}

.audience-grid span {
  display: block;
  margin-top: 10px;
}

.pricing {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 42px;
  background:
    linear-gradient(135deg, rgba(47, 109, 246, 0.18), rgba(16, 185, 129, 0.08) 42%, rgba(245, 158, 11, 0.12)),
    #0b111a;
}

.pricing-copy {
  width: min(520px, 100%);
  justify-self: end;
}

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

.plan-card {
  padding: 26px;
}

.plan-card.highlighted {
  border-color: rgba(245, 158, 11, 0.58);
  background: linear-gradient(180deg, rgba(245, 158, 11, 0.10), rgba(17, 24, 39, 0.96));
}

.plan-price {
  margin: 8px 0 18px;
  color: var(--cyan);
  font-size: 1.65rem;
  font-weight: 900;
}

.plan-card ul {
  display: grid;
  gap: 10px;
  min-height: 128px;
  margin: 0 0 24px;
  padding-left: 20px;
}

.plan-card .btn {
  width: 100%;
}

.faq {
  background: #0a0d14;
}

.faq-list {
  display: grid;
  gap: 12px;
  width: min(960px, 100%);
  margin: 0 auto;
}

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

.faq-list summary {
  min-height: 62px;
  display: flex;
  align-items: center;
  color: #fff;
  cursor: pointer;
  font-weight: 900;
}

.faq-list p {
  margin-bottom: 20px;
}

.final-cta {
  padding: 88px 36px;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(16, 183, 212, 0.12), rgba(7, 9, 15, 0.98)),
    #0d111a;
}

.final-cta p {
  width: min(680px, 100%);
  margin-left: auto;
  margin-right: auto;
  color: var(--muted-2);
}

.final-cta .hero-actions {
  justify-content: center;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  padding: 26px 36px;
  border-top: 1px solid var(--line);
  background: #07090f;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

@media (max-width: 1080px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    grid-column: 1 / -1;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .hero {
    padding-top: 148px;
  }

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

  .screen-shot.wide {
    grid-column: 1 / -1;
  }

  .product-strip,
  .pricing {
    grid-template-columns: 1fr;
  }

  .workflow-copy,
  .pricing-copy {
    justify-self: center;
    width: min(900px, 100%);
    text-align: center;
  }
}

@media (max-width: 760px) {
  .site-header {
    gap: 12px;
    padding: 10px 16px;
  }

  .brand {
    min-width: 0;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .header-cta {
    padding: 0 12px;
    font-size: 0.9rem;
  }

  .nav-links a {
    padding: 0 10px;
    font-size: 0.92rem;
  }

  .hero {
    align-items: flex-end;
    min-height: 92svh;
    padding: 150px 18px 46px;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(7, 9, 15, 0.98), rgba(7, 9, 15, 0.74)),
      linear-gradient(180deg, rgba(7, 9, 15, 0.66), rgba(7, 9, 15, 0.97));
  }

  h1 {
    font-size: 3.05rem;
    line-height: 1;
  }

  h2 {
    font-size: 2rem;
  }

  .hero-copy {
    font-size: 1rem;
  }

  .hero-actions {
    margin: 20px 0;
  }

  .btn {
    width: 100%;
    min-width: 0;
  }

  .hero-stats,
  .feature-grid,
  .workflow-steps,
  .audience-grid,
  .plan-grid,
  .screen-grid {
    grid-template-columns: 1fr;
  }

  .hero-stats div {
    min-height: 88px;
  }

  .scroll-hint {
    display: none;
  }

  .section,
  .final-cta {
    padding: 64px 18px;
  }

  .screen-shot figcaption {
    min-height: auto;
  }
}

@media (max-width: 440px) {
  .brand small {
    display: none;
  }

  .header-cta {
    min-height: 40px;
  }

  h1 {
    font-size: 2.55rem;
  }

  .eyebrow {
    font-size: 0.78rem;
  }

  .hero-stats {
    display: none;
  }
}
