:root {
  --bg: #0b1020;
  --panel: rgba(255, 255, 255, 0.06);
  --panel-2: rgba(255, 255, 255, 0.09);
  --text: rgba(255, 255, 255, 0.92);
  --muted: rgba(255, 255, 255, 0.72);
  --muted-2: rgba(255, 255, 255, 0.6);
  --border: rgba(255, 255, 255, 0.12);
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.5);

  --brand-1: #6d28d9;
  --brand-2: #ec4899;
  --brand-3: #22c55e;
  --brand-4: #60a5fa;
  --ring: rgba(96, 165, 250, 0.5);

  --radius: 16px;
  --radius-sm: 12px;
  --container: 1100px;
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji",
    "Segoe UI Emoji";
  color: var(--text);
  background: radial-gradient(1200px 800px at 15% 0%, rgba(109, 40, 217, 0.35), transparent 60%),
    radial-gradient(900px 600px at 90% 15%, rgba(236, 72, 153, 0.22), transparent 55%),
    radial-gradient(800px 550px at 70% 90%, rgba(34, 197, 94, 0.18), transparent 60%),
    var(--bg);
  line-height: 1.55;
}

a {
  color: rgba(96, 165, 250, 0.95);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  width: min(var(--container), calc(100% - 2rem));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  padding: 0.6rem 0.9rem;
  border-radius: 12px;
  background: #111827;
  border: 1px solid var(--border);
  color: var(--text);
  z-index: 50;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  outline: none;
  box-shadow: 0 0 0 4px var(--ring);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
  background: rgba(11, 16, 32, 0.6);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--text);
}

.brand:hover {
  text-decoration: none;
}

.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 14px;
  background: conic-gradient(from 180deg, var(--brand-1), var(--brand-2), var(--brand-3), var(--brand-4), var(--brand-1));
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.brand-text {
  display: grid;
  gap: 0.05rem;
}

.brand-name {
  font-weight: 760;
  letter-spacing: 0.2px;
}

.brand-tagline {
  font-size: 0.9rem;
  color: var(--muted);
}

.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.25rem;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.65rem;
  border-radius: 12px;
  border: 1px solid transparent;
  color: var(--text);
  text-decoration: none;
  opacity: 0.92;
}

.nav-link:hover {
  text-decoration: none;
  border-color: var(--border);
  background: rgba(255, 255, 255, 0.04);
}

.nav-link.active {
  border-color: rgba(96, 165, 250, 0.35);
  background: rgba(96, 165, 250, 0.1);
}

.hero {
  padding: 3.6rem 0 2.2rem;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
}

.hero-copy h1 {
  margin: 0 0 0.8rem;
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.lede {
  font-size: 1.1rem;
  color: var(--muted);
  margin: 0 0 1.2rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.25rem 0 0.6rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.7rem 1rem;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  transition: transform 120ms ease, box-shadow 120ms ease, background 120ms ease;
}

.btn:hover {
  text-decoration: none;
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-1px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
}

.btn.primary {
  border-color: rgba(109, 40, 217, 0.6);
  background: linear-gradient(135deg, rgba(109, 40, 217, 0.95), rgba(236, 72, 153, 0.85));
}

.btn.primary:hover {
  background: linear-gradient(135deg, rgba(109, 40, 217, 1), rgba(236, 72, 153, 0.95));
}

.microcopy {
  color: var(--muted-2);
  margin: 0.6rem 0 0;
  font-size: 0.95rem;
}

.hero-art {
  position: relative;
  height: 330px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-art.has-image {
  background: rgba(255, 255, 255, 0.01);
}

.hero-art.has-image .swirl {
  opacity: 0.18;
}

.swirl {
  position: absolute;
  inset: -80px;
  background: conic-gradient(from 90deg, var(--brand-1), var(--brand-2), var(--brand-3), var(--brand-4), var(--brand-1));
  filter: blur(20px);
  opacity: 0.55;
  transform: rotate(12deg);
}

.swirl.two {
  inset: -140px;
  opacity: 0.35;
  transform: rotate(-14deg);
}

.swirl.three {
  inset: -200px;
  opacity: 0.25;
  transform: rotate(24deg);
}

.section {
  padding: 2.25rem 0;
}

.section.alt {
  padding: 2.6rem 0;
  background: rgba(255, 255, 255, 0.02);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

h2 {
  margin: 0 0 1rem;
  font-size: 1.6rem;
  letter-spacing: -0.01em;
}

h1 {
  margin: 0 0 0.8rem;
  font-size: 2.2rem;
  letter-spacing: -0.02em;
}

.grid {
  display: grid;
  gap: 1rem;
}

.cards {
  grid-template-columns: repeat(12, 1fr);
}

.card {
  grid-column: span 4;
  padding: 1.1rem 1.1rem 1rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--panel);
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  transition: transform 120ms ease, background 120ms ease, box-shadow 120ms ease;
  color: var(--text);
  text-decoration: none;
}

.card:hover {
  text-decoration: none;
  background: var(--panel-2);
  transform: translateY(-2px);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.35);
}

.thumb {
  cursor: zoom-in;
  transition: transform 140ms ease, box-shadow 140ms ease;
  will-change: transform;
}

@media (hover: hover) and (pointer: fine) {
  .thumb:hover {
    transform: scale(1.03);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
  }
}

.lightbox-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
  z-index: 9999;
}

