/* ─── RESET & VARIABLES ─── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #07080a;
  --bg2: #0b0d10;
  --bg3: #0f1215;
  --surface: #141719;
  --surface2: #1a1e22;
  --border: rgba(255, 255, 255, 0.06);
  --border2: rgba(255, 255, 255, 0.11);
  --accent: #c8f542;
  --accent2: #a8d422;
  --text: #edeae4;
  --muted: #7a8490;
  --muted2: #3e4650;
  --red: #ff4b3e;
  --blue: #3eb8ff;
  --amber: #ffb547;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: "Barlow", sans-serif;
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ─── LOGO & NAV ─── */
.logo-mark {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.logo-wordmark {
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: 2px;
}

.logo-name {
  font-family: "Syne", sans-serif;
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text);
}

.logo-sub {
  font-family: "Space Mono", monospace;
  font-size: 0.48rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 2.5rem;
  border-bottom: 1px solid var(--border);
  background: rgba(7, 8, 10, 0.9);
  backdrop-filter: blur(16px);
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-family: "Space Mono", monospace;
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text);
}

.nav-links a.active {
  color: var(--accent);
}

.nav-cta {
  font-family: "Space Mono", monospace;
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--accent);
  border: none;
  padding: 0.55rem 1.3rem;
  cursor: pointer;
  transition: background 0.2s;
}

.nav-cta:hover {
  background: var(--accent2);
}

/* ─── SHARED COMPONENTS ─── */
section {
  padding: 6rem 2.5rem;
}

.label {
  font-family: "Space Mono", monospace;
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.6rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.label::after {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--accent);
  opacity: 0.45;
}

.section-title {
  font-family: "Syne", sans-serif;
  font-weight: 700;
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-bottom: 0.9rem;
}

.section-desc {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.75;
  max-width: 500px;
}

.btn-primary {
  font-family: "Space Mono", monospace;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--accent);
  border: none;
  padding: 0.85rem 2rem;
  cursor: pointer;
  transition: background 0.2s;
}

.btn-primary:hover {
  background: var(--accent2);
}

.btn-ghost {
  font-family: "Space Mono", monospace;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  background: none;
  border: 1px solid var(--border2);
  padding: 0.85rem 2rem;
  cursor: pointer;
  transition:
    border-color 0.2s,
    color 0.2s;
}

.btn-ghost:hover {
  border-color: var(--text);
  color: var(--text);
}

/* ─── HERO SECTION ─── */
.hero {
  min-height: 100vh;
  padding: 100px 2.5rem 5rem;
  position: relative;
  overflow: hidden;
}

/* Variant: Creative Services Hero */
.hero-flex {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

/* Variant: Prime Suite Hero */
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  gap: 4rem;
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(200, 245, 66, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200, 245, 66, 0.025) 1px, transparent 1px);
  background-size: 56px 56px;
  pointer-events: none;
}

.hero-frame {
  position: absolute;
  inset: 0;
  border-top: 48px solid var(--bg);
  border-bottom: 48px solid var(--bg);
  pointer-events: none;
  z-index: 1;
}

.hero-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 90% 70% at 20% 80%,
    transparent 20%,
    rgba(7, 8, 10, 0.9) 75%
  );
  pointer-events: none;
  z-index: 1;
}

.hero-grid .hero-vignette {
  background: radial-gradient(
    ellipse 80% 70% at 30% 80%,
    transparent 20%,
    var(--bg) 75%
  );
}

.hero-reel-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(200, 245, 66, 0.04) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 20% 80%, rgba(62, 184, 255, 0.03) 0%, transparent 55%),
    linear-gradient(160deg, #0d1318 0%, #080a0c 45%, #0a0c0e 100%);
  overflow: hidden;
}


.hero-content,
.hero-left {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.hero-eyebrow {
  font-family: "Space Mono", monospace;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  animation: fadeUp 0.6s ease both 0.1s;
}

.hero-eyebrow::before {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--accent);
  display: block;
}

.hero-title {
  font-family: "Syne", sans-serif;
  font-weight: 800;
  font-size: clamp(3rem, 6vw, 6rem);
  line-height: 0.92;
  letter-spacing: -0.03em;
  margin-bottom: 1.75rem;
  animation: fadeUp 0.6s ease both 0.22s;
}

