:root {
  --background: #080c15;
  --background-soft: #0c1220;
  --surface: #111827;
  --surface-light: #182235;
  --surface-bright: #202c42;
  --text: #f8fafc;
  --muted: #aab4c5;
  --muted-light: #d6deea;
  --border: rgba(255, 255, 255, 0.1);
  --accent: #6d5dfc;
  --accent-hover: #877cff;
  --accent-soft: rgba(109, 93, 252, 0.14);
  --success: #6ee7b7;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  background:
    radial-gradient(
      circle at 15% 0%,
      rgba(109, 93, 252, 0.14),
      transparent 34rem
    ),
    var(--background);
  color: var(--text);
  font-family: "Inter", sans-serif;
  line-height: 1.7;
}

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

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

.container {
  width: min(100% - 40px, var(--max-width));
  margin: 0 auto;
}

.narrow-container {
  max-width: 850px;
  text-align: center;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--border);
  background: rgba(8, 12, 21, 0.82);
  backdrop-filter: blur(18px);
}

.navbar {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background:
    linear-gradient(
      135deg,
      var(--accent),
      #9f94ff
    );
  box-shadow: 0 12px 35px rgba(109, 93, 252, 0.3);
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 800;
}

.brand-name {
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 600;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--text);
}

.button {
  min-height: 50px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 14px;
  background: var(--accent);
  box-shadow: 0 16px 40px rgba(109, 93, 252, 0.2);
  color: #ffffff;
  font-weight: 800;
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease;
}

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

.button-small {
  min-height: 44px;
  padding: 0 20px;
}

.button-secondary {
  border-color: var(--border);
  background: rgba(255, 255, 255, 0.035);
  box-shadow: none;
  color: var(--text);
}

.button-secondary:hover {
  border-color: rgba(109, 93, 252, 0.6);
  background: var(--surface-light);
}

.eyebrow {
  margin-bottom: 18px;
  color: var(--accent-hover);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero {
  min-height: calc(100vh - 78px);
  display: grid;
  align-items: center;
  padding: 100px 0 120px;
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(390px, 0.95fr);
  align-items: center;
  gap: 80px;
}

.hero-content h1 {
  max-width: 720px;
  font-size: clamp(3.4rem, 6.8vw, 6.8rem);
  line-height: 0.96;
  letter-spacing: -0.068em;
}

.hero-content h1 span {
  display: block;
  color: var(--accent-hover);
}

.hero-description {
  max-width: 680px;
  margin-top: 30px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.7vw, 1.25rem);
}

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

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 34px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 600;
}

.hero-trust span::before {
  content: "✓";
  margin-right: 8px;
  color: var(--success);
}

.hero-preview {
  position: relative;
  display: grid;
  place-items: center;
}

.preview-glow {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(109, 93, 252, 0.28);
  filter: blur(100px);
}

.phone {
  position: relative;
  width: 340px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 46px;
  background: #05070d;
  box-shadow:
    0 40px 90px rgba(0, 0, 0, 0.5),
    0 0 80px rgba(109, 93, 252, 0.18);
  transform: rotate(2deg);
}

.phone-top {
  height: 32px;
  padding: 0 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #cbd5e1;
  font-size: 0.68rem;
}

.phone-screen {
  min-height: 600px;
  padding: 24px 20px;
  border-radius: 34px;
  background:
    radial-gradient(
      circle at top,
      rgba(109, 93, 252, 0.17),
      transparent 20rem
    ),
    #0b111d;
}

.app-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.app-label {
  color: var(--muted);
  font-size: 0.68rem;
}

.app-heading h3 {
  margin-top: 2px;
  font-size: 1.3rem;
}

.profile-circle {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--accent);
  font-size: 0.75rem;
  font-weight: 800;
}

.value-card {
  margin-top: 24px;
  padding: 22px;
  border: 1px solid rgba(109, 93, 252, 0.35);
  border-radius: 20px;
  background:
    linear-gradient(
      140deg,
      rgba(109, 93, 252, 0.26),
      rgba(109, 93, 252, 0.06)
    );
}

