:root {
  --bg: #efe7d8;
  --bg-deep: #13262b;
  --panel: rgba(255, 250, 243, 0.78);
  --panel-strong: rgba(18, 34, 38, 0.88);
  --panel-soft: rgba(255, 255, 255, 0.76);
  --line: rgba(19, 38, 43, 0.11);
  --ink: #152328;
  --muted: #5d6a68;
  --warm: #b66c43;
  --warm-deep: #855038;
  --teal: #2c7c78;
  --teal-soft: #d6e9e4;
  --gold: #b89a63;
  --shadow: 0 24px 60px rgba(23, 38, 41, 0.15);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Manrope", "Noto Sans SC", "Microsoft YaHei", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(182, 108, 67, 0.18), transparent 29%),
    radial-gradient(circle at 83% 18%, rgba(44, 124, 120, 0.15), transparent 28%),
    linear-gradient(135deg, #f7f0e5 0%, #edf3eb 47%, #f2e8da 100%);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(20, 33, 36, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20, 33, 36, 0.04) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, transparent 0%, black 12%, black 88%, transparent 100%);
  pointer-events: none;
}

.ambient {
  position: fixed;
  width: 28rem;
  height: 28rem;
  border-radius: 50%;
  filter: blur(24px);
  opacity: 0.35;
  pointer-events: none;
  z-index: 0;
  animation: float 18s ease-in-out infinite;
}

.ambient-one {
  top: -10rem;
  right: -8rem;
  background: rgba(182, 108, 67, 0.28);
}

.ambient-two {
  bottom: -12rem;
  left: -8rem;
  background: rgba(44, 124, 120, 0.22);
  animation-duration: 24s;
}

.page-shell {
  position: relative;
  z-index: 1;
  width: min(var(--container), calc(100% - 2rem));
  margin: 0 auto;
  padding: 1rem 0 3rem;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.8rem 0 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border-radius: 1rem;
  background: linear-gradient(135deg, var(--bg-deep), #274e54);
  color: #fef5ea;
  font-weight: 800;
  letter-spacing: 0.08em;
  box-shadow: 0 16px 34px rgba(14, 28, 31, 0.22);
}

.brand-name,
.brand-subtitle,
.eyebrow,
.console-label {
  margin: 0;
}

.brand-name {
  font-size: 1rem;
  font-weight: 800;
}

.brand-subtitle {
  color: var(--muted);
  font-size: 0.85rem;
}

.topbar-meta {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.signal-pill,
.ghost-button,
.status-badge,
.feed-badge {
  border: 1px solid rgba(20, 33, 36, 0.1);
  backdrop-filter: blur(14px);
}

.signal-pill {
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.6);
  color: var(--muted);
  font-size: 0.9rem;
}

.ghost-button,
.primary-button,
.secondary-button,
.scenario-chip {
  appearance: none;
  border: none;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease, color 160ms ease;
  font-family: inherit;
}

.ghost-button {
  padding: 0.8rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
  color: var(--ink);
  font-weight: 600;
}

.ghost-button:hover,
.primary-button:hover,
.secondary-button:hover,
.scenario-chip:hover,
.match-card:hover {
  transform: translateY(-2px);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(18rem, 0.78fr);
  gap: 2.2rem;
  align-items: start;
  padding: 3.5rem 0 3rem;
}

.hero-copy,
.hero-console,
.board,
.principle-card,
.promise-card {
  position: relative;
}

.hero-copy,
.hero-console {
  min-width: 0;
}

.eyebrow,
.console-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--teal);
  font-weight: 800;
}

h1,
h2,
h3,
h4,
.spotlight-title {
  margin: 0;
  font-family: "Noto Serif SC", "STZhongsong", serif;
  line-height: 1.08;
}

h1 {
  margin-top: 1rem;
  font-size: clamp(2.9rem, 6vw, 5.5rem);
  max-width: 10.8em;
}

.hero-title {
  margin-top: 0;
  display: grid;
  gap: 0.35rem;
  max-width: min(100%, 15.4ch);
  line-height: 1;
}

.hero-heading-panel {
  display: inline-block;
  margin-top: 0.95rem;
  padding: 1.15rem 1.45rem 1.25rem;
  border-radius: 2rem;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.5), rgba(249, 242, 232, 0.26));
  border: 1px solid rgba(20, 33, 36, 0.08);
  box-shadow:
    0 20px 38px rgba(25, 39, 42, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.42);
  backdrop-filter: blur(16px);
}

