:root {
  --blue: #3182f6;
  --blue-deep: #1b64da;
  --blue-soft: #e8f3ff;
  --blue-line: #dbe7f5;
  --navy: #191f28;
  --text: #191f28;
  --muted: #6b7684;
  --bg: #ffffff;
  --bg-soft: #f2f4f6;
  --surface: #ffffff;
  --shadow: 0 12px 32px rgba(25, 31, 40, 0.08);
  --shadow-hover: 0 18px 40px rgba(49, 130, 246, 0.16);
  --radius: 24px;
  --header-h: 80px;
  --font: "Pretendard Variable", Pretendard, "Apple SD Gothic Neo", "Noto Sans KR", sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --drawer-w: min(320px, 86vw);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

body.drawer-open { overflow: hidden; }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }

.container {
  width: min(1120px, calc(100% - 48px));
  margin-inline: auto;
}

.container.narrow {
  width: min(760px, calc(100% - 48px));
}

.section {
  position: relative;
  padding: 110px 0;
  background: #fff;
  text-align: center;
}

.section-tint {
  background:
    radial-gradient(800px 360px at 10% 0%, rgba(49, 130, 246, 0.08), transparent 55%),
    var(--bg-soft);
}

.section-head {
  text-align: center;
  margin: 0 auto 56px;
  max-width: 720px;
}

.section-head h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 2.85rem);
  line-height: 1.28;
  letter-spacing: -0.04em;
  font-weight: 800;
  color: var(--navy);
}

.section-head.light h2 { color: #fff; }

.section-desc {
  margin: 16px auto 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  line-height: 1.75;
}

.eyebrow {
  margin: 0 0 14px;
  font-size: 0.92rem;
  font-weight: 760;
  letter-spacing: 0.12em;
  color: var(--blue);
}

.eyebrow.on-dark { color: #a8cbff; }

.pill {
  display: inline-flex;
  margin-top: 20px;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--blue-soft);
  color: var(--blue-deep);
  font-size: 1rem;
  font-weight: 740;
}

/* Header — PC nav always visible until tablet */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  height: var(--header-h);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.site-header.is-scrolled {
  border-bottom-color: var(--blue-line);
  box-shadow: 0 8px 24px rgba(25, 31, 40, 0.05);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand-logo {
  height: 56px;
  width: auto;
  object-fit: contain;
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 8px 20px;
  font-size: 1rem;
  color: var(--muted);
  font-weight: 600;
}

.nav-desktop a:not(.btn) {
  padding: 8px 4px;
}

.nav-desktop a:not(.btn):hover { color: var(--blue); }

.menu-btn {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 14px;
  background: var(--blue-soft);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.menu-icon {
  display: grid;
  gap: 5px;
  width: 18px;
}

.menu-icon i {
  display: block;
  height: 2px;
  background: var(--blue-deep);
  border-radius: 2px;
  transition: 0.25s var(--ease);
}

body.drawer-open .menu-icon i:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
body.drawer-open .menu-icon i:nth-child(2) { opacity: 0; }
body.drawer-open .menu-icon i:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Drawer */
.drawer-backdrop {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: rgba(25, 31, 40, 0.42);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s var(--ease);
}

.drawer-backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
}

.drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 90;
  width: var(--drawer-w);
  height: 100%;
  background: #fff;
  box-shadow: -16px 0 40px rgba(25, 31, 40, 0.14);
  transform: translateX(105%);
  transition: transform 0.32s var(--ease);
  display: flex;
  flex-direction: column;
  padding: 18px 20px 28px;
}

.drawer.is-open { transform: translateX(0); }

.drawer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.drawer-logo { height: 44px; width: auto; }

.drawer-close {
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 12px;
  background: var(--bg-soft);
  font-size: 1.5rem;
  line-height: 1;
  color: var(--navy);
  cursor: pointer;
}

.drawer-nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: left;
}

.drawer-nav a {
  padding: 15px 12px;
  border-radius: 14px;
  font-weight: 680;
  font-size: 1.08rem;
  color: var(--navy);
}

.drawer-nav a:hover,
.drawer-nav a:active {
  background: var(--blue-soft);
  color: var(--blue-deep);
}

.drawer-foot {
  margin-top: auto;
  display: grid;
  gap: 10px;
  text-align: center;
}

.drawer-tel,
.drawer-kakao {
  font-weight: 680;
  color: var(--blue);
  padding: 8px;
  font-size: 1.05rem;
}

.drawer-brand {
  display: flex;
  justify-content: center;
  margin-top: 14px;
  padding-top: 16px;
  border-top: 1px solid var(--blue-line);
}

.drawer-logo-foot {
  height: 48px;
  width: auto;
  object-fit: contain;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 16px;
  padding: 13px 20px;
  font-weight: 740;
  cursor: pointer;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s var(--ease);
}

.btn:hover { transform: translateY(-2px); }
.btn-sm { padding: 11px 16px; font-size: 0.95rem; }
.btn-lg { padding: 17px 28px; font-size: 1.1rem; }
.btn-block { width: 100%; }

