:root {
  color-scheme: light;
  --wp-bg: #f6f7f7;
  --surface: #ffffff;
  --surface-soft: #f8faf9;
  --ink: #111827;
  --muted: #646970;
  --line: #dcdcde;
  --line-dark: #c3c4c7;
  --accent: #2271b1;
  --accent-strong: #135e96;
  --accent-soft: #e9f3fb;
  --green: #1b7f5f;
  --gold: #996800;
  --danger: #b32d2e;
  --shadow: 0 12px 34px rgba(17, 24, 39, 0.08);
  --shadow-small: 0 6px 18px rgba(17, 24, 39, 0.07);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  min-width: 320px;
  margin: 0;
  background: var(--wp-bg);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  overflow-x: hidden;
}

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

button:disabled {
  cursor: not-allowed;
  opacity: 0.6;
}

a {
  color: inherit;
}

.confidential-banner {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 9px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid rgba(255, 210, 0, 0.38);
  background: linear-gradient(90deg, #060606, #151515 52%, #060606);
  color: #ffffff;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.5;
  text-align: center;
  box-shadow: inset 0 -2px 0 var(--brand-yellow);
}

.confidential-watermark {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 10;
  opacity: 1;
  background-position: center top;
  background-repeat: repeat;
  background-size: 520px 260px;
}

.wp-site-header {
  position: relative;
  z-index: 10;
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.compact-header {
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.02);
}

.wp-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 1180px;
  min-height: 76px;
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 32px);
}

.site-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 7px;
  background: #1d2327;
  color: #ffffff;
  font-weight: 900;
  flex: 0 0 auto;
}

.site-brand strong,
.site-brand small {
  display: block;
}

.site-brand strong {
  font-size: 17px;
  line-height: 1.2;
}

.site-brand small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
}

.wp-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 800;
}

.wp-nav a {
  min-height: 38px;
  padding: 10px 12px;
  border-radius: 4px;
  color: #1d2327;
  text-decoration: none;
}

.wp-nav a:hover {
  background: var(--accent-soft);
  color: var(--accent-strong);
}

.wp-front-page {
  max-width: 1180px;
  margin: 0 auto;
  padding: 34px clamp(16px, 4vw, 32px) 56px;
}

.wp-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
  gap: 28px;
  align-items: stretch;
  min-height: 390px;
  padding: clamp(26px, 5vw, 52px);
  border: 1px solid var(--line);
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.96) 0 48%, rgba(233, 243, 251, 0.94) 48%),
    repeating-linear-gradient(90deg, rgba(34, 113, 177, 0.08) 0 1px, transparent 1px 86px);
  box-shadow: var(--shadow);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 14px;
  font-size: clamp(34px, 6vw, 64px);
  line-height: 1;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  font-size: 21px;
  line-height: 1.35;
}

.subtitle {
  max-width: 700px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-feature,
.widget,
.post-card,
.panel,
.instruction-band,
.question-card,
.result-section,
.metric-card,
.admin-table-wrap {
  border: 1px solid var(--line);
  background: var(--surface);
}

.hero-feature {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 280px;
  padding: 24px;
  box-shadow: inset 0 5px 0 #1d2327;
}

.feature-kicker,
.post-category,
.tag {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 26px;
  padding: 0 9px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-strong);
  font-size: 12px;
  font-weight: 900;
}

.hero-feature p {
  color: var(--muted);
  line-height: 1.7;
}

.hero-feature dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 18px 0 0;
  background: var(--line);
}

.hero-feature dl div {
  padding: 12px;
  background: var(--surface-soft);
}

.hero-feature dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.hero-feature dd {
  margin: 4px 0 0;
  font-size: 18px;
  font-weight: 900;
}

.wp-content-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 28px;
  margin-top: 28px;
}

.post-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(240px, 1fr));
  gap: 22px;
}

.post-card {
  display: flex;
  flex-direction: column;
  min-height: 300px;
  padding: 26px;
  color: inherit;
  text-decoration: none;
  box-shadow: var(--shadow-small);
  transition: border-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.post-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.post-card h2 {
  margin-top: 42px;
  font-size: 28px;
}

.post-card p {
  color: var(--muted);
  line-height: 1.8;
}

.read-more,
.widget-link {
  margin-top: auto;
  color: var(--accent-strong);
  font-weight: 900;
}

.wp-sidebar,
.sidebar {
  align-self: start;
  position: sticky;
  top: 58px;
  display: grid;
  gap: 16px;
}

.widget {
  padding: 20px;
  box-shadow: var(--shadow-small);
}

.process-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  display: grid;
  gap: 4px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.process-list li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.process-list span,
.widget p {
  color: var(--muted);
  line-height: 1.7;
}

.accent-widget {
  border-top: 5px solid var(--accent);
}

.wp-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 22px clamp(16px, 4vw, 48px);
  border-top: 1px solid var(--line);
  background: #1d2327;
  color: #f0f0f1;
  font-size: 13px;
}

.app-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 34px clamp(16px, 4vw, 32px) 26px;
}

.assessment-header,
.admin-header {
  min-height: 190px;
}

.header-meter {
  min-width: 142px;
  padding: 18px;
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow-small);
  text-align: center;
}

.header-meter span {
  display: block;
  color: var(--accent-strong);
  font-size: 38px;
  font-weight: 900;
}

.header-meter small {
  color: var(--muted);
}

.app-shell {
  display: grid;
  grid-template-columns: minmax(250px, 320px) minmax(0, 1fr);
  gap: 24px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 32px) 56px;
}

.panel,
.instruction-band,
.question-card,
.result-section {
  box-shadow: var(--shadow-small);
}

.panel {
  padding: 20px;
}

.identity-panel {
  border-top: 5px solid var(--accent);
}

.is-hidden {
  display: none !important;
}

.admin-login-form {
  margin-bottom: 14px;
}

.admin-session {
  display: grid;
  gap: 10px;
  margin-bottom: 14px;
  padding: 12px;
  border: 1px solid var(--line-dark);
  background: #ffffff;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
}

label {
  display: grid;
  gap: 7px;
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.filter-fieldset {
  margin: 0 0 14px;
  padding: 0;
  border: 0;
}

.filter-fieldset legend {
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 900;
}

input[type="text"],
input[type="password"],
input[type="number"],
select,
textarea {
  width: 100%;
  border: 1px solid var(--line-dark);
  border-radius: 3px;
  background: #ffffff;
  color: var(--ink);
  outline: none;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

input[type="text"],
input[type="password"],
select {
  height: 42px;
  min-height: 42px;
  padding: 8px 10px;
}

textarea {
  min-height: 78px;
  resize: vertical;
  padding: 9px 11px;
  line-height: 1.5;
}

select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--muted) 50%),
    linear-gradient(135deg, var(--muted) 50%, transparent 50%);
  background-position:
    calc(100% - 18px) 18px,
    calc(100% - 12px) 18px;
  background-repeat: no-repeat;
  background-size: 6px 6px;
  padding-right: 34px;
}

input[type="number"] {
  min-height: 38px;
  padding: 8px;
  text-align: center;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 2px rgba(34, 113, 177, 0.18);
}

.primary-btn,
.ghost-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border-radius: 3px;
  font-weight: 900;
  text-decoration: none;
}

.primary-btn {
  border: 1px solid var(--accent-strong);
  background: var(--accent);
  color: #ffffff;
}

.primary-btn:hover {
  background: var(--accent-strong);
}

.ghost-btn {
  border: 1px solid var(--line-dark);
  background: #ffffff;
  color: var(--accent-strong);
}

.ghost-btn:hover {
  border-color: var(--accent);
  background: var(--accent-soft);
}

.panel .primary-btn,
.panel .ghost-btn {
  width: 100%;
  margin-bottom: 10px;
}

.hint,
.disclaimer {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.workspace {
  min-width: 0;
}

.instruction-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 18px;
  padding: 22px;
}

.instruction-band p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.7;
}

.score-legend {
  display: grid;
  gap: 8px;
  min-width: 150px;
  color: var(--accent-strong);
  font-size: 13px;
  font-weight: 900;
}

.question-list {
  display: grid;
  gap: 18px;
}

.question-card {
  position: relative;
  margin: 0;
  padding: 22px;
  scroll-margin-top: 94px;
}

.question-card legend {
  display: block;
  float: left;
  width: 100%;
  margin-bottom: 16px;
  padding-right: 140px;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.5;
}

.question-card legend::after {
  content: "";
  display: block;
  clear: both;
}

.question-total {
  position: absolute;
  top: 18px;
  right: 18px;
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  padding: 8px 10px;
  border-radius: 3px;
  background: var(--accent-soft);
  color: var(--accent-strong);
  font-size: 13px;
  font-weight: 900;
}

.question-card.invalid .question-total {
  background: #fcf3dc;
  color: var(--gold);
}

.options {
  display: grid;
  gap: 12px;
  clear: both;
}

.option-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(120px, 180px) 68px;
  align-items: center;
  gap: 14px;
  margin: 0;
  padding: 12px;
  border: 1px solid var(--line);
  background: var(--surface-soft);
}

.option-row:focus-within,
.choice-row:focus-within {
  border-color: var(--accent);
  background: #ffffff;
  box-shadow: 0 0 0 2px rgba(34, 113, 177, 0.14);
}

.choice-row {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  align-items: start;
  gap: 12px;
  min-height: 54px;
  margin: 0;
  padding: 14px;
  border: 1px solid var(--line);
  background: var(--surface-soft);
  color: var(--ink);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.6;
}

.choice-row input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: var(--accent);
}

.enneagram-question-card legend {
  padding-right: 0;
}

.option-text {
  display: flex;
  gap: 10px;
  min-width: 0;
  line-height: 1.6;
}

.option-letter {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent-strong);
  font-weight: 900;
}

input[type="range"] {
  width: 100%;
  accent-color: var(--accent);
}

.action-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 18px;
}

.action-footer h2,
.action-footer p {
  margin-bottom: 0;
}

.action-buttons,
.admin-actions,
.record-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.action-buttons .primary-btn,
.action-buttons .ghost-btn,
.admin-actions .ghost-btn {
  width: auto;
  min-width: 138px;
  margin-bottom: 0;
  padding: 0 18px;
}

.result-section {
  margin-top: 24px;
  padding: 24px;
}

.result-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.result-heading h2 {
  margin-bottom: 0;
  font-size: 28px;
}

.error-message {
  padding: 12px 14px;
  border: 1px solid rgba(179, 45, 46, 0.25);
  border-radius: 3px;
  background: #fcf0f1;
  color: var(--danger);
  font-weight: 900;
}

.question-warning {
  clear: both;
  margin-bottom: 14px;
  padding: 12px 14px;
  border: 1px solid rgba(153, 104, 0, 0.28);
  border-radius: 3px;
  background: #fcf3dc;
  color: var(--gold);
  font-weight: 900;
}

.success-message {
  padding: 12px 14px;
  border: 1px solid rgba(27, 127, 95, 0.24);
  border-radius: 3px;
  background: #edfaef;
  color: var(--green);
  font-weight: 900;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(150px, 1fr));
  gap: 14px;
  margin-bottom: 18px;
}

.metric-card {
  display: grid;
  gap: 8px;
  min-height: 104px;
  padding: 18px;
  box-shadow: var(--shadow-small);
}

.metric-card span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

.metric-card strong {
  color: var(--accent-strong);
  font-size: clamp(24px, 4vw, 34px);
  line-height: 1.1;
}

.admin-table-wrap {
  overflow: auto;
  box-shadow: var(--shadow-small);
}

.admin-table {
  width: 100%;
  min-width: 1280px;
  border-collapse: collapse;
  font-size: 14px;
}

.admin-table th,
.admin-table td {
  padding: 11px 12px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.admin-table th {
  position: sticky;
  top: 0;
  z-index: 1;
  background: #f0f0f1;
  color: #1d2327;
  font-weight: 900;
}

.admin-table tbody tr:hover td {
  background: var(--surface-soft);
}

.admin-table th:nth-child(1),
.admin-table td:nth-child(1) {
  min-width: 110px;
  white-space: nowrap;
  word-break: keep-all;
}

.admin-table th:nth-child(2),
.admin-table td:nth-child(2) {
  min-width: 130px;
  word-break: keep-all;
}

.admin-table th:nth-child(3),
.admin-table td:nth-child(3),
.admin-table th:nth-child(4),
.admin-table td:nth-child(4),
.admin-table th:nth-child(5),
.admin-table td:nth-child(5),
.admin-table th:nth-child(6),
.admin-table td:nth-child(6),
.admin-table th:nth-child(7),
.admin-table td:nth-child(7),
.admin-table th:nth-child(8),
.admin-table td:nth-child(8) {
  min-width: 150px;
  white-space: nowrap;
}

.admin-table th:nth-child(7),
.admin-table td:nth-child(7) {
  min-width: 220px;
}

.admin-table th:nth-child(8),
.admin-table td:nth-child(8),
.admin-table th:nth-child(9),
.admin-table td:nth-child(9) {
  min-width: 190px;
}

.admin-table th:nth-child(10),
.admin-table td:nth-child(10) {
  min-width: 520px;
}

.profile-report {
  max-width: 620px;
  max-height: 360px;
  margin: 0;
  overflow: auto;
  white-space: pre-wrap;
  color: var(--ink);
  font: inherit;
  line-height: 1.7;
}

.profile-summary {
  display: -webkit-box;
  max-height: 96px;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  white-space: pre-wrap;
}

.record-meta {
  display: grid;
  gap: 4px;
}

.record-meta small {
  color: var(--muted);
  font-size: 12px;
}

.tag.secondary {
  background: #f6f7f7;
  color: #50575e;
}

.tag.low {
  background: #fcf3dc;
  color: var(--gold);
}

.hide-weak-columns .weak-column {
  display: none;
}

.multi-select {
  position: relative;
}

.multi-select-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 42px;
  padding: 9px 34px 9px 11px;
  border: 1px solid var(--line-dark);
  border-radius: 3px;
  background:
    linear-gradient(45deg, transparent 50%, var(--muted) 50%) calc(100% - 18px) 18px / 6px 6px no-repeat,
    linear-gradient(135deg, var(--muted) 50%, transparent 50%) calc(100% - 12px) 18px / 6px 6px no-repeat,
    #ffffff;
  color: var(--ink);
  font-weight: 800;
  text-align: left;
}

.multi-select-button span {
  display: block;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.multi-select-menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  z-index: 30;
  display: none;
  max-height: 220px;
  overflow: auto;
  padding: 8px;
  border: 1px solid var(--line-dark);
  background: #ffffff;
  box-shadow: var(--shadow);
}

.multi-select.is-open .multi-select-menu {
  display: grid;
  gap: 4px;
}

.multi-select-menu label {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  align-items: center;
  gap: 8px;
  min-height: 34px;
  margin: 0;
  padding: 6px 8px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
}

.multi-select-menu label:hover {
  background: var(--accent-soft);
}

.multi-select-menu input {
  width: 16px;
  height: 16px;
  accent-color: var(--accent);
}

.multi-select.is-disabled .multi-select-button {
  color: var(--muted);
  cursor: not-allowed;
  opacity: 0.72;
}

.danger-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(179, 45, 46, 0.35);
  border-radius: 3px;
  background: #fcf0f1;
  color: var(--danger);
  font-weight: 900;
}

.danger-btn:hover {
  background: #f8d7da;
}

