:root {
  --ink: #06100e;
  --ink-deep: #030806;
  --ink-soft: #0b1714;
  --panel: rgba(15, 28, 24, 0.76);
  --paper: #f1eee5;
  --paper-soft: #d7d2c5;
  --muted: #8e9993;
  --mint: #a9f5d0;
  --mint-strong: #55e6a5;
  --cobalt: #477df2;
  --coral: #f07b62;
  --gold: #d9bd79;
  --line: rgba(230, 238, 230, 0.13);
  --line-bright: rgba(201, 249, 220, 0.28);
  --serif: "Iowan Old Style", "Baskerville", "Times New Roman", serif;
  --sans: Inter, "Helvetica Neue", Arial, sans-serif;
  --radius: 24px;
  --ease: cubic-bezier(.2, .75, .2, 1);
  --header-height: 82px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--ink-deep);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--paper);
  background:
    radial-gradient(circle at 78% 8%, rgba(45, 106, 83, .18), transparent 28rem),
    linear-gradient(180deg, var(--ink) 0%, var(--ink-deep) 100%);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -4;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, .018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .018) 1px, transparent 1px);
  background-size: 74px 74px;
  mask-image: linear-gradient(to bottom, #000, transparent 75%);
}

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

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

button,
input {
  font: inherit;
}

button {
  color: inherit;
}

::selection {
  color: var(--ink-deep);
  background: var(--mint);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 200;
  padding: 12px 16px;
  color: var(--ink);
  background: var(--mint);
  border-radius: 8px;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.page-progress {
  position: fixed;
  inset: 0 0 auto;
  z-index: 120;
  height: 2px;
  pointer-events: none;
}

.page-progress i {
  display: block;
  width: 100%;
  height: 100%;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, var(--mint-strong), var(--cobalt), var(--coral));
  box-shadow: 0 0 20px rgba(85, 230, 165, .65);
}

#particle-field {
  position: fixed;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: .48;
}

.ambient {
  position: fixed;
  inset: 0;
  z-index: -3;
  overflow: hidden;
  pointer-events: none;
}

.bokeh {
  position: absolute;
  display: block;
  border-radius: 50%;
  filter: blur(10px);
  opacity: .23;
  will-change: transform;
}

.bokeh::after {
  content: "";
  position: absolute;
  inset: 18%;
  border: 1px solid rgba(255, 255, 255, .26);
  border-radius: inherit;
}

.bokeh-a {
  top: 14%;
  left: 7%;
  width: 150px;
  height: 150px;
  background: rgba(71, 125, 242, .38);
  animation: drift-a 18s ease-in-out infinite alternate;
}

.bokeh-b {
  top: 47%;
  right: 4%;
  width: 210px;
  height: 210px;
  background: rgba(240, 123, 98, .3);
  animation: drift-b 22s ease-in-out infinite alternate;
}

.bokeh-c {
  bottom: 5%;
  left: 42%;
  width: 110px;
  height: 110px;
  background: rgba(85, 230, 165, .34);
  animation: drift-c 14s ease-in-out infinite alternate;
}

.aurora {
  position: absolute;
  top: -35%;
  right: -10%;
  width: 65vw;
  height: 85vh;
  border-radius: 50%;
  background: conic-gradient(from 220deg, transparent, rgba(50, 159, 116, .16), rgba(63, 91, 207, .11), transparent 58%);
  filter: blur(70px);
  animation: aurora-turn 24s linear infinite;
}

.cursor-aura {
  --x: 50vw;
  --y: 35vh;
  position: fixed;
  inset: 0;
  z-index: 110;
  pointer-events: none;
  background: radial-gradient(220px circle at var(--x) var(--y), rgba(169, 245, 208, .08), transparent 72%);
  mix-blend-mode: screen;
}

.page-grain {
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
  opacity: .035;
  background-image:
    radial-gradient(circle at 20% 30%, #fff 0 .6px, transparent .8px),
    radial-gradient(circle at 70% 60%, #fff 0 .5px, transparent .75px);
  background-size: 11px 13px, 17px 19px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  height: var(--header-height);
  display: flex;
  align-items: center;
  gap: clamp(24px, 4vw, 72px);
  padding: 0 clamp(18px, 4vw, 68px);
  border-bottom: 1px solid transparent;
  transition: height .45s var(--ease), background .45s, border-color .45s, box-shadow .45s;
}

.site-header.is-scrolled {
  height: 68px;
  background: rgba(3, 10, 8, .78);
  border-color: var(--line);
  box-shadow: 0 18px 50px rgba(0, 0, 0, .2);
  -webkit-backdrop-filter: blur(22px) saturate(135%);
  backdrop-filter: blur(22px) saturate(135%);
}

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

.brand-crest {
  position: relative;
  width: 48px;
  height: 48px;
  overflow: hidden;
  border: 1px solid var(--line-bright);
  border-radius: 50%;
  background: rgba(232, 244, 234, .06);
  box-shadow: inset 0 0 22px rgba(169, 245, 208, .08);
  transition: transform .55s var(--ease), border-color .35s;
}

.brand:hover .brand-crest {
  transform: rotate(8deg) scale(1.06);
  border-color: var(--mint);
}

.brand-crest img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: invert(1) sepia(.35) saturate(.8) brightness(1.6);
  transform: scale(1.35);
  opacity: .8;
}

.brand-copy {
  display: grid;
  gap: 2px;
  line-height: 1;
  letter-spacing: .12em;
}

.brand-copy strong {
  font-size: 11px;
  font-weight: 720;
}

.brand-copy small {
  color: var(--mint);
  font-size: 9px;
  letter-spacing: .32em;
}

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

.site-header nav a {
  position: relative;
  padding: 10px 0;
  color: #b8c1bc;
  font-size: 12px;
  font-weight: 620;
  letter-spacing: .08em;
}

.site-header nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 1px;
  background: var(--mint);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .4s var(--ease);
}

.site-header nav a:hover,
.site-header nav a.is-active {
  color: var(--paper);
}

.site-header nav a:hover::after,
.site-header nav a.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
}

.saved-trigger {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px;
  color: var(--paper-soft);
  background: none;
  border: 0;
  cursor: pointer;
}

.saved-trigger b {
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  color: var(--ink);
  background: var(--mint);
  border-radius: 50%;
  font-size: 10px;
  transition: transform .35s var(--ease);
}

.saved-trigger:hover b {
  transform: rotate(10deg) scale(1.15);
}

.menu-button {
  display: none;
  width: 43px;
  height: 43px;
  padding: 0;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.menu-button i {
  display: block;
  width: 16px;
  height: 1px;
  margin: 4px auto;
  background: currentColor;
  transition: transform .3s;
}

.menu-button[aria-expanded="true"] i:first-child {
  transform: translateY(2.5px) rotate(45deg);
}

.menu-button[aria-expanded="true"] i:last-child {
  transform: translateY(-2.5px) rotate(-45deg);
}

.mobile-nav {
  display: none;
}

.button {
  position: relative;
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 22px;
  overflow: hidden;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 760;
  letter-spacing: .06em;
  cursor: pointer;
  transition: color .35s, border-color .35s, transform .35s var(--ease), box-shadow .35s;
}

.button::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(110deg, transparent 20%, rgba(255, 255, 255, .35), transparent 55%);
  transform: translateX(-130%);
  transition: transform .8s var(--ease);
}

.button:hover::before {
  transform: translateX(130%);
}

.button > * {
  position: relative;
  z-index: 1;
}

.button-small {
  min-height: 40px;
  padding: 0 18px;
}

.button-ghost {
  border-color: var(--line);
}

.button-ghost:hover {
  border-color: var(--mint);
  box-shadow: 0 0 30px rgba(85, 230, 165, .08);
}

