:root {
  --bg: #05070b;
  --bg-soft: #08101a;
  --surface: #111827;
  --surface-strong: #172033;
  --surface-warm: #211c1b;
  --text: #f8fafc;
  --muted: #a7b0c3;
  --quiet: #6d778c;
  --line: #253148;
  --green: #2be363;
  --green-deep: #0e8f40;
  --amber: #f2a11f;
  --red: #ef4664;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  --max: 1140px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

a {
  color: inherit;
}

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

.legal-header {
  position: sticky;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  text-decoration: none;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0;
}

.brand img {
  width: 36px;
  height: 36px;
  border-radius: 10px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(12px, 3vw, 28px);
  color: #d7ddeb;
  font-size: 14px;
  font-weight: 700;
}

.nav-links a,
.footer-links a {
  text-decoration: none;
}

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

.nav-cta {
  padding: 10px 15px;
  border: 1px solid rgba(43, 227, 99, 0.45);
  border-radius: 8px;
  background: rgba(43, 227, 99, 0.12);
  color: var(--green);
}

.hero {
  position: relative;
  display: flex;
  min-height: 88vh;
  overflow: hidden;
  padding: 150px clamp(20px, 6vw, 80px) 76px;
  background-color: #061009;
  background-image:
    linear-gradient(90deg, rgba(5, 7, 11, 0.94) 0%, rgba(5, 7, 11, 0.76) 42%, rgba(5, 7, 11, 0.34) 100%),
    url("assets/screens/pitch-editor.jpg");
  background-position: center;
  background-size: cover;
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 38%;
  content: "";
  background: linear-gradient(180deg, rgba(5, 7, 11, 0), var(--bg));
  pointer-events: none;
}

.hero-scrim {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 132px 132px;
  opacity: 0.28;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(620px, 100%);
  align-self: center;
}

.hero-icon {
  width: 76px;
  height: 76px;
  margin-bottom: 28px;
  border-radius: 19px;
  box-shadow: 0 20px 44px rgba(43, 227, 99, 0.22);
}

.hero h1 {
  margin: 0;
  font-size: clamp(58px, 11vw, 132px);
  line-height: 0.86;
  font-weight: 950;
  letter-spacing: 0;
}

.hero-lede {
  max-width: 640px;
  margin: 28px 0 0;
  color: #e4e9f5;
  font-size: clamp(24px, 3.4vw, 44px);
  line-height: 1.08;
  font-weight: 850;
}

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

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 14px 20px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 850;
  text-decoration: none;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

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

.button-primary {
  background: var(--green);
  color: #031006;
  box-shadow: 0 12px 38px rgba(43, 227, 99, 0.28);
}

.button-secondary {
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(17, 24, 39, 0.74);
  color: var(--text);
}

.hero-note {
  margin: 20px 0 0;
  color: #9da7bb;
  font-size: 14px;
  font-weight: 750;
}

.hero-phone {
  position: absolute;
  z-index: 1;
  width: min(31vw, 360px);
  min-width: 230px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 34px;
  background: #05070b;
  box-shadow: var(--shadow);
}

.hero-phone img {
  width: 100%;
  height: auto;
}

.hero-phone-primary {
  right: clamp(24px, 8vw, 110px);
  bottom: 42px;
  transform: rotate(2deg);
}

.hero-phone-secondary {
  right: clamp(210px, 28vw, 420px);
  bottom: 12px;
  width: min(24vw, 280px);
  opacity: 0.82;
  transform: rotate(-5deg);
}

.intro-band {
  display: flex;
  justify-content: center;
  padding: 34px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: #0b121d;
}

.intro-band p {
  width: min(880px, 100%);
  margin: 0;
  color: #d7deec;
  font-size: clamp(20px, 3vw, 30px);
  line-height: 1.18;
  font-weight: 820;
  text-align: center;
}

.section,
.product-strip,
.download-band,
.site-footer {
  padding-right: clamp(20px, 5vw, 72px);
  padding-left: clamp(20px, 5vw, 72px);
}

.section {
  padding-top: 96px;
  padding-bottom: 96px;
}

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

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

.section-heading h2,
.download-band h2,
.legal-copy h1 {
  margin: 0;
  color: var(--text);
  font-size: clamp(36px, 5vw, 66px);
  line-height: 0.98;
  font-weight: 930;
  letter-spacing: 0;
}

.section-heading p,
.download-band p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.feature-grid {
  display: grid;
  width: min(var(--max), 100%);
  margin: 0 auto;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.feature-card,
.audience-grid article {
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 8px;
  background: var(--surface);
}

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

.feature-number {
  display: inline-block;
  margin-bottom: 50px;
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
}

.feature-card h3,
.audience-grid h3 {
  margin: 0;
  color: var(--text);
  font-size: 22px;
  line-height: 1.08;
}

.feature-card p,
.audience-grid p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 15px;
}

.product-strip {
  padding-top: 84px;
  padding-bottom: 92px;
  background:
    linear-gradient(180deg, #08101a 0%, #0d1320 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.screen-row {
  display: grid;
  width: min(1060px, 100%);
  margin: 0 auto;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 22px);
}

.screen-shot {
  margin: 0;
}

.screen-shot img {
  width: 100%;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  background: #05070b;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.32);
}

.screen-shot figcaption {
  margin-top: 14px;
  color: #d7deec;
  font-size: 14px;
  font-weight: 850;
  text-align: center;
}

.audience-section {
  background: var(--bg);
}

.audience-grid {
  display: grid;
  width: min(980px, 100%);
  margin: 0 auto;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.audience-grid article {
  padding: 24px;
}

.audience-grid article:nth-child(2) {
  background: var(--surface-strong);
}

.audience-grid article:nth-child(3) {
  background: var(--surface-warm);
  border-color: rgba(242, 161, 31, 0.2);
}

.download-band {
  display: flex;
  width: min(var(--max), calc(100% - 40px));
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin: 0 auto 82px;
  padding-top: 42px;
  padding-bottom: 42px;
  border-top: 1px solid rgba(43, 227, 99, 0.22);
  border-bottom: 1px solid rgba(242, 161, 31, 0.22);
}

.download-band div {
  max-width: 760px;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto;
  gap: 28px;
  padding-top: 34px;
  padding-bottom: 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: #05070b;
}

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

.footer-brand img {
  width: 44px;
  height: 44px;
  border-radius: 12px;
}

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

.footer-brand strong {
  font-size: 15px;
  font-weight: 900;
}

.footer-brand span,
.fine-print {
  color: var(--quiet);
  font-size: 13px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  color: #cbd3e3;
  font-size: 13px;
  font-weight: 750;
}

.fine-print {
  grid-column: 1 / -1;
  margin: 0;
}

.legal-page {
  min-height: 70vh;
  padding: 68px 20px 90px;
  background:
    linear-gradient(180deg, #07101a 0%, #05070b 260px);
}

.legal-copy {
  width: min(840px, 100%);
  margin: 0 auto;
  color: #d9dfeb;
}

.legal-kicker {
  margin: 0 0 14px;
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.legal-copy h1 {
  margin-bottom: 24px;
}

.legal-copy h2 {
  margin: 34px 0 10px;
  color: var(--text);
  font-size: 24px;
  line-height: 1.12;
}

.legal-copy p {
  margin: 0 0 16px;
  color: #c6cedd;
  font-size: 17px;
}

.legal-copy a {
  color: var(--green);
  font-weight: 750;
}

.support-block {
  margin: 26px 0 10px;
  padding: 24px;
  border: 1px solid rgba(43, 227, 99, 0.22);
  border-radius: 8px;
  background: rgba(43, 227, 99, 0.07);
}

.support-block h2 {
  margin-top: 0;
}

@media (max-width: 980px) {
  .hero {
    min-height: 92vh;
    padding-top: 132px;
  }

  .hero-phone-primary {
    right: -34px;
    bottom: 28px;
    opacity: 0.58;
  }

  .hero-phone-secondary {
    display: none;
  }

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

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

@media (max-width: 700px) {
  .site-header {
    padding: 14px 16px;
  }

  .brand span {
    font-size: 14px;
  }

  .nav-links {
    gap: 10px;
    font-size: 13px;
  }

  .nav-links a:not(.nav-cta):nth-child(1),
  .nav-links a:not(.nav-cta):nth-child(2) {
    display: none;
  }

  .nav-cta {
    padding: 8px 11px;
  }

  .hero {
    min-height: 90vh;
    padding: 112px 18px 60px;
    background-position: 64% center;
  }

  .hero::after {
    height: 50%;
  }

  .hero-content {
    align-self: flex-start;
  }

  .hero-icon {
    width: 58px;
    height: 58px;
    margin-bottom: 22px;
    border-radius: 15px;
  }

  .hero-lede {
    max-width: 520px;
  }

  .hero-phone {
    width: 228px;
    min-width: 0;
    border-radius: 28px;
  }

  .hero-phone-primary {
    right: -70px;
    bottom: 24px;
  }

  .button {
    width: 100%;
  }

  .intro-band p {
    text-align: left;
  }

  .section {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .section-heading {
    text-align: left;
  }

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

  .feature-card {
    min-height: auto;
  }

  .feature-number {
    margin-bottom: 28px;
  }

  .screen-row {
    width: min(320px, 100%);
  }

  .download-band {
    display: block;
    width: calc(100% - 36px);
    margin-bottom: 62px;
    padding-right: 0;
    padding-left: 0;
  }

  .download-band .button {
    margin-top: 24px;
  }

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

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

  .legal-page {
    padding-top: 42px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