.hero-title .ghost {
  -webkit-text-stroke: 1px rgba(240, 234, 228, 0.2);
  color: transparent;
  display: block;
}

.hero-title .solid,
.hero-title .fill {
  display: block;
}

.hero-title .hi {
  color: var(--accent);
  display: block;
}

.hero-body {
  font-size: 0.95rem;
  color: var(--muted);
  max-width: 460px;
  line-height: 1.75;
  margin-bottom: 2.5rem;
  animation: fadeUp 0.6s ease both 0.36s;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  animation: fadeUp 0.6s ease both 0.48s;
}

.hero-right {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-end;
  height: 100%;
  gap: 3rem;
  animation: fadeUp 0.6s ease both 0.58s;
}

.hero-m-bg {
  position: absolute;
  right: -2rem;
  bottom: -2rem;
  opacity: 0.04;
  pointer-events: none;
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
  position: relative;
  z-index: 2;
}

.hero-stat {
  text-align: right;
}

.hero-stat-num {
  font-family: "Syne", sans-serif;
  font-weight: 700;
  font-size: 2.2rem;
  line-height: 1;
  color: var(--text);
}

.hero-stat-label {
  font-family: "Space Mono", monospace;
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted2);
  margin-top: 0.3rem;
}

/* ─── TICKER ─── */
.ticker {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  padding: 0.8rem 0;
  background: var(--bg2);
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker 30s linear infinite;
}

.ticker-item {
  font-family: "Space Mono", monospace;
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted2);
  padding: 0 2.25rem;
  white-space: nowrap;
}

.ticker-item .dot {
  color: var(--accent);
  margin-right: 0.5rem;
}

/* ─── CREATIVE SERVICES SPECIFIC (Page 1) ─── */
.services {
  background: var(--bg2);
}

.services-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3rem;
  gap: 2rem;
  flex-wrap: wrap;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
}

.service-card {
  background: var(--bg2);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  transition: background 0.25s;
  cursor: default;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--c, transparent);
}

.service-card:hover {
  background: var(--surface);
}

.service-card-num {
  font-family: "Syne", sans-serif;
  font-weight: 800;
  font-size: 5rem;
  color: rgba(255, 255, 255, 0.03);
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  line-height: 1;
  letter-spacing: -0.06em;
  user-select: none;
}

.service-tag {
  font-family: "Space Mono", monospace;
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  border: 1px solid var(--c, var(--border));
  color: var(--c, var(--muted));
  width: fit-content;
  margin-bottom: 1.25rem;
}

.service-icon {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  display: block;
}

.service-name {
  font-family: "Syne", sans-serif;
  font-weight: 700;
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
  line-height: 1.1;
}

.service-desc {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.service-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.service-list li {
  font-size: 0.78rem;
  color: var(--muted);
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.service-list li::before {
  content: "—";
  color: var(--c, var(--muted2));
  font-size: 0.65rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

/* Portfolio */
.portfolio {
  background: var(--bg);
}

.portfolio-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3rem;
  gap: 2rem;
  flex-wrap: wrap;
}

.portfolio-featured {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 1px;
  background: var(--border);
  margin-bottom: 1px;
}

.portfolio-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1px;
  background: var(--border);
}

.video-slot {
  background: var(--bg3);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: background 0.25s;
}

.video-slot:hover {
  background: var(--surface);
}
.video-slot:hover .slot-overlay {
  opacity: 1;
}
.video-slot.tall,
.video-slot.short {
  aspect-ratio: 16/9;
}
.video-slot.sq {
  aspect-ratio: 4/3;
}

.slot-inner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 2rem;
}

.slot-play {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid var(--border2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--muted2);
  transition:
    border-color 0.25s,
    color 0.25s;
}

.video-slot:hover .slot-play {
  border-color: var(--accent);
  color: var(--accent);
}

.slot-label {
  font-family: "Space Mono", monospace;
  font-size: 0.58rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted2);
  text-align: center;
}

.slot-overlay {
  position: absolute;
  inset: 0;
  background: rgba(200, 245, 66, 0.04);
  border: 1px solid rgba(200, 245, 66, 0.12);
  opacity: 0;
  transition: opacity 0.25s;
  pointer-events: none;
}

