﻿/* AEROC ??/web homepage development visual page */

.ae-page-webdev {
  --wd-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --wd-spring: cubic-bezier(0.34, 1.25, 0.64, 1);
  --wd-dur: 0.85s;
  --wd-navy: #0b1f44;
  --wd-line: rgba(48, 117, 240, 0.35);
}

/* Hero rise + btn */
.ae-wd-hero__content .ae-wd-rise {
  opacity: 0;
  transform: translateY(28px);
  filter: blur(6px);
  animation: aeWdRise var(--wd-dur) var(--wd-ease) forwards;
  animation-delay: var(--wd-delay, 0ms);
}

@keyframes aeWdRise {
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

.ae-wd-hero__media {
  transform: translate3d(0, 0, 0) scale(1.06);
  transition: transform 0.9s var(--wd-ease);
  will-change: transform;
}

.ae-wd-btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition:
    transform 0.45s var(--wd-spring),
    background 0.35s var(--wd-ease),
    border-color 0.35s var(--wd-ease),
    color 0.35s var(--wd-ease),
    box-shadow 0.45s var(--wd-ease);
}

.ae-wd-btn:hover {
  transform: translateY(-2px);
}

.ae-wd-btn__arrow {
  display: inline-block;
  transition: transform 0.4s var(--wd-spring);
}

.ae-wd-btn:hover .ae-wd-btn__arrow {
  transform: translateX(5px);
}

/* Sections */
.ae-wd-section {
  padding: clamp(72px, 10vw, 120px) 0;
}

.ae-wd-section--muted {
  background: var(--ae-bg-muted);
}

.ae-wd-head {
  max-width: 34em;
  margin-bottom: clamp(36px, 5vw, 56px);
}

.ae-wd-head .ae-h2 {
  margin: 0 0 12px;
  word-break: keep-all;
}

.ae-wd-head .ae-lead {
  margin: 0;
  font-size: clamp(15px, 1.5vw, 17px);
  line-height: 1.65;
  color: var(--ae-text-sub);
}

/* Section head / block entrance polish (works with .ae-reveal) */
.ae-page-webdev .ae-wd-head.ae-reveal {
  opacity: 0;
  transform: translateY(22px);
  filter: blur(4px);
  transition:
    opacity 0.8s var(--wd-ease),
    transform 0.85s var(--wd-ease),
    filter 0.85s var(--wd-ease);
}

.ae-page-webdev .ae-wd-head.ae-reveal.is-visible {
  opacity: 1;
  transform: none;
  filter: none;
}

.ae-page-webdev .ae-wd-head.ae-reveal.is-visible .ae-h2 {
  animation: aeWdHeadSlide 0.85s var(--wd-ease) both;
}

.ae-page-webdev .ae-wd-head.ae-reveal.is-visible .ae-lead {
  animation: aeWdHeadSlide 0.85s var(--wd-ease) 90ms both;
}