.btn-primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 10px 24px rgba(49, 130, 246, 0.32);
}

.btn-primary:hover {
  background: var(--blue-deep);
  box-shadow: 0 14px 28px rgba(49, 130, 246, 0.38);
}

.btn-outline {
  background: #fff;
  color: var(--blue-deep);
  border: 1.5px solid rgba(255, 255, 255, 0.95);
  box-shadow: 0 8px 20px rgba(25, 31, 40, 0.08);
}

.btn-outline-dark {
  background: #fff;
  color: var(--navy);
  border: 1px solid var(--blue-line);
}

/* Hero */
.hero {
  position: relative;
  min-height: calc(100svh - var(--header-h));
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #0b1f3d;
  text-align: center;
  color: #fff;
}

.hero-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  transform: scale(1.03);
  animation: kenBurns 20s ease-in-out infinite alternate;
  filter: saturate(1.05) contrast(1.06) brightness(0.92);
}

@keyframes kenBurns {
  from { transform: scale(1.03) translate(0, 0); }
  to { transform: scale(1.08) translate(-1%, -0.6%); }
}

.hero-veil {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 65% at 50% 42%, rgba(8, 24, 52, 0.55) 0%, rgba(8, 24, 52, 0.28) 45%, transparent 72%),
    linear-gradient(180deg, rgba(8, 24, 52, 0.35) 0%, rgba(8, 24, 52, 0.15) 35%, rgba(8, 24, 52, 0.45) 100%);
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  animation: floatOrb 8s ease-in-out infinite;
}

.hero-orb-a {
  width: 280px;
  height: 280px;
  right: 4%;
  top: 12%;
  background: radial-gradient(circle, rgba(49, 130, 246, 0.35), transparent 70%);
}

.hero-orb-b {
  width: 320px;
  height: 320px;
  left: 0;
  bottom: 4%;
  background: radial-gradient(circle, rgba(27, 100, 218, 0.22), transparent 70%);
  animation-delay: -3s;
}

@keyframes floatOrb {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-18px); }
}

.hero-inner {
  position: relative;
  z-index: 1;
  padding: 72px 0 88px;
  max-width: 900px;
  margin-inline: auto;
}

.hero-brand {
  margin: 0 0 20px;
  display: flex;
  justify-content: center;
}

.hero-logo {
  height: clamp(58px, 9.5vw, 84px);
  width: auto;
  object-fit: contain;
  background: transparent;
  filter: drop-shadow(0 6px 20px rgba(0, 0, 0, 0.45));
}

.hero-title {
  margin: 0 auto;
  min-height: 3.9em;
  font-size: clamp(2.25rem, 5.2vw, 3.6rem);
  line-height: 1.22;
  letter-spacing: -0.05em;
  font-weight: 860;
  color: #fff;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.45);
}

.hero-title .type-line {
  display: block;
  min-height: 1.22em;
}

.hero-title .type-line em {
  font-style: normal;
  color: #8ec2ff;
  background: linear-gradient(transparent 64%, rgba(142, 194, 255, 0.28) 64%);
}

.hero-title.is-typing .type-cursor,
.hero-title.has-typed .type-cursor {
  display: inline-block;
}

.type-cursor {
  display: none;
  width: 3px;
  height: 0.85em;
  margin-left: 4px;
  background: #8ec2ff;
  vertical-align: -0.08em;
  border-radius: 2px;
  animation: caretBlink 0.85s steps(1) infinite;
}

.hero-title.is-done .type-cursor {
  opacity: 0;
  animation: none;
}

@keyframes caretBlink {
  0%, 45% { opacity: 1; }
  50%, 100% { opacity: 0; }
}

.hero-rest.is-waiting {
  opacity: 0;
  transform: translateY(18px);
  pointer-events: none;
}

.hero-rest.is-ready {
  opacity: 1;
  transform: none;
  pointer-events: auto;
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.hero-rest.is-ready .hero-desc { transition-delay: 0.05s; }
.hero-rest.is-ready .hero-checks { transition-delay: 0.15s; }
.hero-rest.is-ready .hero-cta { transition-delay: 0.28s; }
.hero-rest.is-ready .hero-note { transition-delay: 0.4s; }

.hero-desc {
  margin: 22px auto 0;
  max-width: 560px;
  font-size: clamp(1.12rem, 2vw, 1.28rem);
  color: rgba(255, 255, 255, 0.9);
  font-weight: 520;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.35);
}

.hero-checks {
  list-style: none;
  margin: 28px auto 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 14px;
  max-width: 560px;
  text-align: left;
}