.slot-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  font-family: "Space Mono", monospace;
  font-size: 0.55rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted2);
  border: 1px solid var(--border2);
  padding: 0.2rem 0.5rem;
  background: var(--bg);
}

/* Process */
.process {
  background: var(--bg2);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  margin-top: 3rem;
}

.process-step {
  background: var(--bg2);
  padding: 2.25rem;
  position: relative;
  overflow: hidden;
  transition: background 0.25s;
}

.process-step:hover {
  background: var(--surface);
}

.process-step-num {
  font-family: "Space Mono", monospace;
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.process-step-title {
  font-family: "Syne", sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 0.75rem;
}

.process-step-body {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.7;
}

.process-bg-num {
  position: absolute;
  bottom: 1rem;
  right: 1.5rem;
  font-family: "Syne", sans-serif;
  font-weight: 800;
  font-size: 5rem;
  color: rgba(255, 255, 255, 0.025);
  line-height: 1;
  letter-spacing: -0.06em;
  user-select: none;
}

/* Pricing */
.pricing {
  background: var(--bg);
}

.pricing-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3rem;
  gap: 2rem;
  flex-wrap: wrap;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 1px;
  background: var(--border);
}

.pricing-card {
  background: var(--bg);
  padding: 2.25rem;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  transition: background 0.25s;
}

.pricing-card:hover {
  background: var(--bg3);
}

.pricing-card.featured {
  background: var(--surface);
  outline: 1px solid rgba(200, 245, 66, 0.25);
}

.pricing-card.featured::before {
  content: "Most Popular";
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  font-family: "Space Mono", monospace;
  font-size: 0.55rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--accent);
  padding: 0.2rem 0.75rem;
  white-space: nowrap;
}

.pricing-tier {
  font-family: "Space Mono", monospace;
  font-size: 0.6rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted2);
  margin-bottom: 1rem;
}

.pricing-price {
  font-family: "Syne", sans-serif;
  font-weight: 800;
  font-size: 2rem;
  line-height: 1;
  margin-bottom: 0.25rem;
  color: var(--text);
}

.pricing-per {
  font-family: "Space Mono", monospace;
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted2);
  margin-bottom: 1.5rem;
}

.pricing-name {
  font-family: "Syne", sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.pricing-desc {
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex: 1;
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.75rem;
}

.pricing-features li {
  font-size: 0.75rem;
  color: var(--muted);
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.pricing-features li::before {
  content: "✓";
  color: var(--accent);
  font-size: 0.65rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.pricing-btn {
  font-family: "Space Mono", monospace;
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border2);
  background: none;
  color: var(--muted);
  cursor: pointer;
  transition:
    border-color 0.2s,
    color 0.2s;
  width: 100%;
}

.pricing-btn:hover {
  border-color: var(--text);
  color: var(--text);
}

.pricing-card.featured .pricing-btn {
  background: var(--accent);
  color: var(--bg);
  border-color: var(--accent);
}

.pricing-card.featured .pricing-btn:hover {
  background: var(--accent2);
  border-color: var(--accent2);
}

/* Booking Form */
.booking {
  background: var(--bg2);
}

.booking-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: start;
}

.booking-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.booking-detail {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.booking-detail-label {
  font-family: "Space Mono", monospace;
  font-size: 0.58rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted2);
}

.booking-detail-val {
  font-size: 0.9rem;
  color: var(--text);
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.form-label {
  font-family: "Space Mono", monospace;
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted2);
}

.form-input,
.form-select,
.form-textarea {
  background: var(--surface);
  border: 1px solid var(--border2);
  color: var(--text);
  padding: 0.75rem 1rem;
  font-family: "Barlow", sans-serif;
  font-size: 0.88rem;
  font-weight: 300;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: rgba(200, 245, 66, 0.4);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--muted2);
}

.form-select {
  appearance: none;
  cursor: pointer;
}

.form-select option {
  background: var(--surface);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.form-submit {
  font-family: "Space Mono", monospace;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--accent);
  border: none;
  padding: 1rem 2rem;
  cursor: pointer;
  transition: background 0.2s;
  align-self: flex-start;
  margin-top: 0.5rem;
}

.form-submit:hover {
  background: var(--accent2);
}

