@font-face {
  font-family: "Bitter";
  src: url("/assets/fonts/Bitter-Medium.ttf") format("truetype");
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Bitter";
  src: url("/assets/fonts/Bitter-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Nunito";
  src: url("/assets/fonts/Nunito-Regular.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Nunito";
  src: url("/assets/fonts/Nunito-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Nunito";
  src: url("/assets/fonts/Nunito-Bold.ttf") format("truetype");
  font-weight: 700;
  font-display: swap;
}

:root {
  --cream: #f8f5ed;
  --cream-deep: #f0eadf;
  --card: #fffdfc;
  --forest: #1f4b38;
  --forest-dark: #17382b;
  --forest-soft: #dde8df;
  --moss: #708b72;
  --ink: #202a24;
  --muted: #697169;
  --line: #dfd9cd;
  --coral: #c96c55;
  --coral-soft: #f6e5de;
  --sun: #e4b85a;
  --display: "Bitter", Georgia, serif;
  --body: "Nunito", "Avenir Next", sans-serif;
  --shadow: 0 24px 80px rgba(24, 48, 35, 0.12);
  --shell: min(1180px, calc(100% - 48px));
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: clip;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: clip;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: 20;
  pointer-events: none;
  content: "";
  opacity: 0.038;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.92' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  color: var(--cream);
  background: var(--forest);
  border-radius: 999px;
  transform: translateY(-150%);
}

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

.site-header {
  position: fixed;
  top: 16px;
  left: 50%;
  z-index: 15;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: min(1240px, calc(100% - 32px));
  min-height: 68px;
  padding: 10px 12px 10px 14px;
  border: 1px solid rgba(31, 75, 56, 0.1);
  border-radius: 999px;
  background: rgba(255, 253, 252, 0.82);
  box-shadow: 0 10px 32px rgba(31, 75, 56, 0.07);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
  transition: min-height 250ms ease, box-shadow 250ms ease, background 250ms ease;
}

.site-header.is-scrolled {
  min-height: 60px;
  background: rgba(255, 253, 252, 0.94);
  box-shadow: 0 12px 34px rgba(31, 75, 56, 0.12);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  justify-self: start;
  width: max-content;
  font-family: var(--display);
  font-size: 23px;
  font-weight: 600;
  letter-spacing: -0.04em;
}

.brand img {
  border-radius: 12px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  color: #4c5d52;
  font-size: 14px;
  font-weight: 700;
}

.desktop-nav a,
.footer-links a {
  transition: color 180ms ease;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible,
.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--coral);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  justify-self: end;
  padding: 12px 17px;
  color: var(--cream);
  background: var(--forest);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  transition: background 180ms ease, transform 180ms ease;
}

.header-cta:hover {
  background: var(--coral);
  transform: translateY(-1px);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  min-height: 900px;
  padding: 150px max(24px, calc((100vw - 1180px) / 2)) 90px;
  overflow: hidden;
}

.hero::after {
  position: absolute;
  right: -6vw;
  bottom: 2%;
  width: 48vw;
  height: 28vw;
  border: 1px solid rgba(31, 75, 56, 0.11);
  border-radius: 50%;
  content: "";
  transform: rotate(-12deg);
}

.topo {
  position: absolute;
  pointer-events: none;
  opacity: 0.28;
  background-image:
    radial-gradient(ellipse at center, transparent 36%, rgba(31, 75, 56, 0.16) 37%, transparent 38%),
    radial-gradient(ellipse at center, transparent 49%, rgba(31, 75, 56, 0.13) 50%, transparent 51%),
    radial-gradient(ellipse at center, transparent 62%, rgba(31, 75, 56, 0.1) 63%, transparent 64%);
}

.topo-one {
  top: -160px;
  left: -230px;
  width: 720px;
  height: 580px;
  transform: rotate(19deg);
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 560px;
  padding-bottom: 16px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 20px;
  color: var(--moss);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 28px;
  height: 2px;
  background: var(--coral);
  border-radius: 99px;
}

.hero h1,
.section-heading h2,
.feature-copy h2,
.community h2,
.early-copy h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.hero h1 {
  max-width: 620px;
  font-size: clamp(62px, 7.2vw, 105px);
}

.hero h1 em,
.feature-copy h2 em {
  color: var(--coral);
  font-weight: 500;
}

.hero-lede {
  max-width: 510px;
  margin: 32px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 1.6vw, 21px);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-top: 36px;
}

.button {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 15px 17px 15px 22px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button-primary {
  color: var(--cream);
  background: var(--forest);
  box-shadow: 0 12px 28px rgba(31, 75, 56, 0.2);
}

.button-primary:hover {
  background: var(--forest-dark);
  box-shadow: 0 16px 32px rgba(31, 75, 56, 0.25);
}

.button-arrow {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  color: var(--forest);
  background: var(--cream);
  border-radius: 50%;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--forest);
  font-size: 14px;
  font-weight: 700;
}

.hero-note {
  margin: 22px 0 0;
  color: #879087;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.hero-art {
  position: relative;
  z-index: 2;
  min-height: 650px;
}

.sun-disc {
  position: absolute;
  top: 1%;
  right: 6%;
  width: 112px;
  height: 112px;
  background: var(--sun);
  border-radius: 50%;
  box-shadow: 0 0 0 18px rgba(228, 184, 90, 0.11);
}

.photo-arch {
  position: absolute;
  top: 4%;
  right: 10%;
  width: min(430px, 67%);
  height: 560px;
  overflow: hidden;
  border: 10px solid rgba(255, 253, 252, 0.72);
  border-radius: 220px 220px 30px 30px;
  box-shadow: var(--shadow);
  transform: rotate(2.5deg);
}

.photo-arch::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 55%, rgba(18, 47, 34, 0.48));
}

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

