/* ============================================================
   ovnia — Sitio web
   CSS propio, anclado a los tokens de colors_and_type.css
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; }
body { margin: 0; background: var(--paper); overflow-x: hidden; }
img { display: block; max-width: 100%; }

::selection { background: var(--beam); color: var(--ink); }

/* ---- Layout primitives ---- */
.wrap { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 40px; }
.wrap-narrow { width: 100%; max-width: 920px; margin: 0 auto; padding: 0 40px; }
.section { padding: 120px 0; }
.section.tight { padding: 80px 0; }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; }
.eyebrow.dot::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--emerald);
}
.eyebrow.beam.dot::before { background: var(--beam); box-shadow: 0 0 0 4px rgba(199,255,89,.16); }

em.hl { font-style: normal; color: var(--emerald-600); }
.on-dark em.hl { color: var(--beam); }

.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }

/* ============================================================
   Nav
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 40px;
  transition: background var(--dur-3) var(--ease-out),
              border-color var(--dur-3) var(--ease-out),
              backdrop-filter var(--dur-3) var(--ease-out);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(8,37,26,.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: rgba(255,254,250,.08);
}
/* On light pages the nav sits over paper after scroll */
.nav.light.scrolled {
  background: rgba(244,241,232,.78);
  border-bottom-color: var(--border);
}
.nav-brand { display: flex; align-items: center; gap: 11px; text-decoration: none; }
.nav-brand img { height: 30px; width: auto; }
.nav-brand .wm {
  font-family: var(--font-display); font-weight: 600; font-size: 21px;
  letter-spacing: -0.03em; color: var(--paper);
}
.nav.light .nav-brand .wm { color: var(--ink); }
.nav.light.scrolled .nav-brand .wm { color: var(--ink); }
.nav-brand .dot { color: var(--beam); }
.nav-links { display: flex; gap: 36px; align-items: center; }
.nav-links a {
  font-family: var(--font-body); font-size: 14.5px; font-weight: 450;
  color: rgba(255,254,250,.82); text-decoration: none;
  transition: color var(--dur-2) var(--ease-out);
}
.nav.light .nav-links a { color: var(--ink-soft); }
.nav-links a:hover { color: var(--beam); }
.nav.light .nav-links a:hover { color: var(--emerald-600); }
.nav-links a.active { color: var(--beam); }
.nav.light .nav-links a.active { color: var(--emerald-600); }
.nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--beam); color: var(--ink);
  font-family: var(--font-body); font-weight: 500; font-size: 13.5px;
  padding: 11px 20px; border-radius: var(--r-pill); text-decoration: none;
  transition: filter var(--dur-2) var(--ease-out), transform var(--dur-2) var(--ease-out);
}
.nav-cta:hover { filter: brightness(1.06); }
.nav-cta .arr { font-family: var(--font-mono); }
.nav-toggle { display: none; }

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-body); font-weight: 500; font-size: 15px;
  padding: 15px 26px; border-radius: var(--r-pill); line-height: 1;
  border: 1px solid transparent; cursor: pointer; text-decoration: none;
  transition: filter var(--dur-2) var(--ease-out), background var(--dur-2) var(--ease-out),
              border-color var(--dur-2) var(--ease-out), color var(--dur-2) var(--ease-out);
}
.btn .arr { font-family: var(--font-mono); transition: transform var(--dur-2) var(--ease-out); }
.btn:hover .arr { transform: translateX(4px); }
.btn-beam { background: var(--beam); color: var(--ink); }
.btn-beam:hover { filter: brightness(1.06); }
.btn-ink { background: var(--ink); color: var(--paper); }
.btn-ink:hover { background: var(--forest-700); color: var(--paper); }
.btn-ghost-dark { background: transparent; color: var(--paper); border-color: rgba(255,254,250,.28); }
.btn-ghost-dark:hover { border-color: var(--paper); background: rgba(255,254,250,.05); }
.btn-ghost-light { background: transparent; color: var(--ink); border-color: var(--border-strong); }
.btn-ghost-light:hover { border-color: var(--ink); }
.btn-lg { padding: 19px 34px; font-size: 16.5px; }

