:root {
  --bg: #fbfbfd;
  --panel: #ffffff;
  --ink: #12121a;
  --ink-2: #53535f;
  --muted: #8a8a96;
  --line: #ececf1;
  --line-2: #e2e2e9;
  --violet: #5b2eef;
  --violet-2: #6d44f5;
  --violet-ink: #4a1fd6;
  --violet-soft: #f1edfe;
  --green: #15935b;
  --green-soft: #e8f6ee;
  --amber: #b9791f;
  --amber-soft: #fbf2e3;
  --disp: "Geist", system-ui, -apple-system, sans-serif;
  --body: "Inter", system-ui, -apple-system, sans-serif;
  --shadow-lg: 0 40px 90px -40px rgba(30, 25, 70, 0.3);
  --shadow-md: 0 12px 32px -12px rgba(30, 25, 70, 0.16);
  --shadow-sm: 0 1px 3px rgba(20, 20, 40, 0.05);
  --r: 14px;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  letter-spacing: -0.011em;
}
a {
  text-decoration: none;
  color: inherit;
}
.wrap {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 32px;
}
.wrap.narrow {
  max-width: 760px;
}
h1,
h2,
h3 {
  font-family: var(--disp);
  letter-spacing: -0.03em;
  color: var(--ink);
}

/* promo bar */
.promo-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  background: var(--ink);
  color: #fff;
  font-size: 13.5px;
  font-weight: 450;
  padding: 11px 20px;
  text-align: center;
}
.promo-bar strong {
  font-weight: 600;
}
.promo-bar .pb-count {
  color: var(--violet);
  background: rgba(124, 92, 255, 0.16);
  font-weight: 600;
  font-size: 12px;
  padding: 2px 10px;
  border-radius: 100px;
}
.promo-bar .pb-cta {
  font-weight: 600;
  color: #fff;
  opacity: 0.9;
}
.promo-bar:hover .pb-cta {
  opacity: 1;
}
.promo-bar.is-full {
  background: var(--green);
}
.promo-bar.is-full .pb-count {
  color: #fff;
  background: rgba(255, 255, 255, 0.2);
}

/* buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  background: var(--violet);
  color: #fff;
  font-weight: 500;
  font-size: 15.5px;
  padding: 14px 24px;
  border-radius: 11px;
  box-shadow:
    0 1px 2px rgba(91, 46, 239, 0.3),
    0 8px 24px -8px rgba(91, 46, 239, 0.5);
  transition:
    transform 0.12s,
    box-shadow 0.12s,
    background 0.12s;
}
.btn-primary:hover {
  transform: translateY(-1px);
  background: var(--violet-2);
  box-shadow:
    0 1px 2px rgba(91, 46, 239, 0.3),
    0 14px 32px -8px rgba(91, 46, 239, 0.6);
}
.btn-primary.full,
.btn-ghost.full {
  width: 100%;
}
.btn-primary.lg {
  font-size: 16.5px;
  padding: 16px 30px;
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  color: var(--ink);
  font-weight: 500;
  font-size: 15.5px;
  padding: 14px 18px;
  border-radius: 11px;
  border: 1px solid var(--line-2);
  background: var(--panel);
  transition:
    border-color 0.12s,
    transform 0.12s;
}
.btn-ghost:hover {
  border-color: #d2d2dc;
  transform: translateY(-1px);
}

/* nav */
#nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 251, 253, 0.82);
  backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid transparent;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}
#nav.scrolled {
  border-bottom-color: var(--line);
}
.nav-in {
  max-width: 1160px;
  margin: 0 auto;
  padding: 15px 32px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: var(--disp);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -0.02em;
}
.brand .mk,
.foot-brand .mk {
  width: 27px;
  height: 27px;
  border-radius: 8px;
  background: var(--violet);
  display: grid;
  place-items: center;
  color: #fff;
  font-family: var(--disp);
  font-weight: 700;
  font-size: 15px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 14.5px;
  color: var(--ink-2);
  font-weight: 450;
  margin-right: auto;
}
.nav-links a:hover {
  color: var(--ink);
}
.nav-cta {
  background: var(--ink);
  color: #fff;
  padding: 9px 17px;
  border-radius: 9px;
  font-weight: 500;
  font-size: 14px;
  transition: background 0.12s;
}
.nav-cta:hover {
  background: #000;
}
@media (max-width: 760px) {
  .nav-links {
    display: none;
  }
}

