:root {
  --void: #0F0F0F;
  --void-soft: #1a1a1a;
  --purple: #534AB7;
  --violet: #7F77DD;
  --bone: #F1EFE8;
  --bone-dim: #d8d6cf;
  --gray: #5F5E5A;
  --gray-soft: rgba(95, 94, 90, 0.18);
  --display: 'Space Grotesk', system-ui, -apple-system, Segoe UI, sans-serif;
  --body: 'Inter', system-ui, -apple-system, Segoe UI, sans-serif;
  --max: 1200px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--void);
  color: var(--bone);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }

/* ============ NAV ============ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 32px;
  background: rgba(15, 15, 15, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(127, 119, 221, 0.12);
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: 0.08em;
}
.logo-mark { width: 32px; height: 32px; }
.logo-wordmark { color: var(--bone); font-size: 18px; }
.logo-co { color: var(--violet); margin-left: 4px; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14px;
  font-weight: 500;
}
.nav-links a {
  color: var(--bone-dim);
  transition: color 0.2s var(--ease);
}
.nav-links a:hover { color: var(--bone); }
.nav-cta {
  background: var(--purple);
  color: var(--bone) !important;
  padding: 9px 18px;
  border-radius: 999px;
  font-weight: 600;
  transition: background 0.2s var(--ease), transform 0.2s var(--ease);
}
.nav-cta:hover { background: var(--violet); transform: translateY(-1px); }
@media (max-width: 720px) {
  .nav { padding: 14px 20px; }
  .nav-links a:not(.nav-cta) { display: none; }
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 999px;
  font-family: var(--body);
  font-weight: 600;
  font-size: 15px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s var(--ease), background 0.2s var(--ease), box-shadow 0.3s var(--ease);
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--purple) 0%, var(--violet) 100%);
  color: var(--bone);
  box-shadow: 0 8px 30px rgba(83, 74, 183, 0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(127, 119, 221, 0.45);
}
.btn-ghost {
  background: transparent;
  color: var(--bone-dim);
  border: 1px solid rgba(241, 239, 232, 0.18);
}
.btn-ghost:hover {
  border-color: var(--violet);
  color: var(--bone);
}

/* ============ SECTIONS ============ */
.section-title {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}
.section-title-light {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  line-height: 1.1;
  letter-spacing: -0.015em;
  margin-bottom: 20px;
}
.section-sub {
  color: var(--bone-dim);
  font-size: 17px;
  margin-bottom: 48px;
  max-width: 540px;
}
.section-eyebrow {
  color: var(--violet);
  font-family: var(--display);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 32px 80px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 75% 25%, rgba(127, 119, 221, 0.22), transparent 50%),
    radial-gradient(circle at 15% 80%, rgba(83, 74, 183, 0.28), transparent 55%),
    var(--void);
  z-index: 0;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(127, 119, 221, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(127, 119, 221, 0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  z-index: 0;
}
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  width: 100%;
  margin: 0 auto;
}
.hero-eyebrow {
  display: inline-block;
  padding: 6px 14px;
  border: 1px solid rgba(127, 119, 221, 0.4);
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--violet);
  margin-bottom: 28px;
  font-weight: 500;
}
.hero-title {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(3rem, 9vw, 7rem);
  line-height: 0.96;
  letter-spacing: -0.035em;
  margin-bottom: 28px;
}
.hero-title-accent {
  background: linear-gradient(120deg, var(--violet) 0%, var(--purple) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: italic;
}
.hero-sub {
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  color: var(--bone-dim);
  max-width: 560px;
  margin-bottom: 36px;
  line-height: 1.55;
}
.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}
.hero-trust {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  color: var(--gray);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
}
.hero-trust span:nth-child(2) { color: rgba(127, 119, 221, 0.7); }
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--gray);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  z-index: 1;
  animation: bounce 2.5s var(--ease) infinite;
}
@keyframes bounce {
  0%, 100% { transform: translate(-50%, 0); opacity: 0.6; }
  50% { transform: translate(-50%, 6px); opacity: 1; }
}