@keyframes aeWdHeadSlide {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

/* ========== Service map ========== */
.ae-wd-map {
  display: grid;
  grid-template-columns: minmax(240px, 280px) minmax(0, 1fr);
  gap: 0;
  border: 1px solid #e6eaef;
  background: #fff;
  min-height: 480px;
  overflow: hidden;
  border-radius: 2px;
}

.ae-wd-map__tabs {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  padding: 28px 18px;
  border-right: 1px solid #e6eaef;
  background: #f7f9fc;
}

.ae-wd-map__tab {
  appearance: none;
  border: 0;
  background: transparent;
  text-align: left;
  padding: 16px 18px;
  font: inherit;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.35;
  color: #8b95a5;
  cursor: pointer;
  position: relative;
  border-radius: 10px;
  display: flex;
  align-items: baseline;
  gap: 12px;
  transition:
    color 0.35s var(--wd-ease),
    background 0.35s var(--wd-ease),
    transform 0.35s var(--wd-spring);
}

.ae-wd-map__idx {
  flex-shrink: 0;
  width: 1.6em;
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.06em;
  color: #c2c9d3;
  transition: color 0.35s var(--wd-ease);
}

.ae-wd-map__tab:hover {
  color: var(--ae-text);
  background: rgba(255, 255, 255, 0.7);
}

.ae-wd-map__tab:hover .ae-wd-map__idx {
  color: #9aa5b5;
}

.ae-wd-map__tab.is-active {
  color: var(--ae-primary);
  background: #fff;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}

.ae-wd-map__tab.is-active .ae-wd-map__idx {
  color: var(--ae-primary);
}

.ae-wd-map__tab.is-active::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18%;
  bottom: 18%;
  width: 3px;
  border-radius: 0 2px 2px 0;
  background: var(--ae-primary);
}

.ae-wd-map__panel {
  padding: 36px 40px 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  min-width: 0;
}

.ae-wd-map__desc {
  margin: 0;
  font-size: 17px;
  line-height: 1.6;
  letter-spacing: -0.02em;
  color: var(--ae-text);
  min-height: 1.6em;
  font-weight: 550;
  transition:
    opacity 0.35s var(--wd-ease),
    transform 0.35s var(--wd-ease);
}

.ae-wd-map__desc.is-swap {
  opacity: 0;
  transform: translateY(8px);
}

.ae-wd-map__progress {
  position: absolute;
  left: 40px;
  right: 40px;
  bottom: 0;
  height: 2px;
  background: #eef1f5;
  overflow: hidden;
}

.ae-wd-map__progress > span {
  display: block;
  height: 100%;
  width: 0%;
  background: var(--ae-primary);
  transform-origin: left center;
}

.ae-wd-map.is-playing .ae-wd-map__progress > span {
  animation: aeWdMapProgress 3.2s linear forwards;
}

@keyframes aeWdMapProgress {
  from { width: 0%; }
  to { width: 100%; }
}

.ae-wd-wire {
  position: relative;
  flex: 1;
  min-height: 300px;
  background: #f4f6f9;
  border: 1px solid #e8ecf1;
  border-radius: 12px;
  overflow: hidden;
}

.ae-wd-wire__frame {
  position: absolute;
  inset: 28px;
  display: none;
  flex-direction: column;
  gap: 12px;
  opacity: 0;
  transform: translateY(14px);
}

.ae-wd-wire__frame.is-active {
  display: flex;
  animation: aeWdWireIn 0.7s var(--wd-ease) forwards;
}

.ae-wd-wire__frame.is-active > * {
  animation: aeWdWirePiece 0.55s var(--wd-ease) both;
}

.ae-wd-wire__frame.is-active > *:nth-child(1) { animation-delay: 50ms; }
.ae-wd-wire__frame.is-active > *:nth-child(2) { animation-delay: 110ms; }
.ae-wd-wire__frame.is-active > *:nth-child(3) { animation-delay: 170ms; }
.ae-wd-wire__frame.is-active > *:nth-child(4) { animation-delay: 230ms; }
.ae-wd-wire__frame.is-active > *:nth-child(5) { animation-delay: 290ms; }
.ae-wd-wire__frame.is-active > *:nth-child(6) { animation-delay: 350ms; }

@keyframes aeWdWireIn {
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes aeWdWirePiece {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.ae-wd-wire__nav {
  height: 16px;
  border-radius: 6px;
  background: rgba(48, 117, 240, 0.12);
}

.ae-wd-wire__hero {
  height: 88px;
  border-radius: 8px;
  background: linear-gradient(135deg, #3075f0 0%, #5b9bff 55%, #a8c8ff 100%);
}

.ae-wd-wire__hero--tall {
  height: 120px;
}

.ae-wd-wire__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  flex: 1;
}

.ae-wd-wire__grid span,
.ae-wd-wire__grid--2 span {
  background: #fff;
  border-radius: 8px;
  border: 1px solid #e6eaef;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.04);
}

.ae-wd-wire__grid--2 {
  grid-template-columns: 1fr 1fr;
}

.ae-wd-wire__row {
  height: 32px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid #e6eaef;
}

.ae-wd-wire__cta {
  height: 32px;
  width: 36%;
  align-self: flex-end;
  border-radius: 8px;
  background: var(--ae-primary);
}

.ae-wd-wire__cta--wide {
  width: 100%;
}

.ae-wd-wire__stack {
  display: grid;
  gap: 10px;
}

.ae-wd-wire__stack span {
  height: 40px;
  border-radius: 8px;
  border: 1px solid #e6eaef;
  background: #fff;
}

.ae-wd-wire__split {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 12px;
  min-height: 88px;
}

.ae-wd-wire__pill {
  border-radius: 999px;
  background: rgba(48, 117, 240, 0.12);
}

.ae-wd-wire__block {
  border-radius: 8px;
  border: 1px solid #e6eaef;
  background: #fff;
}

.ae-wd-wire__shop {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  flex: 1;
}

.ae-wd-wire__shop span {
  border-radius: 8px;
  border: 1px solid #e6eaef;
  background: #fff;
  position: relative;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.04);
}

.ae-wd-wire__shop span::after {
  content: "";
  position: absolute;
  left: 14%;
  right: 14%;
  bottom: 16%;
  height: 8px;
  border-radius: 4px;
  background: rgba(48, 117, 240, 0.22);
}

.ae-wd-wire__bar {
  height: 20px;
  border-radius: 8px;
  background: var(--ae-primary);
}

.ae-wd-wire__dash {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 12px;
  flex: 1;
}

.ae-wd-wire__dash aside {
  border-radius: 8px;
  background: #0b1f44;
}

.ae-wd-wire__dash > div {
  display: grid;
  gap: 10px;
}

.ae-wd-wire__chart {
  height: 78px;
  border-radius: 8px;
  border: 1px solid #e6eaef;
  background:
    linear-gradient(transparent 68%, rgba(48, 117, 240, 0.28) 68%),
    repeating-linear-gradient(90deg, transparent, transparent 20px, rgba(48, 117, 240, 0.14) 20px, rgba(48, 117, 240, 0.14) 32px),
    #fff;
}

.ae-wd-wire__table {
  flex: 1;
  min-height: 64px;
  border-radius: 8px;
  border: 1px solid #e6eaef;
  background:
    repeating-linear-gradient(#fff, #fff 18px, #f4f6f9 18px, #f4f6f9 19px);
}

.ae-wd-wire__flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  min-height: 110px;
  padding: 20px 8px;
}

.ae-wd-wire__flow span {
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid rgba(48, 117, 240, 0.25);
  background: #fff;
  font-size: 13px;
  font-weight: 650;
  color: var(--ae-primary);
  letter-spacing: -0.02em;
}

.ae-wd-wire__flow i {
  width: 24px;
  height: 1px;
  background: var(--ae-primary);
  position: relative;
}

.ae-wd-wire__flow i::after {
  content: "";
  position: absolute;
  right: -1px;
  top: -3px;
  border: 4px solid transparent;
  border-left-color: var(--ae-primary);
}

.ae-wd-wire__metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.ae-wd-wire__metrics span {
  height: 52px;
  border-radius: 8px;
  border: 1px solid #e6eaef;
  background: rgba(48, 117, 240, 0.07);
}

.ae-wd-wire__labels {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-top: auto;
  font-size: 12px;
  font-weight: 650;
  letter-spacing: -0.01em;
  color: #8b95a5;
  text-align: center;
}

.ae-wd-wire__labels--3 {
  grid-template-columns: repeat(3, 1fr);
}
/* ========== Scope orbit (SVG) ========== */
.ae-wd-orbit {
  --wd-orbit-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --wd-orbit-spring: cubic-bezier(0.34, 1.3, 0.64, 1);
  max-width: min(1080px, 100%);
  margin: 0 auto;
  text-align: center;
}

/* reveal 而⑦뀒?대꼫???섏씠?쒕쭔 ???먯떇 SVG transform怨?異⑸룎 諛⑹? */
.ae-wd-orbit.ae-reveal {
  transform: none;
}

.ae-wd-orbit.ae-reveal.is-visible {
  transform: none;
}

.ae-wd-orbit__svg {
  width: min(100%, 940px);
  height: auto;
  display: block;
  margin: 0 auto;
  overflow: visible;
}

.ae-wd-orbit__ring {
  fill: none;
  stroke: #d5dbe3;
  stroke-width: 1.35;
  opacity: 0;
  transform-box: fill-box;
  transform-origin: center;
  transform: scale(0.82);
  transition:
    opacity 0.85s var(--wd-orbit-ease),
    transform 1.05s var(--wd-orbit-ease);
}

.ae-wd-orbit__ring--outer {
  stroke-dasharray: 5 8;
}

.ae-wd-orbit__ring--mid {
  stroke: rgba(48, 117, 240, 0.18);
  stroke-dasharray: 2 10;
  transition-delay: 90ms;
}

.ae-wd-orbit__ring--inner {
  stroke: rgba(48, 117, 240, 0.28);
  transition-delay: 160ms;
}

.ae-wd-orbit.is-in .ae-wd-orbit__ring {
  opacity: 1;
  transform: scale(1);
}

.ae-wd-orbit__core-wrap {
  transform-box: fill-box;
  transform-origin: center;
  opacity: 0;
  transform: scale(0.68);
  transition:
    opacity 0.7s var(--wd-orbit-ease),
    transform 0.95s var(--wd-orbit-spring);
  transition-delay: 100ms;
}

.ae-wd-orbit.is-in .ae-wd-orbit__core-wrap {
  opacity: 1;
  transform: scale(1);
}

.ae-wd-orbit.is-in .ae-wd-orbit__core-halo {
  animation: aeWdOrbitHalo 3.2s var(--wd-ease) infinite;
}

.ae-wd-orbit__core-halo {
  fill: rgba(48, 117, 240, 0.16);
  transform-box: fill-box;
  transform-origin: center;
}

@keyframes aeWdOrbitHalo {
  0%, 100% {
    opacity: 0.4;
    transform: scale(1);
  }
  50% {
    opacity: 0.9;
    transform: scale(1.1);
  }
}

.ae-wd-orbit__core {
  fill: url(#aeWdOrbitCoreGrad);
}

.ae-wd-orbit__core-title {
  fill: #fff;
  font-size: 24px;
  font-weight: 750;
  letter-spacing: 0.14em;
  font-family: Pretendard, sans-serif;
}

.ae-wd-orbit__core-sub {
  fill: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 650;
  letter-spacing: 0.18em;
  font-family: Pretendard, sans-serif;
}

.ae-wd-orbit__spoke {
  stroke: rgba(48, 117, 240, 0.28);
  stroke-width: 1.7;
  fill: none;
  stroke-linecap: round;
  transition:
    stroke 0.55s var(--wd-ease),
    stroke-width 0.55s var(--wd-ease),
    filter 0.55s var(--wd-ease);
}

.ae-wd-orbit__spoke.is-on {
  stroke: var(--ae-primary);
  stroke-width: 2.8;
  filter: url(#aeWdOrbitGlow);
}

.ae-wd-orbit__dot {
  fill: #fff;
  stroke: var(--ae-primary);
  stroke-width: 2.35;
  opacity: 0;
  transform: scale(0.4);
  transition:
    opacity 0.5s var(--wd-orbit-ease),
    fill 0.45s var(--wd-ease),
    transform 0.55s var(--wd-orbit-spring),
    stroke-width 0.45s var(--wd-ease);
  transform-box: fill-box;
  transform-origin: center;
}

.ae-wd-orbit.is-in .ae-wd-orbit__dot {
  opacity: 1;
  transform: scale(1);
}

.ae-wd-orbit.is-in .ae-wd-orbit__dot.is-on {
  fill: var(--ae-primary);
  stroke-width: 2.6;
  transform: scale(1.42);
}

.ae-wd-orbit__label {
  cursor: pointer;
  opacity: 0;
  transform-box: fill-box;
  transform-origin: center;
  transform: translate(var(--ox, 0px), var(--oy, 0px)) scale(0.78);
  transition:
    opacity 0.7s var(--wd-orbit-ease),
    transform 0.85s var(--wd-orbit-spring);
}

.ae-wd-orbit.is-in .ae-wd-orbit__label {
  opacity: 1;
  transform: translate(0, 0) scale(1);
}

.ae-wd-orbit.is-in .ae-wd-orbit__label.is-on {
  transform: translate(0, 0) scale(1.06);
}

.ae-wd-orbit__label-bg {
  fill: #fff;
  stroke: #e5e8eb;
  stroke-width: 1.25;
  transition:
    stroke 0.45s var(--wd-ease),
    fill 0.45s var(--wd-ease),
    filter 0.45s var(--wd-ease);
  filter: url(#aeWdOrbitSoft);
}

.ae-wd-orbit__label.is-on .ae-wd-orbit__label-bg {
  stroke: var(--ae-primary);
  fill: #eaf2ff;
}

.ae-wd-orbit__label-text {
  fill: var(--ae-text);
  font-size: 16px;
  font-weight: 650;
  letter-spacing: -0.02em;
  font-family: Pretendard, sans-serif;
  pointer-events: none;
  transition: fill 0.45s var(--wd-ease);
}

.ae-wd-orbit__label.is-on .ae-wd-orbit__label-text {
  fill: var(--ae-primary);
}

.ae-wd-orbit__spoke-draw {
  transition:
    stroke-dashoffset 1s var(--wd-orbit-ease),
    stroke 0.55s var(--wd-ease),
    stroke-width 0.55s var(--wd-ease),
    filter 0.55s var(--wd-ease);
}

.ae-wd-orbit.is-in .ae-wd-orbit__spoke-draw {
  stroke-dashoffset: 0;
}

.ae-wd-orbit__hint {
  margin: 32px auto 0;
  max-width: 40em;
  min-height: 3.2em;
  font-size: 17px;
  line-height: 1.65;
  color: var(--ae-text-sub);
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity 0.55s var(--wd-ease),
    transform 0.55s var(--wd-ease),
    color 0.35s var(--wd-ease);
}

.ae-wd-orbit.is-in .ae-wd-orbit__hint {
  opacity: 1;
  transform: none;
  transition-delay: 0.7s;
}

.ae-wd-orbit__hint.is-swap {
  opacity: 0;
  transform: translateY(8px);
  transition-delay: 0s;
}

@media (max-width: 640px) {
  .ae-wd-orbit__svg {
    width: min(100%, 100vw - 20px);
  }

  .ae-wd-orbit__label-text {
    font-size: 12.5px;
  }

  .ae-wd-orbit__core-title {
    font-size: 17px;
  }

  .ae-wd-orbit__core-sub {
    font-size: 11px;
  }

  .ae-wd-orbit__hint {
    font-size: 15px;
    margin-top: 18px;
  }

  .ae-wd-orbit.is-in .ae-wd-orbit__label.is-on {
    transform: translate(0, 0) scale(1.03);
  }
}

/* ========== Devices (responsive showcase) ========== */
.ae-wd-resp {
  display: grid;
  gap: clamp(48px, 6vw, 72px);
}

.ae-wd-resp__canvas {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(0, 0.78fr) minmax(0, 0.48fr);
  align-items: end;
  gap: clamp(28px, 4.5vw, 56px);
  max-width: 980px;
  margin: 0 auto;
  width: 100%;
  padding: 8px 4px 4px;
}

.ae-wd-dev {
  position: relative;
  margin: 0;
  width: 100%;
  transition:
    transform 0.85s var(--wd-spring),
    opacity 0.75s var(--wd-ease),
    filter 0.75s var(--wd-ease);
  will-change: transform, opacity;
}

.ae-wd-resp:not(.is-in) .ae-wd-dev {
  opacity: 0;
  transform: translateY(28px) scale(0.96);
  filter: blur(4px);
}

.ae-wd-resp.is-in:not(.is-ready) .ae-wd-dev--desktop {
  transition-delay: 60ms;
}

.ae-wd-resp.is-in:not(.is-ready) .ae-wd-dev--tablet {
  transition-delay: 150ms;
}

.ae-wd-resp.is-in:not(.is-ready) .ae-wd-dev--phone {
  transition-delay: 240ms;
}

.ae-wd-resp.is-ready .ae-wd-dev {
  transition-delay: 0ms;
}

.ae-wd-dev__cap {
  margin-top: 18px;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ae-text-muted);
  transition: color 0.45s var(--wd-ease), letter-spacing 0.45s var(--wd-ease);
}

.ae-wd-dev.is-focus .ae-wd-dev__cap {
  color: var(--ae-primary);
  letter-spacing: 0.18em;
}

.ae-wd-dev.is-focus .ae-wd-dev__monitor,
.ae-wd-dev.is-focus .ae-wd-dev__body {
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.1) inset,
    0 0 0 1px rgba(48, 117, 240, 0.18),
    0 28px 56px rgba(48, 117, 240, 0.2),
    0 18px 40px rgba(15, 23, 42, 0.16);
}

.ae-wd-dev.is-focus .ae-wd-ui__hero {
  animation: aeWdScreenGlow 2.8s var(--wd-ease) infinite;
}

@keyframes aeWdScreenGlow {
  0%, 100% { filter: brightness(1); }
  50% { filter: brightness(1.08); }
}

/* Desktop monitor */
.ae-wd-dev--desktop {
  z-index: 1;
}

.ae-wd-dev__monitor {
  background: linear-gradient(180deg, #2c323c 0%, #1c2129 100%);
  border-radius: 12px 12px 8px 8px;
  padding: 12px 12px 16px;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.08) inset,
    0 24px 48px rgba(15, 23, 42, 0.18);
  transition: box-shadow 0.75s var(--wd-ease);
}

.ae-wd-dev__screen {
  background: #0f141c;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.ae-wd-dev__chin {
  height: 6px;
  margin: 0 auto;
  width: 18%;
  background: #151920;
  border-radius: 0 0 3px 3px;
}

.ae-wd-dev__neck {
  width: 14%;
  height: 18px;
  margin: 0 auto;
  background: linear-gradient(90deg, #3a424e, #5a6472, #3a424e);
  clip-path: polygon(20% 0, 80% 0, 100% 100%, 0 100%);
}

.ae-wd-dev__base {
  width: 42%;
  height: 8px;
  margin: 0 auto;
  background: linear-gradient(180deg, #4a5360, #2a313c);
  border-radius: 0 0 6px 6px;
  box-shadow: 0 6px 14px rgba(15, 23, 42, 0.18);
}

/* Tablet / Phone body */
.ae-wd-dev__body {
  background: linear-gradient(160deg, #2a3038 0%, #14181f 100%);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.1) inset,
    0 22px 44px rgba(15, 23, 42, 0.2);
  position: relative;
  transition: box-shadow 0.75s var(--wd-ease);
}

.ae-wd-dev--tablet {
  max-width: 236px;
  margin-inline: auto;
  z-index: 2;
}

.ae-wd-dev--tablet .ae-wd-dev__body {
  border-radius: 22px;
  padding: 10px;
}

.ae-wd-dev--tablet .ae-wd-dev__screen {
  aspect-ratio: 3 / 4;
  border-radius: 12px;
}

.ae-wd-dev--phone {
  max-width: 132px;
  margin-inline: auto;
  z-index: 3;
}

.ae-wd-dev--phone .ae-wd-dev__body {
  border-radius: 26px;
  padding: 8px;
}

.ae-wd-dev--phone .ae-wd-dev__screen {
  aspect-ratio: 9 / 19.5;
  border-radius: 18px;
}

.ae-wd-dev__notch {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 36%;
  height: 7px;
  background: #0a0c10;
  border-radius: 999px;
  z-index: 2;
  pointer-events: none;
}

/* Auto-focus stages ??keep layout, emphasize active device */
.ae-wd-resp.is-in[data-stage="0"] .ae-wd-dev--desktop {
  transform: translateY(0) scale(1);
  opacity: 1;
  filter: none;
}
.ae-wd-resp.is-in[data-stage="0"] .ae-wd-dev--tablet,
.ae-wd-resp.is-in[data-stage="0"] .ae-wd-dev--phone {
  transform: translateY(8px) scale(0.97);
  opacity: 0.62;
  filter: saturate(0.85);
}

.ae-wd-resp.is-in[data-stage="1"] .ae-wd-dev--tablet {
  transform: translateY(-6px) scale(1.04);
  opacity: 1;
  filter: none;
}
.ae-wd-resp.is-in[data-stage="1"] .ae-wd-dev--desktop,
.ae-wd-resp.is-in[data-stage="1"] .ae-wd-dev--phone {
  transform: translateY(8px) scale(0.97);
  opacity: 0.58;
  filter: saturate(0.82);
}

.ae-wd-resp.is-in[data-stage="2"] .ae-wd-dev--phone {
  transform: translateY(-8px) scale(1.08);
  opacity: 1;
  filter: none;
}
.ae-wd-resp.is-in[data-stage="2"] .ae-wd-dev--desktop,
.ae-wd-resp.is-in[data-stage="2"] .ae-wd-dev--tablet {
  transform: translateY(8px) scale(0.97);
  opacity: 0.55;
  filter: saturate(0.8);
}

/* Mini UI inside screens */
.ae-wd-ui {
  height: 100%;
  background: #f4f6f9;
  display: flex;
  flex-direction: column;
  gap: 3.5%;
  padding: 3.5% 3.8%;
  font-size: 0;
}

.ae-wd-ui__bar {
  display: flex;
  align-items: center;
  gap: 3%;
  height: 9%;
  min-height: 14px;
  background: #fff;
  border: 1px solid #e6eaef;
  padding: 0 2.5%;
  flex-shrink: 0;
}

.ae-wd-ui__bar--compact {
  justify-content: space-between;
}

.ae-wd-ui__mark {
  width: 10%;
  max-width: 28px;
  height: 38%;
  background: var(--ae-primary);
  border-radius: 2px;
  flex-shrink: 0;
}

.ae-wd-ui__links {
  display: flex;
  gap: 6%;
  flex: 1;
  align-items: center;
  justify-content: center;
}

.ae-wd-ui__links i {
  display: block;
  width: 14%;
  min-width: 10px;
  height: 3px;
  background: #c5ced9;
  border-radius: 2px;
}

.ae-wd-ui__pill {
  width: 12%;
  max-width: 42px;
  height: 42%;
  background: var(--ae-primary);
  border-radius: 999px;
  flex-shrink: 0;
}

.ae-wd-ui__burger {
  width: 14px;
  height: 10px;
  background:
    linear-gradient(#9aa7b8 0 2px, transparent 2px 4px, #9aa7b8 4px 6px, transparent 6px 8px, #9aa7b8 8px 10px);
}

.ae-wd-ui__hero {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3%;
  height: 36%;
  min-height: 48px;
  background: linear-gradient(135deg, #1d4ed8 0%, #3075f0 48%, #60a5fa 100%);
  padding: 3.5% 4%;
  flex-shrink: 0;
}

.ae-wd-ui__hero--tall {
  grid-template-columns: 1fr;
  height: 32%;
}

.ae-wd-ui__hero--phone {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 6%;
  height: 28%;
  padding: 8% 7% 7%;
}

.ae-wd-ui__hero-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8%;
  min-width: 0;
}

.ae-wd-ui__hero-panel {
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 4px;
}

.ae-wd-ui__t {
  display: block;
  height: 5px;
  width: 72%;
  background: rgba(255, 255, 255, 0.88);
  border-radius: 2px;
}

.ae-wd-ui__t--xl {
  height: 7px;
  width: 78%;
}

.ae-wd-ui__t--md {
  width: 58%;
  background: rgba(255, 255, 255, 0.55);
}

.ae-wd-ui__t--sm {
  width: 42%;
  height: 4px;
  background: rgba(255, 255, 255, 0.4);
}

.ae-wd-ui__action {
  display: block;
  width: 34%;
  max-width: 56px;
  height: 9px;
  margin-top: 4%;
  background: #fff;
  border-radius: 3px;
}

.ae-wd-ui__cards {
  flex: 1;
  min-height: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3%;
}

.ae-wd-ui__cards--2 {
  grid-template-columns: 1fr 1fr;
}

.ae-wd-ui__cards article,
.ae-wd-ui__stack article {
  background: #fff;
  border: 1px solid #e6eaef;
  padding: 8%;
  display: flex;
  flex-direction: column;
  gap: 10%;
  min-height: 0;
}

.ae-wd-ui__cards .ae-wd-ui__t,
.ae-wd-ui__stack .ae-wd-ui__t {
  background: #d7dee8;
  width: 70%;
  height: 4px;
}

.ae-wd-ui__cards .ae-wd-ui__t--sm,
.ae-wd-ui__stack .ae-wd-ui__t--sm {
  width: 48%;
  background: #e8edf3;
}

.ae-wd-ui__thumb {
  display: block;
  width: 100%;
  flex: 1;
  min-height: 18px;
  background: linear-gradient(160deg, #dbe7ff, #eef3fb);
  border-radius: 2px;
}

.ae-wd-ui__thumb--wide {
  flex: 0 0 auto;
  height: 28px;
}

.ae-wd-ui__stack {
  flex: 1;
  min-height: 0;
  display: grid;
  gap: 5%;
}

.ae-wd-ui--phone .ae-wd-ui__bar {
  height: 11%;
}

.ae-wd-ui--phone .ae-wd-ui__t--xl {
  width: 70%;
  height: 6px;
}

.ae-wd-ui--phone .ae-wd-ui__action {
  width: 46%;
  height: 8px;
}

/* Points under devices */
.ae-wd-resp__points {
  list-style: none;
  margin: 0;
  padding: clamp(8px, 1.5vw, 16px) 0 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(28px, 4vw, 48px);
  border-top: none;
}

.ae-wd-resp__points li {
  padding: 0;
  border-right: none;
  cursor: pointer;
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.65s var(--wd-ease),
    transform 0.7s var(--wd-spring);
}

.ae-wd-resp.is-in .ae-wd-resp__points li {
  opacity: 1;
  transform: none;
}

.ae-wd-resp.is-in .ae-wd-resp__points li:nth-child(1) { transition-delay: 0.35s; }
.ae-wd-resp.is-in .ae-wd-resp__points li:nth-child(2) { transition-delay: 0.45s; }
.ae-wd-resp.is-in .ae-wd-resp__points li:nth-child(3) { transition-delay: 0.55s; }

.ae-wd-resp__points li.is-active strong {
  color: var(--ae-primary);
}

.ae-wd-resp__points li.is-active strong::before {
  width: 40px;
}

.ae-wd-resp__points li:last-child {
  padding-right: 0;
}

.ae-wd-resp__points strong {
  display: block;
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ae-text);
  transition: color 0.45s var(--wd-ease);
}

.ae-wd-resp__points strong::before {
  content: "";
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ae-primary);
  margin-bottom: 16px;
  transition: width 0.55s var(--wd-spring);
}

.ae-wd-resp__points span {
  display: block;
  font-size: 14px;
  line-height: 1.6;
  color: var(--ae-text-sub);
  max-width: 22em;
}

/* ========== Timeline ========== */
.ae-wd-timeline {
  --tl-cols: 6;
  --tl-dot: 14px;
  --tl-rail: 28px;
  --tl-line: 3px;
  position: relative;
  max-width: none;
  width: 100%;
  margin: 0;
  padding: 4px 0 0;
}

/* 트랙 left/right는 JS가 첫·마지막 원 중심에 맞춤 */
.ae-wd-timeline__track {
  position: absolute;
  left: 0;
  right: 0;
  top: calc((var(--tl-rail) - var(--tl-line)) / 2);
  height: var(--tl-line);
  background: #e4e8ee;
  border-radius: 999px;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}

.ae-wd-timeline__progress {
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #6aa3ff, var(--ae-primary));
  border-radius: inherit;
  box-shadow: 0 0 12px rgba(48, 117, 240, 0.28);
  transition: width 0.85s var(--wd-ease);
}

.ae-wd-timeline__steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(var(--tl-cols, 6), minmax(0, 1fr));
  gap: clamp(20px, 3.2vw, 48px);
  position: relative;
  z-index: 1;
}

.ae-wd-timeline__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin: 0;
  padding: 0 6px;
  min-width: 0;
  opacity: 0.38;
  cursor: pointer;
  transition: opacity 0.55s var(--wd-ease);
}

.ae-wd-timeline__step.is-on {
  opacity: 1;
}

.ae-wd-timeline__dot {
  display: block;
  width: var(--tl-dot);
  height: var(--tl-dot);
  margin: calc((var(--tl-rail) - var(--tl-dot)) / 2) 0;
  flex-shrink: 0;
  border-radius: 50%;
  background: #fff;
  border: 2.5px solid #d5dbe3;
  box-sizing: border-box;
  box-shadow: 0 0 0 0 rgba(48, 117, 240, 0);
  position: relative;
  z-index: 2;
  transition:
    border-color 0.5s var(--wd-ease),
    background 0.5s var(--wd-ease),
    box-shadow 0.55s var(--wd-spring),
    transform 0.55s var(--wd-spring);
}

.ae-wd-timeline__step.is-on .ae-wd-timeline__dot {
  border-color: var(--ae-primary);
  background: var(--ae-primary);
  box-shadow: 0 0 0 8px rgba(48, 117, 240, 0.14);
  transform: scale(1.06);
}

.ae-wd-timeline__step.is-current .ae-wd-timeline__dot {
  transform: scale(1.14);
  box-shadow: 0 0 0 10px rgba(48, 117, 240, 0.18);
  animation: aeWdTlPulse 2.4s var(--wd-ease) infinite;
}

@keyframes aeWdTlPulse {
  0%, 100% { box-shadow: 0 0 0 8px rgba(48, 117, 240, 0.18); }
  50% { box-shadow: 0 0 0 13px rgba(48, 117, 240, 0.1); }
}

.ae-wd-timeline__num {
  display: block;
  margin: 8px 0 10px;
  font-size: 13px;
  font-weight: 750;
  letter-spacing: 0.1em;
  line-height: 1;
  color: var(--ae-primary);
  opacity: 0.4;
  transition: opacity 0.4s var(--wd-ease);
}

.ae-wd-timeline__step.is-on .ae-wd-timeline__num {
  opacity: 1;
}

.ae-wd-timeline__step h3 {
  margin: 0 0 8px;
  font-size: clamp(16px, 1.45vw, 19px);
  font-weight: 750;
  letter-spacing: -0.03em;
  line-height: 1.25;
  color: var(--ae-text);
  word-break: keep-all;
  transition: color 0.4s var(--wd-ease);
}

.ae-wd-timeline__step:not(.is-on) h3 {
  color: #a8b0bc;
}

.ae-wd-timeline__step p {
  margin: 0;
  max-width: 12.5em;
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--ae-text-sub);
  word-break: keep-all;
  transition: color 0.4s var(--wd-ease);
}

.ae-wd-timeline__step:not(.is-on) p {
  color: #b0b7c2;
}

.ae-wd-timeline:not(.is-in) .ae-wd-timeline__step {
  opacity: 0;
  transform: translateY(14px);
}

.ae-wd-timeline.is-in .ae-wd-timeline__step {
  transform: none;
  transition:
    opacity 0.55s var(--wd-ease),
    transform 0.65s var(--wd-spring);
  transition-delay: calc(var(--tl-i, 0) * 55ms);
}

.ae-wd-timeline.is-in .ae-wd-timeline__step:nth-child(1) { --tl-i: 0; }
.ae-wd-timeline.is-in .ae-wd-timeline__step:nth-child(2) { --tl-i: 1; }
.ae-wd-timeline.is-in .ae-wd-timeline__step:nth-child(3) { --tl-i: 2; }
.ae-wd-timeline.is-in .ae-wd-timeline__step:nth-child(4) { --tl-i: 3; }
.ae-wd-timeline.is-in .ae-wd-timeline__step:nth-child(5) { --tl-i: 4; }
.ae-wd-timeline.is-in .ae-wd-timeline__step:nth-child(6) { --tl-i: 5; }

.ae-wd-timeline.is-in .ae-wd-timeline__step.is-on {
  opacity: 1;
}

.ae-wd-timeline.is-in .ae-wd-timeline__step:not(.is-on) {
  opacity: 0.42;
}
/* ========== Comparison table ========== */
.ae-wd-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border: 1px solid var(--ae-border);
  background: #fff;
}

.ae-wd-table-wrap.is-in {
  animation: aeWdTableIn 0.7s var(--wd-ease) both;
}

@keyframes aeWdTableIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.ae-wd-table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  font-size: 15px;
}

.ae-wd-table th,
.ae-wd-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--ae-border);
  text-align: center;
  vertical-align: middle;
}