/* hero */
.hero {
  text-align: center;
  padding: 82px 0 0;
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 13.5px;
  font-weight: 450;
  color: var(--ink-2);
  background: var(--panel);
  border: 1px solid var(--line-2);
  padding: 6px 15px 6px 7px;
  border-radius: 100px;
  margin-bottom: 28px;
  box-shadow: var(--shadow-sm);
}
.pill .tag {
  background: var(--violet-soft);
  color: var(--violet);
  font-weight: 600;
  font-size: 11px;
  padding: 2px 9px;
  border-radius: 100px;
}
h1 {
  font-weight: 600;
  font-size: 62px;
  line-height: 1.05;
  margin: 0 auto 22px;
  max-width: 16ch;
}
.lead {
  font-size: 20px;
  line-height: 1.55;
  color: var(--ink-2);
  max-width: 33em;
  margin: 0 auto 34px;
  font-weight: 450;
}
.cta-row {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.microtrust {
  margin-top: 20px;
  font-size: 13.5px;
  color: var(--muted);
  font-weight: 450;
}

/* product visual */
.stage {
  position: relative;
  margin-top: 64px;
}
.glow {
  position: absolute;
  left: 50%;
  top: 6%;
  transform: translateX(-50%);
  width: 72%;
  height: 72%;
  background: radial-gradient(
    ellipse at center,
    rgba(91, 46, 239, 0.16),
    transparent 62%
  );
  filter: blur(34px);
  z-index: 0;
  pointer-events: none;
}
.browser {
  position: relative;
  z-index: 1;
  max-width: 1080px;
  margin: 0 auto;
  background: var(--panel);
  border: 1px solid var(--line-2);
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.b-bar {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 16px;
  border-bottom: 1px solid var(--line);
  background: #fcfcfd;
}
.b-dots {
  display: flex;
  gap: 7px;
}
.b-dots i {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #e0e0e7;
  display: block;
}
.b-url {
  flex: 1;
  max-width: 420px;
  margin: 0 auto;
  background: #f1f1f5;
  border-radius: 8px;
  padding: 6px 14px;
  font-size: 12.5px;
  color: var(--muted);
  text-align: center;
}
.b-body {
  display: grid;
  grid-template-columns: 1fr 372px;
  min-height: 498px;
}
.jobpage {
  padding: 34px 38px;
  background: #fdfdfe;
  border-right: 1px solid var(--line);
  text-align: left;
}
.jp-tag {
  font-size: 11px;
  color: var(--muted);
  font-weight: 600;
  letter-spacing: 0.06em;
  margin-bottom: 14px;
}
.jp-h {
  font-family: var(--disp);
  font-size: 23px;
  font-weight: 600;
  color: #33333d;
  margin-bottom: 6px;
}
.jp-co {
  font-size: 14px;
  color: var(--ink-2);
  margin-bottom: 26px;
}
.jp-line {
  height: 11px;
  border-radius: 6px;
  background: #eeeef3;
  margin-bottom: 11px;
}
.jp-line.s1 {
  width: 96%;
}
.jp-line.s2 {
  width: 88%;
}
.jp-line.s3 {
  width: 92%;
}
.jp-line.s4 {
  width: 70%;
}
.jp-block {
  margin-top: 24px;
}
.jp-sub {
  height: 13px;
  width: 120px;
  border-radius: 6px;
  background: #e6e6ee;
  margin-bottom: 16px;
}

/* side panel (shared look) */
.panel {
  background: var(--panel);
  padding: 20px 18px;
  display: flex;
  flex-direction: column;
  gap: 13px;
  text-align: left;
}
.p-head {
  display: flex;
  align-items: center;
  gap: 9px;
  padding-bottom: 13px;
  border-bottom: 1px solid var(--line);
}
.p-head .mk {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: var(--violet);
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  font-family: var(--disp);
}
.p-head .t b {
  display: block;
  font-size: 14px;
  font-weight: 600;
}
.p-head .t span {
  font-size: 12px;
  color: var(--muted);
}
.card {
  border: 1px solid var(--line-2);
  border-radius: 12px;
  padding: 14px;
}
.card-lbl {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}
.step-n {
  width: 17px;
  height: 17px;
  border-radius: 5px;
  background: var(--violet-soft);
  color: var(--violet);
  display: grid;
  place-items: center;
  font-size: 10.5px;
  font-weight: 700;
}
.job-title {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 3px;
}
.job-meta {
  font-size: 12.5px;
  color: var(--ink-2);
}
.chip-ok {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 500;
  color: var(--green);
  background: var(--green-soft);
  padding: 4px 10px;
  border-radius: 100px;
  margin-top: 11px;
}
.score-card {
  display: flex;
  align-items: center;
  gap: 15px;
}
.ring {
  position: relative;
  width: 78px;
  height: 78px;
  flex: none;
}
.ring .n {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-family: var(--disp);
  font-size: 24px;
  font-weight: 700;
}
.score-meta b {
  font-size: 14.5px;
  font-weight: 600;
  display: block;
  margin-bottom: 2px;
}
.score-meta span {
  font-size: 12.5px;
  color: var(--ink-2);
  display: block;
}
.score-up {
  display: inline-block;
  margin-top: 6px;
  font-size: 11.5px;
  font-weight: 600;
  color: var(--green);
  background: var(--green-soft);
  padding: 2px 8px;
  border-radius: 100px;
}
.miss-title {
  font-size: 12.5px;
  font-weight: 600;
  margin-bottom: 9px;
}
.miss-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.mc {
  font-size: 11.5px;
  font-weight: 500;
  color: var(--amber);
  background: var(--amber-soft);
  border: 1px solid #f0dcb5;
  padding: 3px 9px;
  border-radius: 7px;
}
.p-cta {
  margin-top: auto;
  background: var(--violet);
  color: #fff;
  text-align: center;
  font-weight: 600;
  font-size: 14px;
  padding: 12px;
  border-radius: 10px;
  box-shadow: 0 6px 16px -6px rgba(91, 46, 239, 0.5);
}
@media (max-width: 900px) {
  .b-body {
    grid-template-columns: 1fr;
  }
  .jobpage {
    display: none;
  }
  h1 {
    font-size: 42px;
  }
  .lead {
    font-size: 18px;
  }
}

/* ===== HERO TOOL: checker + AI comparison ===== */
.hero-tool {
  position: relative;
  margin-top: 56px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}
.hero-tool .glow {
  top: -6%;
  height: 60%;
}
.checker {
  position: relative;
  z-index: 1;
  background: var(--panel);
  border: 1px solid var(--line-2);
  border-radius: 20px;
  padding: 22px;
  box-shadow: var(--shadow-lg);
}
.ck-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}
.ck-head b {
  font-family: var(--disp);
  font-size: 16px;
  font-weight: 600;
  display: block;
  margin-bottom: 3px;
  letter-spacing: -0.01em;
}
.ck-head span {
  font-size: 13px;
  color: var(--ink-2);
}
.ck-badge {
  flex: none;
  font-size: 11.5px;
  font-weight: 600;
  color: var(--violet);
  background: var(--violet-soft);
  padding: 4px 11px;
  border-radius: 100px;
}
.ck-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}
.ck-field label {
  display: block;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 6px;
}
.ck-field textarea {
  width: 100%;
  min-height: 130px;
  resize: vertical;
  font-family: var(--body);
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--ink);
  padding: 12px;
  border: 1px solid var(--line-2);
  border-radius: 11px;
  background: #fcfcfd;
  outline: none;
  transition:
    border-color 0.15s,
    box-shadow 0.15s;
}
.ck-field textarea:focus {
  border-color: var(--violet);
  box-shadow: 0 0 0 3px var(--violet-soft);
  background: #fff;
}
.ck-upload {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 8px;
  flex-wrap: wrap;
}
.ck-upbtn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 600;
  color: var(--violet);
  background: var(--violet-soft);
  padding: 6px 11px;
  border-radius: 8px;
  transition: background 0.15s;
}
.ck-upbtn:hover {
  background: #e6dffb;
}
.ck-upstatus {
  font-size: 11.5px;
  color: var(--ink-2);
}
.ck-upstatus.ok {
  color: var(--green);
}
.ck-upstatus.err {
  color: var(--amber);
}
/* results */
.ck-results {
  display: none;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.ck-results.show {
  display: block;
  animation: fbIn 0.35s ease;
}
.ck-scorewrap {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 16px;
}
.ring.lg {
  width: 96px;
  height: 96px;
}
.ring.lg .n {
  font-size: 30px;
}
.ck-verdict b {
  font-family: var(--disp);
  font-size: 17px;
  font-weight: 600;
  display: block;
  margin-bottom: 2px;
}
.ck-verdict > span {
  font-size: 13px;
  color: var(--ink-2);
  display: block;
}
.ck-miss {
  margin-bottom: 16px;
}
.ck-dim {
  color: var(--muted);
  font-weight: 400;
}
.ck-cta {
  margin-top: 4px;
}

@media (max-width: 900px) {
  .ck-grid {
    grid-template-columns: 1fr;
  }
}

/* hero trust row (below CTA) */
.trustrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.tr-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  color: var(--ink-2);
  font-weight: 450;
}
.tr-item svg {
  color: var(--violet);
  flex: none;
}
.tr-item.tr-count {
  color: var(--ink);
  font-weight: 600;
}

