:root {
  --bg: #fef7ef;
  --bg-tint: #fff2e6;
  --bg-blush: #ffe8df;
  --ink: #141414;
  --ink-2: #2a2a2a;
  --muted: #7a736d;
  --line: #ece3d6;
  --card: #ffffff;
  --card-shadow: 0 4px 24px rgba(35,20,10,0.06);
  --card-shadow-lg: 0 12px 48px rgba(35,20,10,0.08);
  --accent: #ff6b47;
  --accent-2: #ff8a6a;
  --accent-soft: #ffdbcc;
  --accent-grad: linear-gradient(135deg, #ff8b6a 0%, #ff5a37 100%);
  --hero-grad: radial-gradient(ellipse 1200px 700px at 70% 20%, #ffe0d0 0%, #fff0e2 30%, #fef7ef 60%, #fef7ef 100%);
  --radius: 20px;
  --radius-lg: 28px;
  --max: 1200px;
  --narrow: 780px;
  --gutter: 40px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: 'Plus Jakarta Sans', 'Inter', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter); }
.wrap.narrow { max-width: var(--narrow); }

/* ---------- NAV ---------- */
.nav {
  padding: 24px 0;
  position: sticky; top: 0; z-index: 100;
  background: rgba(254,247,239,0.8);
  backdrop-filter: blur(12px);
}
.nav .wrap { display: flex; justify-content: space-between; align-items: center; }
.mark { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: 18px; letter-spacing: -0.01em; }
.mark-right { font-size: 13px; color: var(--muted); font-weight: 500; }

/* ---------- HERO ---------- */
.hero {
  padding: 40px 0 100px;
  background: var(--hero-grad);
  position: relative;
  overflow: hidden;
}
.hero-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: start;
  position: relative;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  background: #fff;
  border-radius: 999px;
  box-shadow: var(--card-shadow);
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 24px;
}
.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 1.8s ease-in-out infinite;
}
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1);} 50%{opacity:0.4;transform:scale(0.7);} }
.badge-stars { color: var(--accent); font-size: 12px; letter-spacing: 1px; }

.cta-row-hero {
  display: flex;
  gap: 10px;
  margin-bottom: 48px;
}

.hero-desc {
  font-size: 15px;
  color: var(--muted);
  max-width: 440px;
  line-height: 1.6;
  margin-bottom: 18px;
}

.hero-h1 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(38px, 5.4vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.035em;
  font-weight: 700;
  color: var(--ink);
  max-width: 620px;
}
.hero-h1 .accent-word { color: var(--accent); }

/* FLOATING CARDS STACK */
.hero-right {
  position: relative;
  height: 520px;
  min-height: 520px;
}
.float-card {
  position: absolute;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--card-shadow-lg);
  padding: 20px 22px;
  animation: floaty 8s ease-in-out infinite;
}
@keyframes floaty { 0%,100%{transform:translateY(0);} 50%{transform:translateY(-10px);} }
.float-card.card-1 {
  top: 0; right: 0;
  width: 280px;
  animation-delay: 0s;
}
.float-card.card-2 {
  top: 40px; left: 20px;
  width: 340px;
  animation-delay: 1.5s;
}
.float-card.card-3 {
  top: 220px; right: 40px;
  width: 300px;
  background: var(--accent-grad);
  color: #fff;
  animation-delay: 0.8s;
}
.float-card.card-4 {
  top: 300px; left: 0;
  width: 260px;
  animation-delay: 2.2s;
}

.fc-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  font-weight: 600;
  margin-bottom: 10px;
}
.float-card.card-3 .fc-label { color: rgba(255,255,255,0.85); }