.ae-wd-table thead th {
  background: #fafbfc;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ae-text-sub);
}

.ae-wd-table tbody th {
  text-align: left;
  font-weight: 600;
  color: var(--ae-text);
  white-space: nowrap;
}

.ae-wd-table tbody tr {
  opacity: 0;
  transform: translateY(10px);
  transition:
    background 0.35s var(--wd-ease),
    opacity 0.55s var(--wd-ease),
    transform 0.6s var(--wd-spring);
}

.ae-wd-table-wrap.is-in tbody tr {
  opacity: 1;
  transform: none;
}

.ae-wd-table-wrap.is-in tbody tr:nth-child(1) { transition-delay: 40ms; }
.ae-wd-table-wrap.is-in tbody tr:nth-child(2) { transition-delay: 80ms; }
.ae-wd-table-wrap.is-in tbody tr:nth-child(3) { transition-delay: 120ms; }
.ae-wd-table-wrap.is-in tbody tr:nth-child(4) { transition-delay: 160ms; }
.ae-wd-table-wrap.is-in tbody tr:nth-child(5) { transition-delay: 200ms; }
.ae-wd-table-wrap.is-in tbody tr:nth-child(6) { transition-delay: 240ms; }
.ae-wd-table-wrap.is-in tbody tr:nth-child(7) { transition-delay: 280ms; }
.ae-wd-table-wrap.is-in tbody tr:nth-child(8) { transition-delay: 320ms; }
.ae-wd-table-wrap.is-in tbody tr:nth-child(9) { transition-delay: 360ms; }
.ae-wd-table-wrap.is-in tbody tr:nth-child(10) { transition-delay: 400ms; }

