:root {
  --black: #171717;
  --grey: #6f706d;
  --light-grey: #a6a7a3;
  --line: rgba(23, 23, 23, 0.12);
  --paper: #f7f7f5;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--black);
  background: var(--paper);
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

* { box-sizing: border-box; }
html, body { min-width: 320px; width: 100%; height: 100%; }

body {
  margin: 0;
  height: 100svh;
  overflow: hidden;
  background: var(--paper);
}

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

.ambient {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  transform: translate(var(--shift-x, 0), var(--shift-y, 0)) scale(1.04);
  transition: transform 900ms cubic-bezier(.2,.8,.2,1);
}

.ambient::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(247,247,245,.02), rgba(247,247,245,.72));
}

.glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: .5;
  will-change: transform;
}

.glow-one {
  width: min(56vw, 850px);
  height: min(56vw, 850px);
  left: 18%;
  top: 18%;
  background: rgba(190, 211, 231, .88);
  animation: drift-one 16s ease-in-out infinite alternate;
}

.glow-two {
  width: min(48vw, 700px);
  height: min(48vw, 700px);
  right: 15%;
  top: 25%;
  background: rgba(239, 206, 183, .78);
  animation: drift-two 19s ease-in-out infinite alternate;
}

.page {
  position: relative;
  z-index: 1;
  width: min(1600px, 100%);
  height: 100svh;
  margin: 0 auto;
  padding: 0 clamp(24px, 4vw, 68px);
  display: grid;
  grid-template-rows: auto 1fr auto;
}

