:root {
  color-scheme: dark;
  --theme-black: #01010A;
  --theme-midnight: #070219;
  --theme-deep: #07081E;
  --theme-accent: #351965;
  --theme-text: #f7f4ff;
  --theme-text-soft: rgba(233,226,255,.76);
  --theme-text-faint: rgba(201,190,236,.62);
  --theme-accent-rgb: 53,25,101;
  --theme-black-rgb: 1,1,10;
  --theme-midnight-rgb: 7,2,25;
  --theme-deep-rgb: 7,8,30;
  --theme-shadow-rgb: 7,2,25;
  --tcj-purple: var(--theme-black);
  --tcj-gold: var(--theme-accent);
  --background: 240 82% 4%;
  --foreground: 250 100% 98%;
  --card: 237 62% 9%;
  --card-foreground: 250 100% 98%;
  --primary: 260 60% 25%;
  --primary-foreground: 250 100% 98%;
  --secondary: 248 58% 12%;
  --secondary-foreground: 250 100% 98%;
  --muted: 242 47% 18%;
  --muted-foreground: 252 47% 78%;
  --border: 260 53% 28%;
  --input: 240 51% 10%;
  --ring: 260 60% 38%;
  --hero-subtitle: 252 52% 82%;
}
@font-face { font-family: Inter; src: url("fonts/inter-400.woff2") format("woff2"); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: Inter; src: url("fonts/inter-500.woff2") format("woff2"); font-weight: 500; font-style: normal; font-display: swap; }
@font-face { font-family: Inter; src: url("fonts/inter-600.woff2") format("woff2"); font-weight: 600; font-style: normal; font-display: swap; }
@font-face { font-family: Inter; src: url("fonts/inter-700.woff2") format("woff2"); font-weight: 700; font-style: normal; font-display: swap; }
@font-face { font-family: "Instrument Serif"; src: url("fonts/instrument-serif-400.woff2") format("woff2"); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: "Instrument Serif"; src: url("fonts/instrument-serif-400-italic.woff2") format("woff2"); font-weight: 400; font-style: italic; font-display: swap; }
html { scroll-behavior: smooth; touch-action: pan-x pan-y pinch-zoom; }
body {
  position: relative;
  min-height: 100vh;
  isolation: isolate;
  font-family: Inter, sans-serif;
  color: var(--theme-text);
  background:
    radial-gradient(circle at 50% -12%, rgba(var(--theme-accent-rgb),.48) 0, rgba(var(--theme-accent-rgb),.18) 18%, transparent 42%),
    linear-gradient(180deg, var(--theme-midnight) 0%, var(--theme-black) 52%, var(--theme-black) 100%);
  touch-action: pan-x pan-y pinch-zoom;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(circle at 16% 18%, rgba(var(--theme-accent-rgb),.32), transparent 24%),
    radial-gradient(circle at 52% 10%, rgba(var(--theme-accent-rgb),.42), transparent 20%),
    radial-gradient(circle at 84% 14%, rgba(var(--theme-accent-rgb),.24), transparent 18%),
    radial-gradient(circle at 35% 30%, rgba(var(--theme-midnight-rgb),.88), transparent 46%),
    linear-gradient(180deg, rgba(var(--theme-deep-rgb),.74) 0%, rgba(var(--theme-black-rgb),.96) 58%, rgba(var(--theme-black-rgb),1) 100%);
  filter: saturate(112%);
}
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: .78;
  mix-blend-mode: screen;
  background-image:
    radial-gradient(circle at 14% 22%, rgba(255,255,255,.95) 0 1px, transparent 1.7px),
    radial-gradient(circle at 72% 8%, rgba(255,255,255,.9) 0 1.25px, transparent 2px),
    radial-gradient(circle at 88% 36%, rgba(255,255,255,.72) 0 1px, transparent 1.8px),
    radial-gradient(circle at 24% 68%, rgba(255,255,255,.65) 0 1px, transparent 1.8px),
    radial-gradient(circle at 55% 52%, rgba(255,255,255,.4) 0 .8px, transparent 1.6px),
    radial-gradient(circle at 50% 0%, rgba(var(--theme-accent-rgb),.34), transparent 54%);
  background-size: 280px 180px, 360px 240px, 320px 220px, 420px 280px, 240px 160px, 100% 100%;
}
section { scroll-margin-top: 88px; }
main > section:not(#home) { contain-intrinsic-size: 900px; }
a, button, input, select, textarea { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 2px solid var(--theme-accent); outline-offset: 3px; }
img, video { max-width: 100%; }
@media(pointer:fine){
  .magic-cursor-enabled,
  .magic-cursor-enabled * {
    cursor: none !important;
  }
  .magic-cursor-enabled a,
  .magic-cursor-enabled a *,
  .magic-cursor-enabled button,
  .magic-cursor-enabled button *,
  .magic-cursor-enabled input,
  .magic-cursor-enabled select,
  .magic-cursor-enabled textarea,
  .magic-cursor-enabled summary,
  .magic-cursor-enabled summary *,
  .magic-cursor-enabled [role="button"],
  .magic-cursor-enabled [role="button"] * {
    cursor: pointer !important;
  }
}
.magic-cursor {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 2147483647;
  width: 42px;
  height: 42px;
  pointer-events: none;
  opacity: 0;
  transform: translate3d(-100px,-100px,0);
  background: url("sceptre.png") 0 0 / contain no-repeat;
  filter: drop-shadow(0 0 8px rgba(var(--theme-accent-rgb),.34));
  transition: opacity .18s ease, transform .08s linear, filter .18s ease;
  will-change: transform;
}
.magic-cursor.is-visible { opacity: 1; }
.magic-cursor.is-active { opacity: 0; }
.magic-cursor.is-pressed { filter: drop-shadow(0 0 12px rgba(var(--theme-accent-rgb),.48)); }
.magic-cursor-spark {
  position: fixed;
  z-index: 2147483646;
  width: 12px;
  height: 12px;
  pointer-events: none;
  background: var(--theme-accent);
  clip-path: polygon(50% 0,61% 38%,100% 50%,61% 62%,50% 100%,39% 62%,0 50%,39% 38%);
  box-shadow: 0 0 12px rgba(var(--theme-accent-rgb),.95),0 0 26px rgba(var(--theme-accent-rgb),.42);
  transform: translate(-50%,-50%);
  animation: magic-spark .82s ease-out forwards;
}
.magic-cursor-spark.is-idle {
  width: 9px;
  height: 9px;
  opacity: .9;
  animation-duration: 1.35s;
}
.magic-cursor-spark.is-small {
  width: 7px;
  height: 7px;
  opacity: .78;
}
.magic-cursor-spark.is-tiny {
  width: 5px;
  height: 5px;
  opacity: .7;
}
@keyframes magic-spark {
  to {
    opacity: 0;
    transform: translate(calc(-50% + var(--spark-x)),calc(-50% + var(--spark-y))) scale(.2) rotate(90deg);
  }
}
@media(prefers-reduced-motion:reduce){
  .magic-cursor,
  .magic-cursor * {
    transition: none;
  }
}
.liquid-glass {
  background: rgba(var(--theme-accent-rgb),.01);
  background-blend-mode: luminosity;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: none;
  box-shadow: inset 0 1px 1px rgba(var(--theme-accent-rgb),.1);
  position: relative;
  overflow: hidden;
}
.liquid-glass::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.4px;
  background: linear-gradient(180deg,
    rgba(var(--theme-accent-rgb),.45) 0%,
    rgba(var(--theme-accent-rgb),.15) 20%,
    rgba(var(--theme-accent-rgb),0) 40%,
    rgba(var(--theme-accent-rgb),0) 60%,
    rgba(var(--theme-accent-rgb),.15) 80%,
    rgba(var(--theme-accent-rgb),.45) 100%);
  -webkit-mask: linear-gradient(var(--theme-accent) 0 0) content-box, linear-gradient(var(--theme-accent) 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.social-btn { width: 2.5rem; height: 2.5rem; border-radius: 999px; display: flex; align-items: center; justify-content: center; color: rgba(var(--theme-accent-rgb),.65); transition: .25s; }
.social-btn:hover { color: var(--theme-accent); transform: translateY(-2px) scale(1.04); box-shadow: inset 0 1px 1px rgba(var(--theme-accent-rgb),.22), 0 0 22px rgba(var(--theme-accent-rgb),.1); }
.social-btn svg { width: 1rem; height: 1rem; }
.compact-marketing-navbar {
  height: 96px;
  padding: 0 clamp(1rem,5vw,5rem);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
  background: transparent;
  border-bottom: 0;
  backdrop-filter: none;
}
.compact-marketing-brand { gap: .75rem; color: var(--theme-accent); transition: color .2s; }
.compact-marketing-brand:hover { color: var(--theme-accent); }
.compact-marketing-brand img { width: auto; height: 4.5rem; object-fit: contain; }
.compact-marketing-brand span { font-size: 1rem; letter-spacing: 0; }
.compact-marketing-links {
  justify-self: center;
  gap: .35rem;
  margin-left: 0;
  padding: .45rem .55rem;
  border: 1px solid rgba(var(--theme-accent-rgb),.12);
  border-radius: 999px;
  background: rgba(var(--theme-accent-rgb),.075);
  box-shadow: inset 0 1px 1px rgba(var(--theme-accent-rgb),.12), 0 12px 34px rgba(var(--theme-shadow-rgb),.28);
  backdrop-filter: blur(16px);
}
.compact-marketing-links span { display: none; }
.compact-marketing-links a {
  padding: .55rem 1rem;
  border-radius: 999px;
  line-height: 1;
}
.compact-marketing-links a:hover { background: rgba(var(--theme-accent-rgb),.08); }
.nav-connect-button {
  justify-self: end;
  align-items: center;
  justify-content: center;
  min-height: 2.35rem;
  padding: 0 .9rem;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 999px;
  background: var(--theme-accent);
  color: var(--theme-black);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.12), 0 0 0 1px rgba(var(--theme-accent-rgb),.28);
  font-size: .8125rem;
  line-height: 1;
  font-weight: 600;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}
.nav-connect-button:hover { transform: scale(1.03); box-shadow: 0 0 30px rgba(var(--theme-accent-rgb),.22); background: var(--theme-accent); color: var(--theme-black); }
.nav-connect-button:active { transform: scale(.98); }
.mobile-connect-button {
  width: max-content;
  margin-top: .5rem;
  padding: .85rem 1.25rem;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 999px;
  background: var(--theme-accent);
  color: var(--theme-black);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.12), 0 0 0 1px rgba(var(--theme-accent-rgb),.28);
  font-size: .875rem;
  font-weight: 600;
  line-height: 1;
  transition: transform .2s ease, box-shadow .2s ease;
}
.mobile-connect-button:hover { color: var(--theme-black); transform: scale(1.03); box-shadow: 0 0 30px rgba(var(--theme-accent-rgb),.22); }
.mobile-connect-button:active { transform: scale(.98); }
#menuButton { justify-self: end; }
@media(min-width:1024px){.nav-connect-button{display:inline-flex!important}#menuButton{display:none!important}#mobileMenu{display:none!important}}
@media(max-width:1023px){
  .compact-marketing-navbar { grid-template-columns: 1fr auto; }
  .compact-marketing-brand { grid-column: 1; justify-self: start; }
  #menuButton { grid-column: 2; justify-self: end; }
}
.compact-marketing-socials { gap: .65rem; }
.compact-marketing-socials .social-btn { width: 2.25rem; height: 2.25rem; }
.compact-marketing-socials .social-btn svg { width: .95rem; height: .95rem; stroke-width: 1.8; }
.btn-primary,.btn-glass { padding: .875rem 2rem; border: 1px solid rgba(255,255,255,.18); border-radius: .5rem; font-size: .875rem; font-weight: 600; text-align: center; transition: transform .2s ease, background .2s ease, box-shadow .2s ease, border-color .2s ease; }
.btn-primary { background: var(--theme-accent); color: var(--theme-black); box-shadow: inset 0 1px 0 rgba(255,255,255,.12), 0 0 0 1px rgba(var(--theme-accent-rgb),.26); }
.btn-primary:hover,.btn-glass:hover { transform: scale(1.03); }
.btn-primary:active,.btn-glass:active { transform: scale(.98); }
.btn-primary:hover { box-shadow: 0 0 30px rgba(var(--theme-accent-rgb),.2); }
.btn-glass { color: var(--theme-accent); box-shadow: inset 0 1px 0 rgba(255,255,255,.08), 0 0 0 1px rgba(var(--theme-accent-rgb),.18); }
.glass-card { border-radius: 1.5rem; padding: 2rem; display: flex; flex-direction: column; transition: transform .3s ease, background .3s ease, box-shadow .3s ease; }
.glass-card.visible:hover,
blockquote.liquid-glass.visible:hover,
details.liquid-glass.visible:hover {
  transform: translateY(-6px);
  background: rgba(var(--theme-accent-rgb),.025);
  box-shadow: inset 0 1px 1px rgba(var(--theme-accent-rgb),.18), 0 16px 38px rgba(var(--theme-shadow-rgb),.45), 0 0 24px rgba(var(--theme-accent-rgb),.06);
}
.icon-orb { width: 4rem; height: 4rem; display: flex; align-items: center; justify-content: center; margin-bottom: 1.5rem; border-radius: 999px; background: rgba(var(--theme-accent-rgb),.05); transition: .4s; }
.icon-orb svg { width: 2rem; height: 2rem; }
.small-icon { width: 2.5rem; height: 2.5rem; border-radius: 999px; background: rgba(var(--theme-accent-rgb),.05); border: 1px solid rgba(var(--theme-accent-rgb),.1); display: flex; align-items: center; justify-content: center; transition: .3s; }
.small-icon svg { width: 1.125rem; height: 1.125rem; }
.collection-card {
  cursor: pointer;
  min-height: 270px;
  isolation: isolate;
  transition: opacity .6s ease, transform .35s ease, background .35s ease, box-shadow .35s ease;
}
.services-intro { max-width: 680px; margin-top: 1rem; color: hsl(var(--muted-foreground)); font-size: .95rem; line-height: 1.7; }
.services-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 1.5rem; }
.service-card { display: grid; grid-template-columns: minmax(180px,.85fr) minmax(0,1.15fr); min-height: 310px; border-radius: 1.4rem; isolation: isolate; transition: transform .35s ease,background .35s ease,box-shadow .35s ease; }
.service-card::before { z-index: 4; }
.service-card.visible:hover { transform: translateY(-6px); background: rgba(var(--theme-accent-rgb),.025); box-shadow: 0 20px 50px rgba(var(--theme-shadow-rgb),.5),0 0 24px rgba(var(--theme-accent-rgb),.06); }
.service-card__media { position: relative; z-index: 1; min-width: 0; min-height: 100%; display: grid; place-items: center; overflow: hidden; padding: 1.25rem; border-right: 1px solid rgba(var(--theme-accent-rgb),.1); background: radial-gradient(circle at center,rgba(var(--theme-accent-rgb),.075),var(--theme-black) 72%); }
.service-card__media img { width: 100%; height: 100%; max-height: 275px; display: block; object-fit: contain; filter: brightness(.82) saturate(.9); transition: transform .6s ease,filter .6s ease; }
.service-card:hover .service-card__media img { transform: scale(1.025); filter: brightness(.98) saturate(1); }
.service-card__body { position: relative; z-index: 1; min-width: 0; display: flex; flex-direction: column; align-items: flex-start; padding: clamp(1.5rem,3vw,2.25rem); }
.service-card__icon { width: 2.75rem; height: 2.75rem; display: grid; place-items: center; margin-bottom: 1.4rem; border: 1px solid rgba(var(--theme-accent-rgb),.14); border-radius: .85rem; background: rgba(var(--theme-accent-rgb),.05); }
.service-card__icon svg { width: 1.2rem; height: 1.2rem; }
.service-card h3 { margin-bottom: .8rem; font-size: 1.3rem; font-weight: 600; }
.service-card__body > p { display: -webkit-box; overflow: hidden; margin-bottom: 1.5rem; color: hsl(var(--muted-foreground)); font-size: .875rem; line-height: 1.7; -webkit-box-orient: vertical; -webkit-line-clamp: 3; }
.service-read-more { display: inline-flex; align-items: center; gap: .5rem; margin-top: auto; font-size: .7rem; font-weight: 700; letter-spacing: .09em; }
.service-read-more svg { width: .9rem; height: .9rem; transition: transform .2s ease; }
.service-read-more:hover svg { transform: translateX(4px); }
@media(max-width:950px){.services-grid{grid-template-columns:1fr}}
@media(max-width:560px){.service-card{grid-template-columns:1fr}.service-card__media{height:220px;min-height:0;padding:1rem;border-right:0;border-bottom:1px solid rgba(var(--theme-accent-rgb),.1)}.service-card__media img{max-height:188px}}
.collection-card > * { position: relative; z-index: 1; }
.collection-card::before {
  z-index: 2;
  transition: background .35s ease, filter .35s ease;
}
.collection-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: inherit;
  background: radial-gradient(circle at 50% 0%, rgba(var(--theme-accent-rgb),.09), transparent 62%);
  opacity: 0;
  transform: scale(.86);
  transition: opacity .35s ease, transform .45s ease;
  pointer-events: none;
}
.collection-card.visible:hover {
  transform: translateY(-8px) scale(1.015);
  background: rgba(var(--theme-accent-rgb),.025);
  box-shadow:
    inset 0 1px 1px rgba(var(--theme-accent-rgb),.28),
    inset 0 0 28px rgba(var(--theme-accent-rgb),.035),
    0 18px 45px rgba(var(--theme-shadow-rgb),.6),
    0 0 26px rgba(var(--theme-accent-rgb),.1),
    0 0 0 1px rgba(var(--theme-accent-rgb),.36);
}
.collection-card:hover::after {
  opacity: 1;
  transform: scale(1);
}
.collection-card:hover::before {
  background: linear-gradient(180deg,
    rgba(var(--theme-accent-rgb),.9) 0%,
    rgba(var(--theme-accent-rgb),.28) 22%,
    rgba(var(--theme-accent-rgb),0) 42%,
    rgba(var(--theme-accent-rgb),0) 58%,
    rgba(var(--theme-accent-rgb),.25) 80%,
    rgba(var(--theme-accent-rgb),.8) 100%);
  filter: drop-shadow(0 0 5px rgba(var(--theme-accent-rgb),.18));
}
.collection-card:hover .small-icon {
  transform: scale(1.1);
  color: var(--theme-black);
  background: var(--theme-accent);
  border-color: var(--theme-accent);
  box-shadow: 0 0 24px rgba(var(--theme-accent-rgb),.18);
}
.collection-card .shop-button {
  transition: color .25s ease, letter-spacing .25s ease, gap .25s ease;
}
.collection-card:hover .shop-button {
  color: var(--theme-accent);
  letter-spacing: .18em;
  gap: .75rem;
}
.collection-card h3,
.collection-card p {
  transition: color .3s ease;
}
.collection-card:hover h3 { color: var(--theme-accent); }
.collection-card:hover p { color: rgba(var(--theme-accent-rgb),.72); }
.section-border { border-top: 1px solid rgba(var(--theme-accent-rgb),.1); padding: 8rem 0; }
.section-wrap { max-width: 80rem; margin: auto; padding: 0 1.5rem; }
.testimonial-marquee-shell {
  width: 100vw;
  margin: 2.25rem 0 0 calc(50% - 50vw);
  display: grid;
  gap: 1rem;
  overflow: hidden;
}
.testimonial-marquee {
  --marquee-distance: -50%;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, var(--theme-black) 8%, var(--theme-black) 92%, transparent);
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
}
.testimonial-marquee.is-dragging { cursor: grabbing; }
.testimonial-marquee-track {
  width: max-content;
  display: flex;
  align-items: stretch;
  gap: 1rem;
  padding: .2rem 0;
  animation: testimonial-marquee 58s linear infinite;
  will-change: transform;
}
.testimonial-marquee-reverse .testimonial-marquee-track {
  animation-direction: reverse;
  animation-duration: 66s;
}
.testimonial-marquee:hover .testimonial-marquee-track {
  animation-play-state: paused;
}
.testimonial-marquee-track > blockquote {
  position: relative;
  width: clamp(300px, 31vw, 430px);
  height: 178px;
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: .85rem;
  margin: 0;
  padding: 1.35rem 1.45rem;
  border: 1px solid rgba(var(--theme-accent-rgb),.42);
  border-radius: 1rem;
  background: rgba(var(--theme-shadow-rgb),.78);
  color: rgba(247,244,255,.88);
  box-shadow: inset 0 1px rgba(var(--theme-accent-rgb),.08), 0 18px 55px rgba(var(--theme-shadow-rgb),.35);
  overflow: hidden;
  font-size: .78rem;
  font-style: italic;
  line-height: 1.48;
  white-space: pre-line;
}
.testimonial-marquee-track > blockquote.visible:hover {
  transform: none;
  background: rgba(var(--theme-shadow-rgb),.78);
  box-shadow: inset 0 1px rgba(var(--theme-accent-rgb),.08), 0 18px 55px rgba(var(--theme-shadow-rgb),.35);
}
.testimonial-card-copy {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}
.testimonial-marquee-track > blockquote footer {
  margin-top: auto;
  padding-right: 4.5rem;
  color: rgba(247,244,255,.92);
  font-size: .68rem;
  font-style: normal;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.testimonial-more-button {
  position: absolute;
  right: 1.15rem;
  bottom: 1.25rem;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: rgba(247,244,255,.88);
  font-size: .68rem;
  font-style: normal;
  font-weight: 800;
  letter-spacing: .08em;
  line-height: 1;
  text-transform: uppercase;
  text-decoration: underline;
  text-decoration-color: rgba(247,244,255,.34);
  text-underline-offset: .25rem;
  transition: color .2s, text-decoration-color .2s;
}
.testimonial-more-button:hover { color: #fff; text-decoration-color: rgba(255,255,255,.72); }
.testimonial-has-more { cursor: pointer; }
.testimonial-dialog {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 1rem;
  background: rgba(var(--theme-shadow-rgb),.74);
  backdrop-filter: blur(12px);
}
.testimonial-dialog[hidden] { display: none; }
.testimonial-dialog-panel {
  width: min(760px, 100%);
  max-height: min(760px, 86vh);
  display: grid;
  grid-template-rows: auto minmax(0,1fr);
  border: 1px solid rgba(var(--theme-accent-rgb),.28);
  border-radius: 1.2rem;
  background: var(--theme-black);
  box-shadow: 0 30px 100px rgba(var(--theme-shadow-rgb),.76);
  overflow: hidden;
}
.testimonial-dialog-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.15rem;
  border-bottom: 1px solid rgba(var(--theme-accent-rgb),.1);
}
.testimonial-dialog-header h3 {
  color: var(--theme-accent);
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.testimonial-dialog-close {
  width: 2.25rem;
  height: 2.25rem;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(var(--theme-accent-rgb),.08);
  color: rgba(var(--theme-accent-rgb),.82);
  font-size: 1.35rem;
  line-height: 1;
}
.testimonial-dialog-body {
  padding: clamp(1.25rem,4vw,2rem);
  overflow-y: auto;
  color: rgba(247,244,255,.9);
  font-size: .96rem;
  font-style: italic;
  line-height: 1.8;
  white-space: pre-line;
}
@keyframes testimonial-marquee {
  to { transform: translateX(var(--marquee-distance)); }
}
@media(max-width:640px){
  .testimonial-marquee-shell { gap: 1rem; }
  .testimonial-marquee-track { gap: 1rem; }
  .testimonial-marquee-track > blockquote { width: min(82vw, 340px); height: 188px; }
}
@media(prefers-reduced-motion:reduce){
  .testimonial-marquee-track { animation-play-state: paused; }
}
.section-heading { display: flex; flex-direction: column; align-items: center; text-align: center; margin-bottom: 4rem; }
.section-heading > span { font-size: .75rem; letter-spacing: 4px; color: rgba(var(--theme-accent-rgb),.65); font-weight: 600; margin-bottom: 1rem; }
.section-heading h2 { font-size: clamp(2.25rem,5vw,3.75rem); line-height: 1.08; font-weight: 500; letter-spacing: -1px; }
.section-heading em { font-family: "Instrument Serif",serif; font-weight: 400; }
.link-button { display: flex; align-items: center; gap: .5rem; font-size: .625rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; transition: .2s; }
.link-button:hover { gap: .75rem; }
.link-button svg { width: .875rem; height: .875rem; }
.check { flex: none; width: 1.5rem; height: 1.5rem; border-radius: 999px; background: rgba(var(--theme-accent-rgb),.1); display: grid; place-items: center; }
.check svg { width: .875rem; }
.trust-reasons { display: grid; gap: 1.35rem; }
.trust-reason { display: flex; align-items: flex-start; gap: 1rem; }
.trust-reason__icon { flex: none; width: 2.75rem; height: 2.75rem; display: grid; place-items: center; border: 1px solid rgba(var(--theme-accent-rgb),.13); border-radius: .9rem; background: rgba(var(--theme-accent-rgb),.055); color: var(--theme-accent); }
.trust-reason__icon svg { width: 1.25rem; height: 1.25rem; }
.trust-reason__icon img { width: 100%; height: 100%; object-fit: cover; border-radius: inherit; }
.trust-reason h4 { margin-bottom: .3rem; font-size: 1rem; font-weight: 600; }
.trust-reason p { color: hsl(var(--muted-foreground)); font-size: .875rem; line-height: 1.55; }
.trust-logo-art { max-width: min(400px,100%); }
.form-control { width: 100%; background: rgba(var(--theme-accent-rgb),.05); border: 1px solid rgba(var(--theme-accent-rgb),.1); border-radius: .75rem; padding: .8rem 1rem; outline: none; transition: .2s; color: var(--theme-accent); }
.form-control:focus { border-color: rgba(var(--theme-accent-rgb),.35); }
.form-control option { background: var(--theme-midnight); }
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition-property: opacity, transform;
  transition-duration: .6s;
  transition-timing-function: ease-out;
  transition-delay: var(--reveal-delay, 0s);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .1s; }.reveal-delay-2 { transition-delay: .2s; }.reveal-delay-3 { transition-delay: .3s; }
.word-reveal { color: inherit; }
.word-reveal .scroll-word {
  display: inline-block;
  opacity: .15;
  color: rgba(240,242,245,.72);
  will-change: opacity;
}
.word-reveal .scroll-word.highlight-word {
  color: var(--theme-accent);
  font-weight: 600;
}
#navbar.scrolled { background: transparent; backdrop-filter: none; border-bottom: 0; }
@media (min-width:768px) { .section-wrap { padding-left: 3rem; padding-right: 3rem; } .section-border { padding: 11rem 0; } }
@media (prefers-reduced-motion:reduce) { .reveal { opacity:1; transform:none; transition:none; } html { scroll-behavior:auto; } }
.cta-media { background: radial-gradient(circle at 50% 45%,rgba(53,25,101,.22),var(--theme-black) 70%); }
.cta-video-overlay { background: linear-gradient(180deg,rgba(var(--theme-shadow-rgb),.48),rgba(var(--theme-shadow-rgb),.7)),radial-gradient(circle at center,transparent,rgba(var(--theme-shadow-rgb),.45)); }
.section-heading.section-heading-left { align-items: flex-start; text-align: left; margin-left: 0; margin-right: 0; }
.section-heading.section-heading-left h2,.section-heading.section-heading-left span { text-align: left; }
.about-hero-visual { position: relative; width: 100%; aspect-ratio: 16/9; margin: 4rem 0 0; overflow: hidden; border: 1px solid rgba(var(--theme-accent-rgb),.14); border-radius: 1.75rem; background: var(--theme-black); box-shadow: 0 28px 70px rgba(var(--theme-shadow-rgb),.55); }
.about-hero-visual::after { content: ""; position: absolute; inset: 0; pointer-events: none; background: linear-gradient(180deg,rgba(var(--theme-shadow-rgb),.05),rgba(var(--theme-shadow-rgb),.28)),radial-gradient(circle at center,transparent 45%,rgba(var(--theme-shadow-rgb),.28)); }
.about-hero-visual img { width: 100%; height: 100%; display: block; object-fit: cover; transition: transform .7s ease,filter .7s ease; }
.about-hero-visual.visible:hover img { transform: scale(1.025); filter: brightness(1.06); }
@media(max-width:700px){.about-hero-visual{margin-top:2.5rem;border-radius:1.1rem;aspect-ratio:4/3}.about-hero-visual img{object-position:center}}
.brand-story-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 2rem; }
.brand-story-card { min-height: 390px; padding: clamp(2rem,4vw,3.5rem); justify-content: space-between; align-items: flex-start; text-align: left; }
.brand-story-card-wide { grid-column: 1/-1; min-height: 330px; display: grid; grid-template-columns: minmax(120px,.22fr) minmax(0,1fr); align-items: center; gap: clamp(2rem,5vw,5rem); }
.brand-story-card-wide .brand-story-card__icon { width: 6.25rem; height: 6.25rem; margin: 0 auto; border-radius: 1.5rem; }
.brand-story-card-wide .brand-story-card__icon svg { width: 2.7rem; height: 2.7rem; }
.brand-story-card-wide h3 { font-size: clamp(2.6rem,5.2vw,5.2rem); }
.brand-story-card-wide > div:last-child { max-width: 920px; }
.brand-story-card__icon { width: 4.5rem; height: 4.5rem; display: grid; place-items: center; margin-bottom: 3rem; border: 1px solid rgba(var(--theme-accent-rgb),.13); border-radius: 1.25rem; background: rgba(var(--theme-accent-rgb),.045); }
.brand-story-card__icon svg { width: 2rem; height: 2rem; }
.brand-story-card__eyebrow { margin-bottom: .75rem; color: rgba(var(--theme-accent-rgb),.65); font-size: .7rem; font-weight: 600; letter-spacing: .24em; }
.brand-story-card h3 { margin-bottom: 1.25rem; font-size: clamp(1.8rem,3vw,2.7rem); font-weight: 500; line-height: 1; letter-spacing: -.03em; }
.brand-story-card h3 span { font-family: "Instrument Serif",serif; font-weight: 400; font-style: italic; }
.brand-story-card > div > p:last-child,.founder-card__content > p:last-child { max-width: 58ch; color: hsl(var(--muted-foreground)); font-size: 1rem; line-height: 1.8; }
.founder-card { display: grid; grid-template-columns: minmax(150px,.78fr) minmax(0,1.35fr); align-items: center; gap: clamp(1.75rem,3vw,3rem); }
.founder-avatar { position: relative; overflow: hidden; width: 100%; aspect-ratio: 1; border: 1px solid rgba(var(--theme-accent-rgb),.16); border-radius: 1.5rem; background: var(--theme-black); }
.founder-avatar::after { content: ""; position: absolute; inset: 0; pointer-events: none; box-shadow: inset 0 0 45px rgba(var(--theme-shadow-rgb),.35); }
.founder-avatar img { width: 100%; height: 100%; display: block; object-fit: cover; }
.reader-scroll-locked { overflow: hidden; }
.reader-scroll { position: relative; height: 100vh; min-height: 680px; margin: clamp(3rem,8vw,7rem) calc(50% - 50vw) 0; }
.reader-scroll__sticky { position: sticky; top: 0; height: 100vh; min-height: 680px; overflow: hidden; display: grid; align-items: center; background: var(--theme-black); }
.reader-scroll__stage { position: absolute; inset: 0; overflow: hidden; }
.reader-scroll__video { --reader-video-x: 0; position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 38%; opacity: 0; transform: translateX(var(--reader-video-x)); transition: opacity .65s ease; }
.reader-scroll__video[data-reader-video="3"] { --reader-video-x: clamp(1rem,3vw,3.5rem); }
.reader-scroll__video.is-active { opacity: 1; }
.reader-scroll__mobile-image { display: none; }
.reader-scroll__stage::after { content: ""; position: absolute; inset: 0; pointer-events: none; background: linear-gradient(180deg,rgba(var(--theme-shadow-rgb),.18),transparent 24%,rgba(var(--theme-shadow-rgb),.24)); }
.reader-scroll__content { position: relative; z-index: 2; width: min(640px,calc(100% - 2rem)); margin-left: auto; margin-right: clamp(1rem,7vw,6rem); padding: clamp(1.5rem,3.2vw,2.5rem); opacity: 0; transform: translateY(28px); transition: opacity .75s ease,transform .75s ease; pointer-events: none; }
.reader-scroll.is-complete .reader-scroll__content { opacity: 1; transform: translateY(0); pointer-events: auto; }
.reader-scroll__content .brand-story-card__eyebrow { color: rgba(233,226,255,.76); }
.reader-scroll__content h3 { margin: .8rem 0 1.25rem; color: var(--theme-text); text-shadow: 0 0 28px rgba(var(--theme-accent-rgb),.18); font-size: clamp(3rem,5.5vw,5.6rem); font-weight: 500; line-height: .88; letter-spacing: -.04em; }
.reader-scroll__content h3 span { display: block; font-family: "Instrument Serif",serif; font-weight: 400; font-style: italic; }
.reader-scroll__content p:last-child { color: rgba(233,226,255,.86); text-shadow: 0 0 18px rgba(var(--theme-black-rgb),.6); font-size: clamp(1rem,1.4vw,1.2rem); line-height: 1.85; }
@media(min-width:901px){.reader-scroll:not(.is-complete) .reader-scroll__content.reveal.visible{opacity:0;transform:translateY(28px);pointer-events:none}.reader-scroll.is-complete .reader-scroll__content.reveal.visible{opacity:1;transform:translateY(0);pointer-events:auto}}
@media(max-width:900px){.brand-story-grid{grid-template-columns:1fr}.brand-story-card{min-height:0}.founder-card{grid-template-columns:180px minmax(0,1fr)}}
@media(max-width:900px){.brand-story-card-wide{grid-template-columns:1fr}.brand-story-card-wide .brand-story-card__icon{margin-bottom:1rem}.brand-story-card{padding:1.5rem}.brand-story-card__icon{margin-bottom:2rem}.founder-card{grid-template-columns:1fr}.founder-avatar{max-width:220px}.reader-scroll{height:auto;min-height:0;margin-top:3rem}.reader-scroll__sticky{position:relative;height:auto;min-height:0;display:block;padding:0 0 3rem}.reader-scroll__stage{display:none}.reader-scroll__mobile-image{display:block;width:100%;margin:0}.reader-scroll__mobile-image img{width:100%;max-height:58vh;object-fit:contain;object-position:center bottom}.reader-scroll__content{width:100%;margin:0;padding:1.5rem 1.5rem 0;opacity:1;transform:none;pointer-events:auto}.reader-scroll.is-complete .reader-scroll__content{padding-bottom:0}.reader-scroll__content h3{font-size:clamp(2.6rem,13vw,4rem)}}
@media(max-width:900px){.reader-scroll__mobile-image.reveal,.reader-scroll__content.reveal{opacity:0;transform:translateY(24px);transition:opacity .8s ease,transform .8s ease}.reader-scroll__mobile-image.reveal.visible,.reader-scroll__content.reveal.visible{opacity:1;transform:translateY(0)}}
@media(min-width:601px) and (max-width:900px){.reader-scroll__content h3{font-size:clamp(3.4rem,8vw,4.6rem);white-space:nowrap}}
@media(max-width:600px){.trust-logo-art{order:-1;max-width:min(78vw,320px);margin-bottom:2rem}}
.hero-video {
  opacity: 1;
  transition: opacity 1.1s ease, filter 1.1s ease;
}
.hero-video.hero-video-dimmed {
  opacity: .42;
  filter: brightness(.82) contrast(1.06);
}
.hero-content {
  opacity: 0;
  transform: translateY(28px) scale(.985);
  pointer-events: none;
  transition: opacity .9s ease, transform .9s ease;
}
.hero-content-ready .hero-content {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.hero-sanctuary-title {
  width: min(100%, 1500px);
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(2.35rem,5.5vw,4.75rem);
  line-height: 1.02;
  letter-spacing: 0;
  white-space: normal;
  overflow-wrap: anywhere;
}
.hero-sanctuary-copy {
  width: min(100%, 920px);
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(1rem,2.6vw,1.25rem);
  line-height: 1.65;
  overflow-wrap: anywhere;
}
.hero-sanctuary-copy span { display: inline; white-space: normal; }
@media(min-width:1180px){
  #home .relative.z-10 {
    width: min(100%, 1600px);
    max-width: 1600px;
  }
  .hero-sanctuary-title { white-space: nowrap; }
  .hero-sanctuary-copy span { display: block; }
}
@media(max-width:520px){
  #home { min-height: 100svh; padding-top: 6rem; padding-bottom: 4rem; }
  #home .relative.z-10 { width: 100%; padding-left: 1rem; padding-right: 1rem; padding-top: 5rem; }
  .hero-sanctuary-title { font-size: clamp(2rem,10vw,2.75rem); line-height: 1.08; margin-bottom: 1rem; }
  .hero-sanctuary-copy { font-size: 1rem; line-height: 1.55; margin-bottom: 2rem; }
  #home .btn-primary { width: min(100%, 210px); padding: .95rem 1.25rem; }
}

::selection {
  background: rgba(var(--theme-accent-rgb),.58);
  color: var(--theme-text);
}
body,
body input,
body select,
body textarea,
body button {
  color: var(--theme-text);
}
body a {
  color: inherit;
}
body input::placeholder,
body textarea::placeholder {
  color: rgba(233,226,255,.58);
}
body svg {
  color: inherit;
  stroke: currentColor !important;
}
.nav-connect-button,
.nav-connect-button:hover,
.mobile-connect-button,
.mobile-connect-button:hover,
.btn-primary,
.collection-card:hover .small-icon {
  color: var(--theme-text);
}
.text-muted-foreground {
  color: var(--theme-text-soft) !important;
}
.text-hero-subtitle {
  color: rgba(247,244,255,.88) !important;
}
