:root {
  --bg: #ffffff;
  --text: #111111;
  --muted: #454545;
  --line: #d2d2cd;
  --soft: #eeeeea;
  --card: #ffffff;
  --accent: #d7ff3f;
  --accent-strong: #c4ed32;
  --radius: 22px;
  --shadow: 0 18px 60px rgba(0,0,0,.13);
  --max: 1160px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }

.container {
  width: min(calc(100% - 40px), var(--max));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 10px;
  background: #111;
  color: #fff;
  padding: 10px 14px;
  z-index: 100;
}
.skip-link:focus { left: 10px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(210,210,205,.96);
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(18px);
}

.nav {
  min-height: 72px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: -.03em;
  font-size: 18px;
  white-space: nowrap;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: var(--text);
  color: #fff;
  font-size: 17px;
}

.nav-links {
  display: flex;
  gap: 24px;
  margin-left: auto;
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
}

.nav-links a:hover { color: var(--text); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.lang-switch {
  display: flex;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 3px;
}

.lang-btn {
  border: 0;
  background: transparent;
  color: var(--muted);
  border-radius: 999px;
  padding: 7px 9px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
}

.lang-btn.active {
  background: var(--text);
  color: #fff;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 20px;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 800;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}

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

.button-small {
  min-height: 40px;
  padding-inline: 15px;
  border-radius: 11px;
  font-size: 13px;
}

.button-dark {
  background: var(--text);
  color: #fff;
}

.button-primary {
  background: var(--accent);
  color: #111;
  border: 1px solid var(--accent);
}

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

.button-secondary {
  border: 1px solid #b9b9b3;
  background: #fff;
  color: #171717;
}

.hero {
  padding: 96px 0 84px;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(380px, .92fr);
  align-items: center;
  gap: 70px;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  padding: 8px 12px;
  border-radius: 999px;
  background: #e3e3de;
  color: #1c1c1c;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .02em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.final-card h2 {
  margin: 0;
  letter-spacing: -.055em;
  line-height: .98;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(48px, 6.4vw, 82px);
}

.hero-lead {
  max-width: 690px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.55;
}

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

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
}

.salary-demo {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: #fff;
  padding: 24px;
  box-shadow: var(--shadow);
}

.salary-demo::before {
  content: "";
  position: absolute;
  width: 240px;
  height: 240px;
  right: -90px;
  top: -100px;
  border-radius: 50%;
  background: var(--accent);
  filter: blur(1px);
  opacity: .55;
  z-index: -1;
}

.demo-topbar,
.demo-grid,
.concept-list > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.demo-topbar { margin-bottom: 20px; }

.demo-topbar > div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.demo-kicker,
.net-card span,
.demo-grid span,
.concept-list span {
  color: var(--muted);
  font-size: 13px;
}

.demo-status {
  display: inline-flex;
  padding: 7px 10px;
  border-radius: 999px;
  background: #111;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
}

.net-card {
  display: flex;
  flex-direction: column;
  gap: 6px;
  border-radius: 20px;
  background: var(--text);
  color: #fff;
  padding: 24px;
}

.net-card span,
.net-card small { color: #dedede; }

.net-card strong {
  font-size: 42px;
  letter-spacing: -.05em;
}

.demo-grid {
  gap: 12px;
  margin: 12px 0;
}

.demo-grid > div {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 18px;
  background: var(--soft);
  border-radius: 16px;
}

.concept-list {
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
}

.concept-list > div {
  gap: 16px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
}

.concept-list > div:last-child { border-bottom: 0; }

.problem-strip {
  background: #171717;
  color: #ffffff;
  padding: 34px 0;
}

.problem-strip p {
  max-width: 900px;
  margin: 0;
  font-size: clamp(22px, 3vw, 36px);
  line-height: 1.22;
  letter-spacing: -.03em;
  font-weight: 750;
}

.section { padding: 104px 0; }
.section-soft { background: var(--soft); }

.section-heading {
  max-width: 760px;
  margin: 0 auto 54px;
  text-align: center;
}

.section-heading.left {
  margin: 0;
  text-align: left;
}

.section-heading h2,
.final-card h2 {
  font-size: clamp(38px, 5vw, 62px);
}

.section-heading p,
.final-card p {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

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

.step-card,
.feature-card,
.audience-grid article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--card);
}

.step-card {
  padding: 28px;
  min-height: 250px;
}

.step-number {
  display: inline-block;
  margin-bottom: 48px;
  font-size: 13px;
  font-weight: 900;
}

.step-card h3,
.feature-card h3 {
  margin: 0 0 12px;
  letter-spacing: -.03em;
  font-size: 24px;
}

.step-card p,
.feature-card p,
.audience-grid span {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.split {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  align-items: center;
  gap: 80px;
}

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

.audience-grid article {
  min-height: 150px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 8px;
}

.audience-grid strong {
  font-size: 21px;
  letter-spacing: -.02em;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.feature-card {
  min-height: 255px;
  padding: 24px;
}

.feature-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 54px;
  border-radius: 12px;
  background: var(--accent);
  font-size: 21px;
  font-weight: 900;
}

.final-cta { padding-top: 30px; }

.final-card {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 50px;
  align-items: end;
  padding: 54px;
  border-radius: 30px;
  background: var(--text);
  color: #fff;
}

.final-card p { color: #d6d6d6; }

.final-actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 16px;
}

.text-link {
  color: #fff;
  text-align: center;
  font-size: 14px;
  font-weight: 750;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.faq { padding-top: 80px; }

.faq-list {
  max-width: 860px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
}

details {
  border-bottom: 1px solid var(--line);
  padding: 20px 0;
}

summary {
  list-style: none;
  cursor: pointer;
  font-size: 18px;
  font-weight: 800;
}

summary::-webkit-details-marker { display: none; }

summary::after {
  content: "+";
  float: right;
  font-size: 22px;
}

details[open] summary::after { content: "−"; }

details p {
  max-width: 720px;
  color: #414141;
  line-height: 1.65;
}

.footer {
  margin-top: 30px;
  padding: 54px 0 28px;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
}

.footer-grid p {
  margin: 16px 0 0;
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.footer-links a:hover { color: var(--text); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 44px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
}

@media (max-width: 980px) {
  .nav-links { display: none; }
  .hero-grid,
  .split,
  .final-card {
    grid-template-columns: 1fr;
  }
  .hero-grid { gap: 54px; }
  .salary-demo { max-width: 620px; }
  .steps { grid-template-columns: 1fr; }
  .step-card { min-height: auto; }
  .step-number { margin-bottom: 34px; }
  .feature-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 680px) {
  .container { width: min(calc(100% - 28px), var(--max)); }
  .nav { min-height: 64px; }
  .nav .button-small { display: none; }
  .hero { padding: 64px 0 58px; }
  .hero h1 { font-size: clamp(42px, 13vw, 64px); }
  .hero-actions { flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .salary-demo { padding: 16px; border-radius: 22px; }
  .net-card strong { font-size: 34px; }
  .section { padding: 76px 0; }
  .audience-grid,
  .feature-grid { grid-template-columns: 1fr; }
  .final-card { padding: 34px 24px; }
  .footer-grid,
  .footer-bottom { flex-direction: column; }
}


/* ================================
   SalaryApp contrast pass
   ================================ */

.nav-links {
  color: #383838;
  font-weight: 700;
}

.lang-switch {
  border-color: #bebeb8;
  background: #f7f7f5;
}

.lang-btn {
  color: #333333;
}

.trust-row {
  color: #3f3f3f;
  font-weight: 700;
}

.salary-demo {
  border-color: #c7c7c1;
}

.demo-kicker,
.demo-grid span,
.concept-list span {
  color: #454545;
}

.demo-grid > div {
  background: #ecece8;
}

.concept-list {
  border-color: #c9c9c4;
}

.concept-list > div {
  border-bottom-color: #d0d0ca;
}

.section-soft {
  background: #ecece8;
}

.section-soft .section-heading p,
.section-soft .audience-grid span {
  color: #383838;
}

.section-soft .section-kicker {
  background: #d9d9d2;
  color: #141414;
}

.step-card,
.feature-card,
.audience-grid article {
  border-color: #c8c8c2;
  box-shadow: 0 6px 22px rgba(0,0,0,.055);
}

.step-card p,
.feature-card p {
  color: #404040;
}

.audience-grid article {
  background: #ffffff;
}

.audience-grid strong {
  color: #111111;
}

.feature-icon {
  color: #111111;
  border: 1px solid #b5d92d;
}

.final-card {
  background: #141414;
}

.final-card .section-kicker {
  background: #2d2d2d;
  color: #f8f8f8;
}

.final-card p {
  color: #d7d7d7;
}

.footer-grid p,
.footer-links,
.footer-bottom {
  color: #424242;
}

.footer {
  border-top-color: #cecec8;
}

/* Better keyboard accessibility */
a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid #111111;
  outline-offset: 3px;
}

.final-card a:focus-visible,
.problem-strip a:focus-visible {
  outline-color: #ffffff;
}

/* Better hover feedback without reducing readability */
.button-secondary:hover {
  background: #f0f0ec;
  border-color: #9f9f99;
}

.nav-links a:hover,
.footer-links a:hover {
  color: #000000;
}

/* High-contrast user preference */
@media (prefers-contrast: more) {
  :root {
    --muted: #2f2f2f;
    --line: #adada7;
    --soft: #e7e7e1;
  }

  .salary-demo,
  .step-card,
  .feature-card,
  .audience-grid article {
    border-width: 2px;
  }
}