:root {
  color-scheme: light;
  --bg: #f4f6f4;
  --surface: rgba(255, 255, 255, 0.9);
  --white: #ffffff;
  --ink: #101418;
  --muted: #66706f;
  --line: rgba(16, 20, 24, 0.1);
  --blue: #1267ff;
  --mint: #11b89c;
  --clay: #b66b4d;
  --gold: #b58a35;
  --plum: #5d4a72;
  --shadow: 0 18px 48px rgba(23, 31, 38, 0.08);
  --soft-shadow: 0 8px 22px rgba(23, 31, 38, 0.06);
  --radius: 14px;
  --page-max: 1560px;
  --page-pad: clamp(18px, 3vw, 44px);
  --section-gap: 18px;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: var(--bg);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 50% -180px, rgba(52, 91, 255, 0.12), transparent 460px),
    linear-gradient(180deg, #f8faff 0%, #f4f7fb 44%, #eef4f5 100%);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 15px;
  letter-spacing: 0;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

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

.app-shell {
  width: min(var(--page-max), 100%);
  margin: 0 auto;
  padding: 18px var(--page-pad) 24px;
}

.topbar {
  position: relative;
  top: auto;
  z-index: 20;
  width: min(1160px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(250px, 0.8fr) minmax(620px, 1.6fr) minmax(110px, auto);
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(16, 20, 24, 0.07);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 10px 28px rgba(23, 31, 38, 0.06);
  backdrop-filter: blur(20px);
  padding: 8px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-copy {
  min-width: 0;
}

.brand-mark {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  overflow: hidden;
  border: 1px solid rgba(22, 119, 255, 0.14);
  border-radius: 12px;
  background: #eef6ff;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  box-shadow: 0 12px 28px rgba(18, 103, 255, 0.14);
}

.brand-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nextoffer-brand-symbol {
  background-color: #fff;
  background-image: url("./assets/nextoffer-brand-v2.png");
  background-position: 50.5% 32.4%;
  background-repeat: no-repeat;
  background-size: 465% auto;
}

.section-head p,
.card-head p,
.action-panel p {
  margin: 0 0 4px;
  color: var(--mint);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.brand-name {
  margin: 0;
  color: #6e22b8;
  font-size: 1.22rem;
  font-weight: 900;
  line-height: 1.05;
  white-space: nowrap;
}

.brand-name span {
  color: #00aedd;
}

.brand-subtitle {
  margin: 5px 0 0;
  color: #667085;
  font-size: 0.69rem;
  font-weight: 780;
  line-height: 1.2;
  white-space: nowrap;
}

.top-nav {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 6px;
  border-radius: 12px;
  background: rgba(16, 20, 24, 0.035);
  padding: 4px;
}

.nav-btn,
.pool-tab {
  display: grid;
  place-items: center;
  min-height: 38px;
  border: 0;
  border-radius: 9px;
  background: transparent;
  color: #475467;
  font-size: 0.84rem;
  font-weight: 800;
  text-decoration: none;
  transition:
    background 160ms ease,
    color 160ms ease,
    transform 160ms ease;
}

.nav-btn.active,
.pool-tab.active {
  color: #345bff;
  background: var(--white);
  box-shadow: 0 8px 20px rgba(23, 31, 38, 0.07);
}

.nav-btn:hover,
.pool-tab:hover {
  transform: translateY(-1px);
}

.nav-btn.is-secondary {
  color: #667085;
  opacity: 0.78;
}

.primary-btn,
.secondary-btn {
  min-height: 42px;
  border-radius: 10px;
  border: 1px solid transparent;
  padding: 0 18px;
  font-weight: 850;
}

.primary-btn {
  color: #fff;
  background: linear-gradient(135deg, #10234a, #345bff 68%, #11b89c);
  box-shadow: 0 14px 28px rgba(52, 91, 255, 0.2);
}

.secondary-btn {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.84);
  border-color: var(--line);
}

.primary-btn,
.secondary-btn {
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    border-color 160ms ease;
}

.primary-btn:hover,
.secondary-btn:hover {
  transform: translateY(-1px);
}

.compact {
  min-height: 42px;
}

.wide {
  width: 100%;
}

.banner-carousel {
  position: relative;
  margin-top: var(--section-gap);
}

.banner-viewport {
  height: 300px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--soft-shadow);
}

.banner-track {
  display: flex;
  height: 100%;
  transform: translateX(calc(var(--slide, 0) * -100%));
  transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.banner-slide {
  flex: 0 0 100%;
  height: 100%;
  min-height: 0;
  overflow: hidden;
  padding: 18px;
}

.idea-slide {
  display: grid;
  place-items: center;
  background: #fff;
  padding: 28px 18px;
}

.result-slide {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(420px, 0.92fr);
  gap: 18px;
  align-items: stretch;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(246, 250, 252, 0.94)),
    #fff;
}

.banner-arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(16, 20, 24, 0.1);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.88);
  color: #344054;
  box-shadow: 0 14px 34px rgba(23, 31, 38, 0.12);
  font-size: 1.55rem;
  font-weight: 700;
  transform: translateY(-50%);
}

.banner-prev {
  left: 14px;
}

.banner-next {
  right: 14px;
}

.banner-dots {
  display: flex;
  justify-content: center;
  gap: 7px;
  margin-top: 10px;
}

.banner-dots button {
  width: 26px;
  height: 8px;
  border: 0;
  border-radius: 999px;
  background: rgba(16, 20, 24, 0.12);
  padding: 0;
  transition:
    width 160ms ease,
    background 160ms ease;
}

.banner-dots button.active {
  width: 42px;
  background: linear-gradient(135deg, var(--blue), var(--mint));
}

.idea-box {
  width: min(760px, 100%);
  text-align: center;
}

.idea-box p {
  margin: 0 0 10px;
  color: var(--mint);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.idea-box h2 {
  margin: 0 auto 14px;
  font-size: 2.08rem;
  line-height: 1.05;
}

.home-slogan {
  display: block;
  margin: -4px 0 18px;
  color: #344054;
  font-size: 1rem;
  line-height: 1.5;
}

.idea-input-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: stretch;
  border: 1px solid rgba(16, 20, 24, 0.08);
  border-radius: 20px;
  background: rgba(248, 250, 252, 0.92);
  box-shadow: 0 20px 60px rgba(23, 31, 38, 0.1);
  padding: 10px;
}

.idea-input-shell textarea {
  min-height: 66px;
  border: 0;
  border-radius: 14px;
  background: transparent;
  padding: 14px;
  resize: none;
}

.idea-input-shell textarea:focus {
  box-shadow: none;
}

.idea-input-shell .primary-btn {
  align-self: stretch;
  min-width: 150px;
}

.idea-suggestions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
}

.idea-suggestions button {
  min-height: 34px;
  border: 1px solid rgba(18, 103, 255, 0.12);
  border-radius: 999px;
  background: rgba(18, 103, 255, 0.06);
  color: #155eef;
  padding: 0 12px;
  font-size: 0.78rem;
  font-weight: 850;
}

.home-clean-hero {
  width: min(880px, 100%);
  margin: 82px auto 0;
  text-align: center;
}

.home-clean-hero p {
  margin: 0 0 14px;
  color: #155eef;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.home-clean-hero h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2.05rem, 4.1vw, 3.35rem);
  letter-spacing: 0;
  line-height: 1.04;
}

.home-clean-hero h2 span {
  color: #345bff;
}

.home-clean-hero > strong {
  display: block;
  margin: 20px auto 0;
  max-width: 720px;
  color: #667085;
  font-size: 1rem;
  font-weight: 760;
  line-height: 1.7;
}

.home-command {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 150px;
  gap: 10px;
  width: min(720px, 100%);
  margin: 34px auto 0;
  border: 1px solid rgba(16, 20, 24, 0.1);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 18px 52px rgba(23, 31, 38, 0.09);
  padding: 8px;
}

.home-command textarea {
  min-height: 52px;
  border: 0;
  border-radius: 12px;
  background: transparent;
  padding: 14px 16px;
  font-size: 0.95rem;
  resize: none;
}

.home-command textarea:focus {
  box-shadow: none;
}

.home-command .primary-btn {
  min-height: 52px;
  border-radius: 12px;
  background: linear-gradient(135deg, #345bff, #1267ff);
}

.home-prompts {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 16px;
}

.home-prompts button {
  min-height: 34px;
  border: 1px solid rgba(16, 20, 24, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: #667085;
  padding: 0 14px;
  font-size: 0.8rem;
  font-weight: 820;
}

.home-section-title {
  width: min(1120px, 100%);
  margin: 0 auto 18px;
}

.home-section-title h3 {
  margin: 0 0 10px;
  font-size: 1.45rem;
  line-height: 1.25;
}

.home-section-title span {
  color: #667085;
  font-weight: 760;
}

.home-module-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  width: min(1120px, 100%);
  margin: 0 auto 92px;
}

.home-module-card {
  position: relative;
  display: grid;
  gap: 12px;
  min-height: 176px;
  overflow: hidden;
  border: 1px solid rgba(16, 20, 24, 0.08);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.92);
  color: inherit;
  text-decoration: none;
  box-shadow: 0 14px 34px rgba(23, 31, 38, 0.065);
  padding: 24px;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    border-color 160ms ease;
}

.home-module-card--webapply {
  border-color: rgba(255, 255, 255, 0.54);
  box-shadow: 0 18px 42px rgba(56, 65, 186, 0.2);
}

.home-module-color-bg {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  pointer-events: none;
}

.home-module-color-bg::after {
  position: absolute;
  inset: 0;
  background: rgba(17, 24, 39, 0.16);
  content: "";
}

.home-module-color-bg span:nth-child(1) {
  background: #ff3b30;
}

.home-module-color-bg span:nth-child(2) {
  background: #ff8a00;
}

.home-module-color-bg span:nth-child(3) {
  background: #ffc400;
}

.home-module-color-bg span:nth-child(4) {
  background: #34c759;
}

.home-module-color-bg span:nth-child(5) {
  background: #00b8d9;
}

.home-module-color-bg span:nth-child(6) {
  background: #1677ff;
}

.home-module-color-bg span:nth-child(7) {
  background: #af52de;
}

