@font-face {
  font-family: "Satoshi";
  src: url("/fonts/Satoshi-Variable.woff2") format("woff2");
  font-weight: 300 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #ffffff;
  --bg-tint: #f5f5f7;
  --text: #1d1d1f;
  --text-muted: #86868b;
  --link: #0066cc;
  --link-hover: #0077ed;
  --border: #d2d2d7;
  --nav-bg: rgba(255, 255, 255, 0.72);
  --phone-shadow: 0 28px 80px rgba(0, 0, 0, 0.18), 0 8px 24px rgba(0, 0, 0, 0.08);
  --font-brand: "Satoshi", "SF Pro Display", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-display: "SF Pro Display", "SF Pro Text", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-body: "SF Pro Text", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, Arial, sans-serif;
  --gutter: clamp(1.25rem, 4vw, 2.75rem);
  --max: 61.25rem;
  --nav-h: 2.75rem;
  --ease-out: cubic-bezier(0.25, 0.1, 0.25, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100%;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.47;
  letter-spacing: -0.014em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--text);
  color: #fff;
  padding: 0.75rem 1rem;
  z-index: 1000;
}

.skip-link:focus {
  left: var(--gutter);
  top: 0.75rem;
}

.wordmark {
  font-family: var(--font-brand);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1;
  text-transform: lowercase;
  white-space: nowrap;
  color: var(--text);
}

.wordmark--hero {
  font-size: clamp(3.5rem, 11vw, 5.5rem);
  margin: 0 0 0.35rem;
}

.wordmark--closing {
  font-size: clamp(2.25rem, 6vw, 3.25rem);
  margin: 0.35rem 0 0.75rem;
}

.wordmark--footer {
  font-size: 1.15rem;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--nav-h);
  background: var(--nav-bg);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.nav__inner {
  width: min(100%, 61.25rem);
  height: 100%;
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.nav .wordmark {
  font-size: 1.2rem;
}

.nav__links {
  display: none;
  gap: 1.75rem;
  font-size: 0.75rem;
  color: var(--text);
}

.nav__links a:hover {
  color: var(--text-muted);
}

.nav__cta {
  font-size: 0.75rem;
  color: var(--link);
}

.nav__cta:hover {
  color: var(--link-hover);
  text-decoration: underline;
}

@media (min-width: 734px) {
  .nav__links {
    display: flex;
  }
}

.hero {
  position: relative;
  overflow: clip;
  background:
    radial-gradient(ellipse 70% 45% at 50% 0%, rgba(201, 168, 76, 0.08), transparent 60%),
    linear-gradient(180deg, #ffffff 0%, #fbfbfd 55%, #f5f5f7 100%);
  padding: 3.5rem var(--gutter) 0;
  text-align: center;
}

.hero__copy {
  width: min(100%, 42rem);
  margin: 0 auto;
}

.hero__headline {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4.5vw, 2.75rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text);
}

.hero__lede {
  margin: 1rem auto 0;
  max-width: 28rem;
  color: var(--text-muted);
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  font-weight: 400;
  line-height: 1.4;
}

.hero__cta {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.hero__note {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.hero__stage {
  margin-top: 2.75rem;
  display: flex;
  justify-content: center;
  padding-bottom: 0;
}

.store-badge {
  display: inline-block;
  transition: transform 0.25s var(--ease-out), opacity 0.25s ease;
}

.store-badge:hover {
  transform: scale(1.03);
  opacity: 0.92;
}

.store-badge img {
  width: 168px;
  height: auto;
}

.phone {
  width: min(100%, 17.5rem);
  margin: 0 auto;
  filter: drop-shadow(var(--phone-shadow));
}

.phone--hero {
  width: min(100%, 19.5rem);
}

.phone__bezel {
  position: relative;
  background: #1d1d1f;
  border-radius: 2.4rem;
  padding: 0.55rem;
  border: 1px solid #3a3a3c;
}

.phone__notch {
  position: absolute;
  top: 0.75rem;
  left: 50%;
  z-index: 2;
  width: 5.5rem;
  height: 1.35rem;
  transform: translateX(-50%);
  background: #0b0b0f;
  border-radius: 999px;
}

.phone__screen {
  width: 100%;
  height: auto;
  border-radius: 1.9rem;
  background: #0b0b0f;
}

.values {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 5rem var(--gutter) 4.5rem;
  text-align: center;
}

.values__title {
  margin: 0 0 2.5rem;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.12;
  color: var(--text);
}

.values__grid {
  display: grid;
  gap: 2.25rem;
}

.value__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--text);
}

.value__copy {
  margin: 0.55rem auto 0;
  max-width: 18rem;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.4;
}

@media (min-width: 734px) {
  .values__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }

  .value__copy {
    max-width: none;
  }
}