.arch-label {
  position: absolute;
  right: 24px;
  bottom: 24px;
  left: 24px;
  z-index: 1;
  color: white;
  font-family: var(--display);
  font-size: 20px;
  text-align: center;
}

.phone {
  padding: 7px;
  background: #101411;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 42px;
  box-shadow: 0 30px 70px rgba(20, 41, 29, 0.24);
}

.phone::before {
  position: absolute;
  top: 14px;
  left: 50%;
  z-index: 3;
  width: 72px;
  height: 20px;
  background: #080b09;
  border-radius: 999px;
  content: "";
  transform: translateX(-50%);
}

.phone-screen {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 34px;
}

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

.phone-hero {
  position: absolute;
  bottom: 0;
  left: 3%;
  width: 260px;
  height: 564px;
  transform: rotate(-5deg);
}

.floating-pill {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  color: var(--forest);
  background: rgba(255, 253, 252, 0.94);
  border: 1px solid rgba(31, 75, 56, 0.1);
  border-radius: 999px;
  box-shadow: 0 14px 34px rgba(30, 65, 46, 0.14);
  backdrop-filter: blur(12px);
  font-size: 13px;
  font-weight: 700;
}

.pill-hike {
  top: 17%;
  left: 2%;
  gap: 9px;
  padding: 11px 17px 11px 11px;
  transform: rotate(-4deg);
}

.activity-symbol {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  color: #f8f1cf;
  background: var(--forest);
  border-radius: 50%;
  font-size: 18px;
}

.pill-crew {
  right: 0;
  bottom: 13%;
  min-height: 52px;
  padding: 7px 16px 7px 10px;
}

.avatar-mini {
  width: 34px;
  height: 34px;
  margin-right: -10px;
  border: 2px solid white;
  background-position: center;
  background-size: cover;
  border-radius: 50%;
}

.avatar-one {
  background-image: url("/assets/images/alex-portrait.jpeg");
}

.avatar-two {
  background-image: url("/assets/images/forest-hike.jpeg");
}

.avatar-three {
  margin-right: 10px;
  background-image: url("/assets/images/paddleboard.jpeg");
}

.marquee {
  padding: 16px 0;
  overflow: hidden;
  color: var(--cream);
  background: var(--forest);
  transform: rotate(-1.1deg) scale(1.02);
}

.marquee-track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 28px;
  animation: marquee 32s linear infinite;
}

.marquee span {
  font-family: var(--display);
  font-size: 17px;
  white-space: nowrap;
}

