:root {
  --athena: #7048e8;
  --athena-bright: #9b7cff;
  --athena-deep: #16122c;
  --athena-wash: #f0edff;
}
.athena-page em {
  color: var(--athena-bright);
}
.athena-page .atlas-kicker,
.athena-page .atlas-eyebrow {
  color: var(--athena-bright);
}
.athena-page .button-small,
.athena-button {
  background: var(--athena-bright);
}
.athena-hero {
  position: relative;
  overflow: hidden;
  min-height: 850px;
  padding: 170px 0 52px;
  background: radial-gradient(
    circle at 78% 43%,
    #28204f 0,
    #121328 40%,
    #080c17 76%
  );
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.athena-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(155, 124, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(155, 124, 255, 0.04) 1px, transparent 1px);
  background-size: 72px 72px;
}
.athena-hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 70px;
  align-items: center;
}
.athena-copy h1 {
  font-size: clamp(56px, 6.3vw, 92px);
  line-height: 0.96;
  letter-spacing: -0.055em;
  margin: 0 0 30px;
}
.analysis-stage {
  position: relative;
  min-height: 480px;
  background: #12182b;
  border: 1px solid rgba(155, 124, 255, 0.3);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.38);
  overflow: hidden;
}
.analysis-stage > .concept-label {
  position: absolute;
  z-index: 5;
  top: 14px;
  right: 16px;
  color: rgba(255, 255, 255, 0.45);
}
.video-frame {
  position: absolute;
  left: 5%;
  top: 10%;
  width: 61%;
  height: 58%;
  background: linear-gradient(145deg, #26364b, #182639);
  border: 1px solid rgba(255, 255, 255, 0.15);
  overflow: hidden;
}
.video-frame small {
  position: absolute;
  left: 14px;
  bottom: 12px;
  font-size: 8px;
  letter-spacing: 0.15em;
}
.play-mark {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  font-size: 12px;
}
.pitch-scan {
  position: absolute;
  inset: 12%;
  border: 1px solid rgba(255, 255, 255, 0.18);
}
.pitch-scan:before {
  content: "";
  position: absolute;
  left: 50%;
  height: 100%;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}
.pitch-scan:after {
  content: "";
  position: absolute;
  width: 58px;
  height: 58px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.pitch-scan i {
  position: absolute;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--athena-bright);
}
.pitch-scan i:nth-child(1) {
  left: 28%;
  top: 60%;
}
.pitch-scan i:nth-child(2) {
  left: 52%;
  top: 37%;
}
.pitch-scan i:nth-child(3) {
  left: 72%;
  top: 64%;
}
.analysis-timeline {
  position: absolute;
  left: 5%;
  top: 72%;
  width: 61%;
  height: 45px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.analysis-timeline span {
  position: absolute;
  top: -2px;
  width: 43%;
  border-top: 3px solid var(--athena-bright);
}
.analysis-timeline i {
  position: absolute;
  top: -5px;
  width: 9px;
  height: 9px;
  background: #fff;
  border-radius: 50%;
}
.analysis-timeline i:nth-of-type(1) {
  left: 18%;
}
.analysis-timeline i:nth-of-type(2) {
  left: 44%;
}
.analysis-timeline i:nth-of-type(3) {
  left: 72%;
}
.observation-card,
.pattern-card {
  position: absolute;
  right: 4%;
  width: 32%;
  padding: 18px;
  background: #202541;
  border-left: 3px solid var(--athena-bright);
  display: flex;
  flex-direction: column;
}
.observation-card {
  top: 19%;
}
.pattern-card {
  top: 55%;
  background: #181d34;
}
.observation-card small,
.pattern-card small {
  font-size: 8px;
  letter-spacing: 0.12em;
  color: var(--athena-bright);
}
.observation-card b,
.pattern-card b {
  font-size: 13px;
  margin: 12px 0;
}
.observation-card span,
.pattern-card span {
  font-size: 10px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.55);
}
.knowledge-bridge {
  display: grid;
  grid-template-columns: 1fr 180px 1fr;
  margin-top: 55px;
  border: 1px solid var(--qf-color-border-light);
}
.knowledge-bridge > div {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  padding: 28px;
  gap: 10px;
}
.knowledge-bridge > div small {
  grid-column: 1/-1;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--qf-color-stone);
}
.knowledge-bridge span {
  padding: 12px;
  background: #fff;
  border: 1px solid var(--qf-color-border-light);
  font-size: 12px;
}
.knowledge-bridge > strong {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--athena-deep);
  color: #fff;
  letter-spacing: 0.13em;
}
.knowledge-bridge > strong small {
  margin-top: 9px;
  color: var(--athena-bright);
  font-size: 7px;
}
.athena-flow-section {
  background: linear-gradient(135deg, #090c18, var(--athena-deep));
}
.athena-flow-section .atlas-heading {
  color: #fff;
}
.athena-flow-section .atlas-heading > p {
  color: rgba(255, 255, 255, 0.62);
}
.athena-flow {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}
.athena-flow li {
  position: relative;
  min-height: 300px;
  padding: 28px 23px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-right: 0;
}
.athena-flow li:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}
.athena-flow li:after {
  content: "→";
  position: absolute;
  z-index: 2;
  right: -10px;
  top: 52px;
  color: var(--athena-bright);
  background: var(--athena-deep);
  padding: 2px;
}
.athena-flow li:last-child:after {
  display: none;
}
.athena-flow span {
  font-size: 9px;
  letter-spacing: 0.13em;
  color: var(--athena-bright);
}
.athena-flow h3 {
  font-size: 24px;
  margin: 65px 0 18px;
}
.athena-flow p {
  font-size: 13px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.58);
}
.athena-page .capability-grid article > span,
.athena-page .benefit-grid article > span {
  color: var(--athena);
}
.athena-page .capability-grid .conditional {
  background: var(--athena-wash);
}
.athena-showcase {
  background: #eaeaf0;
}
.athena-showcase-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 18px;
}
.athena-showcase-grid article {
  background: #fff;
  padding: 18px;
  outline: none;
}
.athena-showcase-grid article:focus {
  box-shadow: 0 0 0 3px var(--athena);
}
.showcase-analysis {
  grid-row: span 2;
}
.athena-showcase-grid h3 {
  font-size: 20px;
  margin: 24px 6px 8px;
}
.athena-showcase-grid p {
  font-size: 13px;
  color: var(--qf-color-stone);
  margin: 0 6px 10px;
}
.demo-workspace {
  position: relative;
  height: 390px;
  margin-top: 15px;
  background: #11162a;
}
.demo-video {
  position: absolute;
  left: 4%;
  top: 8%;
  width: 63%;
  height: 58%;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, #26384e, #1a2738);
  color: #fff;
}
.demo-video:after {
  content: "";
  position: absolute;
  inset: 14%;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.demo-video i {
  z-index: 2;
  font-style: normal;
}
.demo-video small {
  position: absolute;
  z-index: 2;
  bottom: 12px;
  left: 12px;
  font-size: 8px;
}
.demo-notes {
  position: absolute;
  right: 4%;
  top: 8%;
  width: 25%;
}
.demo-notes span {
  display: block;
  padding: 16px 9px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  font-size: 9px;
  line-height: 1.4;
  color: #fff;
}
.demo-notes b {
  display: block;
  color: var(--athena-bright);
  font-size: 8px;
}
.demo-line {
  position: absolute;
  left: 4%;
  right: 4%;
  bottom: 12%;
  height: 38px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}
.demo-line:before {
  content: "";
  position: absolute;
  width: 62%;
  border-top: 3px solid var(--athena-bright);
  top: -2px;
}
.demo-line i {
  position: absolute;
  top: -5px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #fff;
}
.demo-line i:nth-child(1) {
  left: 15%;
}
.demo-line i:nth-child(2) {
  left: 42%;
}
.demo-line i:nth-child(3) {
  left: 70%;
}
.pattern-map,
.report-sheet {
  height: 185px;
  margin-top: 15px;
  background: var(--athena-deep);
  position: relative;
  overflow: hidden;
}
.pattern-map i {
  position: absolute;
  width: 28px;
  height: 28px;
  border: 1px solid var(--athena-bright);
  border-radius: 50%;
}
.pattern-map i:nth-child(1) {
  left: 14%;
  top: 20%;
}
.pattern-map i:nth-child(2) {
  left: 60%;
  top: 16%;
}
.pattern-map i:nth-child(3) {
  left: 25%;
  top: 66%;
}
.pattern-map i:nth-child(4) {
  left: 71%;
  top: 63%;
}
.pattern-map b {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: 10px;
  color: #fff;
}
.report-sheet {
  background: #fff;
  border: 16px solid var(--athena-deep);
  padding: 18px;
}
.report-sheet b {
  font-size: 9px;
  color: var(--athena);
}
.report-sheet i {
  display: block;
  width: 86%;
  border-top: 5px solid #dde0e7;
  margin-top: 14px;
}
.report-sheet i:nth-of-type(2) {
  width: 68%;
}
.report-sheet i:nth-of-type(3) {
  width: 78%;
}
.report-sheet span {
  display: block;
  margin-top: 18px;
  font-size: 8px;
  color: var(--qf-color-stone);
}
.ai-criteria {
  background: #0b0d19;
}
.ai-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
}
.ai-layout h2 {
  font-size: clamp(42px, 4.6vw, 68px);
  line-height: 1.04;
  letter-spacing: -0.045em;
}
.ai-layout p {
  font-size: 17px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.67);
}
.ai-layout blockquote {
  margin: 45px 0 0;
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 22px;
  color: var(--athena-bright);
}
.athena-benefits {
  background: linear-gradient(135deg, #090c18, var(--athena-deep));
}
.athena-page .role-list span:before {
  color: var(--athena);
}
.athena-quickfoot {
  background: #090c18;
}
.athena-quickfoot a {
  color: var(--athena-bright);
}
.athena-contact {
  background: linear-gradient(135deg, #211848, #0c1020);
}
.athena-page :focus-visible {
  outline-color: var(--athena-bright);
}
@media (max-width: 900px) {
  .athena-hero {
    padding-top: 145px;
  }
  .athena-hero-layout,
  .ai-layout {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .analysis-stage {
    width: min(100%, 690px);
    margin: auto;
  }
  .knowledge-bridge {
    grid-template-columns: 1fr;
  }
  .knowledge-bridge > strong {
    min-height: 120px;
  }
  .athena-flow {
    grid-template-columns: 1fr;
  }
  .athena-flow li {
    min-height: auto;
    border-right: 1px solid rgba(255, 255, 255, 0.16);
    border-bottom: 0;
    padding: 25px;
  }
  .athena-flow li:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }
  .athena-flow li:after {
    content: "↓";
    right: auto;
    left: 43px;
    top: auto;
    bottom: -12px;
  }
  .athena-flow h3 {
    margin: 26px 0 12px;
  }
  .athena-showcase-grid {
    grid-template-columns: 1fr;
  }
  .showcase-analysis {
    grid-row: auto;
  }
}
@media (max-width: 560px) {
  .athena-hero {
    min-height: auto;
    padding: 130px 0 35px;
  }
  .athena-copy h1 {
    font-size: 48px;
  }
  .analysis-stage {
    min-height: 540px;
  }
  .video-frame {
    left: 5%;
    top: 10%;
    width: 90%;
    height: 40%;
  }
  .analysis-timeline {
    left: 5%;
    top: 53%;
    width: 90%;
  }
  .observation-card,
  .pattern-card {
    left: 5%;
    right: auto;
    width: 90%;
    padding: 14px;
  }
  .observation-card {
    top: 62%;
  }
  .pattern-card {
    top: 79%;
  }
  .knowledge-bridge > div {
    padding: 18px;
  }
  .demo-workspace {
    height: 350px;
  }
  .demo-video {
    left: 4%;
    top: 5%;
    width: 92%;
    height: 46%;
  }
  .demo-notes {
    left: 4%;
    right: auto;
    top: 54%;
    width: 92%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
  .demo-notes span {
    padding: 10px 6px;
  }
  .demo-line {
    bottom: 6%;
  }
  .athena-showcase-grid article {
    padding: 12px;
  }
  .athena-contact h2 {
    font-size: 42px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .athena-page * {
    scroll-behavior: auto !important;
  }
}
