:root {
  color-scheme: light;
  --ink: #111827;
  --muted: #667085;
  --line: #e4e7ec;
  --paper: #f6f7fb;
  --panel: #ffffff;
  --tile: #f9fafb;
  --recessed: #f3f4f8;
  --primary: #635bff;
  --primary-strong: #4f46e5;
  --primary-soft: #eef2ff;
  --red: #991b1b;
  --red-soft: #fee2e2;
  --amber: #92400e;
  --amber-soft: #fef3c7;
  --green: #047857;
  --green-soft: #d1fae5;
  --cyan: #0891b2;
  --shadow: 0 18px 45px rgba(16, 24, 40, 0.08);
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    linear-gradient(180deg, #eef2ff 0, rgba(238, 242, 255, 0) 250px),
    var(--paper);
  color: var(--ink);
  font-family: "Hanken Grotesk", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

header {
  padding: 20px 28px 0;
  background: linear-gradient(135deg, #17152d 0%, #25205a 58%, #101828 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  color: #ffffff;
  overflow: hidden;
}

header::after {
  display: none;
}

h1,
h2,
h3 {
  margin: 0;
  color: inherit;
  font-family: "Hanken Grotesk", ui-sans-serif, system-ui, sans-serif;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(42px, 6vw, 72px);
  line-height: 0.92;
  font-weight: 800;
}

h2 {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 800;
}

h2::before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 18px;
  border-radius: 99px;
  background: var(--primary);
}

h3 {
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
}

header p {
  color: rgba(255, 255, 255, 0.78);
}

.hero-banner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 0.36fr);
  gap: 20px;
  align-items: center;
  min-height: clamp(220px, 32vh, 330px);
  max-width: 1440px;
  margin: 0 auto;
}

.hero-banner::before {
  display: none;
}

.hero-copy {
  display: grid;
  gap: 12px;
  padding: 28px 0 34px;
}

.hero-kicker {
  width: fit-content;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  padding: 6px 10px;
  background: rgba(255, 255, 255, 0.08);
  color: #c7d2fe;
  font-family: "Space Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.hero-promise {
  margin: 0;
  color: #ffffff;
  font-size: clamp(26px, 3.2vw, 44px);
  font-weight: 800;
  line-height: 1;
}

.hero-promise::after {
  content: "";
  display: block;
  width: min(460px, 75vw);
  height: 4px;
  margin-top: 10px;
  border-radius: 99px;
  background: linear-gradient(90deg, #8b5cf6 0%, #38bdf8 100%);
}

.hero-line {
  margin: 0;
  max-width: 760px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(17px, 1.7vw, 22px);
  font-weight: 600;
  line-height: 1.25;
}

.hero-signals {
  display: none;
}

.hero-visual {
  position: relative;
  align-self: stretch;
  min-height: 210px;
}

.hero-visual svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.hero-flow,
.hero-muted-path {
  fill: none;
  stroke-linecap: round;
}

.hero-flow {
  stroke: #a5b4fc;
  stroke-width: 4;
  stroke-dasharray: 22 18;
  animation: hero-flow 2.8s linear infinite;
}

.hero-muted-path {
  stroke: rgba(255, 255, 255, 0.16);
  stroke-width: 2;
  stroke-dasharray: 6 16;
}

.builder-dot circle {
  fill: rgba(255, 255, 255, 0.08);
  stroke: rgba(255, 255, 255, 0.42);
  stroke-width: 2;
}

.builder-dot path {
  fill: none;
  stroke: #ffffff;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.builder-dot.stranded circle {
  stroke: #fca5a5;
}

.builder-dot.watch circle {
  stroke: #fcd34d;
}

.builder-dot.safe circle {
  stroke: #86efac;
}

.bp-core circle:first-child {
  fill: rgba(99, 91, 255, 0.22);
  stroke: #a5b4fc;
  stroke-width: 2;
}

.bp-core circle:nth-child(2) {
  fill: #17152d;
  stroke: rgba(255, 255, 255, 0.22);
}

.bp-core text {
  fill: #ffffff;
  font-family: "Space Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 20px;
  font-weight: 700;
}

.intervention-beam rect {
  fill: rgba(255, 255, 255, 0.08);
  stroke: rgba(191, 219, 254, 0.5);
}

.intervention-beam path {
  fill: none;
  stroke: #bfdbfe;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@keyframes hero-flow {
  to { stroke-dashoffset: -40; }
}

.live-pulse-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  max-width: 1440px;
  margin: 0 auto;
  padding: 14px 20px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-left: 1px solid var(--line);
  border-radius: 0 0 12px 12px;
  background: #ffffff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.pulse-status-copy {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.pulse-status-copy strong {
  display: block;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
}

