:root {
  color-scheme: light;
  --canvas: #eee7db;
  --canvas-bright: #f7f3eb;
  --ink: #070707;
  --ink-soft: #181817;
  --coral: #f77b5b;
  --coral-hot: #ff8a68;
  --cyan: #6bc7d1;
  --amber: #ffb857;
  --muted-dark: #bdb6aa;
  --max-width: 1320px;
  --gutter: clamp(20px, 4vw, 64px);
  --ease-out: cubic-bezier(.16, 1, .3, 1);
  --z-header: 20;
  font-family: "Avenir Next", Avenir, "Helvetica Neue", Helvetica, Arial, sans-serif;
  background: var(--canvas);
  color: var(--ink);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--canvas);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }

.skip-link {
  position: fixed;
  top: 16px;
  left: 16px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--ink);
  color: var(--canvas);
  transform: translateY(-160%);
}

.skip-link:focus { transform: translateY(0); }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: var(--z-header);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 78px;
  padding: 0 var(--gutter);
  border-bottom: 1px solid transparent;
  transition: background-color 240ms var(--ease-out), border-color 240ms var(--ease-out);
}

.site-header.is-scrolled {
  border-color: color-mix(in srgb, var(--ink) 16%, transparent);
  background: color-mix(in srgb, var(--canvas) 92%, transparent);
  backdrop-filter: blur(16px);
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  justify-self: start;
  font-size: 1rem;
  font-weight: 760;
  letter-spacing: -.025em;
  text-decoration: none;
}

.wordmark-four {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  background: var(--ink);
  color: var(--canvas);
  font-family: Georgia, serif;
  font-size: 1.1rem;
  line-height: 1;
}

.site-header nav,
footer nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 38px);
}

.site-header nav a,
footer nav a,
.nav-action {
  font-size: .78rem;
  font-weight: 700;
  text-decoration: none;
}

.site-header nav a,
footer nav a { padding-block: 8px; }

.site-header nav a::after,
footer nav a::after {
  content: "";
  display: block;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms var(--ease-out);
}

.site-header nav a:hover::after,
.site-header nav a:focus-visible::after,
footer nav a:hover::after,
footer nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-action {
  justify-self: end;
  padding: 10px 14px;
  background: var(--ink);
  color: var(--canvas);
  transition: transform 150ms var(--ease-out), background-color 150ms var(--ease-out);
}

.nav-action:hover { background: var(--coral); color: var(--ink); transform: translateY(-2px); }

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(420px, 1.08fr);
  align-items: center;
  min-height: 100svh;
  max-height: 980px;
  overflow: hidden;
  padding: clamp(118px, 15vh, 154px) var(--gutter) clamp(76px, 9vh, 104px);
}

.hero-copy {
  position: relative;
  z-index: 2;
  align-self: center;
  width: min(100%, 650px);
}

.hero-kicker {
  margin: 0 0 20px;
  font-size: .78rem;
  font-weight: 760;
}

.hero-kicker::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 8px;
  margin-right: 10px;
  background: var(--coral);
}

.hero h1 {
  margin: 0;
  font-size: clamp(4.4rem, 7.2vw, 6rem);
  font-weight: 770;
  letter-spacing: -.04em;
  line-height: .91;
}

.hero-line {
  display: block;
  overflow: hidden;
  padding-bottom: .08em;
}

.hero-line > span { display: block; }

.hero-description {
  max-width: 52ch;
  margin: 26px 0 0;
  font-size: clamp(1rem, 1.25vw, 1.16rem);
  line-height: 1.55;
  text-wrap: pretty;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 30px;
}

.hero-actions > span {
  max-width: 20ch;
  color: #504d47;
  font-size: .76rem;
  font-weight: 650;
  line-height: 1.35;
}