.ae-wd-table tbody tr:hover {
  background: rgba(48, 117, 240, 0.05);
}

.ae-wd-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--ae-primary-soft);
  color: var(--ae-primary);
  font-weight: 700;
  font-size: 13px;
  transform: scale(0.6);
  opacity: 0;
  transition:
    transform 0.5s var(--wd-spring),
    opacity 0.4s var(--wd-ease);
}

.ae-wd-table-wrap.is-in .ae-wd-check {
  transform: scale(1);
  opacity: 1;
}

.ae-wd-opt,
.ae-wd-custom {
  display: inline-block;
  font-size: 13px;
  font-weight: 650;
  letter-spacing: -0.01em;
  color: var(--ae-text-sub);
  opacity: 0;
  transform: translateY(4px);
  transition:
    opacity 0.45s var(--wd-ease),
    transform 0.5s var(--wd-spring);
}

.ae-wd-table-wrap.is-in .ae-wd-opt,
.ae-wd-table-wrap.is-in .ae-wd-custom {
  opacity: 1;
  transform: none;
}

.ae-wd-custom {
  color: var(--ae-primary);
}

/* ========== Principles ========== */
.ae-wd-principles {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  border: 1px solid var(--ae-border);
  background: #fff;
}

.ae-wd-principle {
  position: relative;
  padding: clamp(28px, 4vw, 40px);
  border-right: 1px solid var(--ae-border);
  border-bottom: 1px solid var(--ae-border);
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.7s var(--wd-ease),
    transform 0.8s var(--wd-spring),
    background 0.4s var(--wd-ease);
  transition-delay: calc(var(--i, 0) * 100ms);
}

