/* root var */
:root {
  --bg: #0b0c10;
  --panel: #11131a;
  --text: #e8ebf1;
  --muted: #ffffff;
  --primary: #5aa9e6;
  --primary-contrast: #081018;
  --header-h: 66px;
  --maxw: 2100px;
  --footer-h: 58px;
  --handle-h: 36px;
  --safe-b: env(safe-area-inset-bottom);
  --header-mini: 28px;
}

* { box-sizing: border-box; }
html, body { height: 100%; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background: radial-gradient(1200px 800px at 70% -90%, #122035 0%, var(--bg) 55%, #08090d 100%);
  font: 16px/1.6 system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif;
}

.container { width: min(100% - 2rem, var(--maxw)); margin-inline: auto; }

.site-header {
  position: sticky; top: 0; z-index: 15;
  height: var(--header-h);
  background: rgba(9, 11, 15, 0.65);
  backdrop-filter: blur(4px);
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: background-color .2s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease;
}

@media (hover: hover) {
  .site-header:hover {
    background: rgba(9, 11, 15, 0.9);
    border-bottom-color: rgba(255,255,255,.12);
    box-shadow: 0 4px 14px rgba(0,0,0,.25);
  }
}

.site-header .container {
  margin-left: auto;
  margin-right: auto;
  padding-left: .1rem;
  padding-right: .1rem;
}

.nav {
  height: 100%;
  display: flex; align-items: center; justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  gap: .2rem; 
  color: var(--text);       
}

.brand img {
  display: block;
  max-height: 32px;
  height: auto;
  width: auto;
}

@media (max-width: 768px) {
  .brand img { height: 22px; }
}

.nav-links { display: flex; gap: 1rem; align-items: center; }

.nav-links a {
  color: var(--muted); text-decoration: none; padding: .4rem .6rem; border-radius: .6rem;
}

.nav-links a:hover, .nav-links a.active { color: var(--text); background: rgba(255,255,255,.11); }

.nav-toggle {
  display: none;
  background: none; border: none; cursor: pointer; padding: .4rem; border-radius: .5rem; overflow: hidden;
}

.nav-toggle:focus-visible { outline: 2px solid var(--primary); }

.nav-toggle .bar {
  display: block; width: 24px; height: 2px; background: var(--text); margin: 5px 0; border-radius: 2px; transition: transform 0.42s ease, opacity 0.3s ease;
}

.nav-toggle.open .bar:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.open .bar:nth-child(2) {
  opacity: 0.5; transform: translateX(200px);
}

.nav-toggle.open .bar:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* hero side */
.hero { display: grid; place-items: center; align-content: start; min-height: calc(100dvh - var(--header-h)); padding: 2.65rem 0 4.25rem; }

.hero-inner { text-align: center; }

.hero h1 {
  font-size: clamp(1.8rem, 2.2rem + 1.2vw, 3rem);
  margin: 0 0 .4rem;
}

.hero-stack {
  position: relative;
  display: grid;
  place-items: center;
}

.hero-stack > * { grid-area: 1 / 1; }

.lead-wrap{
  position: relative;
  top: -14.6rem;
  margin: 1.5rem auto;
  max-width: 86.5ch;
  z-index: 5;
  text-align: center;
}

.lead{
  color: var(--muted);
  font-size: clamp(0.8rem, 2vw, 1.15rem);
  line-height: 1.4;
  text-shadow:
    0 0 12px rgba(255,255,255,.9),
    0 0 16px rgba(255,255,255,.35);
}

.lead-more{
  height: 0;
  overflow: hidden;
  will-change: height;
  transition: height .7s cubic-bezier(.82,1.7,.56,1);
}

.lead-more-inner{
  opacity: 0;
  transform: translateY(6px);
  transition:
    opacity .45s ease,
    transform .55s ease;
  transition-delay: .06s;
}

.lead, .lead-more p {
  margin-block-start: 0.2rem;
  margin-block-end: 0.2rem;
}

.lead-more.expanding .lead-more-inner,
.lead-more.expanded  .lead-more-inner{
  opacity: 1;
  transform: none;
}

.lead-more.expanding + .lead-fade,
.lead-more.expanded  + .lead-fade{ opacity: 0; }

.lead-fade{
  position: absolute;
  left: 0; right: 0;
  bottom: 1.6rem;
  height: 2.15rem;
  backdrop-filter: blur(1.25px); 
  -webkit-backdrop-filter: blur(1.45px); 
  -webkit-mask-image: linear-gradient(to top, rgba(0,0,0,1), rgba(0,0,0,0));
  mask-image: linear-gradient(to top, rgba(0,0,0,1), rgba(0,0,0,0));
  pointer-events: none;
  opacity: 1;
  transition: opacity .35s ease;
}

.lead-toggle{
  display: inline-block;
  margin: .45rem auto 0;
  background: transparent;
  color: var(--text);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px); 
  border: 2.2px solid rgba(255, 255, 255, 0.432);
  border-radius: 999px;
  padding: .25rem .85rem;
  font: 12px;
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease, transform .12s ease;
  position: relative;
  z-index: 2;
}