/* ============ SHOP ============ */
.shop {
  padding: 120px 32px;
  max-width: var(--max);
  margin: 0 auto;
  text-align: center;
}
.shop .section-sub { margin-left: auto; margin-right: auto; }
.shop-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  text-align: left;
}
@media (max-width: 720px) {
  .shop-cards { grid-template-columns: 1fr; }
}
.shop-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 28px 30px;
  background: var(--void-soft);
  border: 1px solid rgba(127, 119, 221, 0.15);
  border-radius: 18px;
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
  overflow: hidden;
}
.shop-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(83, 74, 183, 0.0) 0%, rgba(127, 119, 221, 0.08) 100%);
  opacity: 0;
  transition: opacity 0.3s var(--ease);
  pointer-events: none;
}
.shop-card:hover {
  transform: translateY(-4px);
  border-color: rgba(127, 119, 221, 0.5);
  box-shadow: 0 20px 50px rgba(83, 74, 183, 0.2);
}
.shop-card:hover::before { opacity: 1; }
.shop-card-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--purple), var(--violet));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bone);
}
.shop-card-icon svg { width: 28px; height: 28px; }
.shop-card-body { flex: 1; position: relative; z-index: 1; }
.shop-card-eyebrow {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--violet);
  margin-bottom: 4px;
  font-weight: 600;
}
.shop-card-body h3 {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 4px;
}
.shop-card-body p { color: var(--bone-dim); font-size: 14px; }
.shop-card-arrow {
  font-size: 24px;
  color: var(--violet);
  transition: transform 0.3s var(--ease);
}
.shop-card:hover .shop-card-arrow { transform: translateX(6px); }

/* ============ PRODUCTS ============ */
.products {
  padding: 120px 32px;
  max-width: var(--max);
  margin: 0 auto;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 900px) { .product-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .product-grid { grid-template-columns: 1fr; } }
