:root {
  --bg: #0d0914;
  --surface: #171021;
  --surface-2: #21162f;
  --line: #39254e;
  --purple: #b36cf4;
  --purple-dark: #7a32bd;
  --gold: #f4c86a;
  --text: #f8f5fb;
  --muted: #c8bbd5;
  --success: #80d8a7;
  --shadow: 0 18px 50px rgba(0,0,0,.28);
  color-scheme: dark;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 15% -10%, rgba(122,50,189,.3), transparent 36rem),
    var(--bg);
  color: var(--text);
  font-family: Inter, Roboto, Arial, sans-serif;
  line-height: 1.6;
}

img { max-width: 100%; }

figure { margin: 0; }

a { color: var(--purple); }

a:hover { color: #fff; }

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

.site-header {
  border-bottom: 1px solid rgba(255,255,255,.09);
  background: rgba(13,9,20,.9);
  backdrop-filter: blur(14px);
}

.header-inner,
.container {
  width: min(1160px, calc(100% - 32px));
  margin-inline: auto;
}

.header-inner {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: #fff;
  font-size: 1.02rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 2px solid #fff;
  border-radius: 50%;
  background: var(--purple-dark);
  font-size: 1.05rem;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  flex-wrap: wrap;
}

.site-nav a {
  color: var(--muted);
  font-size: .92rem;
  font-weight: 700;
  text-decoration: none;
}

.site-nav a:hover { color: #fff; }

.site-nav .nav-cta {
  padding: 8px 13px;
  border: 1px solid var(--gold);
  border-radius: 999px;
  color: var(--gold);
}

.hero {
  overflow: hidden;
  padding: 54px 0 34px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(430px, 1.05fr);
  gap: 42px;
  align-items: center;
}

.hero-collage {
  position: relative;
  min-height: 510px;
}

.hero-photo {
  position: absolute;
  display: block;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 16px;
  background: #08060c;
  box-shadow: 0 24px 55px rgba(0,0,0,.42);
  color: #fff;
}

.hero-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  transition: transform .25s ease;
}

.hero-photo:hover img { transform: scale(1.025); }

.hero-photo span {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 34px 14px 12px;
  background: linear-gradient(transparent, rgba(5,3,8,.9));
  color: #fff;
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .03em;
  text-shadow: 0 1px 3px #000;
}

.hero-photo-1 {
  z-index: 3;
  top: 0;
  left: 19%;
  width: 47%;
  height: 490px;
}

.hero-photo-2 {
  z-index: 2;
  bottom: 18px;
  left: 0;
  width: 34%;
  height: 375px;
  transform: rotate(-3deg);
}

.hero-photo-3 {
  z-index: 1;
  right: 0;
  bottom: 10px;
  width: 35%;
  height: 390px;
  transform: rotate(3deg);
}

.hero-photo-3 span { text-align: right; }

.hero-ratebar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 26px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(23,16,33,.86);
  box-shadow: 0 12px 30px rgba(0,0,0,.18);
}

.hero-ratebar span {
  padding: 13px 18px;
  color: var(--muted);
  font-size: .85rem;
  text-align: center;
}

.hero-ratebar span + span { border-left: 1px solid var(--line); }
.hero-ratebar strong { color: #fff; }

.eyebrow {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin-top: 0;
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.12;
}

h1 {
  max-width: 800px;
  margin-bottom: 20px;
  font-size: clamp(2.35rem, 5vw, 4.85rem);
  letter-spacing: -.035em;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(1.8rem, 3.2vw, 2.75rem);
}

h3 {
  margin-bottom: 9px;
  font-size: 1.32rem;
}

.lead {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.7vw, 1.22rem);
}