.marquee i {
  color: var(--sun);
  font-style: normal;
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

.section-shell {
  width: var(--shell);
  margin: 0 auto;
}

.steps {
  padding-top: 150px;
  padding-bottom: 150px;
}

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

.section-heading .eyebrow {
  grid-column: 1 / -1;
}

.section-heading h2,
.community h2 {
  font-size: clamp(46px, 5vw, 72px);
}

.section-heading > p:last-child {
  max-width: 390px;
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 18px;
}

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

.step-card {
  position: relative;
  display: flex;
  min-height: 510px;
  padding: 28px;
  overflow: hidden;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 30px;
  box-shadow: 0 18px 45px rgba(31, 75, 56, 0.055);
}

.step-card::before {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 92px;
  height: 92px;
  border: 1px solid rgba(31, 75, 56, 0.08);
  border-radius: 50%;
  content: "";
}

.step-number {
  position: absolute;
  top: 28px;
  right: 28px;
  z-index: 2;
  color: var(--moss);
  font-family: var(--display);
  font-size: 14px;
}

.step-copy {
  position: relative;
  z-index: 2;
  align-self: flex-end;
}

.card-kicker {
  margin: 0 0 9px;
  color: var(--coral);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.step-copy h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 29px;
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.12;
}

.step-copy > p:last-child {
  margin: 14px 0 0;
  color: var(--muted);
}

.step-card-photo {
  color: white;
  border: 0;
}

.step-card-photo::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background: linear-gradient(180deg, rgba(19, 49, 34, 0.02) 32%, rgba(18, 42, 30, 0.9) 100%);
}

.step-card-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms cubic-bezier(0.22, 1, 0.36, 1);
}

.step-card-photo:hover img {
  transform: scale(1.04);
}

.step-card-photo .step-number,
.step-card-photo .card-kicker {
  color: #f7e39c;
}

.step-card-photo .step-copy > p:last-child {
  color: rgba(255, 255, 255, 0.8);
}

.step-card-map {
  flex-direction: column;
  justify-content: space-between;
  background: var(--forest-soft);
}

.mini-map {
  position: relative;
  height: 255px;
  margin: 36px -28px 0;
}

.mini-map svg {
  width: 100%;
  height: 100%;
}

.mini-map path {
  fill: none;
  stroke: rgba(31, 75, 56, 0.17);
  stroke-width: 2;
  stroke-dasharray: 5 6;
}

.map-pin {
  position: absolute;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: var(--cream);
  background: var(--forest);
  border: 4px solid rgba(255, 255, 255, 0.75);
  border-radius: 50% 50% 50% 8px;
  box-shadow: 0 10px 22px rgba(31, 75, 56, 0.2);
  transform: rotate(-45deg);
}

.map-pin::first-letter {
  transform: rotate(45deg);
}

.pin-one {
  top: 28px;
  left: 20%;
}

.pin-two {
  top: 102px;
  right: 18%;
  color: var(--forest);
  background: var(--sun);
}

.pin-three {
  top: 152px;
  left: 44%;
  color: var(--forest);
  background: var(--coral-soft);
}

.step-card-chat {
  flex-direction: column;
  justify-content: flex-end;
}

.chat-stack {
  position: absolute;
  top: 82px;
  right: 22px;
  left: 22px;
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.chat-bubble {
  max-width: 84%;
  padding: 14px 17px;
  border-radius: 20px 20px 20px 5px;
  font-size: 14px;
  box-shadow: 0 8px 20px rgba(31, 75, 56, 0.07);
}

.chat-left {
  align-self: flex-start;
  background: var(--cream-deep);
}

.chat-right {
  align-self: flex-end;
  color: white;
  background: var(--forest);
  border-radius: 20px 20px 5px;
}

.chat-small {
  max-width: max-content;
  color: var(--coral);
  background: var(--coral-soft);
}

.feature-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 860px;
  color: var(--cream);
  background: var(--forest);
  overflow: hidden;
}

.feature-visual {
  position: relative;
  min-height: 860px;
  background:
    radial-gradient(circle at 20% 15%, rgba(228, 184, 90, 0.18), transparent 30%),
    linear-gradient(145deg, var(--forest-dark), var(--forest));
}

.photo-tile {
  position: absolute;
  overflow: hidden;
  border: 8px solid rgba(248, 245, 237, 0.13);
  border-radius: 34px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
}

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

.photo-tile-back {
  top: 100px;
  left: 7%;
  width: 55%;
  height: 550px;
  transform: rotate(-6deg);
}

.phone-feature {
  position: absolute;
  top: 120px;
  right: 7%;
  width: 278px;
  height: 604px;
  transform: rotate(4deg);
}

.crew-note {
  position: absolute;
  right: 4%;
  bottom: 95px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 13px;
  min-width: 245px;
  padding: 14px;
  color: var(--ink);
  background: var(--card);
  border-radius: 18px;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.22);
}

.crew-note p {
  margin: 0;
  font-size: 13px;
  line-height: 1.35;
}

.note-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--forest);
  background: var(--forest-soft);
  border-radius: 50%;
  font-weight: 800;
}

.feature-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 650px;
  padding: 90px clamp(40px, 7vw, 120px);
}

