/* ============================================================
   Landing page
   ============================================================ */
.landing { padding-bottom: 60px; }

.sec-head {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(28px, 4vw, 42px); letter-spacing: -0.03em; line-height: 1.05;
  margin: 14px 0 0; max-width: 16ch; text-wrap: balance;
}

/* hero */
.hero {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 48px; align-items: center;
  padding-top: 70px; padding-bottom: 80px; min-height: 80vh;
}
.hero-title {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(40px, 6vw, 76px); line-height: 0.96; letter-spacing: -0.04em;
  margin: 22px 0 0;
}
.hero-title .grad {
  background: linear-gradient(110deg, var(--acc), var(--acc-2), var(--acc));
  background-size: 220% 100%;
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  animation: gradShift 7s linear infinite;
}
@keyframes gradShift { to { background-position: -220% 0; } }

/* section-header reveal-on-scroll (transform-only motion — never hides text,
   so a throttled/frozen transition can't leave a header invisible) */
.reveal-init { transform: translateY(20px); transition: transform 0.6s var(--ease); }
.reveal-in { transform: none; transition: transform 0.6s var(--ease); }
@media (prefers-reduced-motion: reduce) { .reveal-init { transform: none; } }

/* animated gradient on emphasized heading words (colors + motion) */
.sec-head em {
  font-family: var(--font-serif); font-style: italic;
  background: linear-gradient(110deg, var(--acc), var(--acc-2), var(--acc));
  background-size: 220% 100%;
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  animation: gradShift 7s linear infinite;
}
@media (prefers-reduced-motion: reduce) { .sec-head em, .hero-title .grad { animation: none; } }
.hero-sub {
  margin-top: 22px; font-size: 18px; line-height: 1.6; color: var(--ink-2); max-width: 46ch;
}
.hero-sub em { font-family: var(--font-serif); font-style: italic; color: var(--ink); font-size: 1.1em; }
.hero-count { font-weight: 800; color: var(--acc); font-variant-numeric: tabular-nums; }
.hero-cta { display: flex; align-items: center; gap: 8px; margin-top: 34px; }
.hero-meta { display: flex; align-items: center; gap: 12px; margin-top: 30px; font-size: 14px; color: var(--ink-2); }
.hero-meta b { color: var(--ink); }
.stars { display: flex; gap: 2px; color: var(--acc-2); }

/* hero stage */
.hero-stage { position: relative; display: grid; place-items: center; perspective: 1600px; }
.stage-glow {
  position: absolute; width: 120%; height: 120%; border-radius: 50%;
  background: radial-gradient(circle, var(--acc-glow), transparent 60%); filter: blur(40px); opacity: 0.55;
}
.stage-paper {
  width: 380px; border-radius: 14px; overflow: hidden;
  transform: rotateY(-13deg) rotateX(4deg) rotate(1.5deg);
  box-shadow: var(--shadow-3); position: relative;
  animation: pop 0.7s var(--ease) both, floaty 7s ease-in-out infinite;
  transition: transform 0.5s var(--ease);
}
.hero-stage:hover .stage-paper { transform: rotateY(-6deg) rotateX(2deg); }
.stage-paper .paper { width: 768px; transform: scale(0.4948); transform-origin: top left; box-shadow: none; }
.stage-paper { height: calc(1000px * 0.4948); }
@keyframes floaty { 0%,100% { translate: 0 0; } 50% { translate: 0 -14px; } }

.stage-dots { position: absolute; bottom: -34px; display: flex; gap: 8px; }
.s-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--bg-4); transition: 0.3s; }
.s-dot.on { background: var(--acc); width: 22px; border-radius: 8px; }

.float-card {
  position: absolute; display: flex; align-items: center; gap: 11px;
  padding: 12px 15px; border-radius: 14px; box-shadow: var(--shadow-2);
  font-size: 12px;
}
.float-card b { display: block; font-size: 13px; font-weight: 700; }
.float-card span { color: rgba(255,255,255,0.62); }
.float-card.glass { background: rgba(17,17,24,0.92); border-color: rgba(255,255,255,0.10); backdrop-filter: blur(12px); }
.float-card b { color: #fff; }
.float-card .ring { width: 30px; height: 30px; border-radius: 50%; display: grid; place-items: center; background: var(--acc-soft); color: var(--acc); }
.fc-score { top: 6%; left: -8%; animation: floaty 6s ease-in-out infinite; }
.fc-ats { bottom: 12%; right: -9%; animation: floaty 6s ease-in-out infinite 1.5s; }
.fc-skill { bottom: -4%; left: -4%; flex-direction: column; align-items: stretch; gap: 6px; min-width: 150px; animation: floaty 7s ease-in-out infinite 0.8s; }
.fc-skill-h { font-size: 10px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-3); }
.fc-skill-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; font-size: 12px; font-weight: 700; color: var(--ink); }
.mini-score { position: relative; display: grid; place-items: center; width: 40px; height: 40px; flex-shrink: 0; }
.mini-score b { position: absolute; font-size: 12px; font-weight: 800; color: var(--ink); }