.button-primary {
  color: #03100c;
  background: linear-gradient(115deg, #78efb8, #c2f7d9 54%, #6ee9b0);
  box-shadow: 0 14px 45px rgba(79, 225, 162, .18);
}

.button-primary:hover {
  box-shadow: 0 20px 60px rgba(79, 225, 162, .28);
}

.button-light {
  color: var(--ink);
  background: var(--paper);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 5px;
  color: var(--paper);
  border-bottom: 1px solid var(--line-bright);
  font-size: 13px;
  transition: color .3s, border-color .3s;
}

.text-link i {
  color: var(--mint);
  font-style: normal;
  transition: transform .35s var(--ease);
}

.text-link:hover {
  color: var(--mint);
  border-color: var(--mint);
}

.text-link:hover i {
  transform: translate(4px, -4px);
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity .85s var(--ease), transform .85s var(--ease);
}

.js [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

[data-tilt] {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  --lift: 0px;
  transform: perspective(1100px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y)) translateY(var(--lift));
  transform-style: preserve-3d;
  transition: transform .5s var(--ease);
}

.hero-section {
  position: relative;
  display: grid;
  min-height: calc(100svh - var(--header-height));
  grid-template-columns: minmax(0, .92fr) minmax(520px, 1.08fr);
  align-items: center;
  gap: clamp(30px, 5vw, 90px);
  max-width: 1600px;
  margin: 0 auto;
  padding: 72px clamp(22px, 5.5vw, 92px) 110px;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 6%;
  left: 44%;
  width: 1px;
  height: 88%;
  background: linear-gradient(transparent, var(--line-bright), transparent);
}

.kicker,
.section-heading > div > span,
.listing-hero > span,
.process-intro > span,
.legal-hero > span,
.about-hero span,
.cta-section > div > span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--mint);
  font-size: 10px;
  font-weight: 760;
  letter-spacing: .25em;
}

.kicker i {
  width: 7px;
  height: 7px;
  background: var(--mint);
  border-radius: 50%;
  box-shadow: 0 0 0 7px rgba(169, 245, 208, .08), 0 0 22px var(--mint);
  animation: pulse-dot 2.4s ease-in-out infinite;
}

.kicker b {
  color: var(--muted);
}

.hero-copy h1 {
  margin: 26px 0 26px;
  font-family: var(--serif);
  font-size: clamp(55px, 6.8vw, 112px);
  font-weight: 400;
  letter-spacing: -.065em;
  line-height: .85;
}

.hero-copy h1 em,
.legal-hero h1 em,
.about-hero h1 em {
  color: transparent;
  background: linear-gradient(100deg, var(--paper) 10%, var(--mint) 42%, #8db3ff 68%, var(--paper) 90%);
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  font-weight: 400;
  animation: text-shimmer 8s linear infinite;
}

.hero-copy > p {
  max-width: 590px;
  margin: 0;
  color: #aeb8b2;
  font-size: clamp(15px, 1.2vw, 19px);
}

.hero-search,
.listing-search {
  position: relative;
  display: flex;
  width: min(100%, 660px);
  min-height: 70px;
  align-items: center;
  margin-top: 38px;
  overflow: hidden;
  border: 1px solid var(--line-bright);
  border-radius: 999px;
  background: rgba(9, 22, 18, .74);
  box-shadow: 0 22px 70px rgba(0, 0, 0, .28), inset 0 1px rgba(255, 255, 255, .04);
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
  transition: border-color .35s, box-shadow .35s;
}

.hero-search:focus-within,
.listing-search:focus-within {
  border-color: var(--mint);
  box-shadow: 0 22px 70px rgba(0, 0, 0, .28), 0 0 0 5px rgba(169, 245, 208, .07);
}

.search-icon {
  position: relative;
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  margin-left: 24px;
  border: 1px solid var(--paper-soft);
  border-radius: 50%;
}

.search-icon::after {
  content: "";
  position: absolute;
  right: -5px;
  bottom: -3px;
  width: 7px;
  height: 1px;
  background: var(--paper-soft);
  transform: rotate(45deg);
}

.hero-search input,
.listing-search input {
  min-width: 0;
  flex: 1;
  padding: 0 20px;
  color: var(--paper);
  background: transparent;
  border: 0;
  outline: 0;
}

.hero-search input::placeholder,
.listing-search input::placeholder {
  color: #68756e;
}

.hero-search button,
.listing-search button {
  align-self: stretch;
  display: inline-flex;
  min-width: 185px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin: 6px;
  color: var(--ink);
  background: var(--mint);
  border: 0;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  cursor: pointer;
  transition: background .3s, transform .3s;
}

.hero-search button:hover,
.listing-search button:hover {
  background: var(--paper);
}

.hero-search button i,
.listing-search button i {
  font-style: normal;
}

.hero-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 26px;
  color: #8b9992;
  font-size: 10px;
  letter-spacing: .11em;
}

.hero-notes b {
  margin-right: 6px;
  color: var(--mint);
}

.hero-gallery {
  position: relative;
  min-height: 720px;
  isolation: isolate;
}

.hero-orbit {
  position: absolute;
  top: 11%;
  right: 5%;
  width: min(35vw, 540px);
  aspect-ratio: 1;
  border: 1px solid rgba(169, 245, 208, .16);
  border-radius: 50%;
  box-shadow:
    0 0 0 40px rgba(169, 245, 208, .018),
    0 0 0 90px rgba(169, 245, 208, .012),
    inset 0 0 90px rgba(85, 230, 165, .04);
  animation: orbit-breathe 8s ease-in-out infinite alternate;
}

.hero-shot {
  position: absolute;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 4px;
  background: var(--ink-soft);
  box-shadow: 0 40px 90px rgba(0, 0, 0, .45);
}

.hero-shot::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(169, 245, 208, .15), transparent 35%, transparent 70%, rgba(71, 125, 242, .16));
  opacity: 0;
  transition: opacity .5s;
}

.hero-shot:hover::after {
  opacity: 1;
}

.hero-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.1s var(--ease), filter .6s;
}

.hero-shot:hover img {
  transform: scale(1.055);
  filter: saturate(1.08);
}

.hero-shot span {
  position: absolute;
  z-index: 2;
  right: 14px;
  bottom: 12px;
  left: 14px;
  display: flex;
  justify-content: space-between;
  color: white;
  font-size: 9px;
  font-weight: 720;
  letter-spacing: .15em;
  text-shadow: 0 2px 12px #000;
}

.hero-shot span b {
  color: var(--mint);
}

.hero-shot-1 {
  top: 4%;
  right: 2%;
  z-index: 2;
  width: 66%;
  height: 57%;
}

.hero-shot-2 {
  bottom: 6%;
  left: 1%;
  z-index: 3;
  width: 45%;
  height: 46%;
}

.hero-shot-3 {
  right: 0;
  bottom: 0;
  z-index: 1;
  width: 48%;
  height: 32%;
}

.floating-seal {
  position: absolute;
  top: 46%;
  left: 40%;
  z-index: 5;
  width: 150px;
  height: 150px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-bright);
  border-radius: 50%;
  background: rgba(5, 14, 11, .86);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .38);
  animation: seal-float 6s ease-in-out infinite;
}

.floating-seal img {
  width: 86px;
  height: 86px;
  object-fit: cover;
  filter: invert(1) sepia(.3) brightness(1.5);
  opacity: .32;
}

.floating-seal span {
  position: absolute;
  max-width: 85px;
  text-align: center;
  color: var(--mint);
  font-size: 8px;
  font-weight: 760;
  letter-spacing: .22em;
}

.signal-strip {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: rgba(0, 0, 0, .17);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 28s linear infinite;
}