.lead-toggle:hover{
  background-color: color-mix(in srgb, var(--primary) 85%, white 92%);
  box-shadow: 0 8px 22px rgba(0,0,0,.58);
  color: rgb(0, 1, 73);
  transform: scale(1);
  opacity: 0.8;
  font-weight: 500;
}

.lead a {
  color: #ffffff;
  font-weight: 600;
  text-decoration: underline;
}

.lead a:hover {
  color: #a4d5fd;
  text-decoration: underline;
}

.footer-link {
  color: inherit;
  text-decoration: none;
}

.footer-link:hover {
  color: var(--primary);
  text-decoration: underline;
}

.cta-wrap{
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  z-index: 5;
  margin-top: -9.25rem;
  transition: margin-top .45s cubic-bezier(.22,1,.36,1);
}

.lead-wrap[data-expanded="true"] + .cta-wrap{
  margin-top: -13.45rem;
}

@media (max-width: 768px){
  .hero { display: grid; place-items: center; align-content: start; min-height: calc(100dvh - var(--header-h)); padding: 3.65rem 0 5.25rem; }
  .lead{
    top: -14.45rem;
    margin-top: -0.1rem;
    text-shadow:
      0 0 12px rgba(255,255,255,.9),
      0 0 16px rgba(255,255,255,.35);
  }
  .lead-fade{
    position: absolute;
    left: 0; right: 0;
    bottom: 1.58rem;
    height: 1.72rem;
    backdrop-filter: blur(0.95px); 
    -webkit-backdrop-filter: blur(1.45px); 
  }
  .lead-wrap{ top: -12.35rem; }
  .cta-wrap{
    margin-top: -9.55rem;
  }
  .lead-wrap[data-expanded="true"] + .cta-wrap{
    margin-top: -10.85rem;
  }
  .lead-toggle:hover { animation: none !important; transition: none !important; }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  padding: .9rem 1.2rem;
  border-radius: .9rem;
  font-weight: 600;
  border: 1px solid rgba(255,255,255,.12);
  transition: transform .88s ease, background .25s ease, border-color .25s ease;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  clip-path: inset(0 round .9rem);
  -webkit-mask-image: -webkit-radial-gradient(white, black);
  contain: paint;
}

.btn:hover { transform: translateY(0); }

.btn:active { transform: translateY(0); }

.btn.primary {
  background: var(--primary);
  color: var(--primary-contrast);
  border-color: transparent;
}

.btn.primary:hover {
  background-color: color-mix(in srgb, var(--primary) 85%, white 32%);
  box-shadow: 0 8px 22px rgba(0,0,0,.28);
}

.btn-pulse {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  will-change: transform, box-shadow;
}

