:root {
  --navy: #0f1f33;
  --navy-2: #142945;
  --red: #dc1218;
  --ink: #142033;
  --muted: #607086;
  --line: #d8dee8;
  --soft: #f5f7fb;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(15, 31, 51, 0.16);
  --site-frame: min(calc(100% - clamp(32px, 10vw, 180px)), 1080px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: var(--site-frame);
  min-height: 68px;
  margin: 0 auto;
  padding: 8px 0;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.brand picture,
.brand img {
  display: block;
}

.brand img {
  width: min(300px, 42vw);
  max-height: 66px;
  height: auto;
  object-fit: contain;
  object-position: left center;
}

.nav {
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.nav a {
  text-decoration: none;
}

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

.nav-cta {
  color: var(--white) !important;
  background: var(--navy);
  border-radius: 8px;
  padding: 10px 14px;
}

.hero {
  position: relative;
  width: var(--site-frame);
  min-height: clamp(420px, 34vw, 520px);
  margin: 0 auto;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--navy);
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(15, 31, 51, 0.92) 0%, rgba(15, 31, 51, 0.68) 44%, rgba(15, 31, 51, 0.08) 100%),
    linear-gradient(0deg, rgba(15, 31, 51, 0.88) 0%, rgba(15, 31, 51, 0) 46%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(100%, 1080px);
  max-width: none;
  margin: 0 auto;
  padding: 0 30px 46px;
  color: var(--white);
}

.eyebrow,
.section-kicker {
  margin: 0 0 10px;
  color: var(--red);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 680px;
  margin-bottom: 18px;
  font-size: clamp(42px, 7vw, 82px);
  line-height: 0.98;
}

h2 {
  margin-bottom: 18px;
  color: var(--navy);
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.05;
}

h3 {
  color: var(--navy);
  font-size: 22px;
}

.hero-copy {
  max-width: 610px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 20px;
}

.hero-note {
  display: inline-block;
  max-width: 640px;
  margin: 2px 0 0;
  padding: 10px 12px;
  color: #ffffff;
  background: rgba(220, 18, 24, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  font-size: 15px;
  font-weight: 800;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 8px;
  padding: 13px 20px;
  font-weight: 800;
  text-decoration: none;
}

.button.primary {
  color: var(--white);
  background: var(--red);
}

.button.secondary {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.58);
}

.button.dark {
  background: var(--navy);
}

.button.outline {
  color: var(--navy);
  background: var(--white);
  border: 1px solid var(--line);
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.section {
  padding: clamp(54px, 8vw, 96px) 0;
}

.band {
  background: var(--soft);
  border-block: 1px solid var(--line);
}

.intro {
  padding: 42px 0;
}

.split {
  display: grid;
  grid-template-columns: minmax(220px, 0.7fr) minmax(280px, 1fr);
  gap: 36px;
  align-items: start;
}

.split > p,
.split > div + p,
.split > div:last-child p {
  color: var(--muted);
  font-size: 19px;
}

.split > div:last-child p:last-child {
  margin-bottom: 0;
  color: var(--navy);
  font-weight: 800;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.download-section {
  padding-bottom: 0;
}

.download-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: 28px;
  color: var(--white);
  background: var(--navy);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.download-panel h2 {
  color: var(--white);
}

.download-panel p:not(.section-kicker) {
  max-width: 700px;
  margin-bottom: 0;
  color: #c9d3e2;
}

.download-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

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

.feature-grid .feature-card:last-child:nth-child(3n + 1) {
  grid-column: 2;
}

.feature-card,
.price-card,
details,
.cta-section {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 1px 0 rgba(15, 31, 51, 0.04);
}

.feature-card,
.price-card {
  padding: 24px;
}

.feature-card p,
.price-card li,
.faq-list p,
.cta-section p {
  color: var(--muted);
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 32px;
  margin-bottom: 18px;
  color: var(--red);
  background: #fff1f1;
  border: 1px solid #ffd6d6;
  border-radius: 8px;
  font-weight: 900;
}

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

.audience-list span {
  color: var(--navy);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px 14px;
  font-weight: 800;
}

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

.price-card {
  position: relative;
}

.price-card.highlighted {
  border-color: rgba(220, 18, 24, 0.45);
  box-shadow: var(--shadow);
}

.price {
  color: var(--navy);
  font-size: 34px;
  font-weight: 900;
}

.price-card ul {
  padding-left: 20px;
}

.price-card li {
  margin: 10px 0;
}

.badge {
  position: absolute;
  top: 18px;
  right: 18px;
  margin: 0;
  color: var(--red);
  background: #fff1f1;
  border: 1px solid #ffd6d6;
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 900;
}

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

details {
  padding: 18px 20px;
}

summary {
  cursor: pointer;
  color: var(--navy);
  font-weight: 900;
}

details p {
  margin: 12px 0 0;
}

.cta-section {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  margin-top: clamp(54px, 8vw, 96px);
  margin-bottom: clamp(54px, 8vw, 96px);
  padding: 30px;
}

.footer {
  padding: 28px 0;
  color: #c9d3e2;
  background: var(--navy);
}

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

.footer img {
  width: 150px;
  height: auto;
  background: var(--white);
  border-radius: 6px;
  padding: 6px;
}

.footer p {
  margin: 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 6px !important;
}

.footer-links a {
  color: var(--white);
  font-weight: 700;
}

.legal-page {
  min-height: 100vh;
  background: var(--soft);
}

.legal-main {
  padding: 54px 0 80px;
}

.legal-card {
  max-width: 880px;
  margin: 0 auto;
  padding: clamp(24px, 5vw, 46px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.legal-card h1 {
  color: var(--navy);
  font-size: clamp(34px, 5vw, 54px);
}

.legal-card h2 {
  margin-top: 32px;
  font-size: 26px;
}

.legal-card p,
.legal-card li {
  color: var(--muted);
}

@media (max-width: 900px) {
  .site-header {
    align-items: center;
    flex-direction: column;
    gap: 8px;
    width: 100%;
    min-height: 0;
    padding: 10px 18px;
  }

  .nav {
    width: 100%;
    justify-content: center;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .hero {
    width: 100%;
    min-height: 560px;
    background:
      radial-gradient(circle at 86% 22%, rgba(220, 18, 24, 0.16), transparent 32%),
      linear-gradient(160deg, #0b1726 0%, #10243d 58%, #0f1f33 100%);
  }

  .hero-bg {
    opacity: 0.16;
    object-fit: contain;
    object-position: center top;
  }

  .hero-overlay {
    background:
      linear-gradient(0deg, rgba(11, 23, 38, 0.98) 0%, rgba(11, 23, 38, 0.88) 58%, rgba(11, 23, 38, 0.74) 100%),
      linear-gradient(90deg, rgba(11, 23, 38, 0.94) 0%, rgba(11, 23, 38, 0.78) 100%);
  }

  .split,
  .feature-grid,
  .pricing-grid,
  .download-panel,
  .cta-section {
    grid-template-columns: 1fr;
  }

  .download-actions {
    justify-content: flex-start;
  }

  .download-actions .button {
    width: 100%;
  }

  .cta-section .button {
    width: 100%;
  }
}

@media (max-width: 560px) {
  .brand img {
    width: min(220px, 54vw);
    max-height: 128px;
  }

  .nav {
    justify-content: center;
    gap: 12px;
    font-size: 12px;
  }

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

  .hero {
    min-height: 460px;
    align-items: center;
  }

  .hero-bg {
    width: min(520px, 140vw);
    height: auto;
    inset: 18px auto auto 50%;
    opacity: 0.14;
    object-fit: contain;
    transform: translateX(-50%);
  }

  .hero-content {
    max-width: 390px;
    margin: 0 auto;
    padding-inline: 20px;
    padding-block: 44px;
    text-align: center;
  }

  h1 {
    font-size: 40px;
    line-height: 1;
  }

  .hero-copy {
    font-size: 16px;
  }

  .hero-note {
    font-size: 14px;
  }

  .hero-actions {
    justify-content: center;
    margin-top: 22px;
  }

  .hero-actions .button {
    width: 100%;
  }

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