:root {
  --bg: #ffffff;
  --bg-soft: #f4f7fb;
  --text: #111827;
  --muted: #5d6675;
  --line: #d9e1ec;
  --blue: #0756a6;
  --blue-dark: #08182a;
  --blue-soft: #eaf3ff;
  --max: 1120px;
  font-family: Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.55;
}

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

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

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(var(--max), calc(100% - 28px));
  margin: 0 auto;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  background: #ffffff;
}

.brand,
.site-nav,
.hero-actions,
.site-footer nav {
  display: flex;
  align-items: center;
}

.brand {
  padding: 0;
  border: 0;
  background: transparent;
}

.brand img {
  width: clamp(150px, 18vw, 190px);
  height: auto;
  max-height: 46px;
  object-fit: contain;
}

.site-nav {
  gap: 2px;
}

.site-nav a {
  padding: 10px 12px;
  color: #263241;
  font-size: 0.96rem;
  font-weight: 700;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--blue);
  background: var(--blue-soft);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 38px;
  border: 1px solid var(--line);
  background: #ffffff;
  color: var(--text);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.hero,
.page-hero,
.section,
.pricing-grid,
.article-list,
.contact-shell,
.split-section,
.site-footer {
  width: min(var(--max), calc(100% - 28px));
  margin-inline: auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: 34px;
  align-items: center;
  padding: 56px 0 42px;
}

.hero h1,
.page-hero h1 {
  max-width: 720px;
  margin: 0;
  color: #08182a;
  font-size: clamp(2.6rem, 7vw, 5.6rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.page-hero h1 {
  font-size: clamp(2.1rem, 5vw, 4.2rem);
}

.hero-text,
.page-hero p:not(.eyebrow) {
  max-width: 650px;
  color: var(--muted);
  font-size: 1.15rem;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid var(--blue);
  background: #ffffff;
  color: var(--blue);
  font-weight: 800;
}

.button:hover {
  background: var(--blue-soft);
}

.button.primary {
  background: var(--blue);
  color: #ffffff;
}

.button.primary:hover {
  background: #064884;
}

.button.ghost {
  background: #ffffff;
}

.hero-visual {
  margin: 0;
  padding: 24px;
  border: 1px solid var(--line);
  background: var(--bg-soft);
}

.hero-visual h2 {
  margin: 0 0 12px;
  color: var(--blue-dark);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1.1;
}

.hero-visual p {
  margin: 0 0 18px;
  color: var(--muted);
}

.hero-visual ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-visual li {
  padding: 10px 12px;
  border-left: 4px solid var(--blue);
  background: #ffffff;
  font-weight: 700;
}

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

.metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 100%;
}

.metric {
  padding: 26px 18px;
  text-align: center;
}

.metric strong {
  display: block;
  color: var(--blue);
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1;
}

.metric span {
  color: var(--muted);
  font-weight: 700;
}

.section,
.page-hero,
.pricing-grid,
.article-list,
.contact-shell,
.split-section {
  padding: 58px 0;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 24px;
}

.section-heading h2,
.cta-band h2 {
  margin: 0;
  color: #08182a;
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  line-height: 1.08;
}

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

.feature-card,
.plan-card,
.article-card,
.copy-panel,
.contact-form,
.contact-aside {
  border: 1px solid var(--line);
  background: #ffffff;
}

.feature-card {
  min-height: 190px;
  padding: 20px;
}

.feature-card h2,
.feature-card h3,
.plan-card h2,
.article-card h2,
.copy-panel h2,
.contact-aside h2 {
  margin: 0 0 10px;
  color: #08182a;
  line-height: 1.15;
}

.feature-card p,
.plan-card p,
.article-card p,
.copy-panel p,
.contact-aside p,
.cta-band p {
  color: var(--muted);
}

.cta-band {
  width: 100%;
  padding: 54px max(14px, calc((100% - var(--max)) / 2));
}

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

.plan-card {
  padding: 22px;
}

.plan-card.featured {
  border: 2px solid var(--blue);
}

.plan-card > span,
.article-card time {
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.plan-card strong {
  display: block;
  margin: 8px 0 14px;
  font-size: 1.35rem;
}

.plan-card ul {
  display: grid;
  gap: 8px;
  margin: 22px 0;
  padding: 0;
  list-style: none;
}

.plan-card li::before {
  content: "OK";
  display: inline-block;
  margin-right: 8px;
  color: var(--blue);
  font-size: 0.76rem;
  font-weight: 800;
}

.split-section,
.contact-shell {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.copy-panel,
.contact-aside {
  padding: 24px;
}

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

.article-card {
  padding: 22px;
}

.radar-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  width: min(var(--max), calc(100% - 28px));
  margin: 0 auto;
  padding-bottom: 18px;
}

.radar-list {
  padding-top: 18px;
}

.radar-card {
  display: grid;
  gap: 10px;
}

.radar-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.radar-meta span {
  display: inline-block;
  padding: 4px 8px;
  border: 1px solid #c7d7e8;
  background: var(--blue-soft);
  color: var(--blue-dark);
  font-size: 0.78rem;
  font-weight: 800;
}

.nyrax-note {
  margin: 0;
  padding: 10px 12px;
  border-left: 4px solid var(--blue);
  background: var(--bg-soft);
}

.radar-link {
  color: var(--blue);
  font-weight: 800;
}

.contact-form {
  display: grid;
  gap: 15px;
  padding: 22px;
}

.contact-form label {
  display: grid;
  gap: 6px;
  color: #263241;
  font-weight: 700;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #b9c6d6;
  background: #ffffff;
  color: var(--text);
  font: inherit;
  padding: 11px 12px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid #b9daf8;
  border-color: var(--blue);
}

.contact-form textarea {
  resize: vertical;
}

.contact-email {
  display: inline-block;
  margin-top: 14px;
  color: var(--blue);
  font-weight: 700;
}

.contact-form small,
.form-status {
  min-height: 20px;
  color: #b42318;
}

.hp-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 30px 0 42px;
  border-top: 1px solid var(--line);
  color: #263241;
}

.site-footer p {
  margin: 6px 0 0;
  color: var(--muted);
}

.site-footer nav {
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px;
  color: #263241;
  font-weight: 700;
}

.reveal {
  opacity: 1;
  transform: none;
}

@media (max-width: 960px) {
  .hero,
  .split-section,
  .contact-shell {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 720px) {
  .site-header {
    position: relative;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 8px;
    border: 1px solid var(--line);
    background: #ffffff;
  }

  .site-nav[data-open="true"] {
    display: flex;
  }

  .feature-grid,
  .pricing-grid,
  .article-list,
  .radar-intro,
  .metrics {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: clamp(2.5rem, 16vw, 4rem);
  }

  .site-footer {
    flex-direction: column;
  }

  .site-footer nav {
    justify-content: flex-start;
  }
}