.pulse-status-copy span:last-child {
  display: block;
  color: var(--muted);
  font-size: 13px;
}

.aabw-countdown {
  flex: 0 1 auto;
  min-width: min(100%, 360px);
  padding: 8px 12px;
  border: 1px solid rgba(34, 197, 94, 0.5);
  border-radius: 999px;
  background: rgba(5, 46, 22, 0.92);
  color: #39ff88;
  font-family: "Space Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: clamp(12px, 1.1vw, 15px);
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
  text-shadow:
    0 0 8px rgba(57, 255, 136, 0.95),
    0 0 18px rgba(34, 197, 94, 0.66);
  box-shadow:
    inset 0 0 18px rgba(34, 197, 94, 0.2),
    0 0 28px rgba(34, 197, 94, 0.28);
}

.heartbeat-dot {
  position: relative;
  flex: 0 0 auto;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 18px rgba(34, 197, 94, 0.62);
}

.heartbeat-dot::after {
  content: "";
  position: absolute;
  inset: -8px;
  border: 2px solid rgba(34, 197, 94, 0.45);
  border-radius: 50%;
  animation: heartbeat-ping 1.5s ease-out infinite;
}

.heartbeat-wave {
  position: relative;
  flex: 1 1 260px;
  max-width: 520px;
  height: 34px;
  overflow: hidden;
  border-radius: 999px;
  background:
    linear-gradient(90deg, rgba(34, 197, 94, 0.04), rgba(34, 197, 94, 0.14), rgba(34, 197, 94, 0.04));
}

.heartbeat-wave::before {
  content: "";
  position: absolute;
  inset: 16px 0 auto;
  height: 2px;
  background: rgba(34, 197, 94, 0.2);
}

.heartbeat-wave span {
  position: absolute;
  top: 6px;
  left: -40%;
  width: 45%;
  height: 22px;
  background:
    linear-gradient(90deg, transparent 0 10%, #22c55e 10% 18%, transparent 18% 28%, #22c55e 28% 34%, transparent 34% 42%, #22c55e 42% 49%, transparent 49% 100%);
  filter: drop-shadow(0 0 8px rgba(34, 197, 94, 0.58));
  clip-path: polygon(0 50%, 16% 50%, 20% 20%, 26% 82%, 32% 50%, 55% 50%, 59% 32%, 64% 68%, 70% 50%, 100% 50%, 100% 58%, 70% 58%, 64% 76%, 59% 40%, 55% 58%, 32% 58%, 26% 90%, 20% 28%, 16% 58%, 0 58%);
  animation: heartbeat-travel 2.2s linear infinite;
}

@keyframes heartbeat-ping {
  0% {
    opacity: 0.9;
    transform: scale(0.65);
  }
  70% {
    opacity: 0;
    transform: scale(1.65);
  }
  100% {
    opacity: 0;
    transform: scale(1.65);
  }
}

@keyframes heartbeat-travel {
  to { left: 100%; }
}

.ecg-pulse-container {
  width: 100%;
  height: 80px;
  overflow: hidden;
  background: #0f172a;
  border-top: 1px solid #1e293b;
  border-bottom: 1px solid #1e293b;
  position: relative;
  margin-bottom: 24px;
}

.ecg-pulse-container::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(34, 197, 94, 0.05) 1px, transparent 1px),
    linear-gradient(180deg, rgba(34, 197, 94, 0.045) 1px, transparent 1px);
  background-size: 48px 100%, 100% 20px;
  opacity: 0.58;
}