.ae-wd-principles.is-in .ae-wd-principle {
  opacity: 1;
  transform: none;
}

.ae-wd-principle:hover {
  background: rgba(48, 117, 240, 0.03);
}

.ae-wd-principle:nth-child(2n) {
  border-right: none;
}

.ae-wd-principle:nth-child(n + 3) {
  border-bottom: none;
}

.ae-wd-principle__num {
  display: block;
  font-size: clamp(40px, 6vw, 56px);
  font-weight: 750;
  letter-spacing: -0.04em;
  line-height: 1;
  color: rgba(48, 117, 240, 0.18);
  margin-bottom: 12px;
  transition: color 0.45s var(--wd-ease), transform 0.55s var(--wd-spring);
}

.ae-wd-principle:hover .ae-wd-principle__num {
  color: rgba(48, 117, 240, 0.32);
  transform: translateX(4px);
}

.ae-wd-principle__mark {
  display: block;
  width: 40px;
  height: 40px;
  margin-bottom: 18px;
  border: 1px solid var(--ae-primary);
  border-radius: 50%;
  position: relative;
  transition: transform 0.55s var(--wd-spring), box-shadow 0.45s var(--wd-ease);
}

.ae-wd-principle:hover .ae-wd-principle__mark {
  transform: scale(1.08);
  box-shadow: 0 0 0 8px rgba(48, 117, 240, 0.1);
}

