:root {
  color-scheme: dark;
  --ink-950: #0c0c0f;
  --ink-900: #121216;
  --ink-800: #1b1c20;
  --ink-700: #25262b;
  --ink-600: #31323a;
  --sand-050: #f4f1ea;
  --sand-200: #d7d0c4;
  --sand-400: #aea79a;
  --sand-600: #7a746b;
  --acid: #bff35a;
  --acid-strong: #d8ff7b;
  --acid-wash: #202a10;
  --gold: #f2b35c;
  --gold-strong: #ffd089;
  --gold-wash: #392c1e;
  --border: #3b3d45;
  --border-subtle: #2a2b31;
  --shadow: rgba(0, 0, 0, 0.42);
  --max-width: 1180px;
  font-family: ui-rounded, "SF Pro Rounded", "Avenir Next", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

#root {
  min-height: 100vh;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--sand-050);
  background:
    radial-gradient(circle at 18% 10%, rgba(191, 243, 90, 0.18), transparent 30rem),
    radial-gradient(circle at 92% 72%, rgba(242, 179, 92, 0.14), transparent 28rem),
    linear-gradient(135deg, #10140d 0%, var(--ink-950) 42%, #15120d 100%);
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(244, 241, 234, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244, 241, 234, 0.045) 1px, transparent 1px);
  background-size: 74px 74px;
  mask-image: linear-gradient(to bottom, black, transparent 88%);
}

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

button {
  cursor: default;
}

p {
  color: var(--sand-400);
  line-height: 1.7;
}

.site-header,
.site-footer,
.hero,
.screenshots,
.asset-showcase,
.support,
.legal-page {
  width: min(var(--max-width), calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  color: var(--acid-strong);
}

.brand__icon {
  width: 42px;
  height: 42px;
  border-radius: 13px;
  box-shadow: 0 14px 35px rgba(191, 243, 90, 0.16);
}

.nav {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px;
  border: 1px solid rgba(59, 61, 69, 0.82);
  border-radius: 999px;
  background: rgba(27, 28, 32, 0.72);
  backdrop-filter: blur(22px);
}

.nav a {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--sand-200);
  font-size: 0.92rem;
  font-weight: 750;
}

.nav a:hover,
.nav a[aria-current="page"],
.nav a.is-active {
  color: var(--ink-950);
  background: var(--acid-strong);
}

.app-view {
  animation: page-enter 420ms ease both;
}

@keyframes page-enter {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(330px, 0.76fr);
  align-items: center;
  gap: 54px;
  min-height: calc(100vh - 90px);
  padding: 56px 0 76px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--acid-strong);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  line-height: 0.98;
}

h1 {
  max-width: 760px;
  font-size: clamp(3.25rem, 8vw, 6.9rem);
  letter-spacing: -0.075em;
}

h2 {
  font-size: clamp(2.25rem, 5vw, 4.6rem);
  letter-spacing: -0.065em;
}

h3 {
  font-size: 1.4rem;
  letter-spacing: -0.035em;
}

.hero__text {
  max-width: 620px;
  margin: 24px 0 0;
  font-size: 1.16rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 22px;
  font-weight: 900;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

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

.button--primary {
  color: var(--ink-950);
  background: linear-gradient(135deg, var(--acid-strong), var(--acid));
  box-shadow: 0 22px 48px rgba(191, 243, 90, 0.18);
}

.button--secondary {
  color: var(--sand-050);
  border: 1px solid var(--border);
  background: rgba(27, 28, 32, 0.84);
}

.hero__metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 520px;
  margin: 38px 0 0;
}

.hero__metrics div {
  padding: 18px;
  border: 1px solid var(--border-subtle);
  border-radius: 26px;
  background: rgba(27, 28, 32, 0.72);
}

.hero__metrics dt {
  color: var(--acid-strong);
  font-size: 1.8rem;
  font-weight: 950;
}