/* problem statement */
.problem {
  padding: 88px 0 70px;
  text-align: center;
}
.problem h2 {
  font-size: 34px;
  font-weight: 600;
  line-height: 1.2;
  max-width: 18ch;
  margin: 0 auto 18px;
}
.problem-body {
  font-size: 17px;
  color: var(--ink-2);
  line-height: 1.65;
  max-width: 42em;
  margin: 0 auto 40px;
}
.problem-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  text-align: left;
  margin-bottom: 36px;
}
.pc {
  background: var(--panel);
  border: 1px solid var(--line-2);
  border-radius: 14px;
  padding: 20px;
}
.pc-icon {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: var(--amber-soft);
  color: var(--amber);
  display: grid;
  place-items: center;
  margin-bottom: 12px;
}
.pc b {
  display: block;
  font-family: var(--disp);
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 6px;
}
.pc span {
  font-size: 13.5px;
  color: var(--ink-2);
  line-height: 1.5;
}
.problem-signoff {
  font-family: var(--disp);
  font-size: 19px;
  font-weight: 600;
  color: var(--violet);
}
@media (max-width: 760px) {
  .problem-cards {
    grid-template-columns: 1fr;
  }
}

/* trustbar (compatibility strip) */
.trustbar {
  padding: 44px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.trustbar-in {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 14px;
  color: var(--muted);
}
.tb-logos {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}
.tb-logo {
  font-family: var(--disp);
  font-weight: 600;
  font-size: 15px;
  color: #8f8f9c;
  letter-spacing: -0.01em;
  padding: 6px 14px;
  border: 1px solid var(--line-2);
  border-radius: 9px;
  background: var(--panel);
}
.tb-logo.cc {
  font-family: var(--body);
  font-weight: 500;
  font-size: 13px;
  color: var(--muted);
  border-style: dashed;
  background: transparent;
}
/* Real logo images: subtle grayscale treatment (compatibility signal, not
   endorsement) - matches the muted text-badge look. Falls back to a text
   badge via the img's onerror handler if a logo file isn't present yet. */
.tb-logo.tb-img {
  padding: 8px 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.tb-logo.tb-img img {
  height: 18px;
  width: auto;
  display: block;
  filter: grayscale(100%) opacity(0.55);
  transition: filter 0.15s;
}
.tb-logo.tb-img:hover img {
  filter: grayscale(0%) opacity(0.85);
}

/* sections */
.section {
  padding: 96px 0;
}
.section.alt {
  background: var(--panel);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.sec-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 52px;
}
.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: var(--violet);
  margin-bottom: 14px;
}
.sec-head h2 {
  font-size: 40px;
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 14px;
}
.sec-head p {
  font-size: 17.5px;
  color: var(--ink-2);
}

/* flow */
.flow {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: center;
}
.flow-steps {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.flow-step {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  text-align: left;
  padding: 18px;
  border-radius: 14px;
  border: 1px solid transparent;
  background: transparent;
  cursor: pointer;
  transition:
    background 0.18s,
    border-color 0.18s;
  font-family: var(--body);
  width: 100%;
}
.flow-step:hover {
  background: var(--panel);
}
.flow-step.is-active {
  background: var(--panel);
  border-color: var(--line-2);
  box-shadow: var(--shadow-sm);
}
.fs-n {
  width: 26px;
  height: 26px;
  flex: none;
  border-radius: 8px;
  background: #eeeef3;
  color: var(--muted);
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 13px;
  transition:
    background 0.18s,
    color 0.18s;
  font-family: var(--disp);
}
.flow-step.is-active .fs-n {
  background: var(--violet);
  color: #fff;
}
.flow-step b {
  display: block;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 3px;
  letter-spacing: -0.01em;
}
.flow-step span {
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.5;
}
.flow-stage {
  background: var(--bg);
  border: 1px solid var(--line-2);
  border-radius: 18px;
  padding: 8px;
  box-shadow: var(--shadow-md);
}
.fp-head {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 14px 16px;
}
.fp-head .mk {
  width: 26px;
  height: 26px;
  border-radius: 7px;
  background: var(--violet);
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  font-family: var(--disp);
}
.fp-head b {
  font-size: 14px;
  font-weight: 600;
}
.fp-status {
  margin-left: auto;
  font-size: 12px;
  color: var(--muted);
  font-weight: 500;
}
.fp-status.working {
  color: var(--violet);
}
.fp-body {
  background: var(--panel);
  border-radius: 12px;
  padding: 20px;
  min-height: 280px;
  border: 1px solid var(--line);
}
/* flow inner bits */
.fb-fade {
  animation: fbIn 0.4s ease;
}
@keyframes fbIn {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fb-job {
  font-family: var(--disp);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 4px;
}
.fb-co {
  font-size: 13px;
  color: var(--ink-2);
  margin-bottom: 18px;
}
.fb-scan {
  height: 10px;
  border-radius: 6px;
  background: #eeeef3;
  margin-bottom: 10px;
  position: relative;
  overflow: hidden;
}
.fb-scan.s1 {
  width: 94%;
}
.fb-scan.s2 {
  width: 86%;
}
.fb-scan.s3 {
  width: 90%;
}
.fb-scan.live::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 40%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(91, 46, 239, 0.35),
    transparent
  );
  animation: scan 1.1s linear infinite;
}
@keyframes scan {
  from {
    transform: translateX(-120%);
  }
  to {
    transform: translateX(320%);
  }
}
.fb-big {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}
.fb-ringnum {
  font-family: var(--disp);
  font-size: 40px;
  font-weight: 700;
}
.fb-up {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--green);
  background: var(--green-soft);
  padding: 3px 10px;
  border-radius: 100px;
}
.fb-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 6px;
}
.fb-rewrite .rw-old {
  font-size: 13.5px;
  color: #b0483a;
  text-decoration: line-through;
  opacity: 0.7;
  margin-bottom: 8px;
}
.fb-rewrite .rw-new {
  font-size: 13.5px;
  color: var(--ink);
  background: var(--green-soft);
  border-radius: 6px;
  padding: 8px 10px;
}
.fb-cta {
  margin-top: 16px;
  background: var(--violet);
  color: #fff;
  text-align: center;
  padding: 11px;
  border-radius: 9px;
  font-weight: 600;
  font-size: 13.5px;
}
@media (max-width: 860px) {
  .flow {
    grid-template-columns: 1fr;
  }
}

