:root {
  color-scheme: light;
  --ink: #17211e;
  --muted: #5f6d67;
  --line: #dfe7e1;
  --paper: #ffffff;
  --mist: #f5f7f3;
  --teal: #1f7a68;
  --teal-dark: #155848;
  --coral: #d86443;
  --gold: #e1b949;
  --focus: #0d6958;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 0 44px;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

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

.brand-mark {
  width: 22px;
  height: 22px;
  border: 6px solid var(--teal);
  border-radius: 50%;
  box-shadow:
    13px -6px 0 -7px var(--coral),
    18px 9px 0 -8px var(--gold);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-nav a {
  padding: 10px 14px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 8px;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--ink);
  background: var(--mist);
  outline: none;
}

.hero {
  min-height: 82svh;
  display: flex;
  align-items: center;
  padding: 96px 44px 116px;
  background-image:
    linear-gradient(90deg, rgba(18, 31, 29, 0.98) 0%, rgba(18, 31, 29, 0.9) 40%, rgba(18, 31, 29, 0.42) 72%),
    url("assets/b2b-radar-brand-hero.png");
  background-size: cover;
  background-position: center;
  border-bottom: 1px solid #253b37;
}

.hero__inner {
  width: min(1120px, 100%);
  margin: 0 auto;
}

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

.hero .eyebrow {
  color: #7be0c5;
}

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

h1 {
  max-width: 620px;
  margin-bottom: 18px;
  font-size: 4.8rem;
  line-height: 0.98;
  letter-spacing: 0;
}

.hero h1 {
  color: #ffffff;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.18);
}

h2 {
  font-size: 2.45rem;
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  font-size: 1.3rem;
  line-height: 1.2;
  letter-spacing: 0;
}

.hero__copy {
  max-width: 590px;
  margin-bottom: 30px;
  color: #d6e4df;
  font-size: 1.36rem;
  line-height: 1.45;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font: inherit;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

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

.button--primary:hover,
.button--primary:focus-visible {
  background: var(--teal-dark);
  outline: 3px solid rgba(31, 122, 104, 0.22);
}

.button--secondary {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.24);
}

.button--secondary:hover,
.button--secondary:focus-visible {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(123, 224, 197, 0.8);
  outline: 3px solid rgba(123, 224, 197, 0.18);
}

.signal-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}

.signal-strip div {
  min-height: 116px;
  padding: 26px 44px;
  background: var(--paper);
}

.signal-strip strong {
  display: block;
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.signal-strip span {
  display: block;
  max-width: 390px;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.45;
}

.section {
  padding: 86px 44px;
}

.section__intro {
  width: min(760px, 100%);
  margin: 0 auto 38px;
  text-align: center;
}

.section__intro p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.6;
}

.section--light {
  background: var(--mist);
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  width: min(1120px, 100%);
  margin: 0 auto;
}

.offer-card {
  padding: 30px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.offer-card__topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
}

.offer-number {
  color: var(--coral);
  font-size: 0.9rem;
  font-weight: 900;
}

.offer-pill {
  padding: 8px 10px;
  color: var(--teal-dark);
  font-size: 0.78rem;
  font-weight: 900;
  background: #e4f1ec;
  border-radius: 8px;
}

.offer-card p {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.56;
}

.offer-card ul {
  display: grid;
  gap: 12px;
  margin: 22px 0 24px;
  padding: 0;
  list-style: none;
}

.offer-card li {
  position: relative;
  padding-left: 22px;
  color: #31413b;
  line-height: 1.45;
}

.offer-card li::before {
  content: "";
  position: absolute;
  top: 0.65em;
  left: 0;
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
}

.text-link {
  color: var(--teal-dark);
  font-weight: 900;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.section--split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 56px;
  align-items: start;
  width: min(1120px, 100%);
  margin: 0 auto;
  background: var(--paper);
}

.section--split h2 {
  max-width: 540px;
}

.fit-list {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.fit-list p {
  margin: 0;
  padding: 22px;
  color: #31413b;
  background: var(--paper);
  font-weight: 700;
}

.section--enquiry {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 0.58fr);
  gap: 56px;
  align-items: start;
  background: #f0f4ef;
  border-top: 1px solid var(--line);
}

.enquiry-copy {
  max-width: 630px;
  justify-self: end;
}

.enquiry-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.62;
}

.enquiry-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  width: min(560px, 100%);
  padding: 24px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.enquiry-form label {
  display: grid;
  gap: 8px;
  color: #31413b;
  font-size: 0.9rem;
  font-weight: 900;
}

.enquiry-form input,
.enquiry-form select,
.enquiry-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 11px 12px;
  color: var(--ink);
  font: inherit;
  background: #fbfcfa;
  border: 1px solid #cfd9d2;
  border-radius: 8px;
}

.enquiry-form textarea {
  min-height: 126px;
  resize: vertical;
}

.enquiry-form input:focus,
.enquiry-form select:focus,
.enquiry-form textarea:focus {
  border-color: var(--focus);
  outline: 3px solid rgba(31, 122, 104, 0.18);
}

.full-width {
  grid-column: 1 / -1;
}

.form-note {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px 44px;
  color: #dbe6e1;
  background: #17211e;
}

.site-footer span {
  font-weight: 900;
}

.site-footer a {
  color: #ffffff;
  font-weight: 800;
}

@media (max-width: 920px) {
  .site-header {
    padding: 0 24px;
  }

  .hero {
    min-height: 78svh;
    padding: 86px 24px 96px;
    background-position: 56% center;
  }

  h1 {
    font-size: 3.4rem;
  }

  h2 {
    font-size: 2rem;
  }

  .hero__copy {
    font-size: 1.16rem;
  }

  .signal-strip,
  .offer-grid,
  .section--split,
  .section--enquiry {
    grid-template-columns: 1fr;
  }

  .signal-strip div,
  .section,
  .section--split,
  .section--enquiry {
    padding-left: 24px;
    padding-right: 24px;
  }

  .enquiry-copy {
    justify-self: start;
  }

}

@media (max-width: 620px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    padding: 18px;
  }

  .site-nav {
    width: 100%;
    justify-content: space-between;
  }

  .site-nav a {
    padding: 10px 8px;
    font-size: 0.9rem;
  }

  .hero {
    min-height: 76svh;
    padding: 64px 18px 76px;
    background-image:
      linear-gradient(180deg, rgba(18, 31, 29, 0.98) 0%, rgba(18, 31, 29, 0.92) 55%, rgba(18, 31, 29, 0.68) 100%),
      url("assets/b2b-radar-brand-hero.png");
    background-position: 68% center;
  }

  h1 {
    font-size: 2.55rem;
  }

  h2 {
    font-size: 1.72rem;
  }

  .hero__actions {
    width: 100%;
  }

  .button {
    width: 100%;
  }

  .section {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .section__intro {
    text-align: left;
  }

  .offer-card,
  .enquiry-form {
    padding: 20px;
  }

  .enquiry-form {
    grid-template-columns: 1fr;
  }

  .site-footer {
    flex-direction: column;
    padding: 24px 18px;
  }
}