.hero__metrics dd {
  margin: 4px 0 0;
  color: var(--sand-400);
  font-size: 0.88rem;
}

.hero__visual {
  position: relative;
  display: grid;
  place-items: center;
  isolation: isolate;
}

.hero__visual::before {
  position: absolute;
  inset: 8% 0 4%;
  z-index: -2;
  border-radius: 999px;
  content: "";
  background:
    radial-gradient(circle at 50% 20%, rgba(216, 255, 123, 0.24), transparent 18rem),
    radial-gradient(circle at 58% 72%, rgba(242, 179, 92, 0.18), transparent 16rem);
  filter: blur(12px);
}

.hero-orbit {
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(216, 255, 123, 0.22);
  border-radius: 50%;
  animation: orbit-drift 10s ease-in-out infinite alternate;
}

.hero-orbit--one {
  width: 76%;
  aspect-ratio: 1;
  transform: rotate(-14deg);
}

.hero-orbit--two {
  width: 56%;
  aspect-ratio: 1;
  border-color: rgba(242, 179, 92, 0.2);
  animation-delay: -4s;
  transform: rotate(24deg);
}

@keyframes orbit-drift {
  from {
    opacity: 0.42;
    translate: -6px 10px;
  }

  to {
    opacity: 0.85;
    translate: 8px -6px;
  }
}

.device-frame {
  --device-width: min(100%, 258px);
  position: relative;
  width: var(--device-width);
  padding: 8px;
  border: 1px solid rgba(244, 241, 234, 0.28);
  border-radius: 48px;
  background:
    linear-gradient(145deg, rgba(244, 241, 234, 0.34), rgba(59, 61, 69, 0.22) 28%, rgba(5, 6, 7, 0.96) 64%),
    #050607;
  box-shadow:
    0 34px 74px rgba(0, 0, 0, 0.48),
    inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.device-frame--large {
  --device-width: min(100%, 410px);
  border-radius: 68px;
  transform: rotate(1.5deg);
}

.device-frame__screen {
  position: relative;
  overflow: hidden;
  border-radius: 40px;
  background: #050607;
  box-shadow: inset 0 0 0 1px rgba(244, 241, 234, 0.08);
}

.device-frame--large .device-frame__screen {
  border-radius: 58px;
}

.device-frame__screen::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.14), transparent 16%, transparent 76%, rgba(255, 255, 255, 0.08)),
    radial-gradient(circle at 50% 0, rgba(216, 255, 123, 0.09), transparent 26rem);
  mix-blend-mode: screen;
}

.device-frame img {
  display: block;
  width: 100%;
  height: auto;
}

.device-frame__notch {
  position: absolute;
  top: 18px;
  left: 50%;
  z-index: 4;
  width: 30%;
  height: 28px;
  border-radius: 999px;
  background: #000;
  box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.08), 0 10px 24px rgba(0, 0, 0, 0.35);
  transform: translateX(-50%);
}

.device-frame__notch::after {
  position: absolute;
  top: 10px;
  right: 18px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--acid);
  content: "";
}

.device-frame__button {
  position: absolute;
  width: 4px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(244, 241, 234, 0.5), rgba(59, 61, 69, 0.7));
}

.device-frame__button--top {
  top: 18%;
  left: -4px;
  height: 46px;
}

.device-frame__button--middle {
  top: 28%;
  left: -4px;
  height: 74px;
}

.device-frame__button--right {
  top: 24%;
  right: -4px;
  height: 94px;
}

.phone {
  position: relative;
  width: min(100%, 280px);
  aspect-ratio: 0.49;
  padding: 58px 18px 24px;
  border: 1px solid rgba(59, 61, 69, 0.9);
  border-radius: 46px;
  background: #090a0d;
  box-shadow: 0 34px 70px var(--shadow);
  overflow: hidden;
}

.phone--large {
  width: min(100%, 385px);
  border-radius: 62px;
  transform: rotate(2deg);
}