.form-note {
  font-family: "Space Mono", monospace;
  font-size: 0.58rem;
  letter-spacing: 0.1em;
  color: var(--muted2);
  line-height: 1.7;
}

/* ─── PRIME SUITE SPECIFIC (Page 2) ─── */
.plugins {
  background: var(--bg2);
}

.plugins-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3rem;
  gap: 2rem;
  flex-wrap: wrap;
}

.plugin-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
}

.plugin-grid-visual {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  margin-top: 1px;
}

.plugin-card {
  background: var(--bg2);
  padding: 2.25rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: background 0.25s;
  position: relative;
  overflow: hidden;
}

.plugin-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--c, transparent);
}

.plugin-card:hover {
  background: var(--surface);
}

.plugin-tag {
  font-family: "Space Mono", monospace;
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  border: 1px solid var(--c, var(--border));
  color: var(--c, var(--muted));
  width: fit-content;
}

.plugin-icon {
  font-size: 1.6rem;
  line-height: 1;
}

.plugin-name {
  font-family: "Syne", sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.1;
}

.plugin-desc {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.65;
  flex: 1;
}

.plugin-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  border-top: 1px solid var(--border);
  padding-top: 1rem;
  margin-top: auto;
}

.plugin-features li {
  font-size: 0.75rem;
  color: var(--muted);
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.plugin-features li::before {
  content: "—";
  color: var(--c, var(--muted2));
  font-size: 0.65rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.plugin-card.sm .plugin-name {
  font-size: 1rem;
}
.plugin-card.sm .plugin-desc {
  font-size: 0.78rem;
}

/* Features */
.features-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  margin-top: 3.5rem;
}

.feature-block {
  background: var(--bg);
  padding: 2.5rem;
  position: relative;
  transition: background 0.25s;
}

.feature-block:hover {
  background: var(--bg3);
}

.feature-num {
  font-family: "Syne", sans-serif;
  font-weight: 800;
  font-size: 5rem;
  color: rgba(255, 255, 255, 0.03);
  position: absolute;
  top: 1.25rem;
  right: 1.75rem;
  line-height: 1;
  letter-spacing: -0.06em;
  user-select: none;
}

.feature-icon {
  font-size: 1.4rem;
  display: block;
  margin-bottom: 1rem;
}

.feature-title {
  font-family: "Syne", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 0.65rem;
}

.feature-body {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.7;
}

/* Compare */
.compare {
  background: var(--bg2);
}

.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-top: 3rem;
}

.compare-col {
  padding: 2.25rem;
  border: 1px solid var(--border);
}

.compare-col.before {
  border-color: rgba(255, 75, 62, 0.18);
  background: rgba(255, 75, 62, 0.02);
}

.compare-col.after {
  border-color: rgba(200, 245, 66, 0.18);
  background: rgba(200, 245, 66, 0.02);
}

.col-label {
  font-family: "Space Mono", monospace;
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding-bottom: 1rem;
  margin-bottom: 1.25rem;
  border-bottom: 1px solid var(--border);
}

.before .col-label {
  color: var(--red);
}
.after .col-label {
  color: var(--accent);
}

.col-title {
  font-family: "Syne", sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  margin-bottom: 1.25rem;
  line-height: 1.2;
}

.compare-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.compare-list li {
  font-size: 0.82rem;
  color: var(--muted);
  display: flex;
  gap: 0.75rem;
  line-height: 1.5;
  align-items: flex-start;
}

.marker {
  flex-shrink: 0;
  font-size: 0.72rem;
  margin-top: 0.1rem;
}

.before .marker {
  color: var(--red);
}
.after .marker {
  color: var(--accent);
}

/* Specs Accordion */
.specs {
  background: var(--bg);
}

.accordion {
  margin-top: 3rem;
}

.accordion-item {
  border-bottom: 1px solid var(--border);
}

.accordion-btn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.4rem 0;
  background: none;
  border: none;
  color: var(--text);
  cursor: pointer;
  text-align: left;
  gap: 1rem;
}

.accordion-btn-left {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.acc-title {
  font-family: "Syne", sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
}

.acc-sub {
  font-family: "Space Mono", monospace;
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted2);
}

.acc-arrow {
  font-size: 0.85rem;
  color: var(--muted);
  transition: transform 0.3s;
  flex-shrink: 0;
}