/* ============================================================
   Hero (home) — Deep space + 3D canvas
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--forest-900);
  color: var(--paper);
  display: flex; align-items: center;
  overflow: hidden;
}
#hero-canvas {
  position: absolute; inset: 0; width: 100%; height: 100%;
  display: block; z-index: 0;
}
.hero-veil {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    radial-gradient(120% 90% at 80% 0%, rgba(0,184,92,.14), transparent 55%),
    radial-gradient(90% 80% at 0% 100%, rgba(199,255,89,.06), transparent 55%),
    linear-gradient(180deg, rgba(8,37,26,.30) 0%, transparent 28%, transparent 62%, rgba(8,37,26,.85) 100%);
}
.hero-inner {
  position: relative; z-index: 2;
  width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 40px;
}
.hero-eyebrow { color: var(--beam); margin-bottom: 26px; }
.hero h1 {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(2.9rem, 7vw, 5.25rem);
  letter-spacing: -0.035em; line-height: 1.0;
  margin: 0 0 30px; max-width: 17ch; color: var(--paper);
  text-wrap: balance;
}
.hero h1 em { font-style: normal; color: var(--beam); }
.hero .lead {
  font-size: clamp(1.05rem, 1.6vw, 1.28rem); line-height: 1.55;
  color: rgba(255,254,250,.74); max-width: 56ch; margin: 0 0 42px;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-scroll {
  position: absolute; right: 40px; bottom: 30px;
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 10px;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .14em;
  text-transform: uppercase; color: rgba(255,254,250,.5);
}
.hero-scroll .line { width: 1px; height: 42px; background: linear-gradient(var(--beam), transparent); animation: scrolldrop 2.2s var(--ease-in-out) infinite; }
@keyframes scrolldrop { 0% { transform: scaleY(0); transform-origin: top; } 50% { transform: scaleY(1); transform-origin: top; } 51% { transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }

/* ============================================================
   Marquee / trust strip
   ============================================================ */
.strip {
  background: var(--ink); color: rgba(255,254,250,.7);
  padding: 22px 0; overflow: hidden;
  border-bottom: 1px solid rgba(255,254,250,.06);
}
.strip-track { display: flex; gap: 56px; white-space: nowrap; width: max-content; animation: marquee 32s linear infinite; }
.strip-track span { font-family: var(--font-mono); font-size: 13px; letter-spacing: .06em; display: inline-flex; align-items: center; gap: 56px; }
.strip-track span::after { content: "◦"; color: var(--beam); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ============================================================
   Section heads
   ============================================================ */
.shead { max-width: 720px; margin-bottom: 64px; }
.shead.center { margin-left: auto; margin-right: auto; text-align: center; }
.shead .eyebrow { color: var(--emerald-600); margin-bottom: 18px; }
.shead h2 {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(2rem, 4.2vw, 3.1rem); letter-spacing: -0.03em;
  line-height: 1.04; color: var(--ink); margin: 0 0 18px; text-wrap: balance;
}
.shead p { font-size: 18px; color: var(--sage); line-height: 1.6; max-width: 58ch; }
.shead.center p { margin-left: auto; margin-right: auto; }

/* ============================================================
   Services grid (home)
   ============================================================ */
.svc-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.svc-card {
  position: relative; display: flex; flex-direction: column; gap: 16px;
  background: var(--bone); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 38px; text-decoration: none; color: inherit;
  overflow: hidden;
  transition: transform var(--dur-3) var(--ease-out), box-shadow var(--dur-3) var(--ease-out), border-color var(--dur-3) var(--ease-out);
  box-shadow: var(--shadow-1);
}
.svc-card::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 3px; width: 0;
  background: var(--beam); transition: width var(--dur-4) var(--ease-out);
}
.svc-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-2); border-color: var(--border-strong); }
.svc-card:hover::after { width: 100%; }
.svc-ic {
  width: 52px; height: 52px; border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  background: var(--forest-900); color: var(--beam);
}
.svc-ic svg { width: 26px; height: 26px; }
.svc-card h3 { font-family: var(--font-display); font-weight: 600; font-size: 23px; letter-spacing: -0.015em; line-height: 1.15; color: var(--ink); margin: 6px 0 0; }
.svc-card p { color: var(--sage); font-size: 15px; line-height: 1.6; flex: 1; margin: 0; }
.svc-meta { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-mono); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--ink); }
.svc-meta .arr { font-family: var(--font-mono); transition: transform var(--dur-2) var(--ease-out); }
.svc-card:hover .svc-meta .arr { transform: translateX(5px); }
.svc-card .tag-spec { position: absolute; top: 28px; right: 28px; font-family: var(--font-mono); font-size: 10px; letter-spacing: .1em; text-transform: uppercase; color: var(--emerald-600); border: 1px solid var(--border-strong); border-radius: var(--r-pill); padding: 4px 10px; }