.marquee-track span {
  display: inline-flex;
  height: 54px;
  align-items: center;
  gap: 34px;
  padding-right: 34px;
  color: #92a198;
  font-size: 10px;
  font-weight: 720;
  letter-spacing: .2em;
}

.marquee-track i {
  color: var(--mint);
  font-style: normal;
}

.section {
  position: relative;
  max-width: 1680px;
  margin: 0 auto;
  padding: 130px clamp(16px, 4.4vw, 74px);
  content-visibility: auto;
  contain-intrinsic-size: 1000px;
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr minmax(260px, 440px);
  align-items: end;
  gap: 50px;
  margin-bottom: 52px;
}

.section-heading h2 {
  margin: 12px 0 0;
  font-family: var(--serif);
  font-size: clamp(48px, 6vw, 88px);
  font-weight: 400;
  letter-spacing: -.05em;
  line-height: .94;
}

.section-heading > div:last-child p {
  margin: 0 0 24px;
  color: #9ca8a1;
  font-size: 15px;
}

.section-heading.compact {
  grid-template-columns: 1fr auto;
}

.section-heading.compact h2 {
  font-size: clamp(46px, 5vw, 76px);
}

.image-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 34px 18px;
}

.image-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: var(--radius);
  background: rgba(11, 24, 20, .62);
  contain: layout paint;
  transition: transform .5s var(--ease), border-color .4s, background .4s, box-shadow .45s;
}

.image-card:nth-child(5n + 2) {
  margin-top: 54px;
}

.image-card:hover {
  --lift: -9px;
  border-color: var(--line-bright);
  background: rgba(15, 31, 26, .88);
  box-shadow: 0 28px 80px rgba(0, 0, 0, .34), 0 0 45px rgba(85, 230, 165, .05);
}

.card-visual {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #101916;
}

.orientation-portrait .card-visual {
  aspect-ratio: 4 / 5;
}

.orientation-square .card-visual {
  aspect-ratio: 1;
}

.card-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .9s var(--ease), filter .55s;
}

.image-card:hover .card-visual img {
  transform: scale(1.06);
  filter: contrast(1.04) saturate(1.07);
}

.card-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(360px circle at var(--mx, 50%) var(--my, 50%), rgba(255, 255, 255, .2), transparent 54%);
  opacity: 0;
  transition: opacity .4s;
}

.image-card:hover .card-visual::after {
  opacity: 1;
}

.card-sheen {
  position: absolute;
  top: -35%;
  bottom: -35%;
  left: -35%;
  width: 20%;
  z-index: 2;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .24), transparent);
  transform: rotate(14deg);
  transition: left .85s var(--ease);
  pointer-events: none;
}

.image-card:hover .card-sheen {
  left: 120%;
}

.card-corner {
  position: absolute;
  top: 13px;
  left: 13px;
  z-index: 3;
  padding: 6px 9px;
  color: white;
  background: rgba(4, 10, 8, .62);
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 999px;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  font-size: 7px;
  font-weight: 800;
  letter-spacing: .17em;
}

.card-view {
  position: absolute;
  right: 15px;
  bottom: 15px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  color: var(--ink);
  background: var(--paper);
  border-radius: 999px;
  font-size: 9px;
  font-weight: 750;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .35s, transform .35s var(--ease);
}

.card-view i {
  width: 5px;
  height: 5px;
  background: var(--mint-strong);
  border-radius: 50%;
}

.image-card:hover .card-view {
  opacity: 1;
  transform: translateY(0);
}

.card-body {
  display: flex;
  min-height: 100px;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  padding: 18px 18px 20px;
}

.card-meta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 10px;
}

.card-meta-row > span {
  color: var(--mint);
  font-size: 8px;
  font-weight: 760;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.card-id {
  max-width: 100%;
  overflow: hidden;
  padding: 3px 7px;
  color: #8c9a92;
  border: 1px solid rgba(169, 245, 208, .18);
  border-radius: 999px;
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: 7px;
  font-weight: 700;
  letter-spacing: .09em;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition: color .25s, border-color .25s, background .25s, transform .25s;
}

.card-id:hover {
  color: var(--mint);
  background: rgba(169, 245, 208, .06);
  border-color: rgba(169, 245, 208, .42);
  transform: translateY(-1px);
}

.card-body h3 {
  margin: 7px 0 0;
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  letter-spacing: -.025em;
  line-height: 1.12;
}

.favorite-button {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  place-items: center;
  padding: 0;
  color: var(--paper);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 50%;
  cursor: pointer;
  transition: color .3s, background .3s, border-color .3s, transform .35s var(--ease);
}

.favorite-button span {
  font-size: 20px;
  line-height: 1;
}

.favorite-button:hover,
.favorite-button[aria-pressed="true"] {
  color: var(--ink);
  background: var(--mint);
  border-color: var(--mint);
  transform: rotate(8deg) scale(1.08);
}

.favorite-button[aria-pressed="true"] span::before {
  content: "♥";
}

.favorite-button[aria-pressed="true"] span {
  font-size: 0;
}

.favorite-button[aria-pressed="true"] span::before {
  font-size: 17px;
}

.collection-section {
  padding-top: 90px;
}

.collection-rail {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: 12px;
  min-height: 570px;
}

.collection-tile {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--ink-soft);
}

.collection-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(2, 8, 6, .92), transparent 64%);
}

.collection-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.75) brightness(.75);
  transition: transform 1s var(--ease), filter .6s;
}

.collection-tile:hover img {
  transform: scale(1.07);
  filter: saturate(1.05) brightness(.88);
}

.tile-number {
  position: absolute;
  z-index: 2;
  top: 18px;
  left: 18px;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .3);
  border-radius: 50%;
  font-size: 9px;
}

.collection-tile > div {
  position: absolute;
  z-index: 2;
  right: 20px;
  bottom: 23px;
  left: 20px;
}

.collection-tile small {
  color: var(--mint);
  font-size: 8px;
  font-weight: 750;
  letter-spacing: .19em;
}

.collection-tile h3 {
  margin: 7px 0 14px;
  font-family: var(--serif);
  font-size: clamp(27px, 2.3vw, 43px);
  font-weight: 400;
}

.collection-tile b {
  font-size: 9px;
  letter-spacing: .12em;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .35s, transform .35s;
}

.collection-tile:hover b {
  opacity: 1;
  transform: translateY(0);
}

.process-section {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: clamp(60px, 8vw, 150px);
  padding: 150px clamp(22px, 7vw, 120px);
  border-block: 1px solid var(--line);
  background:
    radial-gradient(circle at 16% 55%, rgba(71, 125, 242, .1), transparent 24rem),
    rgba(3, 10, 8, .52);
}

.process-intro h2 {
  margin: 18px 0;
  font-family: var(--serif);
  font-size: clamp(52px, 6vw, 92px);
  font-weight: 400;
  letter-spacing: -.06em;
  line-height: .9;
}

.process-intro p {
  max-width: 440px;
  color: #94a099;
}

.process-steps {
  display: grid;
}

.process-steps article {
  position: relative;
  display: grid;
  grid-template-columns: 50px 60px 1fr;
  align-items: start;
  gap: 20px;
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
}

.process-steps article b {
  color: var(--mint);
  font-size: 11px;
  letter-spacing: .14em;
}

.process-steps article i {
  position: relative;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line-bright);
  border-radius: 50%;
  transition: background .35s, transform .35s;
}

.process-steps article i::before,
.process-steps article i::after {
  content: "";
  position: absolute;
  top: 19px;
  left: 11px;
  width: 17px;
  height: 1px;
  background: var(--mint);
}

.process-steps article i::after {
  transform: rotate(90deg);
}