.ae-wd-principle__mark::after {
  content: "";
  position: absolute;
  inset: 10px;
  background: var(--ae-primary);
  border-radius: 50%;
  opacity: 0.25;
  transition: opacity 0.4s var(--wd-ease), transform 0.55s var(--wd-spring);
}

.ae-wd-principle:hover .ae-wd-principle__mark::after {
  opacity: 0.55;
  transform: scale(1.08);
}

.ae-wd-principles.is-in .ae-wd-principle__mark {
  animation: aeWdMarkPulse 2.8s var(--wd-ease) infinite;
  animation-delay: calc(0.8s + var(--i, 0) * 0.2s);
}

@keyframes aeWdMarkPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(48, 117, 240, 0); }
  50% { box-shadow: 0 0 0 8px rgba(48, 117, 240, 0.12); }
}

.ae-wd-principle h3 {
  margin: 0 0 10px;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.ae-wd-principle p {
  margin: 0;
  max-width: 28em;
  font-size: 15px;
  line-height: 1.6;
  color: var(--ae-text-sub);
}

/* ========== CTA ========== */
.ae-wd-cta {
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, #0b1f44 0%, #123a7a 45%, #1a4a9c 100%);
  color: #fff;
  padding: clamp(80px, 12vw, 128px) 0;
}

.ae-wd-cta__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: 0.35;
  pointer-events: none;
  transform: scale(1.04);
  transition: opacity 1.2s var(--wd-ease), transform 1.4s var(--wd-ease);
}

