:root {
  --ink: #294d4b;
  --ink-soft: #55706d;
  --teal: #5d9995;
  --teal-deep: #3f7e7a;
  --mint: #b9dcd3;
  --mint-pale: #e9f3ef;
  --peach: #e49b7f;
  --peach-pale: #f8e6dc;
  --cream: #f7f4ef;
  --paper: #fffdf9;
  --white: #ffffff;
  --line: rgba(41, 77, 75, 0.14);
  --shadow: 0 26px 70px rgba(63, 126, 122, 0.13);
  --serif: Iowan Old Style, Baskerville, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

.shell {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 84px;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--serif);
  font-size: 1.18rem;
  font-weight: 700;
  text-decoration: none;
}

.brand-mark {
  width: 24px;
  height: 24px;
  border: 2px solid var(--teal);
  border-radius: 50%;
  box-shadow: inset -6px -5px 0 var(--mint-pale);
}

.header-link {
  color: var(--ink-soft);
  font-size: 0.84rem;
  font-weight: 650;
  letter-spacing: 0.03em;
  text-decoration: none;
}

.header-link:hover {
  color: var(--teal-deep);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(440px, 1.08fr);
  align-items: center;
  gap: clamp(36px, 7vw, 96px);
  min-height: 700px;
  padding-block: 70px 88px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--peach);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.05;
}

h1 {
  max-width: 700px;
  margin-bottom: 25px;
  font-size: clamp(4rem, 7vw, 6.6rem);
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(2.7rem, 5vw, 4.5rem);
}

.intro {
  max-width: 640px;
  margin-bottom: 34px;
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 1.7vw, 1.25rem);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid var(--teal-deep);
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 750;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.primary {
  background: var(--teal-deep);
  color: var(--white);
}

.secondary {
  background: transparent;
  color: var(--teal-deep);
}

.signals {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin: 0;
  padding: 0;
  color: var(--ink-soft);
  font-size: 0.78rem;
  font-weight: 650;
  list-style: none;
}

.signals li::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 9px;
  border-radius: 50%;
  background: var(--peach);
  vertical-align: 1px;
}

.brand-art {
  position: relative;
  margin: 0;
}

.brand-art::before {
  content: "";
  position: absolute;
  inset: 11% 8% 5% 10%;
  z-index: -1;
  border-radius: 50%;
  background: rgba(185, 220, 211, 0.34);
  filter: blur(2px);
}

.brand-art img {
  display: block;
  width: 100%;
  border-radius: 46% 54% 48% 52% / 51% 45% 55% 49%;
  box-shadow: var(--shadow);
}

.bubble {
  position: absolute;
  z-index: 1;
  border: 2px solid rgba(93, 153, 149, 0.28);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.46);
  box-shadow: inset -8px -8px 15px rgba(185, 220, 211, 0.5);
}

.bubble-one {
  top: 4%;
  right: -2%;
  width: 58px;
  height: 58px;
}

.bubble-two {
  right: 7%;
  bottom: 9%;
  width: 27px;
  height: 27px;
}

.support-section {
  padding-block: 110px 122px;
  background: var(--paper);
}

.section-heading {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 64px;
}

.section-heading h2 {
  margin: 0;
}

.section-heading p {
  margin-bottom: 8px;
  color: var(--ink-soft);
  font-size: 1.04rem;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}

.support-card {
  min-height: 310px;
  padding: 34px 34px 28px 0;
  border-right: 1px solid var(--line);
}

.support-card + .support-card {
  padding-left: 34px;
}

.support-card:last-child {
  border-right: 0;
}

.card-number {
  display: block;
  margin-bottom: 78px;
  color: var(--peach);
  font-size: 0.75rem;
  font-weight: 800;
}

.support-card h3 {
  margin-bottom: 12px;
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 600;
}

.support-card p {
  max-width: 300px;
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 0.94rem;
}

.principles {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: clamp(50px, 9vw, 130px);
  align-items: center;
  padding-block: 130px;
}

.principles-art {
  position: relative;
  min-height: 520px;
}