.process-steps article:hover i {
  background: rgba(169, 245, 208, .1);
  transform: rotate(90deg);
}

.process-steps h3 {
  margin: 0 0 7px;
  font-family: var(--serif);
  font-size: 29px;
  font-weight: 400;
}

.process-steps p {
  grid-column: 3;
  margin: 0;
  color: #87948d;
  font-size: 13px;
}

.cta-section {
  position: relative;
  display: grid;
  min-height: 470px;
  grid-template-columns: 220px 1fr auto;
  align-items: center;
  gap: clamp(30px, 5vw, 80px);
  max-width: 1540px;
  margin: 100px auto 120px;
  overflow: hidden;
  padding: 60px clamp(30px, 6vw, 90px);
  color: var(--ink);
  background:
    linear-gradient(120deg, rgba(255, 255, 255, .16), transparent 45%),
    var(--mint);
  border-radius: 36px;
  box-shadow: 0 45px 100px rgba(0, 0, 0, .32);
}

.cta-section::after {
  content: "";
  position: absolute;
  right: 16%;
  bottom: -75%;
  width: 580px;
  height: 580px;
  border: 1px solid rgba(3, 16, 12, .16);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(3, 16, 12, .035), 0 0 0 140px rgba(3, 16, 12, .025);
}

.cta-section > img {
  position: relative;
  z-index: 2;
  width: 210px;
  height: 210px;
  object-fit: cover;
  filter: contrast(1.4);
  mix-blend-mode: multiply;
  opacity: .42;
  animation: seal-turn 25s linear infinite;
}

.cta-section > div:not(.cta-bokeh) {
  position: relative;
  z-index: 2;
}

.cta-section > div > span {
  color: #143b2d;
}

.cta-section h2 {
  margin: 15px 0 0;
  font-family: var(--serif);
  font-size: clamp(46px, 5vw, 80px);
  font-weight: 400;
  letter-spacing: -.055em;
  line-height: .9;
}

.cta-section .button {
  position: relative;
  z-index: 2;
}

.cta-bokeh {
  position: absolute;
  top: -70px;
  right: 17%;
  width: 190px;
  height: 190px;
  background: rgba(255, 255, 255, .3);
  border-radius: 50%;
  filter: blur(3px);
  animation: cta-float 8s ease-in-out infinite alternate;
}

.listing-hero {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  padding: 120px clamp(22px, 8vw, 140px) 80px;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(3, 9, 7, .95), rgba(8, 27, 21, .74)),
    radial-gradient(circle at 75% 20%, rgba(71, 125, 242, .22), transparent 30rem);
}

.listing-hero h1 {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 20px 0;
  font-family: var(--serif);
  font-size: clamp(58px, 8vw, 125px);
  font-weight: 400;
  letter-spacing: -.065em;
  line-height: .88;
}

.listing-hero > p {
  position: relative;
  z-index: 2;
  max-width: 620px;
  color: #9aa69f;
  font-size: 18px;
}

.listing-search {
  position: absolute;
  z-index: 3;
  right: clamp(22px, 8vw, 140px);
  bottom: 80px;
  width: min(43vw, 610px);
  margin: 0;
}

.result-line {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 54px;
  color: #87958d;
  font-size: 11px;
  letter-spacing: .09em;
}

.result-line strong {
  color: var(--paper);
  font-family: var(--serif);
  font-size: 27px;
  font-weight: 400;
}

.result-line i {
  width: 40px;
  height: 1px;
  background: var(--line-bright);
}

.listing-orb {
  position: absolute;
  top: -230px;
  right: 5%;
  width: 630px;
  height: 630px;
  border: 1px solid rgba(169, 245, 208, .13);
  border-radius: 50%;
  box-shadow: 0 0 0 80px rgba(169, 245, 208, .02), inset 0 0 120px rgba(71, 125, 242, .08);
  animation: listing-orbit 10s ease-in-out infinite alternate;
}

.browse-layout {
  display: grid;
  grid-template-columns: 270px minmax(0, 1fr);
  gap: 50px;
  max-width: 1680px;
  margin: 0 auto;
  padding: 70px clamp(16px, 4.4vw, 74px) 140px;
}

.filter-panel {
  align-self: start;
  position: sticky;
  top: 92px;
  padding: 26px 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(8, 20, 16, .72);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.filter-panel > div {
  display: flex;
  justify-content: space-between;
  margin-bottom: 28px;
  color: var(--mint);
  font-size: 9px;
  font-weight: 750;
  letter-spacing: .18em;
}

.filter-panel > div button {
  display: none;
}

.filter-panel fieldset {
  padding: 22px 0;
  border: 0;
  border-top: 1px solid var(--line);
}

.filter-panel legend {
  margin-bottom: 13px;
  color: var(--paper);
  font-family: var(--serif);
  font-size: 21px;
}

.filter-panel label {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 0;
  color: #8e9a93;
  font-size: 12px;
  cursor: pointer;
  transition: color .25s;
}

.filter-panel label:hover,
.filter-panel label:has(input:checked) {
  color: var(--paper);
}

.filter-panel input {
  appearance: none;
  width: 13px;
  height: 13px;
  margin: 0;
  border: 1px solid #57655e;
  border-radius: 50%;
}

.filter-panel input:checked {
  background: var(--mint);
  border: 3px solid var(--ink-soft);
  outline: 1px solid var(--mint);
}

.filter-panel label span {
  flex: 1;
}

.filter-panel label b {
  color: #59675f;
  font-size: 9px;
}

.filter-panel .button {
  width: 100%;
  margin-top: 9px;
}

.reset-link {
  display: block;
  margin-top: 18px;
  color: #6f7d75;
  text-align: center;
  font-size: 10px;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.browse-results .image-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.empty-state {
  display: grid;
  min-height: 600px;
  place-items: center;
  align-content: center;
  text-align: center;
}

.empty-state > i {
  display: grid;
  width: 100px;
  height: 100px;
  place-items: center;
  color: var(--mint);
  border: 1px solid var(--line-bright);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 50px;
  font-style: normal;
  box-shadow: 0 0 0 25px rgba(169, 245, 208, .02);
}

.empty-state h2 {
  margin: 30px 0 8px;
  font: 45px var(--serif);
}

.empty-state p {
  color: var(--muted);
}

.collections-hero {
  min-height: 670px;
}

.collections-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
  max-width: 1680px;
  margin: 0 auto;
  padding: 70px clamp(16px, 4.4vw, 74px) 80px;
}

.collection-card {
  position: relative;
  min-height: 520px;
  grid-column: span 4;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--ink-soft);
}

.collection-card-wide {
  grid-column: span 8;
}

.collection-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.72) brightness(.72);
  transition: transform 1.1s var(--ease), filter .6s;
}

.collection-card:hover img {
  transform: scale(1.055);
  filter: saturate(1) brightness(.85);
}

.collection-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(2, 8, 6, .94), transparent 66%);
}

.collection-index {
  position: absolute;
  z-index: 3;
  top: 20px;
  right: 20px;
  color: white;
  font-size: 9px;
  letter-spacing: .2em;
}

.collection-overlay {
  position: absolute;
  z-index: 3;
  right: 28px;
  bottom: 28px;
  left: 28px;
}

.collection-overlay small {
  color: var(--mint);
  font-size: 8px;
  font-weight: 740;
  letter-spacing: .2em;
}

.collection-overlay h2 {
  margin: 8px 0 13px;
  font-family: var(--serif);
  font-size: clamp(42px, 5vw, 76px);
  font-weight: 400;
  letter-spacing: -.05em;
}

.collection-overlay p {
  margin: 0;
  font-size: 10px;
  font-weight: 720;
  letter-spacing: .1em;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .35s, transform .35s;
}