/* features */
.feat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.feat {
  background: var(--panel);
  border: 1px solid var(--line-2);
  border-radius: 18px;
  padding: 26px;
  box-shadow: var(--shadow-sm);
}
.section.alt .feat {
  background: var(--bg);
}
.feat-lg {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
  padding: 34px;
}
.feat h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
}
.feat p {
  font-size: 14.5px;
  color: var(--ink-2);
  line-height: 1.6;
}
.feat-icon {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  background: var(--violet-soft);
  color: var(--violet);
  display: grid;
  place-items: center;
  margin-bottom: 16px;
}
.feat-chips,
.feat-files {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 14px;
}
.ff {
  font-size: 12px;
  font-weight: 500;
  color: var(--ink-2);
  background: #f1f1f5;
  border: 1px solid var(--line-2);
  padding: 5px 11px;
  border-radius: 7px;
}
.rewrite {
  margin-top: 14px;
}
.rewrite .rw-old {
  font-size: 13px;
  color: #b0483a;
  text-decoration: line-through;
  opacity: 0.65;
  margin-bottom: 7px;
}
.rewrite .rw-new {
  font-size: 13px;
  background: var(--green-soft);
  color: #0d6b3d;
  border-radius: 6px;
  padding: 8px 10px;
}
.mini-score {
  display: flex;
  align-items: center;
  gap: 22px;
}
.ms-ring {
  position: relative;
  width: 120px;
  height: 120px;
  flex: none;
}
.ms-n {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-family: var(--disp);
  font-size: 36px;
  font-weight: 700;
}
.ms-bars {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.ms-row {
  font-size: 13px;
  color: var(--ink-2);
}
.ms-row span {
  display: block;
  margin-bottom: 5px;
}
.ms-row i {
  display: block;
  height: 7px;
  border-radius: 100px;
  background: #eeeef3;
  overflow: hidden;
}
.ms-row b {
  display: block;
  height: 100%;
  background: var(--violet);
  border-radius: 100px;
}
@media (max-width: 760px) {
  .feat-grid,
  .feat-lg {
    grid-template-columns: 1fr;
  }
  .mini-score {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* compare */
.compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}
.cmp {
  border-radius: 18px;
  padding: 28px;
}
.cmp-them {
  background: #f6f6f4;
  border: 1px solid #ececea;
}
.cmp-us {
  background: var(--panel);
  border: 1.5px solid var(--violet);
  box-shadow: var(--shadow-md);
}
.cmp-t {
  font-family: var(--disp);
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 9px;
}
.cmp-them .cmp-t {
  color: #8a6a5e;
}
.mk-sm {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: var(--violet);
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 700;
  font-size: 12px;
  font-family: var(--disp);
}
.cmp ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.cmp li {
  font-size: 14.5px;
  color: var(--ink-2);
  padding-left: 28px;
  position: relative;
  line-height: 1.5;
}
.cmp-them li::before {
  content: "✕";
  position: absolute;
  left: 0;
  color: #c07a6a;
  font-weight: 700;
}
.cmp-us li {
  color: var(--ink);
}
.cmp-us li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}
@media (max-width: 760px) {
  .compare {
    grid-template-columns: 1fr;
  }
}

/* reviews (honest placeholder) */
.rv-card {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  background: var(--panel);
  border: 1.5px dashed var(--line-2);
  border-radius: 16px;
  padding: 28px 34px;
  margin-top: 26px;
  color: var(--violet);
}
.rv-card b {
  font-family: var(--disp);
  font-size: 15px;
  color: var(--ink);
}
.rv-card span {
  font-size: 13px;
  color: var(--ink-2);
}

/* pricing */
.plans {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 820px;
  margin: 0 auto;
}
.plan {
  background: var(--bg);
  border: 1px solid var(--line-2);
  border-radius: 20px;
  padding: 30px;
}
.section.alt .plan {
  background: var(--panel);
}
.plan.featured {
  border: 1.5px solid var(--violet);
  box-shadow: var(--shadow-md);
  position: relative;
  background: var(--panel);
}
.plan-badge {
  position: absolute;
  top: -11px;
  left: 30px;
  background: var(--violet);
  color: #fff;
  font-size: 11.5px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 100px;
}
.plan-name {
  font-family: var(--disp);
  font-weight: 600;
  font-size: 17px;
  margin-bottom: 10px;
}
.plan-price {
  font-family: var(--disp);
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 6px;
}
.plan-price span {
  font-family: var(--body);
  font-size: 14.5px;
  font-weight: 450;
  color: var(--muted);
  letter-spacing: 0;
  margin-left: 6px;
}
.plan-desc {
  font-size: 14px;
  color: var(--ink-2);
  margin-bottom: 20px;
}
.plan ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-bottom: 24px;
}
.plan li {
  font-size: 14.5px;
  color: var(--ink-2);
  padding-left: 26px;
  position: relative;
}
.plan li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--violet);
  font-weight: 700;
}
@media (max-width: 760px) {
  .plans {
    grid-template-columns: 1fr;
  }
}

