:root {
  color-scheme: light;
  --pine: #073b3a;
  --teal: #19b6a5;
  --lime: #b9f05b;
  --chalk: #f5faf8;
  --paper: #ffffff;
  --cobalt: #176fdd;
  --violet: #7657c8;
  --coral: #ef6a5b;
  --muted: #536766;
  --line: #cfe2de;
  --shadow: 0 28px 80px rgba(7, 59, 58, 0.17);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--chalk);
  color: var(--pine);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 90% 10%, rgba(185, 240, 91, 0.2), transparent 22rem),
    var(--chalk);
}

a {
  color: inherit;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.22em;
}

.site-header,
main,
footer {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  min-height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 1.28rem;
  font-weight: 760;
  letter-spacing: -0.03em;
  text-decoration: none;
}

.brand img,
.quote-sheet img {
  border-radius: 22%;
}

nav,
.footer-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

nav a,
.footer-links a {
  color: var(--muted);
  font-weight: 650;
  text-decoration: none;
}

nav a:hover,
nav a:focus-visible,
.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--pine);
  text-decoration: underline;
}

.hero {
  min-height: 690px;
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(360px, 0.94fr);
  align-items: center;
  gap: clamp(52px, 8vw, 112px);
  padding: 72px 0 112px;
}

.eyebrow {
  margin: 0 0 16px;
  color: #0a877a;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  text-wrap: pretty;
}

h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(3.4rem, 7.2vw, 6.6rem);
  line-height: 0.92;
  letter-spacing: -0.045em;
}

.intro {
  max-width: 680px;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: clamp(1.12rem, 2vw, 1.35rem);
  line-height: 1.55;
}

.product-promise {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}

.product-promise span {
  padding: 10px 14px;
  border: 1px solid rgba(7, 59, 58, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.64);
  font-size: 0.94rem;
  font-weight: 720;
}

.availability {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.hero-art {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
}

.colour-orbit {
  position: absolute;
  width: min(100%, 500px);
  aspect-ratio: 1;
  border: 1px solid rgba(7, 59, 58, 0.1);
  border-radius: 50%;
}

.colour-orbit::before,
.colour-orbit::after {
  content: "";
  position: absolute;
  inset: 13%;
  border: 1px solid rgba(7, 59, 58, 0.08);
  border-radius: inherit;
}

.colour-orbit::after {
  inset: 28%;
}

.orbit-dot {
  position: absolute;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  box-shadow: 0 10px 24px rgba(7, 59, 58, 0.14);
}

.dot-one { top: 8%; left: 22%; background: var(--cobalt); }
.dot-two { top: 19%; right: 7%; background: var(--coral); }
.dot-three { right: 17%; bottom: 5%; background: var(--violet); }
.dot-four { bottom: 13%; left: 8%; background: var(--lime); }

.quote-sheet {
  position: relative;
  width: min(390px, 88%);
  min-height: 470px;
  padding: 30px;
  border: 1px solid rgba(7, 59, 58, 0.08);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
  transform: rotate(2deg);
}

.quote-sheet header {
  display: flex;
  align-items: center;
  gap: 14px;
}

.quote-sheet header div {
  display: grid;
  gap: 4px;
}

.quote-sheet header strong {
  font-size: 1.08rem;
}

.quote-sheet header span,
.quote-sheet dd {
  color: var(--muted);
}

.quote-band {
  margin: 30px -30px 18px;
  padding: 14px 30px;
  background: var(--pine);
  color: white;
  font-weight: 760;
}

.quote-sheet dl {
  margin: 0;
}

.quote-sheet dl div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.quote-sheet dt {
  font-weight: 720;
}

.quote-sheet dd {
  margin: 0;
}

.quote-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 24px;
  font-size: 1.1rem;
  font-weight: 780;
}