.collection-card:hover .collection-overlay p {
  opacity: 1;
  transform: translateY(0);
}

.collection-end {
  display: flex;
  align-items: center;
  gap: 40px;
}

.collection-end > span {
  color: var(--mint);
  font-size: 9px;
  letter-spacing: .2em;
}

.collection-end h2 {
  margin-right: auto;
  font: 60px var(--serif);
}

.detail-shell {
  display: grid;
  min-height: calc(100svh - var(--header-height));
  grid-template-columns: minmax(0, 1.45fr) minmax(410px, .55fr);
  gap: 50px;
  max-width: 1740px;
  margin: 0 auto;
  padding: 42px clamp(16px, 3vw, 50px) 100px;
}

.detail-stage {
  min-width: 0;
}

.preview-frame {
  position: relative;
  display: block;
  width: 100%;
  min-height: 70vh;
  overflow: hidden;
  padding: 0;
  background: #111a17;
  border: 1px solid var(--line);
  border-radius: 28px;
  cursor: zoom-in;
}

.preview-frame img {
  width: 100%;
  height: 100%;
  max-height: 80vh;
  object-fit: contain;
  transition: transform 1s var(--ease), filter .5s;
}

.preview-frame:hover img {
  transform: scale(1.018);
  filter: brightness(1.05);
}

.preview-scan {
  position: absolute;
  inset: -15% 0 auto;
  height: 12%;
  background: linear-gradient(to bottom, transparent, rgba(169, 245, 208, .08), transparent);
  animation: preview-scan 8s ease-in-out infinite;
  pointer-events: none;
}

.zoom-hint {
  position: absolute;
  right: 22px;
  bottom: 22px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  color: var(--paper);
  background: rgba(3, 9, 7, .68);
  border: 1px solid rgba(255, 255, 255, .23);
  border-radius: 999px;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  font-size: 8px;
  font-weight: 750;
  letter-spacing: .15em;
}

.zoom-hint i {
  color: var(--mint);
  font-size: 18px;
  font-style: normal;
}

.detail-index {
  display: flex;
  justify-content: space-between;
  padding: 15px 5px;
  color: #66756d;
  font-size: 9px;
  letter-spacing: .15em;
}

.detail-index a {
  color: inherit;
  transition: color .25s;
}

.detail-index a:hover {
  color: var(--mint);
}

.detail-sidebar {
  align-self: start;
  position: sticky;
  top: 100px;
  padding: 30px 0;
}

.detail-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--mint);
  font-size: 9px;
  font-weight: 740;
  letter-spacing: .19em;
}

.detail-kicker i {
  width: 6px;
  height: 6px;
  background: var(--mint);
  border-radius: 50%;
  box-shadow: 0 0 15px var(--mint);
}

.detail-sidebar h1 {
  margin: 20px 0 22px;
  font-family: var(--serif);
  font-size: clamp(48px, 5vw, 83px);
  font-weight: 400;
  letter-spacing: -.06em;
  line-height: .92;
}

.detail-description {
  color: #9ba79f;
  font-size: 15px;
}

.asset-id-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 24px;
  padding: 14px 16px;
  background: linear-gradient(110deg, rgba(169, 245, 208, .08), rgba(71, 125, 242, .045));
  border: 1px solid rgba(169, 245, 208, .2);
  border-radius: 14px;
  box-shadow: inset 0 1px rgba(255, 255, 255, .035);
}

.asset-id-panel > div {
  min-width: 0;
}

.asset-id-panel span {
  display: block;
  color: #718279;
  font-size: 7px;
  font-weight: 760;
  letter-spacing: .18em;
}

.asset-id-panel strong {
  display: block;
  overflow: hidden;
  margin-top: 5px;
  color: var(--paper);
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: 12px;
  letter-spacing: .09em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.asset-id-panel button {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  color: var(--mint);
  background: rgba(2, 10, 7, .44);
  border: 1px solid rgba(169, 245, 208, .26);
  border-radius: 999px;
  cursor: pointer;
  font: inherit;
  font-size: 8px;
  font-weight: 750;
  letter-spacing: .08em;
  transition: color .25s, background .25s, transform .25s, box-shadow .25s;
}

.asset-id-panel button:hover {
  color: var(--ink);
  background: var(--mint);
  box-shadow: 0 8px 30px rgba(169, 245, 208, .16);
  transform: translateY(-2px);
}

.asset-id-panel button i {
  font-size: 13px;
  font-style: normal;
}

.asset-specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin: 30px 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.asset-specs div {
  padding: 16px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.asset-specs span {
  display: block;
  margin-bottom: 7px;
  color: #65736c;
  font-size: 8px;
  letter-spacing: .16em;
}

.asset-specs strong {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 400;
}

.license-panel {
  position: relative;
  overflow: hidden;
  padding: 24px;
  border: 1px solid var(--line-bright);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 100% 0, rgba(85, 230, 165, .14), transparent 45%),
    rgba(12, 28, 22, .74);
}

.license-panel::after {
  content: "";
  position: absolute;
  top: -90px;
  right: -90px;
  width: 170px;
  height: 170px;
  border: 1px solid rgba(169, 245, 208, .17);
  border-radius: 50%;
  box-shadow: 0 0 0 28px rgba(169, 245, 208, .025);
}

.license-panel > div:first-child {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: end;
  justify-content: space-between;
}

.license-panel > div > span {
  color: var(--mint);
  font-size: 9px;
  font-weight: 750;
  letter-spacing: .17em;
}

.license-panel > div > strong {
  font: 37px var(--serif);
  font-weight: 400;
}

.license-panel > p {
  color: #87948c;
  font-size: 11px;
}

.license-panel form {
  margin: 17px 0 0;
}

.license-choices {
  display: grid;
  gap: 8px;
  margin-bottom: 12px;
}

.license-choices label {
  display: grid;
  grid-template-columns: 18px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 13px;
  color: #9eaaa3;
  border: 1px solid var(--line);
  border-radius: 14px;
  cursor: pointer;
  transition: color .3s, border-color .3s, background .3s, transform .3s;
}

.license-choices label:hover,
.license-choices label:has(input:checked) {
  color: var(--paper);
  background: rgba(169, 245, 208, .055);
  border-color: var(--mint);
  transform: translateX(3px);
}

.license-choices input {
  appearance: none;
  width: 15px;
  height: 15px;
  margin: 0;
  border: 1px solid #6c7b73;
  border-radius: 50%;
}

.license-choices input:checked {
  background: var(--mint);
  border: 3px solid var(--ink-soft);
  outline: 1px solid var(--mint);
}

.license-choices span {
  display: grid;
  gap: 2px;
}

.license-choices b {
  font-size: 12px;
}

.license-choices small {
  color: #718078;
  font-size: 9px;
}

.license-choices strong {
  color: var(--mint);
  font: 24px var(--serif);
  font-weight: 400;
}

.button-download {
  width: 100%;
  min-height: 61px;
  border: 0;
}

.payment-note {
  display: block;
  margin-top: 12px;
  color: #718078;
  font-size: 9px;
  line-height: 1.45;
}

.save-wide {
  width: 100%;
  margin-top: 10px;
  padding: 12px;
  color: #9eaaa3;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.save-wide span {
  margin-right: 8px;
  color: var(--mint);
  font-size: 20px;
}

.detail-tags {
  margin-top: 26px;
}

.detail-tags > span {
  color: #637069;
  font-size: 8px;
  letter-spacing: .18em;
}

.detail-tags > div {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 12px;
}

.detail-tags a {
  padding: 7px 11px;
  color: #909c95;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 10px;
  transition: color .3s, background .3s, border-color .3s, transform .3s;
}

.detail-tags a:hover {
  color: var(--ink);
  background: var(--mint);
  border-color: var(--mint);
  transform: translateY(-2px);
}

.related-section {
  border-top: 1px solid var(--line);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 150;
  display: grid;
  place-items: center;
  padding: 28px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s, visibility .35s;
}

.lightbox[aria-hidden="false"] {
  opacity: 1;
  visibility: visible;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  padding: 0;
  background: rgba(1, 5, 4, .9);
  border: 0;
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.lightbox > div {
  position: relative;
  max-width: min(92vw, 1500px);
  max-height: 90vh;
  z-index: 2;
}

.lightbox img {
  max-height: 88vh;
  border: 1px solid var(--line-bright);
  border-radius: 16px;
  box-shadow: 0 40px 120px black;
}

.lightbox > div > button {
  position: absolute;
  top: -20px;
  right: -20px;
  z-index: 3;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--ink);
  background: var(--mint);
  border: 0;
  border-radius: 50%;
  font-size: 26px;
  cursor: pointer;
}

.legal-hero {
  position: relative;
  min-height: 670px;
  overflow: hidden;
  padding: 130px clamp(22px, 10vw, 170px) 90px;
  border-bottom: 1px solid var(--line);
}

.legal-hero h1 {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 24px 0;
  font-family: var(--serif);
  font-size: clamp(65px, 9vw, 140px);
  font-weight: 400;
  letter-spacing: -.07em;
  line-height: .86;
}

.legal-hero p {
  position: relative;
  z-index: 2;
  max-width: 660px;
  color: #9ba79f;
  font-size: 18px;
}

.legal-orbit,
.payment-orbit,
.error-orbit {
  position: absolute;
  top: 5%;
  right: 8%;
  width: 470px;
  height: 470px;
  border: 1px solid rgba(169, 245, 208, .14);
  border-radius: 50%;
  box-shadow:
    0 0 0 55px rgba(169, 245, 208, .018),
    0 0 0 110px rgba(71, 125, 242, .014),
    inset 0 0 110px rgba(85, 230, 165, .045);
  animation: orbit-breathe 9s ease-in-out infinite alternate;
}

.license-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 1500px;
  margin: -55px auto 0;
  padding: 0 30px;
  position: relative;
  z-index: 4;
}

