

@font-face {
  font-family: "Instrument Serif";
  src: url("instrument-serif-italic.woff2") format("woff2");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2190-2199, U+2212, U+2215;
}
@font-face {
  font-family: "Manrope";
  src: url("manrope-light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2190-2199, U+2212, U+2215;
}
@font-face {
  font-family: "Manrope";
  src: url("manrope-regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2190-2199, U+2212, U+2215;
}
@font-face {
  font-family: "Manrope";
  src: url("manrope-medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2190-2199, U+2212, U+2215;
}
@font-face {
  font-family: "Manrope";
  src: url("manrope-semibold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2190-2199, U+2212, U+2215;
}

:root {

  --ink-night: #0b0f1f;
  --ink: #0e0f18;
  --surface: #15161f;
  --gold: #e6b566;

  --on-dark: #ffffff;
  --on-dark-muted: rgba(255, 255, 255, .74);
  --on-dark-faint: rgba(255, 255, 255, .6);
  --divider: rgba(255, 255, 255, .45);
  --hairline: rgba(255, 255, 255, .1);

  --card-radius: 30px;
  --card-fill-top: rgba(14, 15, 24, .7);
  --card-fill-bottom: rgba(14, 15, 24, .83);

  --display: "Instrument Serif", Georgia, serif;
  --sans: "Manrope", "Avenir Next", system-ui, sans-serif;

  --mono: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas,
          "DejaVu Sans Mono", monospace;

  --wrap: 1160px;
  --gutter: 32px;
  --safe-inline: max(env(safe-area-inset-left), env(safe-area-inset-right));

  --au-a: #3b1f66;
  --au-b: #1b3a8a;
  --au-c: #5a2a8c;
  --au-deep: #0b0f1f;
}

[data-aurora="ocean"] {
  --au-a: #0e5f73;
  --au-b: #134e6f;
  --au-c: #2c8c99;
  --au-deep: #061a26;
}
[data-aurora="sunset"] {
  --au-a: #b23a48;
  --au-b: #e57c2a;
  --au-c: #8a2d5a;
  --au-deep: #1a0710;
}
[data-aurora="forest"] {
  --au-a: #1f6b3a;
  --au-b: #0e4f4f;
  --au-c: #4a8c5e;
  --au-deep: #06140e;
}

*,
*::before,
*::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  overflow-x: clip;
  scrollbar-color: color-mix(in srgb, var(--gold) 72%, transparent) rgba(255, 255, 255, .06);
  scrollbar-width: thin;
}

body {
  margin: 0;
  background: var(--au-deep);
  color: var(--on-dark);
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: transparent;
  transition: background .8s ease;
}

img { display: block; max-width: 100%; }

a { color: inherit; }

::selection { background: var(--gold); color: var(--ink); }

::-webkit-scrollbar { width: 11px; height: 11px; }
::-webkit-scrollbar-track { background: rgba(255, 255, 255, .06); }
::-webkit-scrollbar-thumb {
  border: 3px solid var(--au-deep);
  border-radius: 999px;
  background: color-mix(in srgb, var(--gold) 72%, transparent);
}
@media (hover: hover) {
  ::-webkit-scrollbar-thumb:hover { background: var(--gold); }
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

.wrap {
  width: min(
    var(--wrap),
    calc(100% - (var(--gutter) * 2) - (var(--safe-inline) * 2))
  );
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  z-index: 100;
  padding: 12px 18px;
  border-radius: 12px;
  background: var(--gold);
  color: var(--ink);
  font-size: .8rem;
  font-weight: 600;
  text-decoration: none;
}
.skip-link:focus { top: 16px; }

.aurora {
  position: fixed;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  height: 100lvh;
  overflow: hidden;
  clip-path: inset(0);

  contain: strict;
  background: var(--au-deep);
  transition: background .8s ease;
}

.aurora i {
  position: absolute;
  box-sizing: content-box;
  margin: -170px;
  padding: 170px;
  background: radial-gradient(closest-side,
    currentColor 0%,
    currentColor 40%,
    color-mix(in srgb, currentColor 86%, transparent) 56%,
    color-mix(in srgb, currentColor 52%, transparent) 72%,
    color-mix(in srgb, currentColor 18%, transparent) 88%,
    transparent 100%);
  mix-blend-mode: screen;
  transition: color .8s ease;
  will-change: transform;
}

.aurora i:nth-child(1) {
  top: -26%;
  left: 0;
  width: 76vw;
  height: 76vw;
  color: var(--au-a);
  opacity: .92;
  transform-origin: left center;
  animation: drift-a 34s ease-in-out infinite alternate;
}
.aurora i:nth-child(2) {
  top: 4%;
  right: 0;
  width: 84vw;
  height: 84vw;
  color: var(--au-b);
  opacity: .8;
  transform-origin: right center;
  animation: drift-b 41s ease-in-out infinite alternate;
}
.aurora i:nth-child(3) {
  bottom: -30%;
  left: 10%;
  width: 80vw;
  height: 80vw;
  color: var(--au-c);
  opacity: .72;
  transform-origin: right center;
  animation: drift-c 47s ease-in-out infinite alternate;
}

.aurora::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(to bottom,
    rgba(6, 8, 18, .56) 0%,
    rgba(6, 8, 18, .48) 14%,
    rgba(6, 8, 18, .41) 28%,
    rgba(6, 8, 18, .36) 42%,
    rgba(6, 8, 18, .35) 55%,
    rgba(6, 8, 18, .39) 68%,
    rgba(6, 8, 18, .46) 82%,
    rgba(6, 8, 18, .56) 100%);
  content: "";
}

@keyframes drift-a {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to   { transform: translate3d(7vw, 5vh, 0) scale(1.12); }
}
@keyframes drift-b {
  from { transform: translate3d(0, 0, 0) scale(1.08); }
  to   { transform: translate3d(-6vw, 7vh, 0) scale(1); }
}
@keyframes drift-c {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to   { transform: translate3d(5vw, -6vh, 0) scale(1.15); }
}

.site-header {
  position: sticky;
  z-index: 40;
  top: 0;
  padding: calc(14px + env(safe-area-inset-top)) 0 14px;
  border-bottom: 1px solid transparent;
  background: transparent;
  transition: background .25s ease, border-color .25s ease;
}

.site-header.is-stuck {
  border-bottom-color: rgba(255, 255, 255, .09);
  background: rgba(8, 10, 22, .94);
  box-shadow: 0 10px 32px rgba(2, 4, 14, .18);
}

@media (hover: hover) and (pointer: fine) {
  .site-header.is-stuck {
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
    background: rgba(8, 10, 22, .86);
  }
}

.nav {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--on-dark);
  font-family: var(--display);
  font-size: 1.42rem;
  font-style: italic;
  letter-spacing: 0;
  line-height: 1;
  text-decoration: none;
}
.brand img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.4vw, 34px);
  font-size: .84rem;
  font-weight: 500;
}