.hero-checks li {
  position: relative;
  padding: 14px 16px 14px 46px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 16px;
  font-size: 1.02rem;
  font-weight: 650;
  color: #fff;
  backdrop-filter: blur(8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  transform-origin: center;
}

.hero-checks li::before {
  content: "✓";
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-size: 0.75rem;
  display: grid;
  place-items: center;
}

.trust-badge {
  position: absolute;
  top: -8px;
  right: 10px;
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 900;
  box-shadow: 0 8px 18px rgba(22, 163, 74, 0.4);
  opacity: 0;
  transform: translateY(6px) scale(0.7);
  pointer-events: none;
  z-index: 2;
}

.hero-rest.is-ready .hero-checks.is-in li,
.hero-rest.is-ready .hero-checks li {
  animation: heroCheckPulse 8s var(--ease) infinite;
}

.hero-rest.is-ready .hero-checks li:nth-child(1) { animation-delay: 0s; }
.hero-rest.is-ready .hero-checks li:nth-child(2) { animation-delay: 2s; }
.hero-rest.is-ready .hero-checks li:nth-child(3) { animation-delay: 4s; }
.hero-rest.is-ready .hero-checks li:nth-child(4) { animation-delay: 6s; }

.hero-rest.is-ready .hero-checks li .trust-badge {
  animation: trustBadgePop 8s var(--ease) infinite;
}

.hero-rest.is-ready .hero-checks li:nth-child(1) .trust-badge { animation-delay: 0s; }
.hero-rest.is-ready .hero-checks li:nth-child(2) .trust-badge { animation-delay: 2s; }
.hero-rest.is-ready .hero-checks li:nth-child(3) .trust-badge { animation-delay: 4s; }
.hero-rest.is-ready .hero-checks li:nth-child(4) .trust-badge { animation-delay: 6s; }

.hero-rest.is-ready .hero-checks li::before {
  animation: checkGlow 8s var(--ease) infinite;
}

.hero-rest.is-ready .hero-checks li:nth-child(1)::before { animation-delay: 0s; }
.hero-rest.is-ready .hero-checks li:nth-child(2)::before { animation-delay: 2s; }
.hero-rest.is-ready .hero-checks li:nth-child(3)::before { animation-delay: 4s; }
.hero-rest.is-ready .hero-checks li:nth-child(4)::before { animation-delay: 6s; }

@keyframes heroCheckPulse {
  0%, 18%, 100% {
    transform: scale(1);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.28);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  }
  8%, 14% {
    transform: scale(1.08);
    background: rgba(255, 255, 255, 0.22);
    border-color: rgba(142, 194, 255, 0.85);
    box-shadow: 0 14px 32px rgba(49, 130, 246, 0.35);
  }
}

@keyframes trustBadgePop {
  0%, 6%, 20%, 100% {
    opacity: 0;
    transform: translateY(8px) scale(0.7);
  }
  9%, 16% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes checkGlow {
  0%, 18%, 100% {
    transform: translateY(-50%) scale(1);
    box-shadow: none;
    background: var(--blue);
  }
  8%, 14% {
    transform: translateY(-50%) scale(1.18);
    box-shadow: 0 0 0 6px rgba(34, 197, 94, 0.28);
    background: #22c55e;
  }
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(8px);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.2);
}

.hero-note {
  margin: 22px auto 0;
  max-width: 520px;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 500;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

/* Targets — equal 3x2 grid */
.target-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  text-align: left;
  align-items: stretch;
}

.target-item {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1.5px solid var(--blue-line);
  border-radius: 22px;
  padding: 28px 26px;
  min-height: 220px;
  box-shadow: 0 8px 24px rgba(25, 31, 40, 0.04);
  transition: transform 0.28s var(--ease), box-shadow 0.28s var(--ease), border-color 0.28s var(--ease);
  position: relative;
  overflow: hidden;
}

.target-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  background: var(--card-accent, var(--blue));
}

