:root {
  --slate: #4c657a;
  --slate-deep: #304b63;
  --turquoise: #54c2c7;
  --turquoise-deep: #2caab2;
  --ink: #35424c;
  --muted: #69727a;
  --line: #c5e7e8;
  --white: #ffffff;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, Aptos, "Segoe UI", Arial, sans-serif;
  --page-gutter: clamp(1.25rem, 5vw, 6rem);
  --max-width: 90rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
input {
  font: inherit;
}

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

.skip-link {
  position: fixed;
  z-index: 100;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.75rem 1rem;
  color: var(--white);
  background: var(--slate-deep);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.contour-bg {
  position: relative;
  isolation: isolate;
}

.contour-bg::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  pointer-events: none;
  opacity: 0.32;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='480' height='360' viewBox='0 0 480 360'%3E%3Cg fill='none' stroke='%2354c2c7' stroke-opacity='.16' stroke-width='1'%3E%3Cpath d='M-20 82C66 7 110 167 195 91s123-17 177 29 117-2 135-42'/%3E%3Cpath d='M-25 112C55 35 121 194 205 118s118-16 170 28 107 4 132-34'/%3E%3Cpath d='M-18 144c73-71 151 77 235 4s109-12 159 30 99 6 132-23'/%3E%3Cpath d='M-8 181c69-61 150 66 237 0s108-3 154 36 90 11 126-13'/%3E%3Cpath d='M16 221c63-50 139 53 221 5s103 6 146 41 80 14 115-5'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 33rem auto;
}

.site-header {
  display: flex;
  min-height: 8rem;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0.85rem var(--page-gutter);
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  background: var(--white);
}

.brand {
  flex: 0 0 auto;
}

.brand img {
  width: clamp(12rem, 21vw, 19rem);
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.5rem, 3vw, 3.5rem);
  font-size: 0.93rem;
  font-weight: 700;
}

.site-nav a {
  text-decoration: none;
  transition: color 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--turquoise-deep);
}