.product-card {
  padding: 32px 28px;
  background: var(--void-soft);
  border: 1px solid rgba(127, 119, 221, 0.1);
  border-radius: 16px;
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease), background 0.3s var(--ease);
  cursor: default;
}
.product-card:hover {
  transform: translateY(-3px);
  border-color: rgba(127, 119, 221, 0.4);
  background: rgba(83, 74, 183, 0.06);
}
.product-icon {
  font-size: 32px;
  margin-bottom: 18px;
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: rgba(127, 119, 221, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-card h3 {
  font-family: var(--display);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
}
.product-card p {
  color: var(--bone-dim);
  font-size: 14px;
  line-height: 1.5;
}

/* ============ ABOUT ============ */
.about {
  padding: 120px 32px;
  background: linear-gradient(180deg, var(--void) 0%, #0a0a0a 100%);
  border-top: 1px solid rgba(127, 119, 221, 0.1);
  border-bottom: 1px solid rgba(127, 119, 221, 0.1);
}
.about-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 900px) {
  .about-inner { grid-template-columns: 1fr; gap: 60px; }
}
.about-text p { color: var(--bone-dim); margin-bottom: 18px; }
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 36px;
  list-style: none;
}
@media (max-width: 540px) { .about-stats { grid-template-columns: 1fr; } }
.about-stats li {
  padding: 18px;
  background: var(--void-soft);
  border: 1px solid rgba(127, 119, 221, 0.12);
  border-radius: 12px;
}
.about-stats strong {
  display: block;
  font-family: var(--display);
  font-size: 22px;
  color: var(--violet);
  margin-bottom: 4px;
}
.about-stats span {
  color: var(--gray);
  font-size: 12px;
  line-height: 1.35;
}

.about-card {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 22px;
  background: linear-gradient(135deg, var(--purple) 0%, #2d2680 100%);
  overflow: hidden;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  box-shadow: 0 30px 80px rgba(83, 74, 183, 0.35);
}
.about-card-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(241, 239, 232, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(241, 239, 232, 0.07) 1px, transparent 1px);
  background-size: 22px 22px;
  mask-image: linear-gradient(180deg, transparent 0%, black 40%, black 100%);
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, black 40%, black 100%);
}
.about-card-mark {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.about-card-tag {
  font-size: 11px;
  letter-spacing: 0.2em;
  color: rgba(241, 239, 232, 0.7);
  font-weight: 600;
}
.about-card-line {
  font-family: var(--display);
  font-size: 30px;
  font-weight: 700;
  color: var(--bone);
}
.about-card-bar {
  height: 6px;
  background: rgba(241, 239, 232, 0.15);
  border-radius: 99px;
  overflow: hidden;
  margin: 4px 0 6px;
}
.about-card-bar-fill {
  height: 100%;
  width: 24%;
  background: var(--bone);
  border-radius: 99px;
  animation: fill 4s var(--ease) infinite alternate;
}
@keyframes fill {
  from { width: 24%; }
  to { width: 92%; }
}
.about-card-meta {
  font-family: var(--body);
  font-size: 12px;
  color: rgba(241, 239, 232, 0.65);
  letter-spacing: 0.04em;
}

/* ============ CAPTURE ============ */
.capture {
  padding: 120px 32px;
  text-align: center;
}
.capture-inner {
  max-width: 640px;
  margin: 0 auto;
}
.capture-inner .section-sub { margin: 0 auto 36px; }
.capture-form {
  display: flex;
  gap: 10px;
  margin-bottom: 18px;
  flex-wrap: wrap;
  justify-content: center;
}
.capture-form input {
  flex: 1 1 280px;
  padding: 14px 20px;
  background: var(--void-soft);
  border: 1px solid rgba(127, 119, 221, 0.25);
  border-radius: 999px;
  color: var(--bone);
  font-family: var(--body);
  font-size: 15px;
  transition: border-color 0.2s var(--ease);
}
.capture-form input:focus {
  outline: none;
  border-color: var(--violet);
}
.capture-form input::placeholder { color: var(--gray); }
.capture-success {
  color: var(--violet);
  font-size: 14px;
  margin-bottom: 12px;
}
.capture-trust {
  color: var(--gray);
  font-size: 12px;
  letter-spacing: 0.04em;
}

/* ============ FOOTER ============ */
.footer {
  padding: 60px 32px 32px;
  background: #080808;
  border-top: 1px solid rgba(127, 119, 221, 0.1);
}
.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(127, 119, 221, 0.08);
}
@media (max-width: 720px) { .footer-inner { grid-template-columns: 1fr; gap: 40px; } }
.footer-brand .logo { margin-bottom: 14px; }
.footer-tag {
  font-family: var(--display);
  color: var(--violet);
  font-style: italic;
  font-size: 15px;
}
.footer-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 900px) { .footer-links { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .footer-links { grid-template-columns: 1fr; } }
.footer-h {
  font-family: var(--display);
  font-weight: 600;
  color: var(--bone);
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.footer-links a {
  display: block;
  color: var(--bone-dim);
  font-size: 14px;
  padding: 4px 0;
  transition: color 0.2s var(--ease);
}
.footer-links a:hover { color: var(--violet); }
.footer-muted { color: var(--gray); font-size: 14px; }
.footer-bottom {
  max-width: var(--max);
  margin: 24px auto 0;
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--gray);
}
@media (max-width: 540px) { .footer-bottom { flex-direction: column; gap: 8px; } }

/* ============ FADE-IN ON SCROLL ============ */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ============ LEGAL PAGES ============ */
.legal {
  padding: 140px 32px 80px;
  background:
    radial-gradient(circle at 80% 0%, rgba(83, 74, 183, 0.12), transparent 50%),
    var(--void);
  min-height: 100vh;
}
.legal-inner {
  max-width: 760px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.75;
  color: var(--bone-dim);
}
.legal-crumb {
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--gray);
  margin-bottom: 24px;
}
.legal-crumb a {
  color: var(--violet);
  transition: color 0.2s var(--ease);
}
.legal-crumb a:hover { color: var(--bone); }
.legal-inner h1 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(2.25rem, 5vw, 3.25rem);
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--bone);
  margin-bottom: 10px;
}
.legal-meta {
  color: var(--gray);
  font-size: 14px;
  margin-bottom: 36px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(127, 119, 221, 0.18);
}
.legal-inner h2 {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  letter-spacing: -0.01em;
  color: var(--violet);
  margin-top: 44px;
  margin-bottom: 14px;
}
.legal-inner p {
  margin-bottom: 18px;
  color: var(--bone-dim);
}
.legal-inner strong {
  color: var(--bone);
  font-weight: 600;
}
.legal-inner ul {
  margin: 0 0 22px;
  padding-left: 22px;
  color: var(--bone-dim);
}
.legal-inner li {
  margin-bottom: 8px;
}
.legal-inner li::marker { color: var(--violet); }
.legal-inner a {
  color: var(--violet);
  text-decoration: underline;
  text-decoration-color: rgba(127, 119, 221, 0.4);
  text-underline-offset: 3px;
  transition: color 0.2s var(--ease), text-decoration-color 0.2s var(--ease);
}
.legal-inner a:hover {
  color: var(--bone);
  text-decoration-color: var(--bone);
}
.legal-footnote {
  margin-top: 56px;
  padding: 22px 24px;
  background: var(--void-soft);
  border: 1px solid rgba(127, 119, 221, 0.15);
  border-radius: 12px;
  font-size: 14px;
  color: var(--gray);
  line-height: 1.6;
}
.legal-back {
  margin-top: 40px;
  text-align: center;
  font-family: var(--display);
  font-weight: 500;
}
.legal-back a {
  display: inline-block;
  padding: 12px 24px;
  border: 1px solid rgba(127, 119, 221, 0.3);
  border-radius: 999px;
  color: var(--bone-dim);
  text-decoration: none;
  transition: border-color 0.2s var(--ease), color 0.2s var(--ease);
}
.legal-back a:hover {
  border-color: var(--violet);
  color: var(--bone);
}
