:root {
  color-scheme: light;
  --ink: #131616;
  --paper: #f4f0e8;
  --blue: #315cff;
  --acid: #d7ff4f;
  --coral: #ff765f;
  --line: rgba(19, 22, 22, 0.15);
  --soft: #e7e0d5;
  font-family:
    Inter,
    ui-sans-serif,
    -apple-system,
    BlinkMacSystemFont,
    "SF Pro Display",
    "Segoe UI",
    sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}
* {
  box-sizing: border-box;
}
html {
  max-width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}
body {
  max-width: 100%;
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  overflow-x: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
.site-header {
  width: min(1180px, calc(100% - 40px));
  margin: auto;
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 780;
  letter-spacing: -0.04em;
}
.brand-orb {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 68% 28%, var(--acid), transparent 25%),
    radial-gradient(circle at 30% 70%, var(--coral), transparent 34%),
    var(--blue);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.35);
}
nav {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 13px;
  font-weight: 650;
}
nav span {
  color: rgba(19, 22, 22, 0.5);
}
nav a {
  border-bottom: 1px solid transparent;
}
nav a:hover,
nav a:focus-visible,
nav a[aria-current="page"] {
  border-color: currentColor;
}
.hero {
  width: min(1180px, calc(100% - 40px));
  min-height: 680px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(420px, 0.97fr);
  gap: 54px;
  align-items: center;
  padding: 68px 0 88px;
}
.eyebrow {
  margin: 0 0 20px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.hero h1,
.vision-hero h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(58px, 8vw, 104px);
  font-weight: 770;
  line-height: 0.88;
  letter-spacing: -0.075em;
}
.hero h1 em,
.vision-hero h1 em,
.closing h2 em,
.vision-close em {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}
.lede {
  max-width: 630px;
  margin: 30px 0 0;
  font-size: clamp(19px, 2vw, 24px);
  line-height: 1.42;
  letter-spacing: -0.025em;
  color: rgba(19, 22, 22, 0.72);
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 34px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 760;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}
.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}
.button-primary {
  background: var(--ink);
  color: #fff;
  box-shadow: 0 10px 26px rgba(19, 22, 22, 0.16);
}
.button-light {
  background: #fff;
  color: var(--ink);
}
.microcopy {
  max-width: 180px;
  color: rgba(19, 22, 22, 0.5);
  font-size: 12px;
  line-height: 1.4;
}
.moment-stage {
  position: relative;
  min-height: 540px;
  isolation: isolate;
}
.orbit {
  position: absolute;
  border-radius: 50%;
  filter: blur(0.2px);
}
.orbit-one {
  width: 320px;
  height: 320px;
  right: -100px;
  top: -20px;
  background: var(--acid);
}
.orbit-two {
  width: 230px;
  height: 230px;
  left: -30px;
  bottom: 10px;
  background: var(--coral);
}
.moment-card {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 24px 70px rgba(19, 22, 22, 0.18);
}
.moment-back {
  width: 62%;
  right: -8%;
  top: 4%;
  padding: 24px;
  border-radius: 32px;
  background: #151b1b;
  color: #fff;
  transform: rotate(8deg);
}
.moment-back p,
.moment-topline {
  font-size: 10px;
  font-weight: 780;
  letter-spacing: 0.12em;
}
.moment-back h2 {
  margin: 68px 0 4px;
  font-size: 24px;
  line-height: 1.05;
  letter-spacing: -0.04em;
}
.moment-main {
  z-index: 2;
  width: min(390px, 82%);
  left: 8%;
  top: 52px;
  border-radius: 38px;
  overflow: hidden;
  background: #fff;
  transform: rotate(-3deg);
}
.moment-topline {
  display: flex;
  justify-content: space-between;
  padding: 20px 22px 14px;
}
.spark {
  font-size: 18px;
  color: var(--blue);
}
.moment-art {
  position: relative;
  height: 210px;
  overflow: hidden;
  background: linear-gradient(
    155deg,
    #ffb08d 0 37%,
    #9fbaff 37% 64%,
    #1a2a30 64%
  );
}
.sun {
  position: absolute;
  width: 78px;
  height: 78px;
  right: 32px;
  top: 26px;
  border-radius: 50%;
  background: var(--acid);
  box-shadow: 0 0 36px rgba(215, 255, 79, 0.55);
}
.arch {
  position: absolute;
  bottom: -45px;
  width: 170px;
  height: 190px;
  border: 24px solid rgba(255, 255, 255, 0.84);
  border-bottom: 0;
  border-radius: 90px 90px 0 0;
}
.arch-one {
  left: 25px;
}
.arch-two {
  left: 170px;
  height: 150px;
}
.path {
  position: absolute;
  width: 230px;
  height: 80px;
  left: 125px;
  bottom: -30px;
  background: var(--coral);
  transform: rotate(-14deg);
  border-radius: 50%;
}
.moment-body {
  padding: 24px 24px 28px;
}
.moment-body h2 {
  margin: 0;
  font-size: 34px;
  letter-spacing: -0.055em;
}
.moment-body p {
  margin: 9px 0 20px;
  color: rgba(19, 22, 22, 0.64);
  font-size: 14px;
  line-height: 1.5;
}
.moment-body ul {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  padding: 0;
  margin: 0;
  list-style: none;
}
.moment-body li {
  padding: 8px 10px;
  border-radius: 999px;
  background: #efede8;
  font-size: 11px;
  font-weight: 720;
}
.taste-note {
  position: absolute;
  z-index: 3;
  right: -1%;
  bottom: 30px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border: 1px solid rgba(19, 22, 22, 0.12);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 38px rgba(19, 22, 22, 0.14);
  transform: rotate(4deg);
}
.taste-note > span {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--coral);
  color: #fff;
}
.taste-note p {
  margin: 0;
  font-size: 12px;
  line-height: 1.35;
}
.manifesto {
  padding: 112px max(20px, calc((100vw - 1180px) / 2));
  background: var(--ink);
  color: #fff;
}
.manifesto > h2,
.vision-principles > h2 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(44px, 6vw, 78px);
  line-height: 0.95;
  letter-spacing: -0.06em;
}
.principle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 70px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.18);
}
.principle-grid article {
  min-height: 300px;
  padding: 28px;
  background: var(--ink);
}
.principle-grid span {
  font-size: 11px;
  color: var(--acid);
  font-weight: 800;
}
.principle-grid h3 {
  margin: 100px 0 12px;
  font-size: 26px;
  letter-spacing: -0.04em;
}
.principle-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 15px;
  line-height: 1.55;
}
.closing,
.vision-close {
  padding: 120px max(20px, calc((100vw - 1180px) / 2));
  background: var(--blue);
  color: #fff;
}
.closing h2 {
  margin: 0 0 40px;
  font-size: clamp(52px, 7vw, 96px);
  line-height: 0.93;
  letter-spacing: -0.065em;
}
footer {
  width: min(1180px, calc(100% - 40px));
  margin: auto;
  padding: 38px 0;
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 30px;
  align-items: center;
  font-size: 11px;
  color: rgba(19, 22, 22, 0.55);
}
footer p {
  margin: 0;
}
.footer-brand {
  color: var(--ink);
}
.vision-page {
  background: var(--ink);
  color: #fff;
}
.vision-page .site-header {
  border-color: rgba(255, 255, 255, 0.18);
}
.vision-page nav span,
.vision-page nav a {
  color: rgba(255, 255, 255, 0.72);
}
.vision-hero {
  padding: 110px max(20px, calc((100vw - 1180px) / 2)) 125px;
}
.vision-hero h1 {
  max-width: 1050px;
}
.vision-hero > p:last-child {
  max-width: 740px;
  margin: 44px 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: clamp(19px, 2.1vw, 28px);
  line-height: 1.42;
}
.vision-definition {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--paper);
  color: var(--ink);
}
.vision-definition article {
  padding: 85px max(24px, calc((100vw - 1180px) / 2));
  padding-right: 7vw;
}
.vision-definition article + article {
  background: var(--acid);
}
.vision-definition h2 {
  max-width: 500px;
  margin: 0;
  font-size: clamp(38px, 4.7vw, 65px);
  line-height: 0.98;
  letter-spacing: -0.055em;
}
.vision-definition article > p:last-child {
  max-width: 500px;
  margin: 24px 0 0;
  font-size: 17px;
  line-height: 1.55;
  color: rgba(19, 22, 22, 0.68);
}
.vision-principles {
  padding: 120px max(20px, calc((100vw - 1180px) / 2));
}
.vision-principles ol {
  padding: 0;
  margin: 70px 0 0;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.vision-principles li {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) 1.2fr;
  gap: 40px;
  padding: 27px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.vision-principles strong {
  font-size: 20px;
  letter-spacing: -0.025em;
}
.vision-principles li span {
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.5;
}
.vision-close blockquote {
  margin: 0 0 46px;
  font-size: clamp(50px, 7vw, 96px);
  font-weight: 750;
  line-height: 0.93;
  letter-spacing: -0.065em;
}
.vision-page footer {
  color: rgba(255, 255, 255, 0.55);
}
.vision-page .footer-brand {
  color: #fff;
}
@media (max-width: 850px) {
  .site-header {
    width: min(100% - 28px, 1180px);
    min-height: 70px;
  }
  nav span {
    display: none;
  }
  .hero {
    width: min(100% - 28px, 1180px);
    grid-template-columns: 1fr;
    gap: 50px;
    padding: 58px 0 64px;
  }
  .hero h1,
  .vision-hero h1 {
    font-size: clamp(56px, 17vw, 86px);
  }
  .lede {
    font-size: 19px;
  }
  .moment-stage {
    min-height: 510px;
  }
  .moment-main {
    left: 4%;
    width: 82%;
  }
  .moment-back {
    right: -2%;
  }
  .taste-note {
    right: 0;
  }
  .principle-grid {
    grid-template-columns: 1fr;
  }
  .principle-grid article {
    min-height: 230px;
  }
  .principle-grid h3 {
    margin-top: 60px;
  }
  .vision-definition {
    grid-template-columns: 1fr;
  }
  .vision-definition article {
    padding: 72px 24px;
  }
  .vision-principles li {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  footer {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}
@media (max-width: 520px) {
  .site-header nav {
    gap: 14px;
  }
  .hero {
    padding-top: 42px;
  }
  .hero h1,
  .vision-hero h1 {
    font-size: 15.5vw;
  }
  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }
  .moment-stage {
    min-height: 455px;
  }
  .moment-main {
    top: 38px;
    width: 88%;
    left: 0;
    border-radius: 30px;
  }
  .moment-art {
    height: 170px;
  }
  .moment-body {
    padding: 20px;
  }
  .moment-body h2 {
    font-size: 29px;
  }
  .moment-back {
    width: 66%;
    padding: 18px;
  }
  .taste-note {
    bottom: 0;
  }
  .manifesto,
  .closing,
  .vision-principles,
  .vision-close {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .vision-hero {
    padding: 75px 20px 90px;
  }
  .vision-principles ol {
    margin-top: 46px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .button {
    transition: none;
  }
}