.license-summary article {
  min-height: 380px;
  padding: 34px;
  border: 1px solid var(--line-bright);
  border-radius: var(--radius);
  background: rgba(11, 27, 22, .92);
  box-shadow: 0 24px 80px rgba(0, 0, 0, .28);
}

.license-summary article:hover {
  --lift: -8px;
  background: rgba(16, 38, 30, .94);
}

.license-summary article > b {
  color: var(--mint);
  font-size: 9px;
  letter-spacing: .2em;
}

.license-summary h2 {
  margin: 52px 0 18px;
  font: 38px var(--serif);
  font-weight: 400;
  line-height: 1;
}

.license-summary p {
  color: #929f97;
}

.license-summary article > span {
  display: block;
  margin-top: 44px;
  color: var(--mint);
  font-size: 9px;
  font-weight: 760;
  letter-spacing: .16em;
}

.license-summary .license-no {
  border-color: rgba(240, 123, 98, .27);
}

.license-summary .license-no > b,
.license-summary .license-no > span {
  color: var(--coral);
}

.legal-copy {
  display: grid;
  grid-template-columns: 230px minmax(0, 820px);
  gap: clamp(60px, 10vw, 170px);
  max-width: 1250px;
  margin: 0 auto;
  padding: 140px 28px 180px;
}

.legal-copy.single {
  display: block;
  max-width: 900px;
}

.legal-nav {
  align-self: start;
  position: sticky;
  top: 100px;
  display: grid;
  gap: 13px;
}

.legal-nav span {
  margin-bottom: 15px;
  color: var(--mint);
  font-size: 9px;
  font-weight: 760;
  letter-spacing: .19em;
}

.legal-nav a {
  color: #77857d;
  font-size: 12px;
  transition: color .25s, transform .25s;
}

.legal-nav a:hover {
  color: var(--paper);
  transform: translateX(5px);
}

.legal-copy article > div {
  scroll-margin-top: 100px;
  padding: 0 0 65px 70px;
  border-left: 1px solid var(--line);
}

.legal-copy article > div > span {
  display: block;
  margin-left: -82px;
  color: var(--mint);
  font-size: 10px;
}

.legal-copy h2 {
  margin: -20px 0 20px;
  font: clamp(40px, 5vw, 62px) var(--serif);
  font-weight: 400;
  letter-spacing: -.04em;
}

.legal-copy p {
  margin: 0;
  color: #9ca8a1;
  font-size: 18px;
  line-height: 1.75;
}

.refund-page,
.refund-copy {
  color: #f4f1e9;
  background-color: #030806;
}

.refund-hero {
  background:
    linear-gradient(135deg, rgba(3, 8, 6, .99), rgba(7, 24, 19, .96)),
    #030806;
}

.refund-copy {
  max-width: 980px;
}

.refund-copy article > div {
  background: rgba(10, 24, 20, .42);
  margin-bottom: 12px;
  padding-top: 42px;
  padding-right: 42px;
  border-top: 1px solid rgba(169, 245, 208, .16);
  border-right: 1px solid rgba(169, 245, 208, .16);
  border-bottom: 1px solid rgba(169, 245, 208, .16);
  border-radius: 0 18px 18px 0;
}

.refund-copy h2 {
  color: #f4f1e9;
}

.refund-copy p {
  color: #c4cec8;
}

.refund-copy strong {
  color: var(--mint);
  font-weight: 680;
}

.about-hero {
  display: grid;
  min-height: 760px;
  grid-template-columns: 1.2fr .8fr;
  align-items: end;
  gap: 80px;
  padding: 130px clamp(24px, 8vw, 140px) 100px;
  border-bottom: 1px solid var(--line);
}

.about-hero h1 {
  margin: 25px 0 0;
  font: clamp(64px, 8.5vw, 132px) var(--serif);
  font-weight: 400;
  letter-spacing: -.07em;
  line-height: .84;
}

.about-hero > p {
  max-width: 480px;
  margin: 0 0 10px;
  color: #9aa69f;
  font-size: 19px;
}

.metrics-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--line);
}

.metrics-band > div {
  min-height: 240px;
  display: grid;
  place-content: center;
  padding: 30px;
  text-align: center;
  border-right: 1px solid var(--line);
  transition: background .35s;
}

.metrics-band > div:hover {
  background: rgba(169, 245, 208, .035);
}

.metrics-band strong {
  color: var(--mint);
  font: 74px var(--serif);
  font-weight: 400;
}

.metrics-band span {
  color: #78857d;
  font-size: 10px;
  letter-spacing: .12em;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  max-width: 1450px;
  margin: 0 auto;
  padding: 130px 30px;
}