.eyebrow-light {
  color: #bacdbf;
}

.feature-copy h2 {
  font-size: clamp(48px, 5vw, 76px);
}

.feature-copy h2 em {
  color: #efbcae;
}

.feature-copy > p:not(.eyebrow) {
  max-width: 520px;
  margin: 32px 0 42px;
  color: rgba(248, 245, 237, 0.7);
  font-size: 18px;
}

.feature-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(248, 245, 237, 0.16);
}

.feature-list li {
  display: flex;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(248, 245, 237, 0.16);
  font-weight: 600;
}

.feature-list span {
  color: var(--sun);
  font-family: var(--display);
  font-size: 12px;
}

.community {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 80px;
  align-items: center;
  padding-top: 160px;
  padding-bottom: 170px;
}

.community-copy > p:not(.eyebrow) {
  max-width: 490px;
  margin: 30px 0;
  color: var(--muted);
  font-size: 18px;
}

.community-rule {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  max-width: 470px;
  padding: 17px;
  background: var(--coral-soft);
  border: 1px solid #ebc7ba;
  border-radius: 20px;
}

.community-rule > span {
  display: grid;
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  place-items: center;
  color: var(--coral);
  background: var(--card);
  border-radius: 50%;
  font-size: 20px;
}

.community-rule strong {
  color: var(--coral);
}

.community-rule p {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.portrait-stack {
  position: relative;
  min-height: 660px;
}

.portrait {
  position: absolute;
  margin: 0;
  overflow: hidden;
  background: var(--card);
  border: 8px solid var(--card);
  border-radius: 34px;
  box-shadow: var(--shadow);
}

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

.portrait figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  padding: 50px 22px 20px;
  color: white;
  background: linear-gradient(transparent, rgba(15, 34, 24, 0.78));
}

.portrait figcaption strong {
  font-family: var(--display);
  font-size: 25px;
}

.portrait figcaption span {
  font-size: 13px;
}

.portrait-main {
  top: 0;
  right: 3%;
  width: 61%;
  height: 590px;
  transform: rotate(3deg);
}

.portrait-secondary {
  bottom: 0;
  left: 0;
  width: 42%;
  height: 420px;
  transform: rotate(-5deg);
}

.activity-sticker {
  position: absolute;
  right: 36%;
  bottom: 35px;
  z-index: 4;
  display: grid;
  grid-template-columns: 48px auto;
  min-width: 190px;
  padding: 12px 16px 12px 12px;
  background: rgba(255, 253, 252, 0.95);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 14px 40px rgba(31, 75, 56, 0.16);
  transform: rotate(2deg);
}

.activity-sticker > span {
  grid-row: 1 / 3;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--cream);
  background: var(--forest);
  border-radius: 12px;
}

.activity-sticker strong {
  font-size: 14px;
}

.activity-sticker small {
  color: var(--muted);
}

.early-access {
  padding-bottom: 36px;
}

.early-card {
  position: relative;
  min-height: 510px;
  padding: clamp(48px, 7vw, 90px);
  overflow: hidden;
  color: var(--cream);
  background: var(--coral);
  border-radius: 42px;
}

.early-card::before {
  position: absolute;
  top: -90px;
  right: -60px;
  width: 480px;
  height: 480px;
  border: 75px solid rgba(248, 245, 237, 0.1);
  border-radius: 50%;
  content: "";
}

.topo-two {
  right: -6%;
  bottom: -20%;
  width: 600px;
  height: 440px;
  opacity: 0.2;
  filter: brightness(4);
  transform: rotate(-9deg);
}