.nav-links a {
  position: relative;
  padding: 4px 0;
  color: var(--on-dark-faint);
  text-decoration: none;
  white-space: nowrap;
  transition: color .2s ease;
}
.nav-links a::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--gold);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s cubic-bezier(.2, .8, .2, 1);
}
.nav-links a:focus-visible { color: var(--on-dark); }

@media (hover: hover) {
  .nav-links a:hover { color: var(--on-dark); }
  .nav-links a:hover::after { transform: scaleX(1); }
}

.nav-links a[aria-current] { color: var(--on-dark); }
.nav-links a[aria-current]::after { transform: scaleX(1); }

.nav-toggle {
  display: none;
  place-items: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 8px;
  background: rgba(255, 255, 255, .06);
  color: var(--on-dark);
  cursor: pointer;
}

.nav-toggle svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.nav-toggle__close { display: none; }
.nav-toggle[aria-expanded="true"] .nav-toggle__menu { display: none; }
.nav-toggle[aria-expanded="true"] .nav-toggle__close { display: block; }

section[id] { scroll-margin-top: 96px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 50px;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  background: var(--gold);
  color: var(--ink);
  font-family: var(--sans);
  font-size: .9rem;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: transform .2s cubic-bezier(.2, .8, .2, 1), box-shadow .2s ease, background .2s ease;
}
@media (hover: hover) {
  .btn:hover {
    background: #f0c887;
    box-shadow: 0 14px 34px rgba(230, 181, 102, .28);
    transform: translateY(-2px);
  }
}
.btn:active { transform: scale(.97); }
.btn svg { width: 17px; height: 17px; fill: currentColor; }

.btn .btn__play {
  width: 18px;
  height: 18px;
  fill: none;
}

.btn--small { min-height: 40px; padding: 0 17px; font-size: .78rem; }

.btn--ghost {
  background: rgba(255, 255, 255, .08);
  color: var(--on-dark);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .16);
}
@media (hover: hover) {
  .btn--ghost:hover {
    background: rgba(255, 255, 255, .14);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .24);
  }
}

.quiet-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--gold);
  font-size: .85rem;
  font-weight: 600;
  text-decoration: none;
}
@media (hover: hover) {
  .quiet-link:hover { text-decoration: underline; text-underline-offset: 4px; }
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 20px;
  color: var(--gold);
  font-family: var(--mono);
  font-size: .69rem;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.eyebrow::after {
  flex: 1;
  height: 1px;
  max-width: 90px;
  background: linear-gradient(to right, rgba(230, 181, 102, .5), transparent);
  content: "";
}
.closing .eyebrow { justify-content: center; }
.closing .eyebrow::after { display: none; }

.display {
  margin: 0;
  font-family: var(--display);
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0;
  line-height: 1.02;
  text-wrap: balance;
}

h1.display { font-size: clamp(3rem, 7vw, 5.6rem); }
h2.display { font-size: clamp(2.3rem, 4.6vw, 3.6rem); }

.lede {
  max-width: 56ch;

  text-wrap: pretty;
  color: var(--on-dark-muted);
  font-size: clamp(1rem, 1.3vw, 1.12rem);
  font-weight: 300;
  line-height: 1.75;
}

section { padding-block: clamp(44px, 5vw, 76px); }

main > section:not(.hero) {
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, .055);
}

#loop,
#yours,
#faq {
  background: rgba(7, 8, 18, .16);
}

#privacy-promise {
  background: rgba(5, 7, 16, .28);
}

.section-head { max-width: 650px; margin-bottom: clamp(30px, 3.2vw, 46px); }
.section-head p { margin: 18px 0 0; }

.section-head--center {
  max-width: 780px;
  margin-inline: auto;
  text-align: center;
}

.section-head--center .lede {
  max-width: 52ch;
  margin-inline: auto;
  text-wrap: balance;
}
.section-head--center .eyebrow { justify-content: center; }
.section-head--center .eyebrow::after { display: none; }

.glass {
  border: 1px solid var(--hairline);
  border-radius: var(--card-radius);
  background: linear-gradient(to bottom, rgba(14, 15, 24, .82), rgba(14, 15, 24, .9));
}