header {
  height: clamp(68px, 9vh, 88px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  animation: fade-in 900ms 100ms ease both;
}

.wordmark {
  display: block;
  line-height: 1;
}

.wordmark img {
  display: block;
  width: clamp(168px, 14vw, 205px);
  height: auto;
}

.header-contact {
  height: 42px;
  padding: 0 17px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 100px;
  background: rgba(255,255,255,.45);
  backdrop-filter: blur(16px);
  font-size: .76rem;
  font-weight: 500;
  transition: background 200ms ease, border-color 200ms ease, transform 200ms ease;
}

.header-contact:hover {
  transform: translateY(-1px);
  background: rgba(255,255,255,.8);
  border-color: rgba(23,23,23,.25);
}

.header-contact svg {
  width: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.25;
  stroke-linecap: round;
  stroke-linejoin: round;
}

main {
  min-height: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: clamp(16px, 3.5vh, 38px) 0 clamp(10px, 2vh, 22px);
  overflow: hidden;
}

.hero {
  width: min(1320px, 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.status {
  height: auto;
  padding: 0;
  display: inline-flex;
  align-items: center;
  border: 0;
  background: transparent;
  color: #898a86;
  font-size: .58rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  animation: fade-up 700ms 160ms cubic-bezier(.2,.75,.25,1) both;
}

h1 {
  margin: clamp(17px, 2.8vh, 28px) 0 0;
  font-size: clamp(3.4rem, min(9vw, 16vh), 9.7rem);
  line-height: .94;
  letter-spacing: -.082em;
  font-weight: 600;
}

.headline-line {
  display: block;
  overflow: hidden;
  padding: 0 .06em .16em;
  margin: 0 -.06em -.16em;
}

.headline-line > span {
  display: block;
  animation: headline-in 1.05s 220ms cubic-bezier(.16,1,.3,1) both;
}

.headline-line.line-two {
  color: #777873;
}

.headline-line.line-two > span {
  background: linear-gradient(100deg, #8c8d88 15%, #555652 48%, #8c8d88 82%);
  background-size: 240% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation:
    headline-in 1.05s 310ms cubic-bezier(.16,1,.3,1) both,
    tone-shift 8s 1.2s ease-in-out infinite alternate;
}

.hero-copy {
  max-width: 620px;
  margin: clamp(18px, 3vh, 29px) auto 0;
  color: #555652;
  font-size: clamp(1.05rem, 1.45vw, 1.3rem);
  line-height: 1.62;
  letter-spacing: -.02em;
  animation: fade-up 800ms 480ms cubic-bezier(.2,.75,.25,1) both;
}

.hero-copy strong {
  color: var(--black);
  font-weight: 600;
}

.principles {
  margin-top: clamp(13px, 2.2vh, 20px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #5e5f5b;
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .01em;
  animation: fade-up 800ms 560ms cubic-bezier(.2,.75,.25,1) both;
}

.principles span {
  padding: 0 17px;
  line-height: 1;
  white-space: nowrap;
}

.principles span + span { border-left: 1px solid var(--line); }

.email-button {
  height: 54px;
  margin-top: clamp(17px, 2.6vh, 25px);
  padding: 0 7px 0 21px;
  display: inline-flex;
  align-items: center;
  gap: 20px;
  border-radius: 100px;
  background: var(--black);
  color: white;
  font-size: .77rem;
  font-weight: 500;
  box-shadow: 0 12px 34px rgba(23,23,23,.18);
  transition: transform 200ms ease, box-shadow 200ms ease;
  animation: fade-up 800ms 640ms cubic-bezier(.2,.75,.25,1) both;
}

.email-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(23,23,23,.18);
}

.button-icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  font-size: .85rem;
}

.coming-soon {
  position: relative;
  margin: clamp(10px, 1.7vh, 15px) 0 0;
  padding: 0 0 8px 13px;
  color: #777873;
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .015em;
  animation: fade-in 900ms 800ms ease both;
}

.coming-soon::before {
  content: "";
  position: absolute;
  left: 0;
  top: .47em;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--black);
  animation: formation-pulse 2.8s ease-in-out infinite;
}

.coming-soon::after {
  content: "";
  position: absolute;
  left: 13px;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(23,23,23,.45), transparent);
  transform-origin: center;
  animation: formation-line 3.8s ease-in-out infinite;
}

.coming-soon span {
  display: inline-block;
  background: linear-gradient(100deg, #8a8b87 20%, #262724 48%, #8a8b87 76%);
  background-size: 260% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: formation-text 5.5s ease-in-out infinite;
}

.coming-soon.hero-status {
  margin-top: 0;
}

.signal {
  width: min(540px, 76vw);
  height: 40px;
  margin-top: clamp(15px, 3.8vh, 38px);
  display: grid;
  grid-template-columns: 1fr 40px 1fr;
  align-items: center;
  opacity: .75;
}

.signal-line { position: relative; height: 1px; overflow: hidden; transform-origin: center; animation: signal-grow 1.2s 720ms cubic-bezier(.16,1,.3,1) both; }
.signal-left { background: linear-gradient(to right, transparent, rgba(23,23,23,.22)); }
.signal-right { background: linear-gradient(to right, rgba(23,23,23,.22), transparent); }

.signal-line::after {
  content: "";
  position: absolute;
  top: 0;
  width: 25%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(23,23,23,.6), transparent);
  animation: signal-travel 4.5s 1.6s ease-in-out infinite;
}

.signal-line > i {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 3px;
  height: 3px;
  margin-top: -1px;
  border-radius: 50%;
  background: #6f706d;
  opacity: 0;
}

.signal-left > i { left: 0; animation: converge-left 4.8s ease-in-out infinite; }
.signal-right > i { right: 0; animation: converge-right 4.8s ease-in-out infinite; }
.signal-line > i:nth-child(2) { animation-delay: 1.6s; }
.signal-line > i:nth-child(3) { animation-delay: 3.2s; }

.signal-left::after { right: -25%; }
.signal-right::after { left: -25%; animation-direction: reverse; }

.signal-core {
  position: relative;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
}

.signal-core::before,
.signal-core::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(23,23,23,.16);
  border-radius: 50%;
}

.signal-core::before { width: 32px; height: 32px; }
.signal-core::after { width: 18px; height: 18px; }
.signal-core i { width: 4px; height: 4px; border-radius: 50%; background: var(--black); animation: core-pulse 2.8s ease-in-out infinite; }

footer {
  min-height: clamp(58px, 7.5vh, 74px);
  padding: 15px 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 34px;
  border-top: 1px solid var(--line);
  color: var(--grey);
  font-size: .65rem;
  animation: fade-in 1s 900ms ease both;
}

footer p { margin: 0; }
footer nav { display: flex; align-items: center; justify-content: center; gap: 25px; }
footer nav a, .footer-email { transition: color 180ms ease; }
footer nav a:hover, .footer-email:hover { color: var(--black); }
.footer-email { text-align: right; }