.early-copy {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.early-copy h2 {
  font-size: clamp(47px, 5.5vw, 76px);
}

.early-copy > p:not(.eyebrow) {
  max-width: 580px;
  margin: 26px 0 34px;
  color: rgba(255, 255, 255, 0.79);
  font-size: 18px;
}

.button-cream {
  color: var(--forest);
  background: var(--cream);
}

.button-cream .button-arrow {
  color: var(--cream);
  background: var(--forest);
}

.early-icon {
  position: absolute;
  right: 7%;
  bottom: -8%;
  width: min(250px, 23vw);
  border-radius: 23%;
  box-shadow: 0 28px 70px rgba(116, 50, 34, 0.24);
  transform: rotate(7deg);
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 70px;
  width: var(--shell);
  margin: 0 auto;
  padding: 76px 0 28px;
}

.brand-footer {
  font-size: 27px;
}

.footer-brand > p {
  margin: 18px 0 0;
  color: var(--muted);
}

.footer-links {
  display: flex;
  gap: 90px;
}

.footer-links > div {
  display: flex;
  min-width: 110px;
  flex-direction: column;
  gap: 10px;
}

.footer-links p {
  margin: 0 0 7px;
  color: var(--moss);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.footer-links a {
  font-size: 14px;
  font-weight: 600;
}

.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  padding-top: 25px;
  color: #8b918b;
  border-top: 1px solid var(--line);
  font-size: 12px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 750ms ease, transform 750ms cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Legal and support pages */
.simple-page {
  min-height: 100vh;
}

.simple-main {
  width: min(840px, calc(100% - 40px));
  margin: 0 auto;
  padding: 150px 0 100px;
}

.simple-hero {
  margin-bottom: 48px;
}

.simple-hero h1 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(48px, 7vw, 78px);
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 1;
}

.simple-hero > p:not(.eyebrow) {
  max-width: 650px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 19px;
}

.legal-section,
.support-card {
  margin-bottom: 14px;
  padding: 28px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 24px;
}

.legal-section h2,
.support-card h2 {
  margin: 0 0 10px;
  font-family: var(--display);
  font-size: 23px;
  font-weight: 600;
  letter-spacing: -0.025em;
}

.legal-section p,
.legal-section li,
.support-card p {
  color: var(--muted);
}

.legal-section p:last-child,
.support-card p:last-child {
  margin-bottom: 0;
}

.legal-section a,
.support-card a {
  color: var(--forest);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: var(--coral);
  text-underline-offset: 3px;
}

.legal-meta {
  margin-top: 30px;
  color: #8b918b;
  font-size: 13px;
}

.support-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.support-card {
  margin: 0;
}

.support-card-wide {
  grid-column: 1 / -1;
}

@media (max-width: 1050px) {
  .hero {
    grid-template-columns: 0.82fr 1.18fr;
  }

  .hero-art {
    transform: scale(0.9);
    transform-origin: center right;
  }

  .step-card {
    min-height: 480px;
    padding: 23px;
  }

  .feature-band {
    grid-template-columns: 0.9fr 1.1fr;
  }

  .feature-copy {
    padding-right: 50px;
    padding-left: 50px;
  }
}

@media (max-width: 820px) {
  :root {
    --shell: min(100% - 32px, 680px);
  }

  .site-header {
    grid-template-columns: 1fr auto;
  }

  .desktop-nav {
    display: none;
  }

  .hero {
    display: block;
    min-height: auto;
    padding: 140px 24px 80px;
  }

  .hero-copy {
    max-width: 680px;
    margin: 0 auto;
  }

  .hero-art {
    width: min(680px, 100%);
    min-height: 690px;
    margin: 40px auto 0;
    transform: none;
  }

  .photo-arch {
    right: 3%;
    width: 64%;
  }

  .phone-hero {
    left: 8%;
  }

  .section-heading {
    display: block;
  }

  .section-heading > p:last-child {
    margin-top: 24px;
  }

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

  .step-card {
    min-height: 440px;
  }

  .feature-band {
    grid-template-columns: 1fr;
  }

  .feature-visual {
    min-height: 780px;
    order: 2;
  }

  .feature-copy {
    max-width: none;
    padding: 100px 10vw 80px;
  }

  .community {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .community-copy {
    max-width: 650px;
  }

  .portrait-stack {
    width: min(650px, 100%);
    margin: 0 auto;
  }

  .early-icon {
    right: -3%;
    opacity: 0.42;
  }

  .early-copy {
    max-width: 600px;
  }
}

@media (max-width: 560px) {
  .site-header {
    top: 10px;
    width: calc(100% - 20px);
    min-height: 58px;
    padding: 7px 8px 7px 10px;
  }

  .brand {
    gap: 8px;
    font-size: 20px;
  }

  .brand img {
    width: 38px;
    height: 38px;
  }

  .header-cta {
    padding: 10px 13px;
    font-size: 12px;
  }

  .header-cta span {
    display: none;
  }

  .hero {
    padding: 120px 20px 55px;
  }

  .hero h1 {
    font-size: clamp(55px, 17vw, 76px);
  }

  .hero-lede {
    margin-top: 25px;
    font-size: 17px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 17px;
    margin-top: 29px;
  }

  .hero-note {
    margin-top: 18px;
  }

  .hero-art {
    min-height: 530px;
    margin-top: 25px;
  }

  .sun-disc {
    top: 2%;
    right: 1%;
    width: 78px;
    height: 78px;
  }

  .photo-arch {
    top: 4%;
    right: 0;
    width: 67%;
    height: 430px;
    border-width: 6px;
    border-radius: 150px 150px 24px 24px;
  }

  .phone-hero {
    bottom: 0;
    left: 0;
    width: 190px;
    height: 413px;
    border-radius: 32px;
  }

  .phone-screen {
    border-radius: 25px;
  }

  .phone::before {
    top: 11px;
    width: 53px;
    height: 15px;
  }

  .arch-label {
    right: 12px;
    bottom: 14px;
    left: 12px;
    font-size: 14px;
  }

  .pill-hike {
    top: 19%;
    left: -2%;
    padding: 8px 12px 8px 8px;
    font-size: 11px;
  }

  .pill-crew {
    right: -2%;
    bottom: 9%;
    min-height: 44px;
    padding-right: 12px;
    font-size: 11px;
  }

  .avatar-mini {
    width: 29px;
    height: 29px;
  }

  .steps {
    padding-top: 110px;
    padding-bottom: 110px;
  }

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

  .section-heading h2,
  .community h2 {
    font-size: 45px;
  }

  .section-heading > p:last-child,
  .community-copy > p:not(.eyebrow),
  .feature-copy > p:not(.eyebrow) {
    font-size: 16px;
  }

  .step-card {
    min-height: 430px;
    border-radius: 24px;
  }

  .feature-copy {
    padding: 90px 24px 70px;
  }

  .feature-copy h2 {
    font-size: 47px;
  }

  .feature-visual {
    min-height: 650px;
  }

  .photo-tile-back {
    top: 90px;
    left: 3%;
    width: 62%;
    height: 430px;
  }

  .phone-feature {
    top: 80px;
    right: 3%;
    width: 210px;
    height: 456px;
    border-radius: 34px;
  }

  .crew-note {
    right: 18px;
    bottom: 70px;
    min-width: 220px;
  }

  .community {
    padding-top: 110px;
    padding-bottom: 110px;
  }

  .portrait-stack {
    min-height: 520px;
  }

  .portrait-main {
    width: 70%;
    height: 470px;
  }

  .portrait-secondary {
    width: 45%;
    height: 320px;
  }

  .activity-sticker {
    right: 2%;
    bottom: 4px;
  }

  .early-card {
    min-height: 520px;
    padding: 55px 28px;
    border-radius: 28px;
  }

  .early-copy h2 {
    font-size: 46px;
  }

  .early-icon {
    right: -12%;
    bottom: -3%;
    width: 210px;
    max-width: none;
    opacity: 0.36;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 50px;
    padding-top: 60px;
  }

  .footer-links {
    gap: 45px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
  }

  .simple-main {
    padding-top: 120px;
  }

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

  .support-card-wide {
    grid-column: auto;
  }
}

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

  .marquee-track {
    animation: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  * {
    transition-duration: 0.01ms !important;
  }
}

/* Kindred umbrella landing */
.hub-page {
  background:
    radial-gradient(circle at 76% 9%, rgba(228, 184, 90, 0.13), transparent 22%),
    var(--cream);
}

.hub-header {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: min(1320px, calc(100% - 56px));
  margin: 0 auto;
  padding: 28px 0 20px;
  border-bottom: 1px solid rgba(31, 75, 56, 0.13);
}

.hub-wordmark {
  width: max-content;
  font-family: var(--display);
  font-size: 27px;
  font-weight: 600;
  letter-spacing: -0.045em;
}

.hub-header > p {
  margin: 0;
  color: var(--moss);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hub-header-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  justify-self: end;
  font-size: 13px;
  font-weight: 700;
}

.hub-header-link span {
  display: grid;
  width: 29px;
  height: 29px;
  place-items: center;
  color: var(--cream);
  background: var(--forest);
  border-radius: 50%;
  transition: background 180ms ease, transform 180ms ease;
}

.hub-header-link:hover span {
  background: var(--coral);
  transform: rotate(9deg);
}

.hub-hero {
  position: relative;
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(40px, 7vw, 110px);
  align-items: center;
  width: min(1320px, calc(100% - 56px));
  min-height: 820px;
  margin: 0 auto;
  padding: 95px 0 110px;
}

.hub-orbit {
  position: absolute;
  pointer-events: none;
  border: 1px solid rgba(31, 75, 56, 0.11);
  border-radius: 50%;
}

.hub-orbit-one {
  top: -240px;
  left: -270px;
  width: 620px;
  height: 620px;
}

.hub-orbit-two {
  top: -170px;
  left: -200px;
  width: 470px;
  height: 470px;
}

.hub-hero-copy {
  position: relative;
  z-index: 2;
}

.hub-hero-copy h1 {
  max-width: 680px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(61px, 7.2vw, 108px);
  font-weight: 600;
  letter-spacing: -0.062em;
  line-height: 0.95;
}

.hub-hero-copy h1 em {
  color: var(--coral);
  font-weight: 500;
}

.hub-hero-copy > p:last-child {
  max-width: 540px;
  margin: 32px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 1.5vw, 21px);
}

.hub-feature {
  position: relative;
  z-index: 2;
  display: block;
  padding: 10px;
  overflow: hidden;
  background: rgba(255, 253, 252, 0.87);
  border: 1px solid rgba(31, 75, 56, 0.1);
  border-radius: 36px;
  box-shadow: 0 30px 90px rgba(31, 75, 56, 0.13);
  transform: rotate(1.6deg);
  transition: transform 500ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 500ms ease;
}

.hub-feature:hover {
  box-shadow: 0 36px 100px rgba(31, 75, 56, 0.19);
  transform: rotate(0deg) translateY(-5px);
}

.hub-feature-image {
  position: relative;
  height: 500px;
  overflow: hidden;
  border-radius: 27px;
}

.hub-feature-image::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 55%, rgba(20, 48, 34, 0.28));
}

