body {
  margin: 0;
  font-family: Arial, "Libre Franklin", sans-serif;
  color: #1e2b36;
  background: #f3f4f6;
}

* {
  box-sizing: border-box;
}

a {
  color: #1d5fa7;
  text-decoration: none;
}

button {
  font: inherit;
  cursor: pointer;
}

.page-shell {
  min-height: 100vh;
  background:
    linear-gradient(180deg, #ffffff 0, #ffffff 180px, #f3f4f6 180px, #f3f4f6 100%);
}

.topbar {
  background: linear-gradient(180deg, #fafbfd, #edf1f5);
  border-bottom: 1px solid #cfd7df;
}

.topbar-inner,
main,
.footer-inner {
  width: min(1100px, calc(100% - 2rem));
  margin: 0 auto;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  color: #22303c;
  font-size: 1.25rem;
  font-weight: 700;
}

.brand-mark {
  width: 2.5rem;
  height: 2.5rem;
  display: inline-grid;
  place-items: center;
  border: 1px solid #bcc7d2;
  border-radius: 6px;
  background: #ffffff;
  overflow: hidden;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.nav {
  display: inline-flex;
  gap: 1.25rem;
  font-size: 0.95rem;
}

main {
  padding: 2rem 0 3rem;
}

.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.5rem;
  align-items: start;
  margin-bottom: 1.5rem;
}

.hero-copy,
.download-panel,
.feature-card,
.details-main,
.side-box,
.portal-card,
.policy-card,
.statement-panel {
  background: #ffffff;
  border: 1px solid #d4dbe2;
  border-radius: 4px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

.hero-copy,
.download-panel,
.details-main,
.side-box,
.policy-card,
.statement-panel {
  padding: 1.5rem;
}

.hero-copy h1,
.section-head h2,
.download-panel h2,
.inner-hero h1,
.statement-panel h2 {
  margin: 0;
  color: #203040;
  font-family: "Libre Franklin", Arial, sans-serif;
}

.hero-copy h1 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
}

.eyebrow {
  margin: 0 0 0.8rem;
  font-size: 0.8rem;
  color: #6d7f90;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.hero-text,
.hero-note,
.download-panel p,
.feature-card p,
.details-main p,
.portal-card p,
.policy-card p,
.statement-panel p,
.inner-hero p {
  color: #4d5d6c;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0 1rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.9rem;
  padding: 0.75rem 1.1rem;
  border-radius: 3px;
  border: 1px solid #b9c6d3;
  font-weight: 700;
}

.button-primary {
  background: linear-gradient(180deg, #4b86c5, #2f6daa);
  border-color: #2c679f;
  color: #ffffff;
}

.button-secondary {
  background: linear-gradient(180deg, #ffffff, #edf2f6);
  color: #29435d;
}

.button-wide {
  width: 100%;
}

.hero-note {
  margin: 0;
  font-size: 0.95rem;
}

.download-panel h2 {
  margin-bottom: 0.75rem;
}

.spec-table {
  display: grid;
  gap: 0.75rem;
  margin-top: 1rem;
}

.spec-table div {
  display: grid;
  gap: 0.2rem;
  padding-top: 0.75rem;
  border-top: 1px solid #e4e9ee;
}

.spec-table span {
  font-size: 0.85rem;
  color: #718496;
  text-transform: uppercase;
}

.spec-table strong {
  color: #233444;
  font-size: 0.96rem;
}

.notice-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 2rem;
}

.notice-strip span {
  padding: 0.55rem 0.85rem;
  background: #ffffff;
  border: 1px solid #d4dbe2;
  border-radius: 3px;
  color: #4f6071;
  font-size: 0.92rem;
}

.features,
.details {
  margin-bottom: 2rem;
}

.section-head {
  margin-bottom: 1rem;
}

.section-head h2,
.inner-hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
}

.feature-grid,
.policy-grid,
.portal-grid {
  display: grid;
  gap: 1rem;
}

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

.feature-card,
.portal-card {
  padding: 1.3rem;
}

.feature-card h3,
.portal-card h3,
.policy-card h2,
.side-box h3 {
  margin-top: 0;
  color: #213445;
}

.details-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1rem;
}

.side-box ul {
  margin: 0;
  padding-left: 1.15rem;
  color: #4d5d6c;
  line-height: 1.8;
}

.inner-main {
  width: min(1100px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 2rem 0 3rem;
}

.inner-hero {
  margin-bottom: 1.2rem;
}

.statement-panel {
  margin-top: 1rem;
}

.footer {
  border-top: 1px solid #d4dbe2;
  background: #f8fafc;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0 2rem;
  color: #607182;
  font-size: 0.94rem;
}

.consent-banner {
  position: fixed;
  left: 50%;
  bottom: 1rem;
  transform: translateX(-50%);
  width: min(860px, calc(100% - 1rem));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem;
  border: 1px solid #bfcad5;
  border-radius: 4px;
  background: #ffffff;
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.1);
}

.consent-banner p {
  margin: 0.35rem 0 0;
  color: #556575;
}

.banner-actions {
  display: flex;
  gap: 0.6rem;
  flex-shrink: 0;
}

.reset-button {
  margin-top: 0.2rem;
}

@media (max-width: 900px) {
  .hero,
  .details-layout,
  .feature-grid,
  .portal-grid,
  .policy-grid {
    grid-template-columns: 1fr;
  }

  .nav {
    display: none;
  }

  .consent-banner {
    flex-direction: column;
    align-items: stretch;
  }
}

@media (max-width: 640px) {
  .topbar-inner,
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-actions,
  .banner-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }
}
