* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: #111522;
  background: #f6f5f1;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.site-header {
  padding: 24px 6vw 8px;
  background: #f6f5f1;
}

.nav-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.brand {
  font-size: 20px;
  letter-spacing: 0.08em;
  text-transform: lowercase;
  font-weight: 600;
}

.ad-label {
  font-size: 12px;
  background: #222;
  color: #fff;
  padding: 6px 10px;
  border-radius: 999px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 14px;
}

.nav-links a {
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
}

.nav-links a:focus-visible {
  outline: 2px solid #2c4dd2;
  outline-offset: 3px;
}

.mag-hero {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  padding: 24px 6vw 36px;
  align-items: stretch;
}

.mag-hero-text {
  flex: 1 1 360px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mag-hero-media {
  flex: 1 1 320px;
  background: #cfd7e6;
  border-radius: 24px;
  min-height: 320px;
  position: relative;
  overflow: hidden;
}

.mag-hero-media img {
  width: 100%;
  height: 100%;
}

.eyebrow {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #6a6f7a;
}

.headline {
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.1;
  margin: 0;
}

.subhead {
  font-size: 18px;
  color: #3d4250;
  margin: 0;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.btn {
  border: none;
  padding: 12px 20px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
}

.btn-primary {
  background: #1c2e52;
  color: #fff;
}

.btn-secondary {
  background: #e2e7f2;
  color: #1c2e52;
}

.btn-link {
  background: transparent;
  padding: 0;
  color: #1c2e52;
  text-decoration: underline;
}

.section {
  padding: 42px 6vw;
}

.section-light {
  background: #fefcf7;
}

.section-contrast {
  background: #101826;
  color: #f6f5f1;
}

.section-muted {
  background: #e9edf4;
}

.bg-atlas {
  background-image: url("https://images.pexels.com/photos/5032708/pexels-photo-5032708.jpeg");
  background-size: cover;
  background-position: center;
}

.bg-spectrum {
  background-image: url("https://images.pexels.com/photos/7788350/pexels-photo-7788350.jpeg");
  background-size: cover;
  background-position: center;
}

.mag-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
}

.col {
  flex: 1 1 260px;
}

.card {
  background: #fff;
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 18px 32px rgba(16, 24, 38, 0.08);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.card img {
  border-radius: 14px;
  width: 100%;
  height: 180px;
  background: #d8dee9;
}

.card h3 {
  margin: 0;
  font-size: 18px;
}

.card p {
  margin: 0;
  color: #4a4f5d;
}

.divider {
  height: 1px;
  background: rgba(17, 21, 34, 0.1);
  margin: 12px 0;
}

.price {
  font-weight: 600;
  color: #1c2e52;
}

.highlight {
  background: #1c2e52;
  color: #fff;
  padding: 20px;
  border-radius: 22px;
}

.inline-image {
  border-radius: 18px;
  overflow: hidden;
  background: #cdd5df;
}

.inline-image img {
  width: 100%;
  height: 240px;
}

.quote {
  font-style: italic;
  border-left: 3px solid #1c2e52;
  padding-left: 14px;
}

.form-shell {
  background: #fff;
  border-radius: 22px;
  padding: 24px;
  box-shadow: 0 18px 32px rgba(16, 24, 38, 0.1);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-size: 14px;
  font-weight: 600;
}

select,
input,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #c7ced8;
  font-family: inherit;
  font-size: 14px;
}

.form-note {
  font-size: 12px;
  color: #586173;
}

.footer {
  padding: 36px 6vw;
  background: #0e1420;
  color: #d7dbe5;
  font-size: 13px;
  margin-top: auto;
}

.footer-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}

.footer a {
  color: #d7dbe5;
  text-decoration: underline;
}

.footer .disclaimer {
  margin-top: 18px;
  color: #b8beca;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: #f0c23a;
  color: #1a1a1a;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 10px 20px rgba(16, 24, 38, 0.15);
  z-index: 20;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  bottom: 16px;
  background: #fff;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 16px 32px rgba(16, 24, 38, 0.12);
  max-width: 340px;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.split-layout {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: center;
}

.split-layout .visual {
  flex: 1 1 320px;
  border-radius: 20px;
  overflow: hidden;
  background: #c7cfdb;
}

.split-layout .visual img {
  width: 100%;
  height: 260px;
}

.split-layout .text {
  flex: 1 1 320px;
}

.list-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.list-columns ul {
  margin: 0;
  padding-left: 18px;
}

.legal-body {
  max-width: 860px;
  margin: 0 auto;
}

.meta {
  color: #6a6f7a;
  font-size: 13px;
}