.home-module-card--webapply > :not(.home-module-color-bg) {
  position: relative;
  z-index: 1;
}

.home-module-card.home-module-card--webapply i {
  background: rgba(255, 255, 255, 0.92);
  color: #345bff;
  box-shadow: 0 8px 18px rgba(17, 24, 39, 0.18);
}

.home-module-card.home-module-card--webapply h3 {
  color: #fff;
  text-shadow: 0 2px 6px rgba(17, 24, 39, 0.3);
}

.home-module-card.home-module-card--webapply p {
  color: rgba(255, 255, 255, 0.96);
  font-weight: 820;
  text-shadow: 0 2px 6px rgba(17, 24, 39, 0.32);
}

.home-module-card:hover {
  border-color: rgba(52, 91, 255, 0.2);
  box-shadow: 0 22px 46px rgba(23, 31, 38, 0.1);
  transform: translateY(-2px);
}

.home-module-card i {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 9px;
  background: rgba(52, 91, 255, 0.08);
  color: #345bff;
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 900;
}

.home-module-card h3 {
  margin: 6px 0 0;
  font-size: 1.16rem;
  line-height: 1.25;
}

.home-module-card p {
  margin: 0;
  color: #667085;
  font-size: 0.88rem;
  font-weight: 760;
  line-height: 1.65;
}

.hero-copy,
.hero-card,
.market-panel,
.glass-card,
.signal-strip article,
.status-board article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px);
}

.hero-copy {
  position: relative;
  overflow: hidden;
  padding: 24px 28px;
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0.96), rgba(250, 252, 250, 0.9)),
    linear-gradient(180deg, rgba(17, 184, 156, 0.08), transparent);
}

.premium-copy {
  display: grid;
  align-content: start;
}

.premium-copy h2 {
  margin-bottom: 10px;
  font-size: 2.18rem;
  line-height: 1.05;
}

.market-panel {
  display: grid;
  align-content: start;
  overflow: hidden;
  min-height: 236px;
  padding: 18px 20px;
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0.96), rgba(241, 248, 252, 0.9)),
    linear-gradient(180deg, rgba(18, 103, 255, 0.06), transparent);
}

.market-panel h2 {
  margin-bottom: 10px;
  font-size: 1.75rem;
}

.hot-job-list {
  height: 128px;
  overflow: hidden;
}

.hot-job-track {
  display: grid;
  gap: 8px;
  animation: hotJobScroll 16s linear infinite;
}

.hot-job-list:hover .hot-job-track {
  animation-play-state: paused;
}

.hot-job-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border: 1px solid rgba(16, 20, 24, 0.08);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.78);
  min-height: 56px;
  padding: 9px 10px;
}

.hot-job-card strong,
.hot-job-card span,
.hot-job-card em {
  display: block;
}

.hot-job-card strong {
  color: var(--ink);
  font-size: 0.82rem;
}

.hot-job-card span {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 780;
}

.hot-job-card em {
  flex: 0 0 auto;
  border-radius: 999px;
  background: rgba(17, 184, 156, 0.1);
  color: #067647;
  padding: 6px 9px;
  font-size: 0.7rem;
  font-style: normal;
  font-weight: 900;
  white-space: nowrap;
}

.offer-ticker {
  height: 106px;
  margin-top: 10px;
  overflow: hidden;
  border: 1px solid rgba(18, 103, 255, 0.12);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(18, 103, 255, 0.06), rgba(17, 184, 156, 0.05));
  padding: 8px;
}

.offer-track {
  display: grid;
  gap: 8px;
  animation: offerScroll 18s linear infinite;
}

.offer-ticker:hover .offer-track {
  animation-play-state: paused;
}

.offer-item {
  display: block;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.82);
  color: #344054;
  padding: 7px 9px;
  font-size: 0.72rem;
  font-weight: 830;
  line-height: 1.35;
}

@keyframes offerScroll {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(-50%);
  }
}

@keyframes hotJobScroll {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(-50%);
  }
}

.demo-chip {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  border: 1px solid rgba(17, 184, 156, 0.22);
  border-radius: 999px;
  color: #067647;
  background: rgba(17, 184, 156, 0.08);
  padding: 0 12px;
  font-weight: 850;
  margin-bottom: 10px;
}

h2 {
  max-width: 780px;
  margin-bottom: 14px;
  font-size: 3.35rem;
  line-height: 1;
  letter-spacing: 0;
}

.hero-copy p {
  max-width: 650px;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.55;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  max-width: 580px;
  margin: 12px 0 0;
}

.hero-proof article {
  border: 1px solid rgba(16, 20, 24, 0.08);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.72);
  padding: 9px 10px;
  box-shadow: 0 8px 22px rgba(23, 31, 38, 0.05);
}

.hero-proof strong {
  display: block;
  font-size: 1.3rem;
  line-height: 1;
}

.hero-proof span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 820;
}

.hero-actions,
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.hero-btn {
  min-width: 150px;
}

.trust-row span,
.score-pill,
.job-badge,
.company-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  border-radius: 999px;
  background: rgba(18, 103, 255, 0.08);
  color: #124bb8;
  padding: 0 10px;
  font-size: 0.78rem;
  font-weight: 850;
}

.hero-card {
  position: relative;
  min-height: 386px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.68), rgba(239, 244, 248, 0.72)),
    #eef4f8;
}

.hero-card img {
  width: 100%;
  height: 100%;
  min-height: 386px;
  object-fit: cover;
  filter: saturate(0.94) contrast(1.02);
}

.hero-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 42%, rgba(244, 246, 244, 0.2) 64%, rgba(244, 246, 244, 0.82) 100%);
  pointer-events: none;
}

.phone-card {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 22px 62px rgba(23, 31, 38, 0.16);
  backdrop-filter: blur(20px);
  padding: 16px;
}

.phone-card span {
  color: var(--mint);
  font-weight: 900;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.phone-card strong {
  display: block;
  margin: 5px 0 10px;
  font-size: 1.35rem;
}

.rings {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.rings i {
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(18, 103, 255, 0.15) var(--v), rgba(16, 20, 24, 0.06) 0);
  color: #344054;
  padding: 6px 8px;
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 850;
}

.hero-feed {
  display: grid;
  gap: 7px;
  margin-top: 12px;
}

.hero-feed span {
  display: block;
  border: 1px solid rgba(16, 20, 24, 0.07);
  border-radius: 10px;
  background: rgba(248, 250, 252, 0.8);
  color: #303846;
  padding: 8px 10px;
  font-size: 0.76rem;
  font-weight: 820;
  letter-spacing: 0;
  text-transform: none;
}

.signal-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: var(--section-gap) 0 12px;
}

.signal-strip article,
.status-board article {
  padding: 16px 18px;
}

.signal-strip strong,
.status-board strong {
  display: block;
  font-size: 1.55rem;
}

.signal-strip span,
.status-board span {
  color: var(--muted);
  font-weight: 760;
}

.workflow-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 12px;
}

.workflow-strip article {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 4px 10px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.78);
  padding: 13px 14px;
}

.workflow-strip span {
  display: grid;
  grid-row: span 2;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, #101418, var(--blue));
  font-weight: 900;
}

.workflow-strip strong,
.workflow-strip em {
  min-width: 0;
}

.workflow-strip em {
  color: var(--muted);
  font-size: 0.76rem;
  font-style: normal;
  font-weight: 780;
}

.agent-rail {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(520px, 1.4fr) auto;
  align-items: center;
  gap: 14px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--soft-shadow);
  padding: 12px 16px;
}

.agent-rail p {
  margin: 0 0 3px;
  color: var(--mint);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.agent-rail strong {
  display: block;
  font-size: 1rem;
}

.run-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 6px;
}

.run-step {
  position: relative;
  min-height: 34px;
  border: 1px solid rgba(16, 20, 24, 0.08);
  border-radius: 999px;
  background: rgba(246, 248, 251, 0.88);
  color: #66706f;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 850;
}

.run-step.is-active {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(135deg, #101418, var(--blue));
  box-shadow: 0 12px 28px rgba(18, 103, 255, 0.18);
}

.run-step.is-complete {
  color: #067647;
  border-color: rgba(17, 184, 156, 0.22);
  background: rgba(17, 184, 156, 0.1);
}

.panel-block {
  display: none;
  margin-top: var(--section-gap);
}

.panel-block.active {
  display: block;
}

.career-lab-shell,
.lab-page-shell {
  padding: 0;
}

.career-lab-frame,
.lab-page-frame {
  display: block;
  width: min(1120px, 100%);
  height: 760px;
  min-height: 0;
  margin: 0 auto;
  border: 0;
  border-radius: 22px;
  background: #f6f7fb;
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.08);
}

.candidate-lab-shell > :not(.candidate-lab-frame) {
  display: none !important;
}

.candidate-lab-frame {
  width: min(1180px, 100%);
  height: 1040px;
  background: #f7f8fc;
}

.coach-console {
  display: grid;
  grid-template-columns: minmax(320px, 0.72fr) minmax(0, 1.28fr);
  gap: 14px;
  margin-bottom: var(--section-gap);
  border: 1px solid rgba(16, 20, 24, 0.08);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(246, 250, 252, 0.9)),
    rgba(255, 255, 255, 0.86);
  box-shadow: var(--soft-shadow);
  padding: 16px;
}

.coach-main {
  display: grid;
  align-content: start;
  gap: 10px;
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(16, 20, 24, 0.96), rgba(18, 103, 255, 0.9)),
    #101418;
  color: #fff;
  padding: 18px;
}

.coach-main p,
.coach-panel p {
  margin: 0;
  color: var(--mint);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.coach-main h3 {
  margin: 0;
  font-size: 1.36rem;
  line-height: 1.2;
}

.coach-main span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.86rem;
  line-height: 1.65;
}

.coach-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 9px;
}

.coach-panel {
  display: grid;
  gap: 10px;
  align-content: start;
  border: 1px solid rgba(16, 20, 24, 0.08);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.76);
  padding: 14px;
}

.coach-panel h3 {
  margin: 0;
  color: var(--ink);
  font-size: 0.96rem;
}

.coach-list {
  display: grid;
  gap: 8px;
}

.coach-list article {
  display: grid;
  gap: 4px;
  border-radius: 12px;
  background: rgba(248, 250, 252, 0.86);
  padding: 10px;
}