.accordion-item.open .acc-arrow {
  transform: rotate(180deg);
}

.accordion-body {
  display: none;
  padding-bottom: 2rem;
}

.accordion-item.open .accordion-body {
  display: block;
}

.spec-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
}

.spec-cell {
  background: var(--surface);
  padding: 1.1rem 1.25rem;
}

.spec-cell-label {
  font-family: "Space Mono", monospace;
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted2);
  margin-bottom: 0.4rem;
}

.spec-cell-val {
  font-size: 0.85rem;
  color: var(--text);
  line-height: 1.5;
}

.spec-cell-val code {
  font-family: "Space Mono", monospace;
  font-size: 0.75rem;
  color: var(--accent);
  background: rgba(200, 245, 66, 0.07);
  padding: 0.1em 0.35em;
}

/* Call to Action */
.cta {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  text-align: center;
  padding: 7rem 2.5rem;
  position: relative;
  overflow: hidden;
}

.cta-watermark {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.025;
  pointer-events: none;
}

.cta-title {
  font-family: "Syne", sans-serif;
  font-weight: 800;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
  position: relative;
}

.cta-body {
  color: var(--muted);
  font-size: 0.9rem;
  max-width: 380px;
  margin: 0 auto 2.5rem;
  line-height: 1.75;
  position: relative;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  position: relative;
}

/* ─── FOOTER ─── */
footer {
  border-top: 1px solid var(--border);
  padding: 1.75rem 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: "Space Mono", monospace;
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted2);
}

.footer-links {
  display: flex;
  gap: 2rem;
}

.footer-links a {
  color: var(--muted2);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--accent);
}

/* ─── PLUGIN EXPLORER ─── */
.explorer {
  background: var(--bg);
}

.explorer-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 1px;
  background: var(--border);
  margin-top: 3rem;
  border: 1px solid var(--border);
}

.explorer-nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  background: var(--bg2);
}

.explorer-nav li {
  border-bottom: 1px solid var(--border);
}

.explorer-nav li:last-child {
  border-bottom: none;
}

.explorer-nav button {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 1.1rem 1.5rem;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  transition: background 0.2s;
  position: relative;
}

.explorer-nav button::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--plugin-color, transparent);
  opacity: 0;
  transition: opacity 0.2s;
}

.explorer-nav button:hover {
  background: var(--surface);
}

.explorer-nav button.active {
  background: var(--surface);
}

.explorer-nav button.active::before {
  opacity: 1;
}

.exp-nav-tag {
  font-family: "Space Mono", monospace;
  font-size: 0.52rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--plugin-color, var(--muted2));
  opacity: 0.8;
}

.exp-nav-name {
  font-family: "Syne", sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--muted);
  transition: color 0.2s;
}

.explorer-nav button.active .exp-nav-name,
.explorer-nav button:hover .exp-nav-name {
  color: var(--text);
}

.explorer-stage {
  position: relative;
  background: #080a0c;
  overflow: hidden;
}

#explorerCanvas {
  display: block;
  width: 100%;
  height: auto;
  min-height: 360px;
}

.explorer-meta {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.25rem 1.75rem;
  background: linear-gradient(transparent, rgba(7, 8, 10, 0.92) 40%);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  pointer-events: none;
}

.exp-meta-name {
  font-family: "Syne", sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text);
}

.exp-meta-desc {
  font-family: "Space Mono", monospace;
  font-size: 0.56rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted2);
  margin-top: 0.25rem;
  max-width: 420px;
}

.exp-meta-tag {
  font-family: "Space Mono", monospace;
  font-size: 0.55rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
  border: 1px solid var(--plugin-color, var(--border2));
  color: var(--plugin-color, var(--muted2));
  white-space: nowrap;
  flex-shrink: 0;
}

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes ticker {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* Cinematic letterbox for Creative Services */
.hero-flex::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: var(--bg);
  z-index: 3;
  pointer-events: none;
}

/* Scanline for Prime Suite */
.hero-grid::after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 3px,
    rgba(0, 0, 0, 0.07) 3px,
    rgba(0, 0, 0, 0.07) 4px
  );
  pointer-events: none;
  opacity: 0.35;
}