.ecg-wave {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.ecg-baseline,
.ecg-line {
  fill: none;
  vector-effect: non-scaling-stroke;
}

.ecg-baseline {
  stroke: rgba(34, 197, 94, 0.16);
  stroke-width: 2;
}

.ecg-line {
  stroke: #22c55e;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 1440;
  stroke-dashoffset: 1440;
  filter: drop-shadow(0 0 8px rgba(34, 197, 94, 0.9));
  animation: ecg-sweep 2.8s linear infinite;
}

.ecg-line-delay {
  opacity: 0.45;
  animation-delay: 1.4s;
}

@keyframes ecg-sweep {
  0% {
    stroke-dashoffset: 1440;
    opacity: 0;
  }
  8% {
    opacity: 1;
  }
  58% {
    stroke-dashoffset: 0;
    opacity: 1;
  }
  100% {
    stroke-dashoffset: -1440;
    opacity: 0;
  }
}

.dashboard-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px 20px;
}

.monitoring-station,
.left-panel-container {
  display: grid;
  gap: 14px;
  min-width: 0;
  padding: 24px;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.control-panel-card,
.right-panel-container {
  display: grid;
  gap: 14px;
  min-width: 0;
  padding: 24px;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  background: #f8fafc;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

section,
.panel {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 1px 2px rgba(16, 24, 40, 0.04);
}

.control-panel-card section,
.control-panel-card .panel {
  box-shadow: none;
}

.grid {
  display: grid;
  gap: 10px;
  min-width: 0;
}

.row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-width: 0;
}

.station-header {
  background: linear-gradient(180deg, #ffffff 0%, #fbfcff 100%);
}

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

.metric {
  min-height: 86px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px;
  background: var(--tile);
}

.metric strong {
  display: block;
  overflow: hidden;
  margin-bottom: 8px;
  color: var(--ink);
  font-family: "Space Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 700;
  line-height: 1;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.metric span,
.muted,
.privacy,
label {
  color: var(--muted);
}

.privacy,
.chip,
th,
.paste-ready,
.plan {
  font-family: "Space Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
}

.privacy {
  font-size: 12px;
}

.pulse-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 0 rgba(4, 120, 87, 0.28);
  animation: bp-pulse 1.7s ease-out infinite;
}

@keyframes bp-pulse {
  70% { box-shadow: 0 0 0 10px rgba(4, 120, 87, 0); }
  100% { box-shadow: 0 0 0 0 rgba(4, 120, 87, 0); }
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 5px 9px;
  background: #f8fafc;
  color: #344054;
  font-size: 12px;
  text-transform: lowercase;
}

.chip.high,
.risk-high {
  color: var(--red);
  border-color: #fecaca;
  background: var(--red-soft);
}

.chip.medium,
.risk-medium {
  color: var(--amber);
  border-color: #fde68a;
  background: var(--amber-soft);
}

.chip.low,
.risk-low {
  color: var(--green);
  border-color: #a7f3d0;
  background: var(--green-soft);
}

button {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #ffffff;
  color: var(--ink);
  font: inherit;
  font-weight: 700;
  padding: 8px 11px;
  cursor: pointer;
  transition: background 0.16s ease, border-color 0.16s ease, color 0.16s ease, transform 0.16s ease;
}

button.primary {
  width: 100%;
  border-color: var(--primary);
  background: var(--primary);
  color: #ffffff;
}

button:hover {
  border-color: var(--primary);
  transform: translateY(-1px);
}

button.primary:hover {
  background: var(--primary-strong);
}

button:focus-visible,
input:focus-visible,
select:focus-visible {
  outline: 3px solid rgba(99, 91, 255, 0.18);
  outline-offset: 2px;
}

table {
  width: 100%;
  border-collapse: collapse;
}

th,
td {
  padding: 10px 8px;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-size: 14px;
  text-align: left;
  vertical-align: top;
}

th {
  color: var(--muted);
  font-family: "Space Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

tbody tr:last-child td {
  border-bottom: 0;
}

.watch-row {
  cursor: pointer;
  transition: background 0.16s ease, box-shadow 0.16s ease;
}

.watch-row:hover,
.watch-row:focus-visible {
  background: #f5f7ff;
  box-shadow: inset 3px 0 0 var(--primary);
  outline: 0;
}

.builder-cell {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 150px;
}

.avatar {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  border: 1px solid #c7d2fe;
  border-radius: 50%;
  background: var(--primary-soft);
  color: var(--primary-strong);
  font-family: "Space Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 12px;
  font-weight: 700;
}

.scarcity-badge {
  display: inline-flex;
  width: fit-content;
  margin-top: 6px;
  border: 1px solid rgba(250, 204, 21, 0.62);
  border-radius: 999px;
  padding: 3px 7px;
  background:
    linear-gradient(135deg, rgba(88, 28, 135, 0.28), rgba(15, 23, 42, 0.2));
  color: #fde68a;
  box-shadow:
    inset 0 0 12px rgba(124, 58, 237, 0.2),
    0 0 16px rgba(250, 204, 21, 0.16);
  font-family: "Space Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.plan {
  min-height: 190px;
  border: 1px solid #c7d2fe;
  border-radius: 8px;
  padding: 12px;
  background: #f8faff;
  color: var(--ink);
  line-height: 1.55;
  white-space: pre-wrap;
}

.intervention-card {
  position: relative;
  display: grid;
  gap: 8px;
  overflow: hidden;
  padding: 13px 13px 13px 18px;
  background: #ffffff;
}

.intervention-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--green);
}

.intervention-card:has(.chip.high)::before {
  background: #ef4444;
}

.intervention-card:has(.chip.medium)::before {
  background: #f59e0b;
}

.intervention-card:has(.chip.low)::before {
  background: #10b981;
}

.top-intervention {
  border-color: #c7d2fe;
  background: #f8faff;
}

.intervention-title {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  column-gap: 10px;
  align-items: center;
}

.intervention-title h3,
.intervention-title strong {
  grid-column: 2;
}

.intervention-card h3 {
  margin-bottom: 6px;
  color: var(--muted);
  font-family: "Space Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.intervention-card strong {
  display: block;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.06;
}

.intervention-icon {
  display: inline-grid;
  grid-row: 1 / span 2;
  place-items: center;
  width: 32px;
  height: 32px;
  border: 1px solid #c7d2fe;
  border-radius: 50%;
  background: var(--primary-soft);
  color: var(--primary-strong);
  font-family: "Space Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 8px;
  font-weight: 700;
}

.intervention-card p.muted {
  color: var(--primary-strong);
}

.paste-ready {
  max-height: 126px;
  overflow: auto;
  margin: 0;
  padding: 11px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--recessed);
  color: #344054;
  line-height: 1.45;
  white-space: pre-wrap;
}

