:root {
  color-scheme: light;
  --ink: #18384b;
  --muted: #667c89;
  --paper: #f8faf9;
  --blue: #29638a;
  --line: #dce5e9;
  font-family: "Avenir Next", Avenir, "Segoe UI", sans-serif;
  font-synthesis: none;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 30px;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
a:focus-visible,
button:focus-visible {
  outline: 3px solid #12668c;
  outline-offset: 6px;
}
svg {
  display: block;
}
.skip-link {
  position: fixed;
  top: -100px;
  left: 20px;
  padding: 12px;
  background: white;
  z-index: 20;
}
.skip-link:focus {
  top: 16px;
}
.site-header {
  height: 104px;
  max-width: 1440px;
  margin: auto;
  padding: 0 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.wordmark {
  font-weight: 750;
  font-size: 29px;
  letter-spacing: -1.4px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.wordmark svg {
  width: 31px;
  fill: none;
  stroke: var(--blue);
  stroke-width: 1.7;
}
.brand-dot {
  color: #82afc9;
  margin-left: -10px;
}
.site-header nav {
  font-size: 13px;
  font-weight: 550;
  margin-left: 60px;
}
.site-header nav span {
  margin-left: 15px;
}
.header-note {
  font-size: 11px;
  letter-spacing: 0.03em;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 9px;
}
.status-dot {
  width: 6px;
  height: 6px;
  background: #7aa398;
  border-radius: 50%;
}
.hero {
  position: relative;
  max-width: 1440px;
  min-height: 772px;
  margin: auto;
  padding: 62px 64px 115px;
  isolation: isolate;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  overflow: hidden;
}
.hero-copy {
  position: relative;
  z-index: 2;
  padding-bottom: 48px;
}
.eyebrow {
  font-size: 10px;
  letter-spacing: 1.7px;
  font-weight: 600;
  line-height: 1.8;
  margin: 0;
}
.tiny-star {
  font-size: 25px;
  vertical-align: middle;
  margin-right: 9px;
  color: #5c8eaa;
}
.hero h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(78px, 8.3vw, 120px);
  font-weight: 400;
  line-height: 0.97;
  letter-spacing: -6px;
  margin: 33px 0 27px;
}
.hero h1 span {
  font-style: italic;
  color: #397395;
}
.hero-description {
  font-size: 15px;
  line-height: 1.85;
  color: var(--muted);
  margin: 0 0 31px;
}
.primary-link {
  display: inline-flex;
  align-items: center;
  gap: 32px;
  padding: 18px 23px;
  border: 1px solid var(--ink);
  border-radius: 5px;
  background: var(--ink);
  color: #fff;
  font-size: 12px;
  transition:
    background 0.2s,
    transform 0.2s;
}
.primary-link:hover {
  background: #2d566e;
  transform: translateY(-2px);
}
.primary-link span {
  font-size: 20px;
  line-height: 1;
}
.hero-footnote {
  font-size: 8px;
  letter-spacing: 1.1px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #7e8e98;
  margin-top: 39px;
}
.short-line {
  width: 25px;
  height: 1px;
  background: #a1b6c2;
}
.sky-art {
  align-self: stretch;
  position: relative;
  min-width: 0;
  margin: -30px -10px 0 -18px;
}
.art-frame {
  position: absolute;
  inset: 0;
  border-radius: 48% 48% 6px 6px;
  overflow: hidden;
  background: linear-gradient(
    155deg,
    #a0cce3 0%,
    #6fa8d0 37%,
    #b5d3e9 75%,
    #e9f3fa 100%
  );
  box-shadow: 0 20px 50px -35px #538bb166;
  transition: background 1s;
}
.sun {
  position: absolute;
  top: 18%;
  left: 52%;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: #fffcdd;
  box-shadow: 0 0 70px 35px #ffffea55;
  opacity: 0.86;
}
.orbital-ring {
  position: absolute;
  width: 77%;
  aspect-ratio: 1;
  border: 1px solid #ffffff45;
  top: 12%;
  left: 12%;
  border-radius: 50%;
  transform: rotate(-25deg);
}
.clouds {
  position: absolute;
  width: 108%;
  height: 105%;
  left: -4%;
  bottom: -3%;
  transition: filter 0.6s;
}
.sky-grain {
  position: absolute;
  inset: 0;
  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='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Cpath fill='%23fff' filter='url(%23n)' opacity='.2' d='M0 0h180v180H0z'/%3E%3C/svg%3E");
  opacity: 0.28;
  mix-blend-mode: soft-light;
  pointer-events: none;
}
.sky-coordinate {
  position: absolute;
  top: 46%;
  left: 28px;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 8px;
  letter-spacing: 2px;
  color: #305575;
}
.floating-label {
  position: absolute;
  top: 44%;
  right: 7%;
  background: #ffffffdf;
  border: 1px solid #fff;
  border-radius: 6px;
  padding: 16px 19px;
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 11px;
  color: #325470;
  transform: rotate(-6deg);
  box-shadow: 0 9px 30px #38658910;
}
.sparkle {
  font-size: 26px;
  color: #6f98b0;
}
.art-caption {
  position: absolute;
  bottom: 28px;
  left: 30px;
  font-size: 8px;
  letter-spacing: 1.7px;
  color: #53758b;
}
.corner-mark {
  position: absolute;
  right: 28px;
  bottom: 22px;
  font-size: 26px;
  font-weight: 200;
  color: #7698ad;
}
.sky-picker {
  position: absolute;
  left: 64px;
  bottom: 25px;
  border: 0;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 18px;
  min-inline-size: 0;
}
.sky-picker[hidden] {
  display: none;
}
.sky-picker legend {
  float: left;
  font-size: 10px;
  color: var(--muted);
  padding: 0;
  line-height: 32px;
  margin-right: 18px;
}
.sky-options {
  display: flex;
  gap: 6px;
}
.sky-picker button {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1px solid transparent;
  background: transparent;
  padding: 8px 10px;
  border-radius: 30px;
  font-size: 10px;
  color: var(--muted);
  cursor: pointer;
}
.sky-picker button[aria-pressed="true"] {
  border-color: #cad9e1;
  background: #fff;
  color: var(--ink);
}
.sky-picker button:hover {
  border-color: #cad9e1;
}
.swatch {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.day {
  background: #80b5d9;
}
.golden {
  background: #e5b985;
}
.dusk {
  background: #9797bb;
}
.hero[data-sky="golden"] .art-frame {
  background: linear-gradient(
    155deg,
    #ddbaad,
    #e3a383 40%,
    #eed1af 77%,
    #f9ecda
  );
}
.hero[data-sky="golden"] .clouds {
  filter: sepia(0.22) saturate(0.85);
}
.hero[data-sky="golden"] h1 span {
  color: #a57157;
}
.hero[data-sky="dusk"] .art-frame {
  background: linear-gradient(
    155deg,
    #777fa7,
    #9292b9 40%,
    #c3b7cf 77%,
    #dddcec
  );
}
.hero[data-sky="dusk"] .clouds {
  filter: sepia(0.1) hue-rotate(24deg) saturate(0.65) brightness(0.95);
}
.hero[data-sky="dusk"] h1 span {
  color: #787396;
}
.hero[data-sky="dusk"] .sun {
  background: #fff5ed;
  box-shadow: 0 0 70px 35px #ffffea22;
}
.possibilities {
  max-width: 1440px;
  margin: 62px auto 0;
  padding: 70px 64px 82px;
  border-top: 1px solid var(--line);
}
.section-heading {
  display: grid;
  grid-template-columns: 1fr 1.25fr 1fr;
  gap: 20px;
  align-items: start;
  margin-bottom: 48px;
}
.section-heading .eyebrow {
  padding-top: 9px;
  color: var(--muted);
}
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 39px;
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -1.2px;
  margin: 0;
}
.section-heading > p:last-child {
  font-size: 12px;
  line-height: 1.9;
  color: var(--muted);
  margin: 8px 0 0;
}
.possibility-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.possibility-card {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 30px;
  min-height: 264px;
  background: #fdfefe;
}
.card-number {
  position: absolute;
  right: 24px;
  top: 24px;
  font-size: 10px;
  color: #97a7ae;
}
.possibility-card svg {
  width: 34px;
  height: 34px;
  stroke: #7896a7;
  stroke-width: 1.3;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  margin-bottom: 24px;
}
.possibility-card h3 {
  font-size: 15px;
  font-weight: 550;
  letter-spacing: -0.15px;
  margin: 0 0 11px;
}
.possibility-card p {
  font-size: 12px;
  line-height: 1.9;
  color: var(--muted);
  max-width: 260px;
  margin: 0 0 25px;
}
.card-tag {
  font-size: 8px;
  letter-spacing: 1.5px;
  color: #698a9e;
}
.closing {
  padding: 60px 24px 90px;
  background: #edf3f6;
  text-align: center;
  border-top: 1px solid #e5edf1;
}
.closing .tiny-star {
  margin: 0;
  font-size: 28px;
}
.closing p {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 40px;
  line-height: 1.22;
  letter-spacing: -1.2px;
  margin: 19px 0 26px;
}
.closing a {
  font-size: 11px;
  border-bottom: 1px solid #a9bcc7;
  padding-bottom: 6px;
}
.closing a span {
  margin-left: 12px;
}
footer {
  max-width: 1440px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 29px 64px;
  color: var(--muted);
  font-size: 10px;
}
.footer-brand {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -1px;
  color: var(--ink);
}
footer > span:last-child {
  font-size: 8px;
  letter-spacing: 1.2px;
}
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
@media (min-width: 1600px) {
  .hero {
    min-height: 820px;
  }
}
@media (max-width: 1100px) {
  .site-header {
    padding: 0 36px;
    height: 88px;
  }
  .hero {
    padding: 54px 36px 100px;
    min-height: 688px;
  }
  .hero h1 {
    font-size: 94px;
  }
  .hero .eyebrow {
    font-size: 8px;
    letter-spacing: 1.2px;
  }
  .sky-art {
    margin-left: 0;
    margin-right: 0;
  }
  .hero-footnote {
    font-size: 7px;
    letter-spacing: 0.7px;
  }
  .sky-picker {
    left: 36px;
  }
  .possibilities {
    padding: 55px 36px 65px;
    margin-top: 42px;
  }
  .section-heading {
    grid-template-columns: 0.8fr 1.15fr 1fr;
  }
  h2 {
    font-size: 34px;
  }
  .possibility-card {
    padding: 24px;
  }
  .floating-label {
    right: 7%;
    padding: 12px;
    font-size: 10px;
  }
  footer {
    padding: 28px 36px;
  }
  .sky-coordinate {
    left: 18px;
  }
}
@media (max-width: 760px) {
  .site-header {
    height: 82px;
    padding: 0 24px;
  }
  .wordmark {
    font-size: 26px;
  }
  .wordmark svg {
    width: 27px;
  }
  .site-header nav {
    margin: 0;
    font-size: 11px;
  }
  .site-header nav span {
    margin-left: 7px;
  }
  .header-note {
    display: none;
  }
  .hero {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 37px 24px 90px;
    overflow: hidden;
    gap: 26px;
  }
  .hero-copy {
    padding-bottom: 0;
  }
  .hero .eyebrow {
    font-size: 8px;
    letter-spacing: 1.2px;
  }
  .hero .tiny-star {
    font-size: 20px;
  }
  .hero h1 {
    font-size: clamp(66px, 20vw, 94px);
    letter-spacing: -5px;
    margin: 27px 0 23px;
  }
  .hero-description {
    font-size: 13px;
    line-height: 1.9;
    margin-bottom: 24px;
  }
  .primary-link {
    padding: 16px 20px;
    font-size: 11px;
    gap: 28px;
  }
  .hero-footnote {
    margin-top: 27px;
    font-size: 7px;
  }
  .sky-art {
    margin: 6px 0 0;
    min-height: 450px;
    width: 100%;
    max-width: 500px;
    justify-self: center;
  }
  .art-frame {
    border-radius: 46% 46% 5px 5px;
  }
  .floating-label {
    font-size: 11px;
    right: 7%;
    top: 43%;
    padding: 12px 17px;
  }
  .sky-coordinate {
    font-size: 7px;
  }
  .art-caption {
    font-size: 7px;
    left: 23px;
    bottom: 23px;
  }
  .sun {
    width: 75px;
    height: 75px;
    top: 17%;
  }
  .sky-picker {
    left: 0;
    right: 0;
    bottom: 14px;
    display: block;
    text-align: center;
  }
  .sky-picker legend {
    float: none;
    margin: 0 auto 5px;
    line-height: 20px;
    font-size: 9px;
  }
  .sky-options {
    justify-content: center;
  }
  .sky-picker button {
    font-size: 9px;
    padding: 7px 9px;
  }
  .possibilities {
    margin-top: 25px;
    padding: 40px 24px 45px;
  }
  .section-heading {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-bottom: 28px;
  }
  .section-heading .eyebrow {
    font-size: 9px;
    padding: 0;
  }
  .section-heading h2 {
    font-size: 37px;
  }
  .section-heading > p:last-child {
    font-size: 12px;
    margin: 0;
  }
  .possibility-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .possibility-card {
    min-height: 0;
    padding: 25px;
  }
  .possibility-card svg {
    margin-bottom: 19px;
  }
  .possibility-card p {
    max-width: 320px;
    margin-bottom: 20px;
  }
  .closing {
    padding: 43px 24px 54px;
  }
  .closing p {
    font-size: 34px;
  }
  footer {
    padding: 25px 24px;
    flex-wrap: wrap;
    gap: 13px;
  }
  footer > span:nth-child(2) {
    font-size: 9px;
  }
  footer > span:last-child {
    flex-basis: 100%;
    font-size: 7px;
  }
  .desktop-break {
    display: none;
  }
}
@media (max-width: 359px) {
  .site-header {
    padding: 0 19px;
  }
  .site-header nav {
    font-size: 10px;
  }
  .hero {
    padding-left: 19px;
    padding-right: 19px;
  }
  .hero .eyebrow {
    font-size: 7px;
    letter-spacing: 0.9px;
  }
  .hero-footnote {
    font-size: 6px;
  }
  .sky-art {
    min-height: 380px;
  }
  .possibilities {
    padding-left: 19px;
    padding-right: 19px;
  }
  footer {
    padding-left: 19px;
    padding-right: 19px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    transition: none !important;
  }
}