/* faq */
.faq details {
  border: 1px solid var(--line-2);
  border-radius: 14px;
  padding: 2px 20px;
  margin-bottom: 10px;
  background: var(--panel);
  transition: border-color 0.15s;
}
.faq details[open] {
  border-color: #d8d2f5;
}
.faq summary {
  font-family: var(--disp);
  font-weight: 600;
  font-size: 16.5px;
  padding: 18px 0;
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 30px;
}
.faq summary::-webkit-details-marker {
  display: none;
}
.faq summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 16px;
  font-size: 22px;
  color: var(--violet);
  font-weight: 400;
  transition: transform 0.2s;
}
.faq details[open] summary::after {
  content: "–";
}
.faq p {
  font-size: 15px;
  color: var(--ink-2);
  padding-bottom: 18px;
  line-height: 1.6;
}

/* final cta */
.final {
  padding: 40px 0 100px;
}
.final-card {
  background: linear-gradient(160deg, #1a1626, #12121a);
  border-radius: 26px;
  padding: 64px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-card::before {
  content: "";
  position: absolute;
  top: -40%;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 120%;
  background: radial-gradient(ellipse, rgba(91, 46, 239, 0.4), transparent 60%);
  filter: blur(30px);
}
.final-card > * {
  position: relative;
  z-index: 1;
}
.final-card h2 {
  color: #fff;
  font-size: 38px;
  font-weight: 600;
  margin-bottom: 14px;
  max-width: 18ch;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.1;
}
.final-card p {
  color: #c3c0d6;
  font-size: 17px;
  max-width: 36em;
  margin: 0 auto 28px;
}
.final-trust {
  font-size: 13px;
  color: #8f8ba8;
  margin-top: 18px;
}
.final-card .btn-primary {
  background: #fff;
  color: var(--ink);
  box-shadow: 0 8px 30px -6px rgba(0, 0, 0, 0.4);
}
.final-card .btn-primary:hover {
  background: #f2f2f5;
}

/* footer */
footer {
  border-top: 1px solid var(--line);
  padding: 32px 0;
}
.foot-in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.foot-brand {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: var(--disp);
  font-weight: 600;
  font-size: 15px;
  color: var(--ink-2);
}
.foot-links {
  display: flex;
  gap: 24px;
  font-size: 14px;
  color: var(--muted);
}
.foot-links a:hover {
  color: var(--ink);
}

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

/* ============================================================
   SCROLLYTELLING - ported from live site, restyled to design tokens.
   Class names/data-attributes unchanged so scrolly.js works as-is.
   ============================================================ */
.scrolly {
  position: relative;
  height: 500vh;
}
.scrolly-stage {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--bg);
}
.scrolly-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 32px;
  width: 100%;
  display: grid;
  grid-template-columns: 0.82fr 1fr;
  gap: 48px;
  align-items: center;
}
.sc-rail {
  position: relative;
}
.sc-head {
  font-family: var(--disp);
  font-weight: 600;
  font-size: clamp(26px, 3.4vw, 38px);
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin: 12px 0 12px;
  min-height: 2.2em;
  transition:
    opacity 0.4s ease,
    transform 0.4s ease;
}
.sc-sub {
  font-size: 16px;
  color: var(--ink-2);
  line-height: 1.6;
  max-width: 430px;
  min-height: 3em;
  margin: 0 0 24px;
  transition: opacity 0.4s ease;
}
.sc-score {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 22px;
}
.sc-score-num {
  font-family: var(--body);
  font-weight: 800;
  font-size: 60px;
  line-height: 0.85;
  letter-spacing: -0.03em;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
  display: flex;
  align-items: baseline;
}
.sc-score-pct {
  font-size: 24px;
  font-weight: 700;
  color: var(--muted);
  margin-left: 2px;
}
.sc-score-meta {
  flex: 1;
  max-width: 220px;
}
.sc-score-lbl {
  font-family: var(--body);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
  margin-bottom: 8px;
}
.sc-meter {
  height: 9px;
  background: var(--line);
  border-radius: 99px;
  overflow: hidden;
}
.sc-meter span {
  display: block;
  height: 100%;
  width: 51%;
  border-radius: 99px;
  background: linear-gradient(
    90deg,
    #d9705f 0%,
    #d9705f 40%,
    var(--violet) 100%
  );
  transition:
    width 0.25s linear,
    background 0.6s ease;
}
.sc-dots {
  display: flex;
  gap: 9px;
}
.sc-dots i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--line-2);
  display: block;
  transition:
    background 0.3s,
    transform 0.3s;
}
.sc-dots i.on {
  background: var(--violet);
  transform: scale(1.35);
}

