.athena-scope {
  --bg: #f5f4fb;
  --surface: #ffffff;
  --surface2: #ede9fb;
  --border: #e0d9f7;
  --accent: #6c2bd9;
  --accent-light: #8b5cf6;
  --accent-bg: rgba(108,43,217,0.07);
  --text: #1a1033;
  --muted: #6b6888;
  --muted2: #9896b0;
  --gold: #f59e0b;
  --radius: 18px;
  --shadow: 0 2px 20px rgba(108,43,217,0.08);
}

.athena-scope * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.athena-scope {
  color: var(--text);
  font-family: 'Sora', sans-serif;
}

.athena-wrapper {
  background: var(--bg);
  padding: 56px 20px 80px;
}

.athena-scope .container {
  max-width: 1160px;
  margin: 0 auto;
}

/* ── Header ── */
.athena-scope .header {
  text-align: center;
  margin-bottom: 48px;
}

.athena-scope .eyebrow {
  display: inline-block;
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-bg);
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 18px;
}

.athena-scope h1 {
  font-size: 42px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 14px;
  letter-spacing: -1px;
}

.athena-scope h1 em {
  font-style: normal;
  color: var(--accent);
}

.athena-scope .subtitle {
  color: var(--muted);
  font-size: 16px;
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ── Toggle ── */
.athena-scope .toggle-area {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 44px;
}

.athena-scope .toggle-lbl {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  cursor: pointer;
  transition: color .2s;
}

.athena-scope .toggle-lbl.active {
  color: var(--text);
}

.athena-scope .save-pill {
  background: linear-gradient(135deg,#7c3aed,#a78bfa);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 2px 9px;
  border-radius: 20px;
  font-family: 'Space Mono', monospace;
}

.athena-scope .toggle-track {
  width: 46px;
  height: 25px;
  background: #d8d4eb;
  border-radius: 13px;
  position: relative;
  cursor: pointer;
  transition: background .3s;
}

.athena-scope .toggle-track.on {
  background: var(--accent);
}

.athena-scope .toggle-knob {
  width: 19px;
  height: 19px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  top: 3px;
  left: 3px;
  transition: left .3s;
  box-shadow: 0 1px 4px rgba(0,0,0,.25);
}

.athena-scope .toggle-track.on .toggle-knob {
  left: 24px;
}

/* ── Cards ── */
.athena-scope .cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: start;
}

@media (max-width: 960px) {
  .athena-scope .cards {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }
}

/* White card (standard + bundle) */
.athena-scope .card {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 26px 26px;
  position: relative;
  box-shadow: var(--shadow);
  transition: transform .2s, box-shadow .2s;
  color: var(--text);
}

.athena-scope .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 50px rgba(108,43,217,0.13);
}

