.aether-page {
  --aether-black: #030106;
  --aether-ink: #fbf7ff;
  --aether-muted: #c9b8dd;
  --aether-dim: #8f79ad;
  --aether-line: rgba(190, 121, 255, 0.22);
  --aether-purple: #a855ff;
  --aether-purple-hot: #d946ef;
  --aether-purple-deep: #2b075f;
  --aether-panel: rgba(19, 7, 34, 0.76);
  --aether-panel-strong: rgba(42, 11, 82, 0.72);
  --aether-shadow: 0 28px 90px rgba(102, 31, 198, 0.34);
  background:
    radial-gradient(circle at 12% 8%, rgba(168, 85, 255, 0.18), transparent 30rem),
    radial-gradient(circle at 84% 18%, rgba(217, 70, 239, 0.16), transparent 28rem),
    linear-gradient(180deg, #030106 0%, #090111 42%, #030106 100%);
  color: var(--aether-ink);
  line-height: 1.65;
  overflow: hidden;
}

.aether-page *,
.aether-page *::before,
.aether-page *::after {
  box-sizing: border-box;
}

.aether-page h1,
.aether-page h2,
.aether-page h3,
.aether-page p {
  margin-top: 0;
}

.aether-page h1,
.aether-page h2,
.aether-page h3 {
  letter-spacing: 0;
  line-height: 1.08;
}

.aether-page h1 {
  max-width: 1080px;
  font-size: clamp(2.45rem, 6.2vw, 5.7rem);
  margin-bottom: 1.25rem;
}

.aether-page h2 {
  font-size: clamp(2rem, 4vw, 3.35rem);
  margin-bottom: 1rem;
}

.aether-page h3 {
  font-size: 1.18rem;
  margin-bottom: 0.7rem;
}

.aether-page p {
  color: var(--aether-muted);
}

.aether-hero {
  position: relative;
  min-height: 96vh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.78fr);
  align-items: center;
  gap: 3rem;
  padding: 11.5rem 5vw 4.5rem;
  isolation: isolate;
}

.aether-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(115deg, rgba(3, 1, 6, 0.98) 0%, rgba(14, 3, 27, 0.9) 46%, rgba(57, 9, 119, 0.72) 100%),
    url("assets/images/pexels-media-8730852.jpg") center / cover;
  filter: grayscale(100%) contrast(1.2) brightness(0.6);
}

.aether-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(rgba(168, 85, 255, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(168, 85, 255, 0.12) 1px, transparent 1px),
    radial-gradient(circle at 72% 35%, rgba(168, 85, 255, 0.24), transparent 20rem);
  background-size: 42px 42px, 42px 42px, auto;
  mask-image: linear-gradient(to bottom, #000 0%, transparent 88%);
}

.aether-hero__content,
.aether-orbit-panel,
.aether-hero__rail {
  position: relative;
  z-index: 1;
}

.aether-eyebrow,
.aether-kicker {
  color: var(--aether-purple);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  margin-bottom: 0.8rem;
  text-transform: uppercase;
}

.aether-kicker {
  color: #c084fc;
}

.aether-hero__subtitle {
  max-width: 880px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.02rem, 2vw, 1.28rem);
  margin-bottom: 2rem;
}

.aether-cta-group,
.aether-division-switcher {
  display: flex;
  flex-wrap: wrap;
  gap: 0.72rem;
}

.aether-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 1px solid rgba(192, 132, 252, 0.52);
  border-radius: 8px;
  padding: 0.84rem 1.05rem;
  background: rgba(33, 8, 61, 0.78);
  color: #ffffff;
  font-weight: 850;
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.aether-button:hover {
  transform: translateY(-2px);
  border-color: #f0abfc;
  background: rgba(109, 40, 217, 0.6);
  box-shadow: 0 0 28px rgba(168, 85, 255, 0.26);
}