.phone__speaker {
  position: absolute;
  top: 22px;
  left: 50%;
  width: 34%;
  height: 26px;
  border-radius: 999px;
  background: #000;
  transform: translateX(-50%);
}

.phone__speaker::after {
  position: absolute;
  top: 8px;
  right: 18px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--acid-strong);
  content: "";
}

.scan-ui,
.mini-screen {
  height: 100%;
  border-radius: 34px;
  background:
    linear-gradient(rgba(244, 241, 234, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244, 241, 234, 0.045) 1px, transparent 1px),
    linear-gradient(135deg, #15180f, #0f1013 70%);
  background-size: 46px 46px, 46px 46px, auto;
}

.scan-ui {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px 22px 26px;
}

.scan-ui__top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--sand-400);
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
}

.scan-ui__top b {
  color: var(--acid-strong);
}

.scan-frame {
  position: relative;
  min-height: 52%;
  border: 4px solid var(--acid-strong);
  border-radius: 34px;
  box-shadow: inset 0 0 60px rgba(191, 243, 90, 0.08), 0 0 24px rgba(191, 243, 90, 0.12);
  overflow: hidden;
}

.scan-frame span {
  position: absolute;
  z-index: 3;
  top: 48%;
  left: 8%;
  right: 8%;
  height: 5px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--gold-strong), var(--acid-strong), transparent);
}

.scan-frame--photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.92;
}

.scan-frame--photo::after {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(rgba(244, 241, 234, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244, 241, 234, 0.08) 1px, transparent 1px),
    radial-gradient(circle at center, transparent 40%, rgba(12, 12, 15, 0.36));
  background-size: 48px 48px, 48px 48px, auto;
}

.scan-tag {
  position: absolute;
  z-index: 4;
  padding: 8px 12px;
  border: 1px solid rgba(216, 255, 123, 0.42);
  border-radius: 999px;
  color: var(--acid-strong);
  background: rgba(12, 12, 15, 0.78);
  font-size: 0.72rem;
  font-weight: 950;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25);
}

.scan-tag--vase {
  top: 13%;
  left: 12%;
}

.scan-tag--clock {
  top: 25%;
  right: 9%;
}

.scan-actions {
  display: grid;
  grid-template-columns: 1fr 92px 1fr;
  align-items: center;
  gap: 12px;
  text-align: center;
}

.scan-actions small,
.mini-screen button,
.dual-buttons button {
  border: 0;
  border-radius: 999px;
  color: var(--sand-050);
  background: var(--ink-700);
  font: inherit;
  font-size: 0.76rem;
  font-weight: 900;
}

.scan-actions small {
  padding: 12px 8px;
}

.scan-actions strong {
  display: grid;
  place-items: center;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  color: var(--ink-950);
  background: var(--acid-strong);
  font-size: 1.1rem;
  font-weight: 950;
}

.screenshots,
.asset-showcase,
.support {
  padding: 88px 0;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 34px;
}

.section-heading p:last-child {
  max-width: 620px;
}

.section-heading--wide {
  max-width: 860px;
}

.section-heading--wide p:last-child {
  max-width: 760px;
}

.promo-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.flow-card,
.support__card,
.legal-card {
  border: 1px solid rgba(59, 61, 69, 0.72);
  background: rgba(27, 28, 32, 0.78);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(22px);
}

.flow-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-height: 100%;
  padding: 18px 18px 24px;
  border-radius: 38px;
  overflow: hidden;
}

.flow-card::before {
  position: absolute;
  inset: -1px;
  z-index: -1;
  pointer-events: none;
  content: "";
  background:
    radial-gradient(circle at 50% 0, rgba(216, 255, 123, 0.12), transparent 15rem),
    radial-gradient(circle at 80% 70%, rgba(242, 179, 92, 0.08), transparent 13rem);
}

.flow-card .device-frame {
  align-self: center;
  width: 100%;
  max-width: 258px;
}

.flow-card__copy {
  display: grid;
  gap: 10px;
}