.hero-title-primary,
.hero-title-anchor {
  display: block;
  letter-spacing: -0.055em;
}

.hero-title-primary {
  font-size: clamp(2.45rem, 3.7vw, 4rem);
  line-height: 0.92;
}

.hero-title-bridge {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem 0.9rem;
  padding-left: clamp(0.15rem, 0.7vw, 0.65rem);
}

.hero-title-lead {
  font-family: "Manrope", "Noto Sans SC", "Microsoft YaHei", sans-serif;
  font-size: clamp(0.95rem, 1.35vw, 1.28rem);
  font-weight: 800;
  letter-spacing: 0.18em;
  color: var(--muted);
}

.hero-title-accent {
  display: inline-flex;
  align-items: center;
  padding: 0.34rem 0.85rem 0.42rem;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(184, 154, 99, 0.18), rgba(255, 255, 255, 0.78));
  border: 1px solid rgba(184, 154, 99, 0.24);
  color: var(--teal);
  font-size: clamp(1rem, 1.45vw, 1.34rem);
  font-weight: 800;
  letter-spacing: 0.04em;
}

.hero-title-anchor {
  font-size: clamp(3rem, 5.1vw, 5.4rem);
  line-height: 0.9;
  transform: translateX(clamp(0rem, 0.8vw, 0.5rem));
}

.hero-text,
.section-heading p,
.promise-card p,
.principle-card p,
.workflow-card p,
.match-meta,
.feed-item p,
.console-summary,
.stream-text,
.spotlight-card p,
.board-hint,
.deck-note,
.footer p {
  color: var(--muted);
  line-height: 1.75;
}

.hero-text {
  max-width: 42rem;
  margin: 1.4rem 0 0;
  font-size: 1.08rem;
}

.hero-stance {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  margin-top: 1rem;
}

.hero-stance-item {
  padding: 0.95rem 1rem 1rem;
  border-radius: 1.4rem;
  background: rgba(255, 255, 255, 0.64);
  border: 1px solid rgba(20, 33, 36, 0.08);
  box-shadow: 0 16px 34px rgba(24, 39, 42, 0.06);
}

.hero-stance-item span {
  display: block;
  color: var(--muted);
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.hero-stance-item strong {
  display: block;
  margin-top: 0.55rem;
  font-size: 1rem;
  line-height: 1.35;
}

.hero-stance-item.is-highlight {
  background: linear-gradient(135deg, rgba(19, 38, 43, 0.96), rgba(39, 78, 84, 0.92));
  box-shadow: 0 22px 38px rgba(18, 34, 38, 0.2);
}

.hero-stance-item.is-highlight span {
  color: rgba(237, 248, 247, 0.68);
}

.hero-stance-item.is-highlight strong {
  color: #f6efe3;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.7rem;
}

.primary-button,
.secondary-button {
  padding: 0.95rem 1.35rem;
  border-radius: 999px;
  font-size: 0.98rem;
  font-weight: 700;
}

.primary-button {
  background: linear-gradient(135deg, var(--warm), var(--warm-deep));
  color: #fff8f1;
  box-shadow: 0 18px 30px rgba(182, 108, 67, 0.22);
}

.secondary-button {
  background: rgba(255, 253, 249, 0.85);
  color: var(--ink);
  border: 1px solid rgba(20, 33, 36, 0.08);
}

.hero-visual-card {
  position: relative;
  overflow: hidden;
  width: min(100%, 42rem);
  margin-top: 1.35rem;
  margin-right: auto;
  padding: 0.92rem;
  border-radius: 2rem;
  background:
    radial-gradient(circle at top left, rgba(184, 154, 99, 0.18), transparent 28%),
    linear-gradient(145deg, rgba(17, 35, 39, 0.98), rgba(25, 49, 53, 0.94));
  border: 1px solid rgba(184, 154, 99, 0.12);
  box-shadow: 0 30px 52px rgba(17, 35, 39, 0.22);
}

.hero-visual-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 96px 96px;
  opacity: 0.28;
  pointer-events: none;
}

.hero-visual-topline,
.hero-visual-stage,
.hero-visual-footer {
  position: relative;
  z-index: 1;
}

.hero-visual-topline {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 1rem;
}

.visual-kicker,
.visual-caption {
  margin: 0;
}

.visual-kicker {
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #9ad6cf;
  font-weight: 800;
}