.coach-list strong {
  color: var(--ink);
  font-size: 0.78rem;
  line-height: 1.35;
}

.coach-list span,
.coach-list em {
  color: var(--muted);
  font-size: 0.72rem;
  font-style: normal;
  line-height: 1.45;
}

.jobagent-demo {
  display: grid;
  grid-template-columns: minmax(320px, 0.72fr) minmax(0, 1.28fr);
  gap: 14px;
  margin-bottom: var(--section-gap);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(245, 250, 252, 0.9)),
    rgba(255, 255, 255, 0.86);
  box-shadow: var(--soft-shadow);
  padding: 16px;
}

.jobagent-copy p,
.agent-demo-grid p {
  margin: 0 0 6px;
  color: var(--mint);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.jobagent-copy h3 {
  margin: 0 0 8px;
  font-size: 1.35rem;
}

.jobagent-copy span {
  display: block;
  color: var(--muted);
  line-height: 1.58;
}

.jobagent-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.jobagent-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.jobagent-stats article,
.agent-demo-grid section,
.agent-demo-step {
  border: 1px solid rgba(16, 20, 24, 0.08);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.78);
}

.jobagent-stats article {
  padding: 12px;
}

.jobagent-stats strong {
  display: block;
  font-size: 1.45rem;
  line-height: 1;
}

.jobagent-stats span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 820;
}

.agent-demo-flow {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 8px;
}

.agent-demo-step {
  display: grid;
  gap: 4px;
  min-height: 82px;
  padding: 10px;
}

.agent-demo-step span {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 900;
}

.agent-demo-step strong {
  color: var(--ink);
  font-size: 0.82rem;
  line-height: 1.25;
}

.agent-demo-step em {
  color: var(--muted);
  font-size: 0.7rem;
  font-style: normal;
  line-height: 1.35;
}

.agent-demo-step.is-active {
  border-color: rgba(18, 103, 255, 0.36);
  background: rgba(18, 103, 255, 0.08);
  box-shadow: 0 12px 26px rgba(18, 103, 255, 0.1);
}

.agent-demo-step.is-done {
  border-color: rgba(17, 184, 156, 0.28);
  background: rgba(240, 253, 250, 0.82);
}

.agent-demo-grid {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.9fr) minmax(0, 0.95fr);
  gap: 10px;
}

.agent-demo-grid section {
  padding: 14px;
}

.agent-demo-grid h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
}

#agentDemoDetail,
#agentTechStack,
#agentHandoff {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.65;
}

.agent-demo-list {
  display: grid;
  gap: 7px;
}

.agent-demo-list span {
  display: block;
  border-radius: 10px;
  background: rgba(248, 250, 252, 0.78);
  color: #344054;
  padding: 8px 10px;
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.45;
}

.section-head {
  display: grid;
  gap: 4px;
  margin-bottom: 14px;
  border: 1px solid rgba(16, 20, 24, 0.08);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.72);
  padding: 16px 18px;
}

.section-head h3 {
  margin: 0 0 6px;
  font-size: 1.45rem;
  line-height: 1.18;
}

.section-head span {
  color: var(--muted);
}

.module-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.78fr) minmax(0, 1.42fr);
  gap: 16px;
  align-items: start;
}

.module-form-card,
.module-result-card {
  display: grid;
  gap: 14px;
}

.context-grid,
.result-card-grid,
.path-board,
.progress-list {
  display: grid;
  gap: 10px;
}

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

.result-card-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.path-board {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.context-grid article,
.result-card-grid article,
.path-board article,
.progress-list article,
.webapply-company-card {
  border: 1px solid rgba(16, 20, 24, 0.08);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.82);
  padding: 13px;
}

.context-grid span,
.result-card-grid span,
.webapply-company-card span {
  display: block;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 780;
  line-height: 1.45;
}

.context-grid strong,
.result-card-grid strong,
.path-board strong,
.progress-list strong,
.webapply-company-card strong {
  display: block;
  margin: 4px 0;
  color: var(--ink);
  line-height: 1.4;
}

.result-card-grid em,
.path-board span,
.progress-list span,
.webapply-company-card em {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 760;
  line-height: 1.58;
}

.plugin-actions {
  display: grid;
  gap: 9px;
}

.plugin-actions a {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.plugin-install-note {
  border: 1px solid rgba(17, 184, 156, 0.14);
  border-radius: 12px;
  background: rgba(17, 184, 156, 0.065);
  padding: 12px;
}

.plugin-install-note strong,
.plugin-install-note span {
  display: block;
}

.plugin-install-note strong {
  margin-bottom: 5px;
  color: #0f766e;
  font-size: 0.8rem;
}

.plugin-install-note span {
  color: #667085;
  font-size: 0.78rem;
  font-weight: 760;
  line-height: 1.58;
}

.plugin-install-note ol {
  display: grid;
  gap: 6px;
  margin: 8px 0 0;
  padding-left: 18px;
  color: #667085;
  font-size: 0.78rem;
  font-weight: 760;
  line-height: 1.55;
}

.webapply-hero {
  width: min(1120px, 100%);
  margin: 0 auto 16px;
  border: 1px solid rgba(16, 20, 24, 0.07);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 14px 36px rgba(23, 31, 38, 0.06);
  padding: 24px;
}

.webapply-hero p,
.webapply-page-head p,
.webapply-sidebar-head p {
  margin: 0 0 8px;
  color: var(--mint);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.webapply-hero h3 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 1.7rem;
  line-height: 1.18;
}

.webapply-hero span {
  color: #667085;
  font-size: 0.95rem;
  font-weight: 760;
  line-height: 1.7;
}

.webapply-console {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 16px;
  width: min(1120px, 100%);
  margin: 0 auto 72px;
  align-items: start;
}

.webapply-sidebar {
  position: sticky;
  top: 16px;
  display: grid;
  gap: 16px;
  border: 1px solid rgba(16, 20, 24, 0.07);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--soft-shadow);
  padding: 16px;
}

.webapply-sidebar-head h3 {
  margin: 0 0 6px;
  font-size: 1.1rem;
  line-height: 1.25;
}

.webapply-sidebar-head span {
  color: #667085;
  font-size: 0.78rem;
  font-weight: 760;
  line-height: 1.58;
}

.webapply-menu {
  display: grid;
  gap: 8px;
}

.webapply-menu-btn {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  min-height: 66px;
  border: 1px solid rgba(16, 20, 24, 0.07);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.74);
  color: var(--ink);
  padding: 10px;
  text-align: left;
}

.webapply-menu-btn i {
  grid-row: 1 / span 2;
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: rgba(52, 91, 255, 0.08);
  color: #345bff;
  font-style: normal;
  font-size: 0.76rem;
  font-weight: 900;
}

.webapply-menu-btn strong,
.webapply-menu-btn span {
  grid-column: 2;
  display: block;
}

.webapply-menu-btn strong {
  font-size: 0.88rem;
  line-height: 1.25;
}

.webapply-menu-btn span {
  margin-top: 3px;
  color: #667085;
  font-size: 0.72rem;
  font-weight: 760;
  line-height: 1.35;
}

.webapply-menu-btn.active {
  border-color: rgba(52, 91, 255, 0.2);
  background: linear-gradient(135deg, rgba(52, 91, 255, 0.12), rgba(17, 184, 156, 0.08));
  box-shadow: 0 14px 30px rgba(52, 91, 255, 0.11);
}

.webapply-profile {
  display: grid;
  gap: 8px;
  border-radius: 12px;
  background: rgba(248, 250, 255, 0.92);
  padding: 12px;
}

.webapply-profile > strong {
  font-size: 0.82rem;
}

.webapply-profile div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: #667085;
  font-size: 0.74rem;
  font-weight: 780;
}

.webapply-profile b {
  color: var(--ink);
  font-size: 0.8rem;
}

.webapply-main {
  min-width: 0;
}

.webapply-page {
  display: none;
  border: 1px solid rgba(16, 20, 24, 0.07);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--soft-shadow);
  padding: 22px;
}

.webapply-page.active {
  display: grid;
  gap: 16px;
}

.webapply-page-head {
  max-width: 780px;
}

.webapply-page-head.compact-head {
  display: flex;
  max-width: none;
  align-items: start;
  justify-content: space-between;
  gap: 18px;
}

.webapply-page-head h3 {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: 1.35rem;
  line-height: 1.24;
}

.webapply-page-head span {
  color: #667085;
  font-size: 0.88rem;
  font-weight: 760;
  line-height: 1.65;
}

.webapply-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.webapply-feature-grid article,
.webapply-step-list article,
.webapply-mini-status article {
  border: 1px solid rgba(16, 20, 24, 0.07);
  border-radius: 12px;
  background: rgba(248, 250, 255, 0.72);
  padding: 14px;
}

.webapply-feature-grid i,
.webapply-step-list i {
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 30px;
  margin-bottom: 10px;
  border-radius: 10px;
  background: rgba(17, 184, 156, 0.11);
  color: #0f766e;
  font-style: normal;
  font-weight: 900;
}

.webapply-feature-grid strong,
.webapply-feature-grid span,
.webapply-step-list strong,
.webapply-step-list span,
.webapply-mini-status strong,
.webapply-mini-status span {
  display: block;
}

.webapply-feature-grid strong,
.webapply-step-list strong,
.webapply-mini-status strong {
  color: var(--ink);
  line-height: 1.35;
}

.webapply-feature-grid span,
.webapply-step-list span,
.webapply-mini-status span {
  margin-top: 5px;
  color: #667085;
  font-size: 0.78rem;
  font-weight: 760;
  line-height: 1.55;
}

.webapply-callout,
.webapply-warning {
  border: 1px solid rgba(17, 184, 156, 0.16);
  border-radius: 12px;
  background: rgba(17, 184, 156, 0.065);
  padding: 14px;
}

.webapply-warning {
  border-color: rgba(245, 158, 11, 0.22);
  background: rgba(255, 250, 235, 0.82);
}

.webapply-callout strong,
.webapply-warning strong,
.webapply-callout span,
.webapply-warning span {
  display: block;
}

.webapply-callout strong,
.webapply-warning strong {
  margin-bottom: 5px;
}