.lightbox-backdrop.open {
  display: flex;
}

.lightbox-card {
  width: auto;
  max-width: min(980px, 100%);
  max-height: min(90vh, 900px);
  background: rgba(16, 16, 24, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.55);
}

.lightbox-img {
  display: block;
  width: auto;
  height: auto;
  max-width: 25vw;
  max-height: 25vh;
  object-fit: contain;
  background: rgba(0, 0, 0, 0.15);
}

@media (max-width: 760px) {
  .lightbox-img {
    max-width: 92vw;
    max-height: 70vh;
  }
}

.lightbox-caption {
  padding: 10px 14px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.lightbox-close {
  appearance: none;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.9);
  border-radius: 12px;
  padding: 6px 10px;
  cursor: pointer;
}

.card-title {
  margin: 0 0 0.35rem;
  font-size: 1.25rem;
}

.card h3 {
  margin: 0 0 0.35rem;
  font-size: 1.25rem;
}

.card p {
  margin: 0 0 0.65rem;
  color: var(--muted);
}

.card-cta {
  color: rgba(255, 255, 255, 0.88);
}

.two-col {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.2rem;
  align-items: start;
}

.panel {
  padding: 1.1rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.035);
}

.stack {
  display: grid;
  gap: 0.5rem;
}

.link-row {
  display: flex;
  justify-content: space-between;
  padding: 0.7rem 0.85rem;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
}

.link-row:hover {
  text-decoration: none;
  background: rgba(255, 255, 255, 0.05);
}

.checklist {
  margin: 0 0 1rem;
  padding-left: 1.15rem;
  color: var(--muted);
}

.notice {
  margin-top: 1.5rem;
  padding: 1.1rem;
  border-radius: var(--radius);
  border: 1px solid rgba(96, 165, 250, 0.28);
  background: rgba(96, 165, 250, 0.08);
}

.notice h2 {
  margin-bottom: 0.4rem;
}

.muted {
  color: var(--muted);
}

.small {
  font-size: 0.95rem;
}

.breadcrumbs {
  color: var(--muted);
  margin-bottom: 0.8rem;
}

.breadcrumbs a {
  color: var(--muted);
}

.products {
  grid-template-columns: repeat(12, 1fr);
}

.product {
  grid-column: span 6;
  padding: 1rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--panel);
}

.product h2 {
  margin: 0.85rem 0 0.3rem;
  font-size: 1.2rem;
}

.product p {
  margin: 0;
  color: var(--muted);
}

.product-media {
  height: 170px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: radial-gradient(120px 90px at 15% 30%, rgba(236, 72, 153, 0.65), transparent 60%),
    radial-gradient(140px 100px at 55% 60%, rgba(34, 197, 94, 0.55), transparent 60%),
    radial-gradient(120px 110px at 85% 35%, rgba(96, 165, 250, 0.55), transparent 60%),
    rgba(255, 255, 255, 0.03);
}