.about-grid article {
  min-height: 430px;
  padding: clamp(28px, 5vw, 70px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(10, 23, 19, .5);
  transition: border-color .4s, background .4s;
}

.about-grid article:hover {
  --lift: -8px;
  border-color: var(--line-bright);
  background: rgba(14, 32, 26, .78);
}

.about-grid article > span {
  color: var(--mint);
  font-size: 9px;
  font-weight: 750;
  letter-spacing: .18em;
}

.about-grid h2 {
  margin: 74px 0 20px;
  font: clamp(40px, 4vw, 60px) var(--serif);
  font-weight: 400;
  letter-spacing: -.04em;
  line-height: .98;
}

.about-grid p {
  max-width: 540px;
  color: #8e9b93;
}

.payment-shell,
.not-found {
  position: relative;
  display: grid;
  min-height: calc(100svh - var(--header-height));
  place-items: center;
  overflow: hidden;
  padding: 80px 22px 130px;
}

.payment-card {
  position: relative;
  z-index: 3;
  width: min(100%, 720px);
  padding: clamp(35px, 6vw, 75px);
  text-align: center;
  border: 1px solid var(--line-bright);
  border-radius: 36px;
  background: rgba(8, 21, 17, .86);
  box-shadow: 0 40px 120px rgba(0, 0, 0, .42);
  -webkit-backdrop-filter: blur(24px);
  backdrop-filter: blur(24px);
}

.payment-card > span {
  color: var(--mint);
  font-size: 9px;
  font-weight: 760;
  letter-spacing: .2em;
}

.payment-check {
  display: grid;
  width: 80px;
  height: 80px;
  place-items: center;
  margin: 35px auto;
  color: var(--ink);
  background: var(--mint);
  border-radius: 50%;
  font: 40px var(--serif);
  box-shadow: 0 0 0 20px rgba(169, 245, 208, .05), 0 0 70px rgba(85, 230, 165, .18);
  animation: payment-pop 2.2s ease-in-out infinite alternate;
}

.payment-card h1 {
  margin: 0 0 20px;
  font: clamp(52px, 7vw, 82px) var(--serif);
  font-weight: 400;
  letter-spacing: -.055em;
  line-height: .9;
}

.payment-card > p {
  color: #96a29b;
}

.payment-card > p strong {
  color: var(--paper);
}

.payment-card .button {
  margin: 25px 0 12px;
}

.payment-card .text-link {
  margin-top: 20px;
}

.payment-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 18px;
  margin-top: 20px;
  color: #6e7d74;
  font-size: 9px;
  letter-spacing: .08em;
}

.not-found {
  text-align: center;
}

.not-found > span {
  color: var(--coral);
  font-size: 9px;
  font-weight: 760;
  letter-spacing: .2em;
}

.not-found h1 {
  position: relative;
  z-index: 2;
  margin: 28px 0 22px;
  font: clamp(62px, 9vw, 130px) var(--serif);
  font-weight: 400;
  letter-spacing: -.07em;
  line-height: .86;
}

.not-found p {
  color: var(--muted);
}

.not-found .button {
  margin-top: 25px;
}

.site-footer {
  position: relative;
  overflow: hidden;
  padding: 100px clamp(22px, 7vw, 120px) 28px;
  border-top: 1px solid var(--line);
  background: #020705;
}

.footer-glow {
  position: absolute;
  top: -320px;
  left: 16%;
  width: 650px;
  height: 650px;
  background: radial-gradient(circle, rgba(85, 230, 165, .11), transparent 68%);
  pointer-events: none;
}

.footer-brand {
  position: relative;
  display: flex;
  align-items: center;
  gap: 32px;
  padding-bottom: 70px;
  border-bottom: 1px solid var(--line);
}

.footer-brand img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  filter: invert(1) sepia(.4) brightness(1.45);
  opacity: .4;
}

.footer-brand strong {
  display: block;
  font: clamp(43px, 5vw, 70px) var(--serif);
  font-weight: 400;
  letter-spacing: -.05em;
  line-height: .9;
}

.footer-brand p {
  color: #74817a;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 720px;
  margin: 70px 0 90px auto;
}

.footer-links > div {
  display: grid;
  gap: 9px;
}

.footer-links span {
  margin-bottom: 13px;
  color: var(--mint);
  font-size: 8px;
  font-weight: 740;
  letter-spacing: .18em;
}

.footer-links a {
  width: max-content;
  color: #87948c;
  font-size: 12px;
  transition: color .25s, transform .25s;
}

.footer-links a:hover {
  color: var(--paper);
  transform: translateX(4px);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 25px;
  color: #536059;
  border-top: 1px solid var(--line);
  font-size: 9px;
  letter-spacing: .1em;
}

.saved-drawer {
  position: fixed;
  inset: 0;
  z-index: 160;
  visibility: hidden;
  opacity: 0;
  transition: opacity .35s, visibility .35s;
}

.saved-drawer[aria-hidden="false"] {
  visibility: visible;
  opacity: 1;
}

.drawer-backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  background: rgba(1, 5, 4, .76);
  border: 0;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.drawer-panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  display: flex;
  width: min(92vw, 470px);
  flex-direction: column;
  padding: 34px;
  background: #07110e;
  border-left: 1px solid var(--line-bright);
  transform: translateX(100%);
  transition: transform .5s var(--ease);
}

.saved-drawer[aria-hidden="false"] .drawer-panel {
  transform: translateX(0);
}

.drawer-head {
  display: flex;
  justify-content: space-between;
  margin-bottom: 28px;
}

.drawer-head span {
  color: var(--mint);
  font-size: 8px;
  letter-spacing: .18em;
}

.drawer-head h2 {
  margin: 8px 0 0;
  font: 42px var(--serif);
  font-weight: 400;
}

.drawer-head button {
  width: 42px;
  height: 42px;
  padding: 0;
  color: var(--paper);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
}

.saved-list {
  flex: 1;
  overflow: auto;
  padding-right: 5px;
}