.hero {
  position: relative;
  min-height: clamp(690px, calc(100svh - 70px), 820px);
  padding: 0;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.hero-shell {
  position: relative;
  min-height: inherit;
  display: flex;
  align-items: center;
  padding-block: clamp(44px, 6vh, 72px) 56px;
}

.hero-copy {
  position: relative;
  z-index: 3;
  width: min(58%, 680px);
}

.hero-brand {
  margin: 0;
  color: #fffdf9;
  font-family: var(--display);
  font-size: clamp(5.6rem, 9vw, 8.5rem);
  font-style: italic;
  font-weight: 400;
  line-height: .78;
}

.hero-brand span { color: var(--gold); }

.hero-statement {
  max-width: 10ch;
  margin: 30px 0 0;
  font-size: clamp(2.8rem, 4.4vw, 4.5rem);
  line-height: .96;
}

.hero .lede {
  max-width: 52ch;
  margin: 24px 0 0;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px 22px;
  margin-top: 34px;
}

.hero-theme {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px 18px;
  margin-top: 34px;
}

.hero-theme .aurora-switch__label {
  width: auto;
  text-align: left;
}

.hero-theme .aurora-switch {
  justify-content: flex-start;
  gap: 8px;
}

.hero-theme .swatch {
  padding: 7px 11px 7px 8px;
  font-size: .7rem;
}

.hero-theme .swatch i {
  width: 15px;
  height: 15px;
}

.hero-product {
  position: absolute;
  z-index: 2;
  top: 38px;
  right: 0;
  width: min(35vw, 420px);
  margin: 0;
}

.hero-product__phone {
  position: relative;
  width: 100%;
}

.hero-product .device {
  padding: 8px;
  border-radius: 56px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .32),
    inset 0 0 0 1px rgba(255, 255, 255, .1),
    0 4px 10px rgba(0, 0, 0, .48),
    0 32px 72px rgba(2, 4, 14, .52),
    0 90px 180px rgba(2, 4, 14, .64);
}

.hero-product .device__screen { border-radius: 47px; }

@media (prefers-reduced-motion: no-preference) {
  .hero-copy {
    animation: hero-copy-in .72s cubic-bezier(.2, .78, .2, 1) both;
  }

  .hero-product__phone {
    animation: hero-phone-in .9s .08s cubic-bezier(.18, .78, .18, 1) both;
  }
}