.hub-feature-image > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 650ms cubic-bezier(0.22, 1, 0.36, 1);
}

.hub-feature:hover .hub-feature-image > img {
  transform: scale(1.025);
}

.hub-feature-phone {
  position: absolute;
  right: 8%;
  bottom: -38%;
  z-index: 2;
  width: 175px;
  padding: 6px;
  overflow: hidden;
  background: #0c120f;
  border: 2px solid rgba(255, 255, 255, 0.62);
  border-radius: 29px;
  box-shadow: 0 20px 45px rgba(10, 28, 18, 0.3);
  transform: rotate(5deg);
}

.hub-feature-phone img {
  border-radius: 22px;
}

.hub-feature-copy {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 20px 17px;
}

.hub-feature-copy p,
.hub-section-heading p {
  margin: 0 0 8px;
  color: var(--moss);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.hub-feature-copy h2 {
  margin: 0;
  font-family: var(--display);
  font-size: 43px;
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 1;
}

.hub-feature-copy > div > span {
  color: var(--muted);
  font-size: 14px;
}

.hub-feature-arrow {
  display: grid;
  flex: 0 0 auto;
  width: 50px;
  height: 50px;
  place-items: center;
  color: var(--cream);
  background: var(--forest);
  border-radius: 50%;
  font-size: 20px;
}

.hub-projects {
  padding-top: 135px;
  padding-bottom: 160px;
}

.hub-section-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 30px;
}