.target-item.tone-1 { --card-accent: #3182f6; border-color: #c5dbff; background: linear-gradient(165deg, #fff 70%, #f3f8ff); }
.target-item.tone-2 { --card-accent: #1b64da; border-color: #bfd4ff; background: linear-gradient(165deg, #fff 70%, #eef5ff); }
.target-item.tone-3 { --card-accent: #0ea5e9; border-color: #bfe8fb; background: linear-gradient(165deg, #fff 70%, #f0fbff); }
.target-item.tone-4 { --card-accent: #6366f1; border-color: #d4d6ff; background: linear-gradient(165deg, #fff 70%, #f5f5ff); }
.target-item.tone-5 { --card-accent: #2563eb; border-color: #c7d8ff; background: linear-gradient(165deg, #fff 70%, #f2f7ff); }
.target-item.tone-6 { --card-accent: #0284c7; border-color: #b9e4fa; background: linear-gradient(165deg, #fff 70%, #eef9ff); }

.target-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(49, 130, 246, 0.16);
  border-color: var(--card-accent);
}

.target-item .num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: color-mix(in srgb, var(--card-accent) 14%, #fff);
  color: var(--card-accent);
  font-size: 0.95rem;
  font-weight: 820;
  border: 1px solid color-mix(in srgb, var(--card-accent) 28%, #fff);
}

.target-item h3 {
  margin: 18px 0 12px;
  font-size: 1.28rem;
  letter-spacing: -0.03em;
  line-height: 1.35;
  color: var(--navy);
}

.target-item p {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.65;
  margin-top: auto;
}

/* Diagnosis */
.section-split {
  background:
    radial-gradient(900px 420px at 90% 10%, rgba(49, 130, 246, 0.12), transparent 55%),
    radial-gradient(700px 360px at 0% 90%, rgba(14, 165, 233, 0.1), transparent 50%),
    var(--bg-soft);
  overflow: hidden;
}

.split-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(49, 130, 246, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(49, 130, 246, 0.05) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 1;
  pointer-events: none;
  mask-image: radial-gradient(circle at center, #000 30%, transparent 85%);
}

.split-layout {
  position: relative;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 28px;
  align-items: stretch;
  text-align: left;
}

.split-visual {
  margin: 0;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.8);
  height: 100%;
  min-height: 420px;
}

.split-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.split-visual:hover img { transform: scale(1.04); }

.diag-list {
  display: grid;
  gap: 12px;
}

.diag-card {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 14px;
  align-items: start;
  background: #fff;
  border: 1.5px solid #cfe0fb;
  border-left: 5px solid var(--blue);
  border-radius: 20px;
  padding: 22px 20px;
  text-align: left;
  transition: transform 0.28s var(--ease), box-shadow 0.28s var(--ease);
}

.diag-card:nth-child(2) { border-left-color: #0ea5e9; }
.diag-card:nth-child(3) { border-left-color: #6366f1; }
.diag-card:nth-child(4) { border-left-color: #1b64da; }

.diag-card:hover {
  transform: translateX(6px) translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.diag-num {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: var(--blue);
  color: #fff;
  font-weight: 800;
  font-size: 1rem;
}

.diag-card h3 {
  margin: 0 0 8px;
  font-size: 1.22rem;
  color: var(--navy);
  letter-spacing: -0.02em;
}

.diag-card p {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
}

/* Benefits */
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.benefit-card {
  background: #fff;
  border: 1.5px solid #d5e4fa;
  border-top: 4px solid var(--blue);
  border-radius: var(--radius);
  padding: 32px 26px;
  text-align: left;
  transition: 0.28s var(--ease);
  min-height: 250px;
  box-shadow: 0 8px 24px rgba(25, 31, 40, 0.04);
}

.benefit-card:nth-child(2) { border-top-color: #0ea5e9; }
.benefit-card:nth-child(3) { border-top-color: #6366f1; }
.benefit-card:nth-child(4) { border-top-color: #2563eb; }
.benefit-card:nth-child(5) { border-top-color: #0284c7; }
.benefit-card:nth-child(6) { border-top-color: #1b64da; }

.benefit-card:hover {
  border-color: #9ec4f5;
  box-shadow: var(--shadow-hover);
  transform: translateY(-8px) scale(1.01);
}

.benefit-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
  border-radius: 16px;
  background: var(--blue-soft);
  color: var(--blue);
  font-size: 1.2rem;
  font-weight: 800;
}

.benefit-label {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--blue);
  font-size: 0.95rem;
  font-weight: 760;
}

.benefit-card h3 {
  margin: 0 0 12px;
  font-size: 1.28rem;
  letter-spacing: -0.03em;
  line-height: 1.35;
  color: var(--navy);
}

.benefit-card p {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.65;
}

/* Why — career journey */
.section-why {
  position: relative;
  color: #fff;
  overflow: hidden;
  background: #123a7a;
  padding: 120px 0;
}

.why-media { position: absolute; inset: 0; }

.why-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.82;
  animation: kenBurns 22s ease-in-out infinite alternate;
  filter: saturate(1.05) contrast(1.04);
}

.why-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(18, 58, 122, 0.42), rgba(12, 40, 90, 0.62)),
    radial-gradient(circle at 75% 20%, rgba(49, 130, 246, 0.35), transparent 42%);
}

.section-why .container { position: relative; z-index: 1; }

.section-desc.on-dark {
  color: rgba(255, 255, 255, 0.82);
}

.career-flow {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 10px;
  margin: 0 auto 36px;
  max-width: 1100px;
}

.career-card {
  flex: 1 1 0;
  min-width: 0;
  background: rgba(255, 255, 255, 0.12);
  border: 1.5px solid rgba(255, 255, 255, 0.24);
  border-radius: 22px;
  padding: 28px 20px;
  backdrop-filter: blur(12px);
  text-align: center;
  transition: transform 0.28s var(--ease), background 0.28s var(--ease);
}

.career-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.18);
}

.career-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 14px;
  border-radius: 14px;
  background: rgba(49, 130, 246, 0.95);
  color: #fff;
  font-weight: 820;
  font-size: 0.95rem;
}

.career-card h3 {
  margin: 0 0 12px;
  font-size: 1.18rem;
  letter-spacing: -0.02em;
  line-height: 1.35;
}

.career-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.98rem;
  line-height: 1.6;
}

.career-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 28px;
  color: #9ec4ff;
  font-size: 1.35rem;
  font-weight: 700;
  opacity: 0.85;
}

.why-banner {
  margin: 0 auto;
  max-width: 780px;
  padding: 28px 32px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.14);
  border: 1.5px solid rgba(255, 255, 255, 0.24);
  font-size: 1.2rem;
  line-height: 1.75;
}

.why-banner em {
  font-style: normal;
  color: #d3e6ff;
  font-weight: 740;
}

/* Strength — independent rows */
.section-strength {
  background:
    radial-gradient(900px 400px at 100% 0%, rgba(49, 130, 246, 0.08), transparent 50%),
    #fff;
  padding: 120px 0;
}

.strength-list {
  display: grid;
  gap: 20px;
  max-width: 920px;
  margin: 0 auto;
  text-align: left;
}

.strength-row {
  display: grid;
  grid-template-columns: minmax(220px, 0.9fr) 1.2fr;
  gap: 28px;
  align-items: center;
  padding: 36px 36px;
  background: #fff;
  border: 1.5px solid #d5e4fa;
  border-left: 6px solid var(--blue);
  border-radius: 24px;
  box-shadow: 0 10px 28px rgba(25, 31, 40, 0.04);
  transition: transform 0.28s var(--ease), box-shadow 0.28s var(--ease), border-color 0.28s var(--ease);
}

.strength-row:nth-child(2) { border-left-color: #0ea5e9; }
.strength-row:nth-child(3) { border-left-color: #6366f1; }
.strength-row:nth-child(4) { border-left-color: #1b64da; }

.strength-row:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: #9ec4f5;
}

.strength-index {
  display: grid;
  gap: 10px;
}

.strength-index span {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  height: 36px;
  padding: 0 12px;
  border-radius: 999px;
  background: var(--blue-soft);
  color: var(--blue-deep);
  font-weight: 800;
  font-size: 0.92rem;
}

.strength-row:nth-child(2) .strength-index span {
  background: #e0f7ff;
  color: #0284c7;
}

.strength-row:nth-child(3) .strength-index span {
  background: #eef0ff;
  color: #4f46e5;
}

.strength-row:nth-child(4) .strength-index span {
  background: #e8f1ff;
  color: #1b64da;
}

.strength-index strong {
  font-size: 1.35rem;
  letter-spacing: -0.03em;
  line-height: 1.35;
  color: var(--navy);
}

.strength-row > p {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.75;
}

/* Process */
.process-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  position: relative;
}

.process-item {
  background: #fff;
  border: 1.5px solid #d5e4fa;
  border-bottom: 4px solid var(--blue);
  border-radius: var(--radius);
  padding: 32px 20px;
  text-align: center;
  transition: 0.28s var(--ease);
  min-height: 280px;
  position: relative;
}

.process-item:nth-child(2) { border-bottom-color: #0ea5e9; }
.process-item:nth-child(3) { border-bottom-color: #6366f1; }
.process-item:nth-child(4) { border-bottom-color: #1b64da; }

.process-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: #9ec4f5;
}

.process-num {
  width: 60px;
  height: 60px;
  margin: 0 auto 18px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: var(--blue);
  color: #fff;
  font-weight: 820;
  font-size: 1.15rem;
}

.process-item h3 {
  margin: 0 0 12px;
  font-size: 1.22rem;
  color: var(--navy);
}

.process-item p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
}

.process-item ul {
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-size: 0.95rem;
}

.process-item li + li { margin-top: 4px; }

.process-note {
  margin-top: 14px !important;
  color: var(--blue) !important;
  font-weight: 700;
}

/* FAQ */
.faq-list { display: grid; gap: 12px; text-align: left; }

.faq-item {
  background: #fff;
  border: 1.5px solid #d5e4fa;
  border-left: 4px solid var(--blue);
  border-radius: 18px;
  overflow: hidden;
  transition: box-shadow 0.25s var(--ease), transform 0.25s var(--ease);
}

.faq-item:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 56px 22px 24px;
  font-weight: 740;
  font-size: 1.12rem;
  color: var(--navy);
  position: relative;
  text-align: left;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.45rem;
  color: var(--blue);
}

.faq-item[open] summary::after { content: "–"; }

.faq-answer {
  padding: 0 24px 22px;
  color: var(--muted);
  text-align: left;
  font-size: 1.05rem;
}

.faq-answer p { margin: 0; }

/* Apply */
.apply-section {
  position: relative;
  overflow: hidden;
  color: #fff;
  padding: 110px 0;
  text-align: center;
  background: #0b1f4a;
}

.apply-media { position: absolute; inset: 0; }

.apply-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 1;
  filter: saturate(1.1) contrast(1.12) brightness(0.78);
}

.apply-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(6, 18, 48, 0.82) 0%, rgba(8, 28, 72, 0.62) 42%, rgba(12, 40, 100, 0.45) 100%),
    radial-gradient(ellipse at 20% 40%, rgba(6, 18, 48, 0.55), transparent 55%);
}

.apply-wrap {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 40px;
  align-items: start;
  text-align: center;
}

.apply-copy-card {
  padding: 36px 32px;
  border-radius: 28px;
  background: rgba(8, 22, 56, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(12px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.28);
  text-align: center;
}

.apply-copy h2 {
  margin: 0 0 16px;
  font-size: clamp(2rem, 3.2vw, 2.7rem);
  letter-spacing: -0.04em;
  color: #fff;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.35);
  font-weight: 840;
}

.apply-copy > .apply-copy-card > p,
.apply-copy-card > p {
  margin: 0 auto;
  max-width: 440px;
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.14rem;
  line-height: 1.75;
  font-weight: 560;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.3);
}

.apply-points {
  margin: 24px auto;
  padding: 0;
  list-style: none;
  max-width: 380px;
  color: #fff;
  font-size: 1.08rem;
  font-weight: 620;
}

.apply-points li {
  position: relative;
  padding: 10px 0 10px 28px;
  text-align: left;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.25);
}

.apply-points li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 10px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #3182f6;
  color: #fff;
  font-size: 0.7rem;
  display: grid;
  place-items: center;
  font-weight: 800;
}

