:root {
  --mc-bg: #020713;
  --mc-panel: #061222;
  --mc-panel-2: #081728;
  --mc-cyan: #20dfff;
  --mc-blue: #238cff;
  --mc-violet: #9457ff;
  --mc-line: #1d668d;
  --mc-purple-line: #6e43a8;
  --mc-white: #f4f7fb;
  --mc-muted: #9eafc0;
  --mc-display: "Arial Narrow", "Segoe UI", system-ui, sans-serif;
}

body {
  background:
    radial-gradient(circle at 15% 3%, rgba(0, 182, 255, 0.1), transparent 30rem),
    radial-gradient(circle at 90% 5%, rgba(121, 69, 255, 0.08), transparent 26rem),
    var(--mc-bg);
}

.acl-main {
  width: min(1220px, calc(100% - 270px));
}

.mc-header {
  position: relative;
  display: grid;
  grid-template-columns: minmax(210px, 31%) 1fr;
  gap: clamp(18px, 4vw, 46px);
  align-items: center;
  min-height: 260px;
  padding: clamp(22px, 4vw, 44px);
  overflow: hidden;
  border: 1px solid var(--mc-cyan);
  border-radius: 26px;
  background:
    radial-gradient(circle at 18% 45%, rgba(0, 218, 255, 0.12), transparent 18rem),
    radial-gradient(circle at 78% 48%, rgba(117, 56, 255, 0.09), transparent 24rem),
    linear-gradient(145deg, #00030a, #030817 70%, #09051b);
  box-shadow: inset 0 0 0 1px rgba(134, 76, 255, 0.14), 0 22px 65px rgba(0, 0, 0, 0.35);
}

.mc-header::after {
  content: "";
  position: absolute;
  inset: auto 9% 0 12%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--mc-cyan), var(--mc-violet), transparent);
}

.mc-brand-mark {
  position: relative;
  width: min(250px, 100%);
  aspect-ratio: 1 / 1.05;
  margin: auto;
  filter: drop-shadow(0 0 16px rgba(0, 222, 255, 0.42));
}

.mc-flask-neck {
  position: absolute;
  top: 7%;
  left: 38%;
  width: 25%;
  height: 26%;
  border: clamp(4px, 0.7vw, 7px) solid #28efff;
  border-bottom: 0;
  border-radius: 12px 12px 0 0;
}

.mc-flask-body {
  position: absolute;
  left: 18%;
  top: 25%;
  width: 64%;
  height: 61%;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: clamp(4px, 0.7vw, 7px) solid #28efff;
  border-radius: 18px 18px 44% 44%;
  background: rgba(0, 9, 24, 0.68);
}

.mc-flask-body::after {
  content: "";
  position: absolute;
  inset: 65% -12% -8%;
  transform: rotate(-8deg);
  background: linear-gradient(135deg, #0aa7ff, #214fff 58%, #8c4dff);
  box-shadow: 0 -4px 18px rgba(37, 169, 255, 0.65);
}

.mc-flask-a {
  position: relative;
  z-index: 2;
  font: 900 clamp(64px, 9vw, 118px) / 1 var(--mc-display);
  color: #5de9ff;
  text-shadow: 0 0 14px rgba(23, 204, 255, 0.72);
}

.mc-flask-a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 8%;
  width: 16%;
  aspect-ratio: 1;
  transform: translateX(-50%);
  border-radius: 50%;
  background: #1cdfff;
}

.mc-orbit {
  position: absolute;
  inset: 39% -3% 8%;
  border: 3px solid #13dff5;
  border-radius: 50%;
  transform: rotate(20deg);
}

.mc-orbit--two {
  border-color: #7b55ff;
  transform: rotate(-25deg);
}

.mc-orbit-dot,
.mc-bubble {
  position: absolute;
  z-index: 3;
  border-radius: 50%;
  background: #1de8ff;
  box-shadow: 0 0 10px currentColor;
}