.aether-button--primary {
  border-color: #d8b4fe;
  background: linear-gradient(135deg, #a855ff, #6d28d9);
  color: #ffffff;
  box-shadow: 0 0 34px rgba(168, 85, 255, 0.32);
}

.aether-division-switcher {
  align-items: center;
  margin-top: 1.25rem;
}

.aether-division-switcher span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.aether-division-switcher a {
  border: 1px solid rgba(192, 132, 252, 0.4);
  border-radius: 999px;
  padding: 0.52rem 0.82rem;
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 900;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.aether-division-switcher a:hover,
.aether-division-switcher a[aria-current="page"] {
  border-color: #d8b4fe;
  background: #a855ff;
  color: #ffffff;
}

.aether-orbit-panel {
  min-height: 560px;
  align-self: center;
  display: grid;
  place-items: center;
  perspective: 1000px;
}

.aether-core-display,
.aether-data-console,
.aether-signal-card,
.aether-image-space,
.aether-card-media {
  border: 1px solid var(--aether-line);
  border-radius: 8px;
  background: var(--aether-panel);
  overflow: hidden;
  box-shadow: var(--aether-shadow);
}

.aether-image-space::before,
.aether-card-media::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px dashed rgba(216, 180, 254, 0.3);
}

.aether-image-space,
.aether-card-media {
  position: relative;
}

.aether-core-display {
  position: relative;
  width: min(100%, 460px);
  min-height: 430px;
  padding: 1.2rem;
  display: grid;
  grid-template-rows: auto 1fr auto;
  background:
    linear-gradient(145deg, rgba(168, 85, 255, 0.18), rgba(4, 1, 8, 0.88)),
    linear-gradient(rgba(168, 85, 255, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(168, 85, 255, 0.1) 1px, transparent 1px);
  background-size: auto, 26px 26px, 26px 26px;
  transform: rotateX(4deg) rotateY(-7deg);
}

.aether-core-display::before,
.aether-core-display::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(168, 85, 255, 0.36);
  border-radius: 8px;
  pointer-events: none;
}

.aether-core-display::before {
  inset: 14px;
}

.aether-core-display::after {
  inset: -16px 28px 30px -18px;
  opacity: 0.45;
}

.aether-core-display__top {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: #ffffff;
  font-weight: 900;
}

.aether-core-display__top span {
  color: #d8b4fe;
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
}

.aether-core-display__top strong {
  color: #ffffff;
  font-size: 2.5rem;
  line-height: 1;
}

.aether-core-ring {
  position: relative;
  width: min(70vw, 240px);
  aspect-ratio: 1;
  align-self: center;
  justify-self: center;
  border: 1px solid rgba(216, 180, 254, 0.28);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(216, 180, 254, 0.26) 0 9%, transparent 10% 32%, rgba(168, 85, 255, 0.2) 33% 34%, transparent 35%),
    conic-gradient(from 20deg, transparent 0 18%, rgba(168, 85, 255, 0.95) 19% 31%, transparent 32% 52%, rgba(217, 70, 239, 0.85) 53% 64%, transparent 65%);
  box-shadow: inset 0 0 50px rgba(168, 85, 255, 0.28), 0 0 40px rgba(168, 85, 255, 0.26);
}

.aether-core-ring i,
.aether-core-ring b {
  position: absolute;
  inset: 20%;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
}

.aether-core-ring b {
  inset: 36%;
  background: #a855ff;
  box-shadow: 0 0 32px #a855ff;
}

.aether-core-display__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
}

.aether-core-display__grid span {
  border: 1px solid rgba(216, 180, 254, 0.18);
  border-radius: 8px;
  padding: 0.7rem;
  background: rgba(0, 0, 0, 0.28);
  color: #f3e8ff;
  font-size: 0.82rem;
  font-weight: 800;
}

.aether-data-console {
  position: absolute;
  left: -2rem;
  bottom: 4.4rem;
  width: min(86%, 330px);
  display: grid;
  gap: 0.35rem;
  padding: 1rem;
  background: rgba(5, 1, 10, 0.86);
  color: #d8b4fe;
  font-family: Consolas, "Courier New", monospace;
  font-size: 0.78rem;
  transform: rotate(-3deg);
}