.visual-caption {
  margin-top: 0.55rem;
  max-width: 21rem;
  color: rgba(244, 239, 230, 0.72);
  font-size: 0.96rem;
  line-height: 1.65;
}

.visual-badge {
  padding: 0.58rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #f0ddbb;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-visual-stage {
  position: relative;
  isolation: isolate;
  min-height: 25.5rem;
  margin-top: 0.82rem;
  border-radius: 1.7rem;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 36%, rgba(184, 154, 99, 0.14), transparent 32%),
    radial-gradient(circle at 58% 42%, rgba(44, 124, 120, 0.24), transparent 36%),
    linear-gradient(180deg, rgba(12, 26, 29, 0.88), rgba(18, 34, 38, 0.7));
  border: 1px solid rgba(184, 154, 99, 0.1);
}

.hero-visual-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 36%, rgba(255, 255, 255, 0.08), transparent 18%),
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: auto, 72px 72px, 72px 72px;
  opacity: 0.4;
  pointer-events: none;
}

.hero-visual-stage::after {
  content: "";
  position: absolute;
  inset: auto 12% 3% 12%;
  height: 6rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184, 154, 99, 0.28), transparent 68%);
  filter: blur(18px);
  opacity: 0.7;
}

.hero-visual-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.mesh-orbit {
  fill: none;
  stroke: rgba(243, 227, 199, 0.22);
  stroke-width: 1.1;
  stroke-dasharray: 7 12;
  transform-origin: 382px 252px;
  animation: orbit-spin 34s linear infinite;
}

.mesh-orbit-b {
  stroke-dasharray: 6 14;
  animation-direction: reverse;
  animation-duration: 42s;
}

.mesh-orbit-c {
  stroke-dasharray: 4 10;
  animation-duration: 28s;
}

.mesh-line {
  fill: none;
  stroke: url(#meshLine);
  stroke-width: 1.8;
  stroke-linecap: round;
}

.persona-outline,
.persona-neck,
.persona-shoulders {
  fill: rgba(255, 255, 255, 0.02);
  stroke: url(#personaStroke);
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.persona-flow {
  fill: none;
  stroke: rgba(240, 225, 196, 0.54);
  stroke-width: 1.4;
  stroke-linecap: round;
}

.mesh-node {
  filter: drop-shadow(0 0 12px rgba(240, 212, 167, 0.28));
  animation: pulse 3.8s ease-out infinite;
}

.mesh-node-core {
  fill: #f2d6ab;
}

.mesh-node-side {
  fill: #6fc0b2;
}

.mesh-node:nth-child(2n) {
  animation-delay: 0.9s;
}

.mesh-node:nth-child(3n) {
  animation-delay: 1.4s;
}

.visual-pill {
  position: absolute;
  z-index: 2;
  min-width: 7.2rem;
  padding: 0.72rem 0.85rem 0.78rem;
  border-radius: 1.1rem;
  background: rgba(255, 249, 239, 0.82);
  border: 1px solid rgba(184, 154, 99, 0.16);
  box-shadow: 0 18px 28px rgba(11, 24, 27, 0.16);
  backdrop-filter: blur(12px);
  animation: float 16s ease-in-out infinite;
}

.visual-pill strong,
.visual-pill span {
  display: block;
}

.visual-pill strong {
  color: var(--ink);
  font-size: 0.94rem;
}

.visual-pill span {
  margin-top: 0.18rem;
  color: var(--muted);
  font-size: 0.8rem;
}

.visual-pill-enterprise {
  top: 12%;
  left: 6%;
}

.visual-pill-campus {
  bottom: 18%;
  left: 8%;
  animation-delay: 2s;
}

.visual-pill-graduate {
  top: 18%;
  right: 7%;
  animation-delay: 3.5s;
}

.visual-pill-agent {
  right: 10%;
  bottom: 14%;
  animation-delay: 1s;
}

.hero-visual-footer {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.68rem;
  margin-top: 0.68rem;
}

.visual-stat {
  padding: 0.72rem 0.84rem;
  border-radius: 1.15rem;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.visual-stat strong,
.visual-stat span {
  display: block;
}

.visual-stat strong {
  color: #f1dfbc;
  font-size: 1.18rem;
  font-weight: 800;
}

.visual-stat span {
  margin-top: 0.3rem;
  color: rgba(244, 239, 230, 0.68);
  font-size: 0.8rem;
  line-height: 1.5;
}

.promise-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.2rem;
}

.promise-card {
  padding: 1.2rem 1.2rem 1.25rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid rgba(20, 33, 36, 0.08);
  box-shadow: 0 18px 42px rgba(29, 43, 46, 0.08);
}

.promise-index {
  display: inline-flex;
  min-width: 2.15rem;
  height: 2.15rem;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(29, 138, 135, 0.12);
  color: var(--teal);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.promise-card h2 {
  margin-top: 1rem;
  font-size: 1.15rem;
}

.hero-console {
  display: grid;
  gap: 1rem;
  margin-top: 1.55rem;
}

.console-card,
.board {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.8), rgba(249, 243, 234, 0.68));
  border: 1px solid rgba(20, 33, 36, 0.08);
  border-radius: var(--radius-xl);
  padding: 1.35rem;
  box-shadow: var(--shadow);
  backdrop-filter: blur(24px);
}

.command-deck {
  overflow: hidden;
}

.console-header,
.split-head,
.board-header {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 1rem;
}

.status-badge,
.feed-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.6rem 0.9rem;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(19, 38, 43, 0.96), rgba(39, 78, 84, 0.92));
  color: #edf6f3;
  font-size: 0.85rem;
}

