:root {
  --bg: #05070a;
  --bg-soft: #080a0f;
  --panel: rgba(255, 255, 255, 0.03);
  --panel-strong: rgba(255, 255, 255, 0.08);
  --line: rgba(255, 255, 255, 0.06);
  --text: #ffffff;
  --muted: #8e9bb3;
  --accent: #00f0ff;
  --accent-2: #ffcc33;
  --lime: #00f0ff;
  --shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  --radius: 16px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 10% 10%, rgba(134, 232, 255, 0.15), transparent 30%),
    radial-gradient(circle at 90% 80%, rgba(245, 196, 76, 0.1), transparent 30%),
    linear-gradient(180deg, #0a0c12 0%, var(--bg) 100%);
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.section {
  padding: 96px 0 0;
}

.glass {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01));
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  box-shadow:
    0 8px 32px 0 rgba(0, 0, 0, 0.4),
    inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.topbar {
  position: sticky;
  top: 16px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 16px;
  padding: 16px 20px;
  border-radius: 999px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
}

.brand-mark {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #fff, var(--accent) 50%, #1d3e51);
  box-shadow: 0 0 20px rgba(134, 232, 255, 0.45);
}

.nav {
  display: flex;
  gap: 22px;
  color: var(--muted);
}

.nav a:hover {
  color: var(--text);
}

.nav-cta {
  display: flex;
  gap: 10px;
}

.menu-toggle {
  display: none;
  background: none;
  border: 0;
  color: white;
  font-size: 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  font-weight: 600;
  transition: transform .2s ease, opacity .2s ease, border-color .2s ease;
  border: 1px solid transparent;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-solid {
  background: linear-gradient(180deg, #ffffff, #dfe8f4);
  color: #0b1018;
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--line);
  color: var(--text);
}

.btn-lime {
  background: var(--lime);
  color: #0b1018;
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.3);
}

.btn-lime:hover {
  box-shadow: 0 0 30px rgba(0, 240, 255, 0.5);
}

.block {
  width: 100%;
}

.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 32px;
  align-items: center;
  min-height: calc(100vh - 110px);
  padding-top: 56px;
}

.eyebrow {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 12px;
  margin: 0 0 18px;
}

.hero h1,
.section h2 {
  margin: 0;
  line-height: 0.96;
  letter-spacing: -0.05em;
}

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

.section h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.lede {
  max-width: 64ch;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
  margin: 24px 0;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-points {
  list-style: none;
  padding: 0;
  margin: 26px 0 0;
  display: grid;
  gap: 10px;
  color: #d0d7e4;
}

.hero-points li::before {
  content: "• ";
  color: var(--accent-2);
}

.hero-visual {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.orb {
  width: min(100%, 520px);
  aspect-ratio: 1 / 1.12;
  border-radius: 42% 58% 56% 44% / 35% 35% 65% 65%;
  background:
    radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.08) 18%, transparent 22%),
    radial-gradient(circle at 40% 28%, rgba(245, 196, 76, 0.8), transparent 20%),
    radial-gradient(circle at 62% 72%, rgba(55, 126, 255, 0.45), transparent 28%),
    radial-gradient(circle at 70% 18%, rgba(255, 255, 255, 0.45), transparent 16%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(16, 16, 30, 0.85));
  box-shadow:
    inset -18px -24px 80px rgba(0, 0, 0, 0.65),
    inset 12px 14px 48px rgba(255, 255, 255, 0.14),
    0 30px 120px rgba(246, 210, 108, 0.14),
    0 0 0 1px rgba(255, 255, 255, 0.08);
  filter: saturate(115%);
  animation: floatOrb 8s ease-in-out infinite;
  position: relative;
  overflow: hidden;
}

/* Scan Lines Overlay */
.orb::before {
  content: "";
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 200%;
  background: repeating-linear-gradient(0deg,
      transparent 0px,
      transparent 20px,
      rgba(134, 232, 255, 0.05) 21px,
      rgba(134, 232, 255, 0.05) 22px);
  animation: scanLines 12s linear infinite;
  pointer-events: none;
}