.fc-stat {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 4px;
}
.float-card.card-3 .fc-stat { color: #fff; }
.fc-sub { font-size: 12px; color: var(--muted); font-weight: 500; }
.float-card.card-3 .fc-sub { color: rgba(255,255,255,0.8); }

.fc-chart {
  height: 50px;
  margin-top: 10px;
  background: linear-gradient(180deg, rgba(255,107,71,0.15), transparent);
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}
.fc-chart svg { width: 100%; height: 100%; display: block; }

.fc-list { list-style: none; font-size: 13px; }
.fc-list li {
  padding: 8px 0;
  border-top: 1px solid rgba(255,255,255,0.2);
  display: flex;
  justify-content: space-between;
}
.fc-list li:first-child { border-top: none; }
.fc-check { opacity: 0.9; }

.fc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 2px;
  height: 90px;
  background: var(--line);
  border-radius: 8px;
  overflow: hidden;
  margin-top: 8px;
  position: relative;
}
.fc-grid > div {
  background: #fff;
  font-size: 9px;
  padding: 6px;
  color: var(--muted);
}
.fc-pin {
  position: absolute;
  width: 10px; height: 10px;
  border-radius: 50%;
  transform: translate(-50%,-50%);
}
.fc-pin.now { background: var(--ink); top: 70%; left: 30%; }
.fc-pin.target { background: var(--accent); top: 30%; left: 75%; box-shadow: 0 0 0 4px rgba(255,107,71,0.25); }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: inherit;
  font-weight: 600;
  font-size: 14px;
  padding: 14px 24px;
  border-radius: 999px;
  cursor: pointer;
  text-decoration: none;
  border: 1px solid transparent;
  transition: all 0.2s ease;
  letter-spacing: 0;
}
.btn.primary { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.btn.primary:hover { background: var(--accent); border-color: var(--accent); transform: translateY(-1px); box-shadow: 0 8px 20px rgba(255,107,71,0.35); }
.btn.secondary { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn.secondary:hover { background: var(--ink); color: var(--bg); }
.btn.ghost { background: #fff; color: var(--ink); border-color: var(--line); }
.btn.ghost:hover { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.btn.large { padding: 18px 32px; font-size: 15px; }
.btn.small { padding: 10px 18px; font-size: 12px; }
.btn.coral { background: var(--accent); color: #fff; border-color: var(--accent); }
.btn.coral:hover { background: var(--ink); border-color: var(--ink); }

/* ---------- BLOCKS ---------- */
.block { padding: 120px 0; position: relative; }
.block.tight { padding: 90px 0; }
.block.tool { background: linear-gradient(180deg, var(--bg) 0%, var(--bg-tint) 100%); }
.block.dark { background: var(--ink); color: var(--bg); }
.block.apply { background: linear-gradient(180deg, var(--bg-tint) 0%, var(--bg-blush) 100%); }

.block[data-num]::before {
  content: counter(block, decimal-leading-zero) "  " attr(data-num);
  display: block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
  padding: 8px 16px;
  background: #fff;
  border-radius: 999px;
  box-shadow: var(--card-shadow);
  width: max-content;
  margin-bottom: 36px;
}
body { counter-reset: block; }
.block[data-num] { counter-increment: block; }
.block.dark[data-num]::before { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.75); box-shadow: none; }

/* ---------- TYPE ---------- */
.kicker {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(36px, 5.2vw, 62px);
  line-height: 1.02;
  letter-spacing: -0.035em;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 40px;
  max-width: 820px;
}
.kicker.light { color: var(--bg); }
.kicker .accent { color: var(--accent); font-style: normal; font-weight: 700; }
.kicker.center { text-align: center; margin-left: auto; margin-right: auto; }
.lede { font-size: 17px; color: var(--muted); max-width: 560px; margin: 0 0 56px; line-height: 1.6; }
.dark .lede { color: rgba(255,255,255,0.75); }

.prose p { font-size: 17px; line-height: 1.65; color: var(--ink-2); margin: 0 0 20px; }
.prose.light p { color: rgba(255,255,255,0.85); }
.prose ul { list-style: none; margin: 0 0 20px; }
.prose li {
  font-size: 17px;
  line-height: 1.55;
  padding: 14px 0 14px 30px;
  border-bottom: 1px solid var(--line);
  position: relative;
  color: var(--ink-2);
}
.prose.light li { color: rgba(255,255,255,0.85); border-color: rgba(255,255,255,0.1); }
.prose li::before {
  content: '';
  position: absolute;
  left: 0; top: 24px;
  width: 14px; height: 2px;
  background: var(--accent);
  border-radius: 2px;
}
.prose .emphasis {
  font-size: clamp(22px, 2.6vw, 30px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: var(--ink);
  margin-top: 40px;
  padding: 28px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--card-shadow);
  border-left: 4px solid var(--accent);
}
.prose.light .emphasis { color: var(--ink); background: var(--bg); border-left-color: var(--accent); box-shadow: none; }
.prose em { font-style: normal; color: var(--accent); font-weight: 700; }

/* ---------- STEPS — Carely style ghost numbers ---------- */
.steps {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 48px;
  max-width: 880px;
}
.step {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 32px;
  align-items: center;
  padding: 36px 44px;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--card-shadow);
  transition: all 0.3s ease;
}
.step:hover { transform: translateY(-4px); box-shadow: var(--card-shadow-lg); }
.step:nth-child(1) { align-self: flex-start; width: 82%; }
.step:nth-child(2) { align-self: center; width: 82%; background: linear-gradient(135deg, #fff 0%, #fff5ee 100%); }
.step:nth-child(3) { align-self: flex-end; width: 82%; }

.step-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 160px;
  line-height: 0.85;
  font-weight: 800;
  color: transparent;
  -webkit-text-stroke: 2px var(--ink);
  letter-spacing: -0.04em;
  transition: all 0.3s ease;
}
.step:nth-child(2) .step-num {
  background: var(--accent-grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 0;
}
.step:hover .step-num {
  -webkit-text-stroke-color: var(--accent);
}
.step:nth-child(2):hover .step-num { filter: brightness(1.1); }

.step-body h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
  color: var(--ink);
}
.step-body p { font-size: 14px; line-height: 1.6; color: var(--muted); margin: 0 0 8px; }
.step-body .meta { font-size: 12px; color: var(--muted); font-weight: 500; margin-top: 8px; font-style: italic; }

/* ---------- GRID / DELIVERABLES ---------- */
.grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.card {
  padding: 28px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--card-shadow);
  transition: all 0.25s ease;
  position: relative;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--card-shadow-lg); }
.card:nth-child(3n+2) { background: var(--accent-grad); color: #fff; }
.card:nth-child(3n+2) h4, .card:nth-child(3n+2) p { color: #fff; }
.card h4 {
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.015em;
  margin-bottom: 10px;
  color: var(--ink);
}
.card p { font-size: 14px; line-height: 1.55; color: var(--muted); }
.close {
  margin-top: 56px;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
  text-align: center;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  padding: 32px;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--card-shadow);
}

/* ---------- TWO COL ---------- */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-top: 24px; }
.two-col > div {
  padding: 32px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--card-shadow);
}
.two-col > div:first-child { background: linear-gradient(135deg, #fff 0%, #fff5ee 100%); }
.col-head {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
  font-weight: 600;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}
.col-head.muted-head { color: var(--muted); }
.list { list-style: none; }
.list li {
  padding: 14px 0 14px 28px;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
  line-height: 1.5;
  color: var(--ink-2);
  position: relative;
}
.list li:last-child { border-bottom: none; }
.list li::before {
  content: '+';
  position: absolute;
  left: 0; top: 14px;
  color: var(--accent);
  font-weight: 700;
  font-size: 16px;
}
.muted-list li { color: var(--muted); }
.muted-list li::before { content: '−'; color: var(--muted); }

/* ---------- FAQ ---------- */
.faq { display: flex; flex-direction: column; gap: 12px; }
.faq details {
  background: #fff;
  border-radius: var(--radius);
  padding: 24px 28px;
  box-shadow: var(--card-shadow);
  cursor: pointer;
  transition: all 0.2s;
}
.faq details:hover { box-shadow: var(--card-shadow-lg); }
.faq details[open] { padding-bottom: 28px; }
.faq summary {
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.01em;
  list-style: none;
  position: relative;
  padding-right: 40px;
  color: var(--ink);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '';
  position: absolute;
  right: 4px; top: 50%;
  width: 20px; height: 20px;
  background: var(--accent);
  border-radius: 50%;
  transform: translateY(-50%);
  transition: transform 0.3s;
}
.faq summary::before {
  content: '+';
  position: absolute;
  right: 8px; top: 50%;
  transform: translateY(-50%);
  color: #fff;
  font-weight: 600;
  z-index: 2;
  transition: transform 0.3s;
  line-height: 1;
  font-size: 14px;
}
.faq details[open] summary::before { transform: translateY(-50%) rotate(45deg); }
.faq details p { margin: 18px 0 0; font-size: 14px; line-height: 1.65; color: var(--muted); max-width: 640px; }

/* ---------- TOOLS ---------- */
.tool-header { margin-bottom: 48px; max-width: 700px; }
.tool-label {
  display: inline-block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 20px;
  padding: 6px 14px;
  background: var(--accent-soft);
  border-radius: 999px;
}
.tool-sub { font-size: 16px; color: var(--muted); line-height: 1.6; max-width: 580px; }
.tool-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 40px;
  max-width: 820px;
  box-shadow: var(--card-shadow);
}
.tool-row { margin-bottom: 18px; }
.tool-row label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 8px;
}
.tool-row input, .tool-row textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--line);
  background: var(--bg);
  font-family: inherit;
  font-size: 15px;
  color: var(--ink);
  resize: vertical;
  border-radius: 14px;
  transition: all 0.15s;
}
.tool-row input:focus, .tool-row textarea:focus { outline: none; background: #fff; border-color: var(--accent); box-shadow: 0 0 0 4px rgba(255,107,71,0.1); }
.tool-row textarea { min-height: 90px; }

.result { margin-top: 36px; padding-top: 36px; border-top: 1px solid var(--line); }
.result.hidden { display: none; }
.scores { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 28px; }
.score { padding: 24px; background: var(--bg); border-radius: var(--radius); }
.score-label { font-size: 11px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--muted); font-weight: 600; margin-bottom: 14px; }
.gauge { width: 100%; height: 6px; background: var(--line); border-radius: 999px; overflow: hidden; margin-bottom: 12px; }
.gauge-fill { height: 100%; background: var(--ink); width: 0%; border-radius: 999px; transition: width 1.1s cubic-bezier(.2,.9,.25,1); }
.gauge-fill.accent { background: var(--accent-grad); }
.score-val { font-size: 44px; font-weight: 800; line-height: 1; color: var(--ink); margin-bottom: 8px; letter-spacing: -0.03em; }
.score-max { font-size: 18px; color: var(--muted); font-weight: 500; margin-left: 4px; }
.score-hint { font-size: 11px; color: var(--muted); }