.feature {
  display: grid;
  gap: 2.5rem;
  align-items: center;
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 5.5rem var(--gutter);
}

.feature--tint {
  width: 100%;
  max-width: none;
  background: var(--bg-tint);
  padding-left: max(var(--gutter), calc((100% - var(--max)) / 2 + var(--gutter)));
  padding-right: max(var(--gutter), calc((100% - var(--max)) / 2 + var(--gutter)));
}

.feature__copy {
  text-align: center;
}

.feature__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.12;
  color: var(--text);
}

.feature__lede {
  margin: 0.9rem auto 0;
  max-width: 28rem;
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.45;
}

.text-link {
  display: inline-block;
  margin-top: 1rem;
  color: var(--link);
  font-size: 1.05rem;
}

.text-link:hover {
  color: var(--link-hover);
  text-decoration: underline;
}

.feature__media {
  display: flex;
  justify-content: center;
}

@media (min-width: 900px) {
  .feature,
  .feature--tint,
  .feature--flip {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    text-align: left;
  }

  .feature__copy {
    text-align: left;
  }

  .feature__lede {
    margin-left: 0;
  }

  .feature--flip .feature__copy {
    order: 2;
  }

  .feature--flip .feature__media {
    order: 1;
  }

  .feature__media {
    justify-content: flex-end;
  }

  .feature--flip .feature__media {
    justify-content: flex-start;
  }
}

.closing {
  text-align: center;
  padding: 6rem var(--gutter) 5rem;
  background: var(--bg);
}

.closing__icon {
  width: 5.5rem;
  height: 5.5rem;
  margin: 0 auto;
  border-radius: 1.25rem;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.12);
}

.closing__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.12;
}

.closing__copy {
  margin: 0.85rem auto 1.5rem;
  max-width: 26rem;
  color: var(--text-muted);
  font-size: 1.05rem;
}

.site-footer {
  background: var(--bg-tint);
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.75rem;
}

.site-footer__inner {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 1.5rem var(--gutter) 2.5rem;
  display: grid;
  gap: 1rem;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.footer-nav a:hover {
  color: var(--text);
  text-decoration: underline;
}

.footer-copy {
  margin: 0;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border);
}

.reveal {
  opacity: 0;
  transform: translateY(1.5rem);
  transition:
    opacity 0.8s var(--ease-out),
    transform 0.8s var(--ease-out);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.hero__copy > * {
  opacity: 0;
  transform: translateY(0.75rem);
  animation: rise-in 0.85s var(--ease-out) forwards;
}

.hero__copy .wordmark--hero {
  animation-delay: 0.05s;
}

.hero__headline {
  animation-delay: 0.16s;
}

.hero__lede {
  animation-delay: 0.28s;
}

.hero__cta {
  animation-delay: 0.4s;
}

.reveal-phone {
  opacity: 0;
  transform: translateY(2rem);
  animation: phone-rise 1.1s var(--ease-out) 0.35s forwards;
}

@keyframes rise-in {
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes phone-rise {
  to {
    opacity: 1;
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero__copy > *,
  .reveal-phone,
  .reveal {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}
