/* ============================================================
   RiseUp Consulting — Shared Styles (v2)
   Palette:
   --ink:        #060a12  (near-black navy, page base)
   --panel:      #0d1626  (raised panel)
   --panel-2:    #111d33  (raised panel, lighter)
   --line:       rgba(255,255,255,0.08)
   --teal:       #1e7a5f
   --teal-light: #3fae84
   --blue:       #3aa0e0
   --blue-light: #8fd4ff
   --ink-text:   #e8edf4
   --muted:      #94a6c0
   Type:
   --display: "Fraunces", serif
   --body:    "Inter", sans-serif
   --mono:    "IBM Plex Mono", monospace
   ============================================================ */

:root {
  --ink: #060a12;
  --panel: #0d1626;
  --panel-2: #111d33;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.14);
  --teal: #1e7a5f;
  --teal-light: #3fae84;
  --blue: #3aa0e0;
  --blue-deep: #1c5fa8;
  --blue-light: #8fd4ff;
  --ink-text: #e8edf4;
  --muted: #94a6c0;
  --muted-2: #5f7390;

  --display: "Fraunces", Georgia, serif;
  --body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: "IBM Plex Mono", "SF Mono", monospace;

  --rail-w: 84px;
  --content-max: 1080px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--ink);
  color: var(--ink-text);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* Ambient background glows */
body::before {
  content: "";
  position: fixed;
  top: -20%;
  right: -12%;
  width: 56vw;
  height: 56vw;
  background: radial-gradient(circle, rgba(58, 160, 224, 0.14) 0%, rgba(58, 160, 224, 0) 65%);
  filter: blur(40px);
  pointer-events: none;
  z-index: 0;
}

body::after {
  content: "";
  position: fixed;
  bottom: -25%;
  left: -16%;
  width: 50vw;
  height: 50vw;
  background: radial-gradient(circle, rgba(30, 122, 95, 0.12) 0%, rgba(30, 122, 95, 0) 65%);
  filter: blur(40px);
  pointer-events: none;
  z-index: 0;
}

/* ============================================================
   LEFT RAIL (desktop persistent nav)
   ============================================================ */
.rail {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: var(--rail-w);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0 20px;
  border-right: 1px solid var(--line);
  background: rgba(6, 10, 18, 0.7);
  backdrop-filter: blur(14px);
  z-index: 200;
}

.rail-top { display: flex; flex-direction: column; align-items: center; gap: 18px; }

.rail-logo img { width: 38px; height: auto; }

.rail-menu-btn {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.03);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.rail-menu-btn:hover { border-color: var(--blue-light); background: rgba(143, 212, 255, 0.06); }

.rail-menu-btn span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink-text);
  border-radius: 1px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.rail-menu-btn.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.rail-menu-btn.open span:nth-child(2) { opacity: 0; }
.rail-menu-btn.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.rail-bottom { display: flex; flex-direction: column; align-items: center; gap: 14px; }

.rail-lang {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  padding: 8px 6px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.rail-lang:hover { border-color: var(--blue-light); color: var(--ink-text); }

.rail-lang .lang-pipe { color: var(--muted-2); }

.rail-lang[data-current="en"] .lang-en,
.rail-lang[data-current="es"] .lang-es {
  color: var(--blue-light);
  font-weight: 700;
}

.rail-vertical-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted-2);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  white-space: nowrap;
}

/* ============================================================
   NAV DRAWER (slides from left, over the rail)
   ============================================================ */
.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(2, 4, 9, 0.6);
  backdrop-filter: blur(2px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 250;
}

.drawer-overlay.open { opacity: 1; visibility: visible; }

.drawer {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: min(380px, 86vw);
  background: linear-gradient(165deg, var(--panel-2), var(--panel));
  border-right: 1px solid var(--line-strong);
  z-index: 260;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(.22,.68,.36,1);
  display: flex;
  flex-direction: column;
  padding: 28px 28px 28px;
  overflow-y: auto;
}

.drawer.open { transform: translateX(0); }

.drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}

.drawer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.drawer-brand img { height: 36px; }

.drawer-brand-text {
  font-family: var(--display);
  font-size: 19px;
  font-weight: 600;
}

.drawer-brand-text .accent { color: var(--blue-light); }