/* ============================================================
   Map band — España + Argentina (3D globe)
   ============================================================ */
.map-band { position: relative; background: var(--forest-900); color: var(--paper); overflow: hidden; }
.map-band .grain { position: absolute; inset: 0; opacity: .4; pointer-events: none;
  background-image: radial-gradient(rgba(0,184,92,.10), transparent 60%);
  background-size: 100% 100%; background-position: center; }
.map-layout {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
.map-copy .eyebrow { color: var(--beam); margin-bottom: 20px; }
.map-copy h2 { font-family: var(--font-display); font-weight: 600; font-size: clamp(2rem, 3.8vw, 2.9rem); letter-spacing: -0.03em; line-height: 1.05; color: var(--paper); margin: 0 0 22px; max-width: 16ch; }
.map-copy h2 em { font-style: normal; color: var(--beam); }
.map-copy .lead { font-size: 17.5px; line-height: 1.6; color: rgba(255,254,250,.72); max-width: 46ch; margin: 0 0 36px; }
.map-locs { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.map-loc { border-top: 1px solid rgba(255,254,250,.16); padding-top: 20px; }
.map-loc .lvl { font-family: var(--font-mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--beam); }
.map-loc h3 { font-family: var(--font-display); font-weight: 600; font-size: 30px; letter-spacing: -0.025em; line-height: 1; color: var(--paper); margin: 10px 0 8px; }
.map-loc p { color: rgba(255,254,250,.6); font-size: 14px; line-height: 1.55; margin: 0; }
.map-loc .cities { font-family: var(--font-mono); font-size: 11.5px; letter-spacing: .04em; color: rgba(255,254,250,.5); margin-top: 12px; }

.globe-stage {
  position: relative; aspect-ratio: 1 / 1; width: 100%;
  display: flex; align-items: center; justify-content: center;
}
#globe-canvas { position: absolute; inset: 0; width: 100%; height: 100%; }
.globe-ring {
  position: absolute; inset: 6%; border-radius: 50%;
  border: 1px solid rgba(199,255,89,.12);
  pointer-events: none;
}
.globe-ring.two { inset: -4%; border-color: rgba(0,184,92,.10); }
.globe-tag {
  position: absolute; z-index: 3; pointer-events: none;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .04em;
  background: rgba(8,37,26,.82); border: 1px solid rgba(199,255,89,.35);
  color: var(--paper); padding: 7px 12px; border-radius: var(--r-sm);
  backdrop-filter: blur(6px); white-space: nowrap;
  transition: opacity var(--dur-3) var(--ease-out), transform var(--dur-3) var(--ease-out);
}
.globe-tag .co { color: var(--beam); display: block; font-size: 9px; letter-spacing: .1em; margin-top: 2px; opacity: .8; }

/* ============================================================
   Process steps
   ============================================================ */
.proc { background: var(--paper); }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.step { padding-top: 22px; border-top: 1.5px solid var(--ink); }
.step .n { font-family: var(--font-mono); font-size: 12px; letter-spacing: .08em; color: var(--emerald-600); margin-bottom: 28px; display: block; }
.step h4 { font-family: var(--font-display); font-weight: 600; font-size: 22px; letter-spacing: -0.01em; color: var(--ink); margin: 0 0 10px; }
.step p { font-size: 14.5px; color: var(--sage); line-height: 1.6; margin: 0; }

/* ============================================================
   Stats row
   ============================================================ */
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-top: 1px solid var(--border); }
.stat { padding: 36px 32px 0; border-right: 1px solid var(--border); }
.stat:last-child { border-right: 0; }
.stat .num { font-family: var(--font-display); font-weight: 600; font-size: clamp(2.6rem, 5vw, 3.6rem); letter-spacing: -0.03em; line-height: 1; color: var(--ink); }
.stat .num em { font-style: normal; color: var(--emerald-600); }
.stat .lbl { font-size: 14.5px; color: var(--sage); line-height: 1.55; margin-top: 12px; max-width: 26ch; }

/* ============================================================
   CTA band
   ============================================================ */
.cta-band { position: relative; background: var(--ink); color: var(--paper); overflow: hidden; }
.cta-band::before { content: ""; position: absolute; width: 700px; height: 700px; right: -240px; bottom: -340px; background: radial-gradient(circle, rgba(199,255,89,.12), transparent 62%); pointer-events: none; }
.cta-band::after { content: ""; position: absolute; width: 600px; height: 600px; left: -220px; top: -300px; background: radial-gradient(circle, rgba(0,184,92,.14), transparent 62%); pointer-events: none; }
.cta-inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1.25fr 1fr; gap: 56px; align-items: center; padding: 112px 0; }
.cta-inner .eyebrow { color: var(--beam); margin-bottom: 20px; }
.cta-inner h2 { font-family: var(--font-display); font-weight: 600; font-size: clamp(2rem, 4.4vw, 3.2rem); letter-spacing: -0.03em; line-height: 1.02; color: var(--paper); margin: 0 0 22px; max-width: 16ch; }
.cta-inner h2 em { font-style: normal; color: var(--beam); }
.cta-inner p { color: rgba(255,254,250,.72); font-size: 17px; line-height: 1.6; margin: 0; max-width: 48ch; }
.cta-right { display: flex; flex-direction: column; gap: 18px; align-items: flex-start; }
.cta-right .meta { font-family: var(--font-mono); font-size: 12px; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,254,250,.5); }
.cta-right .meta b { color: var(--beam); font-weight: 500; }

