:root {
  --ink: #123234;
  --teal: #087080;
  --teal-deep: #075f6d;
  --mint: #62bd92;
  --paper: #d7f5f1;
  --cream: #fbfdf9;
  --coral: #e7704f;
  --line: rgba(18, 50, 52, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: var(--paper);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body {
  margin: 0;
  overflow-x: hidden;
}

[hidden] {
  display: none !important;
}

button,
input {
  font: inherit;
}

button:focus-visible,
input:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(8, 112, 128, 0.28);
  outline-offset: 4px;
}

.landing-shell {
  position: relative;
  isolation: isolate;
  display: flex;
  min-height: 100vh;
  overflow: hidden;
  align-items: center;
  justify-content: center;
  padding: 112px 24px 56px;
  background: var(--paper);
}

.animal-collage {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.96;
  pointer-events: none;
  transform: scale(1.02);
  user-select: none;
}

.top-bar {
  position: absolute;
  top: 22px;
  left: 28px;
  right: 28px;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

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

.nav-brand img {
  width: 76px;
  height: 76px;
  filter: drop-shadow(0 14px 24px rgba(18, 50, 52, 0.12));
  object-fit: contain;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 999px;
  background: var(--cream);
  color: var(--teal-deep);
  box-shadow: 0 16px 42px rgba(18, 50, 52, 0.15);
  font-size: 0.92rem;
  font-weight: 850;
  padding: 0 20px;
  text-decoration: none;
}

.hero {
  position: relative;
  z-index: 2;
  width: min(920px, 100%);
  filter: drop-shadow(0 28px 52px rgba(18, 50, 52, 0.1));
  text-align: center;
}

.brand-mark {
  margin: 0 auto 18px;
  width: 340px;
  transform: translateY(-8px);
}

.brand-mark img {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 30px 34px rgba(18, 50, 52, 0.17));
}

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

h1 {
  margin: 0 auto;
  max-width: 920px;
  color: var(--ink);
  font-size: 4.35rem;
  font-weight: 950;
  letter-spacing: 0;
  line-height: 1;
  text-shadow: 0 10px 34px rgba(251, 253, 249, 0.86);
}

.coming-soon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  margin: 24px 0 0;
  border-radius: 999px;
  background: rgba(251, 253, 249, 0.82);
  color: var(--teal-deep);
  box-shadow: 0 12px 34px rgba(18, 50, 52, 0.09);
  font-size: 0.95rem;
  font-weight: 950;
  letter-spacing: 0;
  padding: 0 18px;
  text-transform: uppercase;
}

blockquote {
  margin: 20px auto 0;
  max-width: 660px;
  color: rgba(18, 50, 52, 0.76);
  font-size: 1.18rem;
  font-weight: 700;
  line-height: 1.45;
  text-shadow: 0 8px 24px rgba(251, 253, 249, 0.86);
}

.hero-copy {
  margin: 22px auto 0;
  max-width: 720px;
  color: rgba(18, 50, 52, 0.78);
  font-size: 1.08rem;
  font-weight: 760;
  line-height: 1.52;
  text-shadow: 0 8px 24px rgba(251, 253, 249, 0.9);
}

.signup-panel {
  margin: 28px auto 0;
}

.value-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 20px auto 0;
  max-width: 760px;
}

.value-strip span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  border: 1px solid rgba(18, 50, 52, 0.1);
  border-radius: 999px;
  background: rgba(251, 253, 249, 0.74);
  box-shadow: 0 12px 30px rgba(18, 50, 52, 0.08);
  color: var(--teal-deep);
  font-size: 0.9rem;
  font-weight: 880;
  padding: 0 14px;
}

.signup-form {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  margin: 0 auto;
  max-width: 590px;
  min-height: 64px;
  padding: 6px;
  border: 1px solid rgba(18, 50, 52, 0.08);
  border-radius: 999px;
  background: rgba(251, 253, 249, 0.94);
  box-shadow: 0 30px 74px rgba(18, 50, 52, 0.2);
  transform: translateY(-2px);
}

.input-icon {
  display: grid;
  width: 48px;
  color: rgba(18, 50, 52, 0.48);
  font-size: 1.18rem;
  place-items: center;
}

.signup-form input {
  min-width: 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 750;
  padding: 0 10px 0 0;
}

.signup-form input::placeholder {
  color: rgba(18, 50, 52, 0.48);
}

.signup-form button {
  display: grid;
  width: 52px;
  min-height: 52px;
  border: 0;
  border-radius: 50%;
  background: var(--teal);
  color: white;
  cursor: pointer;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
  padding: 0 0 4px;
  place-items: center;
  transition:
    background 160ms ease,
    transform 160ms ease;
}

.signup-form button:hover {
  background: var(--teal-deep);
  transform: translateX(2px);
}

.form-note {
  min-height: 24px;
  margin: 14px 0 0;
  color: rgba(18, 50, 52, 0.68);
  font-size: 0.95rem;
  font-weight: 750;
}

.thank-you-panel {
  width: min(620px, 100%);
  margin: 28px auto 0;
  padding: 26px 24px 30px;
  border: 1px solid rgba(18, 50, 52, 0.08);
  border-radius: 8px;
  background: rgba(251, 253, 249, 0.86);
  box-shadow: 0 30px 74px rgba(18, 50, 52, 0.18);
  text-align: center;
}

.thank-you-panel a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 132px;
  margin: 0 auto 8px;
}

.thank-you-panel img {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 16px 24px rgba(18, 50, 52, 0.13));
}