.hero-actions,
.cta-actions {
  display: flex;
  gap: 12px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  background: linear-gradient(135deg, #bd79fa, #873ac8);
  color: #fff;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(122,50,189,.26);
}

.button:hover { color: #fff; filter: brightness(1.08); }

.button-gold {
  background: linear-gradient(135deg, #f8d98b, #d8a947);
  color: #211508;
  box-shadow: 0 8px 24px rgba(216,169,71,.2);
}

.button-gold:hover { color: #120b03; }

.button-secondary {
  border-color: var(--line);
  background: var(--surface);
  color: var(--text);
  box-shadow: none;
}

.price-panel {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(43,25,61,.95), rgba(20,14,29,.98));
  box-shadow: var(--shadow);
}

.price-panel-head {
  padding: 18px 22px;
  border-bottom: 1px solid var(--line);
  color: var(--gold);
  font-weight: 800;
}

.price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 22px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}

.price-row:last-child { border-bottom: 0; }

.price-row span { color: var(--muted); }

.price-row strong { color: #fff; font-size: 1.2rem; }

.trust-strip {
  border-block: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.025);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
}

.trust-item {
  padding: 20px;
  text-align: center;
}

.trust-item strong { display: block; color: #fff; }
.trust-item span { color: var(--muted); font-size: .88rem; }

.section { padding: 64px 0; }
.section-tight { padding: 40px 0; }

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 26px;
}

.section-head p {
  max-width: 630px;
  margin: 0;
  color: var(--muted);
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.photo-card {
  display: flex;
  height: 100%;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface);
  box-shadow: 0 10px 28px rgba(0,0,0,.2);
}

.photo-card > a:first-child {
  display: block;
  aspect-ratio: 4 / 5;
  flex: 0 0 auto;
  overflow: hidden;
  background: #08060c;
}

.photo-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  transition: transform .25s ease;
}

[data-protected-photo] {
  -webkit-user-drag: none;
  -webkit-touch-callout: none;
  user-select: none;
}

.photo-card:hover img { transform: scale(1.025); }

.card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 18px;
}
.card-body h3 { margin-bottom: 7px; }
.card-body h3 a { color: #fff; text-decoration: none; }
.card-body p { margin: 0 0 13px; color: var(--muted); font-size: .93rem; }
.card-link { margin-top: auto; font-weight: 800; text-decoration: none; }

.year-grid,
.feature-grid,
.facts-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.feature-card,
.year-card,
.content-card {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface);
}

.year-card p,
.feature-card p,
.content-card p,
.content-card li { color: var(--muted); }

.year-card a { font-weight: 800; text-decoration: none; }

.commercial-cta {
  padding: 36px;
  border: 1px solid rgba(244,200,106,.38);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(122,50,189,.28), rgba(244,200,106,.09)),
    var(--surface);
  box-shadow: var(--shadow);
}

.commercial-cta p { max-width: 750px; color: var(--muted); }

.breadcrumbs {
  padding: 22px 0 0;
  color: var(--muted);
  font-size: .86rem;
}

.breadcrumbs a { color: var(--muted); text-decoration: none; }
.breadcrumbs span { margin: 0 8px; }

.detail-hero { padding: 38px 0 58px; }

.detail-grid {
  display: grid;
  grid-template-columns: minmax(300px, .82fr) minmax(0, 1.18fr);
  gap: 48px;
  align-items: start;
}

.detail-grid > *,
.hero-grid > *,
.licensing-layout > *,
.form-shell > * { min-width: 0; }

.detail-image-wrap {
  width: min(100%, 460px);
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #08060c;
  box-shadow: var(--shadow);
}

.detail-image-wrap img {
  display: block;
  width: 100%;
  max-height: 660px;
  height: auto;
  object-fit: contain;
}

.image-credit {
  margin: 0;
  padding: 12px 16px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: .78rem;
}

.detail-copy h1 { font-size: clamp(2.15rem, 4.2vw, 4rem); }

.availability {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 18px;
  color: var(--success);
  font-size: .86rem;
  font-weight: 800;
}

.availability::before {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
  content: "";
}

.facts {
  display: grid;
  grid-template-columns: 132px 1fr;
  margin: 28px 0;
  border-top: 1px solid var(--line);
}

.facts dt,
.facts dd {
  margin: 0;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}

.facts dt { color: var(--muted); font-size: .86rem; font-weight: 700; }
.facts dd { color: #fff; }

.microcopy { color: var(--muted); font-size: .82rem; }

.collection-hero { padding: 55px 0 34px; text-align: center; }
.collection-hero .lead { margin-inline: auto; }

.licensing-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, .9fr);
  gap: 32px;
  align-items: start;
}

.steps { counter-reset: steps; list-style: none; padding: 0; }
.steps li { position: relative; padding: 0 0 24px 52px; }
.steps li::before {
  position: absolute;
  left: 0;
  top: 0;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: var(--purple-dark);
  color: #fff;
  content: counter(steps);
  counter-increment: steps;
  font-weight: 800;
}

.notice {
  padding: 18px 20px;
  border-left: 3px solid var(--gold);
  background: rgba(244,200,106,.08);
  color: var(--muted);
}

.form-shell {
  display: grid;
  grid-template-columns: minmax(260px, .75fr) minmax(0, 1.25fr);
  gap: 42px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(43,25,61,.94), rgba(20,14,29,.98));
  box-shadow: var(--shadow);
}

.form-intro p { color: var(--muted); }

.form-status {
  padding: 14px 16px;
  border-left: 3px solid var(--gold);
  background: rgba(244,200,106,.08);
  color: #fff !important;
}

.form-status.is-success {
  border-color: var(--success);
  background: rgba(128,216,167,.1);
}

.license-form,
.license-form label {
  display: grid;
  gap: 7px;
}