.product-media.alt {
  background: radial-gradient(120px 90px at 15% 30%, rgba(109, 40, 217, 0.7), transparent 60%),
    radial-gradient(140px 100px at 55% 60%, rgba(236, 72, 153, 0.55), transparent 60%),
    radial-gradient(120px 110px at 85% 35%, rgba(34, 197, 94, 0.55), transparent 60%),
    rgba(255, 255, 255, 0.03);
}

.product-media.alt2 {
  background: radial-gradient(120px 90px at 15% 30%, rgba(34, 197, 94, 0.6), transparent 60%),
    radial-gradient(140px 100px at 55% 60%, rgba(96, 165, 250, 0.55), transparent 60%),
    radial-gradient(120px 110px at 85% 35%, rgba(236, 72, 153, 0.55), transparent 60%),
    rgba(255, 255, 255, 0.03);
}

.product-media.alt3 {
  background: radial-gradient(120px 90px at 15% 30%, rgba(96, 165, 250, 0.6), transparent 60%),
    radial-gradient(140px 100px at 55% 60%, rgba(109, 40, 217, 0.55), transparent 60%),
    radial-gradient(120px 110px at 85% 35%, rgba(236, 72, 153, 0.55), transparent 60%),
    rgba(255, 255, 255, 0.03);
}

.product-media.glass {
  background: linear-gradient(135deg, rgba(96, 165, 250, 0.32), rgba(236, 72, 153, 0.25)),
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.08) 10px, transparent 10px, transparent 20px);
}

.product-media.jewel {
  background: radial-gradient(120px 90px at 40% 40%, rgba(236, 72, 153, 0.55), transparent 60%),
    radial-gradient(160px 110px at 65% 60%, rgba(96, 165, 250, 0.4), transparent 62%),
    rgba(255, 255, 255, 0.03);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1rem;
}

.tile {
  grid-column: span 4;
  margin: 0;
  padding: 0.9rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--panel);
}

.tile-media {
  height: 170px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: conic-gradient(from 220deg, rgba(109, 40, 217, 0.9), rgba(236, 72, 153, 0.78), rgba(34, 197, 94, 0.72), rgba(96, 165, 250, 0.74), rgba(109, 40, 217, 0.9));
  filter: saturate(1.1);
}

.tile.t2 .tile-media {
  background: linear-gradient(135deg, rgba(96, 165, 250, 0.35), rgba(34, 197, 94, 0.22)),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.1) 14px, transparent 14px, transparent 28px);
}

.tile.t3 .tile-media {
  background: radial-gradient(130px 90px at 40% 40%, rgba(236, 72, 153, 0.62), transparent 60%),
    radial-gradient(170px 110px at 65% 60%, rgba(109, 40, 217, 0.42), transparent 62%),
    rgba(255, 255, 255, 0.03);
}

.tile figcaption {
  margin-top: 0.7rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.form {
  display: grid;
  gap: 0.9rem;
  padding: 1.1rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
}

.hp-field {
  position: absolute;
  left: -9999px;
  top: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form h2 {
  margin-bottom: 0.1rem;
}

label {
  display: grid;
  gap: 0.35rem;
  color: var(--muted);
  font-weight: 600;
}

input,
select,
textarea {
  width: 100%;
  padding: 0.7rem 0.75rem;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(0, 0, 0, 0.22);
  color: var(--text);
  outline: none;
}

textarea {
  resize: vertical;
  min-height: 120px;
}

input:focus,
select:focus,
textarea:focus {
  box-shadow: 0 0 0 4px var(--ring);
  border-color: rgba(96, 165, 250, 0.55);
}

.field-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.big-link {
  font-size: 1.2rem;
  font-weight: 760;
}

.site-footer {
  border-top: 1px solid var(--border);
  padding: 1.4rem 0;
  margin-top: 1.5rem;
  background: rgba(11, 16, 32, 0.55);
  backdrop-filter: blur(10px);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-art {
    height: 260px;
  }

  .two-col {
    grid-template-columns: 1fr;
  }

  .card {
    grid-column: span 12;
  }

  .product {
    grid-column: span 12;
  }

  .tile {
    grid-column: span 12;
  }

  .field-row {
    grid-template-columns: 1fr;
  }
}