.mc-orbit-dot--one { left: 3%; top: 52%; width: 10%; aspect-ratio: 1; color: #20e7ff; }
.mc-orbit-dot--two { right: 4%; top: 46%; width: 9%; aspect-ratio: 1; color: #386cff; background: #386cff; }
.mc-orbit-dot--three { left: 46%; bottom: 1%; width: 8%; aspect-ratio: 1; color: #7e52ff; background: #7e52ff; }
.mc-bubble--one { left: 48%; top: 0; width: 7%; aspect-ratio: 1; }
.mc-bubble--two { left: 57%; top: 7%; width: 9%; aspect-ratio: 1; background: linear-gradient(145deg, #2af4ff, #7f54ff); }
.mc-bubble--three { left: 43%; top: 14%; width: 6%; aspect-ratio: 1; }

.mc-header-copy {
  min-width: 0;
  text-align: center;
}

.mc-display,
.mc-header-copy h1,
.mc-header-copy h2,
.mc-section-title,
.acl-section-heading h2,
.acl-project-card h3,
.ccr-module-heading h3 {
  font-family: var(--mc-display);
  font-weight: 700;
  letter-spacing: 0.08em;
}

.mc-header-copy h1,
.mc-header-copy h2 {
  margin: 0;
  line-height: 1;
  text-transform: uppercase;
  background: linear-gradient(90deg, #24edff 0%, #1ea4ff 58%, #a85cff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 18px rgba(18, 151, 255, 0.3);
}

.mc-header-copy h1 {
  font-size: clamp(2.2rem, 7vw, 5.2rem);
}

.mc-header-copy h2 {
  margin-top: 18px;
  font-size: clamp(1.55rem, 4.8vw, 3.8rem);
}

.mc-header-rule {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 18px auto 10px;
}

.mc-header-rule span {
  display: block;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--mc-cyan));
}

.mc-header-rule span:nth-child(1) { width: 24%; }
.mc-header-rule span:nth-child(2) { width: 17%; opacity: 0.72; }
.mc-header-rule span:nth-child(3) { width: 11%; opacity: 0.5; }
.mc-header-rule i {
  width: 13px;
  height: 13px;
  transform: rotate(45deg);
  border: 2px solid var(--mc-blue);
  background: #061222;
}

.mc-portal-subtitle {
  margin: 0;
  color: var(--mc-white);
  font: 800 clamp(0.8rem, 2vw, 1.15rem) / 1.3 var(--mc-display);
  letter-spacing: 0.13em;
  text-transform: uppercase;
  white-space: nowrap;
}

.mc-nav-row {
  display: flex;
  justify-content: flex-start;
  margin: 18px 0 24px;
}

.mc-nav-button {
  width: 78px;
  min-height: 66px;
  display: grid;
  place-items: center;
  gap: 2px;
  padding: 9px 12px 7px;
  border: 1px solid #287bb0;
  border-radius: 15px;
  background: #06111f;
  color: white;
  box-shadow: inset 0 0 0 1px rgba(129, 75, 255, 0.18);
}

.mc-nav-lines {
  display: grid;
  gap: 5px;
  width: 33px;
}

.mc-nav-lines span {
  height: 3px;
  border-radius: 999px;
  background: #e8f3fb;
}

.mc-nav-label {
  font-size: 0.7rem;
  letter-spacing: 0.16em;
}

.mc-search-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 72px minmax(210px, auto);
  gap: 12px;
  margin-bottom: 20px;
}

.mc-search-field,
.mc-question-field {
  min-width: 0;
  display: flex;
  align-items: center;
  border: 1px solid #2d5e80;
  border-radius: 13px;
  background: #040d19;
}

.mc-search-field svg {
  flex: 0 0 auto;
  margin-left: 16px;
  color: #a8b8c7;
}

.mc-search-field input,
.mc-question-field input {
  width: 100%;
  min-width: 0;
  padding: 15px 16px;
  border: 0;
  outline: 0;
  background: transparent;
  color: white;
}

.mc-search-field input::placeholder,
.mc-question-field input::placeholder {
  color: #8393a5;
}

.mc-icon-button,
.mc-evidence-button,
.mc-section-details,
.mc-launch-button,
.mc-export-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid var(--mc-blue);
  border-radius: 13px;
  background: #071321;
  color: var(--mc-white);
  font-weight: 800;
  text-decoration: none;
  box-shadow: inset 0 0 0 1px rgba(130, 74, 255, 0.12);
}

.mc-icon-button:hover,
.mc-evidence-button:hover,
.mc-section-details:hover,
.mc-launch-button:hover,
.mc-export-button:hover {
  border-color: var(--mc-violet);
  background: #0a1828;
}

.mc-icon-button {
  min-height: 56px;
  padding: 10px;
}

.mc-evidence-button {
  padding: 12px 18px;
  border-color: #7445b3;
}

.mc-panel,
.acl-section,
#revenue.acl-panel {
  margin-top: 20px;
  padding: clamp(20px, 3vw, 32px);
  border: 1px solid #584080;
  border-radius: 20px;
  background: linear-gradient(155deg, rgba(7, 20, 36, 0.97), rgba(3, 12, 24, 0.98));
  box-shadow: inset 0 0 0 1px rgba(30, 181, 255, 0.06);
}

.mc-panel-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}