.value-card p {
  color: #c8c5ff;
  font-size: 0.7rem;
}

.value-card h4 {
  margin: 7px 0;
  font-size: 1.8rem;
}

.value-card span {
  color: var(--success);
  font-size: 0.7rem;
  font-weight: 700;
}

.app-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 14px;
}

.app-stats div {
  padding: 14px 6px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.025);
  text-align: center;
}

.app-stats strong {
  display: block;
  font-size: 0.92rem;
}

.app-stats span {
  color: var(--muted);
  font-size: 0.62rem;
}

.vault-heading {
  margin: 25px 0 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.vault-heading h4 {
  font-size: 0.9rem;
}

.vault-heading span {
  color: var(--accent-hover);
  font-size: 0.64rem;
}

.vault-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.vault-item {
  padding: 10px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.025);
}

.item-image {
  height: 88px;
  border-radius: 10px;
}

.item-purple {
  background:
    linear-gradient(
      135deg,
      #4338ca,
      #c084fc
    );
}

.item-blue {
  background:
    linear-gradient(
      135deg,
      #075985,
      #38bdf8
    );
}

.item-gold {
  background:
    linear-gradient(
      135deg,
      #92400e,
      #facc15
    );
}

.item-red {
  background:
    linear-gradient(
      135deg,
      #7f1d1d,
      #fb7185
    );
}

.vault-item p {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.62rem;
}

.vault-item strong {
  font-size: 0.74rem;
}

.section {
  padding: 110px 0;
}

.gray {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.022);
}

.intro-section h2,
.section-heading h2,
.curator-content h2,
.mission-card h2,
.contact-layout h2 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1.04;
  letter-spacing: -0.055em;
}

.section-lead {
  margin-top: 24px;
  color: var(--muted);
  font-size: 1.12rem;
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  align-items: end;
  gap: 60px;
}

.section-heading > p {
  color: var(--muted);
  font-size: 1.02rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 55px;
}

.feature-card {
  min-height: 280px;
  padding: 32px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.045),
      rgba(255, 255, 255, 0.012)
    ),
    var(--surface);
  transition:
    transform 0.2s ease,
    border-color 0.2s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: rgba(109, 93, 252, 0.55);
}

.feature-large {
  grid-row: span 2;
  min-height: 580px;
}

.feature-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 28px;
  border-radius: 14px;
  background: var(--accent-soft);
  color: var(--accent-hover);
  font-size: 1.35rem;
  font-weight: 800;
}

.feature-card h3 {
  font-size: 1.45rem;
  letter-spacing: -0.025em;
}

.feature-card > p {
  max-width: 500px;
  margin-top: 12px;
  color: var(--muted);
}

.scanner-demo {
  margin-top: 42px;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: #080d17;
  text-align: center;
}

.scanner-frame {
  position: relative;
  height: 275px;
  overflow: hidden;
  border-radius: 18px;
  background:
    linear-gradient(
      135deg,
      rgba(109, 93, 252, 0.15),
      rgba(255, 255, 255, 0.025)
    );
}

.scanner-frame::before,
.scanner-frame::after,
.scanner-frame span::before,
.scanner-frame span::after {
  content: "";
  position: absolute;
  width: 42px;
  height: 42px;
  border-color: var(--accent-hover);
  border-style: solid;
}

.scanner-frame::before {
  top: 18px;
  left: 18px;
  border-width: 3px 0 0 3px;
}

.scanner-frame::after {
  top: 18px;
  right: 18px;
  border-width: 3px 3px 0 0;
}

.scanner-frame span::before {
  bottom: 18px;
  left: 18px;
  border-width: 0 0 3px 3px;
}

.scanner-frame span::after {
  right: 18px;
  bottom: 18px;
  border-width: 0 3px 3px 0;
}

.scanner-demo p {
  margin-top: 16px;
  color: var(--muted);
  font-size: 0.82rem;
}

.curator-layout {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  align-items: center;
  gap: 80px;
}

.curator-questions {
  display: grid;
  gap: 12px;
  margin-top: 34px;
}