.license-form { gap: 16px; }

.license-form label {
  color: #fff;
  font-size: .9rem;
  font-weight: 700;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.license-form input,
.license-form select,
.license-form textarea {
  width: 100%;
  border: 1px solid #5b3d73;
  border-radius: 8px;
  background: #0e0a14;
  color: #fff;
  font: inherit;
}

.license-form input,
.license-form select { min-height: 46px; padding: 9px 12px; }
.license-form textarea { min-height: 130px; padding: 11px 12px; resize: vertical; }
.license-form input::placeholder,
.license-form textarea::placeholder { color: #9887a8; }
.license-form .button { justify-self: start; cursor: pointer; }

.license-form .consent {
  grid-template-columns: 20px 1fr;
  align-items: start;
  color: var(--muted);
  font-weight: 400;
}

.license-form .consent input {
  min-height: 0;
  margin: 4px 0 0;
}

.honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.site-footer {
  margin-top: 40px;
  padding: 34px 0;
  border-top: 1px solid var(--line);
  background: #0a070f;
  color: var(--muted);
  font-size: .88rem;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-links { display: flex; gap: 16px; flex-wrap: wrap; }
.footer-links a { color: var(--muted); }

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

@media (max-width: 860px) {
  .hero-grid,
  .detail-grid,
  .licensing-layout,
  .form-shell { grid-template-columns: 1fr; }
  .hero-collage { order: -1; min-height: 320px; }
  .hero-photo-1 { height: 310px; }
  .hero-photo-2 { height: 235px; }
  .hero-photo-3 { height: 250px; }
  .photo-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .detail-copy { order: -1; }
  .detail-image-wrap { width: 100%; max-width: 480px; }
}

@media (max-width: 620px) {
  .header-inner,
  .container { width: min(100% - 28px, 1160px); }
  .header-inner { min-height: 0; padding: 14px 0; align-items: flex-start; flex-direction: column; gap: 13px; }
  .brand { font-size: .98rem; line-height: 1.2; }
  .brand-mark { width: 36px; height: 36px; }
  .site-nav { width: 100%; justify-content: space-between; gap: 8px; flex-wrap: nowrap; }
  .site-nav a { flex: 0 0 auto; font-size: clamp(.76rem, 3.7vw, .86rem); white-space: nowrap; }
  .site-nav .nav-cta { padding: 7px 11px; }
  .hero { padding: 38px 0 34px; }
  .hero-collage { min-height: 270px; margin-top: 0; }
  .hero-photo-1 { left: 18%; width: 52%; height: 260px; }
  .hero-photo-2 { width: 36%; height: 195px; }
  .hero-photo-3 { width: 37%; height: 205px; }
  .hero-ratebar { grid-template-columns: 1fr; }
  .hero-ratebar span + span { border-top: 1px solid var(--line); border-left: 0; }
  .photo-grid,
  .year-grid,
  .feature-grid,
  .facts-grid,
  .trust-grid { grid-template-columns: 1fr; }
  .form-shell { padding: 24px; }
  .form-row { grid-template-columns: 1fr; }
  .section { padding: 44px 0; }
  .section-tight { padding: 32px 0; }
  .section-head { align-items: flex-start; flex-direction: column; }
  .commercial-cta { padding: 25px; }
  .photo-card img { max-height: none; }
  .breadcrumbs { display: flex; padding-top: 16px; gap: 4px 0; flex-wrap: wrap; line-height: 1.45; overflow-wrap: anywhere; }
  .detail-hero { padding: 24px 0 42px; }
  .detail-grid { gap: 28px; }
  .detail-copy h1 { font-size: clamp(2rem, 10vw, 2.65rem); }
  .detail-copy .lead { font-size: 1rem; }
  .facts { grid-template-columns: 104px minmax(0, 1fr); margin: 22px 0; }
  .facts dd { overflow-wrap: anywhere; }
  .detail-copy .cta-actions .button,
  .form-shell .button { width: 100%; }
  .detail-image-wrap img { width: 100%; max-height: min(72svh, 620px); object-fit: contain; }
  .image-credit { padding: 10px 12px; line-height: 1.45; }
  .price-row { display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: start; padding: 16px 18px; }
  .price-panel-head { padding: 16px 18px; }
  .content-card,
  .feature-card,
  .year-card { padding: 22px; }
}

@media (max-width: 390px) {
  .header-inner,
  .container { width: min(100% - 24px, 1160px); }
  .site-nav { gap: 6px; }
  .site-nav a { font-size: .75rem; }
  .site-nav .nav-cta { padding-inline: 9px; }
  .facts { grid-template-columns: 92px minmax(0, 1fr); }
  .form-shell { padding: 20px; }
}