.drawer-close {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.03);
  color: var(--ink-text);
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.drawer-nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 32px;
}

.drawer-nav a {
  font-family: var(--display);
  font-size: 26px;
  font-weight: 500;
  padding: 12px 0;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: baseline;
  gap: 14px;
  transition: color 0.2s ease, padding-left 0.2s ease;
}

.drawer-nav a .idx {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--muted-2);
}

.drawer-nav a:hover,
.drawer-nav a.active {
  color: var(--ink-text);
  padding-left: 8px;
}

.drawer-nav a.active .idx { color: var(--blue-light); }

.drawer-cta {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.drawer-meta {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--muted-2);
  line-height: 1.8;
}

/* ============================================================
   MOBILE TOP BAR
   ============================================================ */
.mobile-bar {
  display: none;
  position: sticky;
  top: 0;
  z-index: 150;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  background: rgba(6, 10, 18, 0.85);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.mobile-bar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mobile-bar-brand img { height: 32px; }

.mobile-bar-brand-text {
  font-family: var(--display);
  font-size: 17px;
  font-weight: 600;
}

.mobile-bar-brand-text .accent { color: var(--blue-light); }

.mobile-bar-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mobile-lang {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  padding: 7px 10px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted);
  cursor: pointer;
}

.mobile-lang[data-current="en"] .lang-en,
.mobile-lang[data-current="es"] .lang-es {
  color: var(--blue-light);
  font-weight: 700;
}

.mobile-lang .lang-pipe { color: var(--muted-2); }

.mobile-menu-btn {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.03);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  cursor: pointer;
}

.mobile-menu-btn span {
  display: block;
  width: 16px;
  height: 2px;
  background: var(--ink-text);
  border-radius: 1px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.mobile-menu-btn.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.mobile-menu-btn.open span:nth-child(2) { opacity: 0; }
.mobile-menu-btn.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ============================================================
   MAIN LAYOUT SHIFT
   ============================================================ */
.page {
  margin-left: var(--rail-w);
  position: relative;
  z-index: 1;
}

.wrap {
  max-width: var(--content-max);
  padding: 0 56px;
  margin: 0 auto;
}

/* ============================================================
   EYEBROW / labels
   ============================================================ */
.eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blue-light);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: linear-gradient(90deg, var(--blue-light), transparent);
}

.eyebrow.no-rule::before { display: none; }

/* ============================================================
   HERO — asymmetric editorial layout
   ============================================================ */
.hero {
  padding: 64px 0 60px;
  border-bottom: 1px solid var(--line);
}

.hero-top {
  display: grid;
  grid-template-columns: 2.2fr 1fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 48px;
}

.hero-kicker {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.1em;
  color: var(--muted-2);
  text-align: right;
  border-left: 1px solid var(--line-strong);
  padding-left: 20px;
}

.hero-logo {
  width: 140px;
  height: auto;
  margin: 0 0 24px auto;
  opacity: 0.92;
}

.hero h1 {
  font-family: var(--display);
  font-size: clamp(40px, 6.4vw, 76px);
  line-height: 1.04;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 18px 0 0;
}

.hero h1 .grad {
  background: linear-gradient(120deg, var(--teal-light) 10%, var(--blue) 50%, var(--blue-light) 90%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.hero-lead {
  font-size: 19px;
  color: var(--muted);
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
}

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 28px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 14.5px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
  border: 1px solid transparent;
  font-family: var(--body);
}

.btn-primary {
  background: linear-gradient(135deg, var(--teal-light), var(--blue));
  color: #04101c;
  box-shadow: 0 10px 30px -12px rgba(58, 160, 224, 0.6);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px -10px rgba(58, 160, 224, 0.75);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.03);
  border-color: var(--line-strong);
  color: var(--ink-text);
}

.btn-ghost:hover {
  border-color: var(--blue-light);
  background: rgba(143, 212, 255, 0.06);
}

/* ============================================================
   MARQUEE strip
   ============================================================ */
.marquee-section {
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(17, 29, 51, 0.4), rgba(13, 22, 38, 0.15));
  padding: 18px 0;
  overflow: hidden;
}

.marquee {
  display: flex;
  white-space: nowrap;
  width: max-content;
  animation: marquee-scroll 40s linear infinite;
}

.marquee:hover { animation-play-state: paused; }