.webapply-callout span,
.webapply-warning span {
  color: #667085;
  font-size: 0.82rem;
  font-weight: 760;
  line-height: 1.6;
}

.webapply-download-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 240px;
  gap: 14px;
  align-items: center;
  border: 1px solid rgba(52, 91, 255, 0.12);
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(52, 91, 255, 0.08), rgba(17, 184, 156, 0.06));
  padding: 18px;
}

.webapply-download-panel span,
.webapply-download-panel strong,
.webapply-download-panel em {
  display: block;
}

.webapply-download-panel span {
  color: #0f766e;
  font-size: 0.74rem;
  font-weight: 900;
}

.webapply-download-panel strong {
  margin: 5px 0;
  font-size: 1.08rem;
}

.webapply-download-panel em {
  color: #667085;
  font-size: 0.8rem;
  font-style: normal;
  font-weight: 760;
}

.webapply-browser-grid,
.webapply-mini-status {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.webapply-browser-grid a {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.webapply-mini-status {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.webapply-step-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.webapply-filterbar {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(140px, 0.35fr) minmax(160px, 0.45fr);
  gap: 10px;
}

.webapply-filterbar input,
.webapply-filterbar select {
  width: 100%;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  padding: 0 12px;
  font-weight: 780;
}

.webapply-landing-hero {
  width: min(980px, 100%);
  margin: 48px auto 28px;
  text-align: center;
}

.webapply-landing-hero p,
.webapply-library-head p {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: #8b5cf6;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.webapply-landing-hero p span,
.webapply-library-head p span {
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #7c5cff, #2bbdf2);
}

.webapply-landing-hero h3 {
  margin: 0 0 16px;
  color: var(--ink);
  font-size: clamp(2.25rem, 3.7vw, 3.22rem);
  line-height: 1.08;
}

.webapply-landing-hero strong {
  display: block;
  width: max-content;
  max-width: 100%;
  margin: 0 auto;
  color: #667085;
  font-size: 0.98rem;
  font-weight: 760;
  line-height: 1.75;
  white-space: nowrap;
}

.webapply-install-card {
  width: min(1180px, 100%);
  margin: 0 auto 44px;
  border: 1px solid rgba(16, 20, 24, 0.055);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.9)),
    linear-gradient(135deg, rgba(124, 92, 255, 0.08), rgba(43, 189, 242, 0.08));
  box-shadow: 0 30px 80px rgba(31, 41, 55, 0.1);
  padding: 24px 28px;
  backdrop-filter: blur(18px);
}

.webapply-benefits {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.webapply-benefits article {
  min-width: 0;
  display: grid;
  align-content: start;
  gap: 5px;
  min-height: 94px;
  border: 1px solid rgba(16, 20, 24, 0.08);
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(248, 251, 255, 0.9)),
    rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 30px rgba(31, 41, 55, 0.045);
  padding: 14px 18px;
}

.webapply-benefits strong,
.webapply-benefits span {
  display: block;
}

.webapply-benefits i {
  position: relative;
  margin-bottom: 8px;
  color: #6d5dfc;
  font-style: normal;
  font-size: 1.16rem;
}

.benefit-icon {
  display: block;
  width: 20px;
  height: 20px;
}

.benefit-icon::before,
.benefit-icon::after {
  position: absolute;
  content: "";
}

.benefit-icon.icon-search::before {
  width: 9px;
  height: 9px;
  left: 1px;
  top: 1px;
  border: 2px solid #7c5cff;
  border-radius: 999px;
}

.benefit-icon.icon-search::after {
  width: 8px;
  height: 2px;
  left: 11px;
  top: 13px;
  border-radius: 999px;
  background: #7c5cff;
  transform: rotate(45deg);
}

.benefit-icon.icon-local::before {
  width: 15px;
  height: 15px;
  left: 2px;
  top: 2px;
  border: 2px solid #7c5cff;
  border-radius: 3px;
}

.benefit-icon.icon-local::after {
  width: 7px;
  height: 7px;
  left: 6px;
  top: 6px;
  border-radius: 2px;
  background: rgba(124, 92, 255, 0.22);
}

.benefit-icon.icon-write::before {
  width: 15px;
  height: 4px;
  left: 2px;
  top: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, #7c5cff, #24c5d7);
  transform: rotate(-28deg);
}

.benefit-icon.icon-write::after {
  width: 12px;
  height: 2px;
  left: 4px;
  top: 16px;
  border-radius: 999px;
  background: rgba(124, 92, 255, 0.5);
}

.webapply-benefits strong {
  color: var(--ink);
  font-size: 1.04rem;
}

.webapply-benefits span {
  color: #667085;
  font-size: 0.86rem;
  font-weight: 760;
  line-height: 1.52;
  min-height: 2.9em;
}

.webapply-install-actions {
  display: grid;
  justify-items: center;
  gap: 12px;
  margin-top: 22px;
}

.webapply-main-download {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 270px;
  min-height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, #705cf6 0%, #4b7dff 52%, #24c5d7 100%);
  color: #fff;
  box-shadow: 0 22px 46px rgba(74, 112, 255, 0.28);
  padding: 0 28px;
  font-size: 1rem;
  font-weight: 900;
  text-decoration: none;
}

.webapply-install-actions > div {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.webapply-install-actions .secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 138px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.92);
  text-decoration: none;
}

.rainbow-tutorial-btn {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-color: transparent;
  background: transparent !important;
  color: #fff;
}

.rainbow-tutorial-btn .rainbow-button-stripes {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
}

.rainbow-button-stripes i:nth-child(1) { background: #ff3b30; }
.rainbow-button-stripes i:nth-child(2) { background: #ff7a00; }
.rainbow-button-stripes i:nth-child(3) { background: #ffbf00; }
.rainbow-button-stripes i:nth-child(4) { background: #34c759; }
.rainbow-button-stripes i:nth-child(5) { background: #20b9d6; }
.rainbow-button-stripes i:nth-child(6) { background: #1677ff; }
.rainbow-button-stripes i:nth-child(7) { background: #a855f7; }

.rainbow-tutorial-btn strong {
  position: relative;
  color: #fff;
  font-size: inherit;
  font-weight: 900;
  text-shadow: 0 1px 8px rgba(16, 24, 40, 0.25);
}

.browser-btn {
  min-width: 150px;
}

.browser-logo {
  display: inline-block;
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  object-fit: contain;
  background: #fff;
  box-shadow: 0 1px 3px rgba(16, 20, 24, 0.08);
}

.webapply-guide-strip {
  display: none;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.webapply-guide-strip.is-visible {
  display: grid;
}

.webapply-guide-strip article {
  position: relative;
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  grid-template-rows: auto auto;
  align-items: center;
  column-gap: 12px;
  row-gap: 6px;
  min-height: 124px;
  border: 1px solid rgba(124, 92, 255, 0.14);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(124, 92, 255, 0.08), rgba(43, 189, 242, 0.07)),
    rgba(255, 255, 255, 0.9);
  box-shadow: 0 14px 34px rgba(31, 41, 55, 0.055);
  padding: 16px;
}

.webapply-guide-strip article:not(:last-child)::after {
  position: absolute;
  top: 50%;
  right: -20px;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(124, 92, 255, 0.35), rgba(43, 189, 242, 0.55));
  content: "";
}

.webapply-guide-strip b {
  grid-row: 1 / span 2;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 18px;
  background: linear-gradient(135deg, #ebe9ff, #dff8ff);
  color: #5b4ff0;
  font-size: 1.08rem;
  font-weight: 950;
}

.webapply-guide-strip strong {
  color: var(--ink);
  font-size: 0.98rem;
  line-height: 1.25;
}

.webapply-guide-strip span {
  color: #667085;
  font-size: 0.8rem;
  font-weight: 780;
  line-height: 1.42;
}

.webapply-guide-visuals {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(260px, 0.55fr);
  gap: 18px;
  margin-top: 6px;
  padding-top: 6px;
}

.webapply-guide-visuals figure {
  display: grid;
  gap: 10px;
  margin: 0;
  min-width: 0;
  border: 1px solid rgba(124, 92, 255, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 14px 36px rgba(31, 41, 55, 0.06);
  padding: 12px;
}

.webapply-guide-visuals img {
  width: 100%;
  height: 260px;
  border: 1px solid rgba(16, 20, 24, 0.08);
  border-radius: 14px;
  object-fit: cover;
  object-position: top center;
  background: #f7f9fc;
}

.webapply-guide-visuals figure:first-child img {
  object-fit: contain;
}

.webapply-guide-visuals figure:last-child img {
  object-fit: cover;
}

.webapply-guide-visuals figcaption {
  color: #667085;
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.5;
}

.webapply-library {
  width: min(1180px, 100%);
  margin: 0 auto 80px;
}

.webapply-company-filterbar {
  grid-template-columns: minmax(240px, 1.4fr) repeat(3, minmax(150px, 0.55fr));
  margin: 22px 0 16px;
  border-block: 1px solid rgba(16, 20, 24, 0.06);
  padding: 16px 0;
}

.webapply-company-filterbar label,
.campus-intel-toolbar label {
  display: grid;
  gap: 7px;
  min-width: 0;
}

.webapply-company-filterbar label > span,
.campus-intel-toolbar label > span {
  color: #667085;
  font-size: 0.72rem;
  font-weight: 880;
}

.webapply-library-head {
  margin-bottom: 18px;
}

.webapply-library-head h3 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: clamp(1.6rem, 2.5vw, 2.1rem);
  line-height: 1.16;
}

.webapply-library-head strong {
  display: block;
  color: #667085;
  font-size: 0.92rem;
  font-weight: 760;
}

.webapply-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 0 0 18px;
}

.webapply-tabs .pool-tab {
  min-width: 128px;
  min-height: 42px;
  border: 1px solid rgba(16, 20, 24, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
  color: #667085;
  padding: 0 18px;
  font-size: 0.88rem;
}

.webapply-tabs .pool-tab.active {
  color: #fff;
  background: linear-gradient(135deg, #705cf6, #24c5d7);
  box-shadow: 0 14px 30px rgba(124, 92, 255, 0.18);
}

.webapply-company-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  overflow: visible;
  padding: 0;
}

.webapply-company-card {
  display: grid;
  gap: 18px;
  min-height: 194px;
  border: 1px solid rgba(16, 20, 24, 0.06);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 46px rgba(31, 41, 55, 0.085);
  padding: 20px;
}

.company-card-top {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: start;
}

.company-card-top i {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 15px;
  background: linear-gradient(135deg, #8b5cf6, #6d5dfc);
  color: #fff;
  font-style: normal;
  font-weight: 900;
}

.company-card-logo {
  position: relative;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  overflow: hidden;
  border: 1px solid rgba(16, 20, 24, 0.08);
  border-radius: 13px;
  background: color-mix(in srgb, var(--logo-color) 11%, #fff);
  color: var(--logo-color);
  font-size: 0.78rem;
  font-weight: 950;
  line-height: 1;
}

.company-card-logo span {
  max-width: 36px;
  overflow: hidden;
  text-align: center;
  white-space: nowrap;
}

.company-card-logo.has-logo > span {
  opacity: 0;
}

.company-card-logo-image {
  position: absolute;
  inset: 7px;
  background: var(--logo-color);
  -webkit-mask: var(--logo-image) center / contain no-repeat;
  mask: var(--logo-image) center / contain no-repeat;
}

.company-card-logo-full-color {
  position: absolute;
  top: 9px;
  left: 0;
  width: 127px;
  max-width: none;
  height: 28px;
  object-fit: contain;
  object-position: left center;
}

.company-card-top strong,
.company-card-top em,
.company-card-top small {
  display: block;
}

.company-card-top strong {
  margin: 4px 0 6px;
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.28;
}

.company-card-top em {
  color: #667085;
  font-size: 0.8rem;
  font-style: normal;
  font-weight: 760;
  line-height: 1.4;
}

.company-card-top small {
  width: max-content;
  max-width: 100%;
  margin-top: 8px;
  border: 1px solid rgba(16, 185, 129, 0.16);
  border-radius: 999px;
  background: rgba(16, 185, 129, 0.08);
  color: #047857;
  padding: 4px 9px;
  font-size: 0.7rem;
  font-weight: 900;
  line-height: 1.2;
}

.company-card-top small:not(.campus-open) {
  border-color: rgba(71, 84, 103, 0.12);
  background: rgba(71, 84, 103, 0.07);
  color: #667085;
}

.company-card-top b {
  border-radius: 999px;
  background: rgba(16, 185, 129, 0.12);
  color: #059669;
  padding: 6px 10px;
  font-size: 0.72rem;
  white-space: nowrap;
}

.company-card-top b.is-warn {
  background: rgba(245, 158, 11, 0.12);
  color: #d97706;
}

.company-card-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.company-card-links a {
  color: #7657f5;
  font-size: 0.82rem;
  font-weight: 900;
  text-decoration: none;
}

.campus-entry-pending {
  color: #98a2b3;
  font-size: 0.8rem;
  font-weight: 800;
}

.company-card-links .campus-entry-link {
  display: inline-flex;
  gap: 0;
  color: inherit;
  filter: saturate(1.08);
}

.campus-entry-link span:nth-child(1) { color: #ef4444; }
.campus-entry-link span:nth-child(2) { color: #e59a00; }
.campus-entry-link span:nth-child(3) { color: #1677ff; }
.campus-entry-link b { color: #10b981; }

.company-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid rgba(16, 20, 24, 0.06);
  padding-top: 14px;
}

.company-card-footer span {
  color: #98a2b3;
  font-size: 0.78rem;
  font-weight: 780;
}

.company-card-footer .primary-btn {
  min-height: 38px;
  border-radius: 10px;
  background: linear-gradient(135deg, #705cf6, #24c5d7);
  padding: 0 16px;
  box-shadow: none;
  white-space: nowrap;
}

.company-card-footer .primary-btn.is-added,
.company-card-footer .primary-btn:disabled {
  cursor: default;
  background: #eef2f6;
  color: #667085;
  opacity: 1;
}

.webapply-task-feedback {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin: 0 0 18px;
  border: 1px solid rgba(16, 185, 129, 0.18);
  border-radius: 14px;
  background: #ecfdf5;
  color: #047857;
  padding: 11px 14px;
  font-size: 0.84rem;
  font-weight: 850;
}

.webapply-task-feedback[hidden] {
  display: none;
}

.webapply-task-feedback button {
  min-height: 34px;
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: 9px;
  background: #fff;
  color: #047857;
  padding: 0 12px;
  font-weight: 900;
  white-space: nowrap;
}

.webapply-company-card.webapply-empty {
  grid-column: 1 / -1;
  min-height: 160px;
  align-content: center;
  text-align: center;
}

.webapply-library-actions {
  display: flex;
  justify-content: center;
  margin: 12px 0 8px;
}

.webapply-show-all-btn {
  min-width: 188px;
  min-height: 42px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.9);
  color: #101828;
  box-shadow: 0 14px 28px rgba(31, 41, 55, 0.08);
}

.webapply-show-all-btn:disabled {
  cursor: default;
  opacity: 0.72;
}

.campus-intel {
  width: min(1180px, 100%);
  margin: 68px auto 0;
  border-top: 1px solid rgba(16, 20, 24, 0.08);
  padding-top: 38px;
}

.campus-intel-frame-shell {
  width: min(1280px, 100%);
  margin: 54px auto 0;
  overflow: hidden;
  border: 1px solid rgba(16, 24, 40, 0.06);
  border-radius: 24px;
  background: #f4f7fb;
  box-shadow: 0 22px 54px rgba(31, 41, 55, 0.11);
}

.campus-intel-frame {
  display: block;
  width: 100%;
  height: 1320px;
  border: 0;
  background: #f4f7fb;
}

.campus-intel-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 22px;
}

.campus-intel-head p {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 10px;
  color: #5b4ff0;
  font-size: 0.74rem;
  font-weight: 950;
  letter-spacing: 0.04em;
}

.campus-intel-head p span {
  width: 20px;
  height: 2px;
  background: #2bbdf2;
}

.campus-intel-head h3 {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: clamp(1.75rem, 3vw, 2.45rem);
  line-height: 1.1;
}

.campus-intel-head strong {
  display: block;
  max-width: 760px;
  color: #667085;
  font-size: 0.88rem;
  line-height: 1.65;
}

.campus-intel-head > a {
  flex: 0 0 auto;
  border: 1px solid rgba(91, 79, 240, 0.14);
  border-radius: 10px;
  background: #fff;
  color: #5b4ff0;
  padding: 11px 14px;
  font-size: 0.78rem;
  font-weight: 900;
  text-decoration: none;
}

.campus-intel-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 18px;
}

.campus-intel-stats article {
  min-height: 94px;
  border: 1px solid rgba(16, 20, 24, 0.065);
  border-radius: 14px;
  background: #fff;
  padding: 17px;
}

.campus-intel-stats strong,
.campus-intel-stats span {
  display: block;
}

.campus-intel-stats strong {
  margin-bottom: 5px;
  color: var(--ink);
  font-size: 1.35rem;
}

.campus-intel-stats span {
  color: #667085;
  font-size: 0.76rem;
  font-weight: 780;
}

.campus-intel-toolbar {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) repeat(2, minmax(170px, 0.35fr));
  gap: 12px;
  margin-bottom: 14px;
  border-block: 1px solid rgba(16, 20, 24, 0.06);
  padding: 15px 0;
}

.campus-intel-toolbar input,
.campus-intel-toolbar select {
  width: 100%;
  min-height: 42px;
  border: 1px solid rgba(16, 20, 24, 0.1);
  border-radius: 10px;
  background: #fff;
  color: var(--ink);
  padding: 0 12px;
  font-weight: 780;
}

.campus-intel-table-wrap {
  overflow: auto;
  max-height: 620px;
  border: 1px solid rgba(16, 20, 24, 0.075);
  border-radius: 14px;
  background: #fff;
}

.campus-intel-table {
  width: 100%;
  min-width: 1080px;
  border-collapse: collapse;
  color: #344054;
  font-size: 0.78rem;
}

.campus-intel-table th {
  position: sticky;
  top: 0;
  z-index: 2;
  background: #f5f7fb;
  color: #475467;
  padding: 13px 14px;
  text-align: left;
  white-space: nowrap;
}

.campus-intel-table td {
  border-top: 1px solid rgba(16, 20, 24, 0.06);
  padding: 14px;
  vertical-align: top;
}

.campus-intel-table td:first-child,
.campus-intel-table th:first-child {
  position: sticky;
  left: 0;
  z-index: 1;
  background: #fff;
}

.campus-intel-table th:first-child {
  z-index: 3;
  background: #f5f7fb;
}

.campus-intel-table td strong,
.campus-intel-table td span {
  display: block;
}

.campus-intel-table td strong {
  margin-bottom: 5px;
  color: var(--ink);
  font-size: 0.82rem;
}

.campus-intel-table td span {
  color: #667085;
  line-height: 1.45;
}

.campus-intel-table a {
  color: #5b4ff0;
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
}

.campus-intel-table button {
  min-height: 32px;
  border: 1px solid rgba(91, 79, 240, 0.16);
  border-radius: 8px;
  background: #f7f6ff;
  color: #5b4ff0;
  padding: 0 10px;
  font-size: 0.72rem;
  font-weight: 900;
  white-space: nowrap;
}

.intel-status {
  display: inline-flex !important;
  width: max-content;
  border-radius: 999px;
  padding: 5px 9px;
  font-size: 0.68rem !important;
  font-weight: 900;
  white-space: nowrap;
}

.intel-status.reachable {
  background: #e9f9f1;
  color: #047857 !important;
}

.intel-status.review {
  background: #fff5e8;
  color: #c66a05 !important;
}

.campus-intel-empty {
  height: 120px;
  color: #98a2b3;
  text-align: center;
}

.campus-intel-note {
  margin: 12px 0 0;
  color: #667085;
  font-size: 0.74rem;
  font-weight: 760;
  line-height: 1.55;
}

.campus-intel-drawer {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: none;
}

.campus-intel-drawer.is-visible {
  display: block;
}

.campus-intel-drawer-mask {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  background: rgba(15, 23, 42, 0.42);
}

.campus-intel-drawer > section {
  position: absolute;
  top: 0;
  right: 0;
  width: min(620px, 92vw);
  height: 100%;
  overflow: auto;
  background: #f7f9fc;
  box-shadow: -24px 0 70px rgba(15, 23, 42, 0.2);
  padding: 24px;
}

.campus-intel-drawer header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(16, 20, 24, 0.08);
  padding-bottom: 18px;
}

.campus-intel-drawer header span {
  color: #5b4ff0;
  font-size: 0.72rem;
  font-weight: 900;
}

.campus-intel-drawer header h3 {
  margin: 6px 0 0;
  color: var(--ink);
  font-size: 1.55rem;
}

.campus-intel-drawer header > button {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(16, 20, 24, 0.09);
  border-radius: 10px;
  background: #fff;
  color: #344054;
  font-size: 1.45rem;
}

.campus-intel-detail-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 16px;
}

.campus-intel-detail-summary a {
  color: #5b4ff0;
  font-size: 0.78rem;
  font-weight: 900;
  text-decoration: none;
}

.campus-intel-detail dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
}

.campus-intel-detail dl > div {
  min-width: 0;
  border: 1px solid rgba(16, 20, 24, 0.07);
  border-radius: 10px;
  background: #fff;
  padding: 13px;
}

.campus-intel-detail dt {
  margin-bottom: 7px;
  color: #98a2b3;
  font-size: 0.68rem;
  font-weight: 850;
}

.campus-intel-detail dd {
  margin: 0;
  color: #344054;
  font-size: 0.82rem;
  font-weight: 760;
  line-height: 1.55;
}

body.drawer-open {
  overflow: hidden;
}

.webapply-task-board {
  width: min(1120px, 100%);
  margin: 26px auto 0;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(248, 250, 255, 0.96), rgba(243, 247, 252, 0.96));
  padding: 24px;
}

.webapply-board-head {
  margin-bottom: 18px;
}

.webapply-board-head p {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  color: #705cf6;
  font-size: 0.76rem;
  font-weight: 900;
}

.webapply-board-head p span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #705cf6, #24c5d7);
}

.webapply-board-head h3 {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  line-height: 1.08;
}

.webapply-board-head strong {
  color: #667085;
  font-size: 0.92rem;
  line-height: 1.6;
}

.webapply-board-columns {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.webapply-board-column {
  min-height: 250px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.54);
  padding: 14px;
}

.webapply-board-column-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  color: #667085;
  font-size: 0.84rem;
  font-weight: 900;
}

.webapply-board-column-head span {
  display: grid;
  place-items: center;
  min-width: 24px;
  height: 24px;
  border-radius: 999px;
  background: #fff;
  color: #101828;
  box-shadow: 0 8px 16px rgba(31, 41, 55, 0.08);
}

.webapply-board-list {
  display: grid;
  gap: 10px;
}

.webapply-board-list em {
  display: grid;
  place-items: center;
  min-height: 138px;
  color: #98a2b3;
  font-style: normal;
  font-weight: 800;
}

.webapply-task-card {
  display: grid;
  gap: 8px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.96);
  padding: 14px;
  box-shadow: 0 12px 26px rgba(31, 41, 55, 0.08);
}

.webapply-task-card strong {
  color: var(--ink);
  font-size: 0.92rem;
}

.webapply-task-card span {
  color: #667085;
  font-size: 0.78rem;
  font-weight: 760;
}

.webapply-task-card div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.webapply-task-card button {
  min-height: 28px;
  border: 1px solid rgba(112, 92, 246, 0.14);
  border-radius: 9px;
  background: #fff;
  color: #705cf6;
  padding: 0 10px;
  font-size: 0.72rem;
  font-weight: 900;
}

.webapply-task-card button:last-child {
  color: #ef476f;
}

@media (max-width: 980px) {
  .webapply-board-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .webapply-task-board {
    padding: 18px;
  }

  .webapply-board-columns {
    grid-template-columns: 1fr;
  }
}

.myai-shell {
  width: min(1120px, 100%);
  margin: 0 auto 72px;
}

.myai-hero {
  margin: 54px 0 28px;
  text-align: center;
}

.myai-hero p {
  margin: 0 0 10px;
  color: #11b89c;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.myai-hero h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.1;
}

.myai-hero span {
  display: block;
  margin-top: 14px;
  color: #667085;
  font-weight: 760;
  line-height: 1.6;
}

.myai-next {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  border: 1px solid rgba(52, 91, 255, 0.14);
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(52, 91, 255, 0.075), rgba(255, 255, 255, 0.9));
  box-shadow: var(--soft-shadow);
  padding: 22px 26px;
}

.myai-next strong,
.myai-next span {
  display: block;
}

.myai-next strong {
  margin-bottom: 8px;
  font-size: 1.02rem;
  line-height: 1.45;
}

.myai-next span {
  color: #667085;
  font-size: 0.86rem;
  font-weight: 760;
  line-height: 1.55;
}

.myai-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.myai-stats article {
  border: 1px solid rgba(16, 20, 24, 0.06);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.72);
  padding: 16px 18px;
}

.myai-stats strong,
.myai-stats span {
  display: block;
}

.myai-stats strong {
  margin-bottom: 4px;
  color: var(--ink);
  font-size: 1.05rem;
  line-height: 1.25;
}

.myai-stats span {
  color: #667085;
  font-size: 0.78rem;
  font-weight: 780;
}

.myai-dashboard {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(360px, 1.05fr);
  gap: 16px;
  margin-top: 16px;
}

.myai-profile-card,
.myai-resume-card {
  display: grid;
  gap: 14px;
}

.myai-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.myai-form-grid label {
  display: grid;
  gap: 6px;
  margin: 0;
}

.myai-form-grid input {
  min-height: 44px;
}

.myai-resume-list,
.myai-progress-grid,
.myai-result-grid {
  display: grid;
  gap: 10px;
}

.myai-resume-list article,
.myai-progress-grid article,
.myai-result-grid article {
  border: 1px solid rgba(16, 20, 24, 0.08);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.82);
  padding: 14px;
}