.sc-doc {
  position: relative;
  background: var(--panel);
  border: 1px solid var(--line-2);
  border-radius: 18px;
  box-shadow: var(--shadow-md);
  padding: 34px 36px;
  overflow: hidden;
  transition: box-shadow 0.5s ease;
}
.sc-doc-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}
.sc-name {
  font-family: var(--disp);
  font-weight: 600;
  font-size: 21px;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.sc-role {
  font-size: 14px;
  color: var(--ink-2);
  margin-top: 3px;
  transition: color 0.4s;
}
.sc-role em {
  font-style: normal;
  color: var(--violet-ink);
  font-weight: 600;
}
.sc-doc-badge {
  font-family: var(--body);
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
  background: var(--bg);
  border: 1px solid var(--line-2);
  border-radius: 7px;
  padding: 5px 10px;
  white-space: nowrap;
  transition: all 0.4s;
}
.sc-doc-badge.tuned {
  color: var(--violet-ink);
  background: var(--violet-soft);
  border-color: transparent;
}
.sc-section-lbl {
  font-family: var(--body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 18px 0 9px;
}
.sc-summary {
  font-size: 14px;
  line-height: 1.65;
  color: var(--ink-2);
  margin: 0;
  transition: color 0.4s;
}
.sc-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}
.sc-skills span {
  font-family: var(--body);
  font-weight: 500;
  font-size: 12px;
  background: var(--bg);
  color: var(--ink-2);
  border-radius: 7px;
  padding: 5px 10px;
  transition:
    background 0.4s,
    color 0.4s,
    transform 0.4s;
}
.sc-skills span.kw-hot {
  background: var(--ink);
  color: #fff;
}
.sc-skills span.kw-new {
  background: var(--violet-soft);
  color: var(--violet-ink);
  opacity: 0;
  transform: translateY(6px) scale(0.9);
}
.sc-skills span.kw-new.show {
  opacity: 1;
  transform: none;
}
.sc-bullets {
  list-style: none;
  margin: 0;
  padding: 0;
}
.sc-bullets li {
  position: relative;
  padding: 0 0 0 18px;
  margin-bottom: 13px;
  font-size: 14px;
  line-height: 1.6;
  min-height: 1.6em;
}
.sc-bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--line-2);
  transition: background 0.4s;
}
.sc-bullets li.tuned::before {
  background: var(--green);
}
.sc-bullet-old,
.sc-bullet-new {
  display: block;
  transition:
    opacity 0.45s ease,
    transform 0.45s ease;
}
.sc-bullet-old {
  color: var(--ink-2);
}
.sc-bullet-new {
  color: var(--ink-2);
  position: absolute;
  top: 0;
  left: 18px;
  right: 0;
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  visibility: hidden;
}
.sc-bullet-new em {
  font-style: normal;
  color: var(--violet-ink);
  font-weight: 600;
  background: linear-gradient(transparent 62%, var(--violet-soft) 0);
  padding: 0 1px;
}
.sc-bullets li.tuned .sc-bullet-old {
  opacity: 0;
  transform: translateY(-8px);
}
.sc-bullets li.tuned .sc-bullet-new {
  opacity: 1;
  transform: none;
  position: relative;
  left: 0;
  visibility: visible;
}
.sc-scan {
  position: absolute;
  left: 0;
  right: 0;
  height: 120px;
  pointer-events: none;
  opacity: 0;
  top: 0;
  transform: translateY(-100%);
  background: linear-gradient(
    180deg,
    transparent,
    rgba(91, 46, 239, 0.08) 50%,
    transparent
  );
  border-top: 1px solid rgba(91, 46, 239, 0.3);
  border-bottom: 1px solid rgba(91, 46, 239, 0.3);
}
.sc-scan.scanning {
  opacity: 1;
}
@media (max-width: 860px) {
  .scrolly {
    height: auto;
  }
  .scrolly-stage {
    position: relative;
    height: auto;
    padding: 60px 0;
  }
  .scrolly-inner {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   GUIDES - free SEO content section, ported + restyled.
   ============================================================ */
.guides-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.guide-card {
  background: var(--panel);
  border: 1px solid var(--line-2);
  border-radius: 16px;
  padding: 24px;
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.15s,
    box-shadow 0.15s,
    border-color 0.15s;
}
.guide-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: #d8d2f5;
}
.guide-card h3 {
  font-family: var(--disp);
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 9px;
  letter-spacing: -0.01em;
  line-height: 1.25;
}
.guide-card p {
  font-size: 13.5px;
  color: var(--ink-2);
  line-height: 1.55;
  margin-bottom: 16px;
}
.guide-cta {
  font-size: 13px;
  font-weight: 600;
  color: var(--violet);
}
.guide-card.is-soon {
  opacity: 0.55;
  pointer-events: none;
}
@media (max-width: 860px) {
  .guides-grid {
    grid-template-columns: 1fr;
  }
}

/* Scrolly demo disclaimer - its scores are scripted for a fictional sample
   resume, not computed live. Must be unmistakably an example. */
.sc-illustrative {
  display: block;
  font-size: 11.5px;
  color: var(--muted);
  font-style: italic;
  margin-top: 4px;
}

/* Checker guidance and accessible feedback. */
#checker { scroll-margin-top: 110px; }
.ck-note { font-size: 13px; line-height: 1.6; color: var(--ink-2); margin: 12px 0; }
.ck-note a { color: var(--violet); text-decoration: underline; }
.ck-status { font-size: 14px; line-height: 1.5; margin: 12px 0; }
.ck-status:empty { display: none; }
.ck-status.is-error { color: #a12622; }
.ck-sample { margin-bottom: 8px; font: inherit; cursor: pointer; }
#ckGo:disabled { cursor: wait; opacity: .7; }
#checker :focus-visible { outline: 3px solid #5b2eef; outline-offset: 3px; }

/* Balanced pricing and a closing product preview. */
.plan { display:flex; flex-direction:column; }
.plan-price { min-height:58px; display:flex; align-items:baseline; flex-wrap:wrap; gap:6px; }
.plan-price [data-price-amount] { font:inherit; color:var(--ink); letter-spacing:inherit; margin-left:0; }
.plan-price [data-price-unit] { margin-left:0; }
.plan-action { margin-top:auto; padding-top:12px; }
.plan-action .full { width:100%; }
.plan-action-note { font-size:12px; line-height:1.5; color:var(--muted); text-align:center; margin:12px 0 0; min-height:36px; }
.final-card.final-grid { display:grid; grid-template-columns:1.05fr 1fr; gap:48px; align-items:center; text-align:left; padding:52px; }
.final-copy h2 { margin-left:0; margin-right:0; max-width:19ch; font-size:clamp(30px,3.2vw,40px); }
.final-eyebrow { display:block; color:#c0abff; font-size:11px; letter-spacing:2px; font-weight:600; margin-bottom:20px; }
.final-copy>p { font-size:16px; line-height:1.7; margin:0 0 24px; }
.final-actions { display:flex; align-items:center; flex-wrap:wrap; gap:20px; }
.final-actions .btn-primary { font-size:14px; padding:16px 20px; }
.final-secondary { color:#f0eaff; font-size:14px; text-decoration:underline; text-underline-offset:5px; }
.final-copy p.final-trust { font-size:12px; color:#b5afc8; margin:20px 0 0; }
.final-preview { min-width:0; padding:24px; border:1px solid #544568; border-radius:20px; background:linear-gradient(145deg,#292136,#191620); box-shadow:0 24px 48px #0003; }
.preview-top { display:flex; align-items:center; justify-content:space-between; gap:12px; color:#c7bfd6; font-size:10px; font-weight:600; letter-spacing:1.2px; margin-bottom:24px; }
.preview-badge { padding:5px 9px; border:1px solid #70637f; border-radius:20px; letter-spacing:0; }
.preview-label { display:block; font-size:10px; letter-spacing:1px; color:#beb5cd; margin-bottom:10px; }
.final-preview p { font-size:14px; line-height:1.65; margin:0; }
.preview-original { padding:0 0 20px; }
.preview-refined { padding:18px; border:1px solid #8067b4; border-radius:12px; background:#45316344; }
.preview-refined .preview-label { color:#ddceff; }
.preview-refined p { color:#fff; }
.preview-refined mark { color:inherit; background:#7550c84d; border-radius:3px; }
.final-preview p.preview-caption { color:#beb5cd; font-size:12px; margin:16px 0 20px; }
.preview-steps { display:flex; list-style:none; justify-content:space-between; gap:10px; padding:16px 0 0; margin:0; border-top:1px solid #544568; color:#eee8f6; font-size:12px; }
.preview-steps span { color:#b29adc; margin-right:4px; font-size:10px; }
.final-actions a:focus-visible { outline:3px solid #cbb6ff; outline-offset:5px; }
@media (prefers-reduced-motion:no-preference) { .final-preview:hover .preview-refined { background:#61468755; transition:background .3s ease; } }
@media(max-width:850px) { .final-card.final-grid { grid-template-columns:1fr; padding:36px; gap:32px; } .final-copy h2 { max-width:24ch; } }
@media(max-width:480px) { .final-card.final-grid { padding:26px 20px; } .final-preview { padding:18px; } .final-actions { gap:18px; } .plan-price { min-height:58px; } }

/* Responsive footer: independent groups never force a single wide link row. */
.site-footer{padding:0;background:var(--panel);border-top:1px solid var(--line)}
.site-footer .footer-main{display:grid;grid-template-columns:minmax(0,1.6fr) repeat(2,minmax(0,1fr));gap:48px;padding:56px 0 40px}
.site-footer .footer-intro,.site-footer .footer-group{min-width:0}
.footer-logo{display:inline-flex;gap:10px;align-items:center;font-family:var(--disp);font-weight:650;font-size:22px;color:var(--ink);min-height:44px}
.footer-logo>img{display:block;width:52px;height:52px;object-fit:contain}
.footer-intro p{font-size:16px;line-height:1.65;color:var(--ink-2);margin:15px 0 12px}
.footer-contact{display:inline-flex;align-items:center;min-height:44px;font-size:13px;font-weight:550;color:var(--violet-ink)}
.site-footer .footer-group h2{font-family:var(--body);font-size:12px;line-height:1.5;letter-spacing:.06em;font-weight:650;color:var(--ink);margin:10px 0 14px}
.footer-group>a{display:flex;align-items:center;min-height:44px;padding:8px 0;line-height:1.5;font-size:14px;color:var(--ink-2);overflow-wrap:anywhere}
.site-footer a:hover{color:var(--violet-ink)}
.site-footer a:focus-visible{outline:3px solid #ac90ef;outline-offset:4px;border-radius:5px}
.footer-bottom{border-top:1px solid var(--line);padding:24px 0;display:flex;align-items:center;justify-content:space-between;gap:20px;flex-wrap:wrap}
.footer-bottom p{font-size:12px;line-height:1.6;color:var(--ink-2);min-width:0}
.footer-coffee{display:inline-flex;align-items:center;justify-content:center;gap:9px;max-width:100%;min-height:44px;border:1px solid #e3d9fc;border-radius:12px;background:var(--violet-soft);color:var(--violet-ink);padding:10px 15px;font-size:13px;font-weight:600;line-height:1.5}
.footer-sr{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}
@media(max-width:720px){.site-footer .wrap{padding-inline:24px}.site-footer .footer-main{grid-template-columns:repeat(2,minmax(0,1fr));gap:24px;padding:36px 0 28px}.footer-intro{grid-column:1/-1}.footer-intro p{font-size:15px}.footer-group>a{font-size:13px}.footer-bottom{align-items:flex-start;flex-direction:column;gap:16px;padding:22px 0 28px}}
@media(max-width:360px){.site-footer .wrap{padding-inline:18px}.site-footer .footer-main{gap:18px}.footer-coffee{width:100%}}