/* Internal Heatmap / Contour */
.orb::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 50%, rgba(255, 204, 51, 0.15) 0%, transparent 60%);
  mix-blend-mode: color-dodge;
  animation: heatmapPulse 6s ease-in-out infinite;
  pointer-events: none;
}

@keyframes scanLines {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(50%);
  }
}

@keyframes heatmapPulse {

  0%,
  100% {
    transform: scale(0.8);
    opacity: 0.2;
  }

  50% {
    transform: scale(1.2) translate(10px, -5px);
    opacity: 0.6;
  }
}

/* Responsive Video Section */
.video-container {
  max-width: 900px;
  margin: 40px auto 0;
  padding: 12px;
  border-radius: 20px;
  overflow: hidden;
}

.video-aspect-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
}

.video-aspect-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 12px;
}

@keyframes floatOrb {

  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }

  50% {
    transform: translateY(-14px) rotate(2deg);
  }
}

.floating-card {
  position: absolute;
  width: 220px;
  padding: 18px;
  border-radius: 22px;
  transition: all 0.4s ease;
  z-index: 5;
}

/* Active Lenses - Connective Lines */
.floating-card::after {
  content: "";
  position: absolute;
  width: 100px;
  height: 1px;
  background: linear-gradient(90deg, var(--accent) 0%, transparent 100%);
  opacity: 0.15;
  top: 50%;
  pointer-events: none;
}

.floating-card.left::after {
  right: -100px;
  transform: rotate(5deg);
}

.floating-card.right::after {
  left: -100px;
  transform: rotate(-5deg);
  background: linear-gradient(-90deg, var(--accent) 0%, transparent 100%);
}

.floating-card.new-1::after {
  right: -40px;
  top: 110%;
  transform: rotate(45deg);
  width: 60px;
}

.floating-card.new-2::after {
  left: -40px;
  bottom: 110%;
  transform: rotate(-45deg);
  width: 60px;
  background: linear-gradient(-90deg, var(--accent) 0%, transparent 100%);
}

.floating-card.left {
  left: -20px;
  bottom: 80px;
  animation: cardPulse 4s ease-in-out infinite;
}

.floating-card.right {
  right: -20px;
  top: 120px;
  animation: cardPulse 4s ease-in-out infinite 1s;
}

.floating-card.new-1 {
  left: 40px;
  top: -30px;
  animation: cardPulse 4s ease-in-out infinite 0.5s;
}

.floating-card.new-2 {
  right: 40px;
  bottom: -30px;
  animation: cardPulse 4s ease-in-out infinite 1.5s;
}

@keyframes cardPulse {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
    filter: brightness(1);
  }

  50% {
    transform: translate(5px, -5px) scale(1.02);
    filter: brightness(1.15);
    box-shadow: 0 0 30px rgba(0, 240, 255, 0.2);
  }
}

/* Pillar Grid (Academic Foundation) */
.pillar-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 32px;
}

.pillar-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 16px;
}

.pillar-group h4 {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text);
  margin-bottom: 8px;
  opacity: 0.8;
}

.pillar-group ul {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
  display: grid;
  gap: 6px;
}

.pillar-group li {
  position: relative;
  padding-left: 14px;
}

.pillar-group li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent);
  opacity: 0.5;
}

.pillar-lens {
  font-size: 0.95rem;
  color: var(--accent-2);
  margin: 0;
  line-height: 1.5;
}

.pillar-sources {
  margin: 0;
  padding: 12px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
  font-size: 0.85rem;
  color: var(--muted);
}

.pillar-sources li {
  padding-left: 0 !important;
}

.pillar-sources li::before {
  display: none;
}

.pillar-sources em {
  color: var(--text);
  font-style: normal;
  font-weight: 600;
}

/* Pricing Stack (1x3 Vertical) */
.pricing-stack {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 32px;
}

.access-tier {
  display: flex;
  flex-direction: column;
  padding: 0;
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.3s ease;
}

.tier-header {
  padding: 24px 32px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
}

.tier-header h3 {
  margin: 8px 0 4px;
  font-size: 1.5rem;
}

.tier-intro {
  font-size: 0.9rem;
  color: var(--muted);
  margin: 0;
}