@keyframes hero-copy-in {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes hero-phone-in {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}

.signal-strip {
  position: relative;
  z-index: 4;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  background: rgba(7, 9, 20, .92);
}

.signal-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.signal-grid p {
  min-width: 0;
  margin: 0;
  padding: 24px clamp(18px, 2.4vw, 32px);
  border-left: 1px solid rgba(255, 255, 255, .1);
}

.signal-grid p:last-child { border-right: 1px solid rgba(255, 255, 255, .1); }

.signal-grid strong,
.signal-grid span { display: block; }

.signal-grid strong {
  color: #fffdf9;
  font-family: var(--display);
  font-size: 1.45rem;
  font-style: italic;
  font-weight: 400;
  line-height: 1.1;
}

.signal-grid span {
  margin-top: 4px;
  color: var(--on-dark-faint);
  font-size: .72rem;
  font-weight: 500;
  line-height: 1.45;
}

.faq-list {
  display: grid;
  gap: 0;
  max-width: 780px;
  margin-inline: auto;
  border-top: 1px solid rgba(255, 255, 255, .12);
}

.faq-list details {
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 4px;
  font-size: 1.02rem;
  font-weight: 500;
  cursor: pointer;
  list-style: none;
}
.faq-list summary::-webkit-details-marker { display: none; }

.faq-list summary::after {
  flex: none;
  color: var(--gold);
  font-size: 1.3rem;
  font-weight: 300;
  line-height: 1;
  content: "+";
  transition: transform .2s ease;
}
.faq-list details[open] summary::after {
  content: "−";
}

@media (hover: hover) {
  .faq-list summary:hover { color: var(--gold); }
}

.faq-list p {
  max-width: 68ch;
  margin: 0 0 22px;
  padding: 0 4px;
  color: var(--on-dark-muted);
  font-size: .95rem;
  font-weight: 300;
  line-height: 1.75;
}

.aurora-switch {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.aurora-switch__label {
  width: 100%;
  color: var(--on-dark-faint);
  font-family: var(--mono);
  font-size: .67rem;
  font-weight: 500;
  letter-spacing: .13em;
  text-align: center;
  text-transform: uppercase;
}

.swatch {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 15px 8px 9px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 999px;
  background: rgba(255, 255, 255, .07);
  color: var(--on-dark-muted);
  font-family: var(--sans);
  font-size: .76rem;
  font-weight: 500;
  cursor: pointer;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
@media (hover: hover) {
  .swatch:hover { background: rgba(255, 255, 255, .13); color: var(--on-dark); }
}
.swatch[aria-pressed="true"] {
  border-color: rgba(230, 181, 102, .55);
  background: rgba(230, 181, 102, .16);
  color: var(--on-dark);
}
.swatch i {
  width: 17px;
  height: 17px;
  border-radius: 50%;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .22);
}

.index-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.index-list li {
  padding: 16px 0 18px;
  border-top: 1px solid rgba(255, 255, 255, .1);
}
.index-list li:last-child { border-bottom: 1px solid rgba(255, 255, 255, .1); }

.index-list__row {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 6px 12px;
}

.index-list__name {
  font-family: var(--display);
  font-size: clamp(1.28rem, 1.9vw, 1.55rem);
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.2;
}

.index-list__tag {
  padding: 4px 10px;
  border: 1px solid rgba(230, 181, 102, .28);
  border-radius: 999px;
  background: rgba(230, 181, 102, .08);
  color: var(--gold);
  font-family: var(--mono);
  font-size: .64rem;
  font-weight: 500;
  letter-spacing: .075em;
  text-transform: uppercase;
  white-space: nowrap;
}

.index-list p {
  max-width: 52ch;
  margin: 9px 0 0;
  color: var(--on-dark-muted);
  font-size: .91rem;
  font-weight: 300;
  line-height: 1.65;
}

.loop-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(30px, 4vw, 60px);
}

.loop-list {
  margin: 0;
  padding: 0;
  counter-reset: loop;
  list-style: none;
}

.loop-list li {
  position: relative;
  padding: 22px 0 26px 54px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  counter-increment: loop;
}
.loop-list li:last-child { border-bottom: 1px solid rgba(255, 255, 255, .12); }

.loop-list li::before {
  position: absolute;
  top: 16px;
  left: 0;
  color: var(--gold);
  font-family: var(--display);
  font-size: 1.7rem;
  font-style: italic;
  font-weight: 400;
  line-height: 1;
  content: counter(loop);
}

.loop-list h3 {
  margin: 0 0 7px;
  font-size: 1.05rem;
  font-weight: 600;
}

.loop-list p {
  margin: 0;
  color: var(--on-dark-muted);
  font-size: .92rem;
  font-weight: 300;
  line-height: 1.7;
}

.shot {
  position: relative;
  width: min(100%, 336px);
  margin-inline: auto;
}

.shot::before {
  position: absolute;
  z-index: 0;
  inset: -14% -22% -10%;
  background:
    radial-gradient(58% 42% at 50% 34%, color-mix(in srgb, var(--au-a) 52%, transparent), color-mix(in srgb, var(--au-a) 18%, transparent) 50%, transparent 78%),
    radial-gradient(52% 38% at 62% 68%, color-mix(in srgb, var(--au-c) 38%, transparent), color-mix(in srgb, var(--au-c) 12%, transparent) 50%, transparent 80%);
  opacity: .85;
  pointer-events: none;
  content: "";
}

.device {
  position: relative;
  z-index: 1;
  padding: 7px;
  border-radius: 44px;

  background: linear-gradient(150deg, #2b2d3d 0%, #14151f 38%, #0d0e16 70%, #1c1e2b 100%);
  box-shadow:

    inset 0 1px 0 rgba(255, 255, 255, .30),
    inset 0 0 0 1px rgba(255, 255, 255, .09),

    0 2px 4px rgba(0, 0, 0, .5),
    0 18px 34px rgba(2, 4, 14, .46),
    0 44px 88px rgba(2, 4, 14, .55);
}

.device__screen {
  position: relative;
  overflow: hidden;
  border-radius: 37px;
  background: var(--ink);
  container-type: inline-size;
}

.device__screen img {
  width: 100%;
  height: auto;
}

.paper-band {
  border-block: 1px solid rgba(10, 12, 22, .12);
  background: #f1eee7;
  color: #11131d;
}

.paper-band .eyebrow { color: #8a5d23; }
.paper-band .display { color: #11131d; }
.paper-band .lede,
.paper-band .sense-list p { color: rgba(17, 19, 29, .7); }

.paper-band .sense-list li {
  border-color: rgba(17, 19, 29, .13);
}

.paper-band .sense-list li::before { color: #9b6527; }

.language-specimens {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: clamp(38px, 5vw, 62px) 0 clamp(34px, 4vw, 52px);
  border-block: 1px solid rgba(17, 19, 29, .14);
}

.language-specimens p {
  min-width: 0;
  margin: 0;
  padding: clamp(24px, 3vw, 38px);
  border-left: 1px solid rgba(17, 19, 29, .14);
}

.language-specimens p:last-child {
  border-right: 1px solid rgba(17, 19, 29, .14);
}

.language-specimens span,
.language-specimens strong,
.language-specimens small { display: block; }

.language-specimens span {
  color: #8a5d23;
  font-family: var(--mono);
  font-size: .67rem;
  font-weight: 600;
  line-height: 1.4;
  text-transform: uppercase;
}

.language-specimens strong {
  margin-top: 10px;
  color: #11131d;
  font-family: var(--display);
  font-size: clamp(2rem, 3.3vw, 3.15rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1;
  overflow-wrap: anywhere;
}

.language-specimens p:nth-child(2) strong {
  font-family: "Apple SD Gothic Neo", "Noto Sans KR", var(--sans);
  font-style: normal;
  font-weight: 500;
}

.language-specimens small {
  margin-top: 12px;
  color: rgba(17, 19, 29, .62);
  font-size: .78rem;
  font-weight: 500;
  line-height: 1.5;
}

.device__screen::after {
  position: absolute;
  z-index: 2;
  inset: 0;
  background: linear-gradient(114deg,
    rgba(255, 255, 255, .10) 0%,
    rgba(255, 255, 255, .04) 18%,
    transparent 42%,
    transparent 100%);
  pointer-events: none;
  content: "";
}

.shot::after {
  position: absolute;
  z-index: 0;
  right: 8%;
  bottom: -26px;
  left: 8%;
  height: 46px;
  background: radial-gradient(50% 50% at 50% 50%, rgba(2, 3, 10, .55), rgba(2, 3, 10, .2) 55%, transparent 100%);
  pointer-events: none;
  content: "";
}

.shot--sticky { position: sticky; top: 104px; }

.mix {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);

  gap: 0 clamp(28px, 4vw, 56px);
  align-items: start;
  margin: clamp(46px, 5vw, 74px) 0 0;
  padding: clamp(26px, 3vw, 38px) clamp(28px, 3.4vw, 44px);
  border: 1px solid var(--hairline);
  border-radius: var(--card-radius);
  background: linear-gradient(to bottom, rgba(14, 15, 24, .7), rgba(14, 15, 24, .84));
}

.mix__head { margin: 0; }

.mix__claim {
  margin: 14px 0 0;
  text-wrap: balance;
  font-family: var(--display);
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  font-style: italic;
  line-height: 1.24;
}

.mix__lede {
  margin: 16px 0 0;
  color: var(--on-dark-muted);
  font-size: .94rem;
  font-weight: 300;
  line-height: 1.7;
  text-wrap: pretty;
}

.mix__demo { padding-top: 2px; }

.mix__bands {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mix__band {
  display: grid;
  grid-template-columns: 7.6rem max-content auto;
  gap: clamp(12px, 1.6vw, 20px);
  align-items: center;
  padding: 10px 0;
}
.mix__band + .mix__band { border-top: 1px solid rgba(255, 255, 255, .07); }

.mix__name {
  font-family: var(--mono);
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.mix__dots {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.mix__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .12);
  transition: background .32s ease, box-shadow .32s ease, transform .32s ease;
}

.mix__dot.is-on {
  background: var(--gold);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--gold) 14%, transparent);
}

.mix__band[data-band="2"] .mix__dot.is-on { background: color-mix(in srgb, var(--gold) 78%, #fff); }
.mix__band[data-band="0"] .mix__dot.is-on { background: color-mix(in srgb, var(--gold) 74%, transparent); }

.mix__count {
  color: var(--on-dark-faint);
  font-family: var(--mono);
  font-size: .72rem;
  white-space: nowrap;
}
.mix__count b {
  color: var(--on-dark);
  font-weight: 600;
}

.mix__control {
  display: block;
  margin-top: clamp(20px, 2.4vw, 28px);
}

.mix__control-label {
  display: block;
  margin-bottom: 12px;
  color: var(--on-dark-faint);
  font-family: var(--mono);
  font-size: .7rem;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.mix__range {
  width: 100%;
  height: 40px;
  margin: 0;
  background: transparent;
  -webkit-appearance: none;
  appearance: none;
  touch-action: pan-y;
  cursor: grab;
}
.mix__range:active { cursor: grabbing; }

.mix__range::-webkit-slider-runnable-track {
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(to right,
    color-mix(in srgb, var(--gold) 58%, transparent),
    color-mix(in srgb, var(--gold) 20%, transparent));
}
.mix__range::-moz-range-track {
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(to right,
    color-mix(in srgb, var(--gold) 58%, transparent),
    color-mix(in srgb, var(--gold) 20%, transparent));
}

.mix__range::-webkit-slider-thumb {
  width: 20px;
  height: 20px;
  margin-top: -9px;
  border: 3px solid var(--gold);
  border-radius: 50%;
  background: var(--ink);
  box-shadow: 0 0 0 5px color-mix(in srgb, var(--gold) 12%, transparent);
  -webkit-appearance: none;
  appearance: none;
}
.mix__range::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border: 3px solid var(--gold);
  border-radius: 50%;
  background: var(--ink);
  box-shadow: 0 0 0 5px color-mix(in srgb, var(--gold) 12%, transparent);
}

.mix__scale {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  color: var(--on-dark-faint);
  font-family: var(--mono);
  font-size: .68rem;
  letter-spacing: .03em;
}
.mix__scale span:nth-child(2) { transform: translateX(-8%); }

.mix__evidence {
  grid-column: 1 / -1;
  margin-top: clamp(20px, 2.4vw, 28px);
  padding-top: clamp(18px, 2.2vw, 24px);
  border-top: 1px solid rgba(255, 255, 255, .1);
}

.mix__evidence-label {
  margin: 0 0 14px;
  color: var(--on-dark-faint);
  font-family: var(--mono);
  font-size: .7rem;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.mix__weights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px clamp(18px, 2.4vw, 34px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.mix__weights li {
  display: flex;
  gap: 9px;
  align-items: baseline;
  color: var(--on-dark-muted);
  font-size: .9rem;
  font-weight: 300;
}

.mix__weights b {
  color: var(--gold);
  font-family: var(--mono);
  font-size: .84rem;
  font-weight: 600;
}

@media (max-width: 900px) {
  .mix {
    grid-template-columns: minmax(0, 1fr);
    gap: clamp(22px, 3vw, 30px);
  }
  .mix__demo {
    padding-top: clamp(20px, 2.4vw, 26px);
    border-top: 1px solid rgba(255, 255, 255, .1);
  }
}

@media (max-width: 760px) {
  .mix__band {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px 14px;
  }

  .mix__dots {
    order: 3;
    grid-column: 1 / -1;
    flex-wrap: nowrap;
    gap: 6px;
  }
  .mix__dot {
    width: 8px;
    height: 8px;
  }
  .mix__dot.is-on { box-shadow: 0 0 0 2px color-mix(in srgb, var(--gold) 14%, transparent); }
}

.sense-list {
  margin: 0;
  padding: 0;
  counter-reset: sense;
  list-style: none;
}

.sense-list li {
  display: grid;
  grid-template-columns: 26px minmax(0, 1fr);
  gap: 0 14px;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, .1);
  counter-increment: sense;
}
.sense-list li:last-child { border-bottom: 1px solid rgba(255, 255, 255, .1); }

.sense-list li::before {
  color: var(--gold);
  font-family: var(--mono);
  font-size: .8rem;
  font-weight: 500;
  line-height: 1.5;
  content: counter(sense);
}

.sense-list h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 1.22rem;
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.25;
}

.sense-list p {
  grid-column: 2;
  max-width: 54ch;
  margin: 5px 0 0;
  color: var(--on-dark-muted);
  font-size: .9rem;
  font-weight: 300;
  line-height: 1.7;
}

.sense-list--split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: clamp(30px, 5vw, 72px);
}
.sense-list--split li:last-child { border-bottom: 0; }
.sense-list--split li:nth-last-child(-n+2) {
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

@media (max-width: 760px) {
  .sense-list--split { grid-template-columns: minmax(0, 1fr); }
  .sense-list--split li:nth-last-child(-n+2) { border-bottom: 0; }
  .sense-list--split li:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, .1);
  }
}

.promise {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(26px, 4vw, 56px);
  padding: clamp(34px, 4.4vw, 54px);
}

.promise h2 {
  margin: 0 0 14px;
  font-family: var(--display);
  font-size: clamp(1.9rem, 3.2vw, 2.7rem);
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.1;
}
.promise p {
  max-width: 54ch;
  margin: 0;
  color: var(--on-dark-muted);
  font-size: .96rem;
  font-weight: 300;
  line-height: 1.75;
}

.closing { text-align: center; }
.closing .display { margin-inline: auto; max-width: 15ch; }
.closing .lede { margin: 24px auto 0; }
.closing .hero-actions { justify-content: center; margin-top: 36px; }

.site-footer {
  padding: 44px 0 calc(44px + env(safe-area-inset-bottom));
  border-top: 1px solid rgba(255, 255, 255, .1);
}

.footer-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px 30px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 26px;
  font-size: .84rem;
}
.footer-links a {
  color: var(--on-dark-faint);
  text-decoration: none;
}
@media (hover: hover) {
  .footer-links a:hover { color: var(--on-dark); }
}

.footer-note {
  width: 100%;
  margin: 0;
  color: var(--on-dark-faint);
  font-size: .78rem;
  font-weight: 300;
}

.footer-note a {
  color: inherit;
  text-decoration-color: rgba(230, 181, 102, .55);
  text-underline-offset: 3px;
  transition: color .18s ease, text-decoration-color .18s ease;
}

@media (hover: hover) {
  .footer-note a:hover {
    color: var(--on-dark);
    text-decoration-color: var(--gold);
  }
}

.legal-hero { padding-bottom: clamp(30px, 4vw, 44px); }
.legal-hero .lede { margin-top: 24px; }

.legal-hero .legal-callout { max-width: 64ch; }

.legal-meta {
  margin: 26px 0 0;
  color: var(--gold);
  font-family: var(--mono);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .06em;
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(0, 224px) minmax(0, 1fr);
  align-items: start;
  gap: clamp(34px, 5vw, 70px);
  padding-bottom: clamp(72px, 9vw, 120px);
}

.legal-nav {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 1px;
}

.legal-nav__title {
  margin: 0 0 14px;
  padding-left: 13px;
  color: var(--on-dark-faint);
  font-family: var(--mono);
  font-size: .64rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.legal-nav a {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 10px;
  padding: 7px 10px 7px 12px;
  border-left: 2px solid transparent;
  color: var(--on-dark-faint);
  font-size: .82rem;
  font-weight: 400;
  line-height: 1.4;
  text-decoration: none;
  transition: color .18s ease, border-color .18s ease;
}
.legal-nav a span {
  color: rgba(255, 255, 255, .35);
  font-family: var(--mono);
  font-size: .72rem;
  transition: color .18s ease;
}

.legal-nav a:focus-visible { color: var(--on-dark); }

@media (hover: hover) {
  .legal-nav a:hover { color: var(--on-dark); }
  .legal-nav a:hover span { color: var(--on-dark-faint); }
}

.legal-nav a[aria-current="true"] {
  border-left-color: var(--gold);
  color: var(--on-dark);
}
.legal-nav a[aria-current="true"] span { color: var(--gold); }

.legal-content { max-width: 74ch; }

.legal-content section {
  padding: 0;
  scroll-margin-top: 100px;
}
.legal-content section + section { margin-top: clamp(46px, 5.5vw, 74px); }

.clause-no {
  display: block;
  margin-bottom: 12px;
  color: var(--gold);
  font-family: var(--mono);
  font-size: .74rem;
  font-weight: 500;
  letter-spacing: .1em;
}

.legal-content h2 {
  margin: 0 0 18px;
  font-family: var(--display);
  font-size: clamp(1.9rem, 3.4vw, 2.7rem);
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.1;
}

.legal-content h3 {
  margin: 34px 0 12px;
  font-size: 1.04rem;
  font-weight: 600;
}

.legal-content p,
.legal-content li {
  color: var(--on-dark-muted);
  font-size: .95rem;
  font-weight: 300;
  line-height: 1.78;
}
.legal-content p { margin: 0 0 16px; }
.legal-content strong { color: var(--on-dark); font-weight: 600; }

.legal-content ul {
  margin: 0 0 18px;
  padding-left: 20px;
}
.legal-content li { margin-bottom: 7px; }
.legal-content li::marker { color: rgba(230, 181, 102, .7); }

.legal-content a {
  color: var(--gold);
  font-weight: 500;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.legal-callout {
  margin: 26px 0 0;
  padding: 24px 26px;
  border: 1px solid rgba(230, 181, 102, .3);
  border-radius: 22px;
  background: rgba(230, 181, 102, .09);
  color: rgba(255, 255, 255, .92);
  font-family: var(--display);
  font-size: 1.2rem;
  font-style: italic;
  line-height: 1.45;
}
.legal-callout strong { font-weight: 400; }

.table-scroll {
  margin: 24px 0 20px;
  overflow-x: auto;
  border: 1px solid var(--hairline);
  border-radius: 20px;
}

.legal-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .86rem;
  text-align: left;
}
.legal-table th {
  padding: 15px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, .14);
  background: rgba(255, 255, 255, .05);
  color: var(--gold);
  font-family: var(--mono);
  font-size: .66rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  white-space: nowrap;
}
.legal-table td {
  padding: 16px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  color: var(--on-dark-muted);
  font-weight: 300;
  line-height: 1.65;
  vertical-align: top;
}
.legal-table tr:last-child td { border-bottom: 0; }
.legal-table td:first-child {
  min-width: 150px;
  color: var(--on-dark);
  font-weight: 500;
}

.legal-rights {
  margin: 24px 0 20px;
  padding: 0;
  list-style: none;
}
.legal-rights li {
  display: grid;
  grid-template-columns: minmax(0, 168px) minmax(0, 1fr);
  gap: 6px 24px;
  margin: 0;
  padding: 15px 0;
  border-top: 1px solid rgba(255, 255, 255, .12);
}
.legal-rights li:last-child { border-bottom: 1px solid rgba(255, 255, 255, .12); }
.legal-rights strong {
  color: var(--gold);
  font-family: var(--mono);
  font-size: .69rem;
  font-weight: 500;
  letter-spacing: .07em;
  line-height: 1.9;
  text-transform: uppercase;
}
.legal-rights span {
  color: var(--on-dark-muted);
  font-size: .93rem;
  font-weight: 300;
  line-height: 1.7;
}

.legal-footer {
  margin-top: 26px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, .1);
  color: var(--on-dark-faint) !important;
  font-size: .84rem;
}

.error-page {
  display: flex;
  min-height: 100svh;
  flex-direction: column;
}

.error-page main {
  display: grid;
  flex: 1;
}

.error-page .closing {
  display: grid;
  align-content: center;
}

@media (max-width: 1000px) {
  .hero-copy { width: min(62%, 600px); }
  .hero-product {
    top: 72px;
    right: -18px;
    width: min(38vw, 350px);
  }
  .promise { grid-template-columns: minmax(0, 1fr); }
  .legal-layout { grid-template-columns: minmax(0, 1fr); }

  .legal-nav { position: static; display: flex; flex-wrap: wrap; gap: 6px; }
  .legal-nav__title { width: 100%; padding-left: 0; margin-bottom: 8px; }

  .legal-nav a {
    display: inline-flex;
    align-items: baseline;
    gap: 7px;
    padding: 7px 13px;
    border: 1px solid var(--hairline);
    border-left-width: 1px;
    border-radius: 999px;
  }
  .legal-nav a span:empty { display: none; }
  .legal-nav a[aria-current="true"] {
    border-color: rgba(230, 181, 102, .45);
    border-left-color: rgba(230, 181, 102, .45);
  }
}

@media (max-width: 900px) {
  .nav { gap: 12px; }

  .nav > .btn {
    order: 2;
    margin-left: auto;
  }

  .nav-toggle {
    display: inline-grid;
    order: 3;
    flex: 0 0 auto;
    margin-left: 0;
    border-color: transparent;
    background: transparent;
  }

  .nav-toggle[aria-expanded="true"] {
    border-color: rgba(255, 255, 255, .12);
    background: rgba(255, 255, 255, .07);
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 14px);
    right: 0;
    left: 0;
    display: grid;
    gap: 0;
    padding: 8px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 8px;
    background: rgba(8, 10, 22, .98);
    box-shadow: 0 22px 54px rgba(2, 4, 14, .52);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    pointer-events: none;
    transition: opacity .18s ease, visibility .18s ease, transform .18s ease;
  }

  .nav-links a {
    min-height: 44px;
    padding: 11px 12px;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    color: var(--on-dark-muted);
  }

  .nav-links a:last-child { border-bottom: 0; }
  .nav-links a::after { display: none; }

  .site-header.menu-open {
    border-bottom-color: rgba(255, 255, 255, .09);
    background: rgba(8, 10, 22, .96);
  }

  .site-header.menu-open .nav-links {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }
}

@media (max-width: 599px) {
  .loop-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 40px;
  }

  .loop-grid > .shot {
    order: 2;
    width: min(76vw, 260px);
  }

  .shot--sticky { position: static; }
}

