:root {
  --bg: #0b0b10;
  --panel: rgba(255, 255, 255, 0.06);
  --border: rgba(255, 255, 255, 0.12);

  --text: rgba(255, 255, 255, 0.92);
  --muted: rgba(255, 255, 255, 0.72);
  --faint: rgba(255, 255, 255, 0.56);

  --accent: #a78bfa;
  --accent2: #22d3ee;

  --shadow: 0 22px 70px rgba(0, 0, 0, 0.45);
  --radius: 20px;
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(
      1200px 600px at 10% -10%,
      rgba(167, 139, 250, 0.35),
      transparent 60%
    ),
    radial-gradient(
      900px 500px at 110% 0%,
      rgba(34, 211, 238, 0.25),
      transparent 55%
    ),
    radial-gradient(
      800px 600px at 50% 120%,
      rgba(244, 114, 182, 0.18),
      transparent 60%
    ),
    var(--bg);
  font-family:
    ui-sans-serif,
    system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    Helvetica,
    Arial,
    "Apple Color Emoji",
    "Segoe UI Emoji";
  line-height: 1.4;
}

a {
  color: inherit;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 24px;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand__mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: linear-gradient(
    135deg,
    rgba(167, 139, 250, 0.35),
    rgba(34, 211, 238, 0.25)
  );
  border: 1px solid var(--border);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  font-weight: 800;
}

.brand__name {
  font-weight: 650;
  letter-spacing: 0.2px;
}

.pill {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  color: var(--muted);
  font-size: 14px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #34d399;
  box-shadow: 0 0 0 4px rgba(52, 211, 153, 0.15);
  flex: 0 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  align-items: center;
  padding: 18px 0 10px;
}

.kicker {
  color: var(--faint);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 12px;
  margin: 0 0 12px;
}

h1 {
  font-family:
    ui-serif,
    Georgia,
    Cambria,
    "Times New Roman",
    Times,
    serif;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.05;
  margin: 0 0 16px;
}

.accent {
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lede {
  color: var(--muted);
  font-size: clamp(15px, 1.5vw, 18px);
  margin: 0 0 18px;
  max-width: 60ch;
}

.meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0 0 18px;
}

.meta__item {
  flex: 1 1 220px;
  padding: 12px 14px;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 14px;
}

.meta__label {
  display: block;
  color: var(--faint);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.meta__value {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 650;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0 0 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 14px;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.1),
    rgba(255, 255, 255, 0.06)
  );
  box-shadow: var(--shadow);
  font-weight: 650;
}

.button:hover {
  border-color: rgba(255, 255, 255, 0.28);
  transform: translateY(-1px);
}

.button:active {
  transform: translateY(0);
}

.button--ghost {
  background: transparent;
  box-shadow: none;
}

.fine {
  color: var(--faint);
  font-size: 13px;
  margin: 0;
}

.inline-link {
  text-decoration: none;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.28);
}

.inline-link:hover {
  border-bottom-color: rgba(255, 255, 255, 0.5);
}

.muted {
  color: var(--faint);
}

.visual {
  position: relative;
}

.stack {
  position: relative;
  height: 420px;
  min-height: 360px;
}

.card {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 100%;
  max-width: 380px;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  inset: -2px;
  background:
    radial-gradient(
      400px 300px at 30% 20%,
      rgba(167, 139, 250, 0.35),
      transparent 65%
    ),
    radial-gradient(
      400px 300px at 80% 30%,
      rgba(34, 211, 238, 0.25),
      transparent 60%
    ),
    radial-gradient(
      500px 400px at 50% 110%,
      rgba(244, 114, 182, 0.22),
      transparent 60%
    );
}

.card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.25));
}

.card__inner {
  position: relative;
  height: 100%;
  padding: 16px;
}

.photo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  height: 100%;
}

.photo {
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.06));
  position: relative;
  overflow: hidden;
}

.photo:nth-child(1) {
  grid-column: 1 / -1;
  background:
    radial-gradient(
      300px 200px at 20% 30%,
      rgba(34, 211, 238, 0.35),
      transparent 60%
    ),
    linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.06));
}

.photo:nth-child(2) {
  background:
    radial-gradient(
      240px 240px at 70% 40%,
      rgba(167, 139, 250, 0.35),
      transparent 60%
    ),
    linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.06));
}

.photo:nth-child(3) {
  background:
    radial-gradient(
      240px 240px at 30% 30%,
      rgba(244, 114, 182, 0.3),
      transparent 60%
    ),
    linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.06));
}

.caption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 10px;
  color: rgba(255, 255, 255, 0.9);
}

.caption small {
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
}

.features {
  margin-top: 24px;
  padding: 18px 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.gallery {
  margin-top: 18px;
  padding: 18px 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.gallery__header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.gallery__header h2 {
  font-size: 16px;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
}

.gallery__header p {
  margin: 0;
  color: var(--faint);
  font-size: 13px;
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
}

.gallery__img {
  width: 100%;
  height: 130px;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
}

.features h2 {
  font-size: 16px;
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.9);
}

.features ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.site-footer {
  max-width: 1100px;
  margin: 10px auto 24px;
  padding: 0 24px;
  color: var(--faint);
  font-size: 13px;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.25);
}

.site-footer a:hover {
  color: rgba(255, 255, 255, 0.92);
  border-bottom-color: rgba(255, 255, 255, 0.45);
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .stack {
    height: 360px;
  }

  .gallery__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .gallery__img {
    height: 120px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .button:hover {
    transform: none;
  }
}

@media (max-width: 520px) {
  .gallery__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}