.tier-body {
  display: grid;
  grid-template-columns: 320px 1fr;
  align-items: stretch;
  min-height: 400px;
}

.tier-nav {
  padding: 24px;
  background: rgba(0, 0, 0, 0.1);
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.selection-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: left;
  width: 100%;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.selection-item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateX(4px);
}

.active-indicator {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.selection-item.active .active-indicator {
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent);
  transform: scale(1.5);
}

.item-title {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.3s ease;
  flex: 1;
}

.selection-item.active .item-title {
  color: var(--text);
  font-weight: 600;
}

.item-price-tag {
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--muted);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.selection-item.active .item-price-tag {
  background: rgba(0, 240, 255, 0.15);
  color: var(--accent);
  border-color: rgba(0, 240, 255, 0.3);
}

.selection-item.active {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(0, 240, 255, 0.5);
  box-shadow: 
    0 10px 30px rgba(0, 0, 0, 0.3),
    inset 0 0 15px rgba(0, 240, 255, 0.1);
}

.selection-item::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.05),
    transparent
  );
  transition: left 0.6s ease;
}

.selection-item:hover::after {
  left: 100%;
}

.tier-details {
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: rgba(255, 255, 255, 0.01);
  overflow-y: auto;
}

.tier-details h4 {
  font-size: 1.25rem;
  margin: 0;
  color: var(--text);
}

.tier-details .subtitle {
  font-size: 0.95rem;
  color: var(--accent);
  margin-top: -16px;
  font-style: italic;
}

.tier-details-section {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.tier-details-section h5 {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin: 0;
}

.tier-details-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}

.tier-details-section li {
  position: relative;
  padding-left: 20px;
  font-size: 0.95rem;
  color: var(--text);
  opacity: 0.9;
}

.tier-details-section li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--accent);
}

.best-promise {
  margin-top: auto;
  padding: 16px;
  background: rgba(0, 240, 255, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(0, 240, 255, 0.1);
}

.best-promise strong {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 4px;
}

.best-promise p {
  margin: 0;
  font-size: 1rem;
  color: var(--text);
  font-weight: 500;
}

.tier-footer {
  padding: 24px 32px;
  background: rgba(255, 255, 255, 0.02);
  border-top: 1px solid var(--line);
}

#lead-magnet {
  padding: 60px 0;
  text-align: center;
}

.lead-magnet-box {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 40px;
  position: relative;
  overflow: hidden;
}

.lead-magnet-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top right, rgba(0, 240, 255, 0.05), transparent 70%);
  pointer-events: none;
}

.lead-magnet-content h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 16px;
  background: linear-gradient(135deg, #fff 0%, rgba(255, 255, 255, 0.7) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.lead-magnet-content p {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto 32px;
  line-height: 1.6;
}

.lead-form {
  display: flex;
  gap: 12px;
  max-width: 500px;
  margin: 0 auto;
}

.lead-form input {
  flex: 1;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  padding: 0 24px;
  color: var(--text);
  font-size: 0.95rem;
  backdrop-filter: blur(5px);
}

.lead-form input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.1);
}

.tier-form {
  display: flex;
  gap: 12px;
  max-width: 500px;
}

.tier-form button {
  width: 100%;
}

.tier-form input {
  flex: 1;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 24px;
  color: var(--text);
  font-size: 0.9rem;
}

.tier-form input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 10px rgba(0, 240, 255, 0.2);
}

/* Responsive adjustments */
@media (max-width: 900px) {
  .tier-body {
    grid-template-columns: 1fr;
  }
  .tier-nav {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    flex-direction: row;
    overflow-x: auto;
    padding: 16px;
  }
  .selection-item {
    flex-shrink: 0;
    min-width: 200px;
  }
}

/* Footer Section */
footer {
  padding: 64px 0 32px;
  border-top: 1px solid var(--line);
  margin-top: 96px;
  background: rgba(0, 0, 0, 0.2);
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 48px;
}

.footer-brand .brand {
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.6;
  max-width: 320px;
}

.footer-col {
  text-align: right;
}