.btn-pulse::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0;
  transform: scale(0.95);
  box-shadow: 0 0 0 0 rgba(90,169,230,0);
  transition: opacity .35s ease, transform .85s ease, box-shadow .35s ease;
  z-index: 1;
}

.btn-pulse:hover {
  animation: btnPulse 1.15s ease-in-out infinite;
  box-shadow: 0 0 0 0 rgba(90, 169, 230, 0.45);
}

@keyframes btnPulse {
  0%   { transform: translateY(0) scale(1);     box-shadow: 0 0 0 0 rgba(90,169,230,.45); }
  50%  { transform: translateY(-2.5px) scale(1.09);  box-shadow: 0 0 18px 8px rgba(90,169,230,.18); }
  100% { transform: translateY(0) scale(1);     box-shadow: 0 0 0 0 rgba(90,169,230,.45); }
}

.btn .rp, .btn .rp-sh {
  position: absolute;
  left: var(--x); top: var(--y);
  width: 14px; height: 14px;
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0);
  pointer-events: none;
  animation-delay: var(--delay, 0ms);
  animation-fill-mode: forwards;
  z-index: 2;
}

.btn .rp {
  background:
    radial-gradient(circle,
      rgba(255,255,255,0.98) 0%,
      rgba(26, 98, 156, 0.98) 8%,
      rgba(63, 136, 204, 0.45) 16%,
      rgba(255,255,255,0.22) 28%,
      rgba(2, 16, 63, 0.623) 40%,
      transparent 62%);
  filter: drop-shadow(0 0 12px rgba(1, 4, 58, 0.35))
          drop-shadow(0 4px 14px rgba(1, 18, 54, 0.18));
  mix-blend-mode: screen;
  animation-name: rippleTop;
  animation-duration: var(--dur, 820ms);
  opacity: .95;
}

.btn .rp-sh {
  background:
    radial-gradient(circle,
      rgba(0,0,0,0.28) 0%,
      rgba(0,0,0,0.22) 10%,
      rgba(0,0,0,0.10) 35%,
      rgba(0,0,0,0.06) 50%,
      transparent 70%);
  filter: blur(1px);
  mix-blend-mode: multiply;
  animation-name: rippleShadow;
  animation-duration: var(--dur, 820ms);
  opacity: .6;
}

@keyframes rippleTop {
  0%   { transform: translate(-50%, -50%) scale(0);   opacity: .95; }
  65%  { transform: translate(-50%, -50%) scale(var(--end-scale, 20)); opacity: .5; }
  100% { transform: translate(-50%, -50%) scale(calc(var(--end-scale, 20) * 1.25)); opacity: 0; }
}
@keyframes rippleShadow {
  0%   { transform: translate(-50%, -50%) scale(0);   opacity: .6; }
  65%  { transform: translate(-50%, -50%) scale(calc(var(--end-scale, 20) - 1)); opacity: .35; }
  100% { transform: translate(-50%, -50%) scale(calc(var(--end-scale, 20) * 1.18)); opacity: 0; }
}

.btn.secondary { color: var(--text); background: rgba(255,255,255,.06); }
.btn.secondary:hover { filter: brightness(1.35); background: rgba(255, 255, 255, 0.1); }

@media (prefers-reduced-motion: reduce) {
  .btn-pulse::after { animation: none !important; transition: none !important; }
  .btn .rp, .btn .rp-sh { animation: none !important; }
}

/* h1 page content */
.page { padding: 2rem 1rem 3rem; }
.page h1 { margin-top: 1rem; }

.site-footer {
  border-top: 1px solid rgba(255,255,255,.06);
  background: rgba(9, 11, 15, 0.55);
  padding: .9rem 0;
}

.footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.social {
  display: inline-flex;
  gap: .5rem;
  align-items: center;
}

.s-circle {
  --brand: var(--primary);
  display: inline-flex;
  align-items: center;
  height: 30px;
  /* font-size: 18px; */
  border-radius: 999px;
  overflow: hidden;
  text-decoration: none;
  color: var(--muted);
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 2px 6px rgba(0,0,0,.15);
  transition:
    transform .18s ease,
    background .25s ease,
    border-color .25s ease,
    box-shadow .25s ease;
  will-change: transform;
}