.myai-resume-list strong,
.myai-resume-list span,
.myai-progress-grid strong,
.myai-progress-grid span,
.myai-result-grid strong,
.myai-result-grid span {
  display: block;
}

.myai-resume-list strong,
.myai-progress-grid strong,
.myai-result-grid strong {
  margin-bottom: 5px;
  color: var(--ink);
  line-height: 1.4;
}

.myai-resume-list span,
.myai-progress-grid span,
.myai-result-grid span {
  color: #667085;
  font-size: 0.82rem;
  font-weight: 760;
  line-height: 1.58;
}

.myai-progress-wrap,
.myai-results-wrap,
.myai-quota-card {
  margin-top: 28px;
}

.myai-progress-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.myai-progress-grid i {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  margin-bottom: 10px;
  border-radius: 9px;
  background: rgba(52, 91, 255, 0.08);
  color: #345bff;
  font-size: 0.76rem;
  font-style: normal;
  font-weight: 900;
}

.myai-result-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.myai-quota-card {
  display: grid;
  gap: 12px;
}

.candidate-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.74fr) minmax(410px, 1fr) minmax(520px, 1.22fr);
  gap: 16px;
  align-items: start;
}

.glass-card {
  padding: 18px;
  background: rgba(255, 255, 255, 0.92);
}