.apply-contacts {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

.apply-contacts a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 240px;
  padding: 12px 18px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff;
  font-weight: 720;
  font-size: 1.05rem;
  text-shadow: none;
  transition: background 0.2s var(--ease), transform 0.2s var(--ease);
}

.apply-contacts a:hover {
  background: rgba(255, 255, 255, 0.24);
  transform: translateY(-2px);
}

.apply-form {
  background: #fff;
  color: var(--text);
  border-radius: 28px;
  padding: 32px;
  box-shadow: var(--shadow);
  text-align: left;
}

.field { margin-bottom: 16px; }

.field label {
  display: block;
  margin-bottom: 8px;
  font-size: 1rem;
  font-weight: 720;
  text-align: left;
}

.optional { color: var(--muted); font-weight: 500; }

.field input,
.field textarea {
  width: 100%;
  border: 1.5px solid var(--blue-line);
  border-radius: 14px;
  padding: 15px 16px;
  background: #fff;
  outline: none;
  font-size: 1.05rem;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.field input:focus,
.field textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(49, 130, 246, 0.14);
}

.check {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin: 8px 0 16px;
  font-size: 1rem;
  color: var(--muted);
}

.check input { margin-top: 4px; }

.linkish {
  border: 0;
  background: none;
  color: var(--blue);
  cursor: pointer;
  padding: 0;
  font: inherit;
  text-decoration: underline;
}