.flow-card__copy span {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 32px;
  border: 1px solid rgba(216, 255, 123, 0.32);
  border-radius: 999px;
  color: var(--acid-strong);
  background: rgba(32, 42, 16, 0.62);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.08em;
}

.flow-card h3 {
  font-size: 1.26rem;
}

.flow-card p {
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.55;
}

.mini-screen {
  padding: 22px 16px;
}

.chip {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 8px 12px;
  border: 1px solid rgba(191, 243, 90, 0.36);
  border-radius: 999px;
  color: var(--acid-strong);
  background: rgba(32, 42, 16, 0.7);
  font-size: 0.72rem;
  font-weight: 900;
}

.scan-frame--small {
  min-height: 235px;
  border-width: 3px;
  border-radius: 26px;
}

.mini-screen--scan button,
.dual-buttons button {
  min-height: 38px;
  margin-top: 18px;
  padding: 0 14px;
}

.mini-screen--scan button,
.dual-buttons button:last-child {
  color: var(--ink-950);
  background: var(--acid-strong);
}

.item-card,
.value-card,
.context-row {
  border: 1px solid var(--border-subtle);
  border-radius: 24px;
  background: rgba(27, 28, 32, 0.96);
}

.item-card {
  padding: 16px;
}

.item-card i {
  display: block;
  width: 70px;
  height: 70px;
  margin-bottom: 18px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--gold-wash), var(--ink-700));
}

.item-card--with-asset img {
  display: block;
  width: 78px;
  height: 78px;
  margin-bottom: 16px;
  border: 1px solid rgba(242, 179, 92, 0.32);
  border-radius: 22px;
  object-fit: cover;
}

.item-card h4,
.mini-screen--details h4 {
  font-size: 1.18rem;
}

.item-card strong,
.value-card strong,
.mini-screen--details li b {
  color: var(--acid-strong);
}

.item-card p {
  margin: 8px 0 0;
  font-size: 0.78rem;
}

.dual-buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.value-card {
  margin: 18px 0;
  padding: 18px;
  border-color: rgba(123, 163, 43, 0.8);
  background: rgba(32, 42, 16, 0.5);
}

.value-card small,
.value-card em,
.context-row small {
  display: block;
  color: var(--sand-600);
  font-style: normal;
  font-weight: 900;
  text-transform: uppercase;
}

.value-card strong {
  display: block;
  margin: 10px 0 6px;
  font-size: 1.3rem;
}

.mini-screen--details ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.mini-screen--details li {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  padding: 12px;
  border-radius: 16px;
  background: var(--ink-800);
  font-size: 0.78rem;
  font-weight: 850;
}

.mini-screen--details li img {
  width: 28px;
  height: 28px;
  border-radius: 9px;
  object-fit: cover;
}

.mini-screen--details li b {
  margin-left: auto;
}

.context-row {
  display: grid;
  gap: 6px;
  margin-bottom: 12px;
  padding: 15px;
}

.context-row b {
  font-size: 0.94rem;
}

.asset-showcase {
  padding-top: 34px;
}

.asset-showcase__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.24fr) minmax(260px, 0.78fr);
  gap: 18px;
}

.scan-scene-card,
.value-asset-card,
.asset-card {
  border: 1px solid rgba(59, 61, 69, 0.72);
  border-radius: 36px;
  background: rgba(27, 28, 32, 0.78);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(22px);
  overflow: hidden;
}

.scan-scene-card {
  position: relative;
  grid-row: span 2;
  min-height: 520px;
}

.scan-scene-card > img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  display: block;
}

.scan-scene-card__label {
  position: absolute;
  right: 22px;
  bottom: 22px;
  display: grid;
  gap: 4px;
  min-width: 220px;
  padding: 18px 20px;
  border: 1px solid rgba(216, 255, 123, 0.36);
  border-radius: 26px;
  background: rgba(12, 12, 15, 0.82);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.28);
}