.primary-action {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  min-width: 208px;
  min-height: 50px;
  padding: 12px 16px;
  background: var(--coral);
  font-size: .85rem;
  font-weight: 760;
  text-decoration: none;
  transition: background-color 150ms var(--ease-out), transform 150ms var(--ease-out);
}

.primary-action:hover { background: var(--coral-hot); transform: translateY(-2px); }
.primary-action:active { transform: translateY(0) scale(.98); }

.hero-art {
  position: relative;
  align-self: stretch;
  min-height: 560px;
  margin-left: clamp(20px, 5vw, 80px);
}

.coral-slab {
  position: absolute;
  z-index: 2;
  right: -7%;
  bottom: 15%;
  width: 64%;
  height: 25%;
  background: var(--coral);
  mix-blend-mode: multiply;
  transform: rotate(-7deg);
  transform-origin: right center;
  pointer-events: none;
}

.mark-frame {
  position: absolute;
  inset: 2% 0 0 auto;
  display: grid;
  width: min(100%, 630px);
  height: 88%;
  min-height: 530px;
  overflow: hidden;
  background: #d8c7a9;
  clip-path: inset(0 0 0 0);
}

.hero-four {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.scroll-cue {
  position: absolute;
  z-index: 3;
  right: var(--gutter);
  bottom: 28px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: .7rem;
  font-weight: 700;
  text-decoration: none;
}

.scroll-cue i {
  display: block;
  width: 44px;
  height: 1px;
  overflow: hidden;
  background: color-mix(in srgb, var(--ink) 28%, transparent);
}

.scroll-cue i::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: var(--ink);
  transform: translateX(-100%);
  animation: scan 2.2s var(--ease-out) infinite;
}

.product {
  position: relative;
  overflow: hidden;
  padding: clamp(90px, 11vw, 150px) var(--gutter) 0;
  background: var(--ink);
  color: var(--canvas-bright);
}

.product-intro {
  display: grid;
  grid-template-columns: minmax(160px, .4fr) minmax(0, 1.1fr) minmax(260px, .7fr);
  gap: clamp(28px, 5vw, 80px);
  align-items: end;
  width: min(100%, var(--max-width));
  margin: 0 auto;
}

.signal {
  display: flex;
  align-items: center;
  gap: 7px;
  height: 64px;
  color: var(--cyan);
}

.signal i {
  width: 5px;
  height: 18px;
  border-radius: 999px;
  background: currentColor;
  transform-origin: center;
}

.signal i:nth-child(2), .signal i:nth-child(6) { height: 34px; }
.signal i:nth-child(3), .signal i:nth-child(5) { height: 50px; }
.signal i:nth-child(4) { height: 64px; }

.product h2,
.principles h2,
.beta h2 {
  margin: 0;
  font-size: clamp(3.2rem, 6vw, 6rem);
  font-weight: 760;
  letter-spacing: -.04em;
  line-height: .94;
  text-wrap: balance;
}

.product-intro > p {
  max-width: 34ch;
  margin: 0 0 .35em;
  color: var(--muted-dark);
  text-wrap: pretty;
}

.product-stage {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(400px, 1.2fr);
  gap: clamp(40px, 8vw, 120px);
  align-items: center;
  width: min(100%, 1160px);
  min-height: 920px;
  margin: 0 auto;
  padding-top: 80px;
}

.device-copy { max-width: 480px; }

.feature-index {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 22px;
  color: var(--cyan);
  font-size: .76rem;
  font-weight: 760;
}

.feature-index::before {
  content: "";
  width: 24px;
  height: 1px;
  background: currentColor;
}

.device-copy h3 {
  max-width: 12ch;
  margin: 0;
  font-size: clamp(2.3rem, 4vw, 4.5rem);
  letter-spacing: -.035em;
  line-height: .98;
  text-wrap: balance;
}

.device-copy > p:not(.feature-index) {
  max-width: 42ch;
  margin: 28px 0 0;
  color: var(--muted-dark);
  text-wrap: pretty;
}