.hub-section-heading p {
  margin: 0;
}

.hub-section-heading > span {
  color: var(--muted);
  font-size: 14px;
}

.hub-project-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.hub-project {
  position: relative;
  display: flex;
  min-height: 590px;
  flex-direction: column;
  justify-content: flex-end;
  padding: 34px;
  overflow: hidden;
  border-radius: 32px;
}

.hub-project-index {
  position: absolute;
  top: 28px;
  right: 30px;
  font-family: var(--display);
  font-size: 12px;
}

.rally-project {
  color: var(--cream);
  background: var(--forest);
}

.rally-project::before,
.rally-project::after {
  position: absolute;
  top: -175px;
  left: -145px;
  width: 430px;
  height: 430px;
  border: 1px solid rgba(248, 245, 237, 0.15);
  border-radius: 50%;
  content: "";
}

.rally-project::after {
  top: -115px;
  left: -88px;
  width: 310px;
  height: 310px;
}

.hub-project-mark {
  position: absolute;
  top: 95px;
  left: 50%;
  width: 160px;
  transform: translateX(-50%) rotate(-4deg);
  transition: transform 450ms cubic-bezier(0.22, 1, 0.36, 1);
}

.hub-project-mark img {
  border-radius: 25%;
  box-shadow: 0 24px 60px rgba(8, 28, 17, 0.28);
}

.rally-project:hover .hub-project-mark {
  transform: translateX(-50%) rotate(2deg) translateY(-7px);
}

.hub-project h2 {
  position: relative;
  margin: 0 0 10px;
  font-family: var(--display);
  font-size: clamp(38px, 4vw, 56px);
  font-weight: 600;
  letter-spacing: -0.05em;
  line-height: 1;
}