.large-bubble {
  position: absolute;
  inset: 7% 4% 2% 0;
  border: 2px solid rgba(93, 153, 149, 0.28);
  border-radius: 50%;
  background: radial-gradient(circle at 36% 28%, rgba(255, 255, 255, 0.95), rgba(185, 220, 211, 0.66) 48%, rgba(93, 153, 149, 0.3));
  box-shadow: inset 24px 20px 50px rgba(255, 255, 255, 0.75), var(--shadow);
}

.large-bubble::before,
.large-bubble::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
}

.large-bubble::before {
  top: 20%;
  left: 23%;
  width: 90px;
  height: 34px;
  transform: rotate(-28deg);
}

.large-bubble::after {
  right: 18%;
  bottom: 16%;
  width: 66px;
  height: 66px;
  border: 1px solid rgba(255, 255, 255, 0.7);
}

.leaf {
  position: absolute;
  z-index: 2;
  width: 74px;
  height: 22px;
  border: 2px solid var(--peach);
  border-radius: 100% 0 100% 0;
}

.leaf-one {
  top: 18%;
  right: -1%;
  transform: rotate(-18deg);
}

.leaf-two {
  bottom: 16%;
  left: -4%;
  transform: rotate(36deg);
}

.principles-copy > p:not(.eyebrow) {
  max-width: 650px;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.principle-list {
  margin-top: 42px;
  border-top: 1px solid var(--line);
}

.principle-list > div {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 12px;
  padding: 21px 0;
  border-bottom: 1px solid var(--line);
}

.principle-list span {
  color: var(--peach);
  font-size: 0.74rem;
  font-weight: 800;
}

.principle-list p {
  margin: 0;
  color: var(--ink-soft);
}

.pilot {
  padding-block: 92px;
  background: var(--teal-deep);
  color: var(--white);
}

.pilot-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.75fr auto;
  gap: 60px;
  align-items: center;
}

.eyebrow.light {
  color: #f5b79f;
}

.pilot h2 {
  max-width: 650px;
  margin: 0;
  font-size: clamp(2.5rem, 4vw, 4rem);
}

.pilot p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.77);
}

.status {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 750;
  white-space: nowrap;
}

.status::before {
  content: "";
  width: 7px;
  height: 7px;
  margin-right: 9px;
  border-radius: 50%;
  background: #f5b79f;
  box-shadow: 0 0 0 5px rgba(245, 183, 159, 0.14);
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr 1.4fr auto;
  gap: 50px;
  align-items: start;
  padding-block: 52px 60px;
  color: var(--ink-soft);
  font-size: 0.78rem;
}

.site-footer strong {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.08rem;
}

.site-footer p {
  margin: 0;
}

.disclaimer {
  max-width: 520px;
}

@media (max-width: 940px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

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

  .brand-art {
    max-width: 700px;
  }

  .section-heading,
  .principles {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .principles-art {
    min-height: 440px;
    max-width: 500px;
  }

  .pilot-inner {
    grid-template-columns: 1fr 1fr;
  }

  .status {
    justify-self: start;
  }
}

@media (max-width: 700px) {
  .shell {
    width: min(100% - 30px, 1180px);
  }

  .site-header {
    min-height: 72px;
  }

  .header-link {
    display: none;
  }

  .hero {
    gap: 48px;
    padding-block: 58px 70px;
  }

  h1 {
    font-size: clamp(3.5rem, 18vw, 5rem);
  }

  .actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

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

  .support-section,
  .principles {
    padding-block: 82px;
  }

  .section-heading {
    margin-bottom: 44px;
  }

  .support-grid {
    grid-template-columns: 1fr;
  }

  .support-card,
  .support-card + .support-card {
    min-height: auto;
    padding: 28px 0 34px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .card-number {
    margin-bottom: 38px;
  }

  .principles-art {
    min-height: 330px;
  }

  .pilot-inner,
  .site-footer {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .pilot {
    padding-block: 72px;
  }

  .site-footer {
    padding-block: 42px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .button {
    transition: none;
  }
}
