:root {
  color-scheme: light;
  --sky: #e6f7ff;
  --sky-strong: #7bc7d9;
  --surface: #fffdf9;
  --surface-raised: #ffffff;
  --ink: #1f2a44;
  --muted: #6f6b62;
  --coral: #f2998d;
  --leaf: #8bbf6a;
  --gold: #e8b84e;
  --violet: #9b8bd3;
  --line: rgba(31, 42, 68, 0.14);
  --shadow: 0 18px 44px rgba(31, 42, 68, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--sky);
  color: var(--ink);
  font-family: ui-rounded, "SF Pro Rounded", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

.site-header,
footer {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
}

.brand img {
  border-radius: 8px;
  box-shadow: 0 8px 18px rgba(31, 42, 68, 0.18);
}

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

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

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

.hero {
  position: relative;
  min-height: min(820px, 82vh);
  overflow: hidden;
  isolation: isolate;
  display: flex;
  align-items: center;
  padding: 48px max(24px, calc((100vw - 1120px) / 2)) 72px;
  border-top: 1px solid rgba(31, 42, 68, 0.08);
  border-bottom: 1px solid rgba(31, 42, 68, 0.08);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(230, 247, 255, 0.98) 0%, rgba(230, 247, 255, 0.86) 42%, rgba(230, 247, 255, 0.18) 100%),
    linear-gradient(180deg, rgba(255, 253, 249, 0) 0%, rgba(255, 253, 249, 0.28) 100%);
}

.hero-art {
  position: absolute;
  inset: 0 max(24px, calc((100vw - 1120px) / 2)) 0 34%;
  z-index: -3;
}

.hero-shot {
  position: absolute;
  width: min(32vw, 310px);
  min-width: 180px;
  border: 7px solid var(--surface-raised);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.shot-one {
  right: 28%;
  top: 4%;
  transform: rotate(-4deg);
}

.shot-two {
  right: 4%;
  top: 16%;
  transform: rotate(5deg);
}

.shot-three {
  right: 18%;
  bottom: -12%;
  transform: rotate(2deg);
}

.hero-copy {
  width: min(640px, 100%);
}

.eyebrow {
  margin: 0 0 12px;
  color: #765d14;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 8ch;
  margin-bottom: 18px;
  font-size: clamp(3.8rem, 10vw, 7.4rem);
  line-height: 0.92;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.25rem;
}

.lede {
  max-width: 590px;
  color: #3b4357;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  font-weight: 650;
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border: 2px solid transparent;
  border-radius: 8px;
  font-weight: 850;
  text-decoration: none;
}

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

.button.secondary {
  background: var(--surface-raised);
  border-color: var(--line);
  color: var(--ink);
}

.trust-band {
  width: min(1120px, calc(100% - 32px));
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: -36px auto 0;
  position: relative;
  z-index: 2;
}

.trust-band p {
  min-height: 68px;
  display: grid;
  place-items: center;
  margin: 0;
  padding: 14px;
  background: var(--surface-raised);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 26px rgba(31, 42, 68, 0.1);
  color: var(--ink);
  font-weight: 850;
  text-align: center;
}

.section,
.page {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.section {
  padding: 82px 0 0;
}

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

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.feature {
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(31, 42, 68, 0.1);
}

.feature:nth-child(1) {
  border-top: 6px solid var(--coral);
}

.feature:nth-child(2) {
  border-top: 6px solid var(--sky-strong);
}

.feature:nth-child(3) {
  border-top: 6px solid var(--violet);
}

.feature img {
  width: 100%;
  aspect-ratio: 0.78;
  object-fit: cover;
  object-position: top center;
  background: var(--surface-raised);
}

.feature div {
  padding: 20px;
}

.feature p,
.split p,
.page-hero p,
.info-list p {
  color: var(--muted);
  font-weight: 600;
  line-height: 1.6;
}

.split,
.support-strip {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  align-items: center;
  gap: 38px;
}

.split {
  padding-bottom: 18px;
}

.support-strip {
  margin-top: 72px;
  margin-bottom: 54px;
  padding: 36px;
  background: var(--surface-raised);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 32px rgba(31, 42, 68, 0.1);
}

.support-strip .button {
  justify-self: end;
}

.page {
  padding: 54px 0 70px;
}

.page-hero {
  max-width: 760px;
  margin-bottom: 34px;
}

.page-hero h1 {
  max-width: 10ch;
  font-size: clamp(3rem, 8vw, 5.4rem);
}

.page-hero a,
.info-list a {
  color: var(--ink);
  font-weight: 850;
}

.info-list {
  display: grid;
  gap: 14px;
}

.info-list article {
  padding: 24px;
  background: var(--surface-raised);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.info-list h2 {
  margin-bottom: 8px;
  font-size: 1.35rem;
}

.info-list p:last-child,
footer p {
  margin-bottom: 0;
}

footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 30px 0 42px;
  border-top: 1px solid rgba(31, 42, 68, 0.12);
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
}

@media (max-width: 900px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding: 16px 0;
  }

  .site-header nav {
    justify-content: flex-start;
  }

  .hero {
    min-height: auto;
    padding-top: 44px;
    padding-bottom: 54px;
  }

  .hero::before {
    background: linear-gradient(180deg, rgba(230, 247, 255, 0.98) 0%, rgba(230, 247, 255, 0.82) 100%);
  }

  .hero-art {
    position: relative;
    inset: auto;
    z-index: 0;
    order: 2;
    width: 100%;
    min-height: 420px;
    margin-top: 34px;
  }

  .hero {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-shot {
    width: min(44vw, 230px);
    min-width: 144px;
  }

  .shot-one {
    left: 0;
    right: auto;
    top: 0;
  }

  .shot-two {
    right: 0;
    top: 46px;
  }

  .shot-three {
    right: 26%;
    bottom: 0;
  }

  .trust-band,
  .feature-grid,
  .split,
  .support-strip {
    grid-template-columns: 1fr;
  }

  .support-strip .button {
    justify-self: start;
  }
}

@media (max-width: 560px) {
  .site-header,
  footer,
  .section,
  .page,
  .trust-band {
    width: min(100% - 24px, 1120px);
  }

  .brand span {
    max-width: 16ch;
    line-height: 1.1;
  }

  h1 {
    font-size: clamp(3.1rem, 18vw, 4.4rem);
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .trust-band {
    margin-top: 12px;
  }

  .section {
    padding-top: 56px;
  }

  .support-strip {
    padding: 24px;
  }

  footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