.form-error {
  margin: 0 0 12px;
  color: #f04452;
  font-size: 0.98rem;
}

/* Footer */
.site-footer {
  background: #191f28;
  color: rgba(255, 255, 255, 0.72);
  padding: 48px 0 30px;
  font-size: 1rem;
  text-align: center;
}

.footer-inner { display: grid; gap: 18px; }

.footer-brand strong {
  color: #fff;
  font-size: 1.15rem;
}

.footer-logo-link {
  display: inline-flex;
  margin-bottom: 16px;
}

.footer-logo {
  height: clamp(72px, 10vw, 96px);
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 14px rgba(0, 0, 0, 0.25));
}

.footer-brand p,
.footer-links p { margin: 8px 0 0; }

.footer-links a:hover { color: #fff; }

.copyright {
  margin: 8px 0 0 !important;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.92rem;
}

/* Modal */
.modal[hidden] { display: none; }

.modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 20px;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(25, 31, 40, 0.5);
}

.modal-panel {
  position: relative;
  width: min(460px, 100%);
  background: #fff;
  border-radius: 24px;
  padding: 32px;
  box-shadow: var(--shadow);
  text-align: center;
}

.modal-panel h3 {
  margin: 0 0 12px;
  font-size: 1.35rem;
  color: var(--navy);
}

.modal-body {
  color: var(--muted);
  margin-bottom: 20px;
  text-align: center;
  font-size: 1.05rem;
}

.modal-body p { margin: 0 0 8px; }

.modal-actions {
  display: flex;
  gap: 10px;
  justify-content: center;
}

/* Float CTA */
.float-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 40;
  background: var(--blue);
  color: #fff;
  font-weight: 760;
  font-size: 1.02rem;
  padding: 15px 20px;
  border-radius: 999px;
  box-shadow: 0 12px 28px rgba(49, 130, 246, 0.38);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: 0.25s var(--ease);
}

.float-cta.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  animation: floatPulse 2.4s ease-in-out infinite;
}

@keyframes floatPulse {
  0%, 100% { box-shadow: 0 12px 28px rgba(49, 130, 246, 0.38); }
  50% { box-shadow: 0 16px 34px rgba(49, 130, 246, 0.52); }
}

/* Animations */
.anim {
  opacity: 0;
  will-change: transform, opacity, filter;
  transition:
    opacity 0.85s var(--ease),
    transform 0.85s var(--ease),
    filter 0.85s var(--ease);
}