.saved-item {
  display: grid;
  grid-template-columns: 88px 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.saved-item img {
  width: 88px;
  height: 68px;
  object-fit: cover;
  border-radius: 9px;
}

.saved-item a {
  font: 18px var(--serif);
  line-height: 1.1;
}

.saved-item button {
  color: #77847d;
  background: none;
  border: 0;
  cursor: pointer;
}

.saved-empty {
  display: grid;
  min-height: 280px;
  place-content: center;
  color: #748179;
  text-align: center;
}

.toast {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 180;
  padding: 13px 18px;
  color: var(--ink);
  background: var(--mint);
  border-radius: 999px;
  box-shadow: 0 18px 60px rgba(0, 0, 0, .35);
  font-size: 11px;
  font-weight: 740;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .35s, transform .35s;
  pointer-events: none;
}

.toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes drift-a {
  to { transform: translate(80px, 50px) scale(1.2); }
}

@keyframes drift-b {
  to { transform: translate(-90px, -70px) scale(.82); }
}

@keyframes drift-c {
  to { transform: translate(55px, -75px) scale(1.14); }
}

@keyframes aurora-turn {
  to { transform: rotate(360deg); }
}

@keyframes pulse-dot {
  50% { box-shadow: 0 0 0 11px rgba(169, 245, 208, 0), 0 0 30px var(--mint); }
}

@keyframes text-shimmer {
  to { background-position: 220% 0; }
}

@keyframes orbit-breathe {
  to { transform: translateY(24px) scale(1.04) rotate(4deg); }
}

@keyframes seal-float {
  50% { transform: translateY(-14px) rotate(3deg); }
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

@keyframes seal-turn {
  to { transform: rotate(360deg); }
}

@keyframes cta-float {
  to { transform: translate(45px, 38px) scale(1.15); }
}

@keyframes listing-orbit {
  to { transform: translate(-45px, 55px) scale(1.06); }
}

@keyframes preview-scan {
  0%, 18% { top: -15%; opacity: 0; }
  40%, 62% { opacity: 1; }
  82%, 100% { top: 108%; opacity: 0; }
}

@keyframes payment-pop {
  to { transform: scale(1.06); box-shadow: 0 0 0 28px rgba(169, 245, 208, 0), 0 0 90px rgba(85, 230, 165, .24); }
}

@media (max-width: 1220px) {
  .site-header nav {
    gap: 18px;
  }

  .brand {
    min-width: 235px;
  }

  .hero-section {
    grid-template-columns: minmax(0, .9fr) minmax(460px, 1.1fr);
  }

  .hero-gallery {
    min-height: 630px;
  }

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

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

  .collection-tile:nth-child(n+4) {
    display: none;
  }

  .browse-results .image-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .detail-shell {
    grid-template-columns: minmax(0, 1.25fr) minmax(360px, .75fr);
  }

  .cta-section {
    margin-inline: 25px;
  }
}

@media (max-width: 980px) {
  :root {
    --header-height: 70px;
  }

  .site-header {
    height: var(--header-height);
  }

  .site-header > nav,
  .header-actions > .button,
  .saved-trigger span {
    display: none;
  }

  .brand {
    min-width: 0;
  }

  .menu-button {
    display: block;
  }

  .mobile-nav {
    position: absolute;
    top: 100%;
    right: 14px;
    left: 14px;
    display: grid;
    gap: 3px;
    padding: 14px;
    background: rgba(5, 15, 12, .96);
    border: 1px solid var(--line);
    border-radius: 18px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity .3s, visibility .3s, transform .3s;
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
  }

  .mobile-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .mobile-nav a {
    padding: 12px;
    border-radius: 10px;
  }

  .mobile-nav a:hover {
    color: var(--ink);
    background: var(--mint);
  }

  .hero-section {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-top: 80px;
  }

  .hero-section::before {
    display: none;
  }

  .hero-copy {
    position: relative;
    z-index: 3;
  }

  .hero-gallery {
    min-height: 690px;
  }

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

  .section-heading.compact {
    grid-template-columns: 1fr auto;
  }

  .process-section {
    grid-template-columns: 1fr;
  }

  .cta-section {
    grid-template-columns: 140px 1fr;
  }

  .cta-section > img {
    width: 140px;
    height: 140px;
  }

  .cta-section > .button {
    grid-column: 2;
    justify-self: start;
  }

  .listing-search {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(100%, 660px);
    margin-top: 35px;
  }

  .browse-layout {
    grid-template-columns: 1fr;
  }

  .filter-panel {
    position: relative;
    top: auto;
  }

  .filter-panel > div {
    margin-bottom: 0;
  }

  .filter-panel > div button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--paper);
    background: none;
    border: 0;
  }

  .filter-panel form {
    display: none;
    padding-top: 25px;
  }

  .filter-panel.is-open form {
    display: block;
  }

  .collection-card,
  .collection-card-wide {
    grid-column: span 6;
  }

  .detail-shell {
    grid-template-columns: 1fr;
  }

  .detail-sidebar {
    position: relative;
    top: auto;
    max-width: 680px;
    margin: 0 auto;
  }

  .license-summary {
    grid-template-columns: 1fr;
    max-width: 720px;
  }

  .license-summary article {
    min-height: 310px;
  }

  .legal-copy {
    grid-template-columns: 1fr;
  }

  .legal-nav {
    position: relative;
    top: auto;
    grid-template-columns: repeat(2, 1fr);
  }

  .legal-nav span {
    grid-column: 1 / -1;
  }

  .about-hero {
    grid-template-columns: 1fr;
    align-items: start;
  }

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

@media (max-width: 700px) {
  .asset-id-panel {
    align-items: stretch;
    flex-direction: column;
  }

  .asset-id-panel button {
    justify-content: center;
    width: 100%;
  }

  .cursor-aura,
  .bokeh-c {
    display: none;
  }

  .site-header {
    padding: 0 14px;
  }

  .brand-copy strong {
    font-size: 9px;
  }

  .brand-copy small {
    font-size: 7px;
  }

  .hero-section {
    padding: 55px 18px 80px;
  }

  .hero-copy h1 {
    font-size: clamp(51px, 16vw, 77px);
  }

  .hero-search,
  .listing-search {
    min-height: 60px;
  }

  .hero-search button,
  .listing-search button {
    min-width: 56px;
    width: 56px;
    padding: 0;
    font-size: 0;
  }

  .hero-search button i,
  .listing-search button i {
    font-size: 16px;
  }

  .hero-gallery {
    min-height: 520px;
  }

  .hero-shot-1 {
    width: 83%;
    height: 55%;
  }

  .hero-shot-2 {
    width: 58%;
    height: 42%;
  }

  .hero-shot-3 {
    width: 45%;
    height: 28%;
  }

  .floating-seal {
    left: 49%;
    width: 105px;
    height: 105px;
  }

  .floating-seal img {
    width: 65px;
    height: 65px;
  }

  .floating-seal span {
    max-width: 75px;
    font-size: 6px;
  }

  .section {
    padding: 90px 12px;
  }

  .section-heading,
  .section-heading.compact {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .section-heading h2 {
    font-size: 52px;
  }

  .image-grid,
  .browse-results .image-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .image-card:nth-child(5n + 2) {
    margin-top: 0;
  }

  .collection-rail {
    display: flex;
    min-height: 480px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

  .collection-tile {
    display: block !important;
    min-width: 82vw;
    scroll-snap-align: center;
  }

  .process-section {
    padding: 100px 20px;
  }

  .process-steps article {
    grid-template-columns: 38px 42px 1fr;
    gap: 12px;
  }

  .process-steps article i {
    width: 34px;
    height: 34px;
  }

  .process-steps article i::before,
  .process-steps article i::after {
    top: 16px;
    left: 9px;
    width: 14px;
  }

  .cta-section {
    min-height: 550px;
    grid-template-columns: 1fr;
    margin: 60px 12px 80px;
    padding: 45px 25px;
    text-align: center;
  }

  .cta-section > img {
    justify-self: center;
  }

  .cta-section > .button {
    grid-column: auto;
    justify-self: center;
  }

  .listing-hero {
    min-height: 620px;
    padding: 90px 20px 65px;
  }

  .listing-hero h1 {
    font-size: 63px;
  }

  .listing-orb {
    right: -75%;
  }

  .browse-layout {
    padding: 35px 12px 100px;
  }

  .collections-grid {
    grid-template-columns: 1fr;
    padding: 30px 12px 80px;
  }

  .collection-card,
  .collection-card-wide {
    min-height: 430px;
    grid-column: auto;
  }

  .collection-end {
    align-items: start;
    flex-direction: column;
  }

  .collection-end h2 {
    margin: 0;
  }

  .detail-shell {
    padding: 15px 10px 70px;
  }

  .preview-frame {
    min-height: 45vh;
  }

  .detail-sidebar {
    padding-inline: 8px;
  }

  .detail-sidebar h1 {
    font-size: 52px;
  }

  .legal-hero,
  .about-hero {
    min-height: 640px;
    padding: 100px 20px 70px;
  }

  .legal-hero h1,
  .about-hero h1 {
    font-size: 62px;
  }

  .legal-orbit {
    right: -70%;
  }

  .license-summary {
    padding: 0 12px;
  }

  .legal-copy {
    padding: 100px 20px;
  }

  .legal-copy article > div {
    padding-left: 35px;
  }

  .legal-copy article > div > span {
    margin-left: -48px;
  }

  .legal-copy p {
    font-size: 16px;
  }

  .metrics-band {
    grid-template-columns: 1fr;
  }

  .metrics-band > div {
    min-height: 190px;
    border-bottom: 1px solid var(--line);
  }

  .about-grid {
    grid-template-columns: 1fr;
    padding: 80px 12px;
  }

  .about-grid article {
    min-height: 380px;
  }

  .site-footer {
    padding: 70px 20px 24px;
  }

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

  .footer-links {
    grid-template-columns: 1fr 1fr;
  }

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

@media (pointer: coarse) {
  .cursor-aura {
    display: none;
  }

  .card-view {
    opacity: 1;
    transform: none;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition-duration: .01ms !important;
    transition-delay: 0ms !important;
  }

  .js [data-reveal] {
    opacity: 1;
    transform: none;
  }

  [data-tilt] {
    transform: none !important;
  }
}