/* Purple centre card */
.athena-scope .card.pro {
  background: linear-gradient(160deg, #6c2bd9 0%, #8b5cf6 100%);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 8px 40px rgba(108,43,217,0.3);
}

.athena-scope .card.pro:hover {
  box-shadow: 0 20px 60px rgba(108,43,217,0.4);
}

.athena-scope .popular-tag {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 4px 16px;
  border-radius: 20px;
  white-space: nowrap;
  font-family: 'Space Mono', monospace;
  text-transform: uppercase;
}

/* Plan chip */
.athena-scope .plan-chip {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .3px;
  background: var(--surface2);
  color: var(--accent);
  border: 1px solid var(--border);
  padding: 3px 12px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.athena-scope .card.pro .plan-chip {
  background: rgba(255,255,255,.18);
  color: #fff;
  border-color: rgba(255,255,255,.2);
}

/* Price block */
.athena-scope .price-main {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  margin-bottom: 3px;
}

.athena-scope .price-amt {
  font-size: 46px;
  font-weight: 800;
  letter-spacing: -2px;
  line-height: 1;
}

.athena-scope .card.pro .price-amt {
  color: #fff;
}

.athena-scope .price-per {
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 6px;
  line-height: 1;
  font-weight: 500;
}

.athena-scope .card.pro .price-per {
  color: rgba(255,255,255,.75);
}

.athena-scope .price-billed {
  font-size: 12px;
  color: var(--muted2);
  margin-bottom: 2px;
}

.athena-scope .card.pro .price-billed {
  color: rgba(255,255,255,.6);
}

.athena-scope .price-users {
  font-size: 12px;
  color: var(--muted2);
  margin-bottom: 20px;
}

.athena-scope .card.pro .price-users {
  color: rgba(255,255,255,.55);
}

/* Description */
.athena-scope .plan-desc {
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.55;
  border-bottom: 1px solid var(--border);
  padding-bottom: 14px;
  margin-bottom: 14px;
}

.athena-scope .card.pro .plan-desc {
  color: rgba(255,255,255,.78);
  border-bottom-color: rgba(255,255,255,.2);
}

/* Includes */
.athena-scope .includes-block {
  background: var(--surface2);
  border-radius: 10px;
  padding: 11px 13px;
  margin-bottom: 18px;
  font-size: 12px;
  color: var(--muted);
  line-height: 1.75;
}

.athena-scope .includes-block strong {
  color: var(--text);
  display: block;
  margin-bottom: 2px;
}

.athena-scope .card.pro .includes-block {
  background: rgba(255,255,255,.14);
  color: rgba(255,255,255,.78);
}

.athena-scope .card.pro .includes-block strong {
  color: #fff;
}

/* Inherit banner (Pro + Bundle) */
.athena-scope .inherit-banner {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-family: 'Space Mono', monospace;
  border-radius: 8px;
  padding: 9px 12px;
  margin-bottom: 16px;
}

.athena-scope .card.pro .inherit-banner {
  background: rgba(255,255,255,.13);
  border: 1px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.85);
}

.athena-scope .card.pro .inherit-banner strong {
  color: #fff;
}

.athena-scope .card .inherit-banner {
  background: var(--surface2);
  border: 1px solid var(--border);
  color: var(--muted);
}

.athena-scope .card .inherit-banner strong {
  color: var(--accent);
}

/* Feature section heading */
.athena-scope .feat-heading {
  font-size: 11px;
  font-weight: 600;
  font-family: 'Space Mono', monospace;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}

.athena-scope .card.pro .feat-heading {
  color: rgba(255,255,255,.5);
}

/* Feature rows */
.athena-scope .feat-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #3d3558;
  padding: 5px 0;
  line-height: 1.3;
  border-bottom: 1px solid rgba(0,0,0,0.04);
}

.athena-scope .feat-row:last-of-type {
  border-bottom: none;
}

.athena-scope .card.pro .feat-row {
  color: rgba(255,255,255,.9);
  border-bottom-color: rgba(255,255,255,.08);
}