.site-nav .nav-cta {
  padding: 0.72rem 1.1rem;
  color: var(--white);
  background: var(--slate);
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta:focus-visible {
  color: var(--white);
  background: var(--slate-deep);
}

.menu-toggle {
  display: none;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle__line {
  display: block;
  width: 1.5rem;
  height: 2px;
  margin: 0.35rem auto;
  background: var(--slate-deep);
  transition: transform 180ms ease;
}

.hero {
  display: grid;
  min-height: calc(100svh - 8rem);
  grid-template-columns: minmax(24rem, 0.98fr) minmax(32rem, 1.12fr);
  border-top: 1px solid #eef2f3;
}

.hero__content {
  display: flex;
  padding: clamp(4rem, 7vw, 7.5rem) var(--page-gutter);
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.hero h1,
.section-intro h2,
.included h2,
.updates h2 {
  margin: 0;
  color: var(--slate-deep);
  font-family: var(--serif);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.hero h1 {
  max-width: 10ch;
  font-size: clamp(3.4rem, 5.3vw, 6.2rem);
}

.hero h1 span,
.section-intro h2 span,
.included h2 span,
.updates h2 span {
  color: var(--turquoise);
}

.hero__content > p:not(.status-note) {
  max-width: 35rem;
  margin: 2rem 0 0;
  color: #505b63;
  font-size: clamp(1.05rem, 1.35vw, 1.3rem);
  line-height: 1.55;
}

.hero__actions {
  display: flex;
  margin-top: 2.2rem;
  align-items: center;
  gap: 1.7rem;
}

.button {
  display: inline-flex;
  min-height: 3.55rem;
  padding: 0.9rem 1.65rem;
  border: 1px solid transparent;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 750;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

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

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

.button--primary:hover,
.button--primary:focus-visible {
  background: #218f97;
}

.text-link {
  color: var(--turquoise-deep);
  font-weight: 750;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.35rem;
}

.text-link span {
  display: inline-block;
  margin-left: 0.3rem;
  transition: transform 180ms ease;
}

.text-link:hover span,
.text-link:focus-visible span {
  transform: translateY(3px);
}

.status-note {
  display: flex;
  margin: 1.7rem 0 0;
  align-items: center;
  gap: 0.65rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.status-note svg {
  width: 1.35rem;
  fill: none;
  stroke: var(--turquoise-deep);
  stroke-width: 1.5;
}

.hero__media {
  min-width: 0;
  min-height: 36rem;
  margin: 0;
  overflow: hidden;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.experience {
  padding-top: clamp(5rem, 9vw, 8.5rem);
}

.section-intro {
  max-width: 55rem;
  margin: 0 auto;
  padding: 0 var(--page-gutter) clamp(4rem, 6vw, 6rem);
  text-align: center;
}

.section-intro h2 {
  font-size: clamp(3rem, 5vw, 5.25rem);
}

.section-intro h2 span {
  display: block;
}

.accent-rule {
  width: 4rem;
  height: 2px;
  margin: 2rem auto;
  background: var(--turquoise);
}

.section-intro p {
  max-width: 46rem;
  margin: 0 auto;
  color: #58626a;
  font-size: clamp(1.08rem, 1.45vw, 1.35rem);
}

.experience__media {
  height: clamp(22rem, 38vw, 39rem);
  margin: 0;
  overflow: hidden;
}

.experience__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.included {
  display: grid;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: clamp(5.5rem, 9vw, 9rem) var(--page-gutter);
  grid-template-columns: minmax(18rem, 0.75fr) minmax(34rem, 1.25fr);
  gap: clamp(4rem, 9vw, 9rem);
}

.included__heading h2 {
  max-width: 8ch;
  font-size: clamp(3.5rem, 5.1vw, 5.4rem);
}

.included__heading h2 span {
  display: block;
}

.included__heading .accent-rule {
  margin: 2.2rem 0 0;
}

.included-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.included-list li {
  display: grid;
  padding: 1.5rem 0;
  grid-template-columns: 3rem minmax(13rem, 0.9fr) minmax(14rem, 1fr);
  gap: 1.1rem;
  align-items: baseline;
  border-bottom: 1px solid var(--line);
}

.included-list li:first-child {
  padding-top: 0.3rem;
}

.included-list__number {
  color: var(--turquoise-deep);
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 700;
}

.included-list h3,
.included-list p {
  margin: 0;
}

.included-list h3 {
  color: var(--turquoise-deep);
  font-size: 1.05rem;
  line-height: 1.35;
}

.included-list p {
  color: #59636b;
}

.updates {
  overflow: hidden;
  color: var(--white);
  background: var(--slate-deep);
}

.contour-bg--dark::before {
  opacity: 0.8;
  filter: brightness(1.65);
}

.updates__inner {
  max-width: 70rem;
  margin: 0 auto;
  padding: clamp(5.5rem, 9vw, 8rem) var(--page-gutter);
  text-align: center;
}

.updates h2 {
  color: var(--white);
  font-size: clamp(3.1rem, 5.4vw, 5.5rem);
}

.updates h2 span {
  display: block;
}

.updates__inner > p {
  max-width: 40rem;
  margin: 0 auto;
  color: #e9eff2;
  font-size: clamp(1.05rem, 1.4vw, 1.3rem);
}

.updates-form {
  max-width: 51rem;
  margin: 2.6rem auto 0;
  text-align: left;
}

.updates-form label {
  display: block;
  margin-bottom: 0.55rem;
  font-weight: 750;
}

.updates-form__row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.65rem;
}

.updates-form input {
  min-width: 0;
  min-height: 4.15rem;
  padding: 0 1.25rem;
  border: 2px solid transparent;
  border-radius: 0;
  color: var(--ink);
  background: var(--white);
  font-size: 1.05rem;
  outline: none;
}

.updates-form input:focus {
  border-color: var(--turquoise);
}

.updates-form input[aria-invalid="true"] {
  border-color: #f1aa9e;
}

.button--accent {
  min-height: 4.15rem;
  color: var(--white);
  border-color: var(--white);
  background: var(--turquoise-deep);
}

.button--accent:hover,
.button--accent:focus-visible {
  color: var(--slate-deep);
  background: var(--white);
}

.form-note {
  margin: 1.1rem 0 0;
  color: #ced9df;
  font-size: 0.92rem;
  text-align: center;
}

.form-note[data-state="success"] {
  color: #b8f2e8;
  font-weight: 700;
}

.form-note[data-state="error"] {
  color: #ffd0c8;
  font-weight: 700;
}

.site-footer {
  display: grid;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 2rem var(--page-gutter);
  grid-template-columns: minmax(13rem, 18rem) 1fr auto;
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
}

.site-footer > img {
  width: 100%;
  height: auto;
}

.site-footer__copy p {
  margin: 0;
}

.site-footer__title {
  color: var(--slate-deep);
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2vw, 2rem);
  font-weight: 700;
}

.site-footer__copy p + p {
  margin-top: 0.35rem;
  color: var(--muted);
}

@media (max-width: 900px) {
  .site-header {
    min-height: 6.7rem;
  }

  .brand img {
    width: 13rem;
  }

  .menu-toggle {
    z-index: 12;
    display: block;
  }

  .menu-toggle[aria-expanded="true"] .menu-toggle__line:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] .menu-toggle__line:nth-child(2) {
    transform: translateY(-4px) rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    z-index: 10;
    inset: 0;
    display: none;
    padding: 8rem var(--page-gutter) 3rem;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 2rem;
    color: var(--slate-deep);
    background: var(--white);
    font-family: var(--serif);
    font-size: 2rem;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav .nav-cta {
    font-family: var(--sans);
    font-size: 1rem;
  }

  .hero {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .hero__content {
    padding-top: 4.5rem;
    padding-bottom: 4.5rem;
  }

  .hero h1 {
    max-width: 12ch;
  }

  .hero__media {
    min-height: 30rem;
  }

  .included {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .included__heading h2 {
    max-width: 12ch;
  }

  .site-footer {
    grid-template-columns: 12rem 1fr;
  }

  .site-footer > .text-link {
    grid-column: 2;
  }
}

@media (max-width: 620px) {
  .site-header {
    padding-top: 0.45rem;
    padding-bottom: 0.45rem;
  }

  .brand img {
    width: 10.75rem;
  }

  .hero__content {
    padding-top: 3.3rem;
    padding-bottom: 3.5rem;
  }

  .hero h1 {
    font-size: clamp(3rem, 15vw, 4.25rem);
  }

  .hero__actions {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
  }

  .hero__media {
    min-height: 24rem;
  }

  .hero__media img {
    object-position: 58% center;
  }

  .experience__media {
    height: 24rem;
  }

  .experience__media img {
    object-position: 30% center;
  }

  .included-list li {
    grid-template-columns: 2.5rem 1fr;
    gap: 0.4rem 0.8rem;
  }

  .included-list p {
    grid-column: 2;
  }

  .updates-form__row {
    grid-template-columns: 1fr;
  }

  .button--accent {
    width: 100%;
  }

  .site-footer {
    grid-template-columns: 1fr;
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
    text-align: center;
  }

  .site-footer > img {
    width: 14rem;
    margin: 0 auto;
  }

  .site-footer > .text-link {
    grid-column: auto;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
