:root {
  --ink: #050b24;
  --ink-2: #10182f;
  --muted: #65708c;
  --muted-2: #8b95ad;
  --line: rgba(12, 25, 63, 0.12);
  --panel: rgba(255, 255, 255, 0.84);
  --panel-solid: #ffffff;
  --navy: #06112f;
  --navy-2: #0c1939;
  --blue: #335cff;
  --blue-2: #6a55ff;
  --cyan: #35e0e5;
  --teal: #21d4c2;
  --violet: #7b5cff;
  --shadow: 0 28px 70px rgba(16, 30, 70, .14);
  --shadow-strong: 0 34px 80px rgba(5, 12, 35, .28);
  --radius-xl: 34px;
  --radius-lg: 25px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --max: 1360px;
  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 92%, rgba(132, 91, 255, .16), transparent 34%),
    radial-gradient(circle at 85% 28%, rgba(63, 115, 255, .12), transparent 32%),
    linear-gradient(120deg, #fff 0%, #f7faff 48%, #f8fbff 72%, #fff 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
svg { display: block; }

.site-bg { position: fixed; inset: 0; pointer-events: none; z-index: -2; overflow: hidden; }
.glow { position: absolute; border-radius: 999px; filter: blur(36px); opacity: .65; }
.glow-a { width: 360px; height: 360px; right: -90px; top: 80px; background: rgba(103, 82, 255, .13); }
.glow-b { width: 460px; height: 460px; left: -140px; bottom: -160px; background: rgba(47, 204, 228, .11); }
.grid-dots { position: absolute; width: 280px; height: 280px; background-image: radial-gradient(rgba(45, 96, 255, .58) 1px, transparent 1.4px); background-size: 18px 18px; opacity: .34; }
.dots-a { right: 110px; top: 130px; }
.dots-b { left: 42%; top: 34%; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  max-width: var(--max);
  margin: 0 auto;
  height: 104px;
  padding: 26px clamp(22px, 4vw, 52px);
  display: grid;
  grid-template-columns: 245px 1fr auto;
  align-items: center;
  gap: 22px;
  transition: height .24s ease, background .24s ease, box-shadow .24s ease, backdrop-filter .24s ease;
}
.site-header.is-scrolled {
  height: 82px;
  background: rgba(255, 255, 255, .78);
  backdrop-filter: blur(20px);
  box-shadow: 0 14px 50px rgba(17, 30, 70, .08);
  border-bottom: 1px solid rgba(16, 29, 65, .06);
}
.brand { display: inline-flex; align-items: center; gap: 14px; letter-spacing: .34em; font-weight: 800; font-size: clamp(22px, 2vw, 32px); line-height: 1; color: #03081c; }
.brand span { display: inline-block; transform: scaleX(1.03); }
.brand-mark { width: 32px; height: 32px; flex: 0 0 auto; color: #03081c; }
.brand-mark path { fill: none; stroke: currentColor; stroke-width: 2.1; stroke-linecap: round; stroke-linejoin: round; }
.nav { display: flex; align-items: center; justify-content: center; gap: clamp(28px, 4.2vw, 58px); color: #10182f; font-weight: 650; }
.nav a { position: relative; padding: 12px 0; }
.nav a::after { content: ""; position: absolute; left: 0; right: 0; bottom: 4px; height: 2px; border-radius: 9px; background: linear-gradient(90deg, var(--blue), var(--cyan)); transform: scaleX(0); transform-origin: left; transition: transform .2s ease; }
.nav a:hover::after, .nav a:focus-visible::after { transform: scaleX(1); }
.nav-cta, .btn, .seller-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-radius: 16px;
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
}
.nav-cta {
  color: #fff;
  background: linear-gradient(135deg, #071434, #03091f 68%);
  min-height: 58px;
  padding: 0 24px 0 26px;
  font-weight: 800;
  box-shadow: 0 16px 30px rgba(4, 11, 35, .16);
  white-space: nowrap;
}
.nav-cta svg, .btn svg, .seller-button svg { width: 22px; height: 22px; }
.nav-cta path, .btn path, .seller-button path { fill: none; stroke: currentColor; stroke-width: 2.1; stroke-linecap: round; stroke-linejoin: round; }
.nav-cta:hover, .btn:hover, .seller-button:hover { transform: translateY(-2px); }
.mobile-menu { display: none; width: 44px; height: 44px; border: 0; border-radius: 14px; background: #fff; box-shadow: 0 12px 30px rgba(16, 30, 70, .12); }
.mobile-menu span { display: block; width: 20px; height: 2px; margin: 4px auto; background: var(--ink); border-radius: 99px; }

.screen { position: relative; max-width: var(--max); margin: 0 auto; padding: 0 clamp(22px, 4vw, 52px); }
.hero { min-height: calc(100vh - 104px); padding-top: 50px; padding-bottom: 54px; }
.hero-grid {
  display: grid;
  grid-template-columns: minmax(420px, .93fr) minmax(610px, 1.07fr);
  gap: clamp(16px, 2.2vw, 34px);
  align-items: center;
}
.hero-copy { position: relative; z-index: 2; padding-top: 46px; }
.eyebrow {
  margin: 0 0 20px;
  font-size: 13px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #5262ff;
  font-weight: 850;
}
.hero .eyebrow { display: none; }
h1 {
  margin: 0;
  max-width: 670px;
  font-size: clamp(54px, 5.05vw, 84px);
  line-height: .98;
  letter-spacing: -.07em;
  font-weight: 890;
  color: #03081c;
  text-wrap: balance;
}
.hero-subtitle {
  max-width: 535px;
  margin: 36px 0 0;
  color: #556079;
  font-size: clamp(18px, 1.45vw, 22px);
  line-height: 1.52;
  font-weight: 480;
}
.hero-actions { display: flex; align-items: center; gap: 34px; margin-top: 46px; }
.btn { min-height: 70px; padding: 0 30px; border: 0; font-weight: 850; font-size: 17px; }
.btn-primary { color: #fff; background: linear-gradient(135deg, #071536, #03091d 76%); box-shadow: 0 24px 40px rgba(4, 13, 40, .18); }
.btn-ghost { min-height: 58px; padding: 0 0 8px; color: #09112b; border-radius: 0; border-bottom: 2px solid #4a68ff; box-shadow: none; }
.btn-ghost:hover { transform: translateY(-1px); }

.feature-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  max-width: 535px;
  margin-top: 54px;
  background: rgba(255, 255, 255, .74);
  border: 1px solid rgba(15, 35, 85, .08);
  border-radius: 25px;
  box-shadow: 0 26px 70px rgba(23, 45, 90, .09);
  backdrop-filter: blur(16px);
  overflow: hidden;
}
.feature-strip article { min-height: 138px; padding: 24px 18px 20px 24px; position: relative; }
.feature-strip article:not(:last-child)::after { content: ""; position: absolute; top: 26px; right: 0; width: 1px; height: 82px; background: rgba(14, 32, 72, .11); }
.icon-box { width: 43px; height: 43px; border-radius: 14px; display: grid; place-items: center; background: rgba(87, 70, 255, .08); color: #5b4cff; box-shadow: inset 0 0 0 1px rgba(72, 96, 255, .06); }
.icon-box svg { width: 26px; height: 26px; }
.icon-box path { fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.feature-strip p { margin: 14px 0 0; color: #26304c; line-height: 1.28; font-size: 15px; font-weight: 620; }

.hero-visual { position: relative; min-height: 760px; }
.visual-orbit { position: absolute; inset: 90px 12px 110px 60px; border-radius: 34px; background: linear-gradient(180deg, rgba(74, 122, 255, .12), rgba(255,255,255,.18)); box-shadow: inset 0 0 0 1px rgba(42, 83, 177, .08); transform: translateZ(0); }
.visual-orbit::after { content: ""; position: absolute; right: -80px; bottom: -80px; width: 360px; height: 230px; border-radius: 50%; border: 1px solid rgba(50, 112, 255, .15); box-shadow: 0 0 0 20px rgba(73, 122, 255, .03), 0 0 0 42px rgba(73, 122, 255, .025); }
.warehouse-frame {
  position: absolute;
  left: 60px;
  right: 30px;
  top: 200px;
  height: 380px;
  overflow: hidden;
  border-radius: 28px;
  box-shadow: 0 34px 80px rgba(18, 44, 89, .20);
  border: 1px solid rgba(255, 255, 255, .64);
  background: #dbe9ff;
}
.warehouse-frame img { width: 100%; height: 100%; object-fit: cover; object-position: center center; transform: scale(1.03); }
.warehouse-frame::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(255,255,255,.07), transparent 44%, rgba(8, 20, 47, .05)); pointer-events: none; }
.floating-card, .dark-card, .seller-card, .panel {
  border: 1px solid rgba(255,255,255,.64);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}
.floating-card { position: absolute; display: flex; gap: 20px; align-items: flex-start; background: rgba(255,255,255,.92); border-radius: 25px; padding: 24px; z-index: 6; }
.asset-card { right: 295px; top: 80px; width: 320px; min-height: 160px; }
.round-icon { flex: 0 0 auto; width: 66px; height: 66px; border-radius: 50%; display: grid; place-items: center; color: #fff; background: radial-gradient(circle at 30% 22%, #697dff, #3d39ba 68%); box-shadow: 0 20px 36px rgba(49, 70, 210, .28); }
.round-icon.small { width: 56px; height: 56px; }
.round-icon svg { width: 34px; height: 34px; }
.round-icon path { fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.floating-card h2 { margin: 0; font-size: 21px; line-height: 1.18; letter-spacing: -.03em; }
.floating-card h2 span { color: #265dff; font-weight: 820; }
.floating-card p { margin: 14px 0 0; color: #69738d; line-height: 1.42; font-size: 16px; }
.map-card { position: absolute; right: 0; top: 50px; width: 275px; min-height: 280px; padding: 24px 22px 20px; border-radius: 23px; z-index: 5; }
.dark-card { color: #fff; background: radial-gradient(circle at 72% 22%, rgba(70, 117, 255, .22), transparent 34%), linear-gradient(145deg, rgba(14, 33, 66, .98), rgba(4, 12, 31, .98)); border-color: rgba(143, 179, 255, .18); box-shadow: var(--shadow-strong); }
.card-topline { display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.card-topline h2, .card-topline h3 { margin: 0; font-size: 18px; letter-spacing: -.02em; }
.card-topline span { color: rgba(255,255,255,.72); font-weight: 800; letter-spacing: .1em; }
.mexico-map { margin: 14px 0 6px; height: 118px; }
.mexico-map svg { width: 100%; height: 100%; overflow: visible; }
.mx-outline, .mx-baja { fill: url(#mxGradient); stroke: rgba(118, 155, 255, .46); stroke-width: 1.4; }
.pin { filter: drop-shadow(0 0 12px currentColor); }
.pin-border { fill: #3e74ff; color: #3e74ff; }
.pin-bajio { fill: #7958ff; color: #7958ff; }
.pin-centro { fill: #31e1dc; color: #31e1dc; }
.legend { list-style: none; display: grid; gap: 9px; margin: 14px 0 0; padding: 0; font-size: 14px; color: rgba(255,255,255,.92); }
.legend li { display: flex; align-items: center; gap: 10px; }
.dot { width: 9px; height: 9px; border-radius: 50%; display: inline-block; box-shadow: 0 0 10px currentColor; }
.dot-border { background: #3e74ff; color: #3e74ff; }
.dot-bajio { background: #7958ff; color: #7958ff; }
.dot-centro { background: #31e1dc; color: #31e1dc; }
.lease-card { left: 0; top: 360px; width: 305px; min-height: 240px; z-index: 7; background: rgba(255,255,255,.94); }
.lease-card em { display: inline-flex; align-items: center; gap: 9px; margin-top: 18px; min-height: 38px; padding: 0 16px; border-radius: 999px; background: rgba(28, 207, 190, .12); color: #138f85; font-style: normal; font-size: 14px; font-weight: 750; }
.lease-card em span { display: grid; place-items: center; width: 18px; height: 18px; border-radius: 50%; border: 1px solid currentColor; }
.risk-card { position: absolute; left: 195px; top: 525px; width: 270px; min-height: 226px; border-radius: 20px; padding: 22px 20px 18px; z-index: 8; }
.risk-card p { margin: 18px 0 2px; color: rgba(255,255,255,.78); font-size: 12px; }
.risk-card strong { display: block; font-size: 43px; line-height: 1; letter-spacing: -.04em; color: #7867ff; margin-bottom: 14px; }
.meter { height: 9px; background: rgba(255,255,255,.14); border-radius: 999px; overflow: hidden; }
.meter span { display: block; width: 68%; height: 100%; background: linear-gradient(90deg, #7459ff, #45e4e7); border-radius: inherit; }
.risk-card small { display: flex; align-items: center; gap: 9px; margin-top: 14px; padding-bottom: 16px; border-bottom: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.9); font-size: 13px; }
.risk-card small svg { width: 18px; height: 18px; color: #4be0d8; }
.risk-card path { fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.metric-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin: 14px 0 0; }
.metric-row dt { font-size: 11px; color: rgba(255,255,255,.65); margin-bottom: 6px; white-space: nowrap; }
.metric-row dd { margin: 0; color: #fff; font-size: 16px; font-weight: 850; }
.seller-card {
  position: absolute;
  right: -10px;
  top: 420px;
  z-index: 9;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  width: 310px;
  min-height: 248px;
  padding: 22px;
  color: #fff;
  border-radius: 26px;
  background:
    radial-gradient(circle at 100% 100%, rgba(45, 232, 227, .72), transparent 34%),
    radial-gradient(circle at 0% 0%, rgba(131, 103, 255, .72), transparent 38%),
    linear-gradient(145deg, #3152ff, #5c44ff 62%, #20bfe3);
  box-shadow: 0 34px 70px rgba(46, 83, 255, .34);
  overflow: hidden;
}
.seller-card::after { content: ""; position: absolute; inset: auto -18px -24px auto; width: 180px; height: 180px; background-image: radial-gradient(rgba(255,255,255,.32) 1px, transparent 1.5px); background-size: 14px 14px; opacity: .45; transform: rotate(-8deg); }
.seller-icon { position: relative; z-index: 1; width: 56px; height: 56px; border-radius: 50%; background: #fff; display: grid; place-items: center; color: #4c54ff; box-shadow: 0 18px 30px rgba(0,0,0,.12); }
.seller-icon svg { width: 29px; height: 29px; }
.seller-icon path { fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.seller-card div { position: relative; z-index: 1; }
.seller-card h2 { margin: 0; font-size: 22px; line-height: 1.22; letter-spacing: -.035em; }
.seller-card p { margin: 17px 0 18px; color: rgba(255,255,255,.88); line-height: 1.45; font-size: 14px; }
.seller-button { min-height: 58px; width: 100%; color: #101951; background: #fff; border-radius: 16px; font-weight: 850; box-shadow: 0 18px 34px rgba(1, 7, 30, .14); }

.trust-bar {
  position: relative;
  max-width: 900px;
  margin: 28px auto 0;
  min-height: 54px;
  padding: 0 28px;
  border: 1px solid rgba(35, 63, 124, .12);
  border-radius: 999px;
  background: rgba(255,255,255,.54);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: #6d7891;
  font-size: 15px;
}
.trust-bar svg { width: 24px; height: 24px; flex: 0 0 auto; color: #5269a5; }
.trust-bar path { fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

.section { padding-top: clamp(96px, 10vw, 150px); padding-bottom: clamp(96px, 10vw, 150px); }
.section.alt::before { content: ""; position: absolute; inset: 40px 22px; border-radius: 42px; background: rgba(255,255,255,.44); border: 1px solid rgba(15, 35, 85, .06); z-index: -1; }
.section-grid { display: grid; gap: 54px; }
.two-col { grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr); }
.align-center { align-items: center; }
.section-copy h2, .section-heading h2 { margin: 0; font-size: clamp(42px, 4vw, 64px); line-height: 1.03; letter-spacing: -.06em; max-width: 780px; }
.section-copy p, .section-heading p { color: var(--muted); font-size: 18px; line-height: 1.62; max-width: 680px; }
.center { text-align: center; max-width: 850px; margin: 0 auto 58px; }
.center p { margin-left: auto; margin-right: auto; }
.panel { background: rgba(255,255,255,.72); border-radius: 30px; padding: clamp(28px, 3vw, 42px); border-color: rgba(18, 34, 78, .08); }
.thesis-panel h3, .info-card h3, .market-map h3 { margin: 0; font-size: 25px; letter-spacing: -.035em; }
.check-list { display: grid; gap: 18px; margin-top: 28px; }
.check-list p { margin: 0; padding: 18px 20px; border-radius: 18px; background: rgba(249, 251, 255, .82); color: #2c3651; line-height: 1.48; font-weight: 600; }
.check-list span { color: #5262ff; margin-right: 12px; font-weight: 900; }
.card-grid { display: grid; gap: 22px; margin-top: 34px; }
.card-grid.three { grid-template-columns: repeat(3, 1fr); }
.info-card { border-radius: 25px; padding: 28px; min-height: 220px; background: rgba(255,255,255,.72); border: 1px solid rgba(18, 34, 78, .08); box-shadow: 0 24px 70px rgba(20, 37, 82, .08); backdrop-filter: blur(16px); }
.info-card p { color: var(--muted); line-height: 1.58; }
.mini-label { display: inline-flex; min-height: 30px; padding: 0 12px; align-items: center; margin-bottom: 18px; border-radius: 999px; background: rgba(73, 91, 255, .08); color: #4557ff; font-size: 12px; letter-spacing: .14em; text-transform: uppercase; font-weight: 900; }
.dark-panel { color: #fff; background: radial-gradient(circle at 75% 18%, rgba(84, 111, 255, .25), transparent 36%), linear-gradient(145deg, rgba(14, 33, 66, .98), rgba(4, 12, 31, .98)); border-color: rgba(143, 179, 255, .18); box-shadow: var(--shadow-strong); }
.big-map { margin: 26px 0; }
.big-map svg { width: 100%; max-height: 330px; }
.zone-chips { display: flex; gap: 12px; flex-wrap: wrap; }
.zone-chips span { min-height: 42px; display: inline-flex; align-items: center; gap: 10px; padding: 0 16px; border-radius: 999px; background: rgba(255,255,255,.1); color: rgba(255,255,255,.92); font-weight: 700; }
.stat-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 30px; }
.stat-strip div { padding: 22px 20px; border-radius: 21px; background: rgba(255,255,255,.72); border: 1px solid rgba(18, 34, 78, .08); box-shadow: 0 18px 50px rgba(20, 37, 82, .07); }
.stat-strip strong { display: block; font-size: 36px; color: #111a39; letter-spacing: -.05em; }
.stat-strip span { color: var(--muted); font-weight: 700; font-size: 13px; }
.process-track { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.process-track article { position: relative; min-height: 278px; padding: 30px 25px; border-radius: 28px; background: rgba(255,255,255,.76); border: 1px solid rgba(18, 34, 78, .08); box-shadow: 0 24px 70px rgba(20, 37, 82, .08); overflow: hidden; }
.process-track article::after { content: ""; position: absolute; right: -54px; bottom: -72px; width: 160px; height: 160px; border-radius: 50%; background: radial-gradient(circle, rgba(72, 96, 255, .16), transparent 65%); }
.process-track span { display: inline-grid; place-items: center; width: 52px; height: 52px; border-radius: 17px; background: linear-gradient(135deg, #4d63ff, #7c55ff); color: #fff; font-weight: 900; }
.process-track h3 { margin: 28px 0 12px; font-size: 24px; letter-spacing: -.035em; }
.process-track p { margin: 0; color: var(--muted); line-height: 1.58; }
.team-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.team-card { min-height: 190px; }
.team-card span { display: inline-grid; place-items: center; width: 58px; height: 44px; border-radius: 14px; margin-bottom: 18px; color: #4f57ff; background: rgba(72, 96, 255, .08); font-weight: 900; }
.contact-section { padding-bottom: 90px; }
.contact-shell { display: grid; grid-template-columns: .88fr 1.12fr; gap: 44px; align-items: start; }
.contact-copy h2 { margin: 0; font-size: clamp(42px, 4vw, 64px); line-height: 1.03; letter-spacing: -.06em; }
.contact-copy p { color: var(--muted); font-size: 18px; line-height: 1.62; }
.contact-notes { margin-top: 28px; display: grid; gap: 14px; }
.contact-notes p { margin: 0; padding: 18px; border-radius: 18px; background: rgba(255,255,255,.72); border: 1px solid rgba(18, 34, 78, .08); font-size: 15px; }
.contact-form { background: rgba(255,255,255,.82); }
.intent-toggle { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-bottom: 26px; }
.intent-toggle label { cursor: pointer; }
.intent-toggle input { position: absolute; opacity: 0; pointer-events: none; }
.intent-toggle span { display: grid; place-items: center; min-height: 56px; border-radius: 16px; border: 1px solid rgba(18, 34, 78, .12); background: rgba(248,250,255,.8); color: #3e4963; font-weight: 850; }
.intent-toggle input:checked + span { color: #fff; background: linear-gradient(135deg, #3152ff, #6b54ff); box-shadow: 0 18px 36px rgba(55, 82, 255, .2); border-color: transparent; }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.form-grid label { display: grid; gap: 9px; color: #1d2742; font-weight: 800; }
.form-grid .wide { grid-column: 1 / -1; }
input, select, textarea { width: 100%; border: 1px solid rgba(18, 34, 78, .13); background: rgba(255,255,255,.84); border-radius: 15px; padding: 15px 16px; color: var(--ink); outline: none; transition: border-color .18s ease, box-shadow .18s ease; }
textarea { resize: vertical; }
input:focus, select:focus, textarea:focus { border-color: rgba(69, 91, 255, .62); box-shadow: 0 0 0 4px rgba(69, 91, 255, .10); }
.form-submit { width: 100%; margin-top: 24px; }
.form-status { min-height: 24px; margin: 16px 0 0; color: #138f85; font-weight: 750; }
.footer { max-width: var(--max); margin: 0 auto; padding: 32px clamp(22px, 4vw, 52px) 48px; display: flex; justify-content: space-between; align-items: center; color: var(--muted); border-top: 1px solid rgba(18, 34, 78, .08); }
.footer span { letter-spacing: .26em; color: var(--ink); font-weight: 900; }
.footer p { margin: 0; }

@media (max-width: 1180px) {
  .site-header { grid-template-columns: 220px 1fr auto; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { padding-top: 18px; }
  .hero-visual { min-height: 770px; max-width: 820px; width: 100%; margin: 0 auto; }
  .feature-strip { max-width: 720px; }
  h1 { max-width: 900px; }
  .hero-subtitle { max-width: 720px; }
  .trust-bar { margin-top: 42px; }
  .two-col, .contact-shell { grid-template-columns: 1fr; }
  .process-track { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 920px) {
  .site-header { grid-template-columns: 1fr auto; height: 82px; }
  .brand { font-size: 25px; }
  .mobile-menu { display: block; grid-column: 2; grid-row: 1; }
  .nav-cta { display: none; }
  .nav { position: absolute; right: 22px; top: 76px; width: min(320px, calc(100vw - 44px)); padding: 18px; border-radius: 22px; display: none; flex-direction: column; align-items: stretch; gap: 2px; background: rgba(255,255,255,.94); box-shadow: 0 30px 80px rgba(5, 12, 35, .16); border: 1px solid rgba(18, 34, 78, .08); }
  .nav.is-open { display: flex; }
  .nav a { padding: 14px 16px; border-radius: 14px; }
  .nav a:hover { background: rgba(72, 96, 255, .07); }
  .hero { padding-top: 22px; }
  h1 { font-size: clamp(48px, 12vw, 74px); }
  .hero-actions { flex-wrap: wrap; }
  .hero-visual { min-height: 920px; }
  .warehouse-frame { left: 0; right: 0; top: 220px; height: 390px; }
  .asset-card { left: 0; right: auto; top: 24px; width: min(350px, 70vw); }
  .map-card { right: 0; top: 88px; width: min(285px, 46vw); }
  .lease-card { left: 0; top: 638px; width: min(340px, 52vw); }
  .seller-card { right: 0; top: 630px; width: min(350px, 48vw); }
  .risk-card { left: auto; right: 0; top: 785px; width: min(290px, 48vw); }
  .card-grid.three { grid-template-columns: 1fr; }
  .stat-strip { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  .screen { padding-left: 18px; padding-right: 18px; }
  .site-header { padding-left: 18px; padding-right: 18px; }
  .brand { letter-spacing: .24em; font-size: 22px; }
  h1 { letter-spacing: -.055em; }
  .hero-subtitle { font-size: 17px; }
  .btn { width: 100%; }
  .hero-actions { gap: 16px; }
  .btn-ghost { width: auto; min-height: 46px; }
  .feature-strip { grid-template-columns: repeat(2, 1fr); }
  .feature-strip article:nth-child(2)::after { display: none; }
  .hero-visual { min-height: 1130px; }
  .visual-orbit { inset: 100px -8px 0 20px; }
  .warehouse-frame { top: 245px; height: 300px; }
  .asset-card { top: 0; width: 100%; }
  .map-card { top: 555px; right: auto; left: 0; width: 100%; min-height: auto; }
  .seller-card { top: 760px; width: 100%; grid-template-columns: 54px 1fr; }
  .lease-card { top: 1005px; width: 100%; }
  .risk-card { display: none; }
  .trust-bar { border-radius: 22px; justify-content: flex-start; align-items: flex-start; padding: 18px; }
  .section-copy h2, .section-heading h2, .contact-copy h2 { font-size: clamp(36px, 11vw, 48px); }
  .process-track { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .intent-toggle { grid-template-columns: 1fr; }
  .footer { flex-direction: column; align-items: flex-start; gap: 12px; }
}