.queue-section .intervention-card:not(.top-intervention) .paste-ready {
  display: none;
}

.queue-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.day {
  min-height: 118px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px;
  background: #ffffff;
}

.day.changed {
  border-color: #fde68a;
  background: #fffbeb;
}

label {
  display: grid;
  gap: 6px;
  font-size: 13px;
}

input,
select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 9px 10px;
  background: #ffffff;
  color: var(--ink);
  font: inherit;
}

input::placeholder {
  color: #98a2b3;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.segmented {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #eef2ff;
}

.segmented button,
.blocker-pills button {
  min-height: 34px;
  border-color: transparent;
  padding: 7px 10px;
  color: var(--muted);
}

.segmented button.active,
.blocker-pills button.active {
  background: var(--primary);
  color: #ffffff;
}

.blocker-field {
  margin-top: 12px;
}

.blocker-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.blocker-pills button {
  border-color: #d9def3;
  background: #ffffff;
}

@media (min-width: 1024px) {
  .dashboard-grid {
    grid-template-columns: minmax(0, calc(65% - 12px)) minmax(0, calc(35% - 12px));
    align-items: start;
  }

  .sticky-control-panel {
    position: sticky;
    top: 24px;
    max-height: calc(100vh - 48px);
    overflow: auto;
  }
}

