.sky-page {
  --sky: #dcecf2;
  --sky-soft: #edf5f7;
  --sky-line: #b9d0d9;
  --sky-ink: #28434b;
  --paper: #fbfaf7;
  --paper-strong: #fff;
  --tint: #f4f1ea;
  padding-bottom: 76px;
}

.sky-page .topline {
  background: var(--sky-ink);
}

.sky-page .site-header {
  background: rgba(251, 250, 247, 0.92);
}

.sky-page .hero {
  min-height: min(810px, calc(100svh - 102px));
  background: var(--sky);
}

.sky-page .hero-grid {
  grid-template-columns: minmax(0, 1.03fr) minmax(360px, 0.78fr);
  gap: clamp(40px, 6vw, 86px);
}

.sky-page .hero-copy {
  max-width: 690px;
}

.sky-page .hero-copy h1 {
  max-width: 10.8ch;
  font-size: clamp(3.5rem, 5.7vw, 5.9rem);
  line-height: 0.98;
}

.sky-page .hero-copy .lede {
  max-width: 37rem;
}

.hero-film {
  position: relative;
  width: min(100%, 505px);
  max-height: 650px;
  justify-self: end;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 3px;
  background: #bad2dc;
  box-shadow: 0 30px 70px -48px rgba(40, 32, 17, 0.65);
}

.hero-film video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-film .media-label {
  background: rgba(40, 32, 17, 0.42);
}

.sky-page .proof-strip {
  background: var(--paper);
}

.sky-page .proof-item strong {
  font-size: clamp(1.55rem, 2.5vw, 2.55rem);
}

.founder-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(400px, 0.76fr);
  grid-template-areas:
    "heading film"
    "copy film";
  align-items: start;
  column-gap: clamp(44px, 7vw, 104px);
  row-gap: 24px;
}

.founder-heading {
  grid-area: heading;
  align-self: end;
}

.founder-heading h2 {
  max-width: 9ch;
}

.founder-copy {
  grid-area: copy;
  max-width: 600px;
}

.founder-lede {
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2.55vw, 2.2rem);
  line-height: 1.3;
}

.founder-copy > p + p {
  margin-top: 22px;
  font-size: 1.04rem;
}

.founder-copy .button {
  margin-top: 30px;
}

.founder-film {
  grid-area: film;
  position: relative;
  width: min(100%, 520px);
  max-height: 65svh;
  aspect-ratio: 3 / 4;
  justify-self: end;
  align-self: center;
  overflow: hidden;
  border-radius: 3px;
  background: var(--sky);
  box-shadow: 0 26px 62px -46px rgba(40, 32, 17, 0.62);
}

.founder-film-control {
  position: relative;
  width: 100%;
  height: 100%;
  display: block;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--paper);
  cursor: pointer;
  font: inherit;
  padding: 0;
  text-align: left;
}

.founder-film-control video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.founder-film-play {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 72px;
  height: 72px;
  transform: translate(-50%, -50%);
  filter: drop-shadow(0 6px 18px rgba(40, 32, 17, 0.32));
  transition: opacity 180ms ease, transform 180ms ease;
}

.founder-film-play svg {
  width: 100%;
  height: 100%;
  display: block;
}

.founder-film-play circle {
  fill: rgba(251, 250, 247, 0.94);
  stroke: rgba(40, 32, 17, 0.28);
  stroke-width: 1.5;
}

.founder-film-play path {
  fill: var(--ink);
}

.founder-film-state {
  position: absolute;
  right: 16px;
  bottom: 16px;
  border-radius: 999px;
  background: rgba(40, 32, 17, 0.68);
  color: var(--paper);
  font-family: var(--mono);
  font-size: 0.57rem;
  letter-spacing: 0.06em;
  padding: 8px 10px;
  text-transform: uppercase;
  transition: opacity 180ms ease;
}

.founder-film-control:hover .founder-film-play,
.founder-film-control:focus-visible .founder-film-play {
  transform: translate(-50%, -50%) scale(1.04);
}

.founder-film-control:focus-visible {
  outline: 3px solid var(--butter);
  outline-offset: -3px;
}

