:root {
  --bg: #070b14;
  --bg-soft: #0b1120;
  --panel: #101827;
  --panel-2: #121d30;
  --ink: #f7f9ff;
  --muted: #98a5bb;
  --muted-2: #6f7e96;
  --line: rgba(162, 180, 214, 0.14);
  --line-strong: rgba(162, 180, 214, 0.25);
  --purple: #8c6cff;
  --blue: #28c7ff;
  --cyan: #7be7ff;
  --green: #5ce0a7;
  --shadow: 0 28px 100px rgba(0, 0, 0, 0.38);
  --radius: 28px;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, system-ui, sans-serif;
  overflow-x: hidden;
}
body:before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(to bottom, black, transparent 72%);
  pointer-events: none;
  z-index: -3;
}
.noise {
  position: fixed;
  inset: 0;
  opacity: 0.035;
  pointer-events: none;
  z-index: 20;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.85'/%3E%3C/svg%3E");
}
.ambient {
  position: fixed;
  border-radius: 50%;
  filter: blur(110px);
  opacity: 0.18;
  pointer-events: none;
  z-index: -2;
}
.ambient-one {
  width: 540px;
  height: 540px;
  background: #4f38ff;
  top: -220px;
  left: -150px;
}
.ambient-two {
  width: 560px;
  height: 560px;
  background: #009ed1;
  top: 180px;
  right: -300px;
}
.shell {
  width: min(1160px, calc(100% - 48px));
  margin-inline: auto;
}
.nav {
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 10;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: inherit;
  text-decoration: none;
}
.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font: 800 13px Manrope;
  background: linear-gradient(
    145deg,
    rgba(140, 108, 255, 0.24),
    rgba(40, 199, 255, 0.16)
  );
  border: 1px solid rgba(140, 108, 255, 0.35);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.12);
}
.brand > span:last-child {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.brand strong {
  font-size: 14px;
}
.brand small {
  font-size: 10px;
  color: var(--muted);
}
nav {
  display: flex;
  gap: 26px;
  align-items: center;
}
nav a {
  font-size: 12px;
  color: var(--muted);
  text-decoration: none;
  transition: 0.2s;
}
nav a:hover {
  color: var(--ink);
}
.nav-cta {
  color: var(--ink) !important;
  border: 1px solid var(--line-strong);
  padding: 11px 15px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
}
.nav-cta:hover {
  background: rgba(255, 255, 255, 0.07);
  transform: translateY(-1px);
}
.hero {
  padding: 94px 0 54px;
  text-align: center;
  position: relative;
}
.hero-badge,
.eyebrow,
.kicker,
.section-heading > span {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 800;
  color: var(--cyan);
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(123, 231, 255, 0.2);
  background: rgba(123, 231, 255, 0.055);
}
.hero-badge span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 14px var(--green);
}
h1 {
  font: 800 clamp(54px, 8.3vw, 108px)/0.93 Manrope;
  letter-spacing: -0.065em;
  margin: 28px auto 25px;
  max-width: 1000px;
}
h1 em {
  font-style: normal;
  background: linear-gradient(95deg, #a692ff 5%, #65d9ff 72%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.lede {
  max-width: 760px;
  margin: 0 auto 42px;
  font-size: 18px;
  line-height: 1.7;
  color: var(--muted);
}
.ask-panel {
  position: relative;
  text-align: left;
  background: linear-gradient(
    180deg,
    rgba(19, 30, 49, 0.94),
    rgba(12, 19, 33, 0.94)
  );
  border: 1px solid var(--line-strong);
  border-radius: 32px;
  padding: 20px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.ask-panel:before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(
    130deg,
    rgba(140, 108, 255, 0.7),
    transparent 25%,
    transparent 70%,
    rgba(40, 199, 255, 0.5)
  );
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.ask-glow {
  position: absolute;
  width: 420px;
  height: 220px;
  top: -170px;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(
    circle,
    rgba(140, 108, 255, 0.28),
    transparent 68%
  );
  pointer-events: none;
}
.ask-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 4px 3px 16px;
}
.ask-heading > div {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.ask-heading strong {
  font: 700 17px Manrope;
}
.ask-heading small {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--muted);
  font-size: 11px;
}
.ask-heading small i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 12px var(--green);
}
textarea {
  width: 100%;
  resize: vertical;
  color: var(--ink);
  background: rgba(3, 8, 17, 0.55);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 20px;
  font: 500 17px/1.55 Inter;
  outline: none;
  min-height: 118px;
  transition: 0.2s;
}
textarea::placeholder {
  color: #66748b;
}
textarea:focus {
  border-color: rgba(140, 108, 255, 0.68);
  box-shadow: 0 0 0 4px rgba(140, 108, 255, 0.1);
}
.prompt-footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  margin-top: 12px;
}
.job-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.035);
  color: var(--muted);
  border-radius: 14px;
  padding: 12px 14px;
  cursor: pointer;
  font-weight: 600;
}
.job-toggle:hover {
  color: var(--ink);
  border-color: var(--line-strong);
}
.button-icon {
  font-size: 18px;
  color: var(--cyan);
}
.key-hint {
  font-size: 10px;
  color: var(--muted-2);
}
kbd {
  font: 600 9px Inter;
  padding: 3px 6px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid var(--line);
}
.primary-btn {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 18px;
  border: 0;
  border-radius: 15px;
  padding: 14px 18px;
  color: #07101c;
  background: linear-gradient(110deg, #9c83ff, #64dcff);
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(65, 190, 255, 0.15);
  transition: 0.25s;
}
.primary-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 42px rgba(91, 154, 255, 0.27);
}
.primary-btn:active {
  transform: translateY(0);
}
.primary-btn:disabled {
  opacity: 0.65;
  cursor: wait;
  transform: none;
}
.button-shine {
  position: absolute;
  inset: -100% auto -100% -30%;
  width: 30%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.6),
    transparent
  );
  transform: rotate(18deg);
  transition: left 0.55s;
}
.primary-btn:hover .button-shine {
  left: 110%;
}
.arrow {
  font-size: 20px;
}
.job-panel {
  margin-top: 15px;
  padding: 17px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(3, 8, 17, 0.45);
}
.job-panel-head {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  margin-bottom: 13px;
}
.job-panel-head > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.job-panel-head strong {
  font-family: Manrope;
}
.job-panel-head span:last-child {
  font-size: 11px;
  color: var(--muted);
}
.job-panel-head button {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--muted);
  font-size: 20px;
  cursor: pointer;
}
.job-panel textarea {
  min-height: 180px;
  font-size: 14px;
}
.suggestions {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 9px;
  margin-top: 14px;
}
.suggestions button {
  display: flex;
  gap: 10px;
  text-align: left;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.025);
  color: var(--muted);
  border-radius: 14px;
  padding: 12px 14px;
  cursor: pointer;
  line-height: 1.35;
  transition: 0.2s;
}
.suggestions button span {
  color: var(--purple);
  font-size: 10px;
  font-weight: 800;
}
.suggestions button:hover {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.055);
  border-color: rgba(140, 108, 255, 0.35);
  transform: translateY(-1px);
}
.trust-row {
  display: flex;
  gap: 18px;
  padding: 15px 3px 1px;
  color: var(--muted-2);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.loading-stage {
  margin-top: 18px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  text-align: left;
  background: rgba(13, 21, 36, 0.92);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 18px 20px;
  box-shadow: var(--shadow);
}
.loader-visual {
  width: 58px;
  height: 58px;
  position: relative;
  display: grid;
  place-items: center;
}
.loader-core {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 24px var(--blue);
  animation: pulse 1.3s ease-in-out infinite;
}
.orbit {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(140, 108, 255, 0.4);
}
.orbit-a {
  width: 52px;
  height: 52px;
  animation: spin 2.8s linear infinite;
  border-top-color: var(--purple);
}
.orbit-b {
  width: 38px;
  height: 38px;
  animation: spinReverse 1.8s linear infinite;
  border-right-color: var(--blue);
}
.loading-copy-wrap {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.loading-stage strong {
  font-family: Manrope;
}
.loading-stage p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}
.loading-percent {
  font: 700 12px Manrope;
  color: var(--cyan);
}
.progress-track {
  grid-column: 1/-1;
  height: 4px;
  background: rgba(255, 255, 255, 0.055);
  border-radius: 999px;
  overflow: hidden;
}
.progress-track span {
  display: block;
  width: 8%;
  height: 100%;
  background: linear-gradient(90deg, var(--purple), var(--blue));
  border-radius: inherit;
  transition: width 0.6s ease;
  box-shadow: 0 0 18px rgba(40, 199, 255, 0.6);
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
@keyframes spinReverse {
  to {
    transform: rotate(-360deg);
  }
}
@keyframes pulse {
  50% {
    transform: scale(1.3);
    opacity: 0.65;
  }
}
.answer-wrap {
  padding: 45px 0 90px;
}
.answer-head {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: end;
  margin-bottom: 18px;
}
.answer-head h2,
.section-heading h2,
.vision h2,
.cta h2 {
  font-family: Manrope;
  font-size: clamp(36px, 5vw, 62px);
  letter-spacing: -0.045em;
  line-height: 1.03;
  margin: 10px 0 0;
}
.answer-head button {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.035);
  color: var(--ink);
  border-radius: 999px;
  padding: 11px 15px;
  cursor: pointer;
}
.answer-summary {
  font-size: 18px;
  line-height: 1.7;
  color: var(--muted);
  max-width: 850px;
}
.answer-sections {
  display: grid;
  gap: 16px;
  margin-top: 30px;
}
.answer-section {
  background: linear-gradient(
    180deg,
    rgba(18, 29, 48, 0.9),
    rgba(12, 19, 33, 0.9)
  );
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 25px;
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.2);
}
.answer-section h3 {
  font: 700 25px Manrope;
  margin: 8px 0 10px;
}
.answer-section p,
.answer-section li {
  color: var(--muted);
  line-height: 1.65;
}
.component-label {
  font-size: 10px;
  color: var(--cyan);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.story-project {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
}
.story-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
}
.story-media {
  margin: 0;
}
.story-media img {
  width: 100%;
  border-radius: 16px;
  display: block;
  background: var(--bg-soft);
}
.story-media figcaption {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 8px;
  font-size: 12px;
  color: var(--muted);
}
.story-media em {
  font-size: 10px;
  color: var(--purple);
}
.source {
  display: inline-block;
  margin: 6px 6px 0 0;
  padding: 6px 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--muted);
  font-size: 10px;
}
.timeline {
  display: grid;
  gap: 18px;
  margin-top: 20px;
}
.timeline-item {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 14px;
}
.timeline-marker {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background: rgba(140, 108, 255, 0.12);
  border: 1px solid rgba(140, 108, 255, 0.25);
  color: #b9a8ff;
  display: grid;
  place-items: center;
  font-weight: 800;
}
.timeline-item span {
  font-size: 11px;
  color: var(--cyan);
}
.timeline-item h4 {
  margin: 4px 0;
}
.fit-grid {
  display: grid;
  gap: 10px;
}
.fit-item {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 15px;
  background: rgba(255, 255, 255, 0.02);
}
.fit-item strong {
  display: block;
  margin-top: 4px;
}
.fit-item span {
  font-size: 11px;
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.caveat {
  margin-top: 18px;
  color: var(--muted-2);
  font-size: 12px;
}
.metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  padding: 55px 0 110px;
}
.metrics article {
  position: relative;
  background: linear-gradient(
    160deg,
    rgba(18, 29, 48, 0.9),
    rgba(10, 16, 28, 0.9)
  );
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 22px;
  overflow: hidden;
}
.metrics article:after {
  content: "";
  position: absolute;
  inset: auto -20% -60% 20%;
  height: 100px;
  background: radial-gradient(
    circle,
    rgba(140, 108, 255, 0.15),
    transparent 68%
  );
}
.metric-icon {
  position: absolute;
  right: 17px;
  top: 15px;
  color: var(--muted-2);
}
.metrics strong {
  font: 800 31px Manrope;
  display: block;
  margin-bottom: 5px;
}
.metrics article > span:last-child {
  font-size: 11px;
  color: var(--muted);
}
.section {
  padding: 104px 0;
}
.section-heading {
  max-width: 900px;
}
.section-heading p {
  max-width: 740px;
  color: var(--muted);
  line-height: 1.7;
}
.project-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-top: 38px;
}
.project-card {
  position: relative;
  background: linear-gradient(
    160deg,
    rgba(18, 29, 48, 0.78),
    rgba(10, 16, 28, 0.9)
  );
  border: 1px solid var(--line);
  border-radius: 25px;
  padding: 27px;
  min-height: 300px;
  transition: 0.25s;
  display: flex;
  flex-direction: column;
}
.project-card.featured {
  background: linear-gradient(
    145deg,
    rgba(40, 199, 255, 0.09),
    rgba(140, 108, 255, 0.08) 45%,
    rgba(10, 16, 28, 0.92)
  );
  border-color: rgba(123, 231, 255, 0.22);
}
.project-card:hover {
  transform: translateY(-5px);
  border-color: rgba(140, 108, 255, 0.4);
  box-shadow: 0 25px 65px rgba(0, 0, 0, 0.3);
}
.project-number {
  position: absolute;
  right: 22px;
  top: 20px;
  color: var(--muted-2);
  font: 700 12px Manrope;
}
.project-icon {
  width: 46px;
  height: 46px;
  border-radius: 15px;
  background: rgba(140, 108, 255, 0.11);
  border: 1px solid rgba(140, 108, 255, 0.22);
  color: #b9a8ff;
  display: grid;
  place-items: center;
  font-size: 20px;
}
.project-card h3 {
  font: 700 25px Manrope;
  margin: 22px 0 10px;
}
.project-card p {
  color: var(--muted);
  line-height: 1.65;
}
.chips {
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
}
.chips span {
  padding: 6px 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid var(--line);
  font-size: 9px;
  color: var(--muted);
}
.project-card a {
  margin-top: auto;
  padding-top: 28px;
  color: var(--cyan);
  font-size: 12px;
  text-decoration: none;
  font-weight: 700;
}
.project-card a span {
  transition: 0.2s;
  display: inline-block;
}
.project-card a:hover span {
  transform: translateX(4px);
}
.vision {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 70px;
  align-items: center;
}
.vision-copy > p {
  color: var(--muted);
  line-height: 1.75;
  font-size: 17px;
}
.vision-points {
  display: grid;
  gap: 22px;
  margin-top: 32px;
}
.vision-points > div {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 14px;
}
.vision-points b {
  font: 700 11px Manrope;
  color: var(--purple);
  padding-top: 3px;
}
.vision-points span {
  color: var(--muted);
  line-height: 1.6;
  font-size: 13px;
}
.vision-points strong {
  display: block;
  color: var(--ink);
  font-size: 14px;
  margin-bottom: 3px;
}
.career-graph {
  position: relative;
  background:
    radial-gradient(
      circle at center,
      rgba(140, 108, 255, 0.1),
      transparent 53%
    ),
    linear-gradient(160deg, rgba(18, 29, 48, 0.65), rgba(8, 13, 23, 0.86));
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: 20px;
  box-shadow: var(--shadow);
}
.graph-label {
  position: absolute;
  left: 22px;
  top: 18px;
  color: var(--muted-2);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 800;
}
.career-graph svg {
  display: block;
  width: 100%;
  height: auto;
}
.graph-node circle {
  fill: #0e1727;
  stroke: rgba(140, 108, 255, 0.65);
  stroke-width: 2;
}
.graph-node text {
  fill: var(--ink);
  font: 600 13px Inter;
  text-anchor: middle;
}
.graph-node.small circle {
  fill: #0c1423;
  stroke: rgba(40, 199, 255, 0.4);
}
.graph-node.small text {
  font-size: 11px;
  fill: var(--muted);
}
.graph-node.opportunity circle {
  fill: rgba(92, 224, 167, 0.08);
  stroke: rgba(92, 224, 167, 0.55);
}
.graph-note {
  color: var(--muted-2);
  font-size: 10px;
  line-height: 1.5;
  padding: 0 5px 3px;
}
.system-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 38px;
}
.system-flow article {
  position: relative;
  padding: 24px 20px 22px;
  border-top: 1px solid var(--line-strong);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.018), transparent);
  min-height: 220px;
}
.system-flow b {
  color: var(--purple);
  font-size: 10px;
}
.system-icon {
  font-size: 24px;
  color: var(--cyan);
  margin-top: 25px;
}
.system-flow h3 {
  font: 700 21px Manrope;
}
.system-flow p {
  color: var(--muted);
  line-height: 1.65;
  font-size: 13px;
}
.system-callout {
  margin-top: 25px;
  border: 1px solid rgba(123, 231, 255, 0.2);
  background: linear-gradient(
    90deg,
    rgba(40, 199, 255, 0.07),
    rgba(140, 108, 255, 0.06)
  );
  border-radius: 18px;
  padding: 19px 22px;
  display: flex;
  gap: 25px;
  align-items: center;
}
.system-callout span {
  font-size: 9px;
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  white-space: nowrap;
}
.system-callout strong {
  font: 600 14px/1.55 Manrope;
}
.cta {
  margin-top: 20px;
  margin-bottom: 110px;
  border: 1px solid var(--line-strong);
  border-radius: 30px;
  background: linear-gradient(
    120deg,
    rgba(140, 108, 255, 0.13),
    rgba(40, 199, 255, 0.07)
  );
  padding: 48px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  box-shadow: var(--shadow);
}
.cta h2 {
  max-width: 760px;
  font-size: clamp(34px, 4.5vw, 58px);
}
.cta > a {
  display: flex;
  align-items: center;
  gap: 20px;
  white-space: nowrap;
  text-decoration: none;
  color: #07101c;
  background: linear-gradient(110deg, #a38bff, #6de1ff);
  font-weight: 800;
  border-radius: 16px;
  padding: 15px 19px;
}
.cta > a:hover {
  transform: translateY(-2px);
}
footer {
  border-top: 1px solid var(--line);
  padding: 36px 0 48px;
  display: flex;
  justify-content: space-between;
  color: var(--muted-2);
  font-size: 10px;
}
footer div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
footer strong {
  color: var(--ink);
}
.footer-links {
  flex-direction: row;
  align-items: center;
  gap: 20px;
}
.footer-links a {
  color: var(--muted);
  text-decoration: none;
}
.footer-links a:hover {
  color: var(--ink);
}
@media (max-width: 900px) {
  nav a:not(.nav-cta) {
    display: none;
  }
  .vision {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .system-flow {
    grid-template-columns: 1fr 1fr;
  }
  .prompt-footer {
    grid-template-columns: auto 1fr;
  }
  .primary-btn {
    grid-column: 1/-1;
    justify-content: center;
  }
  .metrics {
    grid-template-columns: 1fr 1fr;
  }
  .story-project {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 650px) {
  .shell {
    width: min(100% - 24px, 1160px);
  }
  .nav {
    height: 74px;
  }
  .brand small {
    display: none;
  }
  .nav-cta {
    font-size: 11px !important;
  }
  .hero {
    padding-top: 54px;
  }
  .hero-badge {
    font-size: 9px;
  }
  h1 {
    font-size: 50px;
  }
  .lede {
    font-size: 15px;
  }
  .ask-panel {
    padding: 14px;
    border-radius: 23px;
  }
  .ask-heading {
    flex-direction: column;
    gap: 12px;
  }
  .prompt-footer {
    grid-template-columns: 1fr;
  }
  .key-hint {
    display: none;
  }
  .primary-btn {
    justify-content: space-between;
  }
  .suggestions {
    grid-template-columns: 1fr;
  }
  .trust-row {
    gap: 9px;
    flex-wrap: wrap;
  }
  .loading-stage {
    grid-template-columns: auto 1fr;
  }
  .loading-percent {
    display: none;
  }
  .metrics,
  .project-grid,
  .system-flow {
    grid-template-columns: 1fr;
  }
  .metrics {
    padding-bottom: 55px;
  }
  .section {
    padding: 66px 0;
  }
  .answer-head {
    align-items: stretch;
    flex-direction: column;
  }
  .career-graph {
    padding: 10px;
  }
  .system-callout {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }
  .cta {
    padding: 28px;
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 65px;
  }
  .cta > a {
    width: 100%;
    justify-content: space-between;
  }
  footer {
    flex-direction: column;
    gap: 18px;
  }
  .footer-links {
    order: 3;
  }
  .loading-stage {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .loader-visual {
    margin: auto;
  }
  .progress-track {
    grid-column: 1;
  }
  .loading-copy-wrap {
    align-items: center;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