.marquee-track {
  display: flex;
  align-items: center;
  gap: 56px;
  padding-right: 56px;
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--mono);
  font-size: 12.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.marquee-item .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal-light), var(--blue-light));
  flex-shrink: 0;
}

@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============================================================
   SECTIONS — numbered editorial blocks
   ============================================================ */
section { position: relative; z-index: 1; }

.section {
  padding: 80px 0;
  border-bottom: 1px solid var(--line);
}

.section:last-of-type { border-bottom: none; }

.section-head {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 32px;
  margin-bottom: 48px;
}

.section-head .sec-num {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--muted-2);
  letter-spacing: 0.1em;
  padding-top: 6px;
}

.section-head h2 {
  font-family: var(--display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 600;
  line-height: 1.18;
}

.section-head p {
  color: var(--muted);
  font-size: 16.5px;
  margin-top: 14px;
  max-width: 580px;
}

/* ============================================================
   OFFSET LIST — replaces symmetric card grids
   ============================================================ */
.offset-list {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 32px;
}

.offset-row {
  display: contents;
}

.offset-row .row-num {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--muted-2);
  letter-spacing: 0.1em;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.offset-row .row-body {
  padding: 26px 0;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 32px;
  align-items: start;
  transition: padding-left 0.3s ease;
}

.offset-row:hover .row-body { padding-left: 12px; }
.offset-row:hover .row-num { color: var(--blue-light); }

.offset-row .row-body h3 {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 600;
}

.offset-row .row-body p {
  color: var(--muted);
  font-size: 15px;
}

.offset-row:last-child .row-body,
.offset-row:last-child .row-num { border-bottom: 1px solid var(--line); }

/* Tag pills inside offset rows */
.tag-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.tag {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  padding: 5px 12px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.02);
}

/* ============================================================
   PULL QUOTE / FEATURE BLOCK
   ============================================================ */
.pull-block {
  position: relative;
  border-radius: 4px;
  background: linear-gradient(155deg, rgba(63, 174, 132, 0.10), rgba(58, 160, 224, 0.08) 55%, var(--panel) 100%);
  border: 1px solid var(--line-strong);
  padding: 48px;
  overflow: hidden;
}

.pull-block::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -20%;
  width: 60%;
  height: 80%;
  background: radial-gradient(circle, rgba(143, 212, 255, 0.16), transparent 70%);
  filter: blur(40px);
  pointer-events: none;
}

.pull-block .pull-mark {
  font-family: var(--display);
  font-size: 64px;
  line-height: 1;
  color: var(--blue-light);
  opacity: 0.4;
  margin-bottom: 8px;
}

.pull-block p.pull-text {
  font-family: var(--display);
  font-size: clamp(22px, 3vw, 32px);
  line-height: 1.4;
  font-weight: 500;
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.pull-block .pull-cite {
  margin-top: 24px;
  font-family: var(--mono);
  font-size: 13px;
  color: var(--muted-2);
  position: relative;
  z-index: 1;
}

/* ============================================================
   PROCESS STEPS (How It Works) — vertical timeline style
   ============================================================ */
.timeline {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 32px;
}

.timeline-row {
  display: contents;
}

.timeline-marker {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.timeline-marker .dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal-light), var(--blue-light));
  flex-shrink: 0;
  margin-top: 6px;
}

.timeline-marker .line {
  flex: 1;
  width: 1px;
  background: var(--line);
  min-height: 40px;
}

.timeline-row:last-child .timeline-marker .line { display: none; }

.timeline-content {
  padding-bottom: 56px;
}

.timeline-content .t-eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue-light);
  margin-bottom: 10px;
}

.timeline-content h3 {
  font-family: var(--display);
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 12px;
}

.timeline-content p {
  color: var(--muted);
  font-size: 15.5px;
  max-width: 640px;
  margin-bottom: 14px;
}

.timeline-content .checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 14px;
}

.timeline-content .checklist li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 14.5px;
  color: var(--ink-text);
}

.timeline-content .checklist li .mark {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal-light), var(--blue));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: #04101c;
  margin-top: 2px;
}

/* ============================================================
   STAT STRIP
   ============================================================ */
.stat-strip {
  display: grid;
  grid-template-columns: 100px repeat(4, 1fr);
  gap: 32px;
  align-items: end;
}