.observation { padding: 24px; background: var(--accent-grad); color: #fff; border-radius: var(--radius); margin-bottom: 28px; }
.obs-label { font-size: 11px; text-transform: uppercase; letter-spacing: 0.14em; opacity: 0.9; font-weight: 600; margin-bottom: 12px; }
.observation p { font-size: 17px; font-weight: 600; line-height: 1.45; letter-spacing: -0.01em; }
.result-cta { display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap; }
.result-cta p { font-size: 13px; color: var(--muted); max-width: 400px; line-height: 1.5; }

/* ---------- MAP ---------- */
.map-wrap { display: grid; grid-template-columns: 1fr 340px; gap: 32px; margin-top: 36px; align-items: stretch; }
.map {
  position: relative;
  aspect-ratio: 1 / 1;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--card-shadow);
  cursor: crosshair;
  overflow: hidden;
}
.map-axis { position: absolute; background: var(--line); }
.map-axis.vertical { left: 50%; top: 24px; bottom: 24px; width: 1px; }
.map-axis.horizontal { top: 50%; left: 24px; right: 24px; height: 1px; }
.map-label { position: absolute; font-size: 11px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--muted); font-weight: 600; }
.map-label.top { top: 18px; left: 50%; transform: translateX(-50%); }
.map-label.bottom { bottom: 18px; left: 50%; transform: translateX(-50%); }
.map-label.left { left: 18px; top: 50%; transform: translateY(-50%) rotate(-90deg); transform-origin: left center; }
.map-label.right { right: 18px; top: 50%; transform: translateY(-50%) rotate(90deg); transform-origin: right center; }
.map-quad { position: absolute; font-size: 12px; font-weight: 500; color: var(--muted); font-style: italic; pointer-events: none; max-width: 120px; line-height: 1.3; }
.quad-tl { top: 22%; left: 10%; }
.quad-tr { top: 22%; right: 10%; text-align: right; }
.quad-bl { bottom: 22%; left: 10%; }
.quad-br { bottom: 22%; right: 10%; text-align: right; }