.profile-input,
.profile-output,
.recommendation-card {
  align-self: start;
  display: grid;
  gap: 12px;
  min-width: 0;
}

.profile-input,
.profile-output,
.recommendation-card {
  border-color: rgba(16, 20, 24, 0.08);
}

.candidate-grid > .glass-card > .card-head {
  min-height: 54px;
  align-items: center;
  margin-bottom: 0;
  border-bottom: 1px solid rgba(16, 20, 24, 0.08);
  padding-bottom: 12px;
}

.module-head {
  margin-bottom: 0;
}

.recommendation-card {
  padding-bottom: 14px;
}

.card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.card-head h3 {
  margin: 0;
  font-size: 1rem;
}

label {
  display: block;
  margin: 6px 0 6px;
  color: #344054;
  font-size: 0.78rem;
  font-weight: 850;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--ink);
  outline: none;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(18, 103, 255, 0.42);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(18, 103, 255, 0.08);
}

input,
select {
  min-height: 44px;
  padding: 0 12px;
}

textarea {
  min-height: 116px;
  padding: 12px;
  line-height: 1.6;
  resize: vertical;
}

.upload-zone {
  display: grid;
  gap: 6px;
  border: 1px dashed rgba(17, 184, 156, 0.48);
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(17, 184, 156, 0.08), rgba(18, 103, 255, 0.04)),
    rgba(255, 255, 255, 0.78);
  padding: 16px;
}

.upload-zone input {
  display: none;
}

.upload-zone span,
.upload-zone em {
  color: var(--muted);
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 800;
}

.resume-optimizer {
  display: grid;
  gap: 8px;
  margin: 0;
  border: 1px solid rgba(18, 103, 255, 0.14);
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(18, 103, 255, 0.06), rgba(17, 184, 156, 0.06)),
    rgba(255, 255, 255, 0.72);
  padding: 12px;
}

.resume-template-panel {
  display: grid;
  gap: 10px;
  border: 1px solid rgba(16, 20, 24, 0.08);
  border-radius: 14px;
  background: rgba(248, 250, 252, 0.8);
  padding: 12px;
}

.template-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.template-option {
  min-height: 64px;
  border: 1px solid rgba(16, 20, 24, 0.08);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.84);
  padding: 10px;
  text-align: left;
  transition:
    border-color 160ms ease,
    background 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
}

.template-option:hover {
  transform: translateY(-1px);
}

.template-option.is-active {
  border-color: rgba(18, 103, 255, 0.34);
  background: rgba(18, 103, 255, 0.08);
  box-shadow: 0 10px 24px rgba(18, 103, 255, 0.1);
}

.template-option strong,
.template-option span {
  display: block;
}

.template-option strong {
  color: var(--ink);
  font-size: 0.78rem;
  line-height: 1.3;
}

.template-option span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 760;
  line-height: 1.35;
}

.template-preview {
  display: grid;
  gap: 8px;
}

.template-preview article {
  border: 1px solid rgba(17, 184, 156, 0.14);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.78);
  padding: 10px;
}

.template-preview span,
.template-preview em {
  display: block;
  color: var(--muted);
  font-size: 0.72rem;
  font-style: normal;
  line-height: 1.45;
}