.aether-data-console span::before {
  content: "> ";
  color: #a855ff;
}

.aether-signal-card {
  position: absolute;
  right: -0.6rem;
  top: 4.4rem;
  width: 190px;
  padding: 1rem;
  background: rgba(35, 7, 68, 0.9);
  color: #ffffff;
}

.aether-signal-card span {
  display: block;
  color: #d8b4fe;
  font-weight: 850;
}

.aether-signal-card strong {
  display: block;
  margin: 0.35rem 0 0.8rem;
  font-size: 3.4rem;
  line-height: 1;
}

.aether-hero__rail {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  grid-column: 1 / -1;
  border: 1px solid rgba(192, 132, 252, 0.26);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(20, 5, 36, 0.78);
  backdrop-filter: blur(14px);
}

.aether-hero__rail span {
  min-height: 78px;
  display: grid;
  place-items: center;
  padding: 1rem;
  color: #ffffff;
  font-weight: 850;
  text-align: center;
  background: linear-gradient(135deg, rgba(168, 85, 255, 0.14), rgba(0, 0, 0, 0.22));
}

.aether-section,
.aether-visual-strip {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 5rem 0;
  animation: aetherFadeUp 0.8s ease both;
}

.aether-section__header {
  max-width: 790px;
  margin-bottom: 2rem;
}

.aether-intro,
.aether-benefit-band,
.aether-assessment-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 2.25rem;
  align-items: start;
}

.aether-keyword-cloud,
.aether-location-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.2rem;
}

.aether-keyword-cloud span,
.aether-location-tags span,
.aether-tag-grid span,
.aether-challenge-grid span {
  border: 1px solid rgba(192, 132, 252, 0.22);
  border-radius: 8px;
  padding: 0.75rem 0.9rem;
  background: rgba(56, 12, 102, 0.42);
  color: #ffffff;
  font-weight: 800;
}

.aether-visual-strip {
  display: grid;
  grid-template-columns: 1.25fr 0.8fr 1fr;
  grid-auto-rows: 220px;
  gap: 1rem;
  margin-top: -2rem;
}

.aether-visual-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--aether-shadow);
  border: 1px solid rgba(192, 132, 252, 0.24);
  background: #08010f;
}

.aether-visual-card--tall {
  grid-row: span 2;
}

.aether-visual-card--wide {
  grid-column: span 2;
}

.aether-image-space {
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(135deg, rgba(8, 1, 15, 0.58), rgba(168, 85, 255, 0.35)),
    url("assets/images/pexels-media-35072831.jpg");
  background-size: cover;
  background-position: center;
  filter: grayscale(100%);
}

.aether-visual-card:nth-child(2) .aether-image-space {
  background-image: linear-gradient(135deg, rgba(8, 1, 15, 0.58), rgba(168, 85, 255, 0.35)), url("assets/images/pexels-media-32588552.jpg");
}

.aether-visual-card:nth-child(3) .aether-image-space {
  background-image: linear-gradient(135deg, rgba(8, 1, 15, 0.58), rgba(168, 85, 255, 0.35)), url("assets/images/pexels-media-5918191.jpg");
}

.aether-visual-card:nth-child(4) .aether-image-space {
  background-image: linear-gradient(135deg, rgba(8, 1, 15, 0.58), rgba(168, 85, 255, 0.35)), url("assets/images/pexels-media-36733363.jpg");
}

.aether-visual-card i {
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(216, 180, 254, 0.3);
  border-radius: 8px;
  background: rgba(3, 1, 6, 0.7);
  color: #d8b4fe;
  font-size: 1.2rem;
}

.aether-visual-card span {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  border-radius: 8px;
  padding: 0.6rem 0.8rem;
  background: rgba(168, 85, 255, 0.9);
  color: #ffffff;
  font-weight: 900;
}

.aether-service-grid,
.aether-resource-grid,
.aether-faq-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1rem;
}

