/* ═══════════════════════════════════════════════════════════
   StandArg Landing v4 — tema claro confiable (+ dark sobrio)
   Consume tokens de styles.css
═══════════════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  font-size: var(--t-body);
  line-height: var(--lh-body);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  transition: background .4s, color .4s;
}
a { color: var(--accent-ink); text-decoration: none; transition: color var(--dur-fast); }
a:hover { color: var(--orange-700); }
img { max-width: 100%; display: block; }
::selection { background: rgba(234,98,9,0.18); }

.wrap { max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }
.wrap-wide { max-width: var(--container-wide); margin: 0 auto; padding: 0 var(--gutter); }

/* ── shared ── */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: var(--t-label); font-weight: var(--w-bold);
  letter-spacing: var(--track-label); text-transform: uppercase;
  color: var(--accent-ink);
}
.eyebrow::before { content:""; width: 18px; height: 2px; background: var(--accent); border-radius: 2px; }
.eyebrow.green { color: var(--green-ink); }
.eyebrow.green::before { background: var(--green); }

.pill {
  display: inline-flex; align-items: center; gap: 9px; white-space: nowrap;
  padding: 8px 16px 8px 12px; border-radius: var(--r-pill);
  background: var(--surface-1); border: 1px solid var(--border);
  font-size: var(--t-xs); font-weight: var(--w-medium); color: var(--text-muted);
  box-shadow: var(--shadow-sm);
}
.pill .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); }
.pill b { color: var(--text); font-weight: var(--w-semi); }

.h-display { font-family: var(--font-display); font-weight: var(--w-medium); font-size: var(--t-display); line-height: var(--lh-tight); letter-spacing: var(--track-tighter); }
.h1 { font-family: var(--font-display); font-weight: var(--w-medium); font-size: var(--t-h1); line-height: var(--lh-tight); letter-spacing: var(--track-tighter); }
.h2 { font-family: var(--font-display); font-weight: var(--w-medium); font-size: var(--t-h2); line-height: var(--lh-snug); letter-spacing: var(--track-tight); }
.h3 { font-weight: var(--w-semi); font-size: var(--t-h3); line-height: var(--lh-snug); }
.lead { font-size: var(--t-lead); color: var(--text-muted); }
.accent { color: var(--accent-ink); font-style: normal; }
.muted { color: var(--text-muted); }

/* ── buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-sans); font-size: var(--t-sm); font-weight: var(--w-semi);
  padding: 13px 22px; border-radius: var(--r-pill); cursor: pointer;
  border: 1px solid transparent; transition: all var(--dur-fast) var(--ease-out);
  white-space: nowrap; text-decoration: none;
}
.btn svg { width: 16px; height: 16px; }
.btn-primary { background: var(--orange); color: var(--text-on-orange); box-shadow: var(--shadow-orange); }
.btn-primary:hover { background: var(--orange-700); color: var(--text-on-orange); transform: translateY(-2px); }
.btn-secondary { background: var(--surface-1); color: var(--text); border-color: var(--border-strong); }
.btn-secondary:hover { background: var(--surface-2); color: var(--text); border-color: var(--text-dim); }
.btn-green { background: var(--green); color: var(--text-on-green); }
.btn-green:hover { background: var(--green-strong); color: var(--text-on-green); transform: translateY(-2px); }
.btn-lg { padding: 16px 28px; font-size: var(--t-body); }

/* ── card base ── */
.card { background: var(--surface-card); border: 1px solid var(--border); border-radius: var(--r-lg); box-shadow: var(--shadow-sm); }

/* ── theme toggle ── */
.theme-toggle {
  position: fixed; right: 20px; bottom: 20px; z-index: 300;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 16px; border-radius: var(--r-pill);
  background: var(--surface-1); border: 1px solid var(--border-strong);
  color: var(--text-muted); font-size: var(--t-xs); font-weight: var(--w-semi);
  cursor: pointer; box-shadow: var(--shadow-md); transition: all var(--dur-fast);
}
.theme-toggle:hover { color: var(--text); border-color: var(--text-dim); }
.theme-toggle svg { width: 16px; height: 16px; }