.footer-col h4 {
  margin-bottom: 20px;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 12px;
}

.footer-col a {
  font-size: 0.9rem;
  color: var(--muted);
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--accent);
}

.footer-bottom {
  margin-top: 64px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--muted);
}

.card-kicker,
.pillar-tag {
  color: var(--accent);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.floating-card strong {
  display: block;
  margin: 8px 0 6px;
}

.floating-card small {
  color: var(--muted);
  line-height: 1.5;
}

.section-head {
  margin-bottom: 28px;
}

.two-col,
.grid {
  display: grid;
  gap: 18px;
}

.two-col {
  grid-template-columns: repeat(2, 1fr);
}

.grid.three {
  grid-template-columns: repeat(3, 1fr);
}

.grid.four {
  grid-template-columns: repeat(4, 1fr);
}

.panel,
.feature-card,
.pillar-card,
.price-card,
.faq-item,
.tool-box,
.manifesto {
  border-radius: var(--radius);
}

.panel,
.feature-card,
.pillar-card,
.price-card,
.manifesto {
  padding: 24px;
}

.panel p,
.feature-card p,
.pillar-card p,
.price-card p,
.manifesto p {
  color: var(--muted);
  line-height: 1.7;
}

.framework-statement {
  margin-top: 64px;
}

.framework-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.framework-col h3 {
  font-size: 1.5rem;
  margin: 0;
  line-height: 1.2;
}

.muted-italic {
  font-size: 0.9rem;
  color: var(--muted);
  font-style: italic;
  margin-top: auto;
  opacity: 0.7;
}

.tool-box {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 22px;
  padding: 24px;
}

.tool-form {
  display: grid;
  gap: 12px;
}

label {
  font-weight: 600;
}

textarea {
  min-height: 180px;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  padding: 16px;
  resize: vertical;
  font: inherit;
}

.action-group {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-icon {
  position: relative;
  padding: 0 16px;
  cursor: pointer;
}

.badge-paid {
  position: absolute;
  top: -8px;
  right: -8px;
  background: #ff4d4d;
  color: white;
  font-size: 8px;
  font-weight: 900;
  padding: 2px 5px;
  border-radius: 4px;
  letter-spacing: 0.05em;
  box-shadow: 0 2px 8px rgba(255, 77, 77, 0.4);
}

.file-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.file-tag {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 11px;
  color: var(--muted);
}

.checklist {
  margin: 18px 0 0;
  padding-left: 18px;
  color: #d7deea;
  display: grid;
  gap: 8px;
}

.tool-output {
  padding: 18px;
  border-radius: 20px;
}

.tool-output p {
  color: var(--muted);
  margin-bottom: 0;
}

.featured {
  border-color: rgba(134, 232, 255, 0.38);
  box-shadow: 0 24px 100px rgba(134, 232, 255, 0.12);
}

.price {
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: -0.05em;
  margin: 8px 0;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  padding: 18px 20px;
}

summary {
  cursor: pointer;
  font-weight: 600;
}

summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  color: var(--muted);
  line-height: 1.7;
  margin: 14px 0 0;
}

/* Prime Law Style */
.prime-law {
  text-align: center;
  padding: 120px 0;
}

.cinematic-text {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1;
  font-weight: 800;
}

.cinematic-text span {
  display: block;
  opacity: 0;
  transform: translateY(20px);
}

.visible .cinematic-text span:nth-child(1) {
  animation: slideUpFade 0.8s ease forwards 0.2s;
}

.visible .cinematic-text span:nth-child(2) {
  animation: slideUpFade 0.8s ease forwards 0.4s;
}

.visible .cinematic-text span:nth-child(3) {
  animation: slideUpFade 0.8s ease forwards 0.6s;
}

@keyframes slideUpFade {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Bento Grid */
.bento-grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.bento-item {
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.pillar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

/* Instrument Panel Styles */
.instrument-panel {
  border: 1px solid rgba(134, 232, 255, 0.2);
}

.data-readout {
  background: rgba(0, 0, 0, 0.4);
  border-radius: 12px;
  padding: 16px;
  font-family: 'Courier New', Courier, monospace;
  font-size: 0.9rem;
  position: relative;
  overflow: hidden;
}

.status-bar {
  font-size: 0.75rem;
  color: var(--accent);
  margin-bottom: 12px;
  border-bottom: 1px solid rgba(134, 232, 255, 0.2);
  padding-bottom: 6px;
}

.btn.highlight {
  background: var(--accent);
  color: var(--bg);
  border: none;
  box-shadow: 0 0 20px rgba(134, 232, 255, 0.3);
}

.btn.highlight:hover {
  background: #fff;
  transform: translateY(-2px) scale(1.02);
}

/* Evidence Cards */
.evidence-grid {
  margin-top: 32px;
}

.evidence-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sample-visual {
  height: 180px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px dashed var(--line);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

@media (max-width: 1100px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 980px) {

  .hero,
  .two-col,
  .tool-box,
  .grid.three,
  .grid.four,
  .bento-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 40px;
  }

  .hero-visual {
    min-height: 480px;
    order: -1;
  }

  .floating-card.left {
    left: 8px;
    bottom: 60px;
  }

  .floating-card.right {
    right: 8px;
    top: 44px;
  }

  .nav,
  .nav-cta {
    display: none;
  }

  .menu-toggle {
    display: inline-block;
  }

  .topbar.open {
    border-radius: 28px;
  }

  .topbar.open .nav,
  .topbar.open .nav-cta {
    display: flex;
    flex-direction: column;
    width: 100%;
  }

  .topbar.open {
    flex-wrap: wrap;
  }
}

/* Refactored Auditor Section - coherent dark theme */
#auditor .section-head h2 {
  font-weight: 800;
  color: var(--text);
}

.panel-elevated {
  background: var(--panel);
  color: var(--text);
  border: 1px solid var(--line);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow);
  margin-bottom: 32px;
  padding: 40px;
  border-radius: 20px;
}

.auditor-indicators {
  display: flex;
  justify-content: flex-start;
  gap: 32px;
  margin-top: 24px;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 0.1em;
}

.auditor-indicators span {
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 0.8;
}

.icon-market, .icon-user, .icon-mech, .icon-cap, .icon-shield {
  display: inline-block;
  width: 16px;
  height: 16px;
  background: var(--accent);
  border-radius: 3px;
  box-shadow: 0 0 10px rgba(0, 240, 255, 0.2);
}

.venture-brief-card {
  width: 100%;
  margin: 0 0 32px 0;
}

.venture-brief-card label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 12px;
}

