:root {
  --bg: #050312;
  --bg-2: #0e0a22;
  --panel: rgba(12, 16, 38, 0.82);
  --panel-strong: rgba(16, 20, 44, 0.9);
  --text: #f7f8ff;
  --muted: rgba(232, 236, 255, 0.72);
  --line: rgba(255, 255, 255, 0.11);
  --pink: #ff3dac;
  --orange: #ff8e2b;
  --yellow: #f7ff5f;
  --green: #6fffbb;
  --cyan: #55d9ff;
  --blue: #59a6ff;
  --violet: #935bff;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
  --glow: 0 0 24px rgba(85, 217, 255, 0.24);
  --radius: 24px;
  --radius-sm: 18px;
  --max: 1180px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  min-height: 100vh;
  font-family: "Sora", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(255, 61, 172, 0.14), transparent 28%),
    radial-gradient(circle at top right, rgba(85, 217, 255, 0.12), transparent 30%),
    radial-gradient(circle at 50% 18%, rgba(147, 91, 255, 0.12), transparent 38%),
    linear-gradient(180deg, #03020a 0%, #060412 18%, #090616 42%, #060510 100%);
  color: var(--text);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 88px 88px;
  opacity: 0.07;
  pointer-events: none;
  z-index: 0;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input { font: inherit; }

.content {
  position: relative;
  z-index: 2;
  isolation: isolate;
}

.shell {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
}

nav {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(22px);
  background: rgba(4, 6, 18, 0.65);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-inner {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.brand-badge {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  padding: 4px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--glow);
}

.brand small {
  display: block;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.7rem;
  letter-spacing: 0.26em;
  color: var(--muted);
  margin-top: 0.2rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.3rem;
  flex-wrap: wrap;
  justify-content: flex-end;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.74);
}

.nav-links a {
  transition: color 0.25s ease, text-shadow 0.25s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a[aria-current="page"] {
  color: var(--cyan);
  text-shadow: 0 0 18px rgba(85, 217, 255, 0.45);
  outline: none;
}

.page-main {
  padding: 2rem 0 4rem;
}

.page-hero {
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  padding: clamp(2rem, 6vw, 4rem);
  min-height: 360px;
  display: grid;
  align-items: end;
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 227, 154, 0.1), transparent 14%),
    radial-gradient(circle at 50% 48%, rgba(147, 91, 255, 0.22), transparent 36%),
    radial-gradient(circle at 58% 42%, rgba(85, 217, 255, 0.1), transparent 30%),
    linear-gradient(180deg, rgba(10, 6, 28, 0.94), rgba(4, 5, 15, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.page-hero::before,
.page-hero::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  border-radius: 50%;
  transform: translate(-50%, -50%) rotate(-8deg);
  pointer-events: none;
}

.page-hero::before {
  width: min(82vw, 860px);
  height: min(74vw, 640px);
  border: 1px solid rgba(182, 212, 255, 0.1);
  opacity: 0.3;
}

.page-hero::after {
  width: min(56vw, 520px);
  height: min(56vw, 520px);
  border: 1px solid rgba(182, 212, 255, 0.08);
  opacity: 0.22;
}

.page-hero__content {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 1rem;
}

.eyebrow::before {
  content: "";
  width: 52px;
  height: 1px;
  background: linear-gradient(90deg, var(--pink), var(--cyan));
  box-shadow: 0 0 18px rgba(85, 217, 255, 0.35);
}

h1, h2, h3 {
  font-family: "Space Grotesk", sans-serif;
  line-height: 0.94;
  letter-spacing: -0.04em;
}

.page-hero h1 {
  font-size: clamp(3rem, 8vw, 6rem);
  max-width: 9ch;
}

.page-hero p {
  margin-top: 1rem;
  max-width: 46ch;
  color: var(--muted);
  line-height: 1.8;
  font-size: 1rem;
}

.page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  min-height: 54px;
  padding: 0 1.3rem;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
  cursor: pointer;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.btn-primary {
  color: #04030c;
  background: linear-gradient(90deg, var(--pink), var(--orange), var(--yellow), var(--cyan));
  box-shadow: 0 12px 32px rgba(255, 128, 90, 0.2);
  font-weight: 700;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  border-color: rgba(85, 217, 255, 0.42);
  box-shadow: 0 0 28px rgba(85, 217, 255, 0.13);
}

.section {
  padding: 3rem 0 0;
}

.section-head {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.4rem;
}

.section-head h2 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  max-width: 11ch;
}

.section-copy {
  max-width: 44ch;
  color: var(--muted);
  line-height: 1.8;
}

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

.split-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1rem;
}

