/*
 * Refendr landing page — visual system for public/index.html.
 *
 * Light-first editorial layout: Geist type, ink text on white, coral as the
 * action colour. Sections share a 1180px content grid with a responsive
 * page gutter. Dark mode is intentionally not implemented on this page.
 *
 * Every text-on-coral surface uses --on-coral (ink) so primary actions stay
 * above the 4.5:1 WCAG AA threshold in both resting and hover states.
 */

:root {
  --ink: #16131f;
  --ink-2: #25202d;
  --coral: #ff5b3f;
  --coral-dark: #e84b31;
  --coral-2: var(--coral-dark);
  --coral-soft: #fff1ed;
  --on-coral: #16131f;
  --lav: #f7f4fa;
  --paper: #fff;
  --muted: #6c6574;
  --body-2: #4a4553;
  --line: #ebe7ee;
  --green: #1e9c7a;
  --shadow: 0 20px 60px rgba(29, 20, 36, .08);
  --shadow-sm: 0 10px 28px rgba(29, 20, 36, .07);
  --radius: 22px;
  --page-gutter: clamp(22px, 4vw, 64px);
  --content: 1180px;
  --sans: "Geist", system-ui, -apple-system, "Segoe UI", sans-serif;
  --mono: ui-monospace, SFMono-Regular, Menlo, monospace;
}

/* ---------- base ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: #fff; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-stopped { overflow: hidden; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: #fff;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
img { max-width: 100%; display: block; }
h1, h2, h3, h4 { font-weight: 700; }
main:focus { outline: none; }
::selection { background: var(--coral); color: #fff; }
:focus-visible { outline: 3px solid var(--coral); outline-offset: 2px; }

.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.skip-link {
  position: fixed; top: 8px; left: 8px; z-index: 1000;
  padding: 10px 14px; border-radius: 10px;
  background: var(--ink); color: #fff; font-weight: 700;
  transform: translateY(-160%);
}
.skip-link:focus { transform: translateY(0); }

/* ---------- buttons ---------- */
.btn {
  border: 0; border-radius: 12px; padding: 13px 19px;
  font-weight: 700; letter-spacing: -.01em; cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  transition: .2s transform, .2s box-shadow, .2s background;
}
.btn:hover { transform: translateY(-1px); }
.btn-coral { background: var(--coral); color: var(--on-coral); }
.btn-coral:hover { background: var(--coral-2); box-shadow: 0 10px 24px rgba(255, 91, 63, .22); }
.btn-ghost { background: transparent; color: var(--ink); border: 1px solid var(--line); }
.btn-ghost:hover { background: var(--lav); }
.btn:disabled { opacity: .7; cursor: progress; transform: none; }

/* ---------- eyebrows ---------- */
.eyebrow {
  font-size: 11px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase;
  color: var(--coral); margin-bottom: 14px;
}
.eyebrow.mono { font-family: var(--mono); letter-spacing: .14em; font-weight: 600; }

/* ---------- wordmark ---------- */
.refendr-wordmark {
  --logo-ink: #191522;
  --logo-cream: #f4efe7;
  --logo-coral: #d94f42;
  --logo-ring: rgba(217, 79, 66, .18);
  display: inline-flex; align-items: center; gap: 8px; line-height: 1;
  width: max-content; white-space: nowrap;
}
.refendr-logo-dot { position: relative; width: 11px; height: 11px; flex: 0 0 11px; display: inline-grid; place-items: center; }
.refendr-logo-core {
  width: 8px; height: 8px; border-radius: 999px; background: var(--logo-coral);
  box-shadow: 0 0 0 4px var(--logo-ring); position: relative; z-index: 2;
  animation: refendrCoreBreath 1.9s ease-in-out infinite;
}
.refendr-logo-pulse {
  position: absolute; inset: 1.5px; border-radius: 999px;
  border: 1.5px solid rgba(217, 79, 66, .48); opacity: 0; transform: scale(.72); z-index: 1;
  animation: refendrSignal 1.9s cubic-bezier(.2, .7, .2, 1) infinite;
}
.refendr-logo-text {
  display: inline-block; color: var(--logo-ink);
  font-size: 21px; font-weight: 760; letter-spacing: -.045em; line-height: 1;
  transform-origin: left center;
  animation: refendrWordIn .55s cubic-bezier(.22, 1, .36, 1) both;
}
.footer .refendr-logo-text { color: var(--logo-cream); }
@keyframes refendrSignal {
  0% { opacity: 0; transform: scale(.72); }
  18% { opacity: .48; }
  70%, 100% { opacity: 0; transform: scale(2.45); }
}
@keyframes refendrCoreBreath {
  0%, 100% { transform: scale(1); }
  45% { transform: scale(.9); }
  65% { transform: scale(1.06); }
}
@keyframes refendrWordIn {
  from { opacity: 0; transform: translateX(-5px); }
  to { opacity: 1; transform: translateX(0); }
}
@media (hover: hover) and (pointer: fine) {
  .refendr-wordmark:hover .refendr-logo-pulse { animation-duration: 1.25s; }
}