@media (max-width: 720px) {
  :root { --gutter: 20px; --card-radius: 26px; }

  .btn--small { min-height: 44px; }

  section { padding-block: 50px; }

  .hero {
    min-height: 700px;
    padding: 0;
  }

  .hero-shell {
    min-height: 700px;
    align-items: flex-start;
    padding-block: 28px 0;
  }

  .hero-copy { width: 100%; }

  .hero-copy .eyebrow { margin-bottom: 14px; }

  .hero-brand {
    font-size: 4.75rem;
    line-height: .82;
  }

  .hero-statement {
    max-width: 9ch;
    margin-top: 16px;
    font-size: 2.55rem;
    line-height: .95;
  }

  .hero .lede {
    max-width: 35ch;
    margin-top: 18px;
    font-size: .94rem;
    line-height: 1.65;
  }

  .hero-actions { margin-top: 22px; }

  .hero .quiet-link { display: none; }

  .hero-product {
    top: 500px;
    right: auto;
    left: 50%;
    width: min(230px, calc(100vw - 48px));
    transform: translateX(-50%);
  }

  .hero-product .device {
    padding: 6px;
    border-radius: 36px;
  }

  .hero-product .device__screen { border-radius: 30px; }

  .signal-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 24px;
    padding-block: 12px;
  }

  .signal-grid p {
    padding: 14px 0 16px;
    border-left: 0;
  }

  .signal-grid p:nth-child(n+3) { border-top: 1px solid rgba(255, 255, 255, .1); }
  .signal-grid p:last-child { border-right: 0; }

  .signal-grid strong { font-size: 1.35rem; }

  .language-specimens { grid-template-columns: minmax(0, 1fr); }

  .language-specimens p {
    padding: 22px 0;
    border-left: 0;
  }

  .language-specimens p + p { border-top: 1px solid rgba(17, 19, 29, .14); }
  .language-specimens p:last-child { border-right: 0; }

  .language-specimens strong { font-size: 2.25rem; }

  .aurora-switch { gap: 8px; }
  .swatch { min-height: 44px; }

  .hero-actions .btn {
    width: auto;
    max-width: 100%;
  }
  .closing .btn { width: 100%; }
  .hero-actions { gap: 14px; }

  .loop-grid { gap: 36px; }
  .shot { width: 100%; }
  .shot::before { inset: -8% 0 -6%; }

  .loop-list li { padding-left: 42px; }
  .loop-list li::before { font-size: 1.45rem; }

  .mix { padding: 24px 20px; }

  .promise { padding: 28px 22px; }
  .promise .btn { width: 100%; }

  .legal-nav {
    flex-wrap: nowrap;
    gap: 8px;
    margin-inline: calc(var(--gutter) * -1);
    padding: 0 var(--gutter) 8px;
    overflow-x: auto;
    scrollbar-width: none;
  }
  .legal-nav::-webkit-scrollbar { display: none; }
  .legal-nav__title { display: none; }
  .legal-nav a { flex: 0 0 auto; min-height: 44px; align-items: center; }

  .legal-rights li { grid-template-columns: minmax(0, 1fr); gap: 4px; }
  .legal-rights strong { line-height: 1.4; }

  .footer-row { flex-direction: column; align-items: flex-start; }
}