.pulse-dot {
  width: 0.72rem;
  height: 0.72rem;
  border-radius: 50%;
  background: #8de4d2;
  box-shadow: 0 0 0 rgba(141, 228, 210, 0.42);
  animation: pulse 2.6s ease-out infinite;
}

.console-summary {
  margin: 1rem 0 0;
}

.stream-list {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.35rem;
}

.stream-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem;
  align-items: start;
  padding: 1rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(20, 33, 36, 0.06);
}

.stream-index {
  display: inline-grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  border-radius: 0.75rem;
  background: linear-gradient(135deg, rgba(29, 138, 135, 0.14), rgba(229, 113, 63, 0.14));
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 800;
}

.stream-text {
  margin: 0;
  font-size: 0.96rem;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.35rem;
}

.intent-form {
  margin-top: 1.35rem;
  padding: 1rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, rgba(18, 34, 38, 0.96), rgba(33, 60, 64, 0.94));
}

.intent-label {
  display: block;
  color: rgba(237, 248, 247, 0.86);
  font-size: 0.9rem;
  font-weight: 700;
}

.intent-row {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.8rem;
}

.intent-input {
  width: 100%;
  min-width: 0;
  padding: 0.95rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(237, 248, 247, 0.14);
  background: rgba(255, 255, 255, 0.08);
  color: #f4f7f6;
  font: inherit;
}

.intent-input::placeholder {
  color: rgba(237, 248, 247, 0.48);
}

.intent-input:focus {
  outline: none;
  border-color: rgba(116, 240, 208, 0.62);
  box-shadow: 0 0 0 4px rgba(116, 240, 208, 0.12);
}

.compact-button {
  white-space: nowrap;
  box-shadow: none;
}

.intent-feedback {
  margin: 0.8rem 0 0;
  color: rgba(237, 248, 247, 0.68);
  line-height: 1.65;
  font-size: 0.92rem;
}

.prompt-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 0.95rem;
}

.prompt-chip {
  padding: 0.6rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(237, 248, 247, 0.12);
  background: rgba(255, 255, 255, 0.07);
  color: rgba(244, 247, 246, 0.82);
  font-size: 0.86rem;
  font-weight: 600;
}

.prompt-chip:hover {
  background: rgba(141, 228, 210, 0.14);
  color: #f5fbfa;
}

.scenario-chip {
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: rgba(20, 33, 36, 0.06);
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 700;
}

.scenario-chip.is-active {
  background: linear-gradient(135deg, var(--bg-deep), #295257);
  color: #eef8f7;
  box-shadow: 0 16px 26px rgba(14, 28, 31, 0.24);
}

.deck-note,
.board-hint {
  max-width: 15rem;
  margin: 0;
  font-size: 0.92rem;
}

.metric-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 1.2rem;
}

.metric-card {
  padding: 1rem;
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, rgba(19, 38, 43, 0.98), rgba(26, 54, 57, 0.92));
  color: #f5f3ef;
}