.stat-strip .stat {
  border-left: 1px solid var(--line);
  padding-left: 20px;
}

.stat-strip .stat .num {
  font-family: var(--display);
  font-size: 38px;
  font-weight: 600;
  background: linear-gradient(120deg, var(--teal-light), var(--blue-light));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.stat-strip .stat .label {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-top: 8px;
}

/* ============================================================
   COMPARISON TABLE
   ============================================================ */
.table-wrap {
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
  background: var(--panel);
}

table { width: 100%; border-collapse: collapse; font-size: 14.5px; }

th, td {
  text-align: left;
  padding: 16px 22px;
  border-bottom: 1px solid var(--line);
}

th {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted-2);
  background: rgba(17, 29, 51, 0.5);
}

tr:last-child td { border-bottom: none; }

td.highlight { color: var(--blue-light); font-weight: 600; }

/* ============================================================
   TESTIMONIAL STACK
   ============================================================ */
.quote-stack {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.quote-row {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 32px;
  padding: 28px 0;
  border-top: 1px solid var(--line);
}

.quote-row:last-child { border-bottom: 1px solid var(--line); }

.quote-row .avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal-light), var(--blue));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-weight: 600;
  color: #04101c;
  font-size: 15px;
}

.quote-row .quote-content p.quote { font-size: 16.5px; margin-bottom: 12px; }
.quote-row .quote-content .who { font-family: var(--mono); font-size: 12px; color: var(--muted-2); letter-spacing: 0.06em; }

/* ============================================================
   FOUNDER BLOCK
   ============================================================ */
.founder-block {
  display: grid;
  grid-template-columns: 100px auto 1fr;
  gap: 32px;
  align-items: center;
}

.founder-avatar {
  width: 88px;
  height: 88px;
  border-radius: 4px;
  background: linear-gradient(135deg, var(--teal-light), var(--blue));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-size: 28px;
  font-weight: 600;
  color: #04101c;
}

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
  position: relative;
  border-radius: 4px;
  background: linear-gradient(135deg, rgba(63, 174, 132, 0.14), rgba(58, 160, 224, 0.14));
  border: 1px solid rgba(143, 212, 255, 0.22);
  padding: 56px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 100px 1fr auto;
  gap: 40px;
  align-items: center;
}

.cta-band::before {
  content: "";
  position: absolute;
  top: -50%;
  left: 60%;
  width: 60%;
  height: 140%;
  background: radial-gradient(ellipse at center, rgba(143, 212, 255, 0.16), transparent 70%);
  filter: blur(40px);
  pointer-events: none;
}

.cta-band-text {
  position: relative;
  z-index: 1;
}

.cta-band h2 {
  font-family: var(--display);
  font-size: clamp(26px, 3.6vw, 38px);
  font-weight: 600;
  position: relative;
  z-index: 1;
  margin-top: 10px;
}

.cta-band p {
  color: var(--muted);
  margin-top: 12px;
  position: relative;
  z-index: 1;
}

.cta-band .cta-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  z-index: 1;
  min-width: 220px;
}

.cta-band .cta-actions .btn { justify-content: center; white-space: nowrap; }

/* ============================================================
   FORM (Contact)
   ============================================================ */
.form-block {
  display: grid;
  grid-template-columns: 100px 1fr 1fr;
  gap: 32px;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }
.form-row.full { grid-template-columns: 1fr; }

.field label {
  display: block;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-bottom: 8px;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line-strong);
  border-radius: 4px;
  padding: 12px 14px;
  color: var(--ink-text);
  font-family: var(--body);
  font-size: 14.5px;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--blue-light);
  background: rgba(143, 212, 255, 0.05);
}

.field textarea { resize: vertical; min-height: 120px; }

.form-status {
  font-family: var(--mono);
  font-size: 13px;
  margin-top: 14px;
  display: none;
}

.form-status.show { display: block; }
.form-status.success { color: var(--teal-light); }
.form-status.error { color: #e08f8f; }

/* ============================================================
   INFO ROWS (contact details)
   ============================================================ */
.info-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 0;
  border-top: 1px solid var(--line);
}

.info-row:last-child { border-bottom: 1px solid var(--line); }