/* ---------- navigation ---------- */
.nav-shell {
  position: sticky; top: 0; z-index: 40;
  background: transparent;
  transition: background .2s ease, box-shadow .2s ease, border-color .2s ease;
  border-bottom: 1px solid transparent;
}
.nav-shell.scrolled {
  background: rgba(255, 255, 255, .88);
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
  border-bottom-color: rgba(23, 21, 37, .08);
}
.nav {
  position: relative;
  display: grid; grid-template-columns: minmax(180px, 1fr) auto minmax(180px, 1fr);
  align-items: center; height: 72px;
  width: calc(100% - var(--page-gutter) * 2); max-width: var(--content);
  margin: 0 auto;
}
.nav > .brand { justify-self: start; }
.nav-links {
  justify-self: center; display: flex; align-items: center; gap: 4px;
  padding: 5px 7px; border: 1px solid #e7e4ea; border-radius: 999px;
  background: #f8f7fa; box-shadow: 0 2px 7px rgba(23, 21, 37, .08);
  color: #625c69; font-size: 14px; font-weight: 520;
}
.nav-links > a {
  padding: 9px 16px; border-radius: 999px; line-height: 1;
  transition: background .18s ease, color .18s ease;
}
.nav-links > a:hover { background: #fff; color: var(--ink); }
.nav-links > a.active,
.nav-links > a[aria-current="page"] { background: var(--coral-soft); color: var(--coral-dark); font-weight: 650; }
.mobile-menu-actions { display: none; }
.nav-actions { justify-self: end; display: flex; align-items: center; gap: 9px; }
.nav-cta {
  min-height: 42px; padding: 0 20px;
  border: 1.5px solid var(--coral); border-radius: 999px;
  background: var(--coral); color: var(--on-coral); font-weight: 700;
  box-shadow: 0 8px 20px rgba(255, 91, 63, .22);
}
.nav-cta:hover {
  background: var(--coral-2); border-color: var(--coral-2); color: var(--on-coral);
  box-shadow: 0 10px 24px rgba(255, 91, 63, .28);
}
.menu-btn { display: none; }

/* ---------- hero ---------- */
.hero {
  position: relative; overflow: hidden;
  width: calc(100% - var(--page-gutter) * 2); max-width: var(--content);
  margin: 0 auto; padding: 0 0 70px;
  background:
    radial-gradient(750px 430px at 80% 25%, rgba(255, 91, 63, .13), transparent 64%),
    linear-gradient(180deg, #fff 0%, #fbf9fc 100%);
  border-bottom: 1px solid var(--line);
}
.hero::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(23, 21, 37, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 21, 37, .035) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, .6), transparent 86%);
  -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, .6), transparent 86%);
}
.hero-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(470px, .92fr); column-gap: 28px;
  min-height: 690px;
}
.hero-copy {
  padding: 98px 36px 72px 0; max-width: 760px;
  display: flex; flex-direction: column; justify-content: center;
}
.hero-title {
  font-size: clamp(46px, 4.25vw, 64px); line-height: 1.02; letter-spacing: -.058em;
  margin: 0 0 28px; font-weight: 750;
}
.hero-title span { display: block; white-space: nowrap; }
.hero-title .notice-break { display: block; font-style: normal; }
.hero-copy p { font-size: 18px; line-height: 1.65; color: #655e6c; max-width: 540px; margin: 0 0 34px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.microcopy { margin-top: 18px; color: #7f7786; font-size: 13px; display: flex; gap: 14px; flex-wrap: wrap; }
.microcopy span::before { content: "✓"; color: var(--coral); font-weight: 900; margin-right: 6px; }
.hero-visual { display: flex; align-items: center; justify-content: center; padding: 52px 0 40px 34px; }
.hero-image {
  width: min(100%, 560px); aspect-ratio: 4 / 5; object-fit: cover; object-position: center 26%;
  border-radius: 30px; box-shadow: 0 28px 70px rgba(35, 27, 42, .14);
}

/* ---------- section system ---------- */
.section { padding: 112px var(--page-gutter); }
.section.soft { background: #faf9fb; }
.section-inner { max-width: var(--content); margin: 0 auto; }
.section-head {
  display: flex; justify-content: space-between; gap: 26px; align-items: end;
  max-width: var(--content); margin: 0 auto 46px;
}
.section-head h2, .open-copy h2, .analysis-copy h2 {
  font-size: clamp(38px, 4vw, 56px); letter-spacing: -.05em; line-height: 1.02; margin: 4px 0 0;
}
.section-head p { font-size: 16px; line-height: 1.65; max-width: 500px; color: var(--muted); margin: 0; }

/* ---------- analyzer teaser: the analysis band ---------- */
/* Ink band with a white analysis card, matching the reference product-analysis UI. */
.analysis-band {
  position: relative; overflow: hidden;
  max-width: var(--content); margin: 0 auto;
  display: grid; grid-template-columns: 1fr .95fr; gap: 44px; align-items: center;
  padding: 52px;
  color: #fff; border-radius: 28px;
  background:
    radial-gradient(620px 380px at 82% 18%, rgba(255, 91, 63, .2), transparent 65%),
    linear-gradient(145deg, #1c1723, #141119);
}
.analysis-band::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, .8), transparent 90%);
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, .8), transparent 90%);
}
.analysis-band > * { position: relative; z-index: 1; }
.analysis-copy .eyebrow { color: #ff9a80; }
.analysis-copy h2 {
  font-size: clamp(30px, 3.4vw, 42px); line-height: 1.06; letter-spacing: -.035em;
  margin: 0 0 14px; max-width: 14ch;
}
.analysis-copy p { color: #c8c4d0; font-size: 16px; line-height: 1.65; max-width: 460px; margin: 0 0 24px; }
.analysis-points { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.analysis-points li { display: flex; gap: 12px; align-items: center; font-size: 14.5px; font-weight: 500; color: #ebe7f0; }
.analysis-points b {
  flex: 0 0 34px; width: 34px; height: 34px; display: grid; place-items: center;
  font-family: var(--mono); font-size: 11px; letter-spacing: .08em; color: #ff9a80;
  border: 1px solid rgba(255, 255, 255, .14); border-radius: 10px; background: rgba(255, 255, 255, .04);
}
.analysis-ui {
  background: #fff; color: var(--ink); border-radius: 20px; padding: 28px;
  border: 1px solid rgba(255, 255, 255, .5);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .28);
}
.analysis-ui .label {
  display: block; font-family: var(--mono); font-size: 11px; letter-spacing: .12em;
  text-transform: uppercase; font-weight: 600; color: var(--coral-dark);
}
.analysis-ui h4 { margin: 6px 0 18px; font-size: 20px; letter-spacing: -.02em; }
.teaser-form { display: grid; grid-template-columns: 1fr auto; gap: 10px; align-items: end; }
.teaser-field { display: grid; gap: 8px; }
.field-label {
  font-family: var(--mono); font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: #3a3543;
}
.text-input {
  width: 100%; border: 1px solid var(--line); background: #fbfafc; border-radius: 12px;
  padding: 16px; font-size: 15px; outline: none; color: var(--ink);
}
.text-input:focus { border-color: var(--coral); box-shadow: 0 0 0 3px rgba(255, 91, 63, .18); }
.teaser-form .btn { padding: 16px 20px; border-radius: 12px; }
.teaser-form .btn:disabled { cursor: not-allowed; opacity: .55; transform: none; box-shadow: none; }
.text-input:disabled { opacity: .6; cursor: not-allowed; }
.teaser-note { font-family: var(--mono); font-size: 11.5px; color: #5c5765; margin: 12px 0 0; }
.form-msg { margin: 12px 0 0; padding: 14px 16px; border-radius: 12px; font-size: 14px; line-height: 1.5; }
.form-msg.ok { background: #e8f7f1; color: #125c46; border: 1px solid #bfe8d7; }
.form-msg.warn { background: #fff6e5; color: #7a4b00; border: 1px solid #f4dea8; }
.form-msg.err { background: var(--coral-soft); color: #9a2f1a; border: 1px solid #ffc8bb; }
.teaser-results { margin-top: 22px; padding-top: 18px; border-top: 1px solid var(--line); }
.teaser-results h3 { font-size: 18px; letter-spacing: -.02em; margin: 0 0 6px; }
.finding-grid { display: grid; }
.finding {
  display: grid; grid-template-columns: 150px 1fr; gap: 14px; align-items: start;
  padding: 12px 0; border-top: 1px solid #eeeaf1;
}
.finding:first-child { border-top: 0; }
.finding-label {
  display: block; font-family: var(--mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--coral-dark); padding-top: 3px;
}
.finding p { margin: 0; font-size: 14.5px; line-height: 1.55; }
.teaser-followup {
  display: flex; justify-content: space-between; align-items: center; gap: 14px; flex-wrap: wrap;
  margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--line); font-weight: 600; font-size: 14.5px;
}

/* ---------- how it works ---------- */
.how-grid { max-width: var(--content); margin: 0 auto; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.step {
  position: relative; overflow: hidden; border-radius: 22px; padding: 30px; min-height: 330px;
  display: flex; flex-direction: column; justify-content: flex-end; color: #fff;
  border: 1px solid rgba(255, 255, 255, .1); box-shadow: 0 12px 30px rgba(20, 15, 25, .06);
}
.step::before { content: ""; position: absolute; inset: 0; background-size: cover; background-position: center; }
.step::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(15, 12, 22, .9) 0%, rgba(15, 12, 22, .36) 58%, rgba(15, 12, 22, .08) 100%);
}
.step > * { position: relative; z-index: 1; }
.step:nth-child(1)::before { background-image: url("/images/landing/step-connect.jpg"); }
.step:nth-child(2)::before { background-image: url("/images/landing/step-decide.jpg"); }
.step:nth-child(3)::before { background-image: url("/images/landing/step-create.jpg"); }
.step:nth-child(4)::before { background-image: url("/images/landing/step-learn.jpg"); }
.step-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.num {
  width: 34px; height: 34px; border-radius: 50%; background: var(--coral); color: var(--on-coral);
  display: grid; place-items: center; font-weight: 850; font-size: 13px;
  box-shadow: 0 8px 18px rgba(255, 91, 63, .25);
}
.step-tag { font-size: 12px; color: #ffd9cd; font-weight: 850; text-transform: uppercase; letter-spacing: .06em; }
.step h3 { font-size: 25px; letter-spacing: -.035em; margin: 0 0 7px; }
.step p { margin: 0; color: rgba(255, 255, 255, .85); font-size: 15px; line-height: 1.5; max-width: 440px; }

/* ---------- the post-launch gap ---------- */
.section.gap { background: linear-gradient(180deg, #17131f 0%, #1d1724 100%); color: #fff; padding-top: 120px; padding-bottom: 120px; }
.gap-wrap { display: grid; grid-template-columns: 1fr 1.15fr; gap: 74px; align-items: start; max-width: var(--content); margin: 0 auto; }
.gap-intro { position: sticky; top: 120px; }
.gap-intro .eyebrow { color: #ff9a80; }
.gap-intro h2 { font-size: clamp(40px, 4vw, 58px); line-height: 1.05; letter-spacing: -.04em; margin: 0 0 18px; }
.gap-intro p { color: rgba(255, 255, 255, .68); font-size: 17px; line-height: 1.6; margin: 0 0 40px; max-width: 440px; }
.gap-chart { background: rgba(255, 255, 255, .04); border: 1px solid rgba(255, 255, 255, .1); border-radius: 18px; padding: 18px 20px 14px; }
.gap-chart svg { width: 100%; height: 120px; display: block; }
.gap-chart-head, .gap-chart-foot {
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--mono); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: rgba(255, 255, 255, .5);
}
.gap-chart-head { margin-bottom: 10px; }
.gap-chart-foot { margin-top: 8px; padding: 0 6px; }
.gap-pill { background: rgba(255, 91, 63, .18); color: #ff9a80; border: 1px solid rgba(255, 91, 63, .35); border-radius: 999px; padding: 4px 9px; letter-spacing: .06em; }
.gap-steps { position: relative; display: grid; gap: 18px; }
.gap-steps::before { content: ""; position: absolute; left: 23px; top: 30px; bottom: 90px; border-left: 1px dashed rgba(255, 255, 255, .18); }
.gap-step { display: grid; grid-template-columns: 48px 1fr; gap: 22px; align-items: start; position: relative; }
.gap-node {
  width: 48px; height: 48px; border-radius: 50%; display: grid; place-items: center;
  border: 1px solid; background: var(--ink); position: relative; z-index: 1;
}
.gap-node svg { width: 22px; height: 22px; }
.gap-step.live .gap-node { color: #39c69a; border-color: rgba(57, 198, 154, .5); box-shadow: 0 0 0 6px rgba(57, 198, 154, .08); }
.gap-step.warn .gap-node { color: #f2b34c; border-color: rgba(242, 179, 76, .5); box-shadow: 0 0 0 6px rgba(242, 179, 76, .08); }
.gap-step.miss .gap-node { color: #ff5b3f; border-color: rgba(255, 91, 63, .6); box-shadow: 0 0 0 6px rgba(255, 91, 63, .1); }
.gap-body {
  background: rgba(255, 255, 255, .045); border: 1px solid rgba(255, 255, 255, .1); border-radius: 18px;
  padding: 25px 26px; transition: .2s background, .2s border-color;
}
.gap-step:hover .gap-body { background: rgba(255, 255, 255, .07); border-color: rgba(255, 255, 255, .18); }
.gap-step.miss .gap-body { background: rgba(255, 91, 63, .08); border-color: rgba(255, 91, 63, .3); }
.gap-kicker {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  font-family: var(--mono); font-size: 11.5px; letter-spacing: .14em; text-transform: uppercase;
  color: rgba(255, 255, 255, .5); margin-bottom: 14px;
}
.gap-status { font-size: 10.5px; padding: 4px 9px; border-radius: 999px; border: 1px solid; letter-spacing: .1em; }
.gap-step.live .gap-status { color: #39c69a; border-color: rgba(57, 198, 154, .45); }
.gap-step.warn .gap-status { color: #f2b34c; border-color: rgba(242, 179, 76, .45); }
.gap-step.miss .gap-status { color: #ff9a80; border-color: rgba(255, 91, 63, .5); }
.gap-body h3 { font-size: 24px; line-height: 1.15; letter-spacing: -.03em; margin: 0 0 10px; }
.gap-body p { margin: 0; color: rgba(255, 255, 255, .7); font-size: 15px; line-height: 1.6; }
.gap-next { margin: 10px 0 0 70px; display: inline-flex; align-items: center; gap: 10px; font-weight: 700; color: #fff; font-size: 16px; }
.gap-next span {
  display: inline-grid; place-items: center; width: 34px; height: 34px; border-radius: 50%;
  background: var(--coral); color: var(--on-coral); transition: .2s transform;
}
.gap-next:hover span { transform: translateX(4px); }

/* ---------- operating loop ---------- */
.loop-head { text-align: center; max-width: 700px; margin: 0 auto 64px; }
.loop-head .eyebrow { font-family: var(--mono); letter-spacing: .14em; font-weight: 600; }
.loop-head h2 { font-size: clamp(40px, 4vw, 56px); line-height: 1.08; letter-spacing: -.04em; margin: 0 0 18px; }
.loop-head p { color: var(--muted); font-size: 17px; margin: 0; line-height: 1.6; }
.loop-grid { max-width: var(--content); margin: 0 auto; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.loop-card {
  background: #fff; border: 1px solid var(--line); border-radius: 20px; overflow: hidden;
  display: flex; flex-direction: column; box-shadow: 0 10px 25px rgba(27, 21, 33, .04);
}
.loop-img { height: 175px; background-size: cover; background-position: center; position: relative; }
.loop-img::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(23, 21, 37, .35), transparent 60%); }
.loop-card:nth-child(1) .loop-img { background-image: url("/images/landing/loop-connect.jpg"); }
.loop-card:nth-child(2) .loop-img { background-image: url("/images/landing/loop-decide.jpg"); }
.loop-card:nth-child(3) .loop-img { background-image: url("/images/landing/loop-create.jpg"); }
.loop-card:nth-child(4) .loop-img { background-image: url("/images/landing/loop-learn.jpg"); }
.loop-text { padding: 28px; }
.loop-card h3 { font-size: 21px; letter-spacing: -.02em; margin: 0 0 10px; }
.loop-card p { margin: 0; color: var(--body-2); font-size: 14.5px; line-height: 1.55; }

/* ---------- comparison ---------- */
.cmp {
  display: grid; grid-template-columns: 1fr 1fr; max-width: 1120px; margin: 0 auto;
  border-radius: 24px; overflow: hidden; position: relative; border: 1px solid var(--line);
}
.cmp-col { padding: 54px; position: relative; }
.cmp-col.dim { background: #f8f6f9; }
.cmp-col.dim::before {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(23, 21, 37, .08) 1px, transparent 1px); background-size: 18px 18px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, .7), transparent 80%);
  -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, .7), transparent 80%);
}
.cmp-col.dim > * { position: relative; }
.cmp-col.dim h3 { color: #8a8492; }
.cmp-col.win { background: linear-gradient(145deg, #211a29, #17131f); color: #fff; overflow: hidden; }
.cmp-col.win::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image: linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, .9), transparent);
  -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, .9), transparent);
}
.cmp-col.win > * { position: relative; z-index: 1; }
.cmp-col.win h3 { color: #fff; }
.cmp-head { display: flex; align-items: center; gap: 14px; margin-bottom: 34px; }
.cmp-head h3 { margin: 0; font-size: 28px; letter-spacing: -.03em; }
.cmp-badge { width: 48px; height: 48px; border-radius: 12px; display: grid; place-items: center; flex: 0 0 48px; }
.cmp-badge svg { width: 24px; height: 24px; }
.cmp-col.dim .cmp-badge { background: #e8e3ee; color: #8a8492; }
.cmp-col.win .cmp-badge { background: var(--coral); color: var(--on-coral); box-shadow: 0 10px 24px rgba(255, 91, 63, .35); }
.cmp-tag {
  display: inline-block; font-family: var(--mono); font-size: 10.5px; letter-spacing: .12em; text-transform: uppercase;
  padding: 4px 9px; border-radius: 999px; margin-bottom: 16px;
}
.cmp-col.dim .cmp-tag { background: #e8e3ee; color: #7d7785; }
.cmp-col.win .cmp-tag { background: rgba(255, 91, 63, .18); color: #ff9a80; border: 1px solid rgba(255, 91, 63, .35); }
.cmp-list { display: grid; gap: 14px; }
.cmp-item {
  display: grid; grid-template-columns: 40px 1fr; gap: 16px; align-items: start;
  padding: 16px 18px; border-radius: 14px; border: 1px solid transparent; transition: .2s;
}
.cmp-col.dim .cmp-item { background: rgba(255, 255, 255, .7); border-color: #e9e4ef; }
.cmp-col.win .cmp-item { background: rgba(255, 255, 255, .05); border-color: rgba(255, 255, 255, .1); }
.cmp-col.win .cmp-item:hover { background: rgba(255, 255, 255, .09); border-color: rgba(255, 91, 63, .4); }
.cmp-ic { width: 40px; height: 40px; border-radius: 10px; display: grid; place-items: center; }
.cmp-ic svg { width: 20px; height: 20px; }
.cmp-col.dim .cmp-ic { background: #f1edf4; color: #a39cab; border: 1px dashed #cfc7db; }
.cmp-col.win .cmp-ic { background: rgba(255, 91, 63, .16); color: #ff9a80; border: 1px solid rgba(255, 91, 63, .35); }
.cmp-item b { display: flex; align-items: center; gap: 8px; font-size: 15.5px; margin-bottom: 4px; }
.cmp-item b i { font-style: normal; line-height: 1; display: inline-flex; }
.cmp-col.dim .cmp-item b { color: #5c5765; }
.cmp-col.dim .cmp-item b i { color: #c0303a; }
.cmp-col.win .cmp-item b i { color: #39c69a; }
.cmp-item span { font-size: 14px; line-height: 1.55; }
.cmp-col.dim .cmp-item span { color: #7d7785; }
.cmp-col.win .cmp-item span { color: rgba(255, 255, 255, .7); }
.cmp-vs {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  width: 52px; height: 52px; border-radius: 50%; background: #fff; color: var(--ink);
  display: grid; place-items: center; font-weight: 900; font-size: 12px; letter-spacing: .06em;
  box-shadow: 0 10px 28px rgba(23, 21, 37, .12); border: 1px solid var(--line); z-index: 2;
}

/* ---------- proof log (injected at build time by scripts/proof-log.mjs) ---------- */
.proof-log { padding: 0 var(--page-gutter) 112px; }
.proof-log .wrap { max-width: var(--content); margin: 0 auto; }
.proof-log .sec-label { font-size: 11px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--coral); margin-bottom: 14px; }
.proof-log h2 { font-size: clamp(38px, 4vw, 56px); letter-spacing: -.05em; line-height: 1.02; margin: 4px 0 28px; }
.proof-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.proof-row { padding: 16px 20px; border: 1px solid var(--line); border-radius: 14px; font-size: 15px; line-height: 1.55; }
.proof-date, .proof-channel { font-family: var(--mono); font-size: 12px; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }

/* ---------- built in the open ---------- */
.open-wrap { max-width: var(--content); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.open-copy h2 { margin-bottom: 18px; }
.open-copy p { color: var(--body-2); font-size: 16px; line-height: 1.65; margin: 0 0 14px; max-width: 520px; }
.ledger { background: #fff; border: 1px solid var(--line); border-radius: 20px; padding: 10px 26px; box-shadow: 0 10px 25px rgba(27, 21, 33, .04); }
.ledger-row { display: flex; justify-content: space-between; gap: 16px; align-items: center; padding: 18px 0; border-top: 1px solid var(--line); font-size: 15px; }
.ledger-row:first-child { border-top: 0; }
.ledger-row .k { font-weight: 600; }
.ledger-row .v { display: flex; align-items: center; gap: 8px; font-family: var(--mono); font-size: 12px; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); white-space: nowrap; }
.d { width: 8px; height: 8px; border-radius: 50%; display: inline-block; }
.d.go { background: var(--green); }
.d.now { background: #f2b34c; }
.d.soon { background: #b8aec8; }

/* ---------- founding pilot ---------- */
.pilot2 {
  display: grid; grid-template-columns: 1fr 1fr; max-width: var(--content); margin: 0 auto;
  border: 1px solid var(--line); border-radius: 24px; overflow: hidden; text-align: start;
}
.pilot2-copy {
  padding: 62px; border-right: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(250, 248, 253, .98) 50%, rgba(250, 248, 253, .84)),
    url("/images/landing/pilot-team.jpg") center / cover no-repeat;
}
.pilot2-copy h2 { font-size: clamp(40px, 4vw, 52px); line-height: 1.1; letter-spacing: -.04em; margin: 0 0 16px; max-width: 460px; }
.pilot2-copy .lede { color: var(--body-2); font-size: 16px; line-height: 1.6; margin: 0 0 26px; max-width: 460px; }
.pilot2-list { list-style: none; margin: 0 0 32px; padding: 0 0 32px; display: grid; gap: 16px; border-bottom: 1px solid var(--line); }
.pilot2-list li { display: flex; align-items: center; gap: 12px; font-size: 15.5px; color: #3a3543; }
.pilot2-list svg { width: 22px; height: 22px; flex: 0 0 22px; color: var(--coral); }
.pilot2-price { display: flex; align-items: baseline; gap: 10px; }
.pilot2-price b { font-size: 52px; font-weight: 800; letter-spacing: -.05em; line-height: 1; }
.pilot2-price small { font-size: 16px; color: #5c5765; }
.pilot-fact-line { display: flex; flex-wrap: wrap; margin-top: 14px; font-family: var(--mono); font-size: 13px; font-weight: 700; color: var(--muted); }
.pilot-fact + .pilot-fact::before { content: "·"; margin: 0 10px; }
.pilot2-form { background: #fff; padding: 62px; text-align: start; }
.pilot2-form h3 { font-size: 30px; letter-spacing: -.03em; margin: 0 0 10px; }
.pilot2-form > p { margin: 0 0 30px; color: var(--body-2); font-size: 15.5px; line-height: 1.55; }
.pilot2-form form { display: grid; gap: 10px; }
.pilot2-form .field-label { margin-top: 8px; }
.consent {
  display: flex; gap: 10px; align-items: flex-start; margin-top: 8px;
  font-size: 13.5px; line-height: 1.5; color: var(--body-2); cursor: pointer;
}
.consent input { margin: 3px 0 0; width: 16px; height: 16px; flex: 0 0 16px; accent-color: var(--coral); }
.consent input[aria-invalid="true"] { outline: 2px solid var(--coral); outline-offset: 2px; }
.consent a { color: var(--ink); text-decoration: underline; }
.consent-help { margin: 0; font-family: var(--mono); font-size: 11px; color: #5c5765; }
.pilot2-form .btn { margin-top: 18px; padding: 20px; font-size: 16px; width: 100%; border-radius: 12px; }
.pilot-after { margin: 18px 0 0; font-size: 13.5px; line-height: 1.55; color: var(--body-2); }
.trust-line { margin: 12px 0 0; font-family: var(--mono); font-size: 11px; letter-spacing: .04em; color: #5c5765; }

/* ---------- footer ---------- */
.footer {
  position: relative; color: #fff; padding: 0 var(--page-gutter) 36px;
  background: radial-gradient(800px 400px at 90% 0%, rgba(255, 91, 63, .14), transparent 60%), #16131f;
}
.footer::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .35;
  background-image: linear-gradient(rgba(255, 255, 255, .03) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .03) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, .9), transparent);
  -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, .9), transparent);
}
.footer > * { position: relative; }
.footer-cta {
  max-width: var(--content); margin: 0 auto; padding: 72px 0 50px;
  display: flex; justify-content: space-between; align-items: center; gap: 32px; flex-wrap: wrap;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}
.footer-cta .eyebrow { color: #ff9a80; }
.footer-cta h2 { font-size: clamp(34px, 3.4vw, 52px); letter-spacing: -.04em; line-height: 1.05; margin: 0; }
.footer-cta-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.footer .btn-ghost { color: #fff; border-color: rgba(255, 255, 255, .28); }
.footer .btn-ghost:hover { background: rgba(255, 255, 255, .08); }
.footer-top { max-width: var(--content); margin: 0 auto; display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 32px; padding: 64px 0; }
.footer-brand p { color: rgba(255, 255, 255, .6); font-size: 15px; line-height: 1.65; margin: 16px 0 24px; max-width: 300px; }
.footer-col { display: flex; flex-direction: column; gap: 13px; }
.footer-col h4 { font-size: 12px; text-transform: uppercase; letter-spacing: .1em; color: rgba(255, 255, 255, .45); margin: 0 0 18px; font-weight: 700; }
.footer-col a, .footer-col button {
  color: rgba(255, 255, 255, .8); font-size: 15px; transition: .15s color;
  background: none; border: 0; padding: 0; text-align: left; cursor: pointer; font-family: inherit;
}
.footer-col a:hover, .footer-col button:hover { color: #ff9a80; }
.footer-socials { display: flex; gap: 10px; }
.footer-socials a {
  width: 40px; height: 40px; border-radius: 12px; border: 1px solid rgba(255, 255, 255, .14);
  display: grid; place-items: center; color: rgba(255, 255, 255, .75); transition: .15s;
}
.footer-socials a svg { width: 18px; height: 18px; }
.footer-socials a:hover { color: #fff; border-color: rgba(255, 255, 255, .4); background: rgba(255, 255, 255, .06); }
.footer-bottom {
  max-width: var(--content); margin: 0 auto; padding-top: 28px; border-top: 1px solid rgba(255, 255, 255, .1);
  display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap;
}
.footer-bottom small { color: rgba(255, 255, 255, .45); font-size: 13px; }

/* ---------- quick answers widget ---------- */
.chat-btn {
  position: fixed; right: 26px; bottom: 24px; z-index: 50;
  border: 0; border-radius: 14px; background: #17131f; color: #fff;
  padding: 14px 18px; font-weight: 800; cursor: pointer;
  box-shadow: 0 14px 34px rgba(23, 21, 37, .22);
  display: flex; gap: 9px; align-items: center;
}
.chat-panel {
  position: fixed; right: 26px; bottom: 88px; z-index: 60;
  width: 350px; max-width: calc(100vw - 28px);
  background: #fff; border-radius: 20px; border: 1px solid #e7e2ec;
  box-shadow: 0 25px 70px rgba(23, 21, 37, .24); overflow: hidden;
}
.chat-head { background: var(--ink); color: #fff; padding: 16px 18px; display: flex; align-items: center; justify-content: space-between; }
.chat-head small { display: block; color: #bfb9c9; }
.chat-close { background: none; border: 0; color: #fff; font-size: 22px; line-height: 1; cursor: pointer; width: 32px; height: 32px; }
.chat-body { height: 300px; overflow: auto; padding: 16px; background: #fbf9fd; display: flex; flex-direction: column; gap: 10px; }
.msg { max-width: 84%; padding: 10px 12px; border-radius: 14px; font-size: 13px; line-height: 1.45; }
.msg.bot { background: #fff; border: 1px solid #e9e5ed; align-self: flex-start; }
.msg.user { background: var(--coral); color: var(--on-coral); align-self: flex-end; }
.quick { display: flex; gap: 7px; flex-wrap: wrap; }
.quick button { background: #fff; border: 1px solid #ddd7e4; border-radius: 999px; padding: 7px 9px; font-size: 11px; cursor: pointer; }
.chat-form { display: flex; padding: 11px; border-top: 1px solid #eeeaf1; gap: 8px; }
.chat-form input { flex: 1; min-width: 0; border: 1px solid #ddd7e4; border-radius: 11px; padding: 10px 11px; outline: none; }
.chat-form input:focus { border-color: var(--coral); }
.chat-form button { border: 0; background: var(--coral); color: var(--on-coral); border-radius: 11px; padding: 0 13px; font-weight: 800; cursor: pointer; }

/* ---------- responsive ---------- */
@media (max-width: 1180px) and (min-width: 820px) {
  .nav { grid-template-columns: auto 1fr auto; gap: 18px; }
  .nav-links > a { padding: 9px 11px; font-size: 13px; }
  .nav-links { gap: 2px; }
  .nav-cta { padding: 0 14px; font-size: 13px; }
  .hero-title { font-size: 46px; }
}

@media (max-width: 1120px) {
  .hero-inner { grid-template-columns: 1fr 1fr; min-height: 620px; }
  .hero-visual { padding: 38px 0 34px 22px; }
  .hero-image { width: min(100%, 500px); }
  .footer-top { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
  .gap-wrap { gap: 48px; }
}

@media (max-width: 960px) {
  .hero { padding-bottom: 48px; }
  .hero-inner { grid-template-columns: 1fr; min-height: auto; column-gap: 20px; row-gap: 18px; }
  .hero-copy { padding: 72px 0 25px; max-width: 760px; }
  .hero-title span { white-space: normal; }
  .hero-title .notice-break { display: inline; }
  .hero-visual { padding: 22px 28px 48px; }
  .hero-image { width: 100%; max-width: 680px; aspect-ratio: 16 / 10; object-position: center 30%; border-radius: 22px; }
  .analysis-band { grid-template-columns: 1fr; gap: 30px; padding: 36px; }
  .analysis-copy h2 { max-width: 100%; }
  .loop-grid { grid-template-columns: 1fr 1fr; }
  .gap-wrap { grid-template-columns: 1fr; gap: 40px; }
  .gap-intro { position: static; }
  .cmp, .pilot2 { grid-template-columns: 1fr; }
  .cmp-vs { display: none; }
  .pilot2-copy { border-right: 0; border-bottom: 1px solid var(--line); }
  .open-wrap { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 819px) {
  :root { --page-gutter: 20px; }
  .nav { display: flex; justify-content: space-between; height: 68px; }
  .nav-links { display: none; }
  .nav-links.mobile-open {
    position: absolute; z-index: 30; top: 58px; right: 0; left: auto;
    width: min(330px, calc(100vw - 22px));
    display: flex; flex-direction: column; gap: 0;
    padding: 12px 12px 10px;
    background: #fff; border: 1.5px solid #171525; border-radius: 14px;
    box-shadow: 7px 7px 0 #171525;
  }
  .nav-links.mobile-open > a { color: var(--ink); font-size: 13px; font-weight: 750; padding: 13px 10px; border-radius: 9px; line-height: 1.2; }
  .nav-links.mobile-open > a:hover,
  .nav-links.mobile-open > a.active { background: #f7f4f8; color: var(--ink); }
  .nav-links.mobile-open .mobile-menu-actions {
    display: grid; grid-template-columns: 1fr 1.08fr; gap: 8px;
    margin-top: 8px; padding-top: 10px; border-top: 1.5px solid #171525;
  }
  .mobile-menu-actions a {
    min-height: 42px; padding: 0 10px; display: flex; align-items: center; justify-content: center;
    border: 1.5px solid #171525; border-radius: 10px; font-size: 12px; font-weight: 800;
  }
  .mobile-menu-actions .mobile-secondary { background: #fff; color: #171525; }
  .mobile-menu-actions .mobile-cta { background: var(--coral); border-color: var(--coral); color: var(--on-coral); }
  .mobile-menu-actions .mobile-cta:hover { background: var(--coral-2); border-color: var(--coral-2); }
  .nav-actions { margin-left: auto; gap: 8px; }
  .nav-cta { display: none; }
  .menu-btn {
    display: inline-flex; align-items: center; gap: 8px;
    min-width: 76px; height: 44px; padding: 0 12px;
    border: 1.5px solid #171525; border-radius: 12px;
    background: #fff; color: #171525; box-shadow: 0 3px 0 #171525;
    font-size: 12px; font-weight: 800; cursor: pointer; transition: .2s ease;
  }
  .menu-btn:hover { transform: translateY(-1px); }
  .menu-btn .menu-icon { font-size: 16px; line-height: 1; width: 16px; text-align: center; }
  .menu-btn .menu-label { line-height: 1; }
  .section { padding: 76px 20px; }
  .section-head { display: block; margin-bottom: 32px; }
  .section-head h2 { font-size: 38px; margin-bottom: 12px; }
  .how-grid { grid-template-columns: 1fr 1fr; }
  .step { min-height: 260px; padding: 22px; }
  .step h3 { font-size: 20px; }
  .gap-wrap { gap: 44px; }
  .gap-intro h2 { font-size: 38px; }
  .gap-next { margin-left: 0; }
  .gap-step { grid-template-columns: 40px 1fr; gap: 14px; }
  .gap-node { width: 40px; height: 40px; }
  .gap-steps::before { left: 19px; }
  .gap-body { padding: 20px; }
  .gap-body h3 { font-size: 20px; }
  .loop-head { margin-bottom: 40px; }
  .loop-head h2 { font-size: 34px; }
  .loop-head p { font-size: 15.5px; }
  .cmp-col { padding: 32px 24px; }
  .cmp-head { margin-bottom: 24px; }
  .cmp-head h3 { font-size: 24px; }
  #join.section { padding: 64px 22px; }
  .pilot2 { border-radius: 20px; }
  .pilot2-copy, .pilot2-form { padding: 30px 24px; }
  .pilot2-copy {
    background:
      linear-gradient(rgba(250, 248, 253, .94), rgba(250, 248, 253, .94)),
      url("/images/landing/pilot-team.jpg") center / cover no-repeat;
  }
  .pilot2-copy h2 { font-size: 30px; line-height: 1.08; margin: 6px 0 14px; max-width: 100%; }
  .pilot2-list { gap: 12px; padding-bottom: 22px; margin-bottom: 24px; }
  .pilot2-list li { gap: 10px; font-size: 14px; line-height: 1.45; }
  .pilot2-list svg { width: 19px; height: 19px; flex-basis: 19px; }
  .pilot2-price b { font-size: 40px; }
  .pilot2-price small { font-size: 14px; }
  .pilot2-form h3 { font-size: 25px; margin-bottom: 8px; }
  .pilot2-form > p { font-size: 14px; line-height: 1.5; margin-bottom: 22px; }
  .pilot2-form form { gap: 8px; }
  .pilot2-form .field-label { font-size: 10.5px; margin-top: 6px; }
  .pilot2-form .text-input { padding: 14px; font-size: 14px; }
  .pilot2-form .btn { margin-top: 14px; padding: 15px 16px; font-size: 14px; }
  .footer { padding: 0 22px 24px; }
  .footer-cta { padding: 52px 0 40px; }
  .footer-cta h2 { font-size: 32px; }
  .footer-cta-actions .btn { flex: 1; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 28px; padding: 44px 0; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 600px) {
  :root { --page-gutter: 18px; }
  .hero-copy { padding-top: 56px; }
  .hero-title { font-size: 25px; line-height: 1.08; letter-spacing: -.035em; margin-bottom: 18px; }
  .hero-copy p { font-size: 14px; line-height: 1.55; margin-bottom: 22px; }
  .hero-actions { gap: 8px; }
  .hero-actions .btn { min-height: 42px; padding: 11px 15px; font-size: 12.5px; border-radius: 9px; }
  .section { padding: 64px 18px; }
  .section-head h2, .gap-intro h2, .loop-head h2, .open-copy h2, .analysis-copy h2, .proof-log h2 { font-size: 32px; }
  .analysis-band { padding: 26px 18px; border-radius: 20px; }
  .analysis-ui { padding: 22px 18px; }
  .teaser-form { grid-template-columns: 1fr; }
  .finding { grid-template-columns: 1fr; gap: 4px; }
  .how-grid, .loop-grid { grid-template-columns: 1fr; }
  .step { min-height: 285px; }
  .cmp-col { padding: 30px 22px; }
  .footer { padding-left: 18px; padding-right: 18px; }
  .footer-cta { padding-top: 54px; gap: 20px; }
  .footer-cta h2 { font-size: 26px; line-height: 1.08; letter-spacing: -.035em; }
  .footer-cta-actions { width: 100%; display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
  .footer-cta-actions .btn { flex: none; min-height: 42px; padding: 10px 12px; font-size: 12px; border-radius: 9px; }
}

@media (max-width: 520px) {
  .refendr-wordmark { gap: 7px; }
  .refendr-logo-dot { width: 10px; height: 10px; flex-basis: 10px; }
  .refendr-logo-core { width: 7px; height: 7px; box-shadow: 0 0 0 3px var(--logo-ring); }
  .refendr-logo-text { font-size: 19px; }
  .hero-visual { padding: 18px 18px 38px; }
  .hero-image { aspect-ratio: 4 / 5; max-width: 440px; object-position: center 24%; border-radius: 18px; box-shadow: 0 16px 34px rgba(35, 27, 42, .1); }
  .gap-kicker { flex-wrap: wrap; }
  .gap-chart { padding: 14px; }
  #join.section { padding: 54px 18px; }
  .pilot2 { border-radius: 18px; }
  .pilot2-copy, .pilot2-form { padding: 24px 20px; }
  .pilot2-copy h2 { font-size: 27px; margin-bottom: 12px; }
  .pilot2-list { gap: 10px; padding-bottom: 18px; margin-bottom: 20px; }
  .pilot2-list li { font-size: 13.5px; }
  .pilot2-price b { font-size: 36px; }
  .pilot2-form h3 { font-size: 23px; }
  .pilot2-form > p { margin-bottom: 18px; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .chat-btn { right: 14px; bottom: 14px; }
  .chat-panel { right: 14px; bottom: 74px; }
}

@media (max-width: 380px) {
  .footer-cta h2 { font-size: 24px; }
  .footer-cta-actions { grid-template-columns: 1fr; }
  .footer-cta-actions .btn { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .refendr-logo-core, .refendr-logo-pulse, .refendr-logo-text { animation: none; }
  .refendr-logo-pulse { display: none; }
  .btn, .btn:hover, .gap-next span, .menu-btn { transition: none; transform: none; }
}