.metric-card span,
.match-card span,
.workflow-card span,
.feed-item time,
.spotlight-eyebrow {
  display: block;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.metric-card span,
.spotlight-eyebrow {
  color: rgba(237, 248, 247, 0.72);
}

.metric-card strong {
  display: block;
  margin-top: 0.6rem;
  font-size: 1.55rem;
  font-weight: 800;
}

.metric-card p {
  margin: 0.45rem 0 0;
  color: rgba(237, 248, 247, 0.68);
  line-height: 1.6;
  font-size: 0.92rem;
}

.spotlight-card {
  margin-top: 1rem;
  padding: 1.2rem;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at top right, rgba(184, 154, 99, 0.26), transparent 38%),
    linear-gradient(135deg, rgba(44, 124, 120, 0.16), rgba(255, 255, 255, 0.8));
  border: 1px solid rgba(20, 33, 36, 0.08);
}

.spotlight-title {
  margin-top: 0.55rem;
  font-size: 1.42rem;
}

.spotlight-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1rem;
}

.spotlight-tag {
  padding: 0.5rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.66);
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--ink);
}

.studio,
.principles,
.magnet-section {
  padding-top: 4.5rem;
}

.magnet-shell {
  position: relative;
  overflow: hidden;
  padding: 2rem;
  border-radius: 2rem;
  background:
    radial-gradient(circle at top right, rgba(229, 113, 63, 0.18), transparent 26%),
    radial-gradient(circle at left center, rgba(29, 138, 135, 0.16), transparent 30%),
    linear-gradient(135deg, rgba(14, 28, 31, 0.95), rgba(29, 44, 48, 0.94));
  box-shadow: 0 30px 60px rgba(14, 28, 31, 0.22);
}

.magnet-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 88px 88px;
  opacity: 0.22;
  pointer-events: none;
}

.magnet-heading,
.magnet-grid {
  position: relative;
  z-index: 1;
}

.magnet-heading {
  max-width: 50rem;
}

.magnet-eyebrow {
  color: #8adbd1;
}

.magnet-heading h2,
.magnet-card h3,
.magnet-card p,
.magnet-card span {
  color: #f7efe2;
}

.magnet-heading h2 {
  margin-top: 0.9rem;
  font-size: clamp(2.1rem, 4vw, 3.8rem);
  line-height: 1.08;
}

.magnet-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.8rem;
}

.magnet-card {
  padding: 1.25rem;
  border-radius: 1.5rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.magnet-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #8adbd1;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.magnet-card h3 {
  margin-top: 1rem;
  font-size: 1.2rem;
  line-height: 1.25;
}

.magnet-card p {
  margin-top: 0.8rem;
  color: rgba(247, 239, 226, 0.74);
  line-height: 1.7;
}

.section-heading {
  max-width: none;
}

.section-heading > h2 {
  margin-top: 1rem;
  font-size: clamp(2rem, 3vw, 2.95rem);
  line-height: 1.12;
}

.section-heading p {
  margin-top: 1rem;
}

.section-heading.narrow {
  max-width: none;
}

.section-title-inline {
  white-space: nowrap;
}

.section-title-wide {
  font-size: clamp(1.85rem, 2.75vw, 2.75rem);
}

.section-description {
  max-width: 44rem;
}

.section-heading.narrow .section-description {
  max-width: 40rem;
}

.studio-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 1rem;
  margin-top: 2rem;
}

.workflow-steps {
  display: grid;
  gap: 0.9rem;
  margin-top: 1.2rem;
}

.workflow-card {
  padding: 1rem 1rem 1.05rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(20, 33, 36, 0.08);
}

.workflow-card h4,
.match-name {
  margin-top: 0.55rem;
  font-size: 1.05rem;
}

.workflow-card p {
  margin: 0.55rem 0 0;
  font-size: 0.94rem;
}

.match-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 1.2rem;
}

.match-card {
  padding: 1rem;
  border-radius: var(--radius-md);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(245, 248, 248, 0.7));
  border: 1px solid rgba(20, 33, 36, 0.08);
  box-shadow: 0 16px 28px rgba(18, 35, 39, 0.08);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.match-card span {
  color: var(--teal);
  font-weight: 800;
}

.match-score {
  display: inline-flex;
  margin-top: 0.75rem;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  background: rgba(29, 138, 135, 0.12);
  color: var(--teal);
  font-size: 0.88rem;
  font-weight: 800;
}

.match-meta,
.match-signal {
  margin: 0.55rem 0 0;
  font-size: 0.94rem;
}

.match-signal {
  color: var(--ink);
  font-weight: 700;
}

.activity-board {
  margin-top: 1rem;
}

.activity-feed {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 1.2rem;
}

.feed-item {
  padding: 1rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(20, 33, 36, 0.08);
}

.feed-item time {
  color: var(--teal);
  font-weight: 800;
}