@media (min-width: 560px) and (max-width: 900px) {
  :root { --gutter: 24px; }

  .hero,
  .hero-shell { min-height: 700px; }

  .hero-shell {
    --hero-phone-width: clamp(234px, 42vw, 268px);
    align-items: flex-start;
    padding-block: 36px 0;
  }

  .hero-copy {
    width: min(calc(100% - var(--hero-phone-width) - 20px), 500px);
  }

  .hero-brand {
    font-size: clamp(4.1rem, 9vw, 5.4rem);
    line-height: .82;
  }

  .hero-statement {
    max-width: 8.8em;
    margin-top: 16px;
    font-size: clamp(2.15rem, 4.8vw, 2.7rem);
    line-height: .96;
  }

  .hero .lede {
    max-width: 36ch;
    margin-top: 18px;
    font-size: .9rem;
    line-height: 1.68;
  }

  .hero-actions { margin-top: 24px; }

  .hero-actions .btn,
  .closing .btn {
    width: auto;
  }

  .hero .quiet-link { display: none; }

  .hero-theme {
    display: grid;
    justify-items: start;
    gap: 10px;
    margin-top: 24px;
  }

  .hero-theme .aurora-switch__label { width: 100%; }

  .hero-product {
    top: 140px;
    right: 0;
    left: auto;
    width: var(--hero-phone-width);
    transform: none;
  }

  .language-specimens { grid-template-columns: repeat(3, minmax(0, 1fr)); }

  .language-specimens p {
    padding: 24px 14px;
    border-left: 1px solid rgba(17, 19, 29, .14);
  }

  .language-specimens p + p { border-top: 0; }
  .language-specimens p:last-child { border-right: 1px solid rgba(17, 19, 29, .14); }
  .language-specimens strong { font-size: clamp(1.55rem, 4vw, 2.2rem); }
}