.aether-service-grid article,
.aether-resource-grid article,
.aether-faq-grid article {
  min-height: 100%;
  border: 1px solid rgba(192, 132, 252, 0.18);
  border-radius: 8px;
  padding: 1rem;
  background:
    linear-gradient(145deg, rgba(168, 85, 255, 0.12), rgba(8, 1, 15, 0.82)),
    linear-gradient(rgba(168, 85, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(168, 85, 255, 0.07) 1px, transparent 1px);
  background-size: auto, 30px 30px, 30px 30px;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.aether-service-grid article {
  grid-column: span 3;
  min-height: 300px;
}

.aether-service-grid article:nth-child(1),
.aether-service-grid article:nth-child(3) {
  grid-column: span 4;
}

.aether-service-grid article:nth-child(2),
.aether-service-grid article:nth-child(4) {
  grid-column: span 2;
}

.aether-service-grid article:hover,
.aether-resource-grid article:hover,
.aether-faq-grid article:hover {
  transform: translateY(-8px);
  border-color: rgba(142, 77, 255, 0.8);
  background-color: rgba(63, 15, 110, 0.72);
}

.aether-service-grid article > span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  margin-bottom: 0.8rem;
  background: rgba(168, 85, 255, 0.96);
  color: #ffffff;
  font-weight: 900;
}

.aether-card-media {
  width: 100%;
  aspect-ratio: 16 / 9;
  margin-bottom: 1rem;
  background:
    radial-gradient(circle at 24% 36%, rgba(216, 180, 254, 0.45), transparent 16%),
    linear-gradient(rgba(168, 85, 255, 0.14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(168, 85, 255, 0.14) 1px, transparent 1px),
    #07010d;
  background-size: auto, 22px 22px, 22px 22px, auto;
}

.aether-check-list,
.aether-process-list {
  display: grid;
  gap: 0.8rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.aether-check-list li {
  border: 1px solid rgba(192, 132, 252, 0.2);
  border-radius: 8px;
  padding: 0.9rem 1rem;
  background: rgba(56, 12, 102, 0.42);
  color: #ffffff;
  font-weight: 850;
}

.aether-tag-grid,
.aether-challenge-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem;
}

.aether-challenge-section,
.aether-location-band,
.aether-parent-section {
  width: 100%;
  max-width: none;
  padding: 5rem max(5vw, calc((100vw - 1180px) / 2));
  background:
    linear-gradient(135deg, rgba(38, 8, 76, 0.95), rgba(3, 1, 6, 0.98)),
    linear-gradient(rgba(168, 85, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(168, 85, 255, 0.08) 1px, transparent 1px);
  background-size: auto, 34px 34px, 34px 34px;
  color: #ffffff;
}

.aether-challenge-section p,
.aether-location-band p,
.aether-parent-section p {
  max-width: 940px;
  color: var(--aether-muted);
}

.aether-challenge-section .aether-kicker,
.aether-location-band .aether-kicker,
.aether-parent-section .aether-kicker {
  color: var(--aether-purple-deep);
  color: #d8b4fe;
}

.aether-challenge-section h2,
.aether-location-band h2,
.aether-parent-section h2 {
  color: #ffffff;
}

.aether-challenge-grid span,
.aether-location-tags span {
  border-color: rgba(216, 180, 254, 0.24);
  background: rgba(3, 1, 6, 0.42);
  color: #ffffff;
}

.aether-process-list {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  counter-reset: aetherProcess;
}

.aether-process-list li {
  position: relative;
  min-height: 210px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid rgba(192, 132, 252, 0.2);
  border-radius: 8px;
  padding: 1.1rem;
  background:
    linear-gradient(160deg, rgba(168, 85, 255, 0.2), rgba(8, 1, 15, 0.82)),
    radial-gradient(circle at 85% 18%, rgba(217, 70, 239, 0.22), transparent 6rem);
}

.aether-process-list li::before {
  counter-increment: aetherProcess;
  content: "0" counter(aetherProcess);
  position: absolute;
  top: 0.8rem;
  left: 1rem;
  color: rgba(255, 255, 255, 0.22);
  font-size: 2.8rem;
  font-weight: 900;
  line-height: 1;
}

.aether-process-list strong {
  color: #ffffff;
}

.aether-process-list span {
  color: var(--aether-muted);
}

.aether-faq-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.aether-resource-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.aether-assessment-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  border: 1px solid rgba(192, 132, 252, 0.22);
  border-radius: 8px;
  padding: 1.25rem;
  background:
    linear-gradient(145deg, rgba(168, 85, 255, 0.12), rgba(6, 1, 11, 0.86)),
    linear-gradient(rgba(168, 85, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(168, 85, 255, 0.07) 1px, transparent 1px);
  background-size: auto, 28px 28px, 28px 28px;
  box-shadow: var(--aether-shadow);
}

.aether-assessment-form label {
  display: grid;
  gap: 0.45rem;
  color: #ffffff;
  font-weight: 850;
}

.aether-assessment-form input,
.aether-assessment-form select,
.aether-assessment-form textarea {
  width: 100%;
  border: 1px solid rgba(192, 132, 252, 0.24);
  border-radius: 8px;
  padding: 0.9rem 1rem;
  background: rgba(3, 1, 6, 0.7);
  color: #ffffff;
  font: inherit;
}

.aether-assessment-form input:focus,
.aether-assessment-form select:focus,
.aether-assessment-form textarea:focus {
  outline: 3px solid rgba(142, 77, 255, 0.26);
  border-color: var(--aether-purple);
}

.aether-form-wide {
  grid-column: 1 / -1;
}

.aether-assessment-form .aether-button {
  width: 100%;
  border: 0;
  cursor: pointer;
  font: inherit;
}

@keyframes aetherFadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .aether-page *,
  .aether-page *::before,
  .aether-page *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 1120px) {
  .aether-service-grid,
  .aether-process-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .aether-service-grid article,
  .aether-service-grid article:nth-child(1),
  .aether-service-grid article:nth-child(2),
  .aether-service-grid article:nth-child(3),
  .aether-service-grid article:nth-child(4) {
    grid-column: span 1;
  }

  .aether-tag-grid,
  .aether-challenge-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 880px) {
  .aether-hero,
  .aether-intro,
  .aether-benefit-band,
  .aether-assessment-section {
    grid-template-columns: 1fr;
  }

  .aether-hero {
    min-height: auto;
    padding: 9rem 1.25rem 3rem;
  }

  .aether-orbit-panel {
    min-height: 520px;
  }

  .aether-core-display {
    transform: none;
  }

  .aether-data-console {
    left: 0;
  }

  .aether-hero__rail,
  .aether-visual-strip,
  .aether-service-grid,
  .aether-resource-grid,
  .aether-faq-grid,
  .aether-process-list {
    grid-template-columns: 1fr 1fr;
  }

  .aether-tag-grid,
  .aether-challenge-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .aether-section {
    width: min(100% - 28px, 1180px);
    padding: 3.5rem 0;
  }

  .aether-hero {
    padding-left: 0.9rem;
    padding-right: 0.9rem;
  }

  .aether-cta-group,
  .aether-button,
  .aether-hero__rail,
  .aether-visual-strip,
  .aether-service-grid,
  .aether-resource-grid,
  .aether-faq-grid,
  .aether-process-list,
  .aether-tag-grid,
  .aether-challenge-grid,
  .aether-assessment-form {
    grid-template-columns: 1fr;
  }

  .aether-button {
    width: 100%;
  }

  .aether-signal-card {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    margin-top: 1rem;
  }

  .aether-data-console {
    position: relative;
    left: auto;
    bottom: auto;
    width: 100%;
    margin-top: -1rem;
    transform: none;
  }

  .aether-core-display {
    min-height: 390px;
  }

  .aether-core-display__grid {
    grid-template-columns: 1fr;
  }

  .aether-challenge-section,
  .aether-location-band,
  .aether-parent-section {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