.anim-fade-up { transform: translateY(48px); }
.anim-fade-down { transform: translateY(-28px); }
.anim-fade-left { transform: translateX(-56px); }
.anim-fade-right { transform: translateX(56px); }
.anim-scale-up {
  transform: translateY(40px) scale(0.92);
  filter: blur(5px);
}
.anim-rise {
  transform: translateY(56px) rotateX(8deg);
  filter: blur(3px);
  transform-origin: center bottom;
}

.anim.is-in {
  opacity: 1;
  transform: none;
  filter: blur(0);
}

[data-stagger] > .anim:nth-child(1) { transition-delay: 0.04s; }
[data-stagger] > .anim:nth-child(2) { transition-delay: 0.12s; }
[data-stagger] > .anim:nth-child(3) { transition-delay: 0.2s; }
[data-stagger] > .anim:nth-child(4) { transition-delay: 0.28s; }
[data-stagger] > .anim:nth-child(5) { transition-delay: 0.36s; }
[data-stagger] > .anim:nth-child(6) { transition-delay: 0.44s; }

.section-head.anim.is-in .eyebrow {
  animation: eyebrowIn 0.7s var(--ease) both;
}

.section-head.anim.is-in h2 {
  animation: titleShine 1s var(--ease) 0.08s both;
}

@keyframes eyebrowIn {
  from { opacity: 0; letter-spacing: 0.28em; }
  to { opacity: 1; letter-spacing: 0.12em; }
}

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

.target-item.anim.is-in:hover,
.benefit-card.anim.is-in:hover,
.process-item.anim.is-in:hover {
  transition-delay: 0s;
}

.diag-card.anim.is-in .diag-num,
.process-item.anim.is-in .process-num {
  animation: popIn 0.55s var(--ease) both;
}

@keyframes popIn {
  0% { transform: scale(0.6); opacity: 0; }
  70% { transform: scale(1.08); }
  100% { transform: scale(1); opacity: 1; }
}

.why-banner.anim.is-in {
  animation: softGlow 2.8s ease-in-out infinite alternate;
}

@keyframes softGlow {
  from { box-shadow: 0 0 0 rgba(168, 203, 255, 0); }
  to { box-shadow: 0 0 28px rgba(168, 203, 255, 0.28); }
}

.apply-form.anim.is-in {
  animation: formLift 0.9s var(--ease) both;
}

@keyframes formLift {
  from { opacity: 0; transform: translateY(28px) scale(0.98); }
  to { opacity: 1; transform: none; }
}

/* Sequential hover-like pulse on card lists */
@keyframes cardSpotPulse {
  0%, 12%, 100% {
    transform: translateY(0) scale(1);
    box-shadow: 0 8px 24px rgba(25, 31, 40, 0.04);
    filter: brightness(1);
  }
  5%, 9% {
    transform: translateY(-8px) scale(1.035);
    box-shadow: 0 20px 40px rgba(49, 130, 246, 0.22);
    filter: brightness(1.04);
  }
}

@keyframes rowSpotPulse {
  0%, 16%, 100% {
    transform: translateY(0) scale(1);
    box-shadow: 0 10px 28px rgba(25, 31, 40, 0.04);
  }
  6%, 12% {
    transform: translateY(-5px) scale(1.015);
    box-shadow: 0 18px 36px rgba(49, 130, 246, 0.18);
  }
}

.target-grid[data-pulse] > .target-item.is-in,
.benefit-grid[data-pulse] > .benefit-card.is-in,
.process-list[data-pulse] > .process-item.is-in,
.diag-list[data-pulse] > .diag-card.is-in,
.career-flow[data-pulse] > .career-card.is-in {
  animation: cardSpotPulse 7.2s var(--ease) infinite;
}

.strength-list[data-pulse] > .strength-row.is-in {
  animation: rowSpotPulse 6.4s var(--ease) infinite;
}

.target-grid[data-pulse] > .target-item.is-in:nth-child(1),
.benefit-grid[data-pulse] > .benefit-card.is-in:nth-child(1),
.process-list[data-pulse] > .process-item.is-in:nth-child(1),
.diag-list[data-pulse] > .diag-card.is-in:nth-child(1) { animation-delay: 0.2s; }
.target-grid[data-pulse] > .target-item.is-in:nth-child(2),
.benefit-grid[data-pulse] > .benefit-card.is-in:nth-child(2),
.process-list[data-pulse] > .process-item.is-in:nth-child(2),
.diag-list[data-pulse] > .diag-card.is-in:nth-child(2) { animation-delay: 1.4s; }
.target-grid[data-pulse] > .target-item.is-in:nth-child(3),
.benefit-grid[data-pulse] > .benefit-card.is-in:nth-child(3),
.process-list[data-pulse] > .process-item.is-in:nth-child(3),
.diag-list[data-pulse] > .diag-card.is-in:nth-child(3) { animation-delay: 2.6s; }
.target-grid[data-pulse] > .target-item.is-in:nth-child(4),
.benefit-grid[data-pulse] > .benefit-card.is-in:nth-child(4),
.process-list[data-pulse] > .process-item.is-in:nth-child(4),
.diag-list[data-pulse] > .diag-card.is-in:nth-child(4) { animation-delay: 3.8s; }
.target-grid[data-pulse] > .target-item.is-in:nth-child(5),
.benefit-grid[data-pulse] > .benefit-card.is-in:nth-child(5) { animation-delay: 5s; }
.target-grid[data-pulse] > .target-item.is-in:nth-child(6),
.benefit-grid[data-pulse] > .benefit-card.is-in:nth-child(6) { animation-delay: 6.2s; }