.ae-wd-cta.is-in .ae-wd-cta__grid {
  opacity: 0.55;
  transform: none;
}

.ae-wd-cta__lines {
  position: absolute;
  inset: -20% -10%;
  background:
    repeating-linear-gradient(
      -18deg,
      transparent,
      transparent 80px,
      rgba(255, 255, 255, 0.04) 80px,
      rgba(255, 255, 255, 0.04) 81px
    );
  animation: aeWdLines 18s linear infinite;
  pointer-events: none;
  opacity: 0;
  transition: opacity 1s var(--wd-ease);
}

.ae-wd-cta.is-in .ae-wd-cta__lines {
  opacity: 1;
}

@keyframes aeWdLines {
  from { transform: translateX(0); }
  to { transform: translateX(-90px); }
}

.ae-wd-cta__inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.ae-wd-cta .ae-h2 {
  color: #fff;
  margin: 0 0 28px;
  word-break: keep-all;
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.8s var(--wd-ease),
    transform 0.9s var(--wd-spring);
}

.ae-wd-cta.is-in .ae-h2 {
  opacity: 1;
  transform: none;
}

.ae-wd-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.75s var(--wd-ease),
    transform 0.85s var(--wd-spring);
  transition-delay: 120ms;
}

.ae-wd-cta.is-in .ae-wd-cta__actions {
  opacity: 1;
  transform: none;
}