.curator-questions div {
  padding: 17px 19px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.025);
  color: var(--muted-light);
}

.curator-panel {
  padding: 30px;
  border: 1px solid rgba(109, 93, 252, 0.32);
  border-radius: 28px;
  background:
    radial-gradient(
      circle at top right,
      rgba(109, 93, 252, 0.2),
      transparent 22rem
    ),
    var(--surface);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.32);
}

.assistant-header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.assistant-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  background: var(--accent);
  font-weight: 800;
}

.assistant-header strong,
.assistant-header span {
  display: block;
}

.assistant-header span {
  color: var(--muted);
  font-size: 0.75rem;
}

.message {
  max-width: 88%;
  margin-top: 22px;
  padding: 16px 18px;
  border-radius: 17px;
  font-size: 0.9rem;
}

.message-user {
  margin-left: auto;
  border-bottom-right-radius: 5px;
  background: var(--accent);
}

.message-assistant {
  border: 1px solid var(--border);
  border-bottom-left-radius: 5px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--muted-light);
}

.assistant-input {
  margin-top: 28px;
  padding: 15px 17px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #090e18;
  color: var(--muted);
  font-size: 0.85rem;
}

.assistant-input span {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: var(--accent);
  color: #ffffff;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 52px;
}

.category-card {
  min-height: 150px;
  padding: 24px 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: var(--surface);
  transition:
    transform 0.2s ease,
    border-color 0.2s ease;
}

.category-card:hover {
  transform: translateY(-4px);
  border-color: rgba(109, 93, 252, 0.55);
}

.category-card span {
  font-size: 2rem;
}

.category-card h3 {
  font-size: 0.98rem;
}

.mission-section {
  padding-top: 125px;
}

.mission-card {
  padding: 72px;
  border: 1px solid rgba(109, 93, 252, 0.3);
  border-radius: 32px;
  background:
    radial-gradient(
      circle at right,
      rgba(109, 93, 252, 0.25),
      transparent 35rem
    ),
    var(--surface);
  text-align: center;
}

.mission-card h2 {
  max-width: 850px;
  margin: 0 auto;
}

.mission-card > p:not(.eyebrow) {
  max-width: 720px;
  margin: 24px auto 30px;
  color: var(--muted);
  font-size: 1.05rem;
}

.contact-section {
  padding-top: 70px;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 0.75fr;
  align-items: center;
  gap: 80px;
}

.contact-card {
  padding: 30px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: var(--surface);
}

.contact-card p {
  margin-top: 17px;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-card p:first-child {
  margin-top: 0;
}

.contact-card a,
.contact-card span {
  display: inline-block;
  margin-top: 4px;
  color: var(--muted-light);
  overflow-wrap: anywhere;
}

.contact-card a:hover {
  color: var(--accent-hover);
}

footer {
  padding: 42px 0;
  border-top: 1px solid var(--border);
  color: var(--muted);
}

.footer-content {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
}

.footer-brand {
  margin-bottom: 18px;
}

.footer-content > div:first-child > p {
  font-size: 0.82rem;
}

.footer-links {
  max-width: 540px;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px 24px;
}

.footer-links a {
  font-size: 0.86rem;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--text);
}

/* Legal pages */

.legal-page {
  min-height: 75vh;
  padding: 100px 0;
}

.legal-container {
  max-width: 850px;
}

.legal-container h1 {
  margin-bottom: 12px;
  font-size: clamp(2.7rem, 7vw, 4.8rem);
  line-height: 1;
  letter-spacing: -0.055em;
}

.legal-updated {
  margin-bottom: 42px;
  color: var(--muted);
}

.legal-container > p {
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 1.05rem;
}

.legal-section {
  margin-top: 52px;
}

.legal-section h2 {
  margin-bottom: 18px;
  font-size: 1.55rem;
  line-height: 1.25;
  letter-spacing: -0.025em;
}

.legal-section p {
  margin-bottom: 17px;
  color: var(--muted);
}