.venture-brief-card textarea {
  width: 100%;
  min-height: 160px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 20px;
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--text);
  resize: none;
  margin-bottom: 24px;
}

.venture-brief-card textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(255, 255, 255, 0.05);
}

.card-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.audit-context {
  text-align: left;
}

.audit-context p {
  font-size: 0.85rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.4;
}

#run-audit-btn {
  background: linear-gradient(180deg, #ffffff, #dfe8f4) !important;
  color: #0b1018 !important;
  padding: 0 32px;
  font-size: 0.9rem;
}

#run-audit-btn:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

/* Privacy Block */
.privacy-block {
  width: 100%;
  margin: 0;
  text-align: left;
}

.privacy-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 16px;
}

.privacy-head h3 {
  margin: 0;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  font-weight: 800;
  color: var(--text);
}

.privacy-content {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 24px;
}

.privacy-text h4 {
  font-size: 0.9rem;
  margin: 0 0 12px;
  color: var(--text);
}

.privacy-text p {
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--muted);
  margin: 0;
}

.privacy-bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.privacy-bullets li {
  font-size: 0.85rem;
  color: var(--muted);
  position: relative;
  padding-left: 18px;
}

.privacy-bullets li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: bold;
}

.preview-demo-footer {
  text-align: center;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--muted);
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px dotted var(--line);
  opacity: 0.6;
}

.tool-output {
  margin-top: 24px;
  padding: 24px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 12px;
  border: 1px solid var(--line);
  color: var(--text);
  font-family: inherit;
}

.tool-output .status-bar {
  color: var(--accent);
  border-bottom: 1px solid var(--line);
}