.founder-film.is-playing .founder-film-play,
.founder-film.is-playing .founder-film-state {
  opacity: 0;
}

.founder-film.is-playing .founder-film-control:hover .founder-film-state,
.founder-film.is-playing .founder-film-control:focus-visible .founder-film-state {
  opacity: 1;
}

.section--sky {
  background: var(--sky-soft);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.72fr);
  align-items: end;
  gap: clamp(30px, 7vw, 90px);
}

.section-head .lede {
  margin: 0;
}

.finder-head h2 {
  max-width: 10ch;
}

.finder-tabs {
  margin-top: clamp(34px, 5vw, 58px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-bottom: 1px solid var(--sky-line);
}

.finder-tab {
  position: relative;
  min-height: 58px;
  border: 0;
  border-bottom: 2px solid transparent;
  background: transparent;
  color: var(--ink-soft);
  cursor: pointer;
  font-family: var(--mono);
  font-size: 0.73rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  padding: 16px 12px;
  text-transform: uppercase;
}

.finder-tab + .finder-tab {
  border-left: 1px solid rgba(185, 208, 217, 0.62);
}

.finder-tab span {
  display: inline-grid;
  min-width: 22px;
  height: 22px;
  margin-left: 6px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 0.57rem;
}

.finder-tab:hover,
.finder-tab[aria-selected="true"] {
  color: var(--ink);
}

.finder-tab[aria-selected="true"] {
  border-bottom-color: var(--ink);
}

.finder-panel {
  padding-top: 26px;
}

.finder-panel[hidden] {
  display: none !important;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.product-grid--four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.product-grid--two {
  width: min(100%, 790px);
  margin-inline: auto;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.product-card {
  min-width: 0;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(185, 208, 217, 0.84);
  background: var(--paper-strong);
}

.product-media {
  display: block;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #e8e7e3;
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.product-card:hover .product-media img {
  transform: scale(1.016);
}

.product-body {
  min-height: 252px;
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 20px;
}

.product-kind {
  margin-bottom: 11px;
  color: var(--sky-ink);
  font-family: var(--mono);
  font-size: 0.59rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-body h3 {
  font-size: clamp(1.32rem, 2vw, 1.7rem);
}

.product-body h3 + p {
  margin-top: 10px;
  font-size: 0.91rem;
  line-height: 1.5;
}

.product-link {
  align-self: flex-start;
  margin-top: auto;
  border-bottom: 1px solid currentColor;
  color: var(--ink);
  font-family: var(--mono);
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  padding-top: 20px;
  padding-bottom: 2px;
  text-decoration: none;
  text-transform: uppercase;
}

.panel-cta,
.section-close {
  margin-top: 30px;
  text-align: center;
}

.review-intro {
  display: grid;
  grid-template-columns: minmax(190px, 0.35fr) minmax(0, 1fr);
  align-items: end;
  gap: clamp(36px, 8vw, 110px);
}

.review-intro h2 {
  max-width: 12ch;
}

.review-score > span:first-child {
  display: block;
  color: var(--paper);
  font-family: var(--serif);
  font-size: clamp(5rem, 10vw, 8.2rem);
  letter-spacing: -0.08em;
  line-height: 0.76;
}

.review-score .stars {
  display: block;
  margin-top: 24px;
  color: var(--butter);
}

.review-score small {
  display: block;
  margin-top: 6px;
  color: rgba(251, 250, 247, 0.64);
  font-family: var(--mono);
  font-size: 0.61rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.review-cards {
  margin-top: clamp(44px, 7vw, 76px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-block: 1px solid rgba(255, 255, 255, 0.24);
}

.review-card {
  min-width: 0;
  margin: 0;
  padding: clamp(28px, 3.4vw, 43px);
}

.review-card + .review-card {
  border-left: 1px solid rgba(255, 255, 255, 0.24);
}

.review-card .stars {
  color: var(--butter);
  font-size: 0.71rem;
}

.review-card q {
  display: block;
  margin-top: 18px;
  color: var(--paper);
  font-family: var(--serif);
  font-size: clamp(1.28rem, 2vw, 1.75rem);
  line-height: 1.38;
  quotes: none;
}

.review-card footer {
  margin-top: 22px;
  color: rgba(251, 250, 247, 0.62);
  font-family: var(--mono);
  font-size: 0.58rem;
  letter-spacing: 0.07em;
  line-height: 1.55;
  text-transform: uppercase;
}

.material-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.76fr) minmax(0, 1.15fr);
  align-items: center;
  gap: clamp(42px, 7vw, 104px);
}

.material-copy h2 {
  max-width: 9ch;
}

.material-facts {
  margin: 30px 0;
  padding: 0;
  border-block: 1px solid var(--line);
  list-style: none;
}

.material-facts > li {
  display: grid;
  grid-template-columns: minmax(92px, 0.34fr) minmax(0, 1fr);
  align-items: baseline;
  gap: 20px;
  padding: 15px 0;
}

.material-facts > li + li {
  border-top: 1px solid var(--line-soft);
}

.material-facts strong {
  font-family: var(--serif);
  font-size: 1.23rem;
  font-weight: 500;
}

.material-facts span {
  color: var(--ink-soft);
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.material-media-grid {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(250px, 1.15fr) minmax(170px, 0.85fr);
  align-items: stretch;
  aspect-ratio: 0.98 / 1;
  gap: 10px;
}

.material-film {
  position: relative;
  width: 100%;
  height: 100%;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  background: var(--sky);
}

.support-video-control {
  position: relative;
  width: 100%;
  height: 100%;
  display: block;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--paper);
  cursor: pointer;
  font: inherit;
  padding: 0;
  text-align: left;
}

.support-video-control video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.support-video-play {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 64px;
  height: 64px;
  transform: translate(-50%, -50%);
  filter: drop-shadow(0 5px 16px rgba(40, 32, 17, 0.32));
  transition: opacity 180ms ease, transform 180ms ease;
}

.support-video-play svg {
  width: 100%;
  height: 100%;
  display: block;
}

.support-video-play circle {
  fill: rgba(251, 250, 247, 0.94);
  stroke: rgba(40, 32, 17, 0.28);
  stroke-width: 1.5;
}

.support-video-play path {
  fill: var(--ink);
}

.support-video-state {
  position: absolute;
  right: 14px;
  bottom: 52px;
  border-radius: 999px;
  background: rgba(40, 32, 17, 0.68);
  color: var(--paper);
  font-family: var(--mono);
  font-size: 0.57rem;
  letter-spacing: 0.06em;
  padding: 8px 10px;
  text-transform: uppercase;
  transition: opacity 180ms ease;
}

.support-video-control:hover .support-video-play,
.support-video-control:focus-visible .support-video-play {
  transform: translate(-50%, -50%) scale(1.04);
}

.support-video-control:focus-visible {
  outline: 3px solid var(--butter);
  outline-offset: -3px;
}

.material-film.is-playing .support-video-play,
.material-film.is-playing .support-video-state {
  opacity: 0;
}

.material-film.is-playing .support-video-control:hover .support-video-state,
.material-film.is-playing .support-video-control:focus-visible .support-video-state {
  opacity: 1;
}

.lifestyle-stack {
  height: 100%;
  min-width: 0;
  min-height: 0;
  display: grid;
  grid-template-rows: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.lifestyle-stack figure {
  min-height: 0;
  overflow: hidden;
  background: var(--sky);
}

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

.bundle-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(390px, 0.9fr);
  align-items: center;
  gap: clamp(42px, 8vw, 116px);
}

.bundle-grid h2 {
  max-width: 10ch;
}

.bundle-note {
  margin-top: 20px;
  color: var(--ink);
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.04em;
  line-height: 1.55;
  text-transform: uppercase;
}

.bundle .tier-grid {
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
}

.bundle .tier {
  border-color: var(--sky-line);
  background: rgba(255, 255, 255, 0.6);
}

.bundle .tier strong {
  font-size: clamp(2.35rem, 4vw, 3.7rem);
}

.faq-section h2 {
  max-width: 12ch;
}

.faq .answer a {
  color: var(--ink);
  text-underline-offset: 3px;
}

.final-cta h2 {
  max-width: 17ch;
}

.sky-page .site-footer {
  background: var(--sky-soft);
}

.sky-page .sticky-cta {
  background: rgba(251, 250, 247, 0.97);
}

@media (max-width: 1040px) {
  .product-grid--four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-grid--four .product-body {
    min-height: 220px;
  }
}

@media (max-width: 940px) {
  .sky-page .hero-grid,
  .section-head,
  .material-grid,
  .bundle-grid {
    grid-template-columns: 1fr;
  }

  .founder-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "heading"
      "copy"
      "film";
  }

  .sky-page .hero-grid {
    gap: 34px;
  }

  .hero-film {
    width: min(100%, 560px);
    justify-self: center;
  }

  .founder-heading h2,
  .material-copy h2,
  .bundle-grid h2 {
    max-width: 12ch;
  }

  .founder-copy {
    max-width: 720px;
  }

  .founder-film {
    width: min(100%, 540px);
    justify-self: center;
  }

  .section-head {
    align-items: start;
    gap: 18px;
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-grid--two {
    width: 100%;
  }

  .review-cards {
    grid-template-columns: 1fr;
  }

  .review-card + .review-card {
    border-top: 1px solid rgba(255, 255, 255, 0.24);
    border-left: 0;
  }

  .material-copy {
    max-width: 700px;
  }

  .material-media-grid {
    width: min(100%, 760px);
    margin-inline: auto;
  }
}

@media (max-width: 760px) {
  .sky-page {
    padding-bottom: 70px;
  }

  .sky-page .hero {
    min-height: auto;
  }

  .sky-page .hero-grid {
    padding-top: 34px;
    padding-bottom: 46px;
  }

  .sky-page .hero-copy h1 {
    max-width: 10.5ch;
    font-size: clamp(3rem, 14vw, 4.1rem);
  }

  .sky-page .hero-copy .lede {
    margin-top: 17px;
  }

  .sky-page .hero-copy .actions {
    gap: 14px;
  }

  .hero-film {
    max-height: 66svh;
  }

  .founder-grid {
    gap: 28px;
  }

  .founder-lede {
    font-size: 1.45rem;
  }

  .finder-tabs {
    margin-top: 30px;
  }

  .finder-tab {
    min-height: 54px;
    font-size: 0.64rem;
    padding-inline: 6px;
  }

  .product-body {
    min-height: 228px;
    padding: 16px;
  }

  .review-intro {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 36px;
  }

  .review-score > span:first-child {
    font-size: 5.8rem;
  }

  .material-media-grid {
    grid-template-columns: 1fr;
    aspect-ratio: auto;
    gap: 10px;
  }

  .material-film {
    width: min(100%, 370px);
    height: auto;
    aspect-ratio: 9 / 16;
    justify-self: center;
  }

  .lifestyle-stack {
    height: auto;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-template-rows: 1fr;
    gap: 6px;
  }

  .lifestyle-stack figure {
    aspect-ratio: 3 / 4;
  }

  .bundle-grid {
    gap: 34px;
  }

  .bundle .tier-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .bundle .tier {
    display: block;
    padding: 18px 8px;
  }

  .bundle .tier strong {
    font-size: 2.25rem;
  }

  .bundle .tier span {
    display: block;
    margin-top: 5px;
    font-size: 0.54rem;
  }
}

@media (max-width: 520px) {
  .product-grid {
    gap: 9px;
  }

  .product-body {
    min-height: 190px;
    padding: 13px;
  }

  .product-kind {
    margin-bottom: 8px;
    font-size: 0.53rem;
  }

  .product-body h3 {
    font-size: 1.13rem;
  }

  .product-body h3 + p {
    display: none;
  }

  .product-link {
    font-size: 0.55rem;
    letter-spacing: 0.045em;
    line-height: 1.45;
    padding-top: 14px;
  }

  .material-facts > li {
    grid-template-columns: 88px 1fr;
  }

  .sticky-copy strong {
    font-size: 0.92rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-film video {
    object-position: center;
  }
}