@keyframes drift-one {
  from { transform: translate3d(-7%, -3%, 0) scale(.95); }
  to { transform: translate3d(9%, 5%, 0) scale(1.08); }
}

@keyframes drift-two {
  from { transform: translate3d(7%, 4%, 0) scale(1.07); }
  to { transform: translate3d(-8%, -5%, 0) scale(.96); }
}

@keyframes fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes headline-in {
  from { opacity: 0; transform: translateY(105%); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes tone-shift {
  from { background-position: 100% 50%; }
  to { background-position: 0% 50%; }
}

@keyframes signal-grow {
  from { opacity: 0; transform: scaleX(0); }
  to { opacity: 1; transform: scaleX(1); }
}

@keyframes signal-travel {
  0%, 15% { transform: translateX(0); opacity: 0; }
  35%, 65% { opacity: 1; }
  85%, 100% { transform: translateX(500%); opacity: 0; }
}

@keyframes converge-left {
  0% { left: 2%; opacity: 0; transform: scale(.6); }
  15% { opacity: .65; }
  75% { opacity: .65; transform: scale(1); }
  92%, 100% { left: calc(100% - 2px); opacity: 0; transform: scale(.45); }
}

@keyframes converge-right {
  0% { right: 2%; opacity: 0; transform: scale(.6); }
  15% { opacity: .65; }
  75% { opacity: .65; transform: scale(1); }
  92%, 100% { right: calc(100% - 2px); opacity: 0; transform: scale(.45); }
}

@keyframes core-pulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(23,23,23,0); }
  50% { transform: scale(1.45); box-shadow: 0 0 0 6px rgba(23,23,23,.06); }
}

@keyframes formation-pulse {
  0%, 100% { opacity: .35; transform: scale(.7); box-shadow: 0 0 0 0 rgba(23,23,23,0); }
  50% { opacity: 1; transform: scale(1); box-shadow: 0 0 0 5px rgba(23,23,23,.07); }
}

@keyframes formation-line {
  0%, 100% { opacity: .25; transform: scaleX(.28); }
  50% { opacity: .85; transform: scaleX(1); }
}

@keyframes formation-text {
  0%, 15% { background-position: 100% 50%; }
  70%, 100% { background-position: 0% 50%; }
}

@media (max-width: 840px) {
  main { padding-top: 65px; }
  footer { grid-template-columns: 1fr 1fr; }
  footer nav { grid-row: 1; grid-column: 1 / -1; justify-content: flex-start; }
  .footer-email { text-align: right; }
}

@media (max-width: 560px) {
  header { height: 68px; }
  .wordmark img { width: 158px; }
  .header-contact { height: 38px; padding: 0 14px; }
  main { justify-content: center; min-height: 0; padding: 14px 0 10px; }
  h1 { margin-top: 18px; font-size: clamp(3rem, min(13.5vw, 10vh), 4.6rem); line-height: .96; }
  .hero-copy { margin-top: 18px; font-size: .9rem; line-height: 1.55; }
  .principles { width: 100%; flex-direction: column; gap: 12px; }
  .principles span { padding: 0; }
  .principles span + span { border-left: 0; }
  .email-button { height: 48px; margin-top: 18px; }
  .button-icon { width: 36px; height: 36px; }
  .coming-soon { margin-top: 8px; }
  .signal { height: 26px; margin-top: 16px; }
  .signal-core { width: 26px; height: 26px; }
  .signal-core::before { width: 24px; height: 24px; }
  .signal-core::after { width: 14px; height: 14px; }
  footer { min-height: 82px; padding: 10px 0; grid-template-columns: 1fr; gap: 7px; font-size: .57rem; }
  footer nav { grid-column: auto; flex-wrap: wrap; justify-content: flex-start; gap: 11px 20px; }
  .footer-email { text-align: left; }
  .copyright { order: 3; }
  .glow { filter: blur(70px); opacity: .55; }
  .glow-one { width: 90vw; height: 90vw; left: -10%; }
  .glow-two { width: 85vw; height: 85vw; right: -15%; top: 40%; }
}

@media (max-height: 700px) {
  header { height: 62px; }
  footer { min-height: 54px; padding-top: 9px; padding-bottom: 9px; }
  .signal { height: 24px; margin-top: 10px; }
  .signal { display: none; }
}

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