@media (max-width: 760px) {
  header {
    padding-inline: 18px;
  }

  .hero-banner {
    grid-template-columns: 1fr;
    gap: 0;
    min-height: auto;
  }

  .hero-copy {
    padding: 28px 0 16px;
  }

  .hero-visual {
    min-height: 210px;
    margin-bottom: 16px;
  }

  .live-pulse-banner {
    flex-direction: column;
    align-items: stretch;
    margin-inline: 12px;
    padding: 12px;
  }

  .aabw-countdown {
    width: 100%;
    min-width: 0;
    border-radius: 10px;
  }

  .heartbeat-wave {
    max-width: none;
  }

  .dashboard-grid {
    padding: 12px;
  }

  .metrics,
  .form-grid,
  .timeline {
    grid-template-columns: 1fr;
  }

  .row {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  table {
    display: block;
    max-width: 100%;
    overflow-x: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-flow,
  .pulse-dot,
  .heartbeat-dot::after,
  .heartbeat-wave span {
    animation: none;
  }
}

.cc-dashboard-wrapper {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 1440px;
    margin: 0 auto;
    padding: 20px;
}

@media (min-width: 1024px) {
    .cc-dashboard-wrapper {
        display: grid;
        grid-template-columns: 65% 35%;
        align-items: start;
    }
    .cc-right-column {
        position: sticky;
        top: 20px;
    }
}

.positional-strategy-card {
  display: grid;
  gap: 10px;
  border-color: rgba(148, 163, 184, 0.28);
  background:
    linear-gradient(135deg, rgba(15, 23, 42, 0.92), rgba(30, 41, 59, 0.86));
}

.positional-strategy-card h2 {
  margin-bottom: 0;
}

.position-label {
  width: fit-content;
  border: 1px solid rgba(165, 180, 252, 0.36);
  border-radius: 999px;
  padding: 5px 9px;
  color: #c7d2fe;
  font-family: "Space Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.positional-strategy-card p {
  margin: 0;
  color: #e2e8f0;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
}

.positional-strategy-card.elite-scarcity {
  border-color: rgba(250, 204, 21, 0.62);
  box-shadow:
    inset 0 0 24px rgba(124, 58, 237, 0.18),
    0 0 26px rgba(250, 204, 21, 0.12);
}

.positional-strategy-card.elite-scarcity .position-label {
  border-color: rgba(250, 204, 21, 0.58);
  color: #fde68a;
  background: rgba(88, 28, 135, 0.34);
}

.positional-strategy-card.high-competition {
  border-color: rgba(248, 113, 113, 0.62);
  box-shadow:
    inset 0 0 24px rgba(127, 29, 29, 0.2),
    0 0 24px rgba(248, 113, 113, 0.1);
}

.positional-strategy-card.high-competition .position-label {
  border-color: rgba(248, 113, 113, 0.58);
  color: #fecaca;
  background: rgba(127, 29, 29, 0.32);
}

.positional-strategy-card.valued,
.positional-strategy-card.solid {
  border-color: rgba(34, 211, 238, 0.48);
  box-shadow:
    inset 0 0 24px rgba(20, 184, 166, 0.14),
    0 0 24px rgba(34, 211, 238, 0.08);
}

.positional-strategy-card.valued .position-label,
.positional-strategy-card.solid .position-label {
  border-color: rgba(45, 212, 191, 0.54);
  color: #99f6e4;
  background: rgba(6, 78, 59, 0.32);
}

.roster-import-teaser {
  position: relative;
  margin-top: 12px;
}

.roster-import-teaser button {
  width: 100%;
  justify-content: center;
  border: 1px solid rgba(148, 163, 184, 0.42);
  background:
    linear-gradient(135deg, rgba(30, 41, 59, 0.7), rgba(15, 23, 42, 0.84));
  color: #94a3b8;
  box-shadow:
    inset 0 0 20px rgba(99, 91, 255, 0.08),
    0 0 18px rgba(34, 211, 238, 0.05);
  cursor: not-allowed;
  opacity: 0.72;
  filter: grayscale(0.25);
}

.roster-import-teaser button:hover {
  filter: grayscale(0.25);
}

.roster-import-teaser::after {
  content: attr(data-tooltip);
  position: absolute;
  right: 0;
  bottom: calc(100% + 10px);
  z-index: 20;
  width: min(320px, 86vw);
  padding: 10px 12px;
  border: 1px solid rgba(34, 211, 238, 0.32);
  border-radius: 8px;
  background: rgba(15, 23, 42, 0.96);
  color: #e2e8f0;
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.34);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
  opacity: 0;
  pointer-events: none;
  transform: translateY(4px);
  transition: opacity 0.16s ease, transform 0.16s ease;
}

.roster-import-teaser:hover::after,
.roster-import-teaser:focus-within::after {
  opacity: 1;
  transform: translateY(0);
}
