:root {
  --green-950: #082d25;
  --green-900: #0d382e;
  --green-800: #164b3d;
  --green-700: #1f6551;
  --green-100: #dfece5;
  --cream: #f7f2e8;
  --paper: #fffdf8;
  --paper-2: #f1eadc;
  --gold: #c99a3a;
  --gold-light: #e4c275;
  --rust: #9f4c25;
  --ink: #102b24;
  --muted: #68766f;
  --line: rgba(20, 58, 47, 0.14);
  --shadow: 0 28px 80px rgba(20, 46, 38, 0.15);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, "Segoe UI", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 14% 2%, rgba(215, 187, 122, 0.17), transparent 25rem),
    var(--cream);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}
body.menu-open, body.dialog-open { overflow: hidden; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
.shell { width: min(1180px, calc(100% - 48px)); margin-inline: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; top: 10px; left: 10px; z-index: 1000; transform: translateY(-160%); padding: 12px 16px; color: white; background: var(--green-900); border-radius: 8px; }
.skip-link:focus { transform: translateY(0); }

.site-header { position: absolute; z-index: 100; top: 0; left: 0; width: 100%; }
.header-inner { min-height: 90px; display: flex; align-items: center; gap: 20px; border-bottom: 1px solid var(--line); }
.brand { display: inline-flex; align-items: center; flex: 0 0 auto; text-decoration: none; }
.brand-logo { display: block; width: 164px; height: auto; }
.site-nav { display: flex; align-items: center; gap: 28px; margin-left: auto; font-size: 0.87rem; font-weight: 650; }
.site-nav a { text-decoration: none; transition: color 180ms ease, background 180ms ease; }
.site-nav > a:not(.nav-cta):hover { color: var(--rust); }
.nav-cta { padding: 12px 18px; color: #fff; background: var(--green-900); border-radius: 999px; box-shadow: 0 8px 22px rgba(15, 56, 46, 0.18); }
.nav-cta:hover { background: var(--green-700); }
.language-switch { display: inline-flex; align-items: center; flex: 0 0 auto; gap: 3px; padding: 4px; color: var(--muted); background: rgba(255,255,255,.58); border: 1px solid var(--line); border-radius: 999px; box-shadow: 0 6px 18px rgba(16,43,36,.06); backdrop-filter: blur(8px); }
.language-switch button { min-width: 34px; height: 29px; padding: 0 8px; color: inherit; background: transparent; border: 0; border-radius: 999px; font: 800 .68rem/1 var(--sans); letter-spacing: .04em; cursor: pointer; transition: color 180ms ease, background 180ms ease, box-shadow 180ms ease; }
.language-switch button:hover { color: var(--green-900); }
.language-switch button.is-active { color: white; background: var(--green-900); box-shadow: 0 4px 12px rgba(13,56,46,.2); }
.language-switch > span { color: rgba(104,118,111,.45); font-size: .7rem; }
.language-switch button:focus-visible, .menu-toggle:focus-visible, a:focus-visible { outline: 3px solid rgba(201,154,58,.52); outline-offset: 3px; }
.currency-switch { display: inline-flex; align-items: center; flex: 0 0 auto; gap: 3px; padding: 4px; color: var(--muted); background: rgba(255,255,255,.58); border: 1px solid var(--line); border-radius: 999px; box-shadow: 0 6px 18px rgba(16,43,36,.06); backdrop-filter: blur(8px); }
.currency-switch button { min-width: 34px; height: 29px; padding: 0 8px; color: inherit; background: transparent; border: 0; border-radius: 999px; font: 800 .68rem/1 var(--sans); letter-spacing: .04em; cursor: pointer; transition: color 180ms ease, background 180ms ease, box-shadow 180ms ease; }
.currency-switch button:hover { color: var(--green-900); }
.currency-switch button.is-active { color: white; background: var(--green-900); box-shadow: 0 4px 12px rgba(13,56,46,.2); }
.currency-switch > span { color: rgba(104,118,111,.45); font-size: .7rem; }
.currency-switch button:focus-visible { outline: 3px solid rgba(201,154,58,.52); outline-offset: 3px; }
.menu-toggle { display: none; width: 44px; height: 44px; padding: 11px; border: 1px solid var(--line); background: rgba(255,255,255,.6); border-radius: 50%; }
.menu-toggle > span:not(.sr-only) { display: block; width: 100%; height: 1.5px; margin: 4px 0; background: var(--ink); transition: transform 180ms ease, opacity 180ms ease; }

.hero { min-height: max(900px, 100svh); padding: 154px 0 100px; position: relative; overflow: hidden; }
.hero::after {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, transparent 0%, rgba(247,242,232,.14) 18%, rgba(247,242,232,.5) 47%, rgba(247,242,232,.18) 74%, transparent 100%);
}
.section-glow::before { content: ""; position: absolute; z-index: 0; width: 560px; height: 560px; right: -170px; top: 60px; border: 1px solid rgba(201,154,58,.18); border-radius: 50%; box-shadow: 0 0 0 60px rgba(201,154,58,.035), 0 0 0 130px rgba(201,154,58,.025); }
.hero-grid { position: relative; z-index: 3; display: grid; grid-template-columns: minmax(0, 1.02fr) minmax(0, .98fr); align-items: center; gap: 72px; }

.blueprint-planner {
  --hero-scene-shift: clamp(190px, 27vw, 620px);
  --scene-x: calc(-1 * var(--hero-scene-shift));
  --pointer-x: 0px;
  --pointer-y: 0px;
  --pointer-r: 0deg;
  --hero-phase-opacity: .86;
  position: absolute;
  z-index: 1;
  top: var(--planner-top, 720px);
  right: 0;
  bottom: var(--planner-bottom, 22px);
  left: 0;
  overflow: hidden;
  pointer-events: none;
  opacity: .78;
}
.blueprint-planner.is-side-left {
  --scene-x: calc(-1 * var(--hero-scene-shift));
  -webkit-mask-image: linear-gradient(90deg, #000 0%, #000 38%, rgba(0,0,0,.2) 54%, transparent 66%);
  mask-image: linear-gradient(90deg, #000 0%, #000 38%, rgba(0,0,0,.2) 54%, transparent 66%);
}
.blueprint-planner.is-side-right {
  --scene-x: var(--hero-scene-shift);
  -webkit-mask-image: linear-gradient(90deg, transparent 34%, rgba(0,0,0,.2) 48%, #000 64%, #000 100%);
  mask-image: linear-gradient(90deg, transparent 34%, rgba(0,0,0,.2) 48%, #000 64%, #000 100%);
}
.blueprint-canvas {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  transform: translate3d(calc(var(--scene-x) + var(--pointer-x)), var(--pointer-y), 0) rotate(var(--pointer-r));
  transform-origin: center;
  will-change: transform;
}
.hero-ink-notes {
  position: absolute;
  z-index: 2;
  inset: 0;
  opacity: var(--hero-phase-opacity);
  transform: translateX(var(--scene-x));
  will-change: transform, opacity;
}
.hero-ink-notes span {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 11px;
  color: rgba(31,101,81,.72);
  background: rgba(247,242,232,.68);
  border-bottom: 1px solid rgba(201,154,58,.48);
  box-shadow: 0 8px 24px rgba(16,43,36,.06);
  font-family: Georgia, "Times New Roman", serif;
  font-size: .88rem;
  font-style: italic;
  opacity: 0;
  transform: translate3d(0, 12px, 0) rotate(-2deg);
  transition: opacity 650ms ease, transform 850ms cubic-bezier(.22,1,.36,1);
}
.hero-ink-notes span.is-active { opacity: 1; transform: translate3d(0, 0, 0) rotate(-2deg); animation: ink-note-drift 6s ease-in-out infinite; }
.hero-ink-notes span:nth-child(1) { top: 18%; left: 50%; margin-left: -70px; }
.hero-ink-notes span:nth-child(2) { top: 23%; left: 50%; margin-left: 65px; transform: translate3d(0, 12px, 0) rotate(2deg); }
.hero-ink-notes span:nth-child(2).is-active { transform: translate3d(0, 0, 0) rotate(2deg); }
.hero-ink-notes span:nth-child(3) { bottom: 17%; left: 50%; margin-left: -90px; }
.hero-ink-notes span:nth-child(4) { left: 50%; bottom: 20%; margin-left: 55px; transform: translate3d(0, 12px, 0) rotate(2deg); }
.hero-ink-notes span:nth-child(4).is-active { transform: translate3d(0, 0, 0) rotate(2deg); }
.hero-ink-notes i { color: var(--gold); font-style: normal; }
.blueprint-caption {
  position: absolute;
  z-index: 4;
  right: max(4.5%, calc((100% - 1180px) / 2));
  bottom: clamp(22px, 5%, 34px);
  display: grid;
  gap: 4px;
  padding: 11px 14px;
  text-align: right;
  color: rgba(22,75,61,.66);
  background: rgba(247,242,232,.52);
  border-right: 1px solid rgba(201,154,58,.55);
  backdrop-filter: blur(3px);
}
.blueprint-caption span { color: rgba(104,118,111,.76); font-size: .56rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.blueprint-caption strong { font-family: var(--serif); font-size: .93rem; font-weight: 400; }
.blueprint-caption.is-side-left { right: auto; left: max(4.5%, calc((100% - 1180px) / 2)); text-align: left; border-right: 0; border-left: 1px solid rgba(201,154,58,.55); }
.hero-copy { position: relative; }
.hero-copy::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -70px -90px;
  pointer-events: none;
  background: radial-gradient(ellipse at 42% 48%, rgba(247,242,232,.96) 0%, rgba(247,242,232,.83) 48%, transparent 76%);
}
.eyebrow { display: flex; align-items: center; gap: 10px; margin: 0 0 22px; color: var(--rust); font-size: .72rem; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.eyebrow > span { width: 28px; height: 1px; background: currentColor; }
h1, h2, h3, p { margin-top: 0; }
h1, h2 { font-family: var(--serif); font-weight: 400; letter-spacing: -.045em; }
h1 { max-width: 720px; margin-bottom: 27px; font-size: clamp(3.35rem, 5.7vw, 6rem); line-height: .98; }
h1 em, h2 em { color: var(--green-700); font-weight: 400; }
.hero-lead { max-width: 620px; margin-bottom: 34px; color: var(--muted); font-size: 1.08rem; line-height: 1.75; }
.hero-actions { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 20px; min-height: 50px; padding: 0 22px; border-radius: 8px; font-size: .85rem; font-weight: 750; text-decoration: none; transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { color: #fff; background: var(--rust); box-shadow: 0 12px 30px rgba(159,76,37,.2); }
.button-primary:hover { background: #843c1e; box-shadow: 0 15px 32px rgba(159,76,37,.27); }
.button-quiet { border: 1px solid var(--line); background: rgba(255,255,255,.45); }
.hero-download { width: min(100%, 430px); margin-top: 14px; color: #fff; background: var(--green-900); box-shadow: 0 12px 30px rgba(13,56,46,.2); }
.hero-download:hover { background: var(--green-700); box-shadow: 0 15px 32px rgba(13,56,46,.26); }
.button-quiet:hover { background: #fff; }
.hero-trust { max-width: 610px; margin: 18px 0 0; padding-left: 14px; color: var(--muted); border-left: 2px solid rgba(31,101,81,.28); font-size: .78rem; line-height: 1.6; }
.hero-notes { display: flex; gap: 22px; flex-wrap: wrap; margin-top: 34px; color: var(--muted); font-size: .76rem; }
.hero-notes span { display: flex; align-items: center; gap: 6px; }
.hero-notes b, .status-pill b, .eyebrow b { font: inherit; }
.hero-notes i { display: grid; place-items: center; width: 17px; height: 17px; color: var(--green-800); background: var(--green-100); border-radius: 50%; font-style: normal; font-size: .64rem; }

.hero-visual { position: relative; min-height: 610px; display: grid; place-items: center; }
.hero-globe-visual { min-height: 660px; }
.hero-globe-launch { position: relative; isolation: isolate; display: grid; place-items: center; width: min(100%, 620px); aspect-ratio: 1; padding: 0; color: var(--ink); background: transparent; border: 0; cursor: default; font: inherit; text-align: left; }
.hero-globe-launch::before { position: absolute; z-index: -2; inset: 9%; background: radial-gradient(circle at 46% 42%, rgba(29,101,81,.26), rgba(7,39,31,.1) 54%, transparent 72%); border-radius: 50%; filter: blur(12px); content: ''; transition: transform .5s cubic-bezier(.22,1,.36,1), opacity .5s ease; }
.hero-globe-launch:hover::before, .hero-globe-launch:focus-visible::before { opacity: 1; transform: scale(1.08); }
.hero-globe-launch:focus-visible { outline: 3px solid rgba(201,154,58,.52); outline-offset: 8px; border-radius: 50%; }
.hero-globe-orbit { position: absolute; z-index: -1; border: 1px solid rgba(201,154,58,.2); border-radius: 50%; pointer-events: none; }
.hero-globe-orbit-one { inset: 4%; }
.hero-globe-orbit-two { inset: 12%; border-style: dashed; animation: slow-spin 34s linear infinite; }
.hero-globe-canvas { position: relative; display: grid; place-items: center; width: 91%; aspect-ratio: 1; border-radius: 50%; transition: transform .55s cubic-bezier(.22,1,.36,1); }
.hero-globe-launch:hover .hero-globe-canvas, .hero-globe-launch:focus-visible .hero-globe-canvas { transform: scale(1.025); }
.hero-globe-light { position: absolute; z-index: 0; inset: 8%; background: radial-gradient(circle at 35% 27%, rgba(136,214,184,.19), transparent 36%), radial-gradient(circle at 66% 72%, rgba(218,181,91,.14), transparent 38%); border-radius: 50%; pointer-events: none; }
.hero-globe { position: relative; z-index: 2; display: block; width: 100%; height: auto; cursor: grab; filter: none; touch-action: none; }
.hero-globe:active { cursor: grabbing; }
.hero-globe-texture { position: absolute; z-index: 1; inset: 0; display: block; width: 100%; height: 100%; pointer-events: none; filter: drop-shadow(0 24px 38px rgba(12,49,40,.3)); }
.hero-globe-ocean { fill: transparent; }
.hero-globe-marker-layer { position: absolute; z-index: 3; inset: 0; pointer-events: none; }
.hero-globe-marker-layer .world-web-marker { pointer-events: auto; }
.hero-globe-heading { position: absolute; z-index: 5; top: -8%; left: 0; display: grid; gap: 4px; padding: 11px 14px; color: var(--ink); background: rgba(255,253,248,.82); border-left: 2px solid var(--gold); border-radius: 0 9px 9px 0; box-shadow: 0 12px 30px rgba(16,43,36,.09); backdrop-filter: blur(8px); }
.hero-globe-heading small { color: var(--rust); font-size: .58rem; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.hero-globe-heading strong { font-family: var(--serif); font-size: 1.05rem; font-weight: 400; }
.hero-globe-celestial { position: absolute; z-index: 4; top: -5.7%; left: 50%; display: flex; align-items: center; gap: 7px; min-height: 28px; padding: 0 10px; color: #d5e2dc; background: rgba(3,20,24,.68); border: 1px solid rgba(226,219,191,.18); border-radius: 999px; font-size: .55rem; font-weight: 800; letter-spacing: .035em; white-space: nowrap; transform: translate(calc(-50% + 48px), 0); backdrop-filter: blur(8px); }
.hero-globe-celestial i { width: 9px; height: 9px; flex: 0 0 9px; background: #e8c65e; border-radius: 50%; box-shadow: 0 0 9px rgba(232,198,94,.8); }
.hero-globe-celestial b { font: inherit; }
.hero-globe-locate { position: absolute; z-index: 6; right: 2%; bottom: 9%; display: flex; align-items: center; gap: 18px; min-height: 45px; padding: 0 16px; color: white; background: rgba(9,51,41,.93); border: 1px solid rgba(232,204,112,.48); border-radius: 999px; box-shadow: 0 14px 30px rgba(10,42,34,.2); cursor: pointer; transition: transform .2s ease, background .2s ease; }
.hero-globe-locate:hover, .hero-globe-locate:focus-visible { background: #174b3c; transform: translateY(-3px); }
.hero-globe-locate b { font-size: .7rem; }
.hero-globe-locate i { color: var(--gold-light); font-style: normal; font-size: 1rem; }
.hero-globe-detail { position: absolute; z-index: 7; top: 18%; right: 2%; display: grid; gap: 6px; width: min(230px, 42%); padding: 14px 16px; color: white; background: rgba(9,51,41,.94); border: 1px solid rgba(232,204,112,.52); border-radius: 14px; box-shadow: 0 18px 40px rgba(10,42,34,.22); backdrop-filter: blur(10px); }
.hero-globe-detail[hidden] { display: none; }
.hero-globe-detail strong { font-family: var(--serif); font-size: 1.05rem; font-weight: 500; }
.hero-globe-detail p, .hero-globe-detail div { margin: 0; color: rgba(239,246,239,.76); font-size: .68rem; line-height: 1.45; }
.hero-globe-detail div { display: grid; gap: 3px; }
.hero-globe-detail-close { position: absolute; top: 7px; right: 9px; width: 24px; height: 24px; padding: 0; color: var(--gold-light); background: transparent; border: 0; cursor: pointer; font-size: 1rem; }
.hero-globe-hint { position: absolute; z-index: 5; bottom: 1.5%; left: 50%; color: var(--muted); font-size: .61rem; font-weight: 800; letter-spacing: .04em; white-space: nowrap; transform: translateX(-50%); }
.visual-orbit { position: absolute; border: 1px solid rgba(201,154,58,.25); border-radius: 50%; }
.orbit-one { width: 470px; height: 470px; }
.orbit-two { width: 370px; height: 370px; border-style: dashed; animation: slow-spin 28s linear infinite; }
.overview-cluster { position: relative; z-index: 2; width: min(100%, 440px); }
.overview-card { position: relative; width: 100%; padding: 24px; background: rgba(255,253,248,.91); border: 1px solid rgba(20,58,47,.15); border-radius: 18px; box-shadow: var(--shadow); backdrop-filter: blur(12px); transform: rotate(1.2deg); }
.overview-card::before { content: ""; position: absolute; inset: 9px; pointer-events: none; border: 1px solid rgba(201,154,58,.28); border-radius: 12px; }
.overview-head { position: relative; display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; padding-bottom: 20px; border-bottom: 1px solid var(--line); }
.micro-label, .bento-kicker { display: block; margin-bottom: 8px; color: var(--rust); font-size: .62rem; font-weight: 850; letter-spacing: .13em; text-transform: uppercase; }
.overview-head h2 { margin: 0; font-size: 1.36rem; letter-spacing: -.025em; }
.status-pill { display: flex; align-items: center; gap: 7px; padding: 7px 10px; color: var(--green-800); background: var(--green-100); border-radius: 999px; font-size: .65rem; font-weight: 750; }
.status-pill i { width: 6px; height: 6px; background: #3c8e6b; border-radius: 50%; box-shadow: 0 0 0 4px rgba(60,142,107,.12); }
.overview-balance { position: relative; padding: 22px 0 20px; }
.overview-balance > span { color: var(--muted); font-size: .7rem; }
.overview-balance strong { display: block; margin: 5px 0 15px; font-family: var(--serif); font-size: 1.65rem; font-weight: 400; }
.balance-line { height: 5px; background: #e7e2d8; border-radius: 5px; overflow: hidden; }
.balance-line span { display: block; width: 74%; height: 100%; background: linear-gradient(90deg, var(--green-700), var(--gold)); border-radius: inherit; }
.asset-grid { position: relative; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 9px; }
.asset-tile { display: grid; grid-template-columns: 34px 1fr auto; align-items: center; gap: 10px; padding: 12px; background: rgba(255,255,255,.8); border: 1px solid var(--line); border-radius: 10px; }
.asset-tile strong { display: block; margin-bottom: 2px; font-size: .72rem; }
.asset-tile small { display: block; color: var(--muted); font-size: .66rem; }
.asset-tile b { color: var(--gold); font-weight: 400; }
.asset-icon { position: relative; width: 32px; height: 32px; background: var(--green-100); border-radius: 8px; }
.asset-icon::before, .asset-icon::after { content: ""; position: absolute; border: 1.4px solid var(--green-700); }
.building-icon::before { left: 9px; right: 9px; top: 7px; bottom: 6px; }
.building-icon::after { width: 2px; height: 2px; left: 14px; top: 11px; background: var(--green-700); box-shadow: 0 5px 0 var(--green-700), 0 10px 0 var(--green-700); border: 0; }
.document-icon::before { left: 9px; right: 9px; top: 6px; bottom: 6px; border-radius: 2px; }
.document-icon::after { left: 13px; right: 13px; top: 12px; height: 1px; border-width: 1px 0 0; box-shadow: 0 5px 0 rgba(31,101,81,.7); }
.calendar-icon::before { left: 7px; right: 7px; top: 9px; bottom: 7px; border-radius: 2px; }
.calendar-icon::after { left: 11px; top: 6px; width: 8px; height: 4px; border-width: 0 1.4px; }
.care-icon::before { width: 11px; height: 7px; left: 9px; top: 10px; border-width: 0 0 1.5px 1.5px; transform: rotate(-45deg); }
.care-icon::after { display: none; }
.overview-footer { position: relative; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 12px; margin-top: 18px; padding-top: 17px; border-top: 1px solid var(--line); }
.overview-footer p { margin: 0; color: var(--muted); font-size: .7rem; line-height: 1.45; }
.overview-footer p strong { color: var(--ink); }
.mini-avatars { display: flex; }
.mini-avatars span { display: grid; place-items: center; width: 25px; height: 25px; margin-left: -6px; color: transparent; background: var(--paper-2); border: 2px solid var(--paper); border-radius: 50%; }
.mini-avatars span:first-child { margin-left: 0; background: #d4b97e; }
.mini-avatars span:nth-child(2) { background: #94b9a8; }
.round-arrow { display: grid; place-items: center; width: 30px; height: 30px; color: white; background: var(--green-900); border-radius: 50%; }
.floating-note { position: absolute; z-index: 4; min-width: 140px; padding: 13px 16px; background: rgba(255,253,248,.94); border: 1px solid var(--line); border-radius: 10px; box-shadow: 0 15px 35px rgba(16,43,36,.13); }
.floating-note span { display: block; margin-bottom: 4px; color: var(--muted); font-size: .58rem; }
.floating-note strong { font-family: var(--serif); font-size: 1rem; font-weight: 400; }
.note-top { top: -36px; right: -38px; left: auto; transform: rotate(4.5deg); }
.note-bottom { top: auto; right: auto; bottom: -36px; left: -42px; transform: rotate(-4deg); }

.preview-section { position: relative; padding: 96px 0 104px; overflow: hidden; background: linear-gradient(135deg, rgba(255,253,248,.82), rgba(241,237,226,.72)); }
.preview-section::before { position: absolute; top: 50%; right: -190px; width: 520px; height: 520px; border: 1px solid rgba(201,154,58,.14); border-radius: 50%; box-shadow: 0 0 0 70px rgba(201,154,58,.026), 0 0 0 145px rgba(201,154,58,.018); content: ''; transform: translateY(-50%); }
.preview-layout { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0,.78fr) minmax(0,1.22fr); align-items: center; gap: clamp(60px,8vw,128px); }
.preview-copy h2 { margin-bottom: 24px; font-size: clamp(2.7rem,4.5vw,4.8rem); line-height: 1.04; }
.preview-copy > p:last-child { max-width: 500px; margin: 0; color: var(--muted); font-size: 1rem; line-height: 1.8; }
.preview-visual { position: relative; min-height: 650px; display: grid; place-items: center; }
.preview-visual .overview-cluster { width: min(100%,500px); }
.preview-visual .orbit-one { width: 540px; height: 540px; }
.preview-visual .orbit-two { width: 430px; height: 430px; }

.story-section, .organize-section { position: relative; isolation: isolate; padding-top: 100px; padding-bottom: 100px; overflow: hidden; }
.story-section > :not(.scene-decor), .organize-section > :not(.scene-decor) { position: relative; z-index: 1; }
.section-intro h2, .organize-heading h2 { margin-bottom: 0; font-size: clamp(2.5rem, 4.5vw, 4.5rem); line-height: 1.05; }
.story-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 90px; margin-top: 48px; }
.story-lead { max-width: 520px; color: var(--muted); font-family: var(--serif); font-size: 1.45rem; line-height: 1.6; }
.story-points { display: grid; }
.story-points > div { display: grid; grid-template-columns: 44px 1fr; gap: 18px; padding: 20px 0; border-top: 1px solid var(--line); }
.story-points > div:last-child { border-bottom: 1px solid var(--line); }
.story-points b { color: var(--gold); font-family: var(--serif); font-size: .9rem; }
.story-points p { margin: 0; }
.story-points strong, .story-points span { display: block; }
.story-points strong { margin-bottom: 7px; font-family: var(--serif); font-size: 1.12rem; }
.story-points span { color: var(--muted); font-size: .88rem; line-height: 1.65; }

.steps-section { position: relative; isolation: isolate; padding: 100px 0; background: var(--paper); border-block: 1px solid var(--line); overflow: hidden; }
.steps-section > .shell { position: relative; z-index: 1; }
.centered { text-align: center; }
.centered .eyebrow { justify-content: center; }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 48px; }
.step-card { position: relative; min-height: 350px; padding: 30px; background: var(--cream); border: 1px solid var(--line); border-radius: 14px; overflow: hidden; transition: border-color 220ms ease, box-shadow 220ms ease; }
.step-card.featured { color: white; background: var(--green-900); transform: translateY(-16px); box-shadow: 0 24px 55px rgba(13,56,46,.18); }
.step-card > :not(.step-open) { position: relative; z-index: 1; }
.step-card::after { content: ""; position: absolute; width: 180px; height: 180px; right: -70px; bottom: -70px; border: 1px solid rgba(201,154,58,.22); border-radius: 50%; box-shadow: 0 0 0 28px rgba(201,154,58,.04); }
.step-number { color: var(--gold); font-family: var(--serif); font-size: .85rem; }
.step-symbol { position: relative; width: 98px; height: 98px; margin: 42px 0 27px; }
.gather-symbol i { position: absolute; width: 44px; height: 55px; background: var(--paper); border: 1px solid rgba(13,56,46,.18); border-radius: 5px; box-shadow: 0 6px 16px rgba(13,56,46,.07); }
.gather-symbol i:first-child { left: 8px; top: 17px; transform: rotate(-8deg); }
.gather-symbol i:nth-child(2) { left: 29px; top: 8px; transform: rotate(3deg); }
.gather-symbol i:nth-child(3) { left: 47px; top: 21px; transform: rotate(10deg); }
.follow-symbol { display: grid; place-items: center; border: 1px solid rgba(255,255,255,.25); border-radius: 50%; }
.follow-symbol::before, .follow-symbol::after { content: ""; position: absolute; border-radius: 50%; }
.follow-symbol::before { inset: 15px; border: 1px dashed var(--gold-light); }
.follow-symbol::after { width: 12px; height: 12px; background: var(--gold); box-shadow: 0 0 0 7px rgba(201,154,58,.15); }
.follow-symbol i { width: 32px; height: 1px; background: white; transform: rotate(-35deg) translate(22px, -1px); transform-origin: left; }
.plan-symbol i { position: absolute; }
.plan-symbol i:first-child { left: 8px; right: 8px; top: 49px; height: 1px; background: var(--green-700); transform: rotate(-23deg); }
.plan-symbol i:nth-child(2) { width: 13px; height: 13px; right: 5px; top: 25px; border: 2px solid var(--gold); border-width: 2px 2px 0 0; transform: rotate(8deg); }
.step-card h3 { margin-bottom: 12px; font-family: var(--serif); font-size: 1.55rem; font-weight: 400; }
.step-card p { max-width: 300px; margin: 0; color: var(--muted); font-size: .92rem; line-height: 1.7; }
.step-card.featured p { color: rgba(255,255,255,.68); }
.step-open { position: absolute; inset: 0; z-index: 3; width: 100%; color: inherit; background: transparent; border: 0; border-radius: inherit; cursor: pointer; }
.step-open-label { position: absolute; top: 18px; right: 18px; display: inline-flex; align-items: center; gap: 8px; min-height: 42px; padding: 10px 13px; color: var(--green-900); background: rgba(255,253,248,.92); border: 1px solid var(--line); border-radius: 999px; box-shadow: 0 8px 24px rgba(16,43,36,.07); font-size: .7rem; font-weight: 750; transition: background 180ms ease, transform 180ms ease; }
.step-open-label i { color: var(--rust); font-size: .9rem; font-style: normal; }
.step-open:focus-visible { outline: 3px solid var(--gold); outline-offset: -5px; }
.step-card:has(.step-open:hover), .step-card:has(.step-open:focus-visible) { border-color: rgba(201,154,58,.48); box-shadow: 0 24px 56px rgba(13,56,46,.14); }
.step-open:hover .step-open-label, .step-open:focus-visible .step-open-label { background: white; transform: translateY(-2px); }
.step-card.featured .step-open-label { color: white; background: rgba(255,255,255,.11); border-color: rgba(255,255,255,.18); box-shadow: none; }
.step-card.featured .step-open-label i { color: var(--gold-light); }
.step-card.featured .step-open:hover .step-open-label, .step-card.featured .step-open:focus-visible .step-open-label { background: rgba(255,255,255,.18); }

.organize-heading { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(0, .75fr); gap: 72px; align-items: end; margin-bottom: 46px; }
.organize-heading > p { margin: 0 0 8px; color: var(--muted); font-size: .92rem; line-height: 1.8; }
.bento-grid { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); gap: 16px; }
.bento-card { grid-column: span 4; position: relative; min-height: 320px; padding: clamp(25px, 2.4vw, 30px); background: var(--paper); border: 1px solid var(--line); border-radius: 15px; overflow: hidden; transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease; }
.bento-card h3 { max-width: 430px; margin-bottom: 14px; font-family: var(--serif); font-size: 1.45rem; font-weight: 400; line-height: 1.25; }
.bento-card p { max-width: 510px; color: var(--muted); font-size: .88rem; line-height: 1.7; }
.bento-large { grid-column: span 8; }
.bento-wide { grid-column: span 6; display: flex; justify-content: space-between; gap: 30px; }
.feature-assets { grid-column: span 8; }
.feature-finance { grid-column: span 4; }
.feature-documents { grid-column: span 4; }
.feature-continuity { grid-column: span 8; }
.feature-care { grid-column: span 12; min-height: 250px; display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.dark-card { color: white; background: var(--green-900); }
.dark-card p { color: rgba(255,255,255,.66); }
.feature-assets > p { max-width: none; white-space: nowrap; font-size: clamp(.68rem, .78vw, .82rem); letter-spacing: -.01em; }
.dark-card .bento-kicker { color: var(--gold-light); }
.soft-card { background: #e9f0e9; }
.property-lines { position: absolute; right: 32px; bottom: 28px; left: 32px; display: grid; gap: 8px; }
.property-lines span { display: grid; grid-template-columns: 34px 1fr; gap: 10px; align-items: center; padding: 8px; background: rgba(255,255,255,.07); border-radius: 7px; }
.property-lines i { height: 28px; background: rgba(228,194,117,.45); border-radius: 4px; }
.property-lines b { display: block; width: 45%; height: 4px; background: rgba(255,255,255,.32); border-radius: 3px; box-shadow: 0 9px 0 rgba(255,255,255,.12); }
.date-card { position: absolute; left: 30px; right: 30px; bottom: 30px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 15px; padding: 18px; background: #fbf4dd; border: 1px solid rgba(201,154,58,.25); border-radius: 10px; }
.date-card strong { color: var(--rust); font-family: var(--serif); font-size: 2.5rem; font-weight: 400; }
.date-card span { color: var(--muted); font-size: .7rem; line-height: 1.4; }
.date-card i { font-style: normal; }
.document-stack { position: absolute; right: 30px; bottom: 30px; left: 30px; height: 105px; }
.document-stack i { position: absolute; right: 0; left: 0; height: 70px; background: var(--paper-2); border: 1px solid rgba(20,58,47,.15); border-radius: 8px; box-shadow: 0 6px 15px rgba(20,58,47,.07); }
.document-stack i:first-child { top: 28px; transform: scale(.9); }
.document-stack i:nth-child(2) { top: 14px; transform: scale(.95); }
.document-stack i:nth-child(3) { top: 0; background: white; }
.document-stack i:nth-child(3)::before { content: ""; position: absolute; top: 19px; left: 20px; width: 42%; height: 4px; background: var(--green-100); box-shadow: 0 12px 0 #ece8df, 0 24px 0 #ece8df; }
.timeline-visual { align-self: flex-end; min-width: 230px; display: flex; justify-content: space-between; position: relative; margin-bottom: 42px; }
.timeline-visual::before { content: ""; position: absolute; left: 15px; right: 15px; top: 7px; height: 1px; background: var(--line); }
.timeline-visual span { position: relative; text-align: center; }
.timeline-visual i { display: block; width: 15px; height: 15px; margin: 0 auto 10px; background: var(--paper); border: 2px solid #a8b4ae; border-radius: 50%; }
.timeline-visual .active i { background: var(--gold); border-color: var(--gold); box-shadow: 0 0 0 5px rgba(201,154,58,.13); }
.timeline-visual b { color: var(--muted); font-size: .62rem; font-weight: 650; }
.care-checks { align-self: end; display: flex; gap: 4px; margin-bottom: 2px; }
.care-checks span { display: grid; place-items: center; width: 38px; height: 38px; color: white; border-radius: 50%; font-weight: 800; }
.care-checks .is-green { background: var(--green-700); }
.care-checks .is-gold { color: #173e34; background: var(--gold-light); box-shadow: inset 0 0 0 1px rgba(23,62,52,.12); }

.bento-open { position: absolute; inset: 0; z-index: 3; width: 100%; padding: 16px; color: inherit; background: transparent; border: 0; border-radius: inherit; cursor: pointer; text-align: right; }
.bento-open-label { position: absolute; right: 17px; bottom: 16px; display: inline-flex; align-items: center; gap: 9px; min-height: 42px; padding: 10px 13px; color: var(--green-900); background: rgba(255,253,248,.94); border: 1px solid rgba(20,58,47,.13); border-radius: 999px; box-shadow: 0 8px 24px rgba(16,43,36,.08); font-size: .7rem; font-weight: 750; opacity: .88; transform: translateY(3px); transition: opacity 200ms ease, transform 200ms ease, background 200ms ease; }
.bento-open-label i { color: var(--rust); font-size: .9rem; font-style: normal; }
.bento-open:focus-visible { outline: 3px solid var(--gold); outline-offset: -5px; }
.bento-card:has(.bento-open:hover), .bento-card:has(.bento-open:focus-visible) { border-color: rgba(201,154,58,.42); box-shadow: 0 18px 48px rgba(18,63,51,.13); transform: translateY(-4px); }
.bento-open:hover .bento-open-label, .bento-open:focus-visible .bento-open-label { background: white; opacity: 1; transform: translateY(0); }
.dark-card .bento-open-label { color: white; background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.17); box-shadow: none; }
.dark-card .bento-open-label i { color: var(--gold-light); }
.dark-card .bento-open:hover .bento-open-label, .dark-card .bento-open:focus-visible .bento-open-label { background: rgba(255,255,255,.18); }

.product-directory { position: relative; z-index: 2; margin-top: clamp(56px, 7vw, 82px); padding-top: clamp(36px, 5vw, 54px); border-top: 1px solid var(--line); }
.product-directory-heading { display: grid; grid-template-columns: minmax(0, 1fr) minmax(280px, .7fr); gap: 48px; align-items: end; margin-bottom: 32px; }
.product-directory-heading h3 { max-width: 680px; margin: 12px 0 0; font-family: var(--serif); font-size: clamp(2rem, 4vw, 3.45rem); font-weight: 400; line-height: 1.06; }
.product-directory-heading > p { margin: 0 0 5px; color: var(--muted); font-size: .92rem; line-height: 1.75; }
.product-card-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.product-card { position: relative; display: grid; grid-template-columns: 42px minmax(0, 1fr) auto; grid-template-rows: auto auto; column-gap: 18px; row-gap: 5px; width: 100%; min-height: 112px; padding: 18px 22px; color: var(--ink); background: rgba(255,253,248,.84); border: 1px solid var(--line); border-radius: 13px; cursor: pointer; text-align: left; transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease, background 220ms ease; }
.product-card-map, .product-support-note { display: none; }
.product-card > span { grid-row: 1 / 3; align-self: start; color: var(--gold); font-size: .68rem; font-weight: 850; letter-spacing: .08em; }
.product-card > strong { font-family: var(--serif); font-size: 1.18rem; font-weight: 400; line-height: 1.25; }
.product-card > small { grid-column: 2; color: var(--muted); font-size: .8rem; line-height: 1.6; }
.product-card > i { grid-column: 3; grid-row: 1 / 3; align-self: center; color: var(--rust); font-size: 1rem; font-style: normal; }
.product-card:hover { background: white; border-color: rgba(201,154,58,.48); box-shadow: 0 16px 42px rgba(18,63,51,.1); transform: translateY(-3px); }
.product-card:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }
.product-card-map { background: var(--green-900); color: white; border-color: rgba(228,194,117,.3); }
.product-card-map > small { color: rgba(255,255,255,.7); }
.product-card-map > span { color: var(--gold-light); }
.product-card-map > i { color: var(--gold-light); }
.product-support-note { margin: 22px 0 0; padding: 18px 22px; color: var(--muted); background: rgba(231,240,233,.66); border-left: 3px solid var(--green-700); font-size: .76rem; line-height: 1.65; }

.feature-dialog { position: fixed !important; inset: 0; width: min(520px, 100%); max-width: none; height: 100dvh; max-height: none; margin: 0 0 0 auto; padding: 0; color: var(--ink); background: transparent; border: 0; overflow: hidden; }
.feature-dialog.has-demo { width: min(720px, 100%); }
.feature-dialog[open] { display: grid; }
.feature-dialog::backdrop { background: rgba(6,39,31,.54); backdrop-filter: blur(4px); }
.feature-panel { position: relative; min-height: 100%; padding: clamp(34px, 6vw, 64px); background: var(--paper); overflow: auto; overscroll-behavior: contain; box-shadow: -22px 0 80px rgba(8,45,37,.2); }
.feature-close { position: absolute; z-index: 2; top: 22px; right: 22px; display: grid; place-items: center; width: 46px; height: 46px; color: var(--green-900); background: var(--paper-2); border: 1px solid var(--line); border-radius: 50%; cursor: pointer; font-size: 1.55rem; line-height: 1; transition: transform 180ms ease, background 180ms ease; }
.feature-close:hover { background: var(--green-100); transform: rotate(4deg); }
.feature-close:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }
.feature-panel-mark { display: flex; align-items: flex-end; gap: 5px; width: 64px; height: 48px; margin-bottom: 54px; }
.feature-panel-mark i { display: block; width: 15px; background: rgba(31,101,81,.18); border: 1px solid rgba(31,101,81,.35); border-radius: 3px 3px 0 0; }
.feature-panel-mark i:first-child { height: 22px; }
.feature-panel-mark i:nth-child(2) { height: 34px; }
.feature-panel-mark i:last-child { height: 46px; background: rgba(201,154,58,.18); border-color: rgba(201,154,58,.48); }
.feature-panel h2 { max-width: 410px; margin: 12px 0 20px; font-family: var(--serif); font-size: clamp(2.15rem, 5vw, 3.25rem); font-weight: 400; line-height: 1.04; }
.feature-panel > p { color: var(--muted); line-height: 1.75; }
.feature-panel ul { display: grid; gap: 0; margin: 36px 0 32px; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.feature-panel li { position: relative; padding: 18px 8px 18px 32px; border-bottom: 1px solid var(--line); line-height: 1.55; }
.feature-panel li::before { content: "✓"; position: absolute; top: 18px; left: 2px; color: var(--green-700); font-weight: 800; }
.feature-detail-note { padding-top: 24px; color: var(--rust) !important; border-top: 1px solid rgba(201,154,58,.35); font-family: var(--serif); font-size: 1.18rem; font-style: italic; }

.improvement-dialog { position: fixed !important; inset: 0; width: min(520px, 100%); max-width: none; height: auto; max-height: 100dvh; margin: auto 0 auto auto; padding: 0; color: var(--ink); background: transparent; border: 0; overflow: hidden; }
.improvement-dialog[open] { display: grid; }
.improvement-dialog::backdrop { background: rgba(6,39,31,.54); backdrop-filter: blur(4px); }
.improvement-panel { position: relative; padding: clamp(34px, 6vw, 64px); background: var(--paper); box-shadow: -22px 0 80px rgba(8,45,37,.2); }
.improvement-panel h2 { max-width: 410px; margin: 16px 0 20px; font-family: var(--serif); font-size: clamp(2rem, 5vw, 3rem); font-weight: 400; line-height: 1.05; }
.improvement-panel p { color: var(--muted); line-height: 1.75; }
.improvement-note { padding-top: 22px; color: var(--rust) !important; border-top: 1px solid rgba(201,154,58,.35); font-family: var(--serif); font-size: 1.08rem; font-style: italic; }

.feature-detail-demo { margin-top: 32px; }
.product-example { overflow: hidden; background: #f8f5ed; border: 1px solid var(--line); border-radius: 16px; }
.product-example-head { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 20px 22px; background: var(--green-900); }
.product-example-head h3 { margin: 0; color: white; font-family: var(--serif); font-size: 1.2rem; font-weight: 400; }
.product-example-head span { flex: 0 0 auto; padding: 6px 9px; color: var(--green-900); background: var(--gold-light); border-radius: 999px; font-size: .62rem; font-weight: 800; }
.product-example-rows { display: grid; }
.product-example-row { display: grid; grid-template-columns: minmax(120px, .7fr) minmax(0, 1.3fr); gap: 18px; padding: 15px 20px; border-bottom: 1px solid var(--line); }
.product-example-row:last-child { border-bottom: 0; }
.product-example-row span { color: var(--muted); font-size: .7rem; }
.product-example-row strong { font-size: .78rem; text-align: right; }
.product-example-footnote { margin: 14px 2px 0; }

.world-web-dialog { position: fixed !important; inset: 0; width: 100%; max-width: none; height: 100dvh; max-height: none; margin: 0; padding: 0; color: white; background-color: #061c21; background-image: radial-gradient(circle at 8% 17%, rgba(255,255,255,.68) 0 1px, transparent 1.5px), radial-gradient(circle at 19% 69%, rgba(255,255,255,.42) 0 1px, transparent 1.5px), radial-gradient(circle at 42% 11%, rgba(255,255,255,.56) 0 1px, transparent 1.5px), radial-gradient(circle at 65% 27%, rgba(255,255,255,.4) 0 1px, transparent 1.5px), radial-gradient(circle at 82% 9%, rgba(255,255,255,.62) 0 1px, transparent 1.5px), radial-gradient(circle at 93% 63%, rgba(255,255,255,.4) 0 1px, transparent 1.5px), radial-gradient(circle at 58% 88%, rgba(255,255,255,.52) 0 1px, transparent 1.5px), radial-gradient(circle at 23% 18%, rgba(91,147,126,.18), transparent 27%), radial-gradient(circle at 78% 72%, rgba(190,154,74,.12), transparent 26%), linear-gradient(145deg,#061c21 0%,#0b302c 50%,#07181d 100%); border: 0; overflow: hidden; }
.world-web-dialog::backdrop { background: rgba(2,22,18,.78); backdrop-filter: blur(6px); }
.world-web-shell { position: relative; display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(330px, .65fr); align-items: center; gap: clamp(24px, 5vw, 72px); width: min(1480px, 100% - 48px); height: 100%; margin: 0 auto; padding: 42px 0; }
.world-web-close { position: absolute; z-index: 3; top: 22px; right: 0; display: grid; place-items: center; width: 44px; height: 44px; color: white; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.18); border-radius: 50%; cursor: pointer; font-size: 1.5rem; }
.world-web-close:hover, .world-web-close:focus-visible { background: rgba(255,255,255,.16); }
.world-web-visual { position: relative; min-height: min(78vh, 760px); display: grid; place-items: center; }
.world-web-glow { position: absolute; inset: 10% 7%; background: radial-gradient(circle at 42% 38%, rgba(80,162,134,.24), transparent 40%), radial-gradient(circle at 60% 68%, rgba(213,174,70,.12), transparent 35%); pointer-events: none; }
.world-web-celestial-status { position: absolute; z-index: 4; top: 1.5%; left: 50%; display: flex; align-items: center; gap: 8px; min-height: 30px; padding: 0 11px; color: #bfd0c9; background: rgba(3,20,24,.62); border: 1px solid rgba(226,219,191,.17); border-radius: 999px; font-size: .62rem; font-weight: 800; letter-spacing: .04em; white-space: nowrap; transform: translateX(-50%); backdrop-filter: blur(8px); }
.world-web-sun, .world-web-moon { position: relative; width: 10px; height: 10px; flex: 0 0 10px; border-radius: 50%; }
.world-web-sun { background: #e8c65e; box-shadow: 0 0 9px rgba(232,198,94,.8); }
.world-web-moon { overflow: hidden; background: #cbd9db; border: 1px solid #cbd9db; }
.world-web-moon::after { position: absolute; top: -2px; left: 3px; width: 10px; height: 10px; background: #17343a; border-radius: 50%; content: ''; }
.world-web-globe { position: relative; z-index: 2; width: min(100%, 760px); height: auto; cursor: grab; touch-action: none; filter: none; }
.world-web-globe-texture { position: absolute; z-index: 1; top: 50%; left: 50%; display: block; width: min(100%,760px); aspect-ratio: 1; pointer-events: none; transform: translate(-50%,-50%); filter: drop-shadow(0 28px 44px rgba(0,0,0,.42)); }
.world-web-globe:active { cursor: grabbing; }
.world-web-atmosphere { fill: none; stroke: none; }
.world-web-ocean { fill: transparent; }
.world-web-graticule { fill: none; stroke: rgba(191,222,210,.045); stroke-width: .55; }
.world-web-land { fill: none; stroke: rgba(235,231,201,.14); stroke-width: .4; }
.world-web-borders { fill: none; stroke: rgba(241,237,213,.1); stroke-width: .35; }
.world-web-night { fill: rgba(2,11,18,.06); }
.world-web-edge { fill: none; stroke: rgba(208,229,220,.28); stroke-width: 1.2; }
.world-web-marker-layer { position: absolute; inset: 0; z-index: 3; pointer-events: none; }
.world-web-marker-layer.is-regional .world-web-marker:not(.is-user) .world-web-marker-label { opacity: .94; visibility: visible; border-color: rgba(237,207,124,.48); background: rgba(23,67,54,.92); }
.world-web-marker { position: absolute; z-index: 5; display: block; width: 34px; height: 34px; padding: 0; color: #fff8e6; background: transparent; border: 0; cursor: pointer; text-align: left; pointer-events: auto; transform: translate(-50%, -50%); }
.world-web-marker:not(.is-user):hover, .world-web-marker:not(.is-user):focus-visible, .world-web-marker:not(.is-user).is-selected { z-index: 7; }
.world-web-marker[hidden] { display: none; }
.world-web-pulse { position: absolute; inset: 2px; width: 30px; height: 30px; border: 1px solid rgba(255,246,216,.64); border-radius: 50%; background: rgba(208,173,76,.08); box-shadow: 0 0 0 4px rgba(208,173,76,.14), 0 0 16px rgba(236,201,99,.56); }
.world-web-pulse::after { position: absolute; inset: -6px; border: 1px solid rgba(236,201,99,.5); border-radius: 50%; content: ''; animation: world-web-marker-pulse 2.2s ease-out infinite; }
.world-web-marker-house { position: absolute; z-index: 1; top: 5px; left: 5px; display: grid; place-items: center; width: 24px; height: 24px; color: var(--gold-light); background: #173e34; border: 1px solid rgba(232,204,112,.72); border-radius: 50%; box-shadow: inset 0 0 0 2px rgba(232,204,112,.08), 0 0 8px rgba(236,201,99,.35); transition: transform .18s ease, box-shadow .18s ease; }
.world-web-marker-house svg { width: 14px; height: 14px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.world-web-marker:hover .world-web-marker-house, .world-web-marker:focus-visible .world-web-marker-house, .world-web-marker.is-selected .world-web-marker-house { transform: translateY(-2px) scale(1.08); filter: drop-shadow(0 0 6px rgba(236,201,99,.62)); }
.world-web-marker.is-user { width: 48px; height: 63px; transform: translate(-50%, -92%); }
.world-web-marker.is-user:hover, .world-web-marker.is-user:focus-visible, .world-web-marker.is-user.is-selected { z-index: 7; }
.world-web-marker.is-user .world-web-pulse { display: none; }
.world-web-marker-avatar { position: absolute; z-index: 1; top: 0; left: 0; width: 48px; height: 63px; border: 0; border-radius: 0; background: transparent; box-shadow: none; }
.world-web-marker-avatar svg { width: 48px; height: 63px; overflow: visible; filter: drop-shadow(0 3px 5px rgba(0,0,0,.32)); }
.marker-person-pin { fill: #173e34; stroke: #e8cc70; stroke-width: 1.5; }
.marker-person-field { fill: #f8f4e8; stroke: #e8cc70; stroke-width: 2; }
.marker-person-head, .marker-person-body { fill: #173e34; stroke: none; }
.marker-person-ground { fill: none; stroke: #173e34; stroke-width: 3; }
.world-web-marker.is-user .world-web-marker-label { top: 42%; left: 54px; }
.world-web-marker-label { position: absolute; top: 50%; left: 38px; display: grid; gap: 1px; min-width: 112px; padding: 6px 9px; color: white; background: rgba(4,25,27,.78); border: 1px solid rgba(236,224,190,.24); border-radius: 8px; box-shadow: 0 8px 20px rgba(0,0,0,.28); backdrop-filter: blur(7px); opacity: 0; visibility: hidden; transform: translateY(-50%); transition: opacity .16s ease, visibility .16s ease; text-align: left; white-space: nowrap; pointer-events: none; }
.world-web-marker:hover .world-web-marker-label, .world-web-marker:focus-visible .world-web-marker-label, .world-web-marker.is-selected .world-web-marker-label { opacity: 1; visibility: visible; border-color: rgba(237,207,124,.72); background: rgba(23,67,54,.92); }
.world-web-marker-label strong { font-size: 11px; }
.world-web-marker-label small { color: #b6c9c2; font-size: 9px; font-weight: 800; }
.world-web-marker.is-arriving .world-web-marker-avatar { animation: world-web-avatar-arrival .92s cubic-bezier(.22,.8,.3,1) both; }
@keyframes world-web-avatar-arrival { 0% { opacity: 0; transform: translateY(-18px) scale(.7) rotate(-8deg); } 68% { opacity: 1; transform: translateY(3px) scale(1.08) rotate(2deg); } 100% { opacity: 1; transform: translateY(0) scale(1) rotate(0); } }
@keyframes world-web-marker-pulse { 0% { opacity: .9; transform: scale(.65); } 75%, 100% { opacity: 0; transform: scale(1.45); } }
.world-web-controls { position: absolute; z-index: 3; top: calc(50% + 354px); bottom: auto; left: 50%; display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 7px; width: max-content; max-width: calc(100vw - 24px); transform: translateX(-50%); }
.world-web-controls > span { margin-right: 5px; color: rgba(255,255,255,.6); font-size: .62rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.world-web-controls button { min-width: 38px; height: 38px; padding: 0 10px; color: white; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.2); border-radius: 8px; cursor: pointer; font: inherit; font-size: .82rem; }
.world-web-controls button:hover, .world-web-controls button:focus-visible { background: rgba(255,255,255,.16); }
.world-web-controls button[data-world-web-rotation] { min-width: 136px; font-size: .65rem; }
.world-web-controls button[data-world-web-reset] { min-width: 112px; font-size: .62rem; }
.world-web-drag-note { position: absolute; z-index: 3; top: calc(50% + 406px); bottom: auto; left: 50%; margin: 0; color: #94aca5; font-size: .61rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; transform: translateX(-50%); white-space: nowrap; }
.world-web-panel { position: relative; z-index: 2; padding: clamp(28px, 4vw, 48px); background: rgba(11,55,45,.65); border: 1px solid rgba(178,227,205,.2); border-radius: 20px; box-shadow: 0 24px 70px rgba(0,0,0,.18); }
.world-web-panel h2 { margin: 14px 0 18px; color: white; font-family: var(--serif); font-size: clamp(2.15rem, 4.4vw, 4rem); font-weight: 400; line-height: 1.02; }
.world-web-panel > p:not(.bento-kicker):not(.world-web-status) { color: rgba(255,255,255,.7); font-size: .82rem; line-height: 1.75; }
.world-web-detail { margin-top: 24px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.16); }
.world-web-detail-label { color: var(--gold-light); font-size: .62rem; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.world-web-detail h3 { margin: 9px 0 14px; color: white; font-family: var(--serif); font-size: 1.45rem; font-weight: 400; }
.world-web-detail p { color: rgba(255,255,255,.72); font-size: .76rem; line-height: 1.6; }
.world-web-city-list { display: grid; gap: 7px; }
.world-web-city-list button { display: flex; align-items: center; justify-content: space-between; gap: 14px; width: 100%; padding: 11px 12px; color: white; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12); border-radius: 9px; cursor: pointer; text-align: left; }
.world-web-city-list button:hover, .world-web-city-list button:focus-visible { background: rgba(255,255,255,.1); border-color: rgba(228,194,117,.5); }
.world-web-city-list span { display: grid; gap: 3px; }
.world-web-city-list strong { font-size: .72rem; }
.world-web-city-list small { color: rgba(255,255,255,.6); font-size: .58rem; }
.world-web-city-list b { display: grid; place-items: center; width: 28px; height: 28px; color: #092b22; background: var(--gold-light); border-radius: 50%; font-size: .7rem; }
.world-web-properties { display: grid; gap: 5px; }
.world-web-properties span { padding: 9px 11px; color: rgba(255,255,255,.8); background: rgba(255,255,255,.06); border-radius: 7px; font-size: .68rem; }
.world-web-privacy { display: flex; gap: 10px; margin-top: 22px; padding-top: 18px; color: rgba(255,255,255,.65); border-top: 1px solid rgba(255,255,255,.14); font-size: .64rem; line-height: 1.5; }
.world-web-privacy > span:first-child { color: var(--gold-light); font-size: 1.15rem; }
.world-web-privacy strong { color: white; }
.world-web-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; margin-top: 20px; }
.world-web-locate, .world-web-enter { min-height: 44px; padding: 10px 13px; border-radius: 9px; cursor: pointer; font: inherit; font-size: .68rem; font-weight: 800; }
.world-web-locate { color: white; background: transparent; border: 1px solid rgba(255,255,255,.2); }
.world-web-enter { color: #092b22; background: var(--gold-light); border: 1px solid var(--gold-light); }
.world-web-locate:hover, .world-web-locate:focus-visible { background: rgba(255,255,255,.1); }
.world-web-enter:hover, .world-web-enter:focus-visible { background: #f0d697; }
.world-web-status { margin: 14px 0 0; color: rgba(255,255,255,.5) !important; font-size: .62rem !important; line-height: 1.5; }
.world-web-source-credit { margin: 7px 0 0; color: rgba(255,255,255,.34); font-size: .54rem; }
.demo-badge { display: inline-flex; align-items: center; min-height: 30px; margin-bottom: 18px; padding: 7px 10px; color: var(--rust); background: #fff6d8; border: 1px solid rgba(201,154,58,.3); border-radius: 999px; font-size: .62rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.demo-surface { padding: clamp(20px, 3.5vw, 28px); background: #f8f5ed; border: 1px solid var(--line); border-radius: 16px; }
.demo-property-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; }
.demo-property-head h3 { margin: 0 0 5px; font-family: var(--serif); font-size: 1.35rem; font-weight: 400; }
.demo-property-head p { margin: 0; color: var(--muted); font-size: .76rem; }
.demo-status { flex: 0 0 auto; padding: 7px 10px; color: var(--green-700); background: var(--green-100); border-radius: 999px; font-size: .66rem; font-weight: 750; }
.demo-value-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; margin-top: 24px; }
.demo-value-card { padding: 16px; background: white; border: 1px solid var(--line); border-radius: 10px; }
.demo-value-card span, .demo-stat span { display: block; margin-bottom: 6px; color: var(--muted); font-size: .65rem; }
.demo-value-card strong { font-family: var(--serif); font-size: 1.25rem; font-weight: 400; }
.demo-value-card em { display: block; margin-top: 7px; color: var(--green-700); font-size: .68rem; font-style: normal; font-weight: 750; }
.demo-stat-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1px; margin: 18px 0; overflow: hidden; background: var(--line); border: 1px solid var(--line); border-radius: 10px; }
.demo-stat { padding: 15px; background: var(--paper); }
.demo-stat strong { font-size: .83rem; }
.demo-secondary, .demo-action, .demo-reset { min-height: 44px; padding: 10px 14px; color: var(--green-900); background: white; border: 1px solid rgba(20,58,47,.18); border-radius: 9px; cursor: pointer; font: inherit; font-size: .72rem; font-weight: 750; transition: background 180ms ease, border-color 180ms ease; }
.demo-secondary:hover, .demo-action:hover, .demo-reset:hover { background: var(--green-100); border-color: rgba(31,101,81,.35); }
.demo-secondary:focus-visible, .demo-action:focus-visible, .demo-reset:focus-visible, .demo-plan-step:focus-visible { outline: 3px solid var(--gold); outline-offset: 2px; }
.demo-linked-docs { margin-top: 14px; }
.demo-linked-docs ul { margin: 0; padding: 0; border: 0; list-style: none; }
.demo-linked-docs li { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 12px 4px; border-bottom: 1px solid var(--line); font-size: .78rem; }
.demo-linked-docs li::before { content: none; }
.demo-linked-docs small { color: var(--muted); }
.demo-agenda-head { display: flex; align-items: end; justify-content: space-between; gap: 18px; margin-bottom: 16px; }
.demo-agenda-head h3 { margin: 0; font-family: var(--serif); font-size: 1.3rem; font-weight: 400; }
.demo-summary { text-align: right; }
.demo-summary span { display: block; color: var(--muted); font-size: .68rem; }
.demo-summary strong { display: block; margin-top: 3px; color: var(--rust); font-family: var(--serif); font-size: 1.08rem; font-weight: 400; }
.demo-payment-list { display: grid; gap: 10px; }
.demo-payment-row { display: grid; grid-template-columns: 62px minmax(0, 1fr) auto auto; align-items: center; gap: 14px; padding: 14px; border: 1px solid rgba(201,154,58,.28); border-radius: 11px; transition: background 200ms ease, border-color 200ms ease; }
.demo-payment-row.is-pending { background: #fff8db; }
.demo-payment-row.is-paid { background: #e3f2eb; border-color: rgba(31,101,81,.22); }
.demo-payment-date { color: var(--rust); font-size: .66rem; font-weight: 800; }
.demo-payment-copy strong, .demo-payment-copy span { display: block; }
.demo-payment-copy strong { margin-bottom: 4px; font-size: .8rem; }
.demo-payment-copy span { color: var(--muted); font-size: .68rem; }
.demo-payment-amount { white-space: nowrap; font-size: .8rem; font-weight: 800; }
.demo-action { min-width: 120px; }
.demo-action[aria-pressed="true"] { color: white; background: var(--green-700); border-color: var(--green-700); }
.demo-footer { display: flex; align-items: center; justify-content: space-between; gap: 18px; margin-top: 18px; }
.demo-footnote { margin: 0; color: var(--muted); font-size: .65rem; line-height: 1.55; }
.demo-reset { flex: 0 0 auto; color: var(--rust); background: transparent; }
.demo-plan-list { display: grid; gap: 10px; }
.demo-plan-step { display: grid; grid-template-columns: 86px minmax(0, 1fr) auto; align-items: center; gap: 14px; width: 100%; min-height: 64px; padding: 13px 15px; color: var(--ink); background: white; border: 1px solid var(--line); border-radius: 11px; cursor: pointer; text-align: left; transition: background 180ms ease, border-color 180ms ease; }
.demo-plan-step[aria-pressed="true"] { background: #edf4ee; border-color: rgba(31,101,81,.42); }
.demo-plan-step > span { color: var(--rust); font-size: .66rem; font-weight: 800; }
.demo-plan-step strong { font-size: .8rem; }
.demo-plan-step i { color: var(--green-700); font-size: .7rem; font-style: normal; font-weight: 750; }
.demo-plan-detail { margin-top: 14px; padding: 16px; color: var(--muted); background: #fff9e8; border-left: 3px solid var(--gold); font-size: .75rem; line-height: 1.65; }

.scene-decor { position: absolute; z-index: 0; pointer-events: none; overflow: hidden; opacity: 0; transition: opacity 900ms ease; }
.scene-decor.is-visible { opacity: 1; }
.scene-decor canvas { display: block; width: 100%; height: 100%; }
.scene-note {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 11px;
  color: rgba(31,101,81,.72);
  background: rgba(247,242,232,.72);
  border-bottom: 1px solid rgba(201,154,58,.48);
  box-shadow: 0 8px 24px rgba(16,43,36,.055);
  font-family: Georgia, "Times New Roman", serif;
  font-size: .86rem;
  font-style: italic;
  opacity: 0;
  transform: translateY(10px) rotate(-2deg);
  transition: opacity 700ms 500ms ease, transform 900ms 500ms cubic-bezier(.22,1,.36,1);
}
.scene-decor.is-visible .scene-note { opacity: .82; transform: translateY(0) rotate(-2deg); }
.scene-note i { color: var(--gold); font-style: normal; }
.scene-decor-story { inset: 10% -12% -4% 34%; opacity: 0; -webkit-mask-image: linear-gradient(90deg, transparent, #000 24%); mask-image: linear-gradient(90deg, transparent, #000 24%); }
.scene-decor-story.is-visible { opacity: .72; }
.note-story { top: 8%; right: 13%; }
.scene-decor-steps { inset: 0; }
.scene-decor-steps.is-visible { opacity: .48; }
.note-steps { top: 14%; right: max(4%, calc((100% - 1180px) / 2)); transform: translateY(10px) rotate(2deg); }
.scene-decor-steps.is-visible .note-steps { transform: translateY(0) rotate(2deg); }
.scene-decor-organize { inset: 3% -7% 0; -webkit-mask-image: linear-gradient(90deg, #000, transparent 48%, transparent 55%, #000); mask-image: linear-gradient(90deg, #000, transparent 48%, transparent 55%, #000); }
.scene-decor-organize.is-visible { opacity: .56; }
.note-organize { top: 4%; right: 4%; }
.scene-decor-vision { inset: -8% -18% -8% 22%; }
.scene-decor-vision canvas { transform: scale(1.18); transform-origin: center right; }
.scene-decor-vision.is-visible { opacity: .64; }
.scene-decor-vision .scene-note { color: rgba(228,194,117,.85); background: rgba(8,45,37,.62); border-color: rgba(228,194,117,.36); box-shadow: none; }
.note-vision { top: 15%; left: 26%; }

.vision-section { position: relative; padding: 110px 0; text-align: center; color: white; background: var(--green-950); overflow: hidden; }
.vision-section::before, .vision-section::after { content: ""; position: absolute; width: 500px; height: 500px; border: 1px solid rgba(228,194,117,.13); border-radius: 50%; }
.vision-section::before { top: -350px; left: -120px; box-shadow: 0 0 0 65px rgba(228,194,117,.025); }
.vision-section::after { right: -250px; bottom: -360px; box-shadow: 0 0 0 65px rgba(228,194,117,.025); }
.vision-inner { position: relative; z-index: 2; }
.vision-logo { display: block; width: min(215px, 58vw); height: auto; margin: 0 auto 34px; }
.eyebrow.light { justify-content: center; color: var(--gold-light); }
.vision-section h2 { margin-bottom: 25px; font-size: clamp(3rem, 5.5vw, 5.6rem); line-height: 1; }
.vision-section h2 em { color: var(--gold-light); }
.vision-section p { max-width: 620px; margin: 0 auto 34px; color: rgba(255,255,255,.67); line-height: 1.8; }
.button-gold { color: var(--green-950); background: var(--gold-light); }
.button-gold:hover { background: #f0d697; }

.site-footer { padding: 30px 0; color: rgba(255,255,255,.7); background: #06271f; border-top: 1px solid rgba(255,255,255,.08); }
.footer-inner { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 24px; font-size: .76rem; }
.footer-brand { color: white; }
.footer-brand .brand-logo { width: 154px; }
.footer-inner > span { justify-self: end; }
.footer-inner p { margin: 0; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity 700ms ease, transform 700ms cubic-bezier(.2,.75,.2,1); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@keyframes slow-spin { to { transform: rotate(360deg); } }
@keyframes ink-note-drift { 0%, 100% { translate: 0 0; } 50% { translate: 0 -5px; } }

@media (min-width: 981px) and (max-width: 1450px) {
  .blueprint-planner { --hero-scene-shift: clamp(170px, 23vw, 330px); }
}

@media (max-width: 980px) {
  .site-header { position: absolute; }
  .menu-toggle { display: block; }
  .site-nav { position: fixed; inset: 0; z-index: -1; padding: 115px 28px 40px; display: flex; flex-direction: column; align-items: flex-start; gap: 25px; color: white; background: var(--green-950); opacity: 0; pointer-events: none; transition: opacity 180ms ease; }
  .site-nav.is-open { z-index: 90; opacity: 1; pointer-events: auto; }
  .site-nav a { font-family: var(--serif); font-size: 1.7rem; }
  .nav-cta { margin-top: 10px; color: var(--green-950); background: var(--gold-light); font-family: var(--sans) !important; font-size: .85rem !important; }
  .language-switch { position: relative; z-index: 100; margin-left: auto; }
  .currency-switch { position: relative; z-index: 100; }
  .menu-toggle { position: relative; z-index: 100; }
  .menu-toggle[aria-expanded="true"] { border-color: rgba(255,255,255,.2); background: rgba(255,255,255,.08); }
  .menu-toggle[aria-expanded="true"] > span:not(.sr-only) { background: white; }
  .menu-toggle[aria-expanded="true"] > span:first-child { transform: translateY(5.5px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] > span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] > span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }
  .hero { padding-top: 135px; }
  .blueprint-planner {
    --hero-scene-shift: 0px;
    right: -10%;
    bottom: 18px;
    left: -10%;
    opacity: .48;
  }
  .blueprint-planner.is-side-left, .blueprint-planner.is-side-right {
    --scene-x: 0px;
    -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 18%, #000 100%);
    mask-image: linear-gradient(180deg, transparent 0%, #000 18%, #000 100%);
  }
  .hero-grid { grid-template-columns: 1fr; gap: 55px; }
  .hero-copy { max-width: 760px; }
  .hero-visual { min-height: 680px; }
  .hero-globe-launch { width: min(100%,680px); }
  .preview-layout { grid-template-columns: 1fr; gap: 42px; }
  .preview-copy { max-width: 720px; }
  .preview-visual { min-height: 650px; }
  .scene-note { display: none; }
  .story-grid { gap: 55px; }
  .organize-heading { grid-template-columns: 1fr; gap: 30px; }
  .bento-card, .bento-large, .bento-wide { grid-column: span 6; }
  .feature-care { grid-column: span 12; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-inner p { display: none; }
}

@media (max-width: 820px) {
  .bento-card, .bento-large, .bento-wide, .feature-care { grid-column: span 12; }
  .bento-card { min-height: clamp(265px, 48vw, 320px); }
  .bento-wide { display: flex; }
  .feature-assets > p { white-space: normal; }
  .product-directory-heading { grid-template-columns: 1fr; gap: 20px; }
  .world-web-shell { grid-template-columns: 1fr; align-content: center; gap: 12px; width: min(100% - 28px, 620px); padding: 54px 0 24px; overflow: auto; }
  .world-web-visual { min-height: 54vh; }
  .world-web-panel { padding: 24px; }
  .world-web-panel h2 { font-size: clamp(2rem, 8vw, 3.2rem); }
  .world-web-celestial-status { top: .5%; font-size: .56rem; }
  .world-web-controls { top: calc(50% + 270px); }
  .world-web-drag-note { top: calc(50% + 320px); font-size: .55rem; }
}

@media (max-width: 720px) {
  .shell { width: min(100% - 32px, 1180px); }
  .header-inner { min-height: 76px; }
  .brand-logo { width: 142px; }
  .header-inner { gap: 9px; }
  .language-switch { gap: 1px; padding: 3px; }
  .language-switch button { min-width: 29px; height: 27px; padding: 0 6px; }
  .language-switch > span { display: none; }
  .currency-switch > span { display: none; }
  .hero { min-height: auto; padding: 116px 0 60px; }
  .blueprint-planner { right: -24%; bottom: 18px; left: -24%; opacity: .27; }
  .blueprint-caption { display: none; }
  .hero-ink-notes { display: none; }
  h1 { font-size: clamp(2.85rem, 14vw, 4.3rem); }
  .hero-lead { font-size: .98rem; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .button { width: 100%; }
  .hero-notes { display: grid; gap: 10px; }
  .hero-grid { gap: 34px; }
  .hero-globe-visual { width: 100vw; min-height: min(100svh,760px); margin-left: calc(50% - 50vw); overflow: hidden; }
  .hero-globe-launch { width: 100vw; min-height: min(100svh,760px); aspect-ratio: auto; border-radius: 0; }
  .hero-globe-launch:focus-visible { border-radius: 0; outline-offset: -5px; }
  .hero-globe-canvas { width: min(112vw,660px); flex: 0 0 auto; }
  .hero-globe-orbit-one { width: min(106vw,630px); height: min(106vw,630px); inset: auto; }
  .hero-globe-orbit-two { width: min(88vw,540px); height: min(88vw,540px); inset: auto; }
  .hero-globe-heading { top: -4%; left: 16px; }
  .hero-globe-locate { right: 16px; bottom: 9%; }
  .hero-globe-detail { top: 24%; right: 16px; width: min(245px, calc(100% - 32px)); }
  .hero-globe-hint { bottom: 3%; font-size: .58rem; }
  .hero-globe-celestial { top: -1%; }
  .preview-section { padding: 72px 0 78px; }
  .preview-copy h2 { font-size: 2.85rem; }
  .preview-visual { min-height: 520px; }
  .preview-visual .overview-cluster { width: min(100%,440px); }
  .preview-visual .orbit-one { width: 390px; height: 390px; }
  .preview-visual .orbit-two { width: 310px; height: 310px; }
  .overview-card { padding: 19px; transform: none; }
  .overview-head { display: grid; }
  .status-pill { width: max-content; }
  .asset-grid { grid-template-columns: 1fr; }
  .asset-tile:nth-child(n+4) { display: none; }
  .floating-note { display: block; min-width: 108px; padding: 9px 11px; }
  .floating-note span { font-size: .5rem; }
  .floating-note strong { font-size: .82rem; }
  .note-top { top: -22px; right: 6px; left: auto; transform: rotate(3deg); }
  .note-bottom { top: auto; right: auto; bottom: -18px; left: 6px; transform: rotate(-3deg); }
  .orbit-one { width: 390px; height: 390px; }
  .orbit-two { width: 310px; height: 310px; }
  .story-section, .organize-section { padding-top: 72px; padding-bottom: 72px; }
  .scene-decor-story { inset: 18% -42% 0 18%; }
  .scene-decor-story.is-visible, .scene-decor-steps.is-visible, .scene-decor-organize.is-visible, .scene-decor-vision.is-visible { opacity: .25; }
  .section-intro h2, .organize-heading h2 { font-size: 2.65rem; }
  .story-grid { grid-template-columns: 1fr; margin-top: 42px; }
  .story-lead { font-size: 1.2rem; }
  .steps-section { padding: 72px 0; }
  .steps-grid { grid-template-columns: 1fr; }
  .step-card, .step-card.featured { min-height: 330px; transform: none; }
  .step-symbol { margin-top: 38px; }
  .bento-card, .bento-large, .bento-wide { grid-column: span 12; min-height: clamp(250px, 74vw, 300px); padding: 24px; }
  .bento-wide { display: block; min-height: auto; padding-bottom: 86px; }
  .product-card-grid { grid-template-columns: 1fr; }
  .product-card { min-height: 116px; padding: 20px; }
  .product-example-row { grid-template-columns: 1fr; gap: 5px; }
  .product-example-row strong { text-align: left; }
  .property-lines { right: 24px; bottom: 24px; left: 24px; }
  .date-card, .document-stack { right: 24px; bottom: 24px; left: 24px; }
  .timeline-visual { margin-top: 40px; margin-bottom: 0; }
  .care-checks { margin-top: 35px; }
  .bento-open-label { right: 13px; bottom: 13px; min-height: 44px; }
  .feature-dialog { width: 100%; height: auto; max-height: 90dvh; margin: auto 0 0; }
  .feature-dialog[open] { align-items: end; }
  .feature-panel { width: 100%; min-height: 0; max-height: 90dvh; padding: 30px 22px max(32px, env(safe-area-inset-bottom)); border-radius: 24px 24px 0 0; box-shadow: 0 -22px 70px rgba(8,45,37,.2); }
  .feature-panel-mark { margin-bottom: 35px; }
  .feature-close { top: 18px; right: 18px; }
  .demo-property-head, .demo-agenda-head, .demo-footer { align-items: stretch; flex-direction: column; }
  .demo-agenda-head .demo-summary { text-align: left; }
  .demo-payment-row { grid-template-columns: 54px minmax(0, 1fr) auto; gap: 10px; }
  .demo-payment-row .demo-action { grid-column: 1 / -1; width: 100%; }
  .demo-plan-step { grid-template-columns: 70px minmax(0, 1fr); }
  .demo-plan-step i { grid-column: 2; }
  .vision-section { padding: 82px 0; }
  .vision-section h2 { font-size: 3.15rem; }
  .footer-inner { grid-template-columns: 1fr; text-align: center; justify-items: center; }
  .footer-inner > span { justify-self: center; }
}

@media (max-width: 420px) {
  .hero-globe-heading { top: -2%; }
  .hero-globe-heading strong { font-size: .92rem; }
  .hero-globe-celestial { top: 4%; }
  .hero-globe-locate { right: 14px; bottom: 10%; }
  .hero-globe-detail { top: 28%; right: 14px; left: 14px; width: auto; }
  .hero-globe-hint { bottom: 4%; }
  .preview-copy h2 { font-size: 2.5rem; }
  .preview-visual { min-height: 500px; }
  .timeline-visual { width: 100%; min-width: 0; }
  .floating-note { transform: scale(.92) rotate(3deg); }
  .note-bottom { transform: scale(.92) rotate(-3deg); }
  .demo-value-grid, .demo-stat-grid { grid-template-columns: 1fr; }
  .demo-payment-row { grid-template-columns: 1fr auto; }
  .demo-payment-date { grid-column: 1 / -1; }
  .demo-payment-row .demo-action { grid-column: 1 / -1; }
}

@media (max-width: 359px) {
  .floating-note { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
  .hero-ink-notes span.is-active { animation: none; }
  .scene-decor, .scene-note { transition: none; }
}

/* Non-blocking radar follows real page and map asset loading. */
.loading-radar { width: 80px; height: 80px; pointer-events: none; z-index: 20; border-radius: 50%; background: rgba(245,240,228,.94); }
.loading-radar svg { display: block; width: 80px; height: 80px; }
.loading-radar-page { position: fixed; right: 20px; bottom: 20px; }
.loading-radar-map { position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%); }
.loading-radar-sweep { transform-origin: 40px 40px; animation: loading-radar-turn 2.8s linear infinite; }
@keyframes loading-radar-turn { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) { .loading-radar-sweep { animation: none; } }

/* Circular map windows retain the transparent globe presentation at every zoom. */
.nasa-map { border-radius: 50%; overflow: hidden; background: transparent; }
.hero-globe-canvas .hero-nasa-map { position: absolute; inset: 7.5%; }
.dialog-nasa-map { width: min(90%, 640px); aspect-ratio: 1; }
.nasa-map .maplibregl-canvas { outline: none; }
.nasa-map .world-web-marker { width: 44px; height: 44px; }
.nasa-map .world-web-marker.is-user { width: 54px; height: 74px; }
.nasa-map .maplibregl-marker { visibility: visible; }
.nasa-map .maplibregl-marker[style*="opacity: 0"] { visibility: hidden; pointer-events: none; }
.hero-map-controls { position: absolute; z-index: 8; bottom: 4%; display: flex; gap: 6px; }
.hero-map-controls button { min-width: 40px; min-height: 40px; border: 1px solid #b99b48; border-radius: 22px; background: #173b32; color: #fff8df; padding: 6px 12px; cursor: pointer; }
.hero-globe-launch > .nasa-map-credit { position: absolute; bottom: 0; text-align: center; }
.nasa-map-credit { font: 9px/1.5 Arial, sans-serif; color: #586b63; }
.nasa-map-credit a { color: inherit; }
.hero-globe-hint { display: none; }
.world-web-source-credit .nasa-map-credit { color: #c8d4cb; }
@media (max-width: 600px) { .hero-map-controls { bottom: 8%; } .hero-globe-launch > .nasa-map-credit { bottom: 4%; } }