@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; gap: 20px; padding-top: 40px; min-height: 0; }
  .hero-stage { margin-top: 40px; }
  .float-card { display: none; }
}

/* marquee */
.marquee-wrap { position: relative; max-width: 1240px; margin: 56px auto 0; padding: 22px 0; display: flex; align-items: center; gap: 28px; overflow: hidden; border-radius: var(--radius-l); background: linear-gradient(180deg, #ecff1a, #d6f400); border: 1px solid #b9d400; box-shadow: 0 14px 44px -16px rgba(214,244,0,0.55), inset 0 1px 0 rgba(255,255,255,0.4); }
.marquee-wrap::before { content: ""; position: absolute; inset: 0; background: radial-gradient(60% 140% at 50% -20%, rgba(255,255,255,0.55), transparent 60%); opacity: 0.5; pointer-events: none; }
.marquee-label { position: relative; font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: #14140a; font-weight: 700; white-space: nowrap; padding-left: 32px; flex-shrink: 0; }
.marquee-view { position: relative; flex: 1; overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent); mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent); }
.marquee { display: flex; width: max-content; animation: scroll 22s linear infinite; }
.m-track { display: flex; align-items: center; gap: 52px; padding-right: 52px; flex-shrink: 0; }
.m-logo { font-family: var(--font-display); font-weight: 700; font-size: 22px; color: #14140a; white-space: nowrap; opacity: 0.9; }
.m-logo-img { height: 27px; width: auto; opacity: 0.85; transition: opacity 0.2s; }
.m-logo-img:hover { opacity: 1; }
@keyframes scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* features */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; padding-top: 90px; }
.feat-card { position: relative; padding: 30px 28px; border-radius: var(--radius-l); background: linear-gradient(165deg, color-mix(in oklab, var(--c, var(--acc)) 32%, var(--bg-2)), color-mix(in oklab, var(--c, var(--acc)) 8%, var(--bg-2))); border: 1px solid color-mix(in oklab, var(--c, var(--acc)) 38%, var(--line)); box-shadow: 0 12px 32px -22px color-mix(in oklab, var(--c, var(--acc)) 70%, transparent); overflow: hidden; animation: rise 0.7s var(--ease) both; transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease); }
.feat-card::after { content: ""; position: absolute; right: -25%; top: -45%; width: 60%; height: 80%; border-radius: 50%; background: radial-gradient(circle, color-mix(in oklab, var(--c, var(--acc)) 42%, transparent), transparent 70%); opacity: 0.65; pointer-events: none; transition: opacity 0.35s var(--ease); }
.feat-card:hover { transform: translateY(-5px); border-color: color-mix(in oklab, var(--c, var(--acc)) 52%, transparent); box-shadow: 0 22px 54px -18px color-mix(in oklab, var(--c, var(--acc)) 55%, transparent); }
.feat-card:hover::after { opacity: 0.9; }
.feat-ic { position: relative; width: 48px; height: 48px; border-radius: 14px; background: color-mix(in oklab, var(--c, var(--acc)) 30%, transparent); border: 1px solid color-mix(in oklab, var(--c, var(--acc)) 44%, transparent); color: color-mix(in oklab, var(--c, var(--acc)) 24%, #fff); display: grid; place-items: center; margin-bottom: 18px; }
.feat-card h3 { position: relative; font-family: var(--font-display); font-size: 20px; font-weight: 700; letter-spacing: -0.02em; margin-bottom: 8px; }
.feat-card p { position: relative; font-size: 14.5px; line-height: 1.6; color: var(--ink-2); }
@media (max-width: 820px) { .features { grid-template-columns: 1fr; } }

/* steps */
.steps { padding-top: 100px; }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 44px; }
.step { padding-top: 22px; border-top: 2px solid var(--line-2); }
.step-n { font-family: var(--font-mono); font-size: 13px; color: var(--acc); font-weight: 700; }
.step h4 { font-family: var(--font-display); font-size: 21px; font-weight: 700; letter-spacing: -0.02em; margin: 14px 0 8px; }
.step p { font-size: 14.5px; line-height: 1.6; color: var(--ink-2); }
@media (max-width: 820px) { .steps-grid { grid-template-columns: 1fr; } }

/* CTA */
.cta-band { padding-top: 110px; }
.cta-inner { position: relative; border-radius: var(--radius-xl); padding: 72px 40px; text-align: center; overflow: hidden; background: linear-gradient(160deg, color-mix(in oklab, var(--acc) 16%, var(--bg-2)), color-mix(in oklab, var(--acc-2) 12%, var(--bg-2))); border: 1px solid var(--line-2); box-shadow: var(--shadow-2); }
.cta-aura { position: absolute; inset: 0; background: radial-gradient(60% 120% at 50% 0%, var(--acc-glow), transparent 60%); opacity: 0.6; }
.cta-inner h2 { position: relative; font-family: var(--font-display); font-weight: 700; font-size: clamp(30px, 5vw, 52px); line-height: 1.0; letter-spacing: -0.03em; margin-bottom: 14px; }
.cta-sub { position: relative; font-size: 16px; color: var(--ink-2); margin-bottom: 30px; }
.cta-inner .btn { position: relative; }

/* footer */
.foot { display: flex; align-items: flex-start; justify-content: space-between; gap: 40px; padding-top: 56px; padding-bottom: 10px; border-top: 1px solid var(--line); margin-top: 90px; flex-wrap: wrap; }
.foot-brand p { font-size: 13px; color: var(--ink-3); margin-top: 12px; max-width: 28ch; line-height: 1.5; }
.foot-cols { display: flex; gap: 56px; flex-wrap: wrap; }
.foot-col { display: flex; flex-direction: column; gap: 9px; }
.foot-col b { font-family: var(--font-display); font-size: 13px; margin-bottom: 4px; }
.foot-col a { font-size: 13px; color: var(--ink-3); cursor: pointer; transition: color 0.15s; }
.foot-col a:hover { color: var(--acc); }
@media (max-width: 600px) { .foot { flex-direction: column; gap: 30px; } .foot-cols { gap: 36px; } }

/* ===== trust / rating ===== */
.trust { display: flex; align-items: center; gap: 14px; margin-top: 30px; flex-wrap: wrap; }
.trust-pill { display: inline-flex; align-items: center; gap: 9px; padding: 7px 13px; border-radius: 10px; background: var(--bg-2); border: 1px solid var(--line); box-shadow: var(--shadow-1); }
.trust-pill b { font-size: 13px; font-weight: 800; }
.trust-stars { display: inline-flex; gap: 1px; color: #16a34a; }
.trust-txt { font-size: 13.5px; color: var(--ink-2); }
.trust-txt b { color: var(--ink); font-weight: 800; }

/* ===== stat strip ===== */
.stat-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin-top: 56px; padding: 44px 32px; border-radius: var(--radius-l); background: var(--bg-2); border: 1px solid var(--line); box-shadow: var(--shadow-1); }
.stat { display: flex; flex-direction: column; align-items: center; justify-content: flex-start; gap: 14px; text-align: center; padding: 14px 28px; }
.stat + .stat { border-left: 1px solid var(--line); }
.stat b { font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; font-weight: 800; font-size: clamp(64px, 6vw, 92px); letter-spacing: -0.05em; line-height: 0.95; white-space: nowrap; color: #39ff14; text-align: center; }
.stat .stat-d { font-size: 1em; font-weight: 800; color: inherit; }
.stat > span { display: flex; align-items: center; justify-content: center; min-height: 38px; font-size: 13.5px; color: var(--ink-3); font-weight: 600; letter-spacing: 0.01em; max-width: 15ch; line-height: 1.4; text-wrap: balance; }
@media (max-width: 720px) { .stat-strip { grid-template-columns: repeat(2, 1fr); padding: 32px 16px; } .stat b { font-size: clamp(44px, 12vw, 60px); } .stat { padding: 16px 12px; } .stat:nth-child(odd) { border-left: none; } .stat:nth-child(n+3) { border-top: 1px solid var(--line); } }

/* ===== build-mode chooser ===== */
.chooser { padding-top: 96px; text-align: center; }
.chooser .sec-head { margin-left: auto; margin-right: auto; max-width: none; }
.chooser-panel {
  position: relative; margin-top: 40px; padding: 30px; border-radius: calc(var(--radius-l) + 10px);
  background:
    radial-gradient(120% 140% at 0% 0%, color-mix(in oklab, var(--acc) 16%, transparent), transparent 55%),
    radial-gradient(120% 140% at 100% 100%, color-mix(in oklab, var(--acc-2) 16%, transparent), transparent 55%),
    var(--bg-1);
  border: 1px solid color-mix(in oklab, var(--acc) 26%, var(--line));
  box-shadow: 0 30px 80px -30px color-mix(in oklab, var(--acc) 55%, transparent), inset 0 1px 0 rgba(255,255,255,0.05);
  overflow: hidden;
}
.chooser-panel::before {
  content: ""; position: absolute; inset: -1px; border-radius: inherit; padding: 1px; pointer-events: none;
  background: linear-gradient(120deg, color-mix(in oklab, var(--acc) 60%, transparent), transparent 40%, color-mix(in oklab, var(--acc-2) 55%, transparent));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  opacity: 0.7;
}
.chooser-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.choose-card { position: relative; text-align: center; padding: 44px 36px; border-radius: var(--radius-l); background: color-mix(in oklab, var(--bg-2) 88%, transparent); border: 1px solid var(--line); box-shadow: var(--shadow-1); transition: transform 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease); display: flex; flex-direction: column; align-items: center; overflow: hidden; }
.choose-card::after { content: ""; position: absolute; inset: 0; background: radial-gradient(80% 60% at 50% -10%, color-mix(in oklab, var(--cc, var(--acc)) 18%, transparent), transparent 70%); opacity: 0; transition: opacity 0.3s var(--ease); pointer-events: none; }
.choose-card:nth-child(2) { --cc: var(--acc-2); }
.choose-card:hover { transform: translateY(-6px); border-color: color-mix(in oklab, var(--cc, var(--acc)) 60%, var(--line)); box-shadow: 0 26px 60px -28px color-mix(in oklab, var(--cc, var(--acc)) 75%, transparent); }
.choose-card:hover::after { opacity: 1; }
.choose-ic { position: relative; width: 66px; height: 66px; border-radius: 19px; display: grid; place-items: center; margin-bottom: 20px; transition: transform 0.3s var(--ease); }
.choose-card:hover .choose-ic { transform: scale(1.08) rotate(-4deg); }
.choose-ic.new { background: var(--acc-soft); color: var(--acc); box-shadow: 0 0 0 1px color-mix(in oklab, var(--acc) 40%, transparent), 0 12px 30px -10px color-mix(in oklab, var(--acc) 60%, transparent); }
.choose-ic.up { background: color-mix(in oklab, var(--acc-2) 20%, transparent); color: var(--acc-2); box-shadow: 0 0 0 1px color-mix(in oklab, var(--acc-2) 40%, transparent), 0 12px 30px -10px color-mix(in oklab, var(--acc-2) 55%, transparent); }
.choose-card h3 { position: relative; font-family: var(--font-display); font-size: 23px; font-weight: 700; letter-spacing: -0.02em; }
.choose-card p { position: relative; font-size: 14px; line-height: 1.55; color: var(--ink-2); margin: 9px 0 20px; max-width: 34ch; }
.choose-go { position: relative; display: inline-flex; align-items: center; gap: 7px; font-size: 14px; font-weight: 700; color: var(--cc, var(--acc)); }
.choose-go svg { transition: transform 0.3s var(--ease); }
.choose-card:hover .choose-go svg { transform: translateX(5px); }
@media (max-width: 720px) { .chooser-grid { grid-template-columns: 1fr; } .chooser-panel { padding: 18px; } }

/* ===== split sections (copy + visual) ===== */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; padding-top: 100px; }
.split-copy .sec-head { max-width: 18ch; }
.split-copy .sec-head em { font-family: var(--font-serif); font-style: italic; }
.split-p { font-size: 16px; line-height: 1.65; color: var(--ink-2); margin: 18px 0 22px; max-width: 46ch; }
.check-list { list-style: none; display: flex; flex-direction: column; gap: 10px; margin: 0 0 26px; }
.check-list li { display: flex; align-items: center; gap: 10px; font-size: 14.5px; font-weight: 600; color: var(--ink); }
.check-list li svg { color: #fff; background: linear-gradient(135deg, var(--acc), var(--acc-2)); border-radius: 50%; padding: 3px; width: 21px; height: 21px; flex-shrink: 0; }
.split-visual { display: grid; place-items: center; }
@media (max-width: 880px) { .split { grid-template-columns: 1fr; gap: 34px; } .steps-hl .split-visual { order: 2; } }

/* scale highlight card */
.scale-card { width: 100%; max-width: 380px; background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius-l); box-shadow: var(--shadow-2); padding: 24px 26px; }
.sc-h { display: flex; align-items: center; gap: 8px; font-size: 11px; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; color: var(--acc); margin-bottom: 16px; }
.sc-row { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 9px 0; border-bottom: 1px solid var(--line); }
.sc-row span { font-size: 13.5px; font-weight: 700; color: var(--ink); }
.sc-styles { display: flex; justify-content: space-between; gap: 12px; margin-top: 18px; }
.sc-styles > div { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 8px; padding: 12px 6px; border-radius: 12px; background: var(--bg-1); }
.sc-styles span { font-size: 10.5px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; color: var(--ink-3); }