.icon-circle {
  width: 30px;
  height: 30px;
  margin-bottom: 6px;
  margin-left: 2px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.icon-circle i,
.icon-circle svg {
  width: 18px;
  height: 18px;
  display: block;
  fill: currentColor;
}

.s-circle[data-brand="codeberg"] .icon-circle svg {
  transform: translateY(3px) translateX(-0.8px) scale(1);
  transform-origin: center;
}

.icon-label {
  max-width: 0;
  opacity: 0;
  transform: translateX(-69px);
  white-space: nowrap;
  padding: 0;
  transition:
    max-width .35s ease,
    opacity .25s ease,
    transform .45s ease,
    color .25s ease;
}

.s-circle:hover {
  transform: translateY(0px);
  background: color-mix(in srgb, var(--brand) 18%, transparent);
  border-color: color-mix(in srgb, var(--brand) 50%, transparent);
  box-shadow: 0 6px 18px rgba(0,0,0,.25);
  color: var(--text);
}
.s-circle:hover .icon-label {
  max-width: 220px;
  opacity: 1;
  transform: translateX(0);
  padding: 0 12px 0 6px;
}

.s-circle[data-brand="twitter"]  { --brand: #1DA1F2; }
.s-circle[data-brand="mastodon"] { --brand: #6364FF; }
.s-circle[data-brand="TIB"]  { --brand: #FF0033; }
.s-circle[data-brand="linkedin"] { --brand: #0A66C2; }
.s-circle[data-brand="telegram"] { --brand: #229ED9; }
.s-circle[data-brand="codeberg"] { --brand: #2185D0; }

@media (max-width: 768px) {
  .social {
    display: inline-flex;
    gap: 0rem;
    transform: translateY(-2.72px);
    align-items: center;
  }
  
  .social a {
    margin-right: -5px;
  }

  .social a:last-child {
    margin-right: -8px;
  }

  .footer-row small {
    font-size: 0.65rem;
  }  
  
  .s-circle {
    border-radius: 50%;
    width: 29px;
    height: 29px;
    background: transparent;
    border: none;
    box-shadow: none;
  }

  .icon-circle {
    width: 100%;
    height: 100%;
    margin: 0;
  }

  .icon-label {
    display: none !important;
  }

  .s-circle:hover {
    background: transparent;
    transform: translateY(-5px);
    color: #00aced;
    box-shadow: none;
  }
}

.nav-links--desktop {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-left: auto;
}

.nav-links--mobile { display: none; }

/* responsiive setup for small window */
@media (max-width: 768px) {
  .nav-toggle { display: inline-block; }

  .nav-links--desktop { display: none; }

  .nav-links--mobile { display: block; }

  .nav-links {
    position: fixed;
    top: calc(var(--header-h) + 2px);
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    z-index: 30;
    width: 100%;
    background-color: rgba(9, 11, 15, 0.62);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    background-clip: padding-box;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 12px;
    padding: .6rem .8rem;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    display: block;
    box-shadow: 0 6px 18px rgba(0,0,0,.28);

    transition:
      opacity .16s ease,
      visibility .16s ease,
      background-color .2s ease,
      border-color .2s ease,
      box-shadow .2s ease;
  }

  .nav-links__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .6rem;

    transform-origin: top;
    transform: scaleY(0);
    transition: transform .18s ease;
  }

  .nav-links[data-open="true"] {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav-links[data-open="true"] .nav-links__inner {
    transform: scaleY(1);
  }

  .nav-links a {
    display: inline-block;
    padding: .5rem .9rem;
    border-radius: .6rem;
    text-decoration: none;
    color: var(--muted);
  }

  .nav-links a:hover,
  .nav-links a.active {
    color: var(--text);
    background: rgba(255,255,255,.11);
  }

  .nav-links[data-open="true"]:hover {
    background-color: rgba(9, 11, 15, 0.85);
    border-color: rgba(255,255,255,.12);
    box-shadow: 0 8px 24px rgba(0,0,0,.35);
  }
}

/* effects for gee app page soil-db */
body.soil-db .site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-mini);
  overflow: hidden;
  z-index: 50;
  transition: height .25s ease;
}

body.soil-db .site-header:hover,
body.soil-db.header-open .site-header {
  height: var(--header-h);
}

body.soil-db .brand img {
  max-height: 20px;
  transition: max-height .25s ease;
}

body.soil-db .site-header:hover .brand img,
body.soil-db.header-open .brand img {
  max-height: 32px;
}

body.soil-db .nav-links--desktop {
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease;
}

body.soil-db .site-header:hover .nav-links--desktop,
body.soil-db.header-open .nav-links--desktop {
  opacity: 1;
  pointer-events: auto;
}

@media (max-width: 768px) {
  body.soil-db .nav-links--mobile { top: var(--header-h); }
}

body.soil-db .site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 3;
}

body.soil-db .embed { width: 100%; height: 100%; display: block; border: 0; }

body.soil-db .embed-wrap {
  position: fixed;
  top: var(--header-mini);
  left: 0;
  right: 0;
  bottom: 0;
  height: auto;
  z-index: 1;
  transition: top .25s ease;
}

body.soil-db .embed-fallback { padding: 1rem; text-align: center; }

body.soil-db .site-header:hover ~ .embed-wrap,
body.soil-db.header-open .embed-wrap {
  top: var(--header-h);
}
body.soil-db .embed-wrap {
  position: fixed;
  top: var(--header-mini);
  left: 0;
  right: 0;
  bottom: 0;
  height: auto;
  z-index: 1;
  transition: top .25s ease;
}

body.soil-db .embed-fallback { padding: 1rem; text-align: center; }

body.soil-db .site-header:hover ~ .embed-wrap,
body.soil-db.header-open .embed-wrap {
  top: var(--header-h);
}

@media (max-width: 768px) {
  body.soil-db .nav-links--mobile {
    position: fixed;
    top: var(--header-h);
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 100%;
    z-index: 50;

    background-color: rgba(9, 11, 15, 0.65);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 10px;
    padding: .8rem;
    box-shadow: 0 6px 18px rgba(0,0,0,.3);
  }

  body.soil-db .nav-links--mobile .nav-links__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .6rem;
  }
}

body.soil-db { overflow: hidden; }

body.soil-db .footer-mini{
  position: fixed; left: 0; right: 0; bottom: 0;
  z-index: 40;
  height: var(--footer-h);
  background: rgba(12,14,18,.72);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border-top: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 -10px 30px rgba(0,0,0,.35);
  transform: translateY(calc(100% - var(--handle-h) - var(--safe-b,0px) - -36px));
  transition: transform .35s cubic-bezier(.22,1,.36,1), opacity .3s ease;
}

body.soil-db.footer-open .footer-mini{
  transform: translateY(0);
}

body.soil-db .footer-row{
  height: 100%;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0;
}

body.soil-db .footer-handle{
  position: fixed; left: 50%;
  bottom: calc(var(--safe-b,0px) + 8px);
  transform: translateX(-50%);
  height: var(--handle-h);
  padding: 0 .9rem;
  border-radius: 999px;
  background: rgba(20,22,28,.68);
  color: var(--text);
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 10px 24px rgba(0,0,0,.35);
  display: inline-flex; align-items: center; gap: .45rem;
  cursor: pointer;
  z-index: 41;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  transition: bottom .35s cubic-bezier(.22,1,.36,1), background .2s ease, transform .12s ease;
}

body.soil-db.footer-open .footer-handle{
  bottom: calc(var(--footer-h) + var(--safe-b,0px) + 12px);
}

body.soil-db .footer-handle:focus-visible{
  outline: 2px solid var(--primary);
  outline-offset: 3px;
}

body.soil-db .footer-handle .chev{
  width: 38px; height: 18px;
  transition: transform .25s ease;
  opacity: .9;
}

body.soil-db.footer-open .footer-handle .chev{
  transform: rotate(180deg);
}

.vh{
  position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

@media (prefers-reduced-motion: reduce){
  body.soil-db .footer-mini,
  body.soil-db .footer-handle,
  body.soil-db .footer-handle .chev{
    transition: none !important;
  }
}

.hero-stack {
  position: relative;
  display: grid;
  place-items: center;
  margin-block: 1rem 1.5rem;
}

.hero-stack > * { grid-area: 1 / 1; }

.title {}
.title--back,
.title--front {
  transform: translateY(-60%);
}

.title--back {
  color: #fff;
  text-shadow: 0 2px 8px rgba(214, 183, 183, 0.25);
  z-index: 0;
}

.title--front {
  position: absolute;
  color: transparent;
  -webkit-text-stroke: 2px rgba(98,205,238,.85);
          text-stroke: 2px rgba(87,234,253,.85);
  z-index: 2;   
}

.hero-stack .title {
  font-family: 'Secular One', sans-serif;
  font-size: clamp(3.6rem, 10vw, 6rem);
  font-weight: 900;
  line-height: .95;
  text-align: center;
  letter-spacing: 2px;
  margin: 0;
  pointer-events: none;
  word-wrap: break-word;
  z-index: 1;
}

.title--back {
  color: #fff;
  text-shadow: 0 2px 8px rgba(214, 183, 183, 0.25);
  z-index: 0;
}

.title--front {
  position: absolute;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(98, 205, 238, 0.85);
          text-stroke: 1.5px rgba(87, 234, 253, 0.85);
  z-index: 2;
}

#globe {
  display: block;
  height: 100%;
  width: 100%;
}

#globe-wrap {
  position: relative;
  z-index: 1;
  width: min(90vw, 600px);
  aspect-ratio: 1;
  margin: 2rem auto;
}

#globe-wrap::before {}

body.cinematic .hero-inner > *:not(#globe-wrap) { opacity: .08; transition: opacity .25s ease; }

@media (max-width: 600px) {
  .title--front {
    -webkit-text-stroke: 1px rgba(98, 205, 238, 0.85);
            text-stroke: 1px rgba(87, 234, 253, 0.85);
  }
}

.reveal[data-delay="100"] { transition-delay: .1s; }
.reveal[data-delay="200"] { transition-delay: .2s; }
.reveal[data-delay="300"] { transition-delay: .3s; }
.reveal[data-delay="400"] { transition-delay: .4s; }
.reveal[data-delay="500"] { transition-delay: .5s; }

.reveal-title { 
  opacity: 0; 
  transition: opacity .8s ease; 
}
.reveal-title.is-visible { 
  opacity: 1; 
}

.reveal-fade {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal-fade.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-globe {
  opacity: 0;
  transform: scale(0.4);
  filter: blur(8px);
  transition: opacity 1.1s ease, transform 1.1s ease, filter 1.1s ease;
}
.reveal-globe.is-visible {
  opacity: 1;
  transform: scale(1);
  filter: blur(0);
}

.lead.reveal-fade { transition-delay: 0.4s; }
.cta-wrap.reveal-fade { transition-delay: 0.8s; }

@media (prefers-reduced-motion: reduce) {
  .reveal-globe,
  .reveal-title,
  .reveal-fade {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    transition: none !important;
    animation: none !important;
  }
}

#page-transition{
  position: fixed;
  inset: 0;
  background: #0b0c10;
  z-index: 9999;
  pointer-events: none;
  opacity: 1;
  transition: opacity .35s ease;
}

.body-loaded #page-transition { opacity: 0; }

.body-fading #page-transition {
  opacity: 1;
  pointer-events: auto;
}