/* ============================================================
   Footer
   ============================================================ */
.footer { background: var(--forest-900); color: rgba(255,254,250,.7); padding: 88px 0 36px; position: relative; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 44px; padding-bottom: 56px; border-bottom: 1px solid rgba(255,254,250,.08); }
.footer-brand { display: flex; flex-direction: column; gap: 20px; }
.footer-brand img { height: auto; width: auto; max-height: 54px; max-width: 200px; object-fit: contain; }
.footer-brand .tagline { font-size: 14px; line-height: 1.6; max-width: 30ch; color: rgba(255,254,250,.6); }
.footer h5 { font-family: var(--font-mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--beam); margin: 0 0 18px; font-weight: 500; }
.footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 11px; }
.footer a { color: rgba(255,254,250,.82); text-decoration: none; font-size: 14.5px; transition: color var(--dur-2) var(--ease-out); }
.footer a:hover { color: var(--beam); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 26px; font-family: var(--font-mono); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,254,250,.45); }

/* ============================================================
   Page hero (interior pages)
   ============================================================ */
.page-hero { position: relative; background: var(--forest-900); color: var(--paper); overflow: hidden; padding-top: 92px; }
.page-hero-canvas { position: absolute; inset: 0; width: 100%; height: 100%; display: block; z-index: 0; pointer-events: none; }
.page-hero::before { content: ""; position: absolute; z-index: 1; width: 760px; height: 760px; right: -260px; top: -280px; background: radial-gradient(circle, rgba(0,184,92,.16), transparent 62%); pointer-events: none; }
.page-hero::after { content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .5;
  background-image: linear-gradient(rgba(255,254,250,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,254,250,.025) 1px, transparent 1px);
  background-size: 60px 60px; -webkit-mask-image: radial-gradient(120% 100% at 70% 0%, #000, transparent 70%); mask-image: radial-gradient(120% 100% at 70% 0%, #000, transparent 70%); }
.page-hero-inner { position: relative; z-index: 2; padding: 76px 0 84px; }
.crumb { font-family: var(--font-mono); font-size: 12px; letter-spacing: .06em; color: rgba(255,254,250,.5); margin-bottom: 30px; }
.crumb a { color: rgba(255,254,250,.7); text-decoration: none; }
.crumb a:hover { color: var(--beam); }
.crumb .sep { margin: 0 9px; color: rgba(255,254,250,.3); }
.page-hero .eyebrow { color: var(--beam); margin-bottom: 20px; }
.page-hero h1 { font-family: var(--font-display); font-weight: 600; font-size: clamp(2.3rem, 5.2vw, 3.9rem); letter-spacing: -0.03em; line-height: 1.02; color: var(--paper); margin: 0 0 24px; max-width: 19ch; }
.page-hero h1 em { font-style: normal; color: var(--beam); }
.page-hero .lead { font-size: 18.5px; line-height: 1.6; color: rgba(255,254,250,.72); max-width: 60ch; margin: 0; }
.page-hero .hero-figures { display: flex; gap: 40px; margin-top: 44px; flex-wrap: wrap; }
.page-hero .hfig { }
.page-hero .hfig .v { font-family: var(--font-display); font-weight: 600; font-size: 34px; letter-spacing: -0.03em; color: var(--beam); line-height: 1; }
.page-hero .hfig .k { font-family: var(--font-mono); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,254,250,.55); margin-top: 8px; }

/* ============================================================
   Services overview (servicios.html)
   ============================================================ */
.svc-rows { display: flex; flex-direction: column; gap: 18px; }
.svc-row {
  display: grid; grid-template-columns: 72px 1fr 240px; gap: 36px; align-items: center;
  background: var(--bone); border: 1px solid var(--border); border-radius: var(--r-lg);
  padding: 44px; text-decoration: none; color: inherit; position: relative; overflow: hidden;
  transition: transform var(--dur-3) var(--ease-out), box-shadow var(--dur-3) var(--ease-out), border-color var(--dur-3) var(--ease-out);
  box-shadow: var(--shadow-1);
}
.svc-row::after { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; background: var(--beam); transform: scaleY(0); transform-origin: top; transition: transform var(--dur-4) var(--ease-out); }
.svc-row:hover { transform: translateY(-3px); box-shadow: var(--shadow-2); border-color: var(--border-strong); }
.svc-row:hover::after { transform: scaleY(1); }
.svc-row .ic { width: 64px; height: 64px; border-radius: var(--r-md); background: var(--forest-900); color: var(--beam); display: flex; align-items: center; justify-content: center; }
.svc-row .ic svg { width: 32px; height: 32px; }
.svc-row h3 { font-family: var(--font-display); font-weight: 600; font-size: 28px; letter-spacing: -0.02em; line-height: 1.1; color: var(--ink); margin: 0 0 10px; }
.svc-row p { color: var(--sage); font-size: 15.5px; line-height: 1.6; margin: 0; max-width: 56ch; }
.svc-row .feats { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 16px; }
.svc-row .feats span { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .06em; text-transform: uppercase; color: var(--ink-soft); background: var(--mist); border-radius: var(--r-pill); padding: 5px 11px; }
.svc-row .go { justify-self: end; display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-mono); font-size: 12px; letter-spacing: .06em; text-transform: uppercase; color: var(--ink); border: 1px solid var(--border-strong); border-radius: var(--r-pill); padding: 12px 20px; transition: all var(--dur-2) var(--ease-out); }
.svc-row:hover .go { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.svc-row .go .arr { font-family: var(--font-mono); }

/* ============================================================
   Service detail
   ============================================================ */
.svc-layout { display: grid; grid-template-columns: 1fr 340px; gap: 80px; align-items: start; }
.svc-main { min-width: 0; }
.svc-side { position: sticky; top: 100px; }
.blk { margin-bottom: 80px; }
.blk:last-child { margin-bottom: 0; }
.blk .eyebrow { color: var(--emerald-600); margin-bottom: 16px; }
.blk h2 { font-family: var(--font-display); font-weight: 600; font-size: clamp(1.7rem, 3vw, 2.3rem); letter-spacing: -0.025em; line-height: 1.1; color: var(--ink); margin: 0 0 22px; }
.blk > p { font-size: 17px; line-height: 1.7; color: var(--ink-soft); max-width: 62ch; }
.blk > p + p { margin-top: 18px; }

.deliv { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.deliv-item { background: var(--bone); border: 1px solid var(--border); border-radius: var(--r-md); padding: 28px; display: flex; flex-direction: column; gap: 10px; transition: transform var(--dur-3) var(--ease-out), box-shadow var(--dur-3) var(--ease-out); }
.deliv-item:hover { transform: translateY(-3px); box-shadow: var(--shadow-2); }
.deliv-item .n { font-family: var(--font-mono); font-size: 11px; letter-spacing: .08em; color: var(--emerald-600); }
.deliv-item h4 { font-family: var(--font-display); font-weight: 600; font-size: 18px; letter-spacing: -0.01em; line-height: 1.25; color: var(--ink); margin: 0; }
.deliv-item p { font-size: 14.5px; color: var(--sage); line-height: 1.55; margin: 0; }

.uc { list-style: none; padding: 0; margin: 0; }
.uc li { display: grid; grid-template-columns: 52px 1fr; gap: 24px; padding: 24px 0; border-top: 1px solid var(--mist); align-items: baseline; }
.uc li:first-child { border-top: 0; padding-top: 4px; }
.uc .n { font-family: var(--font-mono); font-size: 13px; color: var(--sage); letter-spacing: .04em; }
.uc .t { font-size: 17px; color: var(--ink); line-height: 1.4; font-weight: 500; }
.uc .t small { display: block; color: var(--sage); font-size: 14.5px; font-weight: 400; line-height: 1.55; margin-top: 6px; }

.aud { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.aud-item { border: 1px solid var(--border); border-radius: var(--r-md); padding: 26px; background: var(--bone); }
.aud-item .check { display: inline-flex; align-items: center; justify-content: center; width: 26px; height: 26px; border-radius: 50%; background: var(--beam); color: var(--ink); margin-bottom: 14px; }
.aud-item h4 { font-family: var(--font-display); font-weight: 600; font-size: 17px; letter-spacing: -0.01em; line-height: 1.25; color: var(--ink); margin: 0 0 6px; }
.aud-item p { font-size: 14.5px; color: var(--sage); line-height: 1.55; margin: 0; }

/* Sidebar booking card */
.book-card { border: 1px solid var(--border); border-radius: var(--r-lg); background: var(--bone); padding: 30px; box-shadow: var(--shadow-1); }
.book-card .eyebrow { display: block; color: var(--emerald-600); margin-bottom: 14px; }
.book-card h4 { font-family: var(--font-display); font-weight: 600; font-size: 21px; letter-spacing: -0.015em; line-height: 1.2; color: var(--ink); margin: 0 0 10px; }
.book-card > p { color: var(--sage); font-size: 14.5px; line-height: 1.6; margin: 0 0 22px; }
.book-card .rows { display: flex; flex-direction: column; margin-bottom: 24px; }
.book-card .row { display: flex; justify-content: space-between; align-items: baseline; padding: 13px 0; border-top: 1px solid var(--mist); }
.book-card .row:first-child { border-top: 0; padding-top: 0; }
.book-card .row .k { font-family: var(--font-mono); font-size: 11px; letter-spacing: .07em; text-transform: uppercase; color: var(--sage); }
.book-card .row .v { color: var(--ink); font-weight: 500; font-size: 14px; }
.book-card .btn { width: 100%; justify-content: center; }

/* Conference tiers */
.tiers { display: flex; flex-direction: column; gap: 16px; }
.tier { border: 1px solid var(--border); border-radius: var(--r-lg); background: var(--bone); padding: 40px; display: grid; grid-template-columns: 240px 1fr; gap: 44px; align-items: start; }
.tier .head .lvl { font-family: var(--font-mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--emerald-600); margin-bottom: 10px; display: block; }
.tier .head h3 { font-family: var(--font-display); font-weight: 600; font-size: 25px; letter-spacing: -0.02em; line-height: 1.1; color: var(--ink); margin: 0 0 16px; }
.tier .dur { display: inline-flex; align-items: center; gap: 7px; padding: 6px 13px; background: var(--mist); border-radius: var(--r-pill); font-family: var(--font-mono); font-size: 11px; letter-spacing: .04em; color: var(--ink); }
.tier ul { list-style: none; padding: 0; margin: 0; }
.tier .topic { padding: 14px 0; border-top: 1px solid var(--mist); display: grid; grid-template-columns: 34px 1fr; gap: 14px; align-items: start; }
.tier .topic:first-child { border-top: 0; padding-top: 2px; }
.tier .topic .n { font-family: var(--font-mono); font-size: 11px; color: var(--sage); letter-spacing: .04em; padding-top: 2px; }
.tier .topic .t { font-size: 15px; color: var(--ink); line-height: 1.45; }

/* ============================================================
   Contact page
   ============================================================ */
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }
.contact-copy h2 { font-family: var(--font-display); font-weight: 600; font-size: clamp(1.9rem, 3.4vw, 2.6rem); letter-spacing: -0.025em; line-height: 1.08; color: var(--ink); margin: 0 0 20px; max-width: 16ch; }
.contact-copy h2 em { font-style: normal; color: var(--emerald-600); }
.contact-copy > p { font-size: 17px; color: var(--ink-soft); line-height: 1.7; max-width: 52ch; margin: 0 0 36px; }
.contact-points { display: flex; flex-direction: column; gap: 0; }
.cpoint { display: grid; grid-template-columns: 40px 1fr; gap: 18px; padding: 22px 0; border-top: 1px solid var(--mist); align-items: start; }
.cpoint:first-child { border-top: 0; }
.cpoint .ic { width: 40px; height: 40px; border-radius: var(--r-md); background: var(--forest-900); color: var(--beam); display: flex; align-items: center; justify-content: center; }
.cpoint .ic svg { width: 20px; height: 20px; }
.cpoint h4 { font-family: var(--font-display); font-weight: 600; font-size: 17px; color: var(--ink); margin: 0 0 4px; }
.cpoint p { font-size: 14.5px; color: var(--sage); line-height: 1.55; margin: 0; }

.form-card { background: var(--bone); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 40px; box-shadow: var(--shadow-2); }
.field { margin-bottom: 22px; }
.field label { display: block; font-family: var(--font-mono); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: var(--sage); margin-bottom: 9px; }
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--font-body); font-size: 15px; color: var(--ink);
  background: var(--paper); border: 1px solid var(--border-strong); border-radius: var(--r-md);
  padding: 13px 15px; transition: border-color var(--dur-2) var(--ease-out), box-shadow var(--dur-2) var(--ease-out);
}
.field textarea { resize: vertical; min-height: 110px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--emerald); box-shadow: 0 0 0 3px rgba(0,184,92,.14); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-card .btn { width: 100%; justify-content: center; margin-top: 4px; }
.form-note { font-family: var(--font-mono); font-size: 11px; letter-spacing: .04em; color: var(--sage); text-align: center; margin-top: 16px; }
.form-success { text-align: center; padding: 30px 10px; }
.form-success .check { width: 64px; height: 64px; border-radius: 50%; background: var(--beam); color: var(--ink); display: flex; align-items: center; justify-content: center; margin: 0 auto 22px; }
.form-success h3 { font-family: var(--font-display); font-size: 24px; color: var(--ink); margin: 0 0 12px; }
.form-success p { color: var(--sage); font-size: 15px; line-height: 1.6; max-width: 38ch; margin: 0 auto; }