@media (max-width: 980px) {
  .wp-header-inner,
  .app-header,
  .instruction-band,
  .result-heading,
  .action-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .wp-nav {
    flex-wrap: wrap;
  }

  .wp-hero,
  .wp-content-layout,
  .app-shell,
  .post-grid,
  .dashboard-grid {
    grid-template-columns: 1fr;
  }

  .wp-sidebar,
  .sidebar {
    position: static;
  }

  .action-buttons {
    flex-direction: column-reverse;
  }

  .action-buttons .primary-btn,
  .action-buttons .ghost-btn {
    width: 100%;
  }
}

@media (max-width: 720px) {
  .wp-front-page {
    padding-top: 18px;
  }

  .wp-hero {
    min-height: auto;
    padding: 22px 18px;
  }

  .post-card {
    min-height: 240px;
  }

  .app-header,
  .app-shell {
    padding-left: 14px;
    padding-right: 14px;
  }

  .question-card {
    padding: 18px 14px;
  }

  .question-card legend {
    padding-right: 0;
    font-size: 16px;
  }

  .question-total {
    position: static;
    margin-bottom: 14px;
  }

  .option-row {
    grid-template-columns: 1fr 84px;
  }

  .option-text {
    grid-column: 1 / -1;
  }

  .wp-footer {
    flex-direction: column;
  }
}

@media print {
  .confidential-banner {
    position: static;
    border: 1px solid #1d2327;
    color: #1d2327;
    background: #ffffff;
  }

  .confidential-watermark {
    background-size: 460px 230px;
  }
}

/* NANFU-inspired enterprise product site treatment */
:root {
  --brand-black: #070707;
  --brand-ink: #101418;
  --brand-yellow: #ffd200;
  --brand-yellow-deep: #f5b700;
  --brand-gray: #f3f4f6;
}

.brand-header,
.compact-header {
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.brand-header .wp-header-inner {
  min-height: 84px;
}

.brand-mark {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 6px);
  align-items: end;
  justify-content: center;
  gap: 4px;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(7, 7, 7, 0.16);
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(255, 210, 0, 0.34), rgba(255, 255, 255, 0) 46%),
    #ffffff;
  box-shadow: 0 8px 18px rgba(16, 20, 24, 0.08);
}

.brand-mark::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 2px solid var(--brand-black);
  border-radius: 50%;
  opacity: 0.14;
}

.brand-mark span {
  position: relative;
  z-index: 1;
  width: 6px;
  border-radius: 999px;
  background: var(--brand-black);
}

.brand-mark span:nth-child(1) {
  height: 13px;
}

.brand-mark span:nth-child(2) {
  height: 21px;
  background: var(--brand-yellow-deep);
}

.brand-mark span:nth-child(3) {
  height: 29px;
}

.site-brand strong {
  color: var(--brand-black);
  font-size: 18px;
}

.site-brand small {
  color: #6b7280;
  font-weight: 700;
}

.wp-nav {
  gap: 22px;
  text-transform: none;
}

.wp-nav a {
  position: relative;
  min-height: auto;
  padding: 8px 0;
  border-radius: 0;
  color: var(--brand-black);
}

.wp-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: var(--brand-yellow);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.18s ease;
}

.wp-nav a:hover {
  background: transparent;
  color: var(--brand-black);
}

.wp-nav a:hover::after {
  transform: scaleX(1);
}

.brand-front-page {
  background: #ffffff;
}

.brand-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
  min-height: calc(100vh - 120px);
  overflow: hidden;
  background:
    radial-gradient(circle at var(--pointer-x, 76%) var(--pointer-y, 45%), rgba(255, 255, 255, 0.22), transparent 22%),
    radial-gradient(circle at 76% 46%, rgba(255, 210, 0, 0.34) 0 18%, transparent 19%),
    linear-gradient(105deg, #ffffff 0 49%, var(--brand-black) 49.2% 100%);
  isolation: isolate;
}

.brand-hero::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 13px;
  background: var(--brand-yellow);
  transform-origin: left;
  animation: heroRuleIn 1s 0.55s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-orbit {
  position: absolute;
  right: clamp(20px, 8vw, 150px);
  top: 18%;
  z-index: 0;
  width: clamp(260px, 34vw, 520px);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 210, 0, 0.24);
  border-radius: 50%;
  animation: orbitSpin 18s linear infinite;
}

.hero-orbit::before,
.hero-orbit::after {
  content: "";
  position: absolute;
  border-radius: inherit;
}

.hero-orbit::before {
  inset: 13%;
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.hero-orbit::after {
  top: 8%;
  left: 50%;
  width: 12px;
  height: 12px;
  background: var(--brand-yellow);
  box-shadow: 0 0 28px var(--brand-yellow);
}

.energy-lines {
  pointer-events: none;
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}

.energy-lines span {
  position: absolute;
  right: -18%;
  width: 34%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 210, 0, 0.92), transparent);
  opacity: 0.78;
  transform: rotate(-16deg);
  animation: energySweep 3.8s linear infinite;
}

.energy-lines span:nth-child(1) {
  top: 27%;
}

.energy-lines span:nth-child(2) {
  top: 48%;
  animation-delay: 1.1s;
}

.energy-lines span:nth-child(3) {
  top: 68%;
  animation-delay: 2.2s;
}

.brand-hero .hero-copy {
  position: relative;
  z-index: 1;
  justify-content: center;
  min-width: 0;
  padding: clamp(48px, 7vw, 96px) clamp(22px, 8vw, 118px);
}

.brand-hero .eyebrow,
.brand-hero h1,
.brand-hero .subtitle,
.brand-hero .hero-actions {
  animation: copyRise 0.9s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.brand-hero h1 {
  animation-delay: 0.08s;
}

.brand-hero .subtitle {
  animation-delay: 0.18s;
}

.brand-hero .hero-actions {
  animation-delay: 0.28s;
}

.brand-hero .eyebrow,
.reason-section .eyebrow,
.product-section .eyebrow,
.technology-band .eyebrow {
  color: var(--brand-yellow-deep);
  font-size: 13px;
  font-weight: 950;
}

.brand-hero h1 {
  max-width: 760px;
  margin-bottom: 22px;
  color: var(--brand-black);
  font-family: "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: clamp(52px, 7.4vw, 104px);
  line-height: 0.98;
  font-weight: 900;
  letter-spacing: 0;
}

.brand-hero h1 span {
  display: block;
  white-space: nowrap;
}

.title-mobile {
  display: none !important;
}

.brand-hero .subtitle {
  max-width: 650px;
  color: #4b5563;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.9;
}

.brand-hero .hero-actions {
  margin-top: 34px;
}

.brand-hero .primary-btn,
.brand-hero .ghost-btn {
  min-width: 168px;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.brand-hero .primary-btn {
  border-color: var(--brand-black);
  background: var(--brand-black);
  color: #ffffff;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.2);
}

.brand-hero .ghost-btn {
  border-color: var(--brand-black);
  background: #ffffff;
  color: var(--brand-black);
}

.brand-hero .primary-btn:hover,
.brand-hero .ghost-btn:hover {
  transform: translateY(-3px);
}

.talent-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 620px;
  padding: 42px;
  z-index: 2;
  perspective: 1100px;
}

.talent-panel {
  position: relative;
  width: min(38vw, 460px);
  min-width: 330px;
  aspect-ratio: 0.88;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 38px;
  background:
    radial-gradient(circle at 50% 30%, rgba(255, 210, 0, 0.24), transparent 38%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.04));
  backdrop-filter: blur(12px);
  box-shadow:
    0 40px 80px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transform: rotate(-4deg);
  transform-style: preserve-3d;
  animation: talentEnter 1.15s 0.18s cubic-bezier(0.16, 1, 0.3, 1) both, talentFloat 5.2s 1.4s ease-in-out infinite;
  transition: transform 0.16s ease-out;
}

.talent-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(115deg, transparent 0 28%, rgba(255, 255, 255, 0.2) 38%, transparent 48% 100%);
  transform: translateX(-120%);
  animation: talentShine 4.8s 1.6s ease-in-out infinite;
}

.talent-network {
  position: absolute;
  inset: 8% 5%;
  z-index: -1;
  border-radius: 50%;
  background:
    linear-gradient(28deg, transparent 49.7%, rgba(255, 210, 0, 0.38) 50%, transparent 50.4%),
    linear-gradient(148deg, transparent 49.7%, rgba(255, 255, 255, 0.18) 50%, transparent 50.4%),
    linear-gradient(90deg, transparent 49.7%, rgba(255, 210, 0, 0.24) 50%, transparent 50.4%);
  animation: networkSpin 22s linear infinite;
}

.talent-network span {
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--brand-yellow);
  box-shadow: 0 0 28px rgba(255, 210, 0, 0.85);
}

.talent-network span:nth-child(1) {
  left: 18%;
  top: 24%;
}

.talent-network span:nth-child(2) {
  right: 18%;
  top: 19%;
}

.talent-network span:nth-child(3) {
  right: 12%;
  bottom: 26%;
}

.talent-network span:nth-child(4) {
  left: 26%;
  bottom: 15%;
}

.talent-network span:nth-child(5) {
  left: 48%;
  top: 48%;
  background: #ffffff;
}

.profile-ring {
  position: absolute;
  left: 50%;
  top: 12%;
  display: grid;
  place-items: center;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background:
    conic-gradient(from 30deg, var(--brand-yellow), rgba(255, 255, 255, 0.16), var(--brand-yellow), rgba(255, 255, 255, 0.12), var(--brand-yellow));
  transform: translateX(-50%) translateZ(38px);
  animation: profilePulse 3.4s ease-in-out infinite;
}

.profile-avatar {
  display: grid;
  place-items: center;
  width: 132px;
  height: 132px;
  border: 10px solid #111111;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: inset 0 -12px 0 #f1f1f1;
}

.profile-avatar::before {
  content: "";
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #111111;
  transform: translateY(-8px);
}

.profile-avatar span {
  position: absolute;
  bottom: 34px;
  width: 74px;
  height: 38px;
  border-radius: 40px 40px 18px 18px;
  background: #111111;
}

.radar-card {
  position: absolute;
  left: 50%;
  bottom: 10%;
  display: grid;
  place-items: center;
  width: min(76%, 330px);
  padding: 18px 18px 20px;
  border: 4px solid #111111;
  border-radius: 28px;
  background: #ffffff;
  color: #111111;
  text-align: center;
  transform: translateX(-50%) translateZ(48px);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.32);
}

.radar-card svg {
  width: 160px;
  height: 160px;
  margin-bottom: 6px;
}

.radar-card polygon,
.radar-card polyline {
  fill: none;
  stroke: rgba(17, 17, 17, 0.18);
  stroke-width: 2;
}

.radar-card path {
  fill: rgba(255, 210, 0, 0.45);
  stroke: #111111;
  stroke-width: 4;
  animation: radarMorph 3.6s ease-in-out infinite;
}

.radar-card strong {
  font-size: 30px;
  line-height: 1;
}

.radar-card small {
  margin-top: 6px;
  color: #4b5563;
  font-weight: 900;
}

.assessment-card {
  position: absolute;
  display: grid;
  gap: 4px;
  min-width: 160px;
  padding: 15px 16px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.94);
  color: #111111;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24);
}

.assessment-card b {
  font-size: 18px;
}

.assessment-card span {
  color: #4b5563;
  font-size: 12px;
  font-weight: 900;
}

.card-a {
  left: -42px;
  top: 28%;
  animation: cardFloatA 4.4s ease-in-out infinite;
}

.card-b {
  right: -38px;
  top: 42%;
  animation: cardFloatB 4.8s ease-in-out infinite;
}

.floating-stat {
  position: absolute;
  display: grid;
  gap: 3px;
  min-width: 150px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.28);
  animation: statPop 0.75s 0.85s cubic-bezier(0.16, 1, 0.3, 1) both, statDrift 4.6s 1.8s ease-in-out infinite;
  transition: transform 0.16s ease-out;
}

.floating-stat strong {
  color: var(--brand-black);
  font-size: 26px;
  line-height: 1;
}

.floating-stat span {
  color: #4b5563;
  font-size: 12px;
  font-weight: 900;
}

.stat-one {
  top: 24%;
  right: 12%;
}

.stat-two {
  left: 10%;
  bottom: 22%;
  animation-delay: 1.05s, 2.1s;
}

.reason-section,
.product-section,
.technology-band {
  padding: clamp(48px, 7vw, 92px) clamp(20px, 6vw, 92px);
}

.section-heading {
  display: grid;
  gap: 4px;
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading h2,
.technology-band h2 {
  margin: 0;
  color: var(--brand-black);
  font-size: clamp(34px, 5vw, 68px);
  line-height: 0.98;
  font-weight: 950;
}

.reason-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: #d1d5db;
}

.reason-grid article {
  min-height: 260px;
  padding: 30px;
  background: #ffffff;
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1), background 0.18s ease;
}

.reason-grid article:hover {
  background: #fff9cf;
  transform: translateY(-6px);
}

.reason-grid article.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reason-grid article:nth-child(2) {
  transition-delay: 0.08s;
}

.reason-grid article:nth-child(3) {
  transition-delay: 0.16s;
}

.reason-grid span {
  color: var(--brand-yellow-deep);
  font-size: 44px;
  font-weight: 950;
}

.reason-grid h3 {
  margin: 38px 0 12px;
  font-size: 26px;
}

.reason-grid p {
  color: #4b5563;
  font-weight: 700;
  line-height: 1.8;
}

.product-section {
  background: var(--brand-black);
  color: #ffffff;
}

.product-section .section-heading h2 {
  color: #ffffff;
}

.product-list {
  display: grid;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.product-row {
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr) 110px;
  align-items: center;
  gap: 24px;
  min-height: 168px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  color: #ffffff;
  text-decoration: none;
  opacity: 0;
  transform: translateX(-28px);
  transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1), transform 0.75s cubic-bezier(0.16, 1, 0.3, 1), padding 0.18s ease, background 0.18s ease;
}

.product-row:hover .product-index,
.product-row:hover > strong {
  color: var(--brand-yellow);
}

.product-row:hover {
  padding-left: 22px;
  padding-right: 22px;
  background: rgba(255, 210, 0, 0.08);
}

.product-row.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.product-row:nth-child(2) {
  transition-delay: 0.08s;
}

.product-row:nth-child(3) {
  transition-delay: 0.16s;
}

.product-index {
  color: rgba(255, 255, 255, 0.42);
  font-size: 42px;
  font-weight: 950;
}

.product-row h3 {
  margin: 0 0 8px;
  font-size: clamp(26px, 3vw, 44px);
}

.product-row p {
  max-width: 760px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 700;
  line-height: 1.8;
}

.product-row > strong {
  justify-self: end;
  font-size: 18px;
}

.technology-band {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 1fr);
  gap: 44px;
  align-items: center;
  background: linear-gradient(90deg, #ffffff 0 50%, var(--brand-yellow) 50% 100%);
}

.timeline-list {
  display: grid;
  gap: 1px;
  margin: 0;
  padding: 0;
  background: rgba(0, 0, 0, 0.18);
  list-style: none;
}