@media (max-width: 559px) {
  .hero,
  .hero-shell { min-height: 0; }

  .hero-shell {
    flex-direction: column;
    align-items: stretch;
    padding-block: 24px 0;
  }

  .hero-copy { text-align: center; }

  .hero-copy .eyebrow {
    justify-content: center;
    margin-bottom: 12px;
  }

  .hero-copy .eyebrow::after { display: none; }

  .hero-brand {
    font-size: 4.2rem;
    line-height: .84;
  }

  .hero-statement {
    max-width: 10em;
    margin: 14px auto 0;
    font-size: 2.25rem;
    line-height: .98;
  }

  .hero .lede {
    max-width: 32ch;
    margin: 16px auto 0;
    font-size: .9rem;
    line-height: 1.62;
  }

  .hero .hero-actions {
    justify-content: center;
    margin-top: 20px;
  }

  .hero-theme {
    display: grid;
    justify-items: center;
    gap: 8px;
    margin-top: 18px;
  }

  .hero-theme .aurora-switch__label {
    width: 100%;
    text-align: center;
  }

  .hero-theme .aurora-switch {
    flex-wrap: nowrap;
    justify-content: center;
    gap: 8px;
  }

  .hero-theme .swatch {
    width: 44px;
    height: 44px;
    min-height: 44px;
    padding: 0;
    justify-content: center;
    gap: 0;
    font-size: 0;
  }

  .hero-theme .swatch i {
    width: 20px;
    height: 20px;
  }

  .hero-product {
    position: relative;
    top: auto;
    right: auto;
    left: auto;
    width: min(226px, calc(100vw - 48px));
    height: 264px;
    margin: 14px auto 0;
    transform: none;
  }
}

@media (max-width: 340px) {
  .nav { gap: 8px; }
  .brand { font-size: 1.3rem; }
  .nav > .btn { padding-inline: 12px; font-size: .72rem; }
  .nav > .btn .btn__play { display: none; }

  .hero-brand { font-size: 4.05rem; }

  .hero-statement {
    max-width: 10em;
    font-size: 2.15rem;
  }

  .hero .lede { font-size: .86rem; }

  .signal-grid { column-gap: 16px; }
  .signal-grid span {
    font-size: .68rem;
    overflow-wrap: anywhere;
  }
}

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