.scan-scene-card__label span,
.asset-card span {
  color: var(--sand-600);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.scan-scene-card__label b {
  color: var(--acid-strong);
  font-size: 1.55rem;
}

.asset-stack {
  display: grid;
  gap: 14px;
}

.asset-card {
  display: grid;
  grid-template-columns: 104px 1fr;
  align-items: center;
  gap: 16px;
  padding: 14px;
}

.asset-card img {
  width: 104px;
  height: 104px;
  border-radius: 28px;
  object-fit: cover;
}

.asset-card h3 {
  margin-top: 6px;
  font-size: 1.22rem;
}

.asset-card p {
  margin: 7px 0 0;
  font-size: 0.9rem;
  line-height: 1.45;
}

.value-asset-card {
  grid-column: 2;
  padding: 14px;
}

.value-asset-card img {
  width: 100%;
  height: 100%;
  min-height: 176px;
  border-radius: 26px;
  object-fit: cover;
  display: block;
}

.support {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 18px;
}

.support__card {
  padding: 28px;
  border-radius: 32px;
}

.support__card--main {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  min-height: 100%;
  border-color: rgba(123, 163, 43, 0.72);
  background:
    radial-gradient(circle at 0 0, rgba(191, 243, 90, 0.12), transparent 20rem),
    rgba(27, 28, 32, 0.82);
}

.support__card--main .button {
  margin-top: 12px;
}

.support__list {
  display: grid;
  gap: 18px;
}

.legal-page {
  padding: 62px 0 96px;
}

.legal-hero {
  max-width: 820px;
  margin-bottom: 28px;
}

.legal-hero h1 {
  font-size: clamp(3rem, 7vw, 6rem);
}

.legal-card {
  max-width: 860px;
  padding: clamp(26px, 5vw, 52px);
  border-radius: 38px;
}

.legal-card h2 {
  margin-top: 34px;
  font-size: 1.4rem;
  letter-spacing: -0.03em;
}

.legal-card section:first-child h2 {
  margin-top: 0;
}

.legal-card a {
  color: var(--acid-strong);
  font-weight: 850;
  text-decoration: underline;
  text-decoration-color: rgba(216, 255, 123, 0.38);
  text-underline-offset: 4px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 34px 0 44px;
  border-top: 1px solid rgba(59, 61, 69, 0.56);
}

.site-footer p {
  margin: 0;
  font-size: 0.92rem;
}

.site-footer nav {
  display: flex;
  gap: 16px;
  color: var(--sand-200);
  font-size: 0.92rem;
  font-weight: 750;
}

@media (max-width: 980px) {
  .hero,
  .support {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero__visual {
    order: -1;
  }

  .device-frame--large {
    --device-width: min(100%, 360px);
    transform: rotate(0.8deg);
  }

  .promo-flow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .asset-showcase__grid {
    grid-template-columns: 1fr;
  }

  .value-asset-card {
    grid-column: auto;
  }
}

@media (max-width: 640px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav {
    width: 100%;
    justify-content: space-between;
  }

  .nav a {
    flex: 1;
    text-align: center;
  }

  .hero,
  .screenshots,
  .asset-showcase,
  .support,
  .legal-page {
    width: min(100% - 28px, var(--max-width));
  }

  .hero {
    padding-top: 22px;
  }

  .hero__metrics,
  .promo-flow {
    grid-template-columns: 1fr;
  }

  .device-frame--large {
    --device-width: min(100%, 330px);
    border-radius: 54px;
    transform: none;
  }

  .device-frame--large .device-frame__screen {
    border-radius: 46px;
  }

  .scan-scene-card,
  .scan-scene-card > img {
    min-height: 360px;
  }

  .scan-scene-card__label {
    left: 16px;
    right: 16px;
    bottom: 16px;
    min-width: 0;
  }

  .asset-card {
    grid-template-columns: 82px 1fr;
  }

  .asset-card img {
    width: 82px;
    height: 82px;
    border-radius: 22px;
  }

  .hero__actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

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