@font-face {
  font-family: Inter;
  src: url("../fonts/Inter-400.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: Inter;
  src: url("../fonts/Inter-500.ttf") format("truetype");
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: Inter;
  src: url("../fonts/Inter-600.ttf") format("truetype");
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: Inter;
  src: url("../fonts/Inter-700.ttf") format("truetype");
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: Inter;
  src: url("../fonts/Inter-800.ttf") format("truetype");
  font-weight: 800;
  font-display: swap;
}

:root {
  --black: #111113;
  --ink: #161618;
  --muted: #5f5f68;
  --line: #ececef;
  --paper: #f5f5f7;
  --deal: #7a3e3e;
  --max: 1120px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

.wrap {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}

.progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0;
  background: #c45f5f;
  z-index: 50;
  transform-origin: left;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  background: #111113;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #fff;
  z-index: 2;
}

.brand img {
  width: 32px;
  height: 32px;
  border-radius: 8px;
}

.wordmark {
  font-weight: 800;
  letter-spacing: -0.05em;
  font-size: 1.2rem;
}

.nav-panel {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav-panel a {
  text-decoration: none;
  color: #c8c8d0;
  font-size: 0.92rem;
  font-weight: 500;
}

.nav-panel a:hover {
  color: #fff;
}

.nav-panel a.btn-solid {
  background: #fff;
  color: #111;
  padding: 8px 16px;
}

.menu-btn {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: transparent;
  border-radius: 10px;
  position: relative;
}

.menu-btn span {
  position: absolute;
  left: 11px;
  right: 11px;
  height: 1.5px;
  background: #fff;
}

.menu-btn span:first-child {
  top: 16px;
}
.menu-btn span:last-child {
  top: 24px;
}

.lang {
  display: flex;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  padding: 3px;
}

.lang button {
  border: 0;
  background: transparent;
  color: #b8b8c2;
  font: inherit;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 5px 9px;
  border-radius: 999px;
  cursor: pointer;
}

.lang button[aria-pressed="true"] {
  background: #fff;
  color: #111;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 600;
  font-size: 0.92rem;
  border: 1px solid transparent;
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-solid,
.nav-panel .btn-solid {
  background: var(--ink);
  color: #fff;
}

.btn-light {
  background: #fff;
  color: #111;
}

.btn-ghost {
  border-color: rgba(255, 255, 255, 0.28);
  color: #fff;
}

.hero {
  background:
    radial-gradient(700px 320px at 85% 10%, rgba(122, 62, 62, 0.22), transparent 60%),
    var(--black);
  color: #fff;
  padding: 48px 0 88px;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.kicker,
.eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #c45f5f;
  margin: 0 0 14px;
}

.eyebrow.light {
  color: #e8b4b4;
}

h1 {
  margin: 0;
  font-size: clamp(2.6rem, 5.8vw, 4.6rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
  font-weight: 800;
}

h1 .line {
  display: block;
  overflow: hidden;
}

h1 .line span {
  display: inline-block;
  animation: rise 0.9s cubic-bezier(0.16, 1, 0.3, 1) both;
}

h1 .line:nth-child(2) span {
  animation-delay: 0.1s;
}
h1 .line:nth-child(3) span {
  animation-delay: 0.2s;
}

.accent {
  color: #e8b4b4;
}

@keyframes rise {
  from {
    transform: translateY(110%);
  }
}

.lede {
  margin: 22px 0 28px;
  max-width: 34rem;
  color: #b8b8c2;
  font-size: 1.12rem;
}

.stores {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}

.store {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 168px;
  padding: 10px 16px 10px 12px;
  border-radius: 12px;
  background: #fff;
  color: #111;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.store svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.store small {
  display: block;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #666;
}

.store b {
  display: block;
  font-size: 1.02rem;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.store.is-soon {
  cursor: default;
  opacity: 0.92;
}

.store:not(.is-soon):hover {
  transform: translateY(-2px);
}

.soon-note {
  margin: 12px 0 0;
  font-size: 0.8rem;
  color: #8a8a96;
}

.cta-box .stores {
  justify-content: center;
  margin-top: 8px;
}

.stack {
  position: relative;
  height: 560px;
}

.device {
  background: #0a0a0c;
  border-radius: 32px;
  padding: 8px;
  box-shadow: 0 28px 50px rgba(0, 0, 0, 0.4);
  position: relative;
}

.device::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 50%;
  width: 72px;
  height: 14px;
  background: #0a0a0c;
  border-radius: 20px;
  transform: translateX(-50%);
  z-index: 2;
}

.device img {
  width: 100%;
  border-radius: 24px;
  display: block;
}

.stack .device {
  position: absolute;
  width: 220px;
  animation: float 6s ease-in-out infinite;
}

.s1 {
  left: 26%;
  top: 8px;
  z-index: 3;
}
.s2 {
  left: 0;
  top: 78px;
  z-index: 2;
  rotate: -9deg;
  animation-delay: -1.5s;
}
.s3 {
  right: 0;
  top: 96px;
  z-index: 1;
  rotate: 9deg;
  animation-delay: -3s;
}

@keyframes float {
  50% {
    translate: 0 -12px;
  }
}

.about {
  padding: 96px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.4fr 1fr;
  gap: 40px;
}

.prose h2 {
  margin: 0 0 20px;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  letter-spacing: -0.045em;
  line-height: 1.1;
}

.prose p {
  color: var(--muted);
  font-size: 1.08rem;
  margin: 0 0 16px;
  max-width: 40rem;
}

.app {
  padding: 0 0 96px;
}

.app-head {
  margin-bottom: 36px;
}

.app-head h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  letter-spacing: -0.045em;
}

.screens {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.screens figure {
  margin: 0;
}

.screens .device {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.screens figure:hover .device {
  transform: translateY(-12px);
}

.screens figcaption {
  margin-top: 18px;
}

.screens strong {
  display: block;
  font-size: 1.05rem;
  margin-bottom: 4px;
}

.screens figure.rise:nth-child(2) {
  animation-delay: 0.1s;
}
.screens figure.rise:nth-child(3) {
  animation-delay: 0.2s;
}

.screens span {
  color: var(--muted);
  font-size: 0.95rem;
}

.split-band {
  background: var(--paper);
  padding: 72px 0;
}

.duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.duo article {
  background: #fff;
  border-radius: 28px;
  padding: 36px;
}

.duo .dark {
  background: var(--black);
  color: #fff;
}

.duo h2 {
  margin: 0 0 12px;
  letter-spacing: -0.04em;
}

.duo p {
  color: var(--muted);
  margin: 0 0 20px;
}

.duo .dark p {
  color: #b8b8c2;
}

.cta {
  padding: 24px 0 88px;
  background: var(--paper);
}

.cta-box {
  text-align: center;
  background: var(--black);
  color: #fff;
  border-radius: 32px;
  padding: 64px 24px;
}

.cta-box h2 {
  margin: 0;
  letter-spacing: -0.04em;
}

.cta-box p {
  color: #b8b8c2;
  margin: 10px 0 22px;
}

.footer {
  padding: 28px 0 40px;
  color: var(--muted);
  font-size: 0.9rem;
}

.foot {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.foot a {
  text-decoration: none;
}

.foot a:hover {
  color: var(--ink);
}

.page-legal {
  background: #fff;
}

.legal {
  padding: 72px 0 120px;
  max-width: 720px;
}

.legal h1 {
  font-size: 2.4rem;
}

.legal p {
  color: var(--muted);
}

.rise {
  opacity: 0;
  transform: translateY(24px);
}

.rise.in {
  animation: up 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes up {
  to {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 900px) {
  .hero-grid,
  .about-grid,
  .screens,
  .duo {
    grid-template-columns: 1fr;
  }

  .stack {
    height: 420px;
  }

  .shot,
  .stack .device {
    width: 180px;
  }

  .s1 {
    left: 22%;
  }

  .menu-btn {
    display: block;
  }

  .nav-panel {
    display: none;
    position: fixed;
    inset: 0;
    background: #111113;
    flex-direction: column;
    justify-content: center;
    gap: 22px;
    font-size: 1.3rem;
  }

  body.menu-open .nav-panel {
    display: flex;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
  }

  .rise {
    opacity: 1;
    transform: none;
  }
}