.career-flow[data-pulse] > .career-card.is-in:nth-child(1) { animation-delay: 0.2s; }
.career-flow[data-pulse] > .career-card.is-in:nth-child(3) { animation-delay: 1.4s; }
.career-flow[data-pulse] > .career-card.is-in:nth-child(5) { animation-delay: 2.6s; }
.career-flow[data-pulse] > .career-card.is-in:nth-child(7) { animation-delay: 3.8s; }

.strength-list[data-pulse] > .strength-row.is-in:nth-child(1) { animation-delay: 0.2s; }
.strength-list[data-pulse] > .strength-row.is-in:nth-child(2) { animation-delay: 1.8s; }
.strength-list[data-pulse] > .strength-row.is-in:nth-child(3) { animation-delay: 3.4s; }
.strength-list[data-pulse] > .strength-row.is-in:nth-child(4) { animation-delay: 5s; }

.target-grid[data-pulse] > .target-item.is-in:hover,
.benefit-grid[data-pulse] > .benefit-card.is-in:hover,
.process-list[data-pulse] > .process-item.is-in:hover,
.diag-list[data-pulse] > .diag-card.is-in:hover,
.career-flow[data-pulse] > .career-card.is-in:hover,
.strength-list[data-pulse] > .strength-row.is-in:hover {
  animation-play-state: paused;
}

/* Desktop: nav visible / Mobile: menu only */
@media (min-width: 901px) {
  .nav-desktop { display: flex !important; }
  .menu-btn { display: none !important; }
}

@media (max-width: 900px) {
  .nav-desktop { display: none !important; }
  .menu-btn { display: inline-flex !important; }

  .target-grid,
  .benefit-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .career-flow {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .career-arrow {
    display: none;
  }

  .strength-row {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 28px 24px;
  }

  .why-track,
  .process-list,
  .split-layout,
  .apply-wrap {
    grid-template-columns: 1fr;
  }

  .split-visual { min-height: 280px; }
  .split-layout { text-align: center; }
  .diag-card { text-align: center; }

  .anim-fade-left,
  .anim-fade-right {
    transform: translateY(28px);
  }
}

.br-mobile {
  display: none;
}

@media (max-width: 640px) {
  body { font-size: 16px; }
  .container { width: calc(100% - 28px); }
  .section { padding: 80px 0; }
  .hero-inner { padding: 48px 0 64px; }
  .hero-checks { grid-template-columns: 1fr; }
  .hero-title { min-height: 3.7em; }

  .br-mobile { display: inline; }

  .target-grid,
  .benefit-grid {
    grid-template-columns: 1fr;
  }

  /* 히어로 제외: 모바일 텍스트 중앙 정렬 */
  .section,
  .section .target-grid,
  .section .target-item,
  .section .benefit-card,
  .section .diag-list,
  .section .diag-card,
  .section .career-card,
  .section .strength-list,
  .section .strength-row,
  .section .strength-index,
  .section .process-item,
  .section .process-item ul,
  .section .faq-list,
  .section .faq-item summary,
  .section .faq-answer,
  .section .apply-form,
  .section .field,
  .section .apply-points li,
  .section .check,
  .site-footer {
    text-align: center;
  }

  .target-item .num,
  .benefit-icon,
  .benefit-label,
  .diag-num,
  .process-num,
  .career-num,
  .strength-index span {
    margin-left: auto;
    margin-right: auto;
  }

  .diag-card {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .strength-index {
    justify-items: center;
  }

  .apply-points li {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding: 10px 0;
  }

  .apply-points li::before {
    position: static;
    flex-shrink: 0;
  }

  .faq-item summary {
    padding-left: 20px;
    padding-right: 48px;
  }

  .field label,
  .check {
    justify-content: center;
    text-align: center;
  }

  .section .field label {
    text-align: center;
  }

  .hide-sm { display: none; }

  .float-cta {
    left: 18px;
    right: 18px;
    text-align: center;
  }

  .brand-logo { height: 46px; }
  .benefit-card,
  .process-item,
  .target-item {
    min-height: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .anim,
  .hero-img,
  .why-media img,
  .hero-orb,
  .btn,
  .float-cta,
  .type-cursor,
  .why-banner.anim.is-in,
  .apply-form.anim.is-in,
  .hero-rest.is-ready .hero-checks li,
  .hero-rest.is-ready .hero-checks li .trust-badge,
  .hero-rest.is-ready .hero-checks li::before,
  [data-pulse] > .is-in {
    animation: none !important;
    transition: none !important;
    filter: none !important;
  }
  .anim,
  .hero-rest.is-waiting {
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }
  .trust-badge { display: none; }
}