/* ═══════════════ NAV ═══════════════ */
.nav { position: fixed; top: 14px; left: 0; right: 0; z-index: 200; }
.nav-inner {
  max-width: var(--container); margin: 0 var(--gutter);
  display: flex; align-items: center; justify-content: space-between;
  padding: 9px 12px 9px 20px;
  background: color-mix(in srgb, var(--surface-1) 82%, transparent);
  backdrop-filter: blur(16px) saturate(1.4);
  border: 1px solid var(--border); border-radius: var(--r-pill);
  box-shadow: var(--shadow-sm); transition: box-shadow var(--dur), border-color var(--dur);
}
.nav.scrolled .nav-inner { box-shadow: var(--shadow-md); border-color: var(--border-strong); }
.nav-logo img { height: 30px; }
.logo-dark { display: none; }
[data-theme="dark"] .logo-light { display: none; }
[data-theme="dark"] .logo-dark { display: block; }
.nav-menu { display: flex; align-items: center; gap: 2px; list-style: none; }
.nav-menu a { color: var(--text-muted); font-size: var(--t-sm); font-weight: var(--w-medium); padding: 8px 14px; border-radius: var(--r-pill); transition: all var(--dur-fast); }
.nav-menu a:hover { color: var(--text); background: var(--surface-2); }
.nav-right { display: flex; align-items: center; gap: 10px; }

/* ═══════════════ HERO ═══════════════ */
.hero { position: relative; padding: 150px 0 80px; overflow: hidden; }
.hero-glow { position: absolute; top: -160px; right: -120px; width: 640px; height: 560px; background: var(--glow-orange); z-index: 0; pointer-events: none; }
.hero-glow-2 { position: absolute; bottom: -200px; left: -160px; width: 560px; height: 520px; background: var(--glow-green); z-index: 0; pointer-events: none; }
.hero-grid {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center;
  position: relative; z-index: 2;
}
.hero-copy h1 { margin: 20px 0 0; max-width: 15ch; }
.hero-copy .lead { margin-top: 22px; max-width: 52ch; }
.hero-ctas { display: flex; gap: 12px; margin-top: 32px; flex-wrap: wrap; }
.hero-assur { display: flex; gap: 22px; margin-top: 26px; flex-wrap: wrap; }
.hero-assur .a { display: flex; align-items: center; gap: 9px; font-size: var(--t-sm); color: var(--text-muted); }
.hero-assur .a svg { width: 18px; height: 18px; stroke: var(--green); flex-shrink: 0; }

/* hero visual: foto real + tarjeta dashboard flotante */
.hero-visual { position: relative; }
.hero-photo { position: relative; border-radius: var(--r-xl); overflow: hidden; border: 1px solid var(--border); box-shadow: var(--shadow-lg); aspect-ratio: 4/4.4; background: var(--surface-2); }
.hero-float {
  position: absolute; left: -34px; bottom: 34px; width: 300px;
  background: var(--surface-1); border: 1px solid var(--border); border-radius: var(--r-md);
  box-shadow: var(--shadow-lg); padding: 16px 18px; z-index: 3;
}
.hero-float .hf-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.hero-float .hf-title { font-size: var(--t-xs); font-weight: var(--w-semi); color: var(--text); }
.hero-float .hf-badge { font-size: 10.5px; font-weight: var(--w-bold); padding: 3px 9px; border-radius: var(--r-pill); background: var(--green-soft); color: var(--green-ink); border: 1px solid var(--green-line); }
.hero-float .hf-row { display: flex; align-items: center; gap: 10px; font-size: var(--t-xs); color: var(--text-muted); padding: 7px 0; }
.hero-float .hf-row .tick { width: 16px; height: 16px; border-radius: 50%; background: var(--green); display: grid; place-items: center; flex-shrink: 0; }
.hero-float .hf-row .tick svg { width: 9px; height: 9px; stroke: #fff; stroke-width: 3.5; }
.hero-badge-float {
  position: absolute; right: -20px; top: 28px; z-index: 3;
  background: var(--surface-1); border: 1px solid var(--border); border-radius: var(--r-md);
  box-shadow: var(--shadow-md); padding: 12px 16px; text-align: center;
}
.hero-badge-float .n { font-family: var(--font-display); font-weight: var(--w-semi); font-size: 30px; color: var(--orange-strong); line-height: 1; }
.hero-badge-float .l { font-size: 10.5px; color: var(--text-dim); margin-top: 3px; text-transform: uppercase; letter-spacing: 0.06em; }

.hero [data-anim] { opacity: 0; transform: translateY(20px); animation: rise .8s var(--ease-out) forwards; }
.hero [data-anim="1"]{animation-delay:.05s}.hero [data-anim="2"]{animation-delay:.13s}.hero [data-anim="3"]{animation-delay:.21s}.hero [data-anim="4"]{animation-delay:.29s}.hero [data-anim="5"]{animation-delay:.4s}
@keyframes rise { to { opacity: 1; transform: none; } }

/* ═══════════════ TRUST BAR (normas) ═══════════════ */
.trust { padding: 40px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--surface-1); }
.trust .lbl { text-align: center; font-size: var(--t-xs); color: var(--text-dim); letter-spacing: 0.04em; margin-bottom: 22px; }
.trust-badges { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 12px; }
.norm-badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 11px 18px; border-radius: var(--r-sm);
  border: 1px solid var(--border); background: var(--surface-1); box-shadow: var(--shadow-sm);
}
.norm-badge .mk { width: 30px; height: 30px; border-radius: 7px; display: grid; place-items: center; flex-shrink: 0; font-family: var(--font-display); font-weight: var(--w-semi); font-size: 13px; }
.norm-badge .mk.o { background: var(--orange-soft); color: var(--orange-strong); }
.norm-badge .mk.g { background: var(--green-soft); color: var(--green-ink); }
.norm-badge .tx { line-height: 1.15; }
.norm-badge .tx b { display: block; font-size: var(--t-sm); font-weight: var(--w-semi); color: var(--text); }
.norm-badge .tx span { font-size: 11px; color: var(--text-dim); }