/* step-by-step guide card */
.guide-card { width: 100%; max-width: 380px; background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius-l); box-shadow: var(--shadow-2); padding: 22px 22px; }
.guide-h { display: flex; align-items: center; justify-content: space-between; padding-bottom: 14px; margin-bottom: 8px; border-bottom: 1px solid var(--line); }
.guide-h b { font-family: var(--font-display); font-size: 15px; }
.guide-prog { font-size: 11.5px; font-weight: 700; color: var(--acc); }
.guide-step { display: flex; align-items: center; gap: 12px; padding: 11px 12px; border-radius: 12px; margin-top: 6px; border: 1px solid transparent; }
.guide-step .guide-n { width: 24px; height: 24px; border-radius: 50%; display: grid; place-items: center; font-size: 12px; font-weight: 800; background: var(--bg-3); color: var(--ink-3); flex-shrink: 0; }
.guide-step .guide-t { flex: 1; font-size: 13.5px; font-weight: 700; color: var(--ink-2); }
.guide-step.done .guide-n { background: linear-gradient(135deg, var(--acc), var(--acc-2)); color: #fff; }
.guide-step.done .guide-t { color: var(--ink); }
.guide-step.active { background: color-mix(in oklab, var(--acc) 14%, transparent); border-color: color-mix(in oklab, var(--acc) 34%, transparent); }
.guide-step.active .guide-n { background: var(--acc); color: #fff; }
.guide-step.active .guide-t { color: var(--ink); }
.guide-step.active svg { color: var(--acc); }

/* mini steps under copy */
.mini-steps { display: flex; flex-direction: column; gap: 16px; }
.mini-steps > div { display: grid; grid-template-columns: auto 1fr; column-gap: 14px; align-items: baseline; }
.ms-n { grid-row: span 2; font-family: var(--font-mono); font-size: 13px; font-weight: 700; color: var(--acc); }
.mini-steps h4 { font-family: var(--font-display); font-size: 16px; font-weight: 700; }
.mini-steps p { font-size: 13.5px; color: var(--ink-2); margin-top: 2px; }

/* ai-powered tag on feature cards */
.ai-tag { position: absolute; top: 18px; right: 18px; white-space: nowrap; display: inline-flex; align-items: center; gap: 5px; font-size: 10.5px; font-weight: 800; letter-spacing: 0.04em; color: var(--acc); background: var(--acc-soft); border: 1px solid color-mix(in oklab, var(--acc) 30%, transparent); padding: 4px 9px; border-radius: 999px; }

/* ===== AI layer highlight mockup ===== */
.ai-mock { width: 100%; max-width: 400px; position: relative; overflow: hidden; display: flex; flex-direction: column; gap: 13px; padding: 20px; border-radius: var(--radius-l); background: linear-gradient(165deg, color-mix(in oklab, var(--acc) 10%, var(--bg-2)), var(--bg-2)); border: 1px solid var(--line-2); box-shadow: var(--shadow-2); }
.ai-mock-h { display: flex; align-items: center; gap: 8px; font-size: 12.5px; font-weight: 800; letter-spacing: 0.03em; color: var(--ink); }
.ai-mock-ic { width: 27px; height: 27px; border-radius: 8px; display: grid; place-items: center; background: var(--acc-soft); color: var(--acc); }
.ai-mock-live { margin-left: auto; display: inline-flex; align-items: center; gap: 6px; font-family: var(--font-mono); font-size: 9.5px; letter-spacing: 0.14em; text-transform: uppercase; color: #3ad07f; }
.ai-mock-live::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: #3ad07f; box-shadow: 0 0 8px #3ad07f; }
.ai-line { background: var(--bg-1); border: 1px solid var(--line); border-radius: 12px; padding: 12px 14px; }
.ai-tagline { display: block; font-size: 10px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-4); margin-bottom: 6px; }
.ai-before p { font-size: 13px; color: var(--ink-3); font-style: italic; line-height: 1.5; }
.ai-after { border-color: color-mix(in oklab, var(--acc) 34%, transparent); background: color-mix(in oklab, var(--acc) 9%, var(--bg-1)); }
.ai-after .ai-tagline { color: var(--acc); }
.ai-after p { font-size: 13.5px; color: var(--ink); font-weight: 600; line-height: 1.5; min-height: 3em; }
.ai-arrow { display: flex; justify-content: center; }
.ai-arrow span { display: inline-flex; align-items: center; gap: 6px; font-size: 11px; font-weight: 700; color: var(--acc); background: var(--acc-soft); border: 1px solid color-mix(in oklab, var(--acc) 28%, transparent); padding: 5px 12px; border-radius: 999px; }
.tw-caret { display: inline-block; width: 2px; height: 1.05em; background: var(--acc); margin-left: 2px; vertical-align: -2px; animation: blink 1s steps(1) infinite; }
@keyframes blink { 50% { opacity: 0; } }
.ai-prompt { display: flex; align-items: center; gap: 9px; background: var(--bg-1); border: 1px solid var(--line); border-radius: 12px; padding: 9px 9px 9px 13px; color: var(--ink-4); }
.ai-prompt > svg { color: var(--acc); flex-shrink: 0; }
.ai-prompt span { flex: 1; font-size: 12.5px; }
.ai-send { width: 30px; height: 30px; border-radius: 9px; display: grid; place-items: center; background: linear-gradient(120deg, var(--acc), var(--acc-2)); color: var(--acc-ink); flex-shrink: 0; }

/* ===== testimonials ===== */
.testi { padding-top: 100px; }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 40px; }
.testi-card { background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius-l); box-shadow: var(--shadow-1); padding: 26px 26px; display: flex; flex-direction: column; gap: 14px; }
.testi-stars { display: flex; gap: 2px; color: #f5a623; }
.testi-q { font-size: 15px; line-height: 1.55; color: var(--ink); font-weight: 500; }
.testi-who { display: flex; align-items: center; gap: 11px; margin-top: auto; }
.testi-av { width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; color: #fff; font-weight: 800; font-size: 13px; flex-shrink: 0; }
.testi-av-ph {
  color: color-mix(in oklab, var(--av) 30%, #fff);
  background:
    repeating-linear-gradient(45deg, color-mix(in oklab, var(--av) 26%, var(--bg-3)) 0 5px, color-mix(in oklab, var(--av) 14%, var(--bg-3)) 5px 10px);
  border: 1px solid color-mix(in oklab, var(--av) 40%, var(--line));
}
.testi-who b { display: block; font-size: 13.5px; line-height: 1.25; }
.testi-who span { display: block; font-size: 12px; color: var(--ink-3); line-height: 1.3; }
.testi-who > div { min-width: 0; display: flex; flex-direction: column; gap: 2px; }
@media (max-width: 820px) { .testi-grid { grid-template-columns: 1fr; } }

/* ===== bento grid ===== */
.bento-sec { padding-top: 100px; }
.bento { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: minmax(170px, auto); gap: 16px; margin-top: 40px; }
.b-card {
  position: relative; overflow: hidden; border-radius: var(--radius-l);
  padding: 22px 24px; display: flex; flex-direction: column; gap: 9px;
  background:
    linear-gradient(158deg, color-mix(in oklab, var(--c) 46%, var(--bg-2)) 0%, color-mix(in oklab, var(--c) 16%, var(--bg-2)) 72%);
  border: 1px solid color-mix(in oklab, var(--c) 42%, var(--line));
  box-shadow: 0 12px 32px -20px color-mix(in oklab, var(--c) 75%, transparent), inset 0 1px 0 rgba(255,255,255,0.07);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}
.b-card::after {
  content: ""; position: absolute; right: -26%; top: -42%; width: 72%; height: 88%; border-radius: 50%;
  background: radial-gradient(circle, color-mix(in oklab, var(--c) 58%, transparent), transparent 70%);
  opacity: 0.7; pointer-events: none; transition: opacity 0.3s var(--ease); filter: blur(2px);
}
.b-card:hover { transform: translateY(-6px) scale(1.012); border-color: color-mix(in oklab, var(--c) 70%, transparent); box-shadow: 0 26px 64px -16px color-mix(in oklab, var(--c) 72%, transparent); }
.b-card:hover::after { opacity: 1; }

/* CRED-style solid colored tiles — bright block, dark text, glossy sheen */
.b-fill {
  background:
    linear-gradient(152deg, color-mix(in oklab, var(--c) 72%, #fff) 0%, var(--c) 58%, color-mix(in oklab, var(--c) 90%, #000) 100%);
  border-color: color-mix(in oklab, var(--c) 60%, #fff);
  box-shadow: 0 16px 40px -18px color-mix(in oklab, var(--c) 85%, transparent), inset 0 1px 0 rgba(255,255,255,0.4);
  color: #0b0b10;
}
.b-fill::after { background: radial-gradient(circle, rgba(255,255,255,0.55), transparent 70%); opacity: 0.6; }
.b-card.b-fill h3, .b-card.b-fill .b-big, .b-card.b-fill .b-num { color: #08080b; }
.b-card.b-fill p { color: #0b0b10; font-weight: 600; }
.b-fill .b-ic { background: rgba(0,0,0,0.16); border-color: rgba(0,0,0,0.2); color: #08080b; }
.b-fill:hover { border-color: rgba(255,255,255,0.7); }
.b-a { grid-column: span 2; grid-row: span 2; }
.b-d { grid-column: span 2; }
.b-ic { position: relative; width: 44px; height: 44px; border-radius: 13px; display: grid; place-items: center; color: color-mix(in oklab, var(--c) 26%, #fff); background: color-mix(in oklab, var(--c) 32%, transparent); border: 1px solid color-mix(in oklab, var(--c) 46%, transparent); }
.b-card h3 { position: relative; font-family: var(--font-display); font-size: 18px; font-weight: 700; letter-spacing: -0.02em; color: var(--ink); margin-top: 2px; }
.b-card p { position: relative; font-size: 13px; line-height: 1.55; color: var(--ink-2); }
.b-a h3 { font-size: 24px; }
.b-a p { font-size: 14.5px; max-width: 32ch; }
.b-a { justify-content: flex-start; }
.b-chips { position: relative; display: flex; flex-wrap: wrap; gap: 7px; margin-top: auto; padding-top: 10px; }
.b-chips span { display: inline-flex; align-items: center; gap: 5px; font-size: 11.5px; font-weight: 700; color: var(--c); background: color-mix(in oklab, var(--c) 16%, transparent); border: 1px solid color-mix(in oklab, var(--c) 26%, transparent); padding: 5px 10px; border-radius: 999px; }
.b-big { position: relative; font-family: var(--font-display); font-weight: 800; font-size: 44px; line-height: 1; letter-spacing: -0.03em; color: var(--c); }
.b-big-d { font-size: 0.5em; vertical-align: 0.35em; margin-left: 2px; }
.b-scale { position: relative; display: flex; flex-direction: column; gap: 7px; margin-top: 4px; }
.b-score { justify-content: center; }
/* templates count callout */
.b-templates { flex-direction: row; align-items: center; gap: 22px; }
.b-num { position: relative; font-family: var(--font-display); font-weight: 800; font-size: 72px; line-height: 0.9; letter-spacing: -0.03em; color: var(--c); flex-shrink: 0; }
.b-templates-txt { position: relative; }
.b-templates-txt h3 { margin-top: 0; }
/* tailored-to-job wide tile */
.b-tailor { justify-content: flex-start; }
.b-tailor-txt h3 { margin-top: 10px; }
.b-tailor-txt p { max-width: 40ch; margin-top: 4px; }
@media (max-width: 920px) {
  .bento { grid-template-columns: repeat(2, 1fr); }
  .b-a, .b-d { grid-column: span 2; }
  .b-a { grid-row: auto; }
}
@media (max-width: 560px) {
  .bento { grid-template-columns: 1fr; }
  .b-a, .b-d { grid-column: span 1; }
}