/* ============================================================
   Reveal on scroll
   ============================================================ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease-out), transform .7s var(--ease-out); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .strip-track, .hero-scroll .line { animation: none; }
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1000px) {
  .svc-grid { grid-template-columns: 1fr; }
  .map-layout { grid-template-columns: 1fr; gap: 48px; }
  .map-band .globe-stage { max-width: 460px; margin: 0 auto; }
  .steps { grid-template-columns: 1fr 1fr; }
  .cta-inner { grid-template-columns: 1fr; gap: 32px; padding: 80px 0; }
  .svc-layout { grid-template-columns: 1fr; gap: 52px; }
  .svc-side { position: static; }
  .svc-row { grid-template-columns: 56px 1fr; gap: 24px; padding: 30px; }
  .svc-row .go { display: none; }
  .tier { grid-template-columns: 1fr; gap: 24px; padding: 30px; }
  .contact-layout { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 680px) {
  .wrap, .wrap-narrow { padding: 0 22px; }
  .nav { padding: 14px 22px; }
  .nav-links { display: none; }
  .section { padding: 80px 0; }
  .deliv, .aud, .map-locs, .field-row, .stats { grid-template-columns: 1fr; }
  .stat { border-right: 0; border-bottom: 1px solid var(--border); padding: 28px 0; }
  .stat:last-child { border-bottom: 0; }
  .steps { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; }
  .page-hero .hero-figures { gap: 28px; }
}
