:root {
  color: var(--of-color-ink, #1d1d1a);
  background: var(--of-color-paper, #f6f4ed);
  font-family: var(--of-font-body, Avenir, "Avenir Next", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif);
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: radial-gradient(circle at 50% 12%, rgba(255, 254, 249, 0.98), rgba(246, 244, 237, 0) 34rem), #f6f4ed;
}
a { color: inherit; }

.skip-link {
  position: fixed;
  z-index: 100;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.75rem 1rem;
  border: 2px solid currentColor;
  border-radius: 999px;
  background: #fffef9;
  transform: translateY(-180%);
  transition: transform 160ms ease;
}
.skip-link:focus { transform: translateY(0); }
:focus-visible { outline: 3px solid #1d1d1a; outline-offset: 4px; }

.site-header {
  position: absolute;
  z-index: 20;
  inset: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100% - 3rem, 1440px);
  margin-inline: auto;
  padding-block: 1.5rem;
}

.wordmark {
  min-height: 2.75rem;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-family: ui-monospace, "SFMono-Regular", Menlo, monospace;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-decoration: none;
}
.wordmark svg {
  width: 2.35rem;
  height: 2.35rem;
  padding: 0.42rem;
  border: 1px solid rgba(29, 29, 26, 0.78);
  border-radius: 50%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.7;
}
.wordmark circle { fill: #ddef68; stroke: none; }

.header-link {
  min-height: 2.75rem;
  display: inline-flex;
  align-items: center;
  padding-inline: 1.15rem;
  border: 1px solid rgba(29, 29, 26, 0.26);
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 650;
  text-decoration: none;
  transition: background-color 160ms ease, transform 160ms ease;
}
.header-link:hover { background: #fffef9; transform: translateY(-2px); }

.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  place-items: center;
  min-height: 100svh;
  padding: 8.5rem 1.5rem 6rem;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  z-index: -4;
  width: min(43vw, 42rem);
  aspect-ratio: 1;
  border: 1px solid rgba(29, 29, 26, 0.11);
  border-radius: 50%;
  box-shadow: 0 0 0 3.5rem rgba(255, 254, 249, 0.25), 0 0 0 7rem rgba(255, 254, 249, 0.16);
}

.hero-copy {
  position: relative;
  z-index: 8;
  width: min(100%, 39rem);
  text-align: center;
}
.hero-mark {
  display: grid;
  place-items: center;
  width: 4.5rem;
  height: 4.5rem;
  margin: 0 auto 1.4rem;
  border-radius: 1.35rem;
  background: #1d1d1a;
  box-shadow: 0 1.1rem 2.2rem rgba(29, 29, 26, 0.18);
  transform: rotate(-3deg);
}
.hero-mark svg {
  width: 2.7rem;
  fill: none;
  stroke: #fffef9;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.8;
}
.hero-mark circle { fill: #ddef68; stroke: none; }

.eyebrow {
  margin: 0 0 1.1rem;
  font-family: ui-monospace, "SFMono-Regular", Menlo, monospace;
  font-size: clamp(0.67rem, 1vw, 0.76rem);
  font-weight: 700;
  letter-spacing: 0.18em;
}
h1, h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -0.055em;
}
h1 {
  max-width: 10ch;
  margin-inline: auto;
  font-size: clamp(4rem, 8vw, 7.3rem);
  line-height: 0.88;
}
.hero-lede {
  max-width: 34rem;
  margin: 1.7rem auto 0;
  color: rgba(29, 29, 26, 0.72);
  font-size: clamp(1rem, 1.6vw, 1.16rem);
  line-height: 1.65;
}
.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 1.9rem;
}
.primary-action, .secondary-action {
  min-height: 3.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}
.primary-action {
  gap: 0.65rem;
  min-width: 10rem;
  padding-inline: 1.3rem;
  color: #fffef9;
  background: #1d1d1a;
  box-shadow: 0 0.7rem 1.4rem rgba(29, 29, 26, 0.16);
}
.primary-action span { color: #ddef68; }
.secondary-action { padding-inline: 1.1rem; border: 1px solid rgba(29, 29, 26, 0.24); }
.primary-action:hover, .secondary-action:hover { transform: translateY(-3px); }
.primary-action:hover { box-shadow: 0 1rem 1.7rem rgba(29, 29, 26, 0.22); }
.secondary-action:hover { background: #fffef9; }

.trust-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.45rem 1.25rem;
  margin: 1.45rem 0 0;
  padding: 0;
  color: rgba(29, 29, 26, 0.66);
  font-size: 0.75rem;
  list-style: none;
}
.trust-list li { display: flex; align-items: center; gap: 0.48rem; }
.trust-list li::before {
  content: "";
  width: 0.34rem;
  height: 0.34rem;
  border-radius: 50%;
  background: #1d1d1a;
}

.floating-piece {
  position: absolute;
  z-index: 2;
  width: clamp(12rem, 22vw, 22rem);
  margin: 0;
  pointer-events: none;
  animation: float 7s ease-in-out infinite;
}
.floating-piece img {
  display: block;
  width: 100%;
  height: auto;
  mix-blend-mode: multiply;
  filter: saturate(0.9) drop-shadow(0 1.2rem 1.2rem rgba(29, 29, 26, 0.13));
  -webkit-mask-image: radial-gradient(ellipse 48% 48% at 50% 50%, #000 54%, transparent 89%);
  mask-image: radial-gradient(ellipse 48% 48% at 50% 50%, #000 54%, transparent 89%);
}
.floating-piece figcaption {
  position: absolute;
  bottom: 11%;
  left: 50%;
  padding: 0.35rem 0.62rem;
  border: 1px solid rgba(29, 29, 26, 0.18);
  border-radius: 999px;
  background: rgba(255, 254, 249, 0.84);
  font-family: ui-monospace, "SFMono-Regular", Menlo, monospace;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  white-space: nowrap;
  backdrop-filter: blur(10px);
}
.floating-piece--top { top: 7%; left: -1.5%; transform: rotate(-9deg); animation-delay: -1.8s; }
.floating-piece--top figcaption { transform: translateX(-34%); }
.floating-piece--denim {
  top: 3%;
  right: -2.5%;
  width: clamp(13rem, 25vw, 25rem);
  transform: rotate(8deg);
  animation-duration: 8.4s;
  animation-delay: -4s;
}
.floating-piece--denim figcaption { transform: translateX(-62%); }
.floating-piece--shoes {
  bottom: -7%;
  left: 5%;
  width: clamp(13rem, 25vw, 24rem);
  transform: rotate(7deg);
  animation-duration: 6.4s;
  animation-delay: -3s;
}
.floating-piece--shoes figcaption { bottom: 24%; transform: translateX(-28%); }

.ambient {
  position: absolute;
  z-index: -2;
  width: clamp(7rem, 13vw, 12rem);
  aspect-ratio: 1;
  border-radius: 50%;
  filter: blur(1px);
}
.ambient--acid {
  right: 15%;
  bottom: 8%;
  background: rgba(221, 239, 104, 0.74);
  animation: float-small 6.2s ease-in-out infinite -2s;
}
.ambient--lilac {
  top: 22%;
  left: 19%;
  width: clamp(3.5rem, 7vw, 6rem);
  background: rgba(200, 192, 240, 0.78);
  animation: float-small 7.8s ease-in-out infinite -4s;
}
.scroll-cue {
  position: absolute;
  z-index: 9;
  right: clamp(1.5rem, 4vw, 4rem);
  bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
}
.scroll-cue span:last-child {
  display: grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid rgba(29, 29, 26, 0.25);
  border-radius: 50%;
}

.privacy {
  position: relative;
  padding: clamp(5rem, 10vw, 9rem) clamp(1.25rem, 5vw, 5rem);
  color: #fffef9;
  background: #1d1d1a;
}
.privacy::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: min(18rem, 44vw);
  height: 0.35rem;
  background: #ddef68;
  transform: translateX(-50%);
}
.privacy-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(16rem, 0.8fr);
  gap: 1.5rem 5rem;
  align-items: end;
  width: min(100%, 76rem);
  margin-inline: auto;
}
.privacy-intro .eyebrow { grid-column: 1 / -1; color: #ddef68; }
.privacy-intro h2 { max-width: 12ch; font-size: clamp(3.1rem, 6vw, 6rem); line-height: 0.95; }
.privacy-intro > p:last-child {
  margin: 0 0 0.3rem;
  color: rgba(255, 254, 249, 0.68);
  font-size: 1rem;
  line-height: 1.7;
}

.privacy-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  width: min(100%, 76rem);
  margin: clamp(3.2rem, 6vw, 5.2rem) auto 0;
}
.privacy-grid article {
  position: relative;
  min-height: 24rem;
  padding: 1.25rem;
  border: 1px solid rgba(255, 254, 249, 0.17);
  border-radius: 1.5rem;
  background: rgba(255, 254, 249, 0.045);
}
.privacy-grid article:nth-child(2) { color: #1d1d1a; background: #ddef68; }
.privacy-number {
  display: block;
  font-family: ui-monospace, "SFMono-Regular", Menlo, monospace;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  opacity: 0.65;
}
.privacy-icon {
  display: grid;
  place-items: center;
  width: 6.5rem;
  height: 6.5rem;
  margin: 2.7rem auto;
  border: 1px solid currentColor;
  border-radius: 50%;
  opacity: 0.88;
}
.privacy-icon--vision span {
  width: 2.7rem;
  height: 3.5rem;
  border: 2px solid currentColor;
  border-radius: 46% 46% 38% 38%;
  box-shadow: 0 0 0 0.7rem rgba(255, 254, 249, 0.06);
}
.privacy-icon--cloud span {
  position: relative;
  width: 3.4rem;
  height: 1.7rem;
  border: 2px solid currentColor;
  border-radius: 999px;
}
.privacy-icon--cloud span::before {
  content: "";
  position: absolute;
  top: -1.45rem;
  left: 0.72rem;
  width: 1.8rem;
  height: 1.8rem;
  border: 2px solid currentColor;
  border-bottom: 0;
  border-radius: 50% 50% 0 0;
  background: #ddef68;
}
.privacy-icon--spark { color: #ddef68; font-size: 3rem; }
.privacy-grid h3 {
  margin: 0 0 0.75rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.65rem, 2.5vw, 2.15rem);
  font-weight: 400;
  line-height: 1.05;
}
.privacy-grid p { margin: 0; color: rgba(255, 254, 249, 0.64); font-size: 0.88rem; line-height: 1.65; }
.privacy-grid article:nth-child(2) p { color: rgba(29, 29, 26, 0.68); }

.public-boundary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  width: min(100%, 76rem);
  margin: 2rem auto 0;
  padding: 1rem;
  border-radius: 999px;
  background: rgba(255, 254, 249, 0.07);
  color: rgba(255, 254, 249, 0.72);
  text-align: center;
}
.public-boundary span {
  flex: 0 0 auto;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: #ddef68;
  box-shadow: 0 0 0 0.3rem rgba(221, 239, 104, 0.12);
}
.public-boundary p { margin: 0; font-size: 0.76rem; line-height: 1.4; }

footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem clamp(1.25rem, 4vw, 4rem);
  border-top: 1px solid rgba(29, 29, 26, 0.12);
  background: #f6f4ed;
}
footer p { margin: 0; color: rgba(29, 29, 26, 0.7); font-size: 0.76rem; text-align: center; }
footer > a:last-child {
  min-height: 2.75rem;
  display: inline-flex;
  align-items: center;
  justify-self: end;
  font-size: 0.78rem;
  font-weight: 700;
  text-underline-offset: 0.2rem;
}

@keyframes float { 0%, 100% { translate: 0 0; } 50% { translate: 0 -0.9rem; } }
@keyframes float-small { 0%, 100% { translate: 0 0; } 50% { translate: 0 0.65rem; } }

@media (max-width: 980px) {
  .hero { min-height: 48rem; }
  .floating-piece--top { top: 8%; left: -7rem; }
  .floating-piece--denim { top: 8%; right: -7.5rem; }
  .floating-piece--shoes { bottom: -4rem; left: -3rem; }
  .ambient--acid { right: 8%; }
  .privacy-intro { grid-template-columns: 1fr; }
  .privacy-intro .eyebrow { grid-column: auto; }
  .privacy-grid article { min-height: 22rem; }
}

@media (max-width: 720px) {
  .site-header { width: min(100% - 2rem, 1440px); padding-block: 1rem; }
  .wordmark span { display: none; }
  .hero { min-height: 46rem; padding: 7rem 1.1rem 5rem; }
  .hero::before { width: 80vw; }
  .hero-mark { width: 4rem; height: 4rem; }
  h1 { font-size: clamp(3.8rem, 18vw, 5.5rem); }
  .hero-lede { max-width: 27rem; font-size: 0.98rem; }
  .floating-piece { width: 10rem; opacity: 0.66; }
  .floating-piece figcaption { display: none; }
  .floating-piece--top { top: 8%; left: -4.7rem; }
  .floating-piece--denim { top: 12%; right: -5.4rem; width: 11rem; }
  .floating-piece--shoes { bottom: -1rem; left: -3.7rem; width: 12rem; }
  .ambient--lilac { top: 19%; left: 12%; }
  .ambient--acid { right: -2rem; bottom: 8%; }
  .scroll-cue { right: 1rem; bottom: 1.1rem; }
  .scroll-cue span:first-child { display: none; }
  .privacy { padding-inline: 1rem; }
  .privacy-grid { grid-template-columns: 1fr; }
  .privacy-grid article { min-height: 0; padding: 1.15rem; }
  .privacy-icon { width: 5.2rem; height: 5.2rem; margin: 1.9rem auto; }
  .public-boundary { align-items: flex-start; border-radius: 1.2rem; text-align: left; }
  .public-boundary span { margin-top: 0.28rem; }
  footer { grid-template-columns: auto 1fr; }
  footer p { grid-column: 1 / -1; grid-row: 2; text-align: left; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .primary-action, .secondary-action { width: min(100%, 18rem); }
  .trust-list { gap: 0.5rem 0.8rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