.mc-panel-title-group {
  display: flex;
  align-items: center;
  gap: 18px;
}

.mc-brain-icon {
  width: 70px;
  height: 70px;
  flex: 0 0 70px;
  color: var(--mc-cyan);
}

.mc-section-title {
  margin: 0;
  color: #21cfff;
  font-size: clamp(1.7rem, 5vw, 3.2rem);
  line-height: 1;
  text-transform: uppercase;
}

.mc-version,
.mc-date {
  color: var(--mc-white);
  font-size: 1rem;
  white-space: nowrap;
}

.mc-mission-copy {
  margin: 0;
  color: #d8e3ec;
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  line-height: 1.65;
}

.mc-milestones {
  display: grid;
  gap: 11px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.mc-milestones li {
  display: flex;
  align-items: baseline;
  gap: 11px;
  color: #d5e0e9;
  font-size: 1rem;
}

.mc-dot {
  width: 10px;
  height: 10px;
  flex: 0 0 10px;
  border-radius: 50%;
  background: var(--mc-cyan);
  box-shadow: 0 0 8px rgba(30, 225, 255, 0.65);
}

.mc-dot--blue { background: #1a9cff; }
.mc-dot--violet { background: #8253ff; }

.mc-section-actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: stretch;
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid #34536d;
}

.mc-question-row {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 68px;
  gap: 8px;
}

.mc-question-field {
  min-height: 58px;
}

.mc-question-send {
  min-height: 58px;
  border-color: #8050c5;
}

.mc-section-details {
  min-height: 58px;
  padding: 10px 18px;
  border-color: #7445b3;
  white-space: nowrap;
}

.mc-product-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(230px, 310px);
  gap: 24px;
  align-items: center;
}

.mc-product-kicker,
.mc-overview-kicker {
  margin: 0 0 10px;
  color: var(--mc-cyan);
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.mc-product-title {
  margin: 0;
  color: var(--mc-white);
  font: 700 clamp(2rem, 6vw, 4.2rem) / 1 var(--mc-display);
  letter-spacing: 0.07em;
  white-space: nowrap;
}

.mc-product-status {
  margin: 14px 0 0;
  color: #c8d5df;
  line-height: 1.5;
}

.mc-launch-stack {
  display: grid;
  gap: 12px;
}

.mc-launch-button {
  min-height: 72px;
  justify-content: flex-start;
  padding: 12px 18px;
  border-color: #7144ab;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.mc-launch-button--website {
  border-color: #267eb3;
}

.mc-launch-icon {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  color: var(--mc-cyan);
}

.mc-overview-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 16px;
}

.mc-overview-title {
  margin: 0;
  color: #21cfff;
  font: 700 clamp(1.45rem, 4vw, 2.4rem) / 1.1 var(--mc-display);
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

#summaryGrid.acl-summary-grid {
  margin-top: 14px;
}

#productBranding {
  display: none;
}