.device-copy dl { margin: 46px 0 0; }

.device-copy dl > div {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 15px 0;
  border-top: 1px solid #343330;
  font-size: .82rem;
}

.device-copy dt { color: var(--muted-dark); }
.device-copy dd { margin: 0; font-weight: 700; }

.device {
  position: relative;
  align-self: end;
  justify-self: center;
  width: min(88%, 450px);
  margin: 0;
  transform-origin: bottom center;
}

.device::before {
  content: "";
  position: absolute;
  inset: 15% -24% 6%;
  background: var(--coral);
  transform: rotate(-6deg);
}

.device-shell {
  position: relative;
  z-index: 1;
  padding: 10px;
  overflow: hidden;
  border: 2px solid #4a4844;
  border-radius: 52px 52px 0 0;
  background: #171716;
}

.device-shell img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 42px 42px 0 0;
}

.device-island {
  position: absolute;
  z-index: 2;
  top: 25px;
  left: 50%;
  width: 28%;
  height: 24px;
  border-radius: 999px;
  background: #050505;
  transform: translateX(-50%);
}

.device figcaption {
  position: absolute;
  z-index: 2;
  right: calc(100% + 22px);
  bottom: 26px;
  width: 150px;
  color: #8f8980;
  font-size: .65rem;
  text-align: right;
}

.principles {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(460px, 1.15fr);
  gap: clamp(64px, 10vw, 160px);
  padding: clamp(96px, 12vw, 170px) var(--gutter);
  background: var(--canvas-bright);
}

.principles-heading { max-width: 620px; }
.principles h2 { font-size: clamp(3rem, 5.5vw, 5.4rem); }

.principles-heading p {
  max-width: 46ch;
  margin: 30px 0 0;
  color: #4e4a44;
  text-wrap: pretty;
}

.principle-list { border-top: 1px solid var(--ink); }

.principle-list article {
  display: grid;
  grid-template-columns: 30px minmax(160px, .7fr) minmax(220px, 1fr);
  gap: 24px;
  align-items: start;
  padding: 28px 0 34px;
  border-bottom: 1px solid color-mix(in srgb, var(--ink) 24%, transparent);
}

.principle-list article > span { color: var(--coral); font-size: .85rem; }

.principle-list h3 {
  margin: 0;
  font-size: 1.25rem;
  line-height: 1.2;
}

.principle-list p {
  margin: 0;
  color: #514d46;
  font-size: .9rem;
  text-wrap: pretty;
}

.manifesto {
  position: relative;
  display: grid;
  place-content: center;
  min-height: min(820px, 90svh);
  overflow: hidden;
  padding: 100px var(--gutter);
  background: var(--coral);
}

.manifesto p {
  position: relative;
  z-index: 2;
  margin: 0;
  font-size: clamp(4rem, 10vw, 9rem);
  font-weight: 760;
  letter-spacing: -.04em;
  line-height: .9;
}

.manifesto p:nth-child(2) { margin-left: clamp(30px, 12vw, 220px); }

.manifesto-mark {
  position: absolute;
  right: -2vw;
  bottom: -22%;
  color: var(--ink);
  font-family: Georgia, serif;
  font-size: min(70vw, 960px);
  line-height: 1;
  opacity: .1;
  transform: rotate(8deg);
}

.beta {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr);
  gap: clamp(48px, 10vw, 160px);
  align-items: end;
  padding: clamp(100px, 13vw, 180px) var(--gutter);
  background: var(--ink);
  color: var(--canvas-bright);
}

.beta-copy > p {
  margin: 0 0 24px;
  color: var(--cyan);
  font-size: .78rem;
  font-weight: 760;
}

.beta-detail { padding-bottom: 8px; }

.beta-detail p {
  max-width: 44ch;
  margin: 0;
  color: var(--muted-dark);
  text-wrap: pretty;
}