.athena-scope .feat-check {
  width: 17px;
  height: 17px;
  border-radius: 50%;
  flex-shrink: 0;
  background: rgba(108,43,217,.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.athena-scope .feat-check svg {
  width: 9px;
  height: 9px;
}

.athena-scope .card.pro .feat-check {
  background: rgba(255,255,255,.2);
}

.athena-scope .feat-label {
  flex: 1;
  font-weight: 500;
}

/* Info button */
.athena-scope .info-wrap {
  display: inline-flex;
  align-items: center;
}

.athena-scope .info-btn {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  border: 1.5px solid var(--muted2);
  color: var(--muted2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  font-style: italic;
  font-family: Georgia, serif;
  cursor: pointer;
  flex-shrink: 0;
  opacity: .6;
  transition: opacity .15s;
  background: none;
  padding: 0;
  line-height: 1;
}

.athena-scope .card.pro .info-btn {
  border-color: rgba(255,255,255,.5);
  color: rgba(255,255,255,.6);
}

.athena-scope .info-btn:hover {
  opacity: 1;
}

/* Floating tooltip — body level, never clipped */
.athena-scope .floating-tip {
  display: none;
  position: fixed;
  background: #1a1033;
  color: #e8e4f8;
  font-size: 12px;
  line-height: 1.6;
  padding: 12px 14px;
  border-radius: 10px;
  width: 240px;
  z-index: 9999;
  box-shadow: 0 8px 28px rgba(0,0,0,.45);
  font-family: 'Sora', sans-serif;
  font-weight: 400;
  pointer-events: none;
}

.athena-scope .floating-tip b {
  display: block;
  font-weight: 700;
  margin-bottom: 6px;
  color: #d4c5ff;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.athena-scope .floating-tip ul {
  padding-left: 14px;
}

.athena-scope .floating-tip ul li {
  margin-bottom: 3px;
}

.athena-scope .floating-tip.show {
  display: block;
}

.athena-scope .floating-tip::before {
  content: '';
  position: absolute;
  right: 100%;
  top: 14px;
  border: 6px solid transparent;
  border-right-color: #1a1033;
}

/* Badges */
.athena-scope .badge {
  font-size: 9px;
  font-family: 'Space Mono', monospace;
  letter-spacing: .5px;
  padding: 1px 6px;
  border-radius: 4px;
  white-space: nowrap;
  margin-left: 3px;
  flex-shrink: 0;
}

.athena-scope .badge-new {
  background: rgba(245,158,11,.15);
  color: #b45309;
}

.athena-scope .badge-up {
  background: rgba(108,43,217,.12);
  color: var(--accent);
}

.athena-scope .badge-kye {
  background: rgba(108,43,217,.1);
  color: var(--accent);
}

.athena-scope .card.pro .badge-new,
.athena-scope .card.pro .badge-up {
  background: rgba(255,255,255,.2);
  color: #fde68a;
}

/* CTA */
.athena-scope .cta-btn {
  display: block;
  width: 100%;
  padding: 13px 0;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  margin-top: 22px;
  font-family: 'Sora', sans-serif;
  letter-spacing: .2px;
  transition: opacity .2s, transform .1s;
}

.athena-scope .cta-btn:hover {
  opacity: .87;
  transform: scale(.99);
}

.athena-scope .cta-std {
  background: var(--accent);
  color: #fff;
}

.athena-scope .cta-pro {
  background: rgba(255,255,255,.22);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.35);
}

.athena-scope .cta-bundle {
  background: var(--accent);
  color: #fff;
}

.athena-scope .cta-note {
  text-align: center;
  font-size: 11.5px;
  color: var(--muted);
  margin-top: 8px;
}

.athena-scope .card.pro .cta-note {
  color: rgba(255,255,255,.55);
}

/* Annual toggle state */
.athena-scope .mo-val {
  display: inline;
}

.athena-scope .yr-val {
  display: none;
}

.athena-scope .mo-sub {
  display: block;
}

.athena-scope .yr-sub {
  display: none;
}

.athena-scope.annual .mo-val {
  display: none;
}

.athena-scope.annual .yr-val {
  display: inline;
}

.athena-scope.annual .mo-sub {
  display: none;
}

.athena-scope.annual .yr-sub {
  display: block;
}

/* ── KNIME Partner Banner ── */
.athena-scope .knime-banner {
  margin-top: 60px;
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 40px;
  display: flex;
  align-items: center;
  gap: 36px;
  box-shadow: var(--shadow);
}

@media (max-width: 720px) {
  .athena-scope .knime-banner {
    flex-direction: column;
    text-align: center;
  }
}

.athena-scope .knime-logo-wrap {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  border-radius: 16px;
  background: linear-gradient(135deg, #FFD600, #FF8C00);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Space Mono', monospace;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -1px;
}

.athena-scope .knime-content {
  flex: 1;
}

.athena-scope .knime-tag {
  display: inline-block;
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: rgba(255,214,0,.12);
  color: #b45309;
  border: 1px solid rgba(255,214,0,.3);
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 10px;
}

.athena-scope .knime-content h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
}

.athena-scope .knime-content p {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.6;
  max-width: 600px;
}

.athena-scope .knime-content p strong {
  color: var(--text);
}

.athena-scope .knime-cta {
  flex-shrink: 0;
  padding: 11px 22px;
  background: var(--surface2);
  color: var(--accent);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  font-family: 'Sora', sans-serif;
  white-space: nowrap;
  transition: background .2s;
}

.athena-scope .knime-cta:hover {
  background: var(--border);
}

/* ── Bottom ── */
.athena-scope .bottom {
  text-align: center;
  color: var(--muted);
  font-size: 13px;
  margin-top: 44px;
  line-height: 1.8;
}

.athena-scope .bottom a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
}