.acl-section-heading h2,
.acl-project-card h3,
.ccr-module-heading h3,
.acl-list-item h3,
.acl-timeline-content h3 {
  color: #eaf4fb;
  text-transform: uppercase;
}

.acl-section-heading {
  align-items: flex-start;
}

.acl-section-count,
.acl-kicker {
  color: var(--mc-cyan);
}

.mc-injected-question {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid #34536d;
}

.mc-export-panel {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  margin-top: 24px;
  padding: 20px;
  border: 1px solid #4d4a7b;
  border-radius: 16px;
  background: #06111f;
}

.mc-export-icon {
  width: 46px;
  height: 46px;
  color: #71a8ff;
}

.mc-export-copy strong {
  display: block;
  color: white;
  font-size: 1.05rem;
}

.mc-export-copy small {
  display: block;
  margin-top: 5px;
  color: var(--mc-muted);
  line-height: 1.4;
}

.mc-export-button {
  min-height: 52px;
  padding: 10px 18px;
  border-color: #7445b3;
  text-transform: uppercase;
}

@media (max-width: 980px) {
  .acl-main {
    width: 100%;
  }
}

@media (max-width: 760px) {
  .mc-header {
    grid-template-columns: 34% 1fr;
    min-height: 205px;
    gap: 8px;
    padding: 18px 12px;
    border-radius: 18px;
  }

  .mc-brand-mark {
    width: 150px;
    max-width: 100%;
  }

  .mc-header-copy h1 {
    font-size: clamp(1.7rem, 8.4vw, 3rem);
  }

  .mc-header-copy h2 {
    margin-top: 12px;
    font-size: clamp(1.15rem, 5.4vw, 2rem);
  }

  .mc-header-rule {
    margin: 12px auto 8px;
  }

  .mc-portal-subtitle {
    font-size: clamp(0.55rem, 2.4vw, 0.78rem);
    letter-spacing: 0.08em;
  }

  .mc-nav-row {
    margin: 12px 0 20px;
  }

  .mc-search-row {
    grid-template-columns: minmax(0, 1fr) 62px;
  }

  .mc-evidence-button {
    grid-column: 1 / -1;
    min-height: 54px;
  }

  .mc-panel {
    padding: 20px 16px;
  }

  .mc-panel-header {
    gap: 10px;
  }

  .mc-panel-title-group {
    gap: 12px;
  }

  .mc-brain-icon {
    width: 54px;
    height: 54px;
    flex-basis: 54px;
  }

  .mc-section-actions {
    grid-template-columns: 1fr;
  }

  .mc-section-details {
    justify-self: end;
  }

  .mc-product-layout {
    grid-template-columns: 1fr;
  }

  .mc-product-title {
    white-space: normal;
    font-size: clamp(1.9rem, 10vw, 3.25rem);
  }

  .mc-launch-stack {
    grid-template-columns: 1fr 1fr;
  }

  .mc-launch-button {
    min-height: 62px;
    padding: 10px 12px;
    font-size: 0.82rem;
  }

  .mc-launch-icon {
    width: 32px;
    height: 32px;
    flex-basis: 32px;
  }

  .mc-export-panel {
    grid-template-columns: auto 1fr;
  }

  .mc-export-button {
    grid-column: 1 / -1;
  }
}

@media (max-width: 480px) {
  .mc-header {
    grid-template-columns: 36% 1fr;
  }

  .mc-brand-mark {
    transform: scale(0.9);
  }

  .mc-header-copy h1 {
    letter-spacing: 0.035em;
  }

  .mc-search-field input,
  .mc-question-field input {
    font-size: 0.92rem;
  }

  .mc-question-row {
    grid-template-columns: minmax(0, 1fr) 58px;
  }

  .mc-launch-stack {
    grid-template-columns: 1fr;
  }

  .mc-milestones li {
    font-size: 0.92rem;
  }
}