.template-preview strong {
  display: block;
  margin: 3px 0;
  color: var(--ink);
  font-size: 0.8rem;
  line-height: 1.4;
}

.resume-optimizer.is-locked {
  border-color: rgba(181, 138, 53, 0.28);
  background:
    linear-gradient(135deg, rgba(181, 138, 53, 0.08), rgba(18, 103, 255, 0.04)),
    rgba(255, 255, 255, 0.8);
}

.resume-optimizer .pay-resume-btn {
  display: none;
}

.resume-optimizer.is-locked .pay-resume-btn,
.resume-optimizer.has-paid-credit .pay-resume-btn {
  display: block;
}

.resume-optimizer p {
  margin: 0;
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.5;
}

button:disabled {
  cursor: not-allowed;
  opacity: 0.58;
  transform: none;
}

.resume-optimization-result {
  display: grid;
  gap: 8px;
  margin-top: 0;
}

.resume-optimization-result article {
  border: 1px solid rgba(17, 184, 156, 0.16);
  border-radius: 12px;
  background: rgba(240, 253, 250, 0.72);
  padding: 12px;
}

.resume-optimization-result span,
.resume-optimization-result em {
  display: block;
  color: var(--muted);
  font-size: 0.74rem;
  font-style: normal;
  line-height: 1.5;
}

.resume-optimization-result strong {
  display: block;
  margin: 4px 0;
  color: var(--ink);
  line-height: 1.45;
}

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

.profile-cards {
  display: grid;
  gap: 9px;
}

.evidence-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
  margin-top: 0;
}

.parse-result {
  border: 1px solid rgba(18, 103, 255, 0.12);
  border-radius: 12px;
  background: rgba(248, 250, 252, 0.72);
  padding: 12px;
}

.mini-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}

.mini-head span {
  color: var(--mint);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.mini-head strong {
  border-radius: 999px;
  background: rgba(22, 119, 255, 0.08);
  color: #155eef;
  padding: 5px 8px;
  font-size: 0.72rem;
}

.parse-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.profile-cards article,
.evidence-grid article,
.parse-grid article,
.match-row,
.task-row,
.job-row,
.employer-value article {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.82);
  padding: 13px;
}

.profile-cards span,
.evidence-grid span,
.parse-grid span,
.match-row span,
.job-row span,
.task-row span,
.employer-value span {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.45;
}

.profile-cards strong,
.evidence-grid strong,
.parse-grid strong,
.match-row strong,
.job-row strong,
.task-row strong,
.employer-value strong {
  display: block;
  margin-bottom: 5px;
  color: var(--ink);
}

.autopilot-controls {
  display: grid;
  gap: 10px;
  margin-top: 0;
}

.autopilot-controls label {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.62);
  padding: 10px;
  line-height: 1.45;
}

.autopilot-controls input {
  width: auto;
  margin-top: 4px;
}

.autopilot-controls input:not([type="checkbox"]) {
  width: 100%;
  margin-top: 0;
}

.match-list,
.task-list,
.job-table,
.employer-value {
  display: grid;
  gap: 10px;
}

.match-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 68px;
  gap: 14px;
  align-items: center;
}

.match-meta,
.job-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
}

.company-tag {
  background: rgba(19, 194, 163, 0.1);
  color: #0f766e;
}

.score-detail {
  display: block;
  margin-top: 7px;
  color: #475467;
  font-size: 0.72rem;
  font-weight: 820;
  line-height: 1.45;
}

.score-ring {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: conic-gradient(var(--mint) var(--score), rgba(16, 20, 24, 0.08) 0);
}

.score-ring b {
  display: grid;
  place-items: center;
  width: 47px;
  height: 47px;
  border-radius: 50%;
  background: #fff;
}

.applications-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 18px;
}

.plan-result-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 16px;
  align-items: start;
}

.plan-hero-card {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.plan-hero-card p,
.plan-next-card p {
  margin: 0 0 6px;
  color: var(--mint);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.plan-hero-card h3,
.plan-next-card h3 {
  margin: 0 0 6px;
  font-size: 1.3rem;
}

.plan-hero-card span,
.plan-next-card span,
.plan-job-list em {
  display: block;
  color: var(--muted);
  font-size: 0.8rem;
  font-style: normal;
  line-height: 1.5;
}

.plan-summary-card {
  grid-column: 2;
  grid-row: 2;
}

.sample-card,
.plan-list-card {
  grid-column: 1;
}

.paid-card {
  grid-column: 2;
  grid-row: 3;
}

.plan-next-card {
  grid-column: 2;
  grid-row: 4;
  position: sticky;
  top: 104px;
}

.plan-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.plan-metrics article,
.plan-job-list article {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.72);
  padding: 12px;
}

.plan-metrics strong {
  display: block;
  color: var(--ink);
  font-size: 1.25rem;
}

.plan-metrics span,
.plan-job-list span {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 760;
}

.plan-job-list {
  display: grid;
  gap: 10px;
}

.plan-job-list strong {
  display: block;
  margin: 4px 0;
}

.sample-preview {
  display: grid;
  gap: 10px;
}

.sample-preview article,
.preview-modal-body article {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.72);
  padding: 12px;
}

.sample-preview span,
.preview-modal-body span {
  display: block;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 850;
}

.sample-preview strong,
.preview-modal-body strong {
  display: block;
  margin: 4px 0;
  color: var(--ink);
  line-height: 1.45;
}

.sample-preview em {
  display: block;
  color: var(--muted);
  font-size: 0.8rem;
  font-style: normal;
  line-height: 1.55;
}

.paid-value-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.paid-value-grid article {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(248, 250, 252, 0.86);
  padding: 12px;
}

.paid-value-grid strong {
  display: block;
  font-size: 1.25rem;
}

.paid-value-grid span,
.paid-result {
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.5;
}

.price-options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: 12px 0;
}

.price-option {
  min-height: 72px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.72);
  padding: 8px;
}

.price-option.active {
  border-color: rgba(22, 119, 255, 0.36);
  background: rgba(22, 119, 255, 0.1);
  box-shadow: 0 10px 28px rgba(22, 119, 255, 0.12);
}

.price-option strong,
.price-option span {
  display: block;
}

.price-option strong {
  color: var(--ink);
  font-size: 1rem;
}

.price-option span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
}

#planNextSteps {
  display: grid;
  gap: 8px;
}

.status-board {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.task-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
}

.task-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 6px;
}

.task-actions button {
  min-height: 30px;
  border: 0;
  border-radius: 999px;
  background: rgba(22, 119, 255, 0.1);
  color: #155eef;
  padding: 0 9px;
  font-size: 0.72rem;
  font-weight: 850;
}

.action-panel {
  position: sticky;
  top: 104px;
}

.action-panel div {
  color: var(--muted);
  line-height: 1.7;
}

.action-list {
  display: grid;
  gap: 8px;
}

.action-list span {
  display: block;
}

.action-list a {
  color: var(--blue);
  font-weight: 850;
  text-decoration: none;
}

.job-pool-tabs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 6px;
  margin-bottom: 12px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.72);
  padding: 6px;
}

.job-layout,
.employer-grid {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.filter-card {
  position: sticky;
  top: 104px;
}

.toggle-row {
  display: flex;
  gap: 8px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.62);
  padding: 10px;
}

.toggle-row input {
  width: auto;
}

.filter-note {
  margin-top: 12px;
  border-radius: 14px;
  background: rgba(22, 119, 255, 0.08);
  color: #344054;
  padding: 12px;
  font-size: 0.76rem;
  font-weight: 760;
  line-height: 1.55;
}

.job-inspector {
  display: grid;
  gap: 8px;
  margin-top: 12px;
  border: 1px solid rgba(19, 194, 163, 0.22);
  border-radius: 16px;
  background: rgba(240, 253, 250, 0.78);
  padding: 14px;
}

.job-inspector span,
.job-inspector em,
.inspector-list small {
  color: var(--muted);
  font-size: 0.76rem;
  font-style: normal;
  line-height: 1.45;
}

.job-inspector strong {
  color: var(--ink);
  line-height: 1.35;
}

.inspector-list {
  display: grid;
  gap: 4px;
  border-top: 1px dashed rgba(19, 194, 163, 0.32);
  padding-top: 8px;
}

.inspector-list b {
  color: #0f766e;
  font-size: 0.74rem;
}

.quality-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(248, 250, 252, 0.78);
  padding: 10px 12px;
}

.quality-strip span {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
}

.quality-strip strong {
  color: var(--ink);
}

.job-table-head,
.job-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 76px 104px 104px;
  gap: 10px;
  align-items: center;
}

.job-table-head {
  margin: 14px 0 10px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  padding: 0 14px 10px;
  font-size: 0.72rem;
  font-weight: 900;
}

.job-row.is-selected {
  border-color: rgba(19, 194, 163, 0.38);
  background: rgba(240, 253, 250, 0.9);
}

.job-city {
  margin: 0;
}

.source-cell {
  min-width: 0;
}

.source-link {
  display: grid;
  gap: 2px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 850;
  text-decoration: none;
  white-space: nowrap;
}

.source-link small {
  color: #98a2b3;
  font-size: 0.66rem;
  font-weight: 780;
}

.source-link:hover {
  color: var(--blue);
}

.source-link.is-disabled {
  opacity: 0.55;
}

.job-badge.is-real {
  color: #067647;
  background: rgba(18, 183, 106, 0.1);
}

.job-badge.is-demo {
  color: #92400e;
  background: rgba(255, 159, 67, 0.14);
}

.job-badge.is-match {
  color: #155eef;
  background: rgba(22, 119, 255, 0.1);
}

.job-preview {
  display: grid;
  gap: 5px;
  margin-top: 10px;
  border-top: 1px dashed rgba(19, 194, 163, 0.35);
  padding-top: 10px;
}

.job-preview span {
  color: #475467;
  font-size: 0.72rem;
}

.apply-btn {
  min-height: 42px;
  padding: 0 10px;
  font-size: 0.76rem;
  line-height: 1;
  white-space: nowrap;
}

.job-actions {
  display: grid;
  gap: 6px;
}

.detail-btn,
.apply-btn {
  width: 100%;
}