/* ═══════════════ SECTION shells ═══════════════ */
section.block { padding: var(--s-10) 0; position: relative; }
.sec-head { max-width: 700px; margin: 0 auto var(--s-8); text-align: center; }
.sec-head .h2 { margin-top: 14px; }
.sec-head .lead { margin-top: 16px; }
.sec-head.left { text-align: left; margin-left: 0; max-width: none; }

/* ═══════════════ PRODUCTO (dashboard + mobile) ═══════════════ */
.product-grid { display: grid; grid-template-columns: 1.35fr 1fr; gap: 30px; align-items: stretch; }
.panel { border-radius: var(--r-lg); border: 1px solid var(--border); background: var(--surface-1); box-shadow: var(--shadow-md); overflow: hidden; }

/* desktop dashboard */
.dash-bar { display: flex; align-items: center; gap: 8px; padding: 13px 16px; border-bottom: 1px solid var(--border); background: var(--surface-2); }
.dash-dots { display: flex; gap: 6px; } .dash-dots span { width: 10px; height: 10px; border-radius: 50%; background: var(--surface-3); }
.dash-url { margin-left: 10px; font-size: var(--t-xs); color: var(--text-dim); font-family: var(--font-mono); }
.dash-body { padding: 22px; }
.dash-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.dash-title { font-size: var(--t-sm); font-weight: var(--w-semi); }
.dash-badge { font-size: 11px; font-weight: var(--w-bold); padding: 5px 11px; border-radius: var(--r-pill); background: var(--green-soft); color: var(--green-ink); border: 1px solid var(--green-line); }
.dash-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; margin-bottom: 16px; }
.dash-stat { background: var(--surface-2); border: 1px solid var(--border); border-radius: var(--r-sm); padding: 14px; }
.dash-stat .n { font-family: var(--font-display); font-weight: var(--w-semi); font-size: 28px; line-height: 1; letter-spacing: var(--track-tight); }
.dash-stat .n.o { color: var(--orange-strong); } .dash-stat .n.g { color: var(--green-ink); }
.dash-stat .l { font-size: 11px; color: var(--text-dim); margin-top: 4px; }
.dash-rows { border: 1px solid var(--border); border-radius: var(--r-sm); overflow: hidden; }
.dash-row { display: grid; grid-template-columns: 1fr 84px 78px; align-items: center; gap: 12px; padding: 12px 15px; border-bottom: 1px solid var(--border); font-size: var(--t-xs); }
.dash-row:last-child { border-bottom: none; }
.dash-row .doc { color: var(--text-muted); display: flex; align-items: center; gap: 9px; }
.dash-row .doc .f { width: 18px; height: 22px; border-radius: 4px; background: var(--surface-3); flex-shrink: 0; }
.dbar { height: 6px; border-radius: 999px; background: var(--surface-3); overflow: hidden; }
.dbar > i { display: block; height: 100%; border-radius: 999px; background: var(--green); }
.dbar.part > i { background: var(--orange); }
.dtag { justify-self: end; font-size: 10.5px; font-weight: var(--w-bold); padding: 3px 9px; border-radius: var(--r-pill); }
.dtag.ok { background: var(--green-soft); color: var(--green-ink); }
.dtag.wait { background: var(--orange-soft); color: var(--orange-strong); }