.hub-project > div > p {
  position: relative;
  max-width: 430px;
  margin: 0;
  color: rgba(248, 245, 237, 0.7);
  font-size: 16px;
}

.hub-project-action {
  position: relative;
  display: flex;
  justify-content: space-between;
  margin-top: 34px;
  padding-top: 18px;
  border-top: 1px solid rgba(248, 245, 237, 0.17);
  font-size: 13px;
  font-weight: 700;
}

.hub-project-action i {
  font-style: normal;
}

.strangers-project {
  color: #31273a;
  background: #eee5f5;
  border: 1px solid #ded0e9;
}

.strangers-project > div > p {
  color: #746a7c;
}

.strangers-project .hub-project-action {
  color: #7455a0;
  border-color: rgba(104, 64, 184, 0.15);
}

.conversation-cards {
  position: absolute;
  top: 72px;
  right: 0;
  left: 0;
  height: 270px;
}

.conversation-cards span {
  position: absolute;
  top: 30px;
  left: 50%;
  display: flex;
  width: 230px;
  height: 205px;
  align-items: center;
  justify-content: center;
  padding: 25px;
  background: #fffdfc;
  border: 1px solid rgba(104, 64, 184, 0.12);
  border-radius: 22px;
  box-shadow: 0 22px 55px rgba(76, 47, 99, 0.12);
  font-family: var(--display);
  font-size: 21px;
  text-align: center;
  transform: translateX(-67%) rotate(-8deg);
}

.conversation-cards span + span {
  color: var(--cream);
  background: #7455a0;
  transform: translateX(-30%) rotate(7deg);
}

.hub-contact {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 80px;
  align-items: end;
  min-height: 500px;
  padding: clamp(55px, 7vw, 90px);
  color: var(--cream);
  background:
    radial-gradient(circle at 90% 10%, rgba(228, 184, 90, 0.22), transparent 24%),
    var(--coral);
  border-radius: 40px;
}

.hub-contact h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(51px, 6vw, 78px);
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.hub-contact-copy > p {
  margin: 0 0 30px;
  color: rgba(255, 255, 255, 0.79);
  font-size: 17px;
}

.hub-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  width: var(--shell);
  margin: 0 auto;
  padding: 38px 0;
  color: var(--muted);
  font-size: 12px;
}

.hub-footer > div {
  display: flex;
  gap: 26px;
  color: var(--ink);
  font-weight: 700;
}

.hub-footer > span:last-child {
  justify-self: end;
}

@media (max-width: 900px) {
  .hub-hero {
    grid-template-columns: 1fr;
    padding-top: 110px;
  }

  .hub-hero-copy {
    max-width: 720px;
  }

  .hub-feature {
    width: min(700px, 100%);
    justify-self: center;
  }

  .hub-project {
    min-height: 540px;
  }

  .hub-contact {
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: start;
  }

  .hub-contact-copy {
    max-width: 520px;
  }
}

@media (max-width: 620px) {
  .hub-header {
    grid-template-columns: 1fr auto;
    width: calc(100% - 36px);
    padding-top: 20px;
  }

  .hub-header > p {
    display: none;
  }

  .hub-wordmark {
    font-size: 24px;
  }

  .hub-hero {
    width: calc(100% - 36px);
    min-height: auto;
    padding: 85px 0 90px;
  }

  .hub-hero-copy h1 {
    font-size: clamp(53px, 15vw, 72px);
  }

  .hub-hero-copy > p:last-child {
    font-size: 17px;
  }

  .hub-feature-image {
    height: 390px;
  }

  .hub-feature-phone {
    right: 5%;
    width: 135px;
  }

  .hub-feature-copy {
    align-items: center;
  }

  .hub-feature-copy h2 {
    font-size: 36px;
  }

  .hub-feature-copy > div > span {
    font-size: 12px;
  }

  .hub-feature-arrow {
    width: 44px;
    height: 44px;
  }

  .hub-projects {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .hub-section-heading > span {
    display: none;
  }

  .hub-project-grid {
    grid-template-columns: 1fr;
  }

  .hub-project {
    min-height: 530px;
    padding: 26px;
    border-radius: 26px;
  }

  .hub-contact {
    min-height: 540px;
    padding: 52px 28px;
    border-radius: 28px;
  }

  .hub-contact h2 {
    font-size: 50px;
  }

  .hub-footer {
    grid-template-columns: 1fr auto;
    gap: 22px;
  }

  .hub-footer > span:last-child {
    display: none;
  }
}