.detail-btn {
  min-height: 32px;
  padding: 0 8px;
  font-size: 0.72rem;
  line-height: 1;
  white-space: nowrap;
}

.apply-btn.is-added {
  color: #067647;
  border-color: rgba(18, 183, 106, 0.28);
  background: rgba(18, 183, 106, 0.11);
}

.empty-row {
  border: 1px dashed var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.56);
  padding: 18px;
}

.empty-row span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.82rem;
}

.employer-form {
  display: grid;
  gap: 6px;
}

.employer-value article + article {
  margin-top: 0;
}

.employer-publish-result {
  display: grid;
  gap: 8px;
  margin-top: 12px;
}

.publish-empty,
.publish-card {
  border: 1px solid rgba(18, 103, 255, 0.12);
  border-radius: 14px;
  background: rgba(248, 250, 252, 0.82);
  padding: 12px;
}

.publish-card {
  border-color: rgba(17, 184, 156, 0.2);
  background: rgba(240, 253, 250, 0.78);
}

.publish-empty span,
.publish-empty em,
.publish-card span,
.publish-card em,
.publish-card small {
  display: block;
  color: var(--muted);
  font-size: 0.74rem;
  font-style: normal;
  line-height: 1.45;
}

.publish-empty strong,
.publish-card strong {
  display: block;
  margin: 4px 0;
  color: var(--ink);
  line-height: 1.35;
}

.modal-layer {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  background: rgba(15, 23, 42, 0.38);
  padding: 20px;
  backdrop-filter: blur(10px);
}

.modal-layer[hidden] {
  display: none;
}

.preview-modal {
  width: min(720px, 100%);
  max-height: min(760px, calc(100vh - 40px));
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 30px 90px rgba(15, 23, 42, 0.22);
  padding: 18px;
}

.preview-modal p {
  margin: 0 0 4px;
  color: var(--mint);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.preview-modal h3 {
  margin: 0;
  font-size: 1.15rem;
}

.preview-modal-body {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.preview-modal-body a {
  color: var(--blue);
  text-decoration: none;
}

.preview-modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 14px;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 14px;
  width: min(var(--page-max), 100%);
  margin: 0 auto;
  padding: 8px var(--page-pad) 24px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 760;
  line-height: 1.6;
  text-align: center;
}

.site-footer a {
  color: #475467;
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--blue);
}

@media (max-width: 1400px) {
  .home-module-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .candidate-grid {
    grid-template-columns: minmax(310px, 0.82fr) minmax(0, 1.18fr);
  }

  .recommendation-card {
    grid-column: 1 / -1;
  }

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

  .coach-grid,
  .agent-demo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1080px) {
  .topbar,
  .result-slide,
  .agent-rail,
  .coach-console,
  .module-layout,
  .myai-grid,
  .jobagent-demo,
  .candidate-grid,
  .plan-result-grid,
  .applications-grid,
  .webapply-console,
  .job-layout,
  .employer-grid {
    grid-template-columns: 1fr;
  }

  .topbar,
  .plan-next-card,
  .filter-card,
  .action-panel {
    position: static;
  }

  .plan-hero-card,
  .plan-summary-card,
  .sample-card,
  .plan-list-card,
  .paid-card,
  .plan-next-card {
    grid-column: 1;
    grid-row: auto;
  }

  .run-steps {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .result-slide {
    gap: 14px;
  }

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

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

  .myai-dashboard,
  .myai-progress-grid,
  .myai-result-grid {
    grid-template-columns: 1fr;
  }

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

  .webapply-sidebar {
    position: static;
  }

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

  .webapply-filterbar,
  .webapply-download-panel {
    grid-template-columns: 1fr;
  }

  .webapply-benefits,
  .webapply-guide-strip,
  .webapply-guide-visuals,
  .webapply-company-grid {
    grid-template-columns: 1fr;
  }

  .campus-intel-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .campus-intel-toolbar {
    grid-template-columns: 1fr;
  }

  .webapply-guide-strip article:not(:last-child)::after {
    display: none;
  }

  .result-card-grid,
  .path-board {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 760px) {
  .app-shell {
    padding: 12px;
  }

  .topbar {
    border-radius: 18px;
    padding: 10px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
    border-radius: 11px;
  }

  .brand p {
    font-size: 0.62rem;
  }

  .brand h1 {
    font-size: 0.86rem;
  }

  .compact {
    width: 100%;
  }

  .signal-strip,
  .workflow-strip,
  .home-module-grid,
  .myai-stats,
  .myai-form-grid,
  .context-grid,
  .webapply-menu,
  .webapply-feature-grid,
  .webapply-step-list,
  .webapply-browser-grid,
  .webapply-mini-status,
  .webapply-tabs,
  .webapply-company-grid,
  .hero-proof,
  .coach-grid,
  .agent-demo-grid,
  .run-steps,
  .status-board,
  .job-pool-tabs,
  .form-row {
    grid-template-columns: 1fr;
  }

  .top-nav {
    display: flex;
    gap: 4px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .top-nav::-webkit-scrollbar {
    display: none;
  }

  .top-nav .nav-btn {
    min-width: 86px;
    flex: 0 0 auto;
  }

  .lab-page-shell {
    margin-top: 14px;
  }

  .career-lab-frame,
  .lab-page-frame {
    width: 100%;
    border-radius: 18px;
    box-shadow: none;
  }

  .jobagent-demo {
    padding: 14px;
  }

  .coach-console {
    padding: 14px;
  }

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

  .agent-demo-flow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .banner-slide {
    padding: 16px;
  }

  .idea-slide {
    padding: 34px 16px;
  }

  .idea-box h2 {
    font-size: 2.08rem;
  }

  .home-clean-hero {
    margin-top: 42px;
  }

  .home-clean-hero h2 {
    font-size: 2.55rem;
  }

  .home-clean-hero > strong {
    font-size: 0.92rem;
  }

  .home-command {
    grid-template-columns: 1fr;
    border-radius: 16px;
  }

  .home-command .primary-btn {
    width: 100%;
  }

  .home-module-card {
    min-height: auto;
    padding: 22px;
  }

  .webapply-hero,
  .webapply-install-card,
  .webapply-page,
  .webapply-sidebar {
    padding: 16px;
  }

  .webapply-landing-hero {
    margin: 44px auto 28px;
  }

  .webapply-landing-hero strong {
    width: auto;
    white-space: normal;
  }

  .webapply-install-actions > div,
  .company-card-footer,
  .company-card-links {
    display: grid;
    grid-template-columns: 1fr;
  }

  .campus-intel {
    margin-top: 44px;
    padding-top: 28px;
  }

  .campus-intel-frame-shell {
    margin-top: 34px;
    border-radius: 18px;
    box-shadow: none;
  }

  .campus-intel-frame {
    height: 1880px;
  }

  .campus-intel-head,
  .campus-intel-detail-summary {
    display: grid;
    align-items: start;
  }

  .campus-intel-head > a {
    width: fit-content;
  }

  .campus-intel-stats,
  .campus-intel-detail dl {
    grid-template-columns: 1fr;
  }

  .campus-intel-drawer > section {
    width: 100%;
    padding: 18px;
  }

  .webapply-install-actions .secondary-btn,
  .webapply-main-download {
    width: 100%;
  }

  .webapply-guide-visuals img {
    height: 220px;
  }

  .company-card-top {
    grid-template-columns: 42px minmax(0, 1fr);
  }

  .company-card-top b {
    grid-column: 1 / -1;
    width: fit-content;
  }

  .webapply-page-head.compact-head {
    display: grid;
  }

  .idea-input-shell {
    grid-template-columns: 1fr;
  }

  .hero-copy,
  .market-panel,
  .glass-card {
    padding: 16px;
  }

  h2 {
    font-size: 2.08rem;
  }

  .hero-card,
  .hero-card img {
    min-height: 300px;
  }

  .phone-card {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }

  .market-panel {
    min-height: auto;
  }

  .banner-viewport {
    height: 430px;
  }

  .result-slide {
    grid-template-rows: auto minmax(0, 1fr);
    gap: 10px;
  }

  .premium-copy {
    padding: 12px;
  }

  .premium-copy h2 {
    margin-bottom: 6px;
    font-size: 1.42rem;
  }

  .premium-copy p {
    font-size: 0.76rem;
    line-height: 1.45;
  }

  .hero-proof {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
    margin-top: 8px;
  }

  .hero-proof article {
    padding: 6px;
  }

  .hero-proof strong {
    font-size: 1rem;
  }

  .hero-proof span {
    font-size: 0.66rem;
  }

  .hero-actions {
    display: none;
  }

  .trust-row {
    display: none;
  }

  .market-panel h2 {
    font-size: 1.25rem;
  }

  .hot-job-list {
    height: 88px;
  }

  .banner-arrow {
    top: auto;
    bottom: 12px;
    width: 36px;
    height: 36px;
    font-size: 1.25rem;
    transform: none;
  }

  .banner-prev {
    left: 12px;
  }

  .banner-next {
    right: 12px;
  }

  .banner-dots {
    margin-top: 8px;
  }

  .hot-job-card {
    align-items: flex-start;
    flex-direction: column;
  }

  .offer-ticker {
    height: 74px;
  }

  .rings,
  .evidence-grid,
  .parse-grid,
  .plan-metrics,
  .paid-value-grid,
  .price-options,
  .preview-modal-body,
  .match-row,
  .task-row,
  .job-row {
    grid-template-columns: 1fr;
  }

  .plan-hero-card {
    align-items: stretch;
    flex-direction: column;
  }

  .job-table-head {
    display: none;
  }

  .job-row {
    gap: 9px;
  }

  .job-city {
    font-size: 0.9rem;
  }

  .source-link {
    grid-auto-flow: column;
    justify-content: start;
    gap: 8px;
  }

  .job-actions {
    grid-template-columns: 1fr 1fr;
  }

  .apply-btn,
  .detail-btn {
    width: 100%;
  }

  .task-actions {
    justify-content: flex-start;
  }

  .agent-rail {
    align-items: stretch;
    padding: 12px;
  }

  .agent-rail .score-pill {
    justify-self: start;
  }

  .hero-proof article {
    padding: 10px;
  }

  .preview-modal-actions {
    display: grid;
    grid-template-columns: 1fr;
  }
}