.timeline-list li {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  align-items: center;
  min-height: 94px;
  padding: 18px 24px;
  background: #ffffff;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1), transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}

.timeline-list li.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.timeline-list li:nth-child(2) {
  transition-delay: 0.1s;
}

.timeline-list li:nth-child(3) {
  transition-delay: 0.2s;
}

.timeline-list strong {
  color: var(--brand-yellow-deep);
  font-size: 30px;
  font-weight: 950;
}

.timeline-list span {
  color: var(--brand-black);
  font-size: 20px;
  font-weight: 950;
}

.brand-footer {
  background: var(--brand-black);
  color: #ffffff;
}

.reveal-section {
  opacity: 0;
  transform: translateY(44px);
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1), transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-section.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.app-header {
  max-width: none;
  min-height: 260px;
  margin: 0;
  padding: 52px clamp(18px, 6vw, 92px);
  background:
    linear-gradient(105deg, #ffffff 0 57%, var(--brand-black) 57.2% 100%);
}

.app-header h1 {
  color: var(--brand-black);
  font-size: clamp(42px, 6.8vw, 86px);
  font-weight: 950;
}

.app-header .subtitle {
  color: #4b5563;
  font-weight: 700;
}

.header-meter {
  border: 3px solid var(--brand-black);
  border-radius: 0;
  background: var(--brand-yellow);
  box-shadow: 12px 12px 0 var(--brand-black);
}

.header-meter span {
  color: var(--brand-black);
}

.app-shell {
  max-width: none;
  padding: 34px clamp(18px, 6vw, 92px) 72px;
  background: #f4f5f7;
}

.panel,
.instruction-band,
.question-card,
.result-section,
.metric-card,
.admin-table-wrap {
  border-color: #d1d5db;
  border-radius: 0;
}

.identity-panel {
  border-top: 8px solid var(--brand-yellow);
}

.primary-btn {
  border-color: var(--brand-black);
  background: var(--brand-black);
  color: #ffffff;
}

.primary-btn:hover {
  background: #2b2b2b;
}

.ghost-btn {
  border-color: var(--brand-black);
  color: var(--brand-black);
}

.ghost-btn:hover {
  border-color: var(--brand-black);
  background: var(--brand-yellow);
  color: var(--brand-black);
}

.question-total,
.option-letter,
.tag,
.feature-kicker,
.post-category {
  background: var(--brand-yellow);
  color: var(--brand-black);
}

.admin-table .tag {
  min-height: 30px;
  padding: 0 11px;
  border: 1px solid #cbd5e1;
  border-radius: 999px;
  background: #f8fafc;
  color: #1f2937;
  font-size: 13px;
  font-weight: 850;
}

.admin-table .tag:empty {
  display: none;
}

.admin-table td:nth-child(3) .tag {
  border-color: #111827;
  background: #111827;
  color: #ffffff;
}

.admin-table td:nth-child(4) .tag,
.admin-table td:nth-child(5) .tag,
.admin-table td:nth-child(6) .tag {
  border-color: #bfdbfe;
  background: #eff6ff;
  color: #1d4ed8;
}

.admin-table .tag.secondary {
  border-color: #bbf7d0;
  background: #f0fdf4;
  color: #15803d;
}

.admin-table .tag.low {
  border-color: #e5e7eb;
  background: #f9fafb;
  color: #6b7280;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--brand-black);
  box-shadow: 0 0 0 3px rgba(255, 210, 0, 0.45);
}

input[type="range"],
.choice-row input,
.multi-select-menu input {
  accent-color: var(--brand-black);
}

@media (max-width: 980px) {
  .brand-hero,
  .technology-band {
    grid-template-columns: 1fr;
    min-height: auto;
    background: #ffffff;
  }

  .talent-visual {
    min-height: 520px;
    background: var(--brand-black);
  }

  .reason-grid {
    grid-template-columns: 1fr;
  }

  .app-header {
    background: #ffffff;
  }
}

@media (max-width: 720px) {
  .wp-nav {
    gap: 14px;
  }

  .brand-hero .hero-copy {
    padding: 42px 18px;
  }

  .brand-hero h1 {
    font-size: clamp(42px, 14vw, 66px);
  }

  .talent-visual {
    min-height: 430px;
    padding: 36px 18px;
  }

  .talent-panel {
    min-width: 280px;
    width: min(90vw, 360px);
  }

  .assessment-card {
    min-width: 132px;
  }

  .card-a {
    left: -12px;
  }

  .card-b {
    right: -10px;
  }

  .floating-stat {
    min-width: 124px;
  }

  .product-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .product-row > strong {
    justify-self: start;
  }
}

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

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

@keyframes talentEnter {
  from {
    opacity: 0;
    transform: rotate(-12deg) translateY(70px) scale(0.86);
  }
  to {
    opacity: 1;
    transform: rotate(-4deg) translateY(0) scale(1);
  }
}

@keyframes talentFloat {
  0%,
  100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -18px;
  }
}

@keyframes talentShine {
  0%,
  42% {
    transform: translateX(-130%);
  }
  66%,
  100% {
    transform: translateX(130%);
  }
}

@keyframes profilePulse {
  0%,
  100% {
    filter: drop-shadow(0 0 10px rgba(255, 210, 0, 0.15));
    scale: 1;
  }
  50% {
    filter: drop-shadow(0 0 26px rgba(255, 210, 0, 0.55));
    scale: 1.04;
  }
}

@keyframes radarMorph {
  0%,
  100% {
    d: path("M90 46 L126 66 L136 112 L96 132 L56 116 L48 70 Z");
  }
  50% {
    d: path("M90 34 L140 72 L125 126 L82 142 L48 106 L58 62 Z");
  }
}

@keyframes cardFloatA {
  0%,
  100% {
    transform: translateY(0) rotate(-3deg);
  }
  50% {
    transform: translateY(-14px) rotate(2deg);
  }
}

@keyframes cardFloatB {
  0%,
  100% {
    transform: translateY(0) rotate(3deg);
  }
  50% {
    transform: translateY(13px) rotate(-2deg);
  }
}

@keyframes networkSpin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes statPop {
  from {
    opacity: 0;
    transform: translateY(24px) scale(0.88);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes statDrift {
  0%,
  100% {
    margin-top: 0;
  }
  50% {
    margin-top: -12px;
  }
}

@keyframes energySweep {
  from {
    transform: translateX(0) rotate(-16deg);
    opacity: 0;
  }
  12%,
  48% {
    opacity: 0.82;
  }
  to {
    transform: translateX(-380%) rotate(-16deg);
    opacity: 0;
  }
}

@keyframes orbitSpin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes heroRuleIn {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}

/* Apple-inspired glass product page remake */
:root {
  --wp-bg: #f5f7fa;
  --surface: rgba(255, 255, 255, 0.84);
  --surface-soft: rgba(248, 251, 255, 0.78);
  --ink: #08090b;
  --muted: #66717f;
  --line: rgba(130, 150, 172, 0.24);
  --line-dark: rgba(80, 96, 116, 0.28);
  --accent: #168fe3;
  --accent-strong: #0969b8;
  --accent-soft: #eaf6ff;
  --brand-black: #08090b;
  --brand-ink: #111827;
  --brand-yellow: #28a8f2;
  --brand-yellow-deep: #168fe3;
  --brand-gray: #f5f7fa;
  --shadow: 0 24px 70px rgba(45, 63, 84, 0.13);
  --shadow-small: 0 14px 38px rgba(45, 63, 84, 0.09);
}

body {
  background:
    radial-gradient(circle at 72% 9%, rgba(178, 217, 255, 0.42), transparent 30%),
    linear-gradient(180deg, #fbfcff 0%, #eef3f8 100%);
}

.confidential-banner {
  padding: 7px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid rgba(155, 170, 190, 0.18);
  background: rgba(255, 255, 255, 0.82);
  color: #596371;
  font-size: 12px;
  font-weight: 700;
  box-shadow: none;
  backdrop-filter: blur(18px);
}

.wp-site-header {
  border-bottom: 1px solid rgba(130, 150, 172, 0.18);
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(22px) saturate(1.35);
}

.wp-header-inner {
  max-width: 1320px;
  min-height: 72px;
}

.brand-header .wp-header-inner {
  min-height: 72px;
}

.site-brand {
  gap: 14px;
}

.brand-mark {
  grid-template-columns: none;
  width: 46px;
  height: 38px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.brand-mark::before {
  display: none;
}

.brand-mark span {
  position: absolute;
  width: 14px;
  height: 14px !important;
  border-radius: 50%;
  background: #050608;
  box-shadow: 0 8px 18px rgba(30, 48, 72, 0.12);
}

.brand-mark span:nth-child(1) {
  left: 8px;
  top: 4px;
}

.brand-mark span:nth-child(2) {
  left: 22px;
  top: 6px;
  background: #18bfd0;
}

.brand-mark span:nth-child(3) {
  left: 15px;
  top: 20px;
}

.brand-mark::after {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #050608;
}

.site-brand strong {
  font-size: 20px;
  letter-spacing: 0;
}

.site-brand small {
  display: none;
}

.wp-nav {
  gap: clamp(18px, 4vw, 54px);
  color: #4b5563;
  font-size: 15px;
  font-weight: 650;
}

.wp-nav a {
  padding: 13px 0;
  color: #596371;
}

.wp-nav a:first-child,
.wp-nav a:hover {
  color: #050608;
}

.wp-nav a::after {
  bottom: 5px;
  height: 2px;
  background: #050608;
}

.brand-front-page {
  max-width: 1520px;
  margin: 0 auto 14px;
  overflow: hidden;
  border: 1px solid rgba(130, 150, 172, 0.2);
  border-radius: 0 0 14px 14px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 26px 80px rgba(50, 68, 90, 0.12);
}

.brand-hero {
  grid-template-columns: minmax(0, 0.94fr) minmax(480px, 1.06fr);
  min-height: 520px;
  border-bottom: 1px solid rgba(130, 150, 172, 0.18);
  background:
    radial-gradient(circle at 77% 42%, rgba(157, 206, 247, 0.38), transparent 34%),
    radial-gradient(circle at 34% 28%, rgba(255, 255, 255, 0.9), transparent 32%),
    linear-gradient(180deg, #fbfdff 0%, #eef4fa 100%);
}

.brand-hero::before,
.hero-orbit,
.energy-lines {
  display: none;
}

.brand-hero .hero-copy {
  padding: clamp(48px, 7vw, 92px) clamp(32px, 7vw, 116px);
}

.brand-hero .eyebrow,
.reason-section .eyebrow,
.product-section .eyebrow,
.technology-band .eyebrow {
  color: #687586;
  font-size: 12px;
  letter-spacing: 0;
}

.brand-hero h1 {
  max-width: 650px;
  font-size: clamp(48px, 5.6vw, 78px);
  line-height: 1.12;
  font-weight: 950;
  letter-spacing: 0;
}

.brand-hero .subtitle {
  max-width: 620px;
  color: #66717f;
  font-size: 21px;
  font-weight: 520;
  line-height: 1.65;
}

.brand-hero .primary-btn,
.brand-hero .ghost-btn,
.primary-btn,
.ghost-btn {
  min-height: 46px;
  border-radius: 10px;
  font-weight: 760;
}

.brand-hero .primary-btn {
  gap: 14px;
  min-width: 204px;
  border: 0;
  background: #050608;
  box-shadow: 0 18px 34px rgba(8, 9, 11, 0.18);
}

.brand-hero .ghost-btn {
  min-width: 220px;
  border: 1px solid rgba(80, 96, 116, 0.24);
  background: rgba(255, 255, 255, 0.68);
  color: #151a20;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.talent-visual {
  min-height: 520px;
  padding: 24px clamp(26px, 4vw, 72px) 34px 0;
}

.talent-panel {
  width: min(42vw, 590px);
  min-width: 420px;
  aspect-ratio: 1.18;
  border: 0;
  border-radius: 50%;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  transform: rotate(-6deg);
}

.talent-panel::before {
  display: none;
}

.glass-orbit {
  position: absolute;
  inset: 50% auto auto 50%;
  width: min(43vw, 620px);
  aspect-ratio: 3.15 / 1;
  border: 1px solid rgba(70, 112, 150, 0.28);
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.1), rgba(205, 230, 249, 0.42), rgba(255, 255, 255, 0.06));
  box-shadow:
    inset 0 1px 5px rgba(255, 255, 255, 0.72),
    inset 0 -10px 22px rgba(95, 142, 182, 0.11),
    0 22px 45px rgba(79, 112, 143, 0.14);
  transform: translate(-50%, -50%) rotate(-12deg);
}

.orbit-two {
  transform: translate(-50%, -50%) rotate(33deg);
}

.orbit-three {
  width: min(41vw, 590px);
  transform: translate(-50%, -43%) rotate(78deg);
  opacity: 0.82;
}

.talent-network {
  display: none;
}

.profile-ring,
.profile-avatar,
.radar-card {
  display: none;
}

.assessment-card,
.floating-stat {
  min-width: 76px;
  min-height: 76px;
  place-items: center;
  padding: 10px 12px;
  border: 1px solid rgba(116, 149, 178, 0.22);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.68);
  color: #151a20;
  text-align: center;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 18px 38px rgba(53, 80, 110, 0.16);
  backdrop-filter: blur(18px) saturate(1.45);
}

.assessment-card b,
.floating-stat strong {
  font-size: 16px;
  line-height: 1.1;
}

.assessment-card span,
.floating-stat span {
  color: #425065;
  font-size: 12px;
  font-weight: 700;
}

.glass-badge::before,
.floating-stat::before {
  content: "";
  display: block;
  width: 28px;
  height: 28px;
  margin-bottom: 6px;
  border: 2px solid currentColor;
  border-radius: 50%;
  opacity: 0.72;
}

.glass-badge.dark {
  background: rgba(12, 18, 27, 0.84);
  color: #ffffff;
}

.glass-badge.dark span {
  color: rgba(255, 255, 255, 0.82);
}

.glass-badge.cyan {
  background: rgba(211, 245, 249, 0.78);
  color: #047481;
}

.card-a {
  left: 30%;
  top: 33%;
  background: linear-gradient(180deg, #53b7ff, #168fe3);
  color: #ffffff;
}

.card-a span {
  color: rgba(255, 255, 255, 0.86);
}

.card-b {
  right: 26%;
  top: 14%;
}

.stat-one {
  top: 34%;
  right: 4%;
}

.stat-two {
  left: 12%;
  bottom: 16%;
}

.reason-section,
.product-section,
.technology-band {
  padding: 28px clamp(20px, 4vw, 64px);
}

.section-heading {
  margin: 0 auto 22px;
  text-align: center;
}

.section-heading h2,
.technology-band h2 {
  font-size: clamp(28px, 3.7vw, 48px);
  line-height: 1.12;
}

.reason-grid {
  max-width: 1388px;
  margin: 0 auto;
  gap: 28px;
  background: transparent;
}

.reason-grid article {
  min-height: 214px;
  border: 1px solid rgba(130, 150, 172, 0.2);
  border-radius: 10px;
  background:
    radial-gradient(circle at 82% 28%, rgba(203, 230, 248, 0.44), transparent 30%),
    rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-small);
  backdrop-filter: blur(18px);
}

.reason-grid article:hover {
  background: rgba(255, 255, 255, 0.86);
}

.reason-grid span {
  color: #168fe3;
  font-size: 34px;
}

.reason-grid h3 {
  margin-top: 24px;
}

.product-section {
  background: #f6f9fc;
  color: #0b0f14;
}

.product-section .section-heading h2 {
  color: #0b0f14;
}

.product-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  max-width: 1388px;
  margin: 0 auto;
  border: 0;
}

.product-row {
  grid-template-columns: 64px minmax(0, 1fr);
  min-height: 190px;
  padding: 28px;
  border: 1px solid rgba(130, 150, 172, 0.2);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.72);
  color: #0b0f14;
  box-shadow: var(--shadow-small);
}

.product-row p {
  color: #66717f;
}

.product-row > strong {
  grid-column: 2;
  justify-self: start;
  color: #4b5563;
}

.product-row:hover {
  padding: 28px;
  background: #ffffff;
}

.product-row:hover .product-index,
.product-row:hover > strong {
  color: #168fe3;
}

.product-index {
  color: #168fe3;
  font-size: 34px;
}

.technology-band {
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  margin: 0;
  background: linear-gradient(180deg, #f6f9fc, #eef4fa);
}

.timeline-list {
  gap: 14px;
  background: transparent;
}

.timeline-list li {
  min-height: 78px;
  border: 1px solid rgba(130, 150, 172, 0.18);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: var(--shadow-small);
}

.timeline-list strong {
  color: #168fe3;
}

.brand-footer,
.wp-footer {
  border-top: 1px solid rgba(130, 150, 172, 0.16);
  background: rgba(255, 255, 255, 0.72);
  color: #66717f;
}

.app-header {
  min-height: 250px;
  background:
    radial-gradient(circle at 82% 42%, rgba(157, 206, 247, 0.32), transparent 26%),
    linear-gradient(180deg, #fbfdff 0%, #eef4fa 100%);
}

.app-header h1 {
  font-size: clamp(42px, 5.8vw, 72px);
  line-height: 1.08;
}

.header-meter {
  border: 1px solid rgba(130, 150, 172, 0.22);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-small);
  backdrop-filter: blur(18px);
}

.header-meter span {
  color: #168fe3;
}

.app-shell {
  background: linear-gradient(180deg, #eef4fa, #f6f9fc);
}

.panel,
.instruction-band,
.question-card,
.result-section,
.metric-card,
.admin-table-wrap {
  border-color: rgba(130, 150, 172, 0.22);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-small);
  backdrop-filter: blur(18px);
}

.identity-panel {
  border-top: 1px solid rgba(130, 150, 172, 0.22);
}

input[type="text"],
input[type="password"],
input[type="number"],
select,
textarea,
.multi-select-button {
  border-color: rgba(130, 150, 172, 0.26);
  border-radius: 9px;
  background-color: rgba(255, 255, 255, 0.82);
}

.primary-btn {
  border: 0;
  background: #050608;
  color: #ffffff;
}

.primary-btn:hover {
  background: #222832;
}

.ghost-btn {
  border-color: rgba(80, 96, 116, 0.28);
  background: rgba(255, 255, 255, 0.76);
  color: #151a20;
}

.ghost-btn:hover {
  border-color: rgba(22, 143, 227, 0.35);
  background: #eaf6ff;
}

.question-total,
.option-letter,
.tag,
.feature-kicker,
.post-category {
  background: #eaf6ff;
  color: #0969b8;
}

.option-row,
.choice-row {
  border-color: rgba(130, 150, 172, 0.2);
  border-radius: 10px;
  background: rgba(248, 251, 255, 0.78);
}

.admin-table th {
  background: #f3f7fb;
}

input:focus,
select:focus,
textarea:focus {
  border-color: #168fe3;
  box-shadow: 0 0 0 4px rgba(22, 143, 227, 0.12);
}

input[type="range"],
.choice-row input,
.multi-select-menu input {
  accent-color: #168fe3;
}

@media (max-width: 980px) {
  .brand-front-page {
    border-radius: 0;
  }

  .brand-hero,
  .technology-band {
    grid-template-columns: 1fr;
    background: linear-gradient(180deg, #fbfdff 0%, #eef4fa 100%);
  }

  .talent-visual {
    min-height: 420px;
    padding: 20px;
    background: transparent;
  }

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

  .app-header {
    background: linear-gradient(180deg, #fbfdff 0%, #eef4fa 100%);
  }
}

@media (max-width: 720px) {
  .wp-header-inner {
    min-height: auto;
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .wp-nav {
    gap: 16px;
    font-size: 14px;
  }

  .brand-hero h1 span {
    display: inline;
    white-space: normal;
  }

  .brand-hero h1 .title-desktop {
    display: none !important;
  }

  .brand-hero h1 .title-mobile {
    display: block !important;
  }

  .brand-hero h1 {
    width: calc(100vw - 72px);
    max-width: calc(100vw - 72px);
    font-size: 36px !important;
    line-height: 1.12;
    overflow-wrap: anywhere;
    word-break: break-all;
  }

  .brand-hero .subtitle,
  .brand-hero .hero-actions {
    width: calc(100vw - 72px);
    max-width: calc(100vw - 72px);
  }

  .brand-hero .subtitle {
    font-size: 18px;
    overflow-wrap: anywhere;
    word-break: break-all;
  }

  .talent-panel {
    min-width: 290px;
    width: min(88vw, 360px);
  }

  .glass-orbit {
    width: min(92vw, 420px);
  }

  .stat-one {
    right: 0;
  }

  .stat-two {
    left: 0;
  }
}

/* Reference A landing page recreation */
.visual-a-home {
  min-height: 100vh;
  padding: 14px;
  background:
    radial-gradient(circle at 50% -10%, rgba(199, 221, 244, 0.55), transparent 34%),
    linear-gradient(180deg, #f7f9fc 0%, #eef3f8 100%);
}

.visual-a-home .confidential-banner,
.visual-a-home .confidential-watermark {
  display: none;
}

.browser-stage {
  max-width: 1560px;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(143, 158, 178, 0.32);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow:
    0 36px 90px rgba(42, 62, 88, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.94);
}

.browser-chrome {
  display: grid;
  grid-template-columns: 120px 86px minmax(280px, 1fr) 104px;
  align-items: center;
  gap: 14px;
  height: 38px;
  padding: 0 18px;
  border-bottom: 1px solid rgba(139, 153, 172, 0.18);
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(20px);
}

.browser-lights,
.browser-nav-icons,
.browser-tools {
  display: flex;
  align-items: center;
  gap: 9px;
}

.browser-lights span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.browser-lights span:nth-child(1) {
  background: #ff5f57;
}

.browser-lights span:nth-child(2) {
  background: #ffbd2e;
}

.browser-lights span:nth-child(3) {
  background: #28c840;
}

.browser-nav-icons span,
.browser-tools span {
  width: 12px;
  height: 12px;
  border: solid #a7b0bd;
  border-width: 1.5px 1.5px 0 0;
  transform: rotate(-135deg);
}

.browser-nav-icons span:nth-child(2) {
  transform: rotate(45deg);
}

.browser-tools span {
  border-width: 1.5px;
  border-radius: 3px;
  transform: none;
}

.browser-address {
  justify-self: center;
  width: min(100%, 560px);
  height: 22px;
  border: 1px solid rgba(142, 156, 176, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.76);
  color: #6f7886;
  font-size: 11px;
  font-weight: 700;
  line-height: 21px;
  text-align: center;
}

.visual-a-home .brand-header {
  border-bottom: 1px solid rgba(139, 153, 172, 0.16);
  background: rgba(255, 255, 255, 0.74);
  backdrop-filter: blur(22px) saturate(1.35);
}

.visual-a-home .brand-header .wp-header-inner {
  max-width: 1390px;
  min-height: 56px;
}

.visual-a-home .site-brand strong {
  font-size: 18px;
}

.visual-a-home .brand-mark {
  width: 36px;
  height: 30px;
}

.visual-a-home .brand-mark span {
  width: 11px;
  height: 11px !important;
}

.visual-a-home .brand-mark span:nth-child(1) {
  left: 7px;
  top: 3px;
}

.visual-a-home .brand-mark span:nth-child(2) {
  left: 18px;
  top: 5px;
  background: #168fe3;
}

.visual-a-home .brand-mark span:nth-child(3) {
  left: 13px;
  top: 17px;
}

.visual-a-home .brand-mark::after {
  left: 0;
  top: 15px;
  width: 11px;
  height: 11px;
}

.visual-a-home .wp-nav {
  gap: clamp(22px, 4vw, 54px);
  font-size: 13px;
}

.visual-a-home .wp-nav a {
  position: relative;
  min-height: 36px;
}

.visual-a-home .wp-nav a:first-child::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 24px;
  height: 2px;
  border-radius: 99px;
  background: #1a73e8;
  transform: translateX(-50%);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 13px;
  font-weight: 800;
}

.nav-actions a {
  color: #2f3947;
  text-decoration: none;
}

.nav-actions .start-chip {
  min-height: 30px;
  padding: 7px 17px;
  border-radius: 8px;
  background: linear-gradient(180deg, #2b7cf6, #0f62d7);
  color: #ffffff;
  box-shadow: 0 9px 20px rgba(26, 115, 232, 0.25);
}

.visual-a-home .brand-front-page {
  max-width: none;
  margin: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.visual-a-home .brand-hero {
  grid-template-columns: minmax(420px, 0.82fr) minmax(560px, 1.18fr);
  min-height: 430px;
  border-bottom: 0;
  background:
    radial-gradient(circle at 72% 40%, rgba(90, 164, 244, 0.22), transparent 28%),
    radial-gradient(circle at 47% 78%, rgba(122, 185, 255, 0.16), transparent 27%),
    linear-gradient(180deg, #fbfdff 0%, #eff5fb 100%);
}

.visual-a-home .brand-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(rgba(134, 155, 180, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(134, 155, 180, 0.07) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at 69% 45%, #000 0 38%, transparent 66%);
}

.visual-a-home .hero-orbit,
.visual-a-home .energy-lines {
  display: block;
}

.visual-a-home .hero-orbit {
  right: 115px;
  top: 56px;
  z-index: 1;
  width: 540px;
  border-color: rgba(97, 153, 211, 0.23);
  animation: orbitSpin 26s linear infinite;
}

.visual-a-home .hero-orbit::before {
  border-color: rgba(74, 146, 225, 0.18);
}

.visual-a-home .hero-orbit::after {
  background: #86c7ff;
  box-shadow: 0 0 24px #86c7ff;
}

.visual-a-home .energy-lines span {
  right: 3%;
  width: 46%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(74, 156, 245, 0.62), rgba(255, 255, 255, 0.92), transparent);
  transform: rotate(-13deg);
  animation: blueSweep 5.6s linear infinite;
}

.visual-a-home .brand-hero .hero-copy {
  z-index: 3;
  padding: 72px 40px 46px 76px;
}

.visual-a-home .brand-hero h1 {
  max-width: 540px;
  margin-bottom: 18px;
  color: #06080c;
  font-size: clamp(42px, 4vw, 58px);
  line-height: 1.16;
  font-weight: 950;
}

.visual-a-home .brand-hero .subtitle {
  max-width: 470px;
  color: #5f6b7a;
  font-size: 17px;
  font-weight: 520;
  line-height: 1.8;
}

.visual-a-home .brand-hero .hero-actions {
  margin-top: 28px;
}

.visual-a-home .brand-hero .primary-btn,
.visual-a-home .brand-hero .ghost-btn {
  min-width: 144px;
  min-height: 46px;
  border-radius: 8px;
  font-size: 14px;
}

.visual-a-home .brand-hero .primary-btn {
  background: #050608;
  box-shadow: 0 18px 32px rgba(5, 6, 8, 0.2);
}

.visual-a-home .brand-hero .ghost-btn {
  min-width: 166px;
  color: #3d4756;
}

.btn-icon.grid-icon,
.hero-pills i {
  position: relative;
  display: inline-block;
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
}

.btn-icon.grid-icon {
  background:
    radial-gradient(circle, #3d4756 2px, transparent 2.5px) 0 0 / 8px 8px;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 34px;
}

.hero-pills span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(135, 153, 178, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  color: #687586;
  font-size: 13px;
  font-weight: 760;
  box-shadow: 0 10px 28px rgba(55, 76, 102, 0.07);
  animation: copyRise 0.9s 0.36s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.pill-person::before,
.pill-shield::before,
.pill-report::before {
  content: "";
  position: absolute;
  inset: 2px;
  border: 1.8px solid #86a4ce;
  border-radius: 50%;
}

.pill-person::after {
  content: "";
  position: absolute;
  left: 3px;
  right: 3px;
  bottom: 1px;
  height: 6px;
  border-radius: 8px 8px 3px 3px;
  background: #86a4ce;
}

.pill-shield::before {
  border-radius: 6px 6px 9px 9px;
}

.pill-report::before {
  border-radius: 3px;
}

.visual-a-home .talent-visual {
  min-height: 430px;
  padding: 24px 54px 30px 0;
}

.visual-a-home .talent-panel {
  width: min(58vw, 760px);
  min-width: 560px;
  aspect-ratio: 1.62;
  transform: rotateX(58deg) rotateZ(-7deg);
  transform-origin: center 62%;
  animation: stageEnter 1.05s 0.12s cubic-bezier(0.16, 1, 0.3, 1) both, stageFloat 5.8s 1.2s ease-in-out infinite;
}

.platform-base {
  position: absolute;
  left: 52%;
  top: 56%;
  width: 560px;
  height: 260px;
  transform: translate(-50%, -50%);
  transform-style: preserve-3d;
}

.base-ring {
  position: absolute;
  inset: 50% auto auto 50%;
  display: block;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.ring-a {
  width: 520px;
  height: 208px;
  border: 1px solid rgba(75, 138, 205, 0.28);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.5), rgba(156, 204, 250, 0.1));
  box-shadow:
    inset 0 10px 22px rgba(255, 255, 255, 0.86),
    inset 0 -22px 28px rgba(55, 139, 239, 0.13),
    0 30px 52px rgba(67, 110, 157, 0.18);
}

.ring-b {
  width: 390px;
  height: 150px;
  border: 1px solid rgba(71, 142, 224, 0.32);
  animation: ringPulse 3.8s ease-in-out infinite;
}

.ring-c {
  width: 230px;
  height: 92px;
  border: 2px solid rgba(40, 139, 249, 0.55);
  box-shadow: 0 0 28px rgba(40, 139, 249, 0.35);
  animation: ringSpinFlat 8s linear infinite;
}

.light-core {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: radial-gradient(circle, #ffffff 0 18%, #5eb7ff 38%, rgba(18, 110, 246, 0.18) 68%, transparent 70%);
  box-shadow:
    0 0 20px #ffffff,
    0 0 48px rgba(66, 159, 255, 0.92),
    0 0 96px rgba(46, 127, 244, 0.46);
  transform: translate(-50%, -50%) rotateX(-58deg);
  animation: coreGlow 2.4s ease-in-out infinite;
}

.glass-data-card {
  position: absolute;
  z-index: 4;
  border: 1px solid rgba(141, 166, 197, 0.25);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.62);
  color: #1c2635;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.86),
    0 20px 48px rgba(57, 90, 132, 0.16);
  backdrop-filter: blur(20px) saturate(1.45);
  transform-style: preserve-3d;
}

.profile-card {
  display: grid;
  grid-template-columns: 42px 1fr;
  grid-template-rows: auto auto 6px;
  column-gap: 10px;
  width: 150px;
  padding: 12px;
  animation: cardFloatA 4.6s ease-in-out infinite;
}

.profile-card b,
.profile-card small {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.profile-card b {
  align-self: end;
  font-size: 13px;
}

.profile-card small {
  color: #687586;
  font-size: 10px;
  font-weight: 800;
}

.profile-card i {
  grid-column: 1 / -1;
  width: 70%;
  height: 5px;
  margin-top: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, #5caefa, rgba(92, 174, 250, 0.1));
}

.avatar-mini {
  grid-row: 1 / 3;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 35%, #20314a 0 16%, transparent 17%),
    radial-gradient(circle at 50% 88%, #20314a 0 31%, transparent 32%),
    linear-gradient(135deg, #e9f3ff, #ffffff);
  box-shadow: inset 0 0 0 3px #ffffff, 0 7px 14px rgba(32, 49, 74, 0.14);
}

.avatar-warm {
  background:
    radial-gradient(circle at 50% 35%, #936a4b 0 16%, transparent 17%),
    radial-gradient(circle at 50% 88%, #2d68b5 0 31%, transparent 32%),
    linear-gradient(135deg, #fff2e7, #ffffff);
}

.card-left {
  left: 108px;
  top: 70px;
  transform: rotateX(-58deg) rotateZ(4deg);
}

.card-bottom {
  left: 310px;
  bottom: 36px;
  transform: rotateX(-58deg) rotateZ(2deg);
  animation-name: cardFloatB;
}

.radar-float-card {
  left: 275px;
  top: 16px;
  width: 180px;
  padding: 12px;
  transform: rotateX(-58deg) rotateZ(5deg);
  animation: radarHover 5.2s ease-in-out infinite;
}

.radar-float-card strong {
  display: block;
  color: #445061;
  font-size: 11px;
  text-align: center;
}

.radar-float-card svg {
  display: block;
  width: 136px;
  height: 118px;
  margin: 0 auto;
}

.radar-float-card polygon,
.radar-float-card polyline {
  fill: none;
  stroke: rgba(63, 119, 194, 0.22);
  stroke-width: 2;
}

.radar-float-card path {
  fill: rgba(36, 129, 236, 0.24);
  stroke: #357ee8;
  stroke-width: 3;
  animation: radarMorph 3.9s ease-in-out infinite;
}

.donut-card {
  right: 88px;
  top: 118px;
  display: grid;
  place-items: center;
  gap: 5px;
  width: 118px;
  padding: 14px 10px;
  transform: rotateX(-58deg) rotateZ(-4deg);
  animation: cardFloatB 4.9s ease-in-out infinite;
}

.donut-card b {
  color: #596371;
  font-size: 10px;
}

.donut-chart {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background:
    radial-gradient(circle, #ffffff 0 46%, transparent 47%),
    conic-gradient(#2e83ee 0 42%, #84c8ff 42% 68%, #d8ebff 68% 100%);
  box-shadow: inset 0 0 0 1px rgba(54, 127, 227, 0.18);
  animation: donutSpin 7.8s linear infinite;
}

.glass-orbit {
  opacity: 0.86;
  animation: orbitDrift 8.6s ease-in-out infinite;
}

.orbit-two {
  animation-delay: -2.4s;
}

.orbit-three {
  animation-delay: -4.7s;
}

.particle-field {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.particle-field span {
  position: absolute;
  width: 12px;
  height: 12px;
  border: 1px solid rgba(74, 135, 209, 0.45);
  border-radius: 50%;
  background: radial-gradient(circle, #ffffff 0 35%, #92caff 36% 100%);
  box-shadow: 0 0 18px rgba(72, 157, 255, 0.5);
  animation: particleFloat 4.8s ease-in-out infinite;
}

.particle-field span:nth-child(1) {
  left: 13%;
  top: 33%;
}

.particle-field span:nth-child(2) {
  left: 42%;
  top: 10%;
  animation-delay: -1s;
}

.particle-field span:nth-child(3) {
  right: 19%;
  top: 23%;
  animation-delay: -2s;
}

.particle-field span:nth-child(4) {
  right: 13%;
  bottom: 25%;
  animation-delay: -3s;
}

.particle-field span:nth-child(5) {
  left: 26%;
  bottom: 19%;
  animation-delay: -1.7s;
}

.hero-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  padding: 0 38px 12px;
  background: linear-gradient(180deg, #eff5fb, #f6f9fc);
}

.visual-feature-card {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr);
  gap: 18px;
  min-height: 108px;
  padding: 18px 20px;
  border: 1px solid rgba(137, 154, 177, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.74);
  color: #151a20;
  text-decoration: none;
  box-shadow: 0 15px 36px rgba(49, 75, 108, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.visual-feature-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 44px rgba(49, 75, 108, 0.12);
}

.visual-feature-card h2 {
  margin: 0 0 7px;
  font-size: 16px;
}

.visual-feature-card p {
  margin: 0;
  color: #687586;
  font-size: 12px;
  line-height: 1.65;
}

.visual-feature-card strong {
  display: inline-block;
  margin-top: 10px;
  color: #516174;
  font-size: 12px;
}

.feature-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border: 1px solid rgba(127, 153, 188, 0.18);
  border-radius: 16px;
  background: linear-gradient(145deg, #ffffff, #eaf4ff);
  box-shadow: inset 0 1px 0 #ffffff, 0 10px 24px rgba(61, 99, 149, 0.1);
}

.feature-icon::before {
  content: "";
  width: 32px;
  height: 32px;
}

.icon-person::before {
  border-radius: 50% 50% 42% 42%;
  background:
    radial-gradient(circle at 50% 28%, #9bb9df 0 22%, transparent 23%),
    radial-gradient(ellipse at 50% 90%, #9bb9df 0 48%, transparent 49%);
}

.icon-network::before {
  background:
    radial-gradient(circle at 50% 12%, #2d70dc 0 11%, transparent 12%),
    radial-gradient(circle at 16% 80%, #2d70dc 0 11%, transparent 12%),
    radial-gradient(circle at 84% 80%, #2d70dc 0 11%, transparent 12%),
    linear-gradient(60deg, transparent 44%, #2d70dc 45% 51%, transparent 52%),
    linear-gradient(-60deg, transparent 44%, #2d70dc 45% 51%, transparent 52%),
    linear-gradient(90deg, transparent 44%, #2d70dc 45% 51%, transparent 52%);
}

.icon-bars::before {
  border-radius: 6px;
  background:
    linear-gradient(90deg, transparent 0 8%, #82b9f7 8% 25%, transparent 25% 37%, #4f91ed 37% 56%, transparent 56% 68%, #1f6fe5 68% 88%, transparent 88%),
    linear-gradient(180deg, transparent 0 54%, #ffffff 54%);
}

@keyframes blueSweep {
  from {
    transform: translateX(30%) rotate(-13deg);
    opacity: 0;
  }
  16%,
  54% {
    opacity: 0.82;
  }
  to {
    transform: translateX(-170%) rotate(-13deg);
    opacity: 0;
  }
}

@keyframes stageEnter {
  from {
    opacity: 0;
    transform: rotateX(58deg) rotateZ(-11deg) translateY(56px) scale(0.92);
  }
  to {
    opacity: 1;
    transform: rotateX(58deg) rotateZ(-7deg) translateY(0) scale(1);
  }
}

@keyframes stageFloat {
  0%,
  100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -14px;
  }
}

@keyframes ringPulse {
  0%,
  100% {
    opacity: 0.5;
    scale: 0.96;
  }
  50% {
    opacity: 1;
    scale: 1.04;
  }
}

@keyframes ringSpinFlat {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes coreGlow {
  0%,
  100% {
    opacity: 0.86;
    scale: 0.95;
  }
  50% {
    opacity: 1;
    scale: 1.08;
  }
}

@keyframes radarHover {
  0%,
  100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -12px;
  }
}

@keyframes donutSpin {
  to {
    rotate: 360deg;
  }
}

@keyframes orbitDrift {
  0%,
  100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -12px;
  }
}

@keyframes particleFloat {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(12px, -16px);
  }
}

@media (max-width: 1080px) {
  .browser-chrome {
    grid-template-columns: 74px minmax(180px, 1fr) 70px;
  }

  .browser-nav-icons {
    display: none;
  }

  .visual-a-home .brand-hero {
    grid-template-columns: 1fr;
  }

  .visual-a-home .brand-hero .hero-copy {
    padding: 58px 38px 12px;
  }

  .visual-a-home .talent-visual {
    padding: 0 20px 30px;
  }

  .hero-feature-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .visual-a-home {
    padding: 0;
  }

  .browser-stage {
    border-radius: 0;
  }

  .browser-chrome,
  .nav-actions {
    display: none;
  }

  .visual-a-home .brand-header .wp-header-inner {
    align-items: flex-start;
  }

  .visual-a-home .wp-nav {
    width: 100%;
    overflow-x: auto;
    gap: 18px;
    padding-bottom: 4px;
  }

  .visual-a-home .brand-hero h1 {
    width: auto;
    max-width: none;
    font-size: 36px !important;
    word-break: normal;
  }

  .hero-pills {
    gap: 10px;
  }

  .visual-a-home .talent-panel {
    min-width: 390px;
    width: 390px;
    margin-left: -8px;
  }

  .platform-base {
    width: 380px;
  }

  .ring-a {
    width: 360px;
    height: 144px;
  }

  .ring-b {
    width: 270px;
    height: 104px;
  }

  .ring-c {
    width: 160px;
    height: 66px;
  }

  .card-left {
    left: 10px;
  }

  .radar-float-card {
    left: 132px;
  }

  .donut-card {
    right: 6px;
  }

  .card-bottom {
    left: 140px;
  }

  .hero-feature-grid {
    padding: 0 16px 18px;
  }

  .visual-feature-card {
    grid-template-columns: 56px minmax(0, 1fr);
    padding: 16px;
  }
}

/* Closer match to the requested crystal talent-platform visual */
.visual-a-home .brand-hero {
  grid-template-columns: minmax(390px, 0.72fr) minmax(660px, 1.28fr);
  min-height: 560px;
  background:
    radial-gradient(circle at 68% 58%, rgba(73, 151, 255, 0.18), transparent 28%),
    radial-gradient(circle at 77% 28%, rgba(255, 255, 255, 0.96), transparent 34%),
    linear-gradient(180deg, #fbfdff 0%, #edf4fb 100%);
}

.visual-a-home .brand-hero::after {
  background-image: none;
  background:
    radial-gradient(ellipse at 72% 74%, rgba(48, 122, 218, 0.13), transparent 42%),
    linear-gradient(90deg, transparent 0 56%, rgba(255, 255, 255, 0.42) 56% 100%);
  mask-image: none;
}

.visual-a-home .brand-hero .hero-copy {
  padding: 72px 40px 46px 76px;
}

.visual-a-home .brand-hero .eyebrow {
  margin-bottom: 16px;
  color: #f3b300;
  font-size: 13px;
  font-weight: 950;
}

.visual-a-home .brand-hero .hero-copy h1:first-child {
  margin-top: 0;
}

.visual-a-home .brand-hero h1 {
  max-width: 540px;
  margin-bottom: 18px;
  font-size: clamp(42px, 4vw, 58px);
  line-height: 1.16;
  letter-spacing: 0;
}

.visual-a-home .brand-hero .subtitle {
  max-width: 510px;
  color: #5f6b7a;
  font-size: 17px;
  font-weight: 620;
  line-height: 1.82;
}

.visual-a-home .brand-hero .hero-actions {
  gap: 14px;
  margin-top: 28px;
}

.visual-a-home .brand-hero .primary-btn,
.visual-a-home .brand-hero .ghost-btn {
  min-width: 172px;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 850;
}

.visual-a-home .brand-hero .ghost-btn {
  min-width: 182px;
  border: 1px solid rgba(181, 193, 210, 0.78);
  background: rgba(255, 255, 255, 0.78);
  color: #3d4756;
}

.visual-a-home .talent-visual {
  min-height: 560px;
  padding: 24px 20px 18px 0;
  overflow: visible;
  perspective: 1400px;
}

.visual-a-home .hero-orbit {
  right: 32px;
  top: 62px;
  width: 760px;
  height: 330px;
  border: 0;
  border-top: 3px solid rgba(122, 190, 255, 0.42);
  border-bottom: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  filter: drop-shadow(0 0 8px rgba(88, 164, 255, 0.32));
  transform: rotate(-8deg);
  animation: bigOrbitDrift 8s ease-in-out infinite;
}

.visual-a-home .hero-orbit::before {
  inset: 94px -26px auto 28px;
  height: 218px;
  border: 0;
  border-top: 3px solid rgba(255, 255, 255, 0.9);
  border-bottom: 2px solid rgba(89, 161, 247, 0.34);
  border-radius: 50%;
  filter: blur(0.2px);
}

.visual-a-home .hero-orbit::after {
  top: 4px;
  left: auto;
  right: 120px;
  width: 24px;
  height: 24px;
  background:
    radial-gradient(circle at 35% 28%, #ffffff 0 16%, transparent 17%),
    radial-gradient(circle, #eff8ff 0 34%, #75bcff 35% 62%, rgba(24, 104, 200, 0.48) 63% 100%);
  box-shadow: 0 0 26px rgba(90, 172, 255, 0.75);
}

.visual-a-home .energy-lines span {
  right: -5%;
  width: 74%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.94), rgba(71, 158, 255, 0.7), transparent);
  transform: rotate(-7deg);
  filter: blur(0.2px);
}

.visual-a-home .energy-lines span:nth-child(1) {
  top: 46%;
}

.visual-a-home .energy-lines span:nth-child(2) {
  top: 58%;
}

.visual-a-home .energy-lines span:nth-child(3) {
  top: 70%;
}

.visual-a-home .talent-panel {
  width: 790px;
  min-width: 790px;
  aspect-ratio: 1.42;
  transform: translateX(-6px);
  transform-origin: center;
  animation: visualPlatformEnter 1s 0.1s cubic-bezier(0.16, 1, 0.3, 1) both, visualPlatformFloat 5.8s 1.2s ease-in-out infinite;
}

.platform-base {
  left: 51%;
  top: 73%;
  width: 740px;
  height: 270px;
  transform: translate(-50%, -50%);
}

.platform-base::before,
.platform-base::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.platform-base::before {
  width: 710px;
  height: 210px;
  background:
    radial-gradient(ellipse at 50% 42%, rgba(255, 255, 255, 0.85) 0 16%, rgba(90, 166, 255, 0.13) 24%, transparent 58%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.48), rgba(128, 186, 244, 0.1));
  border: 1px solid rgba(121, 167, 213, 0.26);
  box-shadow:
    inset 0 18px 30px rgba(255, 255, 255, 0.95),
    inset 0 -28px 42px rgba(40, 126, 232, 0.16),
    0 22px 36px rgba(42, 95, 155, 0.16);
}

.platform-base::after {
  top: 62%;
  width: 710px;
  height: 104px;
  border-bottom: 9px solid rgba(30, 95, 170, 0.48);
  box-shadow:
    0 18px 34px rgba(32, 82, 142, 0.18),
    inset 0 -20px 30px rgba(30, 95, 170, 0.2);
  opacity: 0.62;
}

.ring-a {
  width: 660px;
  height: 190px;
  border: 2px solid rgba(114, 177, 245, 0.38);
  background:
    repeating-radial-gradient(ellipse at center, rgba(58, 142, 245, 0.24) 0 2px, transparent 3px 24px),
    radial-gradient(ellipse at center, rgba(255, 255, 255, 0.72) 0 22%, rgba(72, 149, 244, 0.13) 38%, transparent 64%);
  box-shadow:
    inset 0 8px 20px rgba(255, 255, 255, 0.96),
    inset 0 -18px 24px rgba(25, 111, 226, 0.16),
    0 18px 34px rgba(61, 118, 184, 0.14);
}

.ring-b {
  width: 354px;
  height: 116px;
  border: 3px solid rgba(37, 129, 244, 0.54);
  background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.74), rgba(72, 156, 255, 0.16) 58%, transparent 60%);
  box-shadow: 0 0 38px rgba(47, 139, 244, 0.32);
}

.ring-c {
  width: 222px;
  height: 72px;
  border: 5px solid rgba(39, 129, 244, 0.72);
  background: radial-gradient(ellipse at center, #ffffff 0 22%, rgba(88, 177, 255, 0.22) 38%, transparent 62%);
  box-shadow: 0 0 30px rgba(34, 127, 246, 0.55), inset 0 0 14px rgba(255, 255, 255, 0.9);
}

.light-core {
  top: 43%;
  width: 86px;
  height: 86px;
}

.light-core::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 36px;
  width: 12px;
  height: 250px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(163, 220, 255, 0.82) 18%, #ffffff 62%, rgba(54, 157, 255, 0.85));
  box-shadow: 0 0 22px rgba(83, 175, 255, 0.85);
  transform: translateX(-50%);
  animation: beamPulse 2.8s ease-in-out infinite;
}

.glass-data-card {
  border: 1px solid rgba(126, 167, 214, 0.34);
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(239, 248, 255, 0.5)),
    radial-gradient(circle at 10% 0%, rgba(255, 255, 255, 0.95), transparent 36%);
  box-shadow:
    inset 1px 1px 0 rgba(255, 255, 255, 0.96),
    inset -3px -4px 10px rgba(67, 139, 222, 0.12),
    0 20px 42px rgba(57, 101, 158, 0.17);
  backdrop-filter: blur(18px) saturate(1.55);
}

.glass-data-card::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  border: 2px solid rgba(109, 174, 255, 0.18);
  pointer-events: none;
}

.profile-card {
  grid-template-columns: 58px minmax(0, 1fr);
  grid-template-rows: auto auto auto auto auto;
  width: 190px;
  min-height: 116px;
  padding: 16px 18px;
}

.profile-card b {
  font-size: 16px;
  color: #5a6678;
}

.profile-card small,
.profile-card em {
  color: #8a96a8;
  font-size: 12px;
  font-style: normal;
  font-weight: 760;
  line-height: 1.42;
}

.profile-card em {
  grid-column: 2;
}

.profile-card i {
  display: none;
}

.avatar-mini {
  width: 56px;
  height: 56px;
  background:
    radial-gradient(circle at 50% 30%, #f1c29a 0 16%, transparent 17%),
    radial-gradient(circle at 50% 29%, #111827 0 25%, transparent 26%),
    radial-gradient(ellipse at 50% 96%, #1f4e87 0 42%, transparent 43%),
    linear-gradient(135deg, #f8fbff, #ffffff);
}

.avatar-female {
  background:
    radial-gradient(circle at 50% 31%, #f2c49e 0 16%, transparent 17%),
    radial-gradient(circle at 50% 34%, #2b1d19 0 27%, transparent 28%),
    radial-gradient(ellipse at 50% 96%, #263c5c 0 42%, transparent 43%),
    linear-gradient(135deg, #fff5ef, #ffffff);
}

.card-left {
  left: 82px;
  top: 86px;
  transform: rotate(-1.5deg);
  animation: glassCardDrift 5.2s ease-in-out infinite;
}

.card-low-left {
  left: 24px;
  top: 296px;
  transform: rotate(4deg);
  animation: glassCardDrift 5.6s -1.1s ease-in-out infinite;
}

.card-bottom {
  left: 332px;
  top: 292px;
  transform: rotate(2deg);
  animation: glassCardDrift 5.4s -2s ease-in-out infinite;
}

.radar-float-card {
  left: 312px;
  top: 18px;
  width: 210px;
  min-height: 216px;
  padding: 18px 16px 16px;
  transform: rotate(1.5deg);
  animation: glassCardDrift 5.8s -0.4s ease-in-out infinite;
}

.radar-float-card strong {
  margin-bottom: 4px;
  color: #7b8798;
  font-size: 15px;
  font-weight: 900;
}

.radar-float-card svg {
  width: 178px;
  height: 156px;
}

.radar-float-card polygon,
.radar-float-card polyline {
  stroke: rgba(70, 127, 205, 0.24);
}

.radar-float-card path {
  fill: rgba(34, 120, 222, 0.32);
  stroke: #2d7ce7;
}

.donut-card {
  right: 96px;
  top: 166px;
  width: 156px;
  min-height: 154px;
  transform: rotate(4deg);
  animation: glassCardDrift 5.4s -1.6s ease-in-out infinite;
}

.donut-card b {
  color: #7b8798;
  font-size: 14px;
  font-weight: 900;
}

.donut-card strong {
  position: absolute;
  left: 50%;
  top: 52%;
  color: #6c788a;
  font-size: 18px;
  transform: translate(-50%, -50%);
}

.donut-chart {
  width: 84px;
  height: 84px;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.92) 0 45%, transparent 46%),
    conic-gradient(#1c6fe8 0 32%, #74b8ff 32% 50%, #2367c8 50% 68%, #b6dafd 68% 82%, #418ef1 82% 100%);
}

.particle-field span {
  width: 26px;
  height: 26px;
  border: 0;
  background:
    radial-gradient(circle at 32% 26%, #ffffff 0 16%, transparent 17%),
    radial-gradient(circle at 48% 48%, #f8fbff 0 34%, #a9b7c8 35% 52%, #17202d 53% 72%, #ffffff 73% 100%);
  box-shadow: 0 8px 20px rgba(42, 88, 145, 0.22);
}

.particle-field span:nth-child(1) {
  left: 0;
  top: 214px;
}

.particle-field span:nth-child(2) {
  left: 690px;
  top: 58px;
}

.particle-field span:nth-child(3) {
  right: 18px;
  top: 178px;
}

.particle-field span:nth-child(4) {
  right: 154px;
  top: 50px;
}

.particle-field span:nth-child(5) {
  left: 580px;
  bottom: 58px;
  width: 14px;
  height: 14px;
  background: radial-gradient(circle, #ffffff 0 24%, #77bdff 25% 100%);
}

.visual-a-home .glass-orbit {
  left: 54%;
  top: 56%;
  width: 820px;
  height: 310px;
  border-top-color: rgba(114, 185, 255, 0.34);
  border-bottom-color: rgba(255, 255, 255, 0.82);
  opacity: 0.72;
}

.visual-a-home .orbit-two {
  width: 760px;
  height: 246px;
  transform: translate(-50%, -50%) rotate(13deg);
}

.visual-a-home .orbit-three {
  width: 650px;
  height: 205px;
  transform: translate(-50%, -44%) rotate(-16deg);
}

@keyframes visualPlatformEnter {
  from {
    opacity: 0;
    transform: translateX(20px) translateY(34px) scale(0.94);
  }
  to {
    opacity: 1;
    transform: translateX(-6px) translateY(0) scale(1);
  }
}

@keyframes visualPlatformFloat {
  0%,
  100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -10px;
  }
}

@keyframes glassCardDrift {
  0%,
  100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -13px;
  }
}

@keyframes beamPulse {
  0%,
  100% {
    opacity: 0.64;
    transform: translateX(-50%) scaleY(0.92);
  }
  50% {
    opacity: 1;
    transform: translateX(-50%) scaleY(1.08);
  }
}

@keyframes bigOrbitDrift {
  0%,
  100% {
    transform: rotate(-8deg) translateY(0);
  }
  50% {
    transform: rotate(-8deg) translateY(-10px);
  }
}

@media (max-width: 1080px) {
  .visual-a-home .brand-hero {
    grid-template-columns: 1fr;
  }

  .visual-a-home .talent-visual {
    min-height: 560px;
  }
}

@media (max-width: 760px) {
  .visual-a-home .talent-panel {
    min-width: 520px;
    width: 520px;
    transform: translateX(-64px) scale(0.78);
  }

  .platform-base {
    width: 520px;
  }

  .visual-a-home .hero-orbit {
    right: -270px;
  }
}

/* Refined Apple-like visual direction: quieter, cleaner, no named role labels */
.visual-a-home .brand-hero {
  grid-template-columns: minmax(420px, 0.82fr) minmax(640px, 1.18fr);
  min-height: 535px;
  background:
    radial-gradient(circle at 71% 42%, rgba(111, 178, 255, 0.14), transparent 30%),
    radial-gradient(circle at 76% 18%, rgba(255, 255, 255, 0.95), transparent 26%),
    linear-gradient(180deg, #fbfdff 0%, #f1f6fb 100%);
}

.visual-a-home .brand-hero::after {
  background:
    linear-gradient(90deg, transparent 0 54%, rgba(255, 255, 255, 0.34) 54% 100%),
    radial-gradient(ellipse at 70% 78%, rgba(73, 132, 208, 0.08), transparent 46%);
}

.visual-a-home .talent-visual {
  min-height: 535px;
  padding-right: 42px;
}

.visual-a-home .talent-panel {
  width: 680px;
  min-width: 680px;
  aspect-ratio: 1.42;
  filter: saturate(0.94);
  transform: translate(var(--panel-drift-x, -6px), var(--panel-drift-y, 0));
}

.visual-a-home .hero-orbit {
  right: 72px;
  top: 78px;
  width: 690px;
  height: 292px;
  border-top-width: 2px;
  border-top-color: rgba(143, 197, 255, 0.3);
  opacity: 0.82;
}

.visual-a-home .hero-orbit::before {
  inset: 78px -12px auto 38px;
  height: 188px;
  border-top-width: 2px;
  border-bottom-color: rgba(129, 188, 255, 0.22);
}

.visual-a-home .hero-orbit::after {
  width: 18px;
  height: 18px;
  right: 112px;
  box-shadow: 0 0 20px rgba(90, 172, 255, 0.55);
}

.platform-base {
  top: 72%;
  width: 640px;
  height: 236px;
}

.platform-base::before {
  width: 600px;
  height: 172px;
  background:
    radial-gradient(ellipse at 50% 42%, rgba(255, 255, 255, 0.96) 0 13%, rgba(88, 157, 239, 0.11) 24%, transparent 62%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.54), rgba(152, 201, 247, 0.08));
  border-color: rgba(134, 176, 225, 0.2);
  box-shadow:
    inset 0 16px 24px rgba(255, 255, 255, 0.98),
    inset 0 -20px 32px rgba(55, 134, 226, 0.1),
    0 24px 52px rgba(54, 99, 154, 0.12);
}

.platform-base::after {
  width: 600px;
  height: 84px;
  border-bottom-width: 5px;
  border-bottom-color: rgba(73, 132, 208, 0.26);
  opacity: 0.42;
}

.ring-a {
  width: 552px;
  height: 156px;
  border-color: rgba(111, 177, 250, 0.26);
  background:
    repeating-radial-gradient(ellipse at center, rgba(75, 149, 235, 0.16) 0 1px, transparent 2px 20px),
    radial-gradient(ellipse at center, rgba(255, 255, 255, 0.76) 0 22%, rgba(91, 162, 245, 0.1) 38%, transparent 66%);
}

.ring-b {
  width: 302px;
  height: 96px;
  border-width: 2px;
  border-color: rgba(56, 139, 239, 0.4);
  box-shadow: 0 0 28px rgba(65, 145, 242, 0.22);
}

.ring-c {
  width: 180px;
  height: 56px;
  border-width: 3px;
  border-color: rgba(38, 128, 232, 0.52);
  box-shadow: 0 0 24px rgba(74, 157, 247, 0.34), inset 0 0 12px rgba(255, 255, 255, 0.9);
}

.light-core {
  width: 62px;
  height: 62px;
}

.light-core::after {
  width: 8px;
  height: 212px;
  opacity: 0.76;
}

.glass-data-card {
  border-color: rgba(136, 177, 225, 0.24);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(246, 251, 255, 0.46)),
    radial-gradient(circle at 15% 0%, rgba(255, 255, 255, 0.95), transparent 34%);
  box-shadow:
    inset 1px 1px 0 rgba(255, 255, 255, 0.92),
    inset -2px -3px 8px rgba(70, 136, 216, 0.08),
    0 18px 40px rgba(67, 101, 145, 0.12);
}

.glass-data-card::before {
  border-width: 1px;
  border-color: rgba(105, 166, 241, 0.16);
}

.profile-card {
  grid-template-columns: 46px minmax(0, 1fr);
  grid-template-rows: auto repeat(4, 16px);
  column-gap: 12px;
  row-gap: 0;
  width: 166px;
  min-height: 104px;
  padding: 13px 14px;
}

.profile-card b {
  color: #526071;
  font-size: 14px;
}

.profile-card small,
.profile-card em {
  color: #8290a3;
  font-size: 10.5px;
  font-weight: 700;
  line-height: 16px;
}

.profile-card small {
  grid-column: 2;
  grid-row: 2;
}

.profile-card em:nth-of-type(1) {
  grid-row: 3;
}

.profile-card em:nth-of-type(2) {
  grid-row: 4;
}

.profile-card em:nth-of-type(3) {
  grid-row: 5;
}

.avatar-mini {
  width: 44px;
  height: 44px;
  align-self: center;
  background:
    radial-gradient(circle at 50% 32%, #dfeaf8 0 20%, transparent 21%),
    radial-gradient(ellipse at 50% 92%, #91b4dc 0 42%, transparent 43%),
    linear-gradient(135deg, #ffffff, #eef6ff);
  box-shadow: inset 0 0 0 3px rgba(255, 255, 255, 0.9), 0 9px 18px rgba(68, 101, 143, 0.12);
}

.avatar-female {
  background:
    radial-gradient(circle at 50% 32%, #e6eef8 0 20%, transparent 21%),
    radial-gradient(ellipse at 50% 92%, #8fb1d8 0 42%, transparent 43%),
    linear-gradient(135deg, #ffffff, #eef6ff);
}

.card-left {
  left: 76px;
  top: 118px;
  transform: rotate(-1deg);
}

.card-low-left {
  left: 38px;
  top: 304px;
  transform: rotate(3deg);
}

.card-bottom {
  left: 354px;
  top: 318px;
  transform: rotate(1deg);
}

.radar-float-card {
  left: 318px;
  top: 34px;
  width: 178px;
  min-height: 184px;
  padding: 16px 13px 13px;
  transform: rotate(1deg);
}

.radar-float-card strong {
  color: #687586;
  font-size: 13px;
}

.radar-float-card svg {
  width: 146px;
  height: 130px;
}

.radar-float-card path {
  fill: rgba(41, 126, 225, 0.24);
  stroke: rgba(37, 119, 225, 0.82);
  stroke-width: 2.5;
}

.donut-card {
  right: 70px;
  top: 198px;
  width: 112px;
  min-height: 112px;
  padding: 13px 10px;
  transform: rotate(2deg);
  opacity: 0.9;
}

.donut-chart {
  width: 58px;
  height: 58px;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.96) 0 50%, transparent 51%),
    conic-gradient(#2d7fea 0 42%, #9accff 42% 68%, rgba(222, 239, 255, 0.9) 68% 100%);
  box-shadow: inset 0 0 0 1px rgba(73, 132, 208, 0.08);
}

.donut-card b {
  color: #748195;
  font-size: 11px;
}

.donut-card strong {
  top: 47%;
  color: #687586;
  font-size: 13px;
}

.visual-a-home .glass-orbit {
  left: 56%;
  top: 58%;
  width: 690px;
  height: 252px;
  opacity: 0.46;
}

.visual-a-home .orbit-two {
  width: 650px;
  height: 204px;
}

.visual-a-home .orbit-three {
  width: 560px;
  height: 176px;
}

.particle-field span {
  width: 16px;
  height: 16px;
  opacity: 0.82;
}

.particle-field span:nth-child(1) {
  left: 34px;
  top: 232px;
}

.particle-field span:nth-child(2) {
  left: 580px;
  top: 74px;
}

.particle-field span:nth-child(3) {
  right: 28px;
  top: 190px;
}

.particle-field span:nth-child(4) {
  right: 148px;
  top: 64px;
}

.visual-a-home .energy-lines span {
  opacity: 0.36;
  filter: blur(0.6px);
}

@media (max-width: 1080px) {
  .visual-a-home .talent-panel {
    width: 680px;
    min-width: 680px;
  }
}

@media (max-width: 760px) {
  .visual-a-home .talent-panel {
    transform: translateX(-86px) scale(0.76);
  }
}

.visual-a-home {
  padding: 0;
  background: #f7faff;
}

.visual-a-home .browser-stage {
  width: 100%;
  max-width: none;
  min-height: calc(100vh - 32px);
  margin: 0;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.visual-a-home .confidential-banner {
  display: block;
  position: sticky;
  top: 0;
  z-index: 80;
  padding: 7px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid rgba(255, 210, 0, 0.32);
  background: rgba(255, 255, 255, 0.84);
  color: #586273;
  font-size: 12px;
  font-weight: 750;
  line-height: 1.5;
  text-align: center;
  box-shadow: inset 0 -1px 0 rgba(243, 179, 0, 0.22);
  backdrop-filter: blur(18px);
}

.visual-a-home .confidential-watermark {
  display: block;
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 18;
  opacity: 1;
  background-position: center top;
  background-repeat: repeat;
  background-size: 520px 260px;
}

.visual-a-home .brand-header .wp-header-inner {
  justify-content: flex-start;
}

.visual-a-home .talent-panel {
  transform: translate(var(--panel-drift-x, -6px), var(--panel-drift-y, 0));
  transition: transform 0.42s cubic-bezier(0.16, 1, 0.3, 1);
}

.visual-a-home .talent-panel.is-interacting {
  filter: saturate(1.02) contrast(1.01);
}

.visual-a-home .platform-base {
  transform: translate(calc(-50% + var(--base-drift-x, 0px)), calc(-50% + var(--base-drift-y, 0px)));
  transition: transform 0.38s cubic-bezier(0.16, 1, 0.3, 1);
}

.visual-a-home .light-core {
  transform: translate(calc(-50% + var(--light-drift-x, 0px)), calc(-50% + var(--light-drift-y, 0px))) rotateX(-58deg);
  transition: transform 0.34s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.34s ease;
}

.visual-a-home .talent-panel.is-interacting .light-core {
  box-shadow:
    0 0 24px #ffffff,
    0 0 62px rgba(78, 170, 255, 0.96),
    0 0 124px rgba(46, 127, 244, 0.52);
}

.visual-a-home .glass-data-card {
  transition:
    transform 0.36s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.28s ease,
    box-shadow 0.28s ease,
    opacity 0.28s ease;
  will-change: transform;
}

.visual-a-home .card-left {
  transform: translate(var(--card-drift-x, 0px), var(--card-drift-y, 0px)) rotate(-1deg);
}

.visual-a-home .card-low-left {
  transform: translate(var(--card-drift-x, 0px), var(--card-drift-y, 0px)) rotate(3deg);
}

.visual-a-home .card-bottom {
  transform: translate(var(--card-drift-x, 0px), var(--card-drift-y, 0px)) rotate(1deg);
}

.visual-a-home .radar-float-card {
  transform: translate(var(--card-drift-x, 0px), var(--card-drift-y, 0px)) rotate(1deg);
}

.visual-a-home .donut-card {
  --donut-progress: 88%;
  transform: translate(var(--card-drift-x, 0px), var(--card-drift-y, 0px)) rotate(2deg);
}

.visual-a-home .glass-data-card:hover {
  z-index: 8;
  border-color: rgba(88, 158, 245, 0.42);
  box-shadow:
    inset 1px 1px 0 rgba(255, 255, 255, 0.96),
    inset -2px -3px 8px rgba(70, 136, 216, 0.08),
    0 24px 52px rgba(55, 112, 183, 0.18),
    0 0 34px rgba(84, 159, 255, 0.12);
}

.visual-a-home .donut-card:hover {
  transform: translate(var(--card-drift-x, 0px), var(--card-drift-y, 0px)) rotate(2deg) scale(1.04);
}

.visual-a-home .donut-chart {
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.96) 0 50%, transparent 51%),
    conic-gradient(#2d7fea 0 var(--donut-progress), rgba(222, 239, 255, 0.9) var(--donut-progress) 100%);
  transition: background 0.18s linear, box-shadow 0.28s ease;
}

.visual-a-home .donut-card:hover .donut-chart,
.visual-a-home .talent-panel.is-interacting .donut-chart {
  box-shadow:
    inset 0 0 0 1px rgba(73, 132, 208, 0.08),
    0 0 26px rgba(61, 146, 244, 0.2);
}

.visual-a-home .radar-float-card:hover path {
  filter: drop-shadow(0 0 6px rgba(42, 126, 231, 0.32));
}

.visual-a-home {
  --motion-ease: cubic-bezier(0.16, 1, 0.3, 1);
  --motion-fast: 0.22s;
  --motion-soft: 0.36s;
  --motion-glow: 0.48s;
  --motion-lift: -5px;
  --motion-blue: rgba(76, 147, 236, 0.72);
  --motion-blue-soft: rgba(80, 159, 255, 0.16);
}

.visual-a-home .brand-hero .primary-btn,
.visual-a-home .brand-hero .ghost-btn {
  position: relative;
  gap: 8px;
  overflow: hidden;
  transform-origin: center;
  transition:
    transform var(--motion-fast) var(--motion-ease),
    box-shadow var(--motion-fast) ease,
    border-color var(--motion-fast) ease,
    background var(--motion-fast) ease,
    color var(--motion-fast) ease;
}

.visual-a-home .brand-hero .primary-btn::after,
.visual-a-home .brand-hero .ghost-btn::after {
  content: "→";
  display: inline-block;
  font-size: 15px;
  line-height: 1;
  transform: translateX(-2px);
  opacity: 0.82;
  transition: transform var(--motion-fast) ease, opacity var(--motion-fast) ease;
}

.visual-a-home .brand-hero .primary-btn::before,
.visual-a-home .brand-hero .ghost-btn::before {
  content: "";
  position: absolute;
  inset: -1px;
  background: linear-gradient(115deg, transparent 0 24%, rgba(255, 255, 255, 0.28) 45%, transparent 62% 100%);
  transform: translateX(-110%);
  transition: transform var(--motion-glow) ease;
}

.visual-a-home .brand-hero .primary-btn:hover,
.visual-a-home .brand-hero .ghost-btn:hover {
  transform: translateY(-3px) scale(1.018);
}

.visual-a-home .brand-hero .primary-btn:hover {
  box-shadow: 0 22px 42px rgba(5, 6, 8, 0.26);
}

.visual-a-home .brand-hero .ghost-btn:hover {
  border-color: var(--motion-blue);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 36px rgba(73, 132, 208, 0.13);
  color: #1f3658;
}

.visual-a-home .brand-hero .primary-btn:hover::before,
.visual-a-home .brand-hero .ghost-btn:hover::before {
  transform: translateX(110%);
}

.visual-a-home .brand-hero .primary-btn:hover::after,
.visual-a-home .brand-hero .ghost-btn:hover::after {
  transform: translateX(3px);
  opacity: 1;
}

.visual-a-home .visual-feature-card {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition:
    transform var(--motion-soft) var(--motion-ease),
    border-color var(--motion-fast) ease,
    box-shadow var(--motion-fast) ease,
    background var(--motion-fast) ease;
}

.visual-a-home .visual-feature-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(120deg, transparent 0 28%, rgba(255, 255, 255, 0.62) 43%, transparent 58% 100%),
    radial-gradient(circle at 20% 0%, rgba(88, 164, 255, 0.18), transparent 36%);
  opacity: 0;
  transform: translateX(-18%);
  transition: opacity var(--motion-fast) ease, transform var(--motion-glow) ease;
  pointer-events: none;
  z-index: 0;
}

.visual-a-home .visual-feature-card > * {
  position: relative;
  z-index: 1;
}

.visual-a-home .visual-feature-card:hover {
  border-color: rgba(61, 139, 237, 0.42);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 24px 54px rgba(55, 104, 165, 0.15), 0 0 0 1px rgba(71, 148, 240, 0.08);
  transform: translateY(var(--motion-lift));
}

.visual-a-home .visual-feature-card:hover::after {
  opacity: 1;
  transform: translateX(14%);
}

.visual-a-home .visual-feature-card:hover .feature-icon {
  border-color: rgba(60, 139, 236, 0.36);
  box-shadow:
    inset 0 1px 0 #ffffff,
    0 14px 28px rgba(61, 128, 214, 0.16),
    0 0 24px var(--motion-blue-soft);
  transform: translateY(-2px);
}

.visual-a-home .visual-feature-card strong span {
  display: inline-block;
  transition: transform var(--motion-fast) ease;
}

.visual-a-home .visual-feature-card:hover strong span {
  transform: translateX(4px);
}

.visual-a-home .feature-icon {
  transition: transform var(--motion-fast) ease, border-color var(--motion-fast) ease, box-shadow var(--motion-fast) ease;
}

.visual-a-home .product-row {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  transform-origin: center;
  isolation: isolate;
  transition:
    opacity 0.75s var(--motion-ease),
    transform var(--motion-soft) var(--motion-ease),
    padding var(--motion-fast) ease,
    background var(--motion-fast) ease,
    box-shadow var(--motion-fast) ease,
    border-color var(--motion-fast) ease;
}

.visual-a-home .product-row::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(100deg, transparent 0 18%, rgba(255, 255, 255, 0.06) 38%, rgba(255, 210, 0, 0.14) 50%, transparent 68% 100%);
  transform: translateX(-120%);
  transition: transform 0.58s ease;
  pointer-events: none;
}

.visual-a-home .product-row > * {
  position: relative;
  z-index: 1;
}

.visual-a-home .product-row:hover {
  border-bottom-color: rgba(255, 210, 0, 0.38);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.18);
  transform: translateY(var(--motion-lift));
}

.visual-a-home .product-row:hover::before {
  transform: translateX(120%);
}

.visual-a-home .product-row .product-index,
.visual-a-home .product-row > strong {
  transition: color var(--motion-fast) ease, text-shadow var(--motion-fast) ease, transform var(--motion-fast) ease;
}

.visual-a-home .product-row:hover .product-index {
  text-shadow: 0 0 24px rgba(255, 210, 0, 0.32);
  transform: translateX(3px);
}

.visual-a-home .product-row > strong::after {
  content: "→";
  display: inline-block;
  margin-left: 8px;
  transform: translateX(0);
  transition: transform var(--motion-fast) ease;
}

.visual-a-home .product-row:hover > strong {
  transform: translateX(8px);
}

.visual-a-home .product-row:hover > strong::after {
  transform: translateX(5px);
}

.visual-a-home .talent-panel:has(.glass-data-card:hover) .glass-data-card:not(:hover) {
  opacity: 0.76;
  filter: saturate(0.88);
}

.visual-a-home .talent-panel:has(.glass-data-card:hover) .light-core {
  box-shadow:
    0 0 24px #ffffff,
    0 0 68px rgba(78, 170, 255, 0.96),
    0 0 132px rgba(46, 127, 244, 0.5);
}

.visual-a-home .glass-data-card:hover {
  transform: translate(var(--card-drift-x, 0px), calc(var(--card-drift-y, 0px) - 4px)) rotate(var(--card-rotate, 0deg));
}

.visual-a-home .card-left {
  --card-rotate: -1deg;
}

.visual-a-home .card-low-left {
  --card-rotate: 3deg;
}

.visual-a-home .card-bottom,
.visual-a-home .radar-float-card {
  --card-rotate: 1deg;
}

.visual-a-home .donut-card {
  --card-rotate: 2deg;
}

@media (prefers-reduced-motion: reduce) {
  .visual-a-home .talent-panel,
  .visual-a-home .platform-base,
  .visual-a-home .light-core,
  .visual-a-home .glass-data-card,
  .visual-a-home .donut-chart,
  .visual-a-home .brand-hero .primary-btn,
  .visual-a-home .brand-hero .ghost-btn,
  .visual-a-home .visual-feature-card,
  .visual-a-home .feature-icon,
  .visual-a-home .product-row,
  .visual-a-home .product-row .product-index,
  .visual-a-home .product-row > strong,
  .visual-a-home .product-row::before,
  .visual-a-home .visual-feature-card::after,
  .visual-a-home .brand-hero .primary-btn::before,
  .visual-a-home .brand-hero .ghost-btn::before {
    transition: none;
  }
}

@media (max-width: 1080px) {
  .visual-a-home .brand-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .visual-a-home .brand-hero::after {
    background:
      radial-gradient(ellipse at 50% 82%, rgba(73, 132, 208, 0.08), transparent 48%),
      linear-gradient(180deg, rgba(255, 255, 255, 0.22), transparent);
  }

  .visual-a-home .brand-hero .hero-copy {
    padding: 56px clamp(22px, 7vw, 72px) 18px;
  }

  .visual-a-home .brand-hero h1,
  .visual-a-home .brand-hero .subtitle {
    max-width: 720px;
  }

  .visual-a-home .talent-visual {
    min-height: 430px;
    padding: 0 24px 28px;
    overflow: hidden;
  }

  .visual-a-home .talent-panel {
    width: min(680px, 92vw);
    min-width: 0;
    transform: translate(var(--panel-drift-x, 0px), var(--panel-drift-y, 0));
  }

  .visual-a-home .hero-orbit {
    left: 50%;
    right: auto;
    top: 44px;
    width: min(720px, 108vw);
    transform: translateX(-50%) rotate(-8deg);
  }

  .hero-feature-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 0 clamp(18px, 5vw, 42px) 22px;
  }

  .visual-feature-card {
    min-height: 104px;
  }
}

@media (max-width: 760px) {
  .visual-a-home .confidential-banner {
    padding: 6px 14px;
    font-size: 10px;
    line-height: 1.45;
    white-space: normal;
    word-break: break-all;
    overflow-wrap: anywhere;
  }

  .visual-a-home .confidential-watermark {
    background-size: 360px 180px;
    opacity: 0.72;
  }

  .visual-a-home .brand-header .wp-header-inner {
    min-height: 64px;
    padding: 10px 16px;
  }

  .visual-a-home .brand-mark {
    width: 38px;
    height: 38px;
    border-radius: 10px;
  }

  .visual-a-home .site-brand {
    gap: 10px;
  }

  .visual-a-home .site-brand strong {
    font-size: 16px;
  }

  .visual-a-home .site-brand small {
    font-size: 11px;
  }

  .visual-a-home .brand-hero {
    display: flex;
    flex-direction: column;
    width: 100vw;
    max-width: 100vw;
    inline-size: 100vw;
    max-inline-size: 100vw;
    min-height: auto;
    overflow: hidden;
  }

  .visual-a-home .brand-hero .hero-copy {
    width: 100vw;
    min-width: 0;
    max-width: 100vw;
    inline-size: 100vw;
    max-inline-size: 100vw;
    padding: 38px 18px 8px;
  }

  .visual-a-home .brand-hero .hero-copy > * {
    max-width: 100%;
  }

  .visual-a-home .brand-hero h1 {
    width: calc(100vw - 36px);
    max-width: calc(100vw - 36px);
    margin-bottom: 14px;
    font-size: clamp(31px, 8.5vw, 36px) !important;
    line-height: 1.12;
    word-break: keep-all;
    overflow-wrap: normal;
  }

  .visual-a-home .brand-hero h1 .title-desktop {
    display: none !important;
  }

  .visual-a-home .brand-hero h1 .title-mobile {
    display: block !important;
  }

  .visual-a-home .brand-hero .subtitle {
    display: block;
    width: min(300px, calc(100vw - 36px));
    max-width: min(300px, calc(100vw - 36px));
    font-size: 14.5px;
    line-height: 1.7;
    word-break: break-all;
    overflow-wrap: anywhere;
  }

  .visual-a-home .brand-hero .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: calc(100vw - 36px);
    max-width: calc(100vw - 36px);
    gap: 10px;
    margin-top: 22px;
  }

  .visual-a-home .brand-hero .primary-btn,
  .visual-a-home .brand-hero .ghost-btn {
    width: 100%;
    min-width: 0;
    min-height: 46px;
    padding: 0 16px;
  }

  .hero-pills {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    width: calc(100vw - 36px);
    max-width: calc(100vw - 36px);
    margin-top: 22px;
  }

  .hero-pills span {
    min-height: 32px;
    padding: 0 10px;
    font-size: 12px;
  }

  .visual-a-home .talent-visual {
    width: 100%;
    min-width: 0;
    max-width: 100vw;
    min-height: 320px;
    padding: 8px 0 10px;
    overflow: hidden;
  }

  .visual-a-home .talent-panel {
    width: 560px;
    min-width: 560px;
    transform: translateX(-86px) scale(0.54);
    transform-origin: center top;
  }

  .visual-a-home .card-left {
    left: 92px;
    top: 132px;
  }

  .visual-a-home .card-low-left {
    left: 48px;
    top: 322px;
  }

  .visual-a-home .card-bottom {
    left: 330px;
    top: 318px;
  }

  .visual-a-home .radar-float-card {
    left: 284px;
    top: 62px;
    width: 150px;
    min-height: 156px;
    padding: 13px 10px;
  }

  .visual-a-home .radar-float-card svg {
    width: 120px;
    height: 106px;
  }

  .visual-a-home .donut-card {
    right: 116px;
    top: 204px;
  }

  .visual-a-home .talent-panel.is-interacting,
  .visual-a-home .talent-panel:hover {
    filter: saturate(0.96);
  }

  .visual-a-home .hero-orbit {
    top: 34px;
    width: 520px;
    height: 210px;
    opacity: 0.38;
  }

  .visual-a-home .energy-lines span {
    width: 120%;
    opacity: 0.22;
  }

  .hero-feature-grid {
    padding: 4px 16px 20px;
  }

  .visual-feature-card {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 14px;
    min-height: auto;
    padding: 15px;
  }

  .visual-feature-card > div,
  .product-row > div {
    min-width: 0;
  }

  .visual-feature-card h2,
  .visual-feature-card p,
  .reason-grid h3,
  .reason-grid p,
  .product-row h3,
  .product-row p,
  .timeline-list span {
    word-break: break-all;
    overflow-wrap: anywhere;
  }

  .feature-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
  }

  .feature-icon::before {
    width: 26px;
    height: 26px;
  }

  .reason-section,
  .product-section,
  .technology-band {
    padding: 42px 16px;
  }

  .section-heading {
    margin-bottom: 22px;
  }

  .section-heading h2,
  .technology-band h2 {
    font-size: clamp(28px, 8.2vw, 34px);
    line-height: 1.08;
    word-break: keep-all;
    overflow-wrap: anywhere;
  }

  .reason-grid article {
    min-height: auto;
    padding: 24px 20px;
  }

  .reason-grid span {
    font-size: 34px;
  }

  .reason-grid h3 {
    margin: 22px 0 10px;
    font-size: 22px;
  }

  .product-row {
    grid-template-columns: 62px minmax(0, 1fr);
    gap: 12px;
    min-height: auto;
    margin-bottom: 16px;
    padding: 26px 18px;
    border: 1px solid rgba(135, 153, 178, 0.2);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 14px 34px rgba(55, 104, 165, 0.1);
    color: #111827;
  }

  .product-row:hover {
    padding: 26px 18px;
  }

  .product-index {
    align-self: start;
    font-size: 28px;
  }

  .product-row h3 {
    font-size: 24px;
    line-height: 1.2;
  }

  .product-row p {
    color: #5f6b7a;
    font-size: 14px;
    line-height: 1.68;
  }

  .product-row > strong {
    grid-column: 2;
    justify-self: start;
    color: #3d4756;
    font-size: 15px;
  }

  .technology-band {
    grid-template-columns: 1fr;
    gap: 24px;
    background: linear-gradient(180deg, #ffffff 0%, #edf4fb 100%);
  }

  .timeline-list {
    gap: 12px;
    background: transparent;
  }

  .timeline-list li {
    grid-template-columns: 58px minmax(0, 1fr);
    min-height: 76px;
    padding: 18px 20px;
    border: 1px solid rgba(135, 153, 178, 0.2);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 14px 34px rgba(55, 104, 165, 0.1);
  }

  .timeline-list strong {
    font-size: 24px;
  }

  .timeline-list span {
    font-size: 16px;
    line-height: 1.35;
  }

  .brand-footer {
    padding: 18px;
    font-size: 12px;
  }
}

@media (max-width: 420px) {
  .visual-a-home .brand-hero .hero-copy {
    padding-inline: 16px;
  }

  .visual-a-home,
  .visual-a-home .browser-stage,
  .visual-a-home .brand-front-page,
  .visual-a-home .brand-hero {
    overflow-x: hidden;
  }

  .visual-a-home .brand-hero h1 {
    max-width: 100%;
    font-size: 30px !important;
  }

  .visual-a-home .talent-visual {
    min-height: 300px;
  }

  .visual-a-home .talent-panel {
    width: 520px;
    min-width: 520px;
    transform: translateX(-96px) scale(0.51);
  }

  .visual-a-home .radar-float-card {
    left: 268px;
  }

  .visual-a-home .donut-card {
    right: 100px;
  }

  .hero-feature-grid {
    padding-inline: 12px;
  }

  .visual-feature-card {
    grid-template-columns: 1fr;
  }

  .product-row {
    grid-template-columns: 48px minmax(0, 1fr);
  }

  .product-row > strong {
    grid-column: 2;
  }
}

@media (hover: none) {
  .visual-a-home .brand-hero .primary-btn:hover,
  .visual-a-home .brand-hero .ghost-btn:hover,
  .visual-a-home .visual-feature-card:hover,
  .visual-a-home .product-row:hover {
    transform: none;
  }

  .visual-a-home .talent-panel:has(.glass-data-card:hover) .glass-data-card:not(:hover) {
    opacity: 1;
    filter: none;
  }
}

/* Mobile copy adjustment: proportionally shrink the full insight visual into view. */
@media (max-width: 760px) {
  .visual-a-home .brand-hero {
    overflow: hidden;
  }

  .visual-a-home .talent-visual {
    display: flex;
    justify-content: center;
    width: 100%;
    max-width: 100vw;
    height: 540px;
    min-height: 0;
    margin-top: 18px;
    padding: 28px 0 36px;
    overflow: hidden;
    background:
      radial-gradient(circle at 50% 26%, rgba(251, 219, 82, 0.22), transparent 28%),
      radial-gradient(circle at 50% 74%, rgba(68, 121, 255, 0.12), transparent 34%),
      linear-gradient(180deg, #050607 0%, #080b10 100%);
  }

  .visual-a-home .talent-panel {
    flex: 0 0 560px;
    width: 560px;
    min-width: 560px;
    aspect-ratio: 1;
    animation: none;
    filter: none;
    transform: scale(0.64) rotate(-4deg);
    transform-origin: center center;
  }

  .visual-a-home .talent-panel.is-interacting,
  .visual-a-home .talent-panel:hover {
    transform: scale(0.64) rotate(-4deg);
  }

  .visual-a-home .glass-orbit,
  .visual-a-home .particle-field {
    opacity: 0.35;
  }

  .visual-a-home .platform-base {
    left: 50%;
    top: 54%;
    width: 430px;
    height: 430px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 42px;
    background:
      radial-gradient(circle at 50% 34%, rgba(251, 222, 82, 0.36), transparent 28%),
      linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.03));
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.16),
      0 38px 86px rgba(0, 0, 0, 0.48);
    transform: translate(-50%, -50%);
  }

  .visual-a-home .base-ring,
  .visual-a-home .light-core {
    display: none;
  }

  .visual-a-home .glass-data-card {
    border-color: rgba(255, 255, 255, 0.32);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.9);
    color: #080a0d;
    box-shadow: 0 22px 44px rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(18px) saturate(1.25);
  }

  .visual-a-home .radar-float-card {
    left: 155px;
    top: 146px;
    width: 250px;
    min-height: 250px;
    padding: 24px 18px 20px;
    transform: rotate(4deg);
    z-index: 4;
  }

  .visual-a-home .radar-float-card strong {
    margin-top: 154px;
    color: #111827;
    font-size: 28px;
    font-weight: 950;
  }

  .visual-a-home .radar-float-card svg {
    position: absolute;
    left: 50%;
    top: 32px;
    width: 154px;
    height: 138px;
    transform: translateX(-50%);
  }

  .visual-a-home .radar-float-card path {
    fill: rgba(246, 211, 70, 0.48);
    stroke: #0a0d12;
    stroke-width: 4;
  }

  .visual-a-home .donut-card {
    right: 112px;
    top: 122px;
    width: 138px;
    min-height: 108px;
    padding: 18px 20px;
    transform: rotate(4deg);
    z-index: 5;
  }

  .visual-a-home .donut-card .donut-chart {
    display: none;
  }

  .visual-a-home .donut-card b {
    color: #232832;
    font-size: 18px;
    line-height: 1.15;
  }

  .visual-a-home .donut-card strong {
    color: #111827;
    font-size: 28px;
    line-height: 1;
  }

  .visual-a-home .profile-card {
    grid-template-columns: 1fr;
    width: 180px;
    min-height: 98px;
    padding: 18px 20px;
  }

  .visual-a-home .profile-card .avatar-mini,
  .visual-a-home .profile-card i {
    display: none;
  }

  .visual-a-home .profile-card b {
    color: #0b0d12;
    font-size: 25px;
    line-height: 1.1;
  }

  .visual-a-home .profile-card small,
  .visual-a-home .profile-card em {
    grid-column: 1;
    color: #4b5565;
    font-size: 15px;
    line-height: 1.35;
  }

  .visual-a-home .card-left {
    left: 38px;
    top: 176px;
    transform: rotate(-4deg);
    z-index: 6;
  }

  .visual-a-home .card-low-left {
    left: 78px;
    top: 356px;
    transform: rotate(1deg);
    z-index: 5;
  }

  .visual-a-home .card-bottom {
    left: 324px;
    top: 300px;
    transform: rotate(3deg);
    z-index: 6;
  }
}

@media (max-width: 420px) {
  .visual-a-home .talent-visual {
    height: 510px;
  }

  .visual-a-home .talent-panel,
  .visual-a-home .talent-panel.is-interacting,
  .visual-a-home .talent-panel:hover {
    transform: scale(0.6) rotate(-4deg);
  }
}

@media (max-width: 360px) {
  .visual-a-home .talent-visual {
    height: 468px;
  }

  .visual-a-home .talent-panel,
  .visual-a-home .talent-panel.is-interacting,
  .visual-a-home .talent-panel:hover {
    transform: scale(0.58) rotate(-4deg);
  }
}

/* Light mobile preview: independent full-width visual band, original composition scaled as one piece. */
@media (max-width: 760px) {
  .visual-a-home .talent-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    width: 100vw;
    max-width: 100vw;
    height: 390px;
    margin: 18px 0 0;
    padding: 30px 0 26px;
    overflow: hidden;
    background:
      radial-gradient(circle at 50% 54%, rgba(84, 167, 255, 0.22), transparent 28%),
      radial-gradient(circle at 50% 90%, rgba(255, 255, 255, 0.95), transparent 34%),
      linear-gradient(180deg, #f8fcff 0%, #eaf4ff 100%);
  }

  .visual-a-home .talent-panel,
  .visual-a-home .talent-panel.is-interacting,
  .visual-a-home .talent-panel:hover {
    flex: 0 0 680px;
    width: 680px;
    min-width: 680px;
    aspect-ratio: 1.42;
    animation: none;
    filter: saturate(0.96);
    transform: translateX(-26px) scale(0.6);
    transform-origin: top center;
  }

  .visual-a-home .glass-orbit,
  .visual-a-home .particle-field {
    opacity: 0.75;
  }

  .visual-a-home .platform-base {
    left: 52%;
    top: 72%;
    width: 640px;
    height: 236px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    transform: translate(-50%, -50%);
  }

  .visual-a-home .base-ring,
  .visual-a-home .light-core,
  .visual-a-home .donut-card .donut-chart {
    display: block;
  }

  .visual-a-home .glass-data-card {
    border-color: rgba(136, 177, 225, 0.24);
    border-radius: 18px;
    background:
      linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(246, 251, 255, 0.46)),
      radial-gradient(circle at 15% 0%, rgba(255, 255, 255, 0.95), transparent 34%);
    color: #1c2635;
    box-shadow:
      inset 1px 1px 0 rgba(255, 255, 255, 0.92),
      inset -2px -3px 8px rgba(70, 136, 216, 0.08),
      0 18px 40px rgba(67, 101, 145, 0.12);
    backdrop-filter: blur(20px) saturate(1.45);
  }

  .visual-a-home .profile-card {
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr);
    grid-template-rows: auto repeat(4, 16px);
    column-gap: 12px;
    width: 166px;
    min-height: 104px;
    padding: 13px 14px;
  }

  .visual-a-home .profile-card .avatar-mini {
    display: block;
  }

  .visual-a-home .profile-card i {
    display: block;
  }

  .visual-a-home .profile-card b {
    color: #526071;
    font-size: 14px;
    line-height: normal;
  }

  .visual-a-home .profile-card small,
  .visual-a-home .profile-card em {
    color: #8290a3;
    font-size: 10.5px;
    font-weight: 700;
    line-height: 16px;
  }

  .visual-a-home .card-left {
    left: 76px;
    top: 118px;
    transform: rotate(-1deg);
  }

  .visual-a-home .card-low-left {
    left: 38px;
    top: 304px;
    transform: rotate(3deg);
  }

  .visual-a-home .card-bottom {
    left: 354px;
    top: 318px;
    transform: rotate(1deg);
  }

  .visual-a-home .radar-float-card {
    left: 318px;
    top: 34px;
    width: 178px;
    min-height: 184px;
    padding: 16px 13px 13px;
    transform: rotate(1deg);
  }

  .visual-a-home .radar-float-card strong {
    margin-top: 0;
    color: #687586;
    font-size: 13px;
    font-weight: 950;
  }

  .visual-a-home .radar-float-card svg {
    position: static;
    width: 146px;
    height: 130px;
    transform: none;
  }

  .visual-a-home .radar-float-card path {
    fill: rgba(41, 126, 225, 0.24);
    stroke: rgba(37, 119, 225, 0.82);
    stroke-width: 2.5;
  }

  .visual-a-home .donut-card {
    right: 70px;
    top: 198px;
    width: 112px;
    min-height: 112px;
    padding: 13px 10px;
    transform: rotate(2deg);
  }

  .visual-a-home .donut-card b {
    color: #748195;
    font-size: 10px;
    line-height: normal;
  }

  .visual-a-home .donut-card strong {
    color: #526071;
    font-size: 18px;
    line-height: 1;
  }
}

@media (max-width: 420px) {
  .visual-a-home .talent-panel,
  .visual-a-home .talent-panel.is-interacting,
  .visual-a-home .talent-panel:hover {
    transform: translateX(-28px) scale(0.54);
  }
}