.info-row .icon {
  font-size: 18px;
  width: 36px;
  height: 36px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(63, 174, 132, 0.16), rgba(58, 160, 224, 0.16));
  border: 1px solid var(--line-strong);
  flex-shrink: 0;
}

.info-row h4 { font-size: 14.5px; margin-bottom: 4px; }
.info-row p { color: var(--muted); font-size: 14px; margin: 0; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-item {
  border-top: 1px solid var(--line);
}

.faq-item:last-child { border-bottom: 1px solid var(--line); }

.faq-item summary {
  padding: 22px 0;
  cursor: pointer;
  font-weight: 600;
  font-size: 15.5px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: "+";
  font-family: var(--mono);
  font-size: 20px;
  color: var(--blue-light);
  transition: transform 0.2s ease;
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-item[open] summary::after { transform: rotate(45deg); }

.faq-item .faq-body {
  padding: 0 0 22px;
  color: var(--muted);
  font-size: 14.5px;
  max-width: 680px;
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  padding: 56px 0 40px;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 100px 1.4fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 40px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.footer-brand img { height: 34px; }

.footer-brand-text {
  font-family: var(--display);
  font-size: 18px;
  font-weight: 600;
}

.footer-col h4 {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-bottom: 16px;
}

.footer-col a,
.footer-col p {
  display: block;
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 10px;
  transition: color 0.2s ease;
}

.footer-col a:hover { color: var(--blue-light); }

.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--muted-2);
  flex-wrap: wrap;
  gap: 12px;
  padding-left: 132px;
}

.footer-bottom .legal-links {
  display: flex;
  gap: 24px;
}

.footer-bottom .legal-links a:hover { color: var(--blue-light); }

/* ============================================================
   LEGAL PAGES (Privacy / Terms)
   ============================================================ */
.legal-body {
  max-width: 720px;
}

.legal-body h2 {
  font-family: var(--display);
  font-size: 24px;
  font-weight: 600;
  margin: 36px 0 14px;
}

.legal-body h2:first-child { margin-top: 0; }

.legal-body p,
.legal-body li {
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 12px;
}

.legal-body ul {
  padding-left: 22px;
  margin-bottom: 12px;
}

.legal-body .updated {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-bottom: 32px;
}

/* ============================================================
   TRANSLATION — language visibility toggling
   ============================================================ */
[lang="es"] { display: none; }
html[data-lang="es"] [lang="es"] { display: revert; }
html[data-lang="es"] [lang="en"] { display: none; }

span[lang="es"] { display: none; }
html[data-lang="es"] span[lang="es"] { display: inline; }
html[data-lang="es"] span[lang="en"] { display: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .wrap { padding: 0 40px; }
  .hero-top { grid-template-columns: 1fr; gap: 16px; }
  .hero-kicker { text-align: left; border-left: none; padding-left: 0; }
  .hero-logo { width: 100px; margin: 0 0 16px 0; }
  .section-head,
  .offset-list,
  .timeline,
  .stat-strip,
  .quote-stack .quote-row,
  .founder-block,
  .form-block {
    grid-template-columns: 1fr;
  }
  .cta-band {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .cta-band .cta-actions { min-width: 0; }
  .section-head .sec-num,
  .offset-row .row-num,
  .timeline-marker,
  .stat-strip .stat:first-child,
  .quote-row .avatar {
    display: none;
  }
  .offset-row .row-body { grid-template-columns: 1fr; gap: 8px; padding-left: 0 !important; }
  .stat-strip { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .stat-strip .stat { border-left: none; border-top: 1px solid var(--line); padding: 16px 0 0; }
  .cta-band { padding: 36px; gap: 20px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px 24px; }
  .footer-bottom { padding-left: 0; }
}

@media (max-width: 760px) {
  :root { --rail-w: 0px; }
  .rail { display: none; }
  .page { margin-left: 0; }
  .mobile-bar { display: flex; }
  .wrap { padding: 0 22px; }
  .hero { padding: 36px 0 40px; }
  .hero-bottom { grid-template-columns: 1fr; gap: 28px; }
  .hero-actions { justify-content: flex-start; }
  .hero-logo { display: none; }
  .section { padding: 56px 0; }
  .marquee-item { font-size: 11px; }
  .stat-strip { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  table { font-size: 13px; }
  th, td { padding: 12px 14px; }
}