.thank-you-kicker {
  margin: 4px 0 10px;
  color: var(--teal-deep);
  font-size: 0.82rem;
  font-weight: 950;
  text-transform: uppercase;
}

.thank-you-panel h2,
.thank-you-panel h1 {
  margin: 0 auto;
  color: var(--ink);
  font-size: 2rem;
  font-weight: 950;
  line-height: 1.04;
  text-shadow: none;
}

.thank-you-panel p:last-child {
  margin: 12px auto 0;
  max-width: 420px;
  color: rgba(18, 50, 52, 0.74);
  font-size: 1rem;
  font-weight: 760;
  line-height: 1.45;
}

.experience-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 92px 24px 104px;
  background: var(--cream);
}

.experience-section::before {
  position: absolute;
  inset: -14% -8% -18%;
  z-index: 0;
  background-image: url("./assets/background-graphics.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
  opacity: 0.4;
  pointer-events: none;
  transform: rotate(180deg) scale(1.08);
}

.experience-inner {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: center;
  gap: 46px;
  width: min(1180px, 100%);
  margin: 0 auto;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
}

.experience-copy-block {
  max-width: 420px;
  filter: drop-shadow(0 18px 34px rgba(18, 50, 52, 0.08));
}

.experience-copy-block .eyebrow {
  margin-bottom: 16px;
}

h2 {
  margin: 0;
  color: var(--ink);
  font-size: 3rem;
  font-weight: 950;
  letter-spacing: 0;
  line-height: 1.02;
  text-shadow: 0 8px 26px rgba(251, 253, 249, 0.88);
}

.experience-copy-block p {
  margin: 22px 0 0;
  color: rgba(18, 50, 52, 0.76);
  font-size: 1.08rem;
  font-weight: 720;
  line-height: 1.56;
  text-shadow: 0 8px 24px rgba(251, 253, 249, 0.86);
}

.experience-preview-frame {
  margin: 0;
  transform: translateY(-10px);
}

.experience-preview-frame img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 38px 88px rgba(18, 50, 52, 0.22);
}

.experience-preview-frame figcaption {
  margin-top: 14px;
  color: rgba(18, 50, 52, 0.58);
  font-size: 0.88rem;
  font-weight: 780;
  text-align: center;
}

.site-footer {
  padding: 34px 24px;
  background: var(--ink);
  color: rgba(251, 253, 249, 0.78);
}

.thanks-page {
  min-height: 100vh;
  background: var(--paper);
}

.thanks-shell {
  position: relative;
  isolation: isolate;
  display: grid;
  min-height: 100vh;
  overflow: hidden;
  padding: 32px 18px;
  background: var(--paper);
  place-items: center;
}

.thanks-shell .animal-collage {
  opacity: 0.92;
}

.thank-you-panel.standalone {
  position: relative;
  z-index: 1;
  margin: 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--cream);
  font-size: 1rem;
  font-weight: 920;
  text-decoration: none;
}

.footer-brand img {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.footer-inner p,
.footer-note {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 760;
}

.footer-note {
  color: rgba(251, 253, 249, 0.62);
}

.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;
}

@media (max-width: 900px) {
  .landing-shell {
    padding-top: 104px;
  }

  .animal-collage {
    width: 138%;
    max-width: none;
    transform: translateX(-14%);
  }

  h1 {
    max-width: 650px;
    font-size: 3.15rem;
  }

  .brand-mark {
    width: 292px;
  }

  .experience-section {
    padding: 78px 20px 88px;
  }

  .experience-inner {
    gap: 34px;
    grid-template-columns: 1fr;
  }

  .experience-copy-block {
    max-width: 680px;
    text-align: center;
    justify-self: center;
  }

  h2 {
    font-size: 2.45rem;
  }
}

@media (max-width: 640px) {
  .landing-shell {
    min-height: 100svh;
    padding: 94px 16px 34px;
  }

  .top-bar {
    top: 14px;
    left: 16px;
    right: 16px;
  }

  .nav-brand span {
    display: none;
  }

  .nav-brand img {
    width: 66px;
    height: 66px;
  }

  .nav-link {
    min-height: 42px;
    padding: 0 15px;
  }

  .brand-mark {
    width: 244px;
  }

  .animal-collage {
    width: 205%;
    transform: translateX(-25%);
    opacity: 0.92;
  }

  h1 {
    font-size: 2.38rem;
    line-height: 1.04;
  }

  .coming-soon {
    min-height: 38px;
    margin-top: 18px;
    font-size: 0.82rem;
  }

  blockquote {
    font-size: 0.98rem;
  }

  .hero-copy {
    font-size: 0.98rem;
  }

  .signup-panel {
    margin-top: 28px;
  }

  .thank-you-panel {
    margin-top: 28px;
    padding: 22px 18px 26px;
  }

  .thank-you-panel a {
    width: 108px;
  }

  .thank-you-panel h2,
  .thank-you-panel h1 {
    font-size: 1.62rem;
  }

  .value-strip {
    gap: 8px;
  }

  .value-strip span {
    min-height: 36px;
    font-size: 0.82rem;
    padding: 0 11px;
  }

  .experience-section {
    padding: 64px 16px 74px;
  }

  .experience-inner {
    gap: 28px;
  }

  h2 {
    font-size: 2rem;
  }

  .experience-copy-block p {
    font-size: 0.98rem;
  }

  .experience-preview-frame figcaption {
    font-size: 0.8rem;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .signup-form {
    max-width: 100%;
    min-height: 58px;
  }

  .signup-form button {
    width: 46px;
    min-height: 46px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}
