:root {
  color-scheme: light;
  --ink: #071225;
  --muted: #516073;
  --line: #dce5ef;
  --paper: #ffffff;
  --soft: #f3f8fb;
  --navy: #062968;
  --teal: #00a98f;
  --green: #4de46c;
  --shadow: 0 24px 70px rgba(7, 18, 37, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

a {
  color: inherit;
}

.site-header {
  align-items: center;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 24px;
  justify-content: space-between;
  min-height: 76px;
  padding: 14px clamp(18px, 4vw, 56px);
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(16px);
}

.brand {
  align-items: center;
  display: flex;
  gap: 12px;
  font-size: 1.05rem;
  font-weight: 800;
  text-decoration: none;
}

.brand img {
  border-radius: 10px;
  height: 42px;
  object-fit: cover;
  width: 42px;
}

.site-header nav,
.site-footer nav {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.site-header nav a,
.site-footer nav a,
.text-link {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
}

.site-header nav a:hover,
.site-footer nav a:hover,
.text-link:hover {
  color: var(--navy);
}

.nav-cta {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 14px;
}

.hero {
  align-items: center;
  display: grid;
  gap: clamp(28px, 5vw, 72px);
  grid-template-columns: minmax(0, 1.02fr) minmax(280px, 0.8fr);
  min-height: calc(100vh - 76px);
  padding: clamp(48px, 8vw, 96px) clamp(18px, 5vw, 72px);
}

.hero-copy {
  max-width: 760px;
}

.eyebrow {
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  margin: 0 0 14px;
  text-transform: uppercase;
}

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

h1 {
  font-size: clamp(2.6rem, 5.6vw, 5.8rem);
  line-height: 0.98;
  margin-bottom: 26px;
  max-width: 980px;
}

h2 {
  font-size: clamp(2rem, 3.5vw, 3.4rem);
  line-height: 1.05;
  margin-bottom: 16px;
}

h3 {
  font-size: 1.7rem;
  margin-bottom: 12px;
}

p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

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

.button {
  align-items: center;
  border-radius: 999px;
  display: inline-flex;
  font-weight: 900;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  text-decoration: none;
}

.button.primary {
  background: linear-gradient(135deg, var(--navy), var(--teal));
  color: #ffffff;
}

.button.secondary {
  background: #ffffff;
  border: 1px solid var(--line);
  color: var(--ink);
}

.hero-media {
  align-items: center;
  background:
    radial-gradient(circle at 72% 12%, rgba(77, 228, 108, 0.26), transparent 36%),
    linear-gradient(145deg, #071c4b, #0a7d74);
  border-radius: 8px;
  box-shadow: var(--shadow);
  display: flex;
  justify-content: center;
  min-height: 460px;
  overflow: hidden;
  padding: clamp(24px, 4vw, 44px);
}

.hero-media img {
  border-radius: 8px;
  display: block;
  height: auto;
  max-width: 100%;
}

.section {
  padding: 88px clamp(18px, 5vw, 72px);
}

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

.product-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 34px;
}

.product-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 24px;
  grid-template-rows: 210px auto;
  padding: 22px;
}

.product-card img {
  align-self: center;
  display: block;
  justify-self: center;
  max-height: 190px;
  max-width: 100%;
  object-fit: contain;
}

.rapt-card img {
  border-radius: 8px;
}

.trust-band {
  align-items: center;
  background: var(--soft);
  border-block: 1px solid var(--line);
  display: flex;
  gap: 26px;
  justify-content: space-between;
  padding: 58px clamp(18px, 5vw, 72px);
}

.trust-band div {
  max-width: 780px;
}

.site-footer {
  align-items: center;
  display: flex;
  gap: 22px;
  justify-content: space-between;
  padding: 30px clamp(18px, 5vw, 72px);
}

.site-footer div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.site-footer span {
  color: var(--muted);
  font-size: 0.9rem;
}

.legal-page {
  margin: 0 auto;
  max-width: 900px;
  padding: 70px 22px 90px;
}

.legal-page h1 {
  font-size: clamp(2.4rem, 5vw, 4.5rem);
}

.legal-page section {
  border-top: 1px solid var(--line);
  padding: 28px 0;
}

.legal-page a {
  color: var(--navy);
  font-weight: 800;
}

.contact-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  margin: 30px 0;
  padding: 28px;
}

.contact-card span {
  color: var(--muted);
  display: block;
  font-size: 0.85rem;
  font-weight: 900;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.contact-card a {
  font-size: clamp(1.4rem, 4vw, 2.4rem);
}

@media (max-width: 820px) {
  .site-header,
  .site-footer,
  .trust-band {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero,
  .product-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-media {
    min-height: 320px;
  }
}

@media (max-width: 520px) {
  .site-header nav {
    gap: 12px;
  }

  .site-header nav a {
    font-size: 0.88rem;
  }

  .product-card {
    grid-template-rows: 160px auto;
  }
}