.map-pin { position: absolute; width: 16px; height: 16px; border-radius: 50%; transform: translate(-50%, -50%); pointer-events: none; transition: all 0.3s cubic-bezier(.2,.9,.25,1); }
.map-pin.hidden { display: none; }
.pin-current { background: var(--ink); box-shadow: 0 0 0 3px #fff, 0 0 0 4px var(--ink); }
.pin-target { background: var(--accent); box-shadow: 0 0 0 3px #fff, 0 0 0 4px var(--accent); animation: targetPulse 1.8s ease-in-out infinite; }
@keyframes targetPulse { 0%,100% { box-shadow: 0 0 0 3px #fff, 0 0 0 4px var(--accent);} 50% { box-shadow: 0 0 0 3px #fff, 0 0 0 10px rgba(255,107,71,0.3);} }
.map-pin span { position: absolute; top: -26px; left: 50%; transform: translateX(-50%); font-size: 10px; text-transform: uppercase; letter-spacing: 0.14em; color: var(--ink); font-weight: 600; white-space: nowrap; }
.pin-target span { color: var(--accent); }
.map-line { position: absolute; height: 2px; background: var(--accent); opacity: 0.55; transform-origin: 0 50%; pointer-events: none; display: none; border-radius: 2px; }
.map-line.active { display: block; }

.map-side { display: flex; flex-direction: column; justify-content: space-between; gap: 16px; }
.map-readout { background: #fff; border-radius: var(--radius-lg); padding: 28px; flex: 1; box-shadow: var(--card-shadow); }
.map-readout .muted { font-size: 13px; color: var(--muted); font-style: italic; }
.map-readout h4 { font-size: 20px; font-weight: 700; letter-spacing: -0.015em; margin-bottom: 12px; color: var(--ink); }
.map-readout p { font-size: 14px; line-height: 1.55; color: var(--muted); margin-bottom: 12px; }
.map-readout .tag {
  display: inline-block;
  padding: 5px 12px;
  background: var(--bg);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
  margin-right: 6px;
  margin-bottom: 6px;
}
.map-readout .tag.target { background: var(--accent-grad); color: #fff; }

/* ---------- APPLY ---------- */
.apply .kicker { color: var(--ink); }
.apply .lede { color: var(--ink-2); }
.intro-form {
  color: var(--ink-2);
  font-size: 15px;
  line-height: 1.65;
  margin-bottom: 48px;
  padding: 28px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--card-shadow);
  border-left: 4px solid var(--accent);
}
.form { margin-top: 0; background: #fff; padding: 40px; border-radius: var(--radius-lg); box-shadow: var(--card-shadow-lg); }
.form-row { margin-bottom: 22px; }
.form-row label { display: block; font-size: 12px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); font-weight: 600; margin-bottom: 8px; }
.form-row input, .form-row textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--line);
  background: var(--bg);
  color: var(--ink);
  font-family: inherit;
  font-size: 15px;
  border-radius: 14px;
  resize: vertical;
  transition: all 0.15s;
}
.form-row input:focus, .form-row textarea:focus { outline: none; background: #fff; border-color: var(--accent); box-shadow: 0 0 0 4px rgba(255,107,71,0.1); }
.form-note { margin-top: 14px; font-size: 12px; color: var(--muted); font-style: italic; }

/* ---------- FOOT ---------- */
.foot { padding: 40px 0; background: var(--ink); color: var(--bg); }
.foot-row { display: flex; justify-content: space-between; align-items: center; }
.foot .mark { color: var(--bg); }
.foot-meta { font-size: 13px; color: rgba(255,255,255,0.6); }

/* ---------- SCROLL REVEAL ---------- */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.8s cubic-bezier(.2,.9,.25,1), transform 0.8s cubic-bezier(.2,.9,.25,1); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 960px) {
  :root { --gutter: 22px; }
  .hero { padding: 20px 0 60px; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-right { height: 400px; min-height: 400px; }
  .float-card { animation: none; }
  .float-card.card-1 { width: 240px; right: 10px; }
  .float-card.card-2 { width: 260px; top: 120px; left: 10px; }
  .float-card.card-3 { width: 220px; top: 240px; right: 20px; }
  .block, .block.apply, .block.dark { padding: 80px 0; }
  .steps { max-width: 100%; }
  .step { grid-template-columns: 1fr; gap: 12px; padding: 32px; width: 100% !important; }
  .step-num { font-size: 100px; }
  .grid { grid-template-columns: 1fr 1fr; }
  .two-col { grid-template-columns: 1fr; }
  .map-wrap { grid-template-columns: 1fr; }
  .tool-card { padding: 26px 22px; }
  .scores { grid-template-columns: 1fr; gap: 18px; }
  .foot-row { flex-direction: column; gap: 12px; align-items: flex-start; }
}
@media (max-width: 640px) {
  .grid { grid-template-columns: 1fr; }
  .kicker { font-size: 36px; }
}