.feed-item h4 {
  margin-top: 0.7rem;
  font-size: 1rem;
}

.feed-item p {
  margin: 0.55rem 0 0;
  font-size: 0.94rem;
}

.principle-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.principle-card {
  padding: 1.25rem;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(14, 28, 31, 0.92), rgba(36, 56, 60, 0.88));
  color: #f7f1e6;
  box-shadow: 0 26px 48px rgba(14, 28, 31, 0.22);
}

.principle-card span {
  display: inline-block;
  padding: 0.45rem 0.65rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.principle-card p {
  margin: 1rem 0 0;
  color: rgba(247, 241, 230, 0.76);
}

.footer {
  padding: 4rem 0 1.5rem;
}

.footer p {
  max-width: 40rem;
  margin: 0;
}

.reveal {
  opacity: 0;
  animation: slide-up 800ms cubic-bezier(0.2, 1, 0.3, 1) forwards;
}

.reveal-delay-1 {
  animation-delay: 100ms;
}

.reveal-delay-2 {
  animation-delay: 180ms;
}

.reveal-delay-3 {
  animation-delay: 260ms;
}

.reveal-delay-4 {
  animation-delay: 340ms;
}

.reveal-delay-5 {
  animation-delay: 420ms;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(116, 240, 208, 0.4);
  }

  70% {
    box-shadow: 0 0 0 14px rgba(116, 240, 208, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(116, 240, 208, 0);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, 1.5rem, 0) scale(1.03);
  }
}

@keyframes orbit-spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes slide-up {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1080px) {
  .hero,
  .studio-grid,
  .principle-grid,
  .magnet-grid {
    grid-template-columns: 1fr;
  }

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

  .hero-console {
    margin-top: 0;
  }

  .hero-visual-stage {
    min-height: 22.5rem;
  }
}

@media (max-width: 760px) {
  .page-shell {
    width: min(var(--container), calc(100% - 1rem));
  }

  .topbar,
  .topbar-meta,
  .console-header,
  .split-head,
  .board-header {
    flex-direction: column;
    align-items: stretch;
  }

  .promise-grid,
  .hero-stance,
  .match-grid,
  .metric-strip,
  .activity-feed {
    grid-template-columns: 1fr;
  }

  .intent-row {
    flex-direction: column;
  }

  h1 {
    font-size: clamp(2.6rem, 12vw, 4rem);
  }

  .hero-title-bridge,
  .section-title-inline {
    white-space: normal;
  }

  .hero-title {
    max-width: 100%;
    gap: 0.4rem;
  }

  .hero-heading-panel {
    padding: 0.8rem 1rem 0.95rem;
    border-radius: 1.5rem;
  }

  .hero-visual-card {
    width: 100%;
    padding: 0.95rem;
  }

  .hero-visual-topline {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-visual-stage {
    min-height: 19rem;
  }

  .visual-caption {
    max-width: none;
  }

  .visual-pill {
    min-width: 6.2rem;
    padding: 0.6rem 0.72rem 0.66rem;
    border-radius: 0.95rem;
  }

  .visual-pill strong {
    font-size: 0.88rem;
  }

  .visual-pill span {
    font-size: 0.74rem;
  }

  .visual-pill-enterprise {
    top: 10%;
    left: 4%;
  }

  .visual-pill-campus {
    bottom: 15%;
    left: 4%;
  }

  .visual-pill-graduate {
    top: 13%;
    right: 4%;
  }

  .visual-pill-agent {
    right: 5%;
    bottom: 11%;
  }

  .hero-visual-footer {
    grid-template-columns: 1fr;
    gap: 0.55rem;
  }

  .hero-title-primary {
    font-size: clamp(2.2rem, 10vw, 3.25rem);
  }

  .hero-title-bridge {
    gap: 0.55rem 0.7rem;
    padding-left: 0;
  }

  .hero-title-lead {
    font-size: 0.88rem;
    letter-spacing: 0.12em;
  }

  .hero-title-accent {
    padding: 0.28rem 0.72rem 0.34rem;
    font-size: 0.98rem;
  }

  .hero-title-anchor {
    font-size: clamp(2.85rem, 13vw, 4.15rem);
    transform: none;
  }

  .section-heading > h2,
  .section-title-wide {
    font-size: clamp(1.95rem, 10vw, 3rem);
  }

  .console-card,
  .board,
  .promise-card,
  .principle-card,
  .magnet-shell {
    padding: 1.1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