.legal-section ul {
  margin: 18px 0 0 22px;
  color: var(--muted);
}

.legal-section li {
  margin-bottom: 10px;
  padding-left: 5px;
}

.legal-section address {
  margin-top: 20px;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--surface);
  color: var(--muted);
  font-style: normal;
}

.legal-section address strong {
  color: var(--text);
}

.legal-section a {
  color: var(--accent-hover);
}

@media (max-width: 1000px) {
  .nav-links {
    display: none;
  }

  .hero-layout,
  .curator-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

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

  .hero-content h1,
  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions,
  .hero-trust {
    justify-content: center;
  }

  .hero-preview {
    margin-top: 20px;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .category-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .contact-layout {
    gap: 38px;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 28px, var(--max-width));
  }

  .navbar {
    min-height: 70px;
  }

  .brand-name {
    max-width: 150px;
    font-size: 0.92rem;
    line-height: 1.15;
  }

  .button-small {
    min-height: 40px;
    padding: 0 15px;
    font-size: 0.85rem;
  }

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

  .hero-layout {
    gap: 55px;
  }

  .hero-content h1 {
    font-size: clamp(3rem, 14vw, 4.6rem);
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-trust {
    gap: 12px;
    flex-direction: column;
  }

  .phone {
    width: min(100%, 330px);
  }

  .section {
    padding: 80px 0;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .feature-large {
    grid-row: auto;
    min-height: auto;
  }

  .scanner-frame {
    height: 230px;
  }

  .category-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .mission-card {
    padding: 48px 24px;
  }

  .footer-content {
    flex-direction: column;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .legal-page {
    padding: 74px 0;
  }
}

@media (max-width: 430px) {
  .brand-mark {
    width: 34px;
    height: 34px;
    border-radius: 10px;
  }

  .brand-name {
    max-width: 115px;
    font-size: 0.8rem;
  }

  .button-small {
    padding: 0 12px;
  }

  .phone-screen {
    min-height: 560px;
  }

  .category-grid {
    grid-template-columns: 1fr;
  }
}

/* Top Finds signature experience */

.top-finds-section {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
  background:
    radial-gradient(
      circle at 82% 22%,
      rgba(109, 93, 252, 0.2),
      transparent 30rem
    ),
    radial-gradient(
      circle at 15% 80%,
      rgba(110, 231, 183, 0.08),
      transparent 28rem
    ),
    #090e18;
}

.top-finds-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.22;
  background-image:
    linear-gradient(
      rgba(255, 255, 255, 0.025) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.025) 1px,
      transparent 1px
    );
  background-size: 42px 42px;
  mask-image:
    linear-gradient(
      to bottom,
      transparent,
      black 18%,
      black 82%,
      transparent
    );
}

.top-finds-heading {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.72fr;
  align-items: end;
  gap: 70px;
}

.top-finds-heading h2 {
  max-width: 780px;
  margin-top: 18px;
  font-size: clamp(2.7rem, 5vw, 4.8rem);
  line-height: 1.02;
  letter-spacing: -0.06em;
}

.top-finds-heading > p {
  color: var(--muted);
  font-size: 1.02rem;
}

.feature-badge {
  display: inline-flex;
  padding: 8px 12px;
  border: 1px solid rgba(135, 124, 255, 0.45);
  border-radius: 999px;
  background: rgba(109, 93, 252, 0.12);
  color: #c8c5ff;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.top-finds-experience {
  position: relative;
  display: grid;
  grid-template-columns:
    minmax(0, 0.9fr)
    minmax(0, 1.1fr);
  gap: 22px;
  margin-top: 58px;
}

.scan-result-panel,
.finds-panel {
  min-height: 650px;
  padding: 30px;
  border: 1px solid var(--border);
  border-radius: 28px;
  background: rgba(17, 24, 39, 0.88);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(16px);
}

.demo-toolbar {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--muted-light);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--success);
  box-shadow:
    0 0 0 6px rgba(110, 231, 183, 0.09);
}

.demo-label {
  margin-left: auto;
  color: var(--muted);
  font-size: 0.62rem;
}