.beta-status {
  display: flex;
  align-items: center;
  gap: 24px;
  max-width: 400px;
  margin-top: 36px;
  padding: 17px 0;
  border-top: 1px solid var(--canvas-bright);
  border-bottom: 1px solid var(--canvas-bright);
  font-size: .9rem;
  font-weight: 750;
}

.beta-status i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 0 5px color-mix(in srgb, var(--coral) 18%, transparent);
}

footer {
  display: flex;
  align-items: center;
  gap: 28px;
  min-height: 110px;
  padding: 28px var(--gutter);
  background: var(--ink);
  color: var(--canvas-bright);
  border-top: 1px solid #363431;
}

.footer-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  background: var(--canvas-bright);
  color: var(--ink);
  font-family: Georgia, serif;
  font-size: 1.55rem;
  text-decoration: none;
}

footer p { margin: 0 auto 0 0; color: var(--muted-dark); font-size: .75rem; }

a:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 4px;
}

@keyframes scan {
  0% { transform: translateX(-100%); }
  55%, 100% { transform: translateX(100%); }
}

@media (max-width: 1050px) {
  .hero { grid-template-columns: minmax(0, 1fr) minmax(360px, .9fr); }
  .hero h1 { font-size: clamp(4rem, 8.7vw, 5.5rem); }
  .hero-art { margin-left: 20px; }
  .product-intro { grid-template-columns: 120px 1fr; }
  .product-intro > p { grid-column: 2; }
  .principles { grid-template-columns: 1fr; }
  .principles-heading { max-width: 760px; }
}

@media (max-width: 760px) {
  body { font-size: 16px; }
  .site-header { grid-template-columns: 1fr auto; min-height: 68px; }
  .site-header nav { display: none; }
  .wordmark-four { width: 27px; height: 27px; }
  .nav-action { font-size: .72rem; }
  .hero {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    min-height: auto;
    max-height: none;
    padding-top: 116px;
    padding-bottom: 68px;
  }
  .hero-copy { width: 100%; }
  .hero h1 { font-size: clamp(3.8rem, 17vw, 5.7rem); }
  .hero-description { max-width: 42ch; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 14px; }
  .primary-action { width: 100%; }
  .hero-art { min-height: 470px; margin: 54px 0 0; }
  .mark-frame { inset: 0; width: 88%; min-height: 440px; }
  .coral-slab { right: -12%; bottom: 14%; width: 74%; height: 24%; }
  .scroll-cue { display: none; }
  .product { padding-top: 82px; }
  .product-intro { display: block; }
  .signal { margin-bottom: 28px; }
  .product-intro > p { margin-top: 26px; }
  .product h2, .principles h2, .beta h2 { font-size: clamp(3.1rem, 14vw, 5rem); }
  .product-stage { grid-template-columns: 1fr; min-height: auto; padding-top: 84px; }
  .device-copy { max-width: 100%; }
  .device { width: min(92%, 430px); margin-top: 50px; }
  .device figcaption { display: none; }
  .principles { grid-template-columns: 1fr; padding-block: 92px; }
  .principle-list article { grid-template-columns: 24px 1fr; }
  .principle-list p { grid-column: 2; }
  .manifesto { min-height: 560px; }
  .manifesto p { font-size: clamp(3.6rem, 18vw, 6.8rem); }
  .manifesto p:nth-child(2) { margin-left: 0; }
  .beta { grid-template-columns: 1fr; }
  footer { align-items: flex-start; flex-wrap: wrap; }
  footer nav { width: 100%; justify-content: space-between; }
}

@media (max-width: 420px) {
  .nav-action { padding: 9px 11px; }
  .hero h1 { font-size: clamp(3.45rem, 16.5vw, 4.4rem); }
  .hero-art { min-height: 410px; }
  .mark-frame { min-height: 390px; }
  .product h2, .principles h2, .beta h2 { font-size: clamp(2.75rem, 13.5vw, 4rem); }
}

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