.ae-wd-cta .ae-btn {
  background: #fff;
  color: var(--wd-navy);
  border-color: #fff;
}

.ae-wd-cta .ae-btn:hover {
  background: #e8eefc;
}

.ae-wd-cta .ae-btn--ghost-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.45);
}

.ae-wd-cta .ae-btn--ghost-light:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* ========== Responsive ========== */
@media (max-width: 960px) {
  .ae-wd-map {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .ae-wd-map__tabs {
    flex-direction: row;
    overflow-x: auto;
    border-right: none;
    border-bottom: 1px solid #e6eaef;
    padding: 14px 12px;
    gap: 6px;
    justify-content: flex-start;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .ae-wd-map__tabs::-webkit-scrollbar {
    display: none;
  }

  .ae-wd-map__tab {
    flex: 0 0 auto;
    white-space: nowrap;
    padding: 12px 14px;
    font-size: 14px;
    box-shadow: none;
  }

  .ae-wd-map__tab.is-active {
    box-shadow: none;
  }

  .ae-wd-map__tab.is-active::before {
    display: none;
  }

  .ae-wd-map__panel {
    padding: 24px 20px 28px;
  }

  .ae-wd-map__progress {
    left: 20px;
    right: 20px;
  }

  .ae-wd-wire {
    min-height: 240px;
  }

  .ae-wd-orbit__svg {
    width: min(100%, 100vw - 28px);
  }

  .ae-wd-orbit__label-text {
    font-size: 13px;
  }

  .ae-wd-resp__canvas {
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 0.75fr) minmax(0, 0.5fr);
    gap: 20px;
    max-width: none;
  }

  .ae-wd-dev--desktop .ae-wd-dev__neck,
  .ae-wd-dev--desktop .ae-wd-dev__base,
  .ae-wd-dev--desktop .ae-wd-dev__chin {
    display: none;
  }

  .ae-wd-dev--desktop .ae-wd-dev__monitor {
    border-radius: 10px;
    padding: 10px;
  }

  .ae-wd-timeline__track {
    display: none;
  }

  .ae-wd-timeline__steps {
    grid-template-columns: 1fr;
    gap: 0;
    border-left: 3px solid #e4e8ee;
    margin-left: 7px;
    padding-left: 28px;
  }

  .ae-wd-timeline__step {
    align-items: flex-start;
    text-align: left;
    padding: 0 0 28px;
    position: relative;
    opacity: 0.38;
    transform: none;
  }

  .ae-wd-timeline__dot {
    position: absolute;
    left: -35px;
    top: 2px;
    margin: 0;
  }

  .ae-wd-timeline__num {
    margin: 0 0 8px;
  }

  .ae-wd-timeline__step p {
    max-width: none;
  }

  .ae-wd-timeline.is-in .ae-wd-timeline__step.is-on {
    opacity: 1;
  }

  .ae-wd-timeline.is-in .ae-wd-timeline__step:not(.is-on) {
    opacity: 0.42;
  }

  .ae-wd-resp__points {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .ae-wd-resp__points li {
    padding: 0;
    opacity: 1;
    transform: none;
  }

  .ae-wd-resp__points li:last-child {
    border-bottom: none;
  }
}

@media (max-width: 640px) {
  .ae-wd-principles {
    grid-template-columns: 1fr;
  }

  .ae-wd-principle,
  .ae-wd-principle:nth-child(2n) {
    border-right: none;
  }

  .ae-wd-principle {
    border-bottom: 1px solid var(--ae-border);
  }

  .ae-wd-principle:last-child {
    border-bottom: none;
  }

  .ae-wd-resp__canvas {
    grid-template-columns: 1fr;
    max-width: 320px;
    margin-inline: auto;
    gap: 28px;
  }

  .ae-wd-dev--tablet,
  .ae-wd-dev--phone {
    max-width: 220px;
    margin-inline: auto;
  }

  .ae-page-hero--video .ae-lead br {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ae-wd-hero__content .ae-wd-rise,
  .ae-wd-wire__frame.is-active,
  .ae-wd-wire__frame.is-active > *,
  .ae-wd-cta__lines,
  .ae-wd-cta__grid,
  .ae-wd-cta .ae-h2,
  .ae-wd-cta__actions,
  .ae-wd-table-wrap.is-in,
  .ae-wd-orbit__spoke-draw,
  .ae-wd-orbit__label,
  .ae-wd-orbit__dot,
  .ae-wd-orbit__ring,
  .ae-wd-orbit__core-wrap,
  .ae-wd-orbit__hint,
  .ae-wd-principle,
  .ae-wd-principle__mark,
  .ae-wd-resp__points li,
  .ae-wd-table tbody tr,
  .ae-wd-check,
  .ae-wd-opt,
  .ae-wd-custom,
  .ae-wd-dev,
  .ae-page-webdev .ae-wd-head.ae-reveal {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    stroke-dashoffset: 0 !important;
  }

  .ae-wd-orbit__core-halo,
  .ae-wd-dev.is-focus .ae-wd-ui__hero,
  .ae-wd-timeline__step.is-current .ae-wd-timeline__dot,
  .ae-wd-map.is-playing .ae-wd-map__progress > span {
    animation: none !important;
  }

  .ae-wd-hero__media {
    transform: none !important;
  }

  .ae-wd-btn__arrow,
  .ae-wd-btn:hover {
    transition: none !important;
    transform: none !important;
  }

  .ae-wd-resp:not(.is-in) .ae-wd-dev {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }
}