/* mobile app (planta) */
.phone-wrap { display: flex; flex-direction: column; }
.phone-cap { padding: 22px 24px 0; }
.phone-cap .h3 { margin-bottom: 8px; }
.phone-cap p { font-size: var(--t-sm); color: var(--text-muted); }
.phone { margin: 20px auto -1px; width: 236px; background: #0e0d0c; border-radius: 32px 32px 0 0; padding: 10px 10px 0; box-shadow: var(--shadow-lg); }
.phone-screen { background: var(--bg); border-radius: 24px 24px 0 0; overflow: hidden; padding: 16px 14px 0; min-height: 300px; }
.ph-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.ph-top .t { font-size: 13px; font-weight: var(--w-semi); }
.ph-top .av { width: 26px; height: 26px; border-radius: 50%; background: var(--orange-soft); }
.ph-task { display: flex; align-items: center; gap: 11px; padding: 13px; border-radius: var(--r-sm); border: 1px solid var(--border); background: var(--surface-1); margin-bottom: 9px; }
.ph-task .box { width: 24px; height: 24px; border-radius: 7px; flex-shrink: 0; display: grid; place-items: center; }
.ph-task .box.done { background: var(--green); } .ph-task .box.done svg { width: 13px; height: 13px; stroke: #fff; stroke-width: 3.5; }
.ph-task .box.todo { border: 2px solid var(--border-strong); }
.ph-task .tt { font-size: 12.5px; font-weight: var(--w-medium); }
.ph-task .ts { font-size: 11px; color: var(--text-dim); }
.ph-cta { margin: 6px 0 16px; text-align: center; background: var(--orange); color: #fff; font-size: 13px; font-weight: var(--w-semi); padding: 13px; border-radius: var(--r-sm); }

.prod-points { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 32px; }
.prod-point { display: inline-flex; align-items: center; gap: 9px; padding: 10px 16px; border-radius: var(--r-pill); border: 1px solid var(--border); background: var(--surface-1); font-size: var(--t-sm); color: var(--text-muted); box-shadow: var(--shadow-sm); }
.prod-point svg { width: 16px; height: 16px; stroke: var(--green); }

/* ═══════════════ PROCESS ═══════════════ */
.steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.step { padding: 24px 20px; }
.step .num { font-family: var(--font-display); font-weight: var(--w-semi); font-size: 15px; width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center; background: var(--green-soft); color: var(--green-ink); border: 1px solid var(--green-line); margin-bottom: 16px; }
.step h4 { font-weight: var(--w-semi); font-size: var(--t-h4); }
.step p { font-size: var(--t-sm); color: var(--text-muted); margin-top: 7px; }
.step .wk { display: inline-block; margin-top: 14px; font-size: 11px; font-weight: var(--w-bold); letter-spacing: 0.06em; text-transform: uppercase; color: var(--accent-ink); }

/* ═══════════════ BENEFICIOS ═══════════════ */
.split { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 56px; align-items: center; }
.benefit { display: grid; grid-template-columns: 46px 1fr; gap: 18px; padding: 20px 0; border-top: 1px solid var(--border); }
.benefit:first-child { border-top: none; }
.benefit .bic { width: 46px; height: 46px; border-radius: var(--r-xs); background: var(--surface-2); border: 1px solid var(--border); display: grid; place-items: center; }
.benefit .bic svg { width: 21px; height: 21px; stroke: var(--green); }
.benefit h4 { font-weight: var(--w-semi); font-size: var(--t-h4); }
.benefit p { font-size: var(--t-sm); color: var(--text-muted); margin-top: 5px; }
.brc-card { padding: 40px; text-align: center; background: var(--green); border: none; color: #fff; overflow: hidden; position: relative; }
.brc-card .seal { width: 150px; height: 150px; margin: 4px auto 22px; border-radius: 50%; border: 2px solid rgba(255,255,255,0.35); display: grid; place-items: center; position: relative; }
.brc-card .seal::before { content:""; position: absolute; inset: 9px; border-radius: 50%; border: 1px dashed rgba(255,255,255,0.3); }
.brc-card .seal .lbl { font-family: var(--font-display); font-weight: var(--w-semi); font-size: 44px; color: #fff; }
.brc-card .h3 { color: #fff; margin-bottom: 10px; }
.brc-card .cap { font-size: var(--t-sm); color: rgba(255,255,255,0.85); max-width: 32ch; margin: 0 auto; }

/* ═══════════════ EQUIPO ═══════════════ */
.team-lead { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 40px; align-items: center; margin-bottom: 20px; }
.team-lead .photo-frame { border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--border); box-shadow: var(--shadow-md); aspect-ratio: 5/4; background: var(--surface-2); }
.team-lead .tag-expert { display: inline-flex; align-items: center; gap: 8px; font-size: var(--t-xs); font-weight: var(--w-bold); letter-spacing: 0.08em; text-transform: uppercase; color: var(--green-ink); background: var(--green-soft); border: 1px solid var(--green-line); padding: 6px 14px; border-radius: var(--r-pill); }
.team-lead .name { font-family: var(--font-display); font-weight: var(--w-medium); font-size: clamp(28px,3vw,40px); letter-spacing: var(--track-tight); margin: 16px 0 4px; }
.team-lead .role { font-size: var(--t-sm); font-weight: var(--w-semi); color: var(--accent-ink); text-transform: uppercase; letter-spacing: 0.06em; }
.team-lead .bio { font-size: var(--t-lead); color: var(--text-muted); margin-top: 16px; }
.team { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 40px; }
.member { overflow: hidden; padding: 0; transition: border-color var(--dur), transform var(--dur), box-shadow var(--dur); }
.member:hover { border-color: var(--border-strong); transform: translateY(-4px); box-shadow: var(--shadow-md); }
.member .m-photo { aspect-ratio: 1/1; background: var(--surface-2); border-bottom: 1px solid var(--border); }
.member .info { padding: 20px 22px 24px; }
.member .role { font-size: 11px; font-weight: var(--w-bold); letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent-ink); }
.member .name { font-family: var(--font-display); font-weight: var(--w-medium); font-size: 22px; margin-top: 5px; letter-spacing: var(--track-tight); }
.member .bio { font-size: var(--t-sm); color: var(--text-muted); margin-top: 9px; }

/* ═══════════════ TESTIMONIOS / CASOS ═══════════════ */
.cases { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.tcard { padding: 30px 28px; display: flex; flex-direction: column; gap: 18px; }
.tcard .stars { display: flex; gap: 3px; color: var(--orange); }
.tcard .stars svg { width: 16px; height: 16px; fill: var(--orange); }
.tcard .quote { font-family: var(--font-display); font-weight: var(--w-medium); font-size: 19px; line-height: 1.5; color: var(--text); letter-spacing: var(--track-tight); flex: 1; }
.tcard .who { display: flex; align-items: center; gap: 12px; padding-top: 16px; border-top: 1px solid var(--border); }
.tcard .who .ph { width: 44px; height: 44px; border-radius: 50%; overflow: hidden; background: var(--surface-3); flex-shrink: 0; }
.tcard .who .nm { font-size: var(--t-sm); font-weight: var(--w-semi); }
.tcard .who .rl { font-size: var(--t-xs); color: var(--text-dim); }
.case-metrics { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-top: 40px; }
.metric { text-align: center; padding: 30px 20px; }
.metric .n { font-family: var(--font-display); font-weight: var(--w-medium); font-size: clamp(38px,4vw,52px); line-height: 1; color: var(--green-ink); letter-spacing: var(--track-tight); }
.metric .n.o { color: var(--orange-strong); }
.metric .l { font-size: var(--t-sm); color: var(--text-muted); margin-top: 10px; }

/* ═══════════════ FAQ ═══════════════ */
.faq { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.qa { border: 1px solid var(--border); border-radius: var(--r-md); background: var(--surface-1); overflow: hidden; box-shadow: var(--shadow-sm); transition: border-color var(--dur); }
.qa[open] { border-color: var(--border-strong); }
.qa summary { list-style: none; cursor: pointer; padding: 20px 24px; display: flex; align-items: center; justify-content: space-between; gap: 20px; font-weight: var(--w-semi); font-size: var(--t-h4); color: var(--text); }
.qa summary::-webkit-details-marker { display: none; }
.qa summary .plus { width: 26px; height: 26px; border-radius: 50%; border: 1px solid var(--border-strong); display: grid; place-items: center; flex-shrink: 0; position: relative; transition: transform var(--dur), background var(--dur); }
.qa summary .plus::before, .qa summary .plus::after { content:""; position: absolute; background: var(--text-muted); }
.qa summary .plus::before { width: 11px; height: 2px; } .qa summary .plus::after { width: 2px; height: 11px; transition: transform var(--dur); }
.qa[open] summary .plus { transform: rotate(180deg); background: var(--orange-soft); border-color: var(--orange-line); }
.qa[open] summary .plus::after { transform: scaleY(0); }
.qa .ans { padding: 0 24px 22px; font-size: var(--t-sm); color: var(--text-muted); }

/* ═══════════════ CTA ═══════════════ */
.cta-card { position: relative; padding: 72px 56px; border-radius: var(--r-xl); text-align: center; overflow: hidden; background: var(--green-strong); color: #fff; }
.cta-card .glow { position: absolute; top: -40%; right: -10%; width: 500px; height: 460px; background: radial-gradient(circle, rgba(234,98,9,0.25) 0%, transparent 62%); pointer-events: none; }
.cta-card .inner { position: relative; z-index: 1; }
.cta-card .h1 { color: #fff; max-width: 18ch; margin: 14px auto 0; }
.cta-card .lead { color: rgba(255,255,255,0.85); max-width: 50ch; margin: 16px auto 28px; }
.cta-card .eyebrow { color: #fff; }
.cta-card .eyebrow::before { background: rgba(255,255,255,0.8); }
.cta-fine { margin-top: 16px; font-size: var(--t-xs); color: rgba(255,255,255,0.7); }

/* ═══════════════ FOOTER ═══════════════ */
footer { border-top: 1px solid var(--border); padding: 64px 0 34px; background: var(--surface-1); }
.foot-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; }
.foot-brand img { height: 34px; margin-bottom: 16px; }
.foot-brand p { font-size: var(--t-sm); color: var(--text-dim); max-width: 32ch; }
.foot-col h5 { font-size: var(--t-xs); font-weight: var(--w-bold); letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-faint); margin-bottom: 15px; }
.foot-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.foot-col a { color: var(--text-muted); font-size: var(--t-sm); }
.foot-col a:hover { color: var(--accent-ink); }
.foot-bottom { display: flex; align-items: center; justify-content: space-between; margin-top: 48px; padding-top: 26px; border-top: 1px solid var(--border); font-size: var(--t-xs); color: var(--text-faint); }
.foot-bottom .norms { font-weight: var(--w-semi); letter-spacing: 0.04em; color: var(--text-dim); }

/* ── reveal ── */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease-out), transform .7s var(--ease-out); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1{transition-delay:.08s}.reveal.d2{transition-delay:.16s}.reveal.d3{transition-delay:.24s}.reveal.d4{transition-delay:.32s}

/* image-slot fills its frame */
image-slot { width: 100%; height: 100%; display: block; }

/* ═══════════════ RESPONSIVE ═══════════════ */
@media (max-width: 1000px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { max-width: 460px; }
  .product-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: repeat(2,1fr); }
  .split { grid-template-columns: 1fr; gap: 36px; }
  .team-lead { grid-template-columns: 1fr; }
  .team, .cases, .case-metrics { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
}
@media (max-width: 720px) {
  .nav-menu { display: none; }
  .pill-tail { display: none; }
  .hero { padding: 120px 0 50px; }
  section.block { padding: var(--s-9) 0; }
  .steps { grid-template-columns: 1fr; }
  .cta-card { padding: 52px 26px; }
  .foot-grid { grid-template-columns: 1fr; }
  .foot-bottom { flex-direction: column; gap: 10px; }
  .hero-float { left: 0; width: 260px; }
  .team { grid-template-columns: 1fr; }
}