.card,
.timeline-item,
.tour-item,
.post-card,
.quote-card {
  background: linear-gradient(180deg, rgba(14, 18, 42, 0.82), rgba(8, 10, 24, 0.78));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
}

.card,
.quote-card,
.post-card {
  padding: 1.25rem;
}

.card h3,
.timeline-item h3,
.post-card h3,
.tour-item h3 {
  font-size: 1.3rem;
  margin-bottom: 0.7rem;
}

.card p,
.timeline-item p,
.quote-card p,
.post-card p,
.tour-item p {
  color: var(--muted);
  line-height: 1.75;
}

.timeline {
  display: grid;
  gap: 0.9rem;
}

.timeline-item {
  padding: 1.1rem 1.15rem;
}

.timeline-kicker,
.post-date,
.tour-meta,
.micro-label {
  font-family: "IBM Plex Mono", monospace;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 0.7rem;
}

.quote-card {
  display: grid;
  align-content: end;
  min-height: 100%;
  background:
    radial-gradient(circle at 24% 24%, rgba(255, 61, 172, 0.18), transparent 28%),
    radial-gradient(circle at 78% 30%, rgba(85, 217, 255, 0.16), transparent 30%),
    linear-gradient(180deg, rgba(12, 16, 38, 0.92), rgba(6, 8, 18, 0.88));
}

.quote-card blockquote {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.quote-card p {
  margin-top: 1rem;
}

.post-list,
.tour-list {
  display: grid;
  gap: 0.9rem;
}

.post-card {
  display: grid;
  gap: 0.9rem;
}

.tour-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 1rem 1.1rem;
}

.tour-date {
  min-width: 82px;
  text-align: center;
  padding: 0.85rem 0.7rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.tour-date strong {
  display: block;
  font-size: 1.5rem;
  font-family: "Space Grotesk", sans-serif;
}

.tour-date span {
  font-family: "IBM Plex Mono", monospace;
  text-transform: uppercase;
  font-size: 0.72rem;
  color: var(--muted);
  letter-spacing: 0.16em;
}

.status-pill {
  padding: 0.8rem 1rem;
  border-radius: 999px;
  font-family: "IBM Plex Mono", monospace;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-size: 0.72rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
}

.status-pill.sold {
  color: #ff9fd0;
  border-color: rgba(255, 61, 172, 0.3);
  background: rgba(255, 61, 172, 0.08);
}

.status-pill.live {
  color: #c5fff2;
  border-color: rgba(85, 217, 255, 0.34);
  background: rgba(85, 217, 255, 0.08);
}

.footer {
  padding: 1.5rem 0 2.5rem;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1.25rem;
  color: rgba(255, 255, 255, 0.58);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  flex-wrap: wrap;
}

@media (max-width: 980px) {
  .card-grid,
  .split-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  nav { position: static; }

  .nav-inner {
    padding: 1rem 0;
    align-items: start;
    flex-direction: column;
  }

  .nav-links { gap: 0.75rem 1rem; }

  .page-hero {
    min-height: 320px;
    padding: 2rem 1.2rem;
  }

  .tour-item {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .status-pill {
    width: 100%;
    text-align: center;
  }
}
