@font-face {
  font-family: "Aeonik";
  font-style: italic;
  font-weight: 700;
  font-display: swap;
  src: url("Aeonik-BoldItalic.otf") format("opentype");
}

:root {
  --bg: #000000;
  --panel: #0d0d0d;
  --panel-soft: #121212;
  --line: rgba(255, 255, 255, 0.12);
  --line-strong: rgba(255, 255, 255, 0.2);
  --text: #ffffff;
  --muted: #9b9b9b;
  --muted-2: #6f6f6f;
  --green: #94f33f;
  --green-dark: #205d10;
  --yellow: #f7c735;
  --blue: #5664ff;
  --orange: #ff991c;
  --max: 1240px;
  font-family: "Fustat", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 78% 18%, rgba(40, 67, 149, 0.28), transparent 24rem),
    radial-gradient(circle at 18% 48%, rgba(44, 79, 40, 0.15), transparent 27rem),
    var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

.site-shell {
  min-height: 100vh;
  position: relative;
}

.site-shell::before {
  content: none;
}

.site-header {
  position: sticky;
  top: 28px;
  z-index: 20;
  width: min(100% - 32px, 790px);
  min-height: 72px;
  margin: 28px auto 0;
  padding: 14px 16px 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  border: 0;
  border-radius: 7px;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  transition: background 300ms ease, backdrop-filter 300ms ease, box-shadow 300ms ease;
  animation: navDrop 700ms ease both;
}

.site-header.is-scrolled {
  background: rgb(142 142 142 / 30%);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}

.brand-mark {
  position: relative;
  width: 34px;
  height: 30px;
  display: inline-grid;
  align-items: center;
}

.brand-mark span {
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f6f6f6, #515151 58%, #151515);
  box-shadow: 0 0 18px rgba(255, 255, 255, 0.18);
}

.brand-mark span:nth-child(1) {
  left: 0;
  top: 1px;
}

.brand-mark span:nth-child(2) {
  left: 7px;
  top: 7px;
  opacity: 0.78;
}

.brand-mark span:nth-child(3) {
  left: 14px;
  top: 13px;
  opacity: 0.58;
}

.brand-name {
  font-family: "Aeonik", "Fustat", sans-serif;
  font-style: italic;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  color: #f4f4f4;
  font-size: 14px;
  font-weight: 600;
}

.desktop-nav a,
.login-link {
  transition: color 180ms ease;
}

.desktop-nav a:hover,
.login-link:hover {
  color: var(--green);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 14px;
  font-weight: 600;
}

.nav-cta,
.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 8px;
  font-weight: 700;
  letter-spacing: 0;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.nav-cta {
  padding: 0 20px;
  background: #ffffff;
  color: #090909;
}

.nav-cta:hover,
.primary-button:hover,
.secondary-button:hover {
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: transparent;
  color: var(--text);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  background: currentColor;
  display: block;
  transition: transform 180ms ease;
}

.menu-open .menu-toggle span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.menu-open .menu-toggle span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

/* === Language switcher === */
.lang-switch {
  display: inline-flex;
  align-items: center;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.02);
  gap: 0;
}

.lang-switch a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 30px;
  height: 26px;
  padding: 0 8px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--muted);
  transition: color 160ms ease, background 160ms ease;
}

.lang-switch a:hover {
  color: var(--text);
}

.lang-switch a.is-active {
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

/* Mobile language pill (inside overlay) */
.mobile-lang {
  display: inline-flex;
  align-self: center;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  margin-bottom: 8px;
}

.mobile-lang a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 56px;
  height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  font-size: 14px !important;
  font-weight: 700 !important;
  letter-spacing: 0.06em;
  color: var(--muted);
  border-bottom: 0 !important;
  line-height: 1 !important;
  transition: color 160ms ease, background 160ms ease;
}

.menu-open .mobile-lang a {
  /* override the large-link styles inside mobile-nav */
  opacity: 1;
  transform: none;
}

.mobile-lang a.is-active {
  color: var(--text);
  background: rgba(255, 255, 255, 0.1);
}

/* hide the lang switch on header when in a tight space */
@media (max-width: 880px) {
  .header-actions .lang-switch {
    display: none;
  }
}

.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 18;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  gap: 8px;
  padding: 120px 28px 48px;

  background: rgba(8, 8, 8, 0.72);
  backdrop-filter: blur(28px) saturate(140%);
  -webkit-backdrop-filter: blur(28px) saturate(140%);

  clip-path: inset(0 0 100% 0);
  pointer-events: none;
  transition: clip-path 560ms cubic-bezier(0.22, 1, 0.36, 1);
}

.menu-open .mobile-nav {
  clip-path: inset(0 0 0 0);
  pointer-events: auto;
}

.mobile-nav::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 15%, rgba(255, 138, 61, 0.08), transparent 55%),
    radial-gradient(circle at 80% 85%, rgba(86, 100, 255, 0.08), transparent 60%);
  pointer-events: none;
  z-index: -1;
}

.mobile-nav a {
  display: flex;
  align-items: center;
  padding: 6px 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--text);
  font-weight: 800;
  font-size: clamp(32px, 7vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.015em;

  opacity: 0;
  transform: translateY(24px);
  transition: opacity 480ms ease, transform 560ms cubic-bezier(0.22, 1, 0.36, 1), color 200ms ease;
}

.mobile-nav a:last-child {
  border-bottom: 0;
}

.mobile-nav a:active {
  color: #ff8a3d;
}

.menu-open .mobile-nav a {
  opacity: 1;
  transform: translateY(0);
}

.mobile-nav > .mobile-lang {
  opacity: 0;
  transform: translateY(-12px);
  transition: opacity 420ms ease, transform 480ms cubic-bezier(0.22, 1, 0.36, 1);
}

.menu-open .mobile-nav > .mobile-lang {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 140ms;
}

.menu-open .mobile-nav > a:nth-child(2) { transition-delay: 200ms; }
.menu-open .mobile-nav > a:nth-child(3) { transition-delay: 250ms; }
.menu-open .mobile-nav > a:nth-child(4) { transition-delay: 300ms; }
.menu-open .mobile-nav > a:nth-child(5) { transition-delay: 350ms; }
.menu-open .mobile-nav > a:nth-child(6) { transition-delay: 400ms; }
.menu-open .mobile-nav > a:nth-child(7) { transition-delay: 450ms; }
.menu-open .mobile-nav > a:nth-child(8) { transition-delay: 500ms; }

.menu-open .mobile-nav a:nth-last-child(2),
.menu-open .mobile-nav a:last-child {
  margin-top: 4px;
}

@media (min-width: 720px) {
  .mobile-nav {
    display: none;
  }
}

.hero,
.section,
.split-section,
.final-cta {
  width: min(100% - 48px, var(--max));
  margin: 0 auto;
}

/* === Global reach section === */
.reach-section {
  position: relative;
  width: 100% !important;
  max-width: none !important;
  margin: 80px 0 0 !important;
  padding: 80px 0 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  text-align: center;
  overflow: hidden;
  min-height: 80vh;
  isolation: isolate;
}

.reach-text {
  width: min(100% - 48px, 880px);
  position: relative;
  z-index: 3;
}

.reach-text h2 {
  font-size: clamp(38px, 5.4vw, 88px);
  line-height: 0.9;
  letter-spacing: -0.03em;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.reach-text .section-lede {
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

.reach-stats {
  justify-content: center;
  border-top: 0;
  border-bottom: 1px solid var(--line);
  padding: 0 0 22px;
  margin: 8px auto 0;
  max-width: 720px;
}

.reach-text .section-lede {
  margin-bottom: 28px;
}

.reach-stats {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 22px 36px;
  border-top: 1px solid var(--line);
  padding-top: 22px;
}

.reach-stats li {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.reach-stats strong {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--text);
}

.reach-stats span {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted-2);
}

.reach-globe {
  position: absolute;
  left: 50%;
  bottom: -8vw;
  width: 108vw;
  max-width: 1500px;
  transform: translateX(-50%);
  pointer-events: none;
  z-index: 1;
  display: flex;
  justify-content: center;
}

.reach-globe-img {
  width: 100%;
  height: auto;
  display: block;
  /* globe.png is a rendered Earth on pure black; the page is near-black, so it
     already blends. A soft radial mask dissolves the outer frame into the page
     (seamless) without darkening the planet itself. */
  -webkit-mask-image: radial-gradient(circle at 50% 50%, #000 60%, transparent 74%);
          mask-image: radial-gradient(circle at 50% 50%, #000 60%, transparent 74%);
  filter: saturate(1.08) contrast(1.04) brightness(1.05);
}

.reach-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(110%, 680px);
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  background:
    radial-gradient(circle, rgba(255, 196, 110, 0.12), transparent 55%),
    radial-gradient(circle, rgba(255, 77, 46, 0.06), transparent 70%);
  filter: blur(48px);
  pointer-events: none;
  z-index: -1;
  animation: reachGlowPulse 9s ease-in-out infinite;
}

@keyframes reachGlowPulse {
  0%, 100% { opacity: 0.7; }
  50%      { opacity: 1; }
}

.orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.orbit-1 {
  width: min(88%, 600px);
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 0 60px rgba(255, 255, 255, 0.02);
}

.orbit-2 {
  width: min(100%, 700px);
  aspect-ratio: 1;
  border: 1px dashed rgba(255, 255, 255, 0.05);
  transform: translate(-50%, -50%);
  animation: orbitSpin 90s linear infinite;
}

@keyframes orbitSpin {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

.reach-status {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border: 1px solid rgba(74, 222, 128, 0.28);
  border-radius: 999px;
  background: rgba(13, 13, 13, 0.78);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text);
  white-space: nowrap;
}

.reach-status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 10px rgba(74, 222, 128, 0.7);
  position: relative;
}

.reach-status-dot::after {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 1px solid rgba(74, 222, 128, 0.5);
  animation: pulseRing 2.4s ease-out infinite;
}

.reach-chip {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(13, 13, 13, 0.82);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
  z-index: 3;
  max-width: 220px;
}

.reach-chip strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.25;
}

.reach-chip span {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-top: 2px;
}

.reach-chip-dot {
  flex: 0 0 10px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 12px rgba(74, 222, 128, 0.7);
  position: relative;
}

.reach-chip-dot::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid rgba(74, 222, 128, 0.5);
  animation: pulseRing 2.4s ease-out infinite;
}

.reach-chip-tl {
  top: 6%;
  left: 2%;
  animation: chipFloat 6s ease-in-out infinite;
}

.reach-chip-br {
  bottom: 12%;
  right: 2%;
  animation: chipFloat 7s ease-in-out -3s infinite;
}

.reach-feed {
  position: absolute;
  top: 50%;
  right: -8%;
  transform: translateY(-50%);
  z-index: 3;
  width: 220px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(13, 13, 13, 0.82);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.5);
}

.reach-feed-title {
  margin: 0 0 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted-2);
}

.reach-feed ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.reach-feed li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.reach-feed-dot {
  flex: 0 0 8px;
  width: 8px;
  height: 8px;
  margin-top: 5px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 8px rgba(74, 222, 128, 0.6);
}

.reach-feed b {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.25;
}

.reach-feed li span {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--muted-2);
  margin-top: 2px;
}

@media (max-width: 1080px) {
  .reach-chip-tl { left: 0; }
  .reach-chip-br { right: 0; }
  .reach-feed { right: 0; }
}

@media (max-width: 880px) {
  .reach-globe {
    min-height: 0;
    padding: 8px;
  }
  .reach-chip,
  .reach-feed {
    position: static;
    transform: none;
    width: auto;
    max-width: none;
  }
  .reach-globe {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .reach-feed {
    order: 3;
  }
}

@media (max-width: 880px) {
  .reach-section {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* === Contact form (final CTA) === */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: 48px;
  align-items: start;
  text-align: left;
  width: min(100% - 48px, var(--max));
  margin: 0 auto;
}

.contact-copy h2 {
  font-size: clamp(34px, 4.4vw, 64px);
  line-height: 0.92;
  letter-spacing: -0.03em;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.contact-copy > p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.5;
  margin-bottom: 22px;
}

.contact-pills {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-pills li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--muted);
}

.contact-pill-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 8px rgba(74, 222, 128, 0.6);
  flex-shrink: 0;
}

.contact-fallback {
  font-size: 13px;
  color: var(--muted-2);
  margin: 0;
}

.contact-fallback a {
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-form {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 138, 61, 0.05), transparent 55%),
    rgba(13, 13, 13, 0.65);
  backdrop-filter: blur(8px);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.contact-form .auth-field label em {
  font-style: normal;
  color: var(--muted-2);
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0;
}

.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  font: inherit;
  font-size: 15px;
  color: var(--text);
  border: 1px solid var(--line-strong);
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.03);
  outline: none;
  transition: border-color 160ms ease, background 160ms ease;
  resize: vertical;
  font-family: inherit;
}

.contact-form select {
  height: 44px;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path fill='none' stroke='%239b9b9b' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round' d='M1 1.5l5 5 5-5'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.contact-form textarea {
  min-height: 96px;
  line-height: 1.45;
}

.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(255, 138, 61, 0.55);
  background: rgba(255, 255, 255, 0.05);
}

.contact-form .auth-field input:focus {
  border-color: rgba(255, 138, 61, 0.55);
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.contact-submit {
  width: 100%;
  height: 50px;
  margin-top: 4px;
  border: none;
  border-radius: 10px;
  background: linear-gradient(135deg, #ffd27a, #ff8a3d 55%, #ff4d2e);
  color: #1a0d05;
  font-weight: 800;
  font-size: 15px;
  cursor: pointer;
  transition: transform 200ms ease, box-shadow 200ms ease;
  box-shadow: 0 14px 32px rgba(255, 77, 46, 0.32);
}

.contact-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 44px rgba(255, 77, 46, 0.45);
}

.contact-submit:disabled {
  opacity: 0.7;
  cursor: progress;
  transform: none;
}

.contact-submit.is-success {
  background: linear-gradient(135deg, #4ade80, #22c55e);
  box-shadow: 0 14px 32px rgba(34, 197, 94, 0.4);
  color: #0a1a0e;
}

.contact-submit.is-error {
  background: linear-gradient(135deg, #ff8a3d, #ff4d2e);
  box-shadow: 0 14px 32px rgba(255, 77, 46, 0.4);
  color: #1a0d05;
}

.contact-disclaimer {
  font-size: 12px;
  color: var(--muted-2);
  margin: 4px 0 0;
  text-align: center;
}

.contact-disclaimer a {
  color: var(--muted);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.final-cta {
  text-align: left;
}

@media (max-width: 880px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .contact-row {
    grid-template-columns: 1fr;
  }
}

/* === Liquid: cursor spotlight === */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background: radial-gradient(640px at var(--mx, -200px) var(--my, -200px),
              rgba(255, 138, 61, 0.06),
              transparent 45%);
  mix-blend-mode: screen;
  transition: opacity 200ms ease;
}

@media (prefers-reduced-motion: reduce) {
  body::after { display: none; }
}

/* === Liquid: card glow tracking === */
.benefit-grid article {
  --cx: 50%;
  --cy: 50%;
}

.benefit-grid article::after {
  background: radial-gradient(220px at var(--cx) var(--cy),
              rgba(255, 138, 61, 0.18),
              transparent 60%);
}

/* === Process / how we work === */
.process-grid {
  list-style: none;
  padding: 0;
  margin: 36px 0 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.02);
}

.process-grid > li {
  position: relative;
  padding: 32px 28px;
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.process-grid > li:last-child {
  border-right: 0;
}

.process-grid .step-num {
  display: inline-block;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--muted-2);
  margin-bottom: 6px;
}

.process-grid h3 {
  margin: 0 0 4px;
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.005em;
}

.process-grid p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--muted);
}

@media (max-width: 760px) {
  .process-grid > li {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .process-grid > li:last-child {
    border-bottom: 0;
  }
}

/* === Trust strip (stats + logos slot) === */
.trust-strip {
  width: min(100% - 48px, var(--max));
  margin: 12px auto 56px;
  padding: 22px 28px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.02);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 18px 28px;
}

.trust-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  position: relative;
}

.trust-stat + .trust-stat::before {
  content: "";
  position: absolute;
  left: -14px;
  top: 4px;
  bottom: 4px;
  width: 1px;
  background: var(--line);
}

.trust-stat strong {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.005em;
  color: var(--text);
}

.trust-stat span {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted-2);
}

.trust-logos {
  width: 100%;
  margin: -16px 0 64px;
  padding: 18px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.trust-logos-label {
  margin: 0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted-2);
}

.trust-logos-viewport {
  width: 100%;
  overflow: hidden;
  position: relative;
  /* Fade the logo strip itself to transparent at both ends — lets the
     animated background show through instead of a black overlay. */
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 12%, #000 88%, transparent 100%);
          mask-image: linear-gradient(to right, transparent 0%, #000 12%, #000 88%, transparent 100%);
}

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

.trust-logos-track {
  display: flex;
  align-items: center;
  gap: 64px;
  width: max-content;
  animation: logoMarquee 50s linear infinite;
}

.trust-logos-track img {
  max-height: 40px;
  max-width: 160px;
  width: auto;
  height: auto;
  object-fit: contain;
  flex-shrink: 0;
  filter: grayscale(1) brightness(1.6) contrast(0.9);
  opacity: 0.6;
  transition: opacity 240ms ease, filter 240ms ease, transform 240ms ease;
}

.trust-logos-track img:hover {
  opacity: 1;
  filter: grayscale(0) brightness(1.05) contrast(1);
  transform: translateY(-2px);
}

.trust-logos-viewport:hover .trust-logos-track {
  animation-play-state: paused;
}

@media (prefers-reduced-motion: reduce) {
  .trust-logos-track {
    animation: none;
    flex-wrap: wrap;
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 720px) {
  .trust-logos-track {
    gap: 40px;
    animation-duration: 35s;
  }
  .trust-logos-track img {
    max-height: 30px;
    max-width: 110px;
  }
}

/* === Testimonial / pull-quote === */
.pullquote {
  width: min(100% - 48px, var(--max));
  margin: 64px auto;
  padding: 56px 48px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background:
    radial-gradient(circle at 18% 22%, rgba(255, 196, 110, 0.1), transparent 55%),
    radial-gradient(circle at 82% 78%, rgba(255, 77, 46, 0.12), transparent 58%),
    rgba(13, 13, 13, 0.6);
  text-align: center;
  position: relative;
  isolation: isolate;
}

.pullquote::before {
  content: "“";
  position: absolute;
  top: -8px;
  left: 36px;
  font-family: Georgia, serif;
  font-size: 140px;
  line-height: 1;
  color: rgba(255, 138, 61, 0.25);
  pointer-events: none;
  z-index: -1;
}

.pullquote-text {
  font-family: "Aeonik", "Fustat", sans-serif;
  font-style: italic;
  font-weight: 700;
  font-size: clamp(22px, 2.6vw, 34px);
  line-height: 1.3;
  letter-spacing: -0.01em;
  margin: 0 auto 28px;
  max-width: 760px;
  color: var(--text);
}

.pullquote-attribution {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 14px;
  color: var(--muted);
}

.pullquote-attribution .pq-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffd27a, #ff8a3d 55%, #ff4d2e);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Aeonik", "Fustat", sans-serif;
  font-style: italic;
  font-weight: 700;
  color: #1a0d05;
  font-size: 18px;
}

.pullquote-attribution b {
  color: var(--text);
  font-weight: 700;
}

/* === Service / benefit card upgrades === */
.benefit-grid article {
  position: relative;
  transition: transform 240ms ease, border-color 240ms ease, background 240ms ease, box-shadow 240ms ease;
  cursor: default;
  overflow: hidden;
}

.benefit-grid article::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at 100% 0%, rgba(255, 138, 61, 0.12), transparent 50%);
  opacity: 0;
  transition: opacity 280ms ease;
  pointer-events: none;
}

.benefit-grid article:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 138, 61, 0.35);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}

.benefit-grid article:hover::after {
  opacity: 1;
}

.benefit-grid article > span {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.benefit-grid article > span::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffd27a, #ff8a3d);
  box-shadow: 0 0 12px rgba(255, 138, 61, 0.6);
}

.card-cta {
  position: relative;
  margin-top: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--text);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  opacity: 0.7;
  transition: opacity 200ms ease, gap 200ms ease;
}

.benefit-grid article:hover .card-cta {
  opacity: 1;
  gap: 10px;
}

/* === Sticky floating CTA === */
.float-cta {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 40;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ffd27a, #ff8a3d 55%, #ff4d2e);
  color: #1a0d05;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: -0.005em;
  text-decoration: none;
  box-shadow: 0 18px 40px rgba(255, 77, 46, 0.4), 0 0 30px rgba(255, 138, 61, 0.25);
  transform: translateY(80px);
  opacity: 0;
  pointer-events: none;
  transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1), opacity 280ms ease, box-shadow 240ms ease;
}

.float-cta.is-visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.float-cta:hover {
  box-shadow: 0 22px 50px rgba(255, 77, 46, 0.55), 0 0 40px rgba(255, 138, 61, 0.4);
}

.float-cta::after {
  content: "→";
  font-size: 16px;
  transition: transform 200ms ease;
}

.float-cta:hover::after {
  transform: translateX(3px);
}

@media (max-width: 540px) {
  .float-cta {
    right: 14px;
    bottom: 14px;
    height: 44px;
    padding: 0 16px;
    font-size: 13px;
  }
}

/* Ambient blobs removed — page sits on the solid dark base. */
.site-shell {
  position: relative;
  z-index: 1;
}

/* === Unified animated background field (Resend-style) === */
.bg-field {
  position: fixed;
  inset: -8%;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  background: #000;
  /* Mouse parallax applied here (parent) so it never fights the per-blob motion */
  transform: translate(calc((var(--mx, 0.5) - 0.5) * 48px), calc((var(--my, 0.5) - 0.5) * 48px));
  transition: transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

/* Animated film grain — shimmers continuously, monochrome, very subtle. */
.bg-grain {
  position: absolute;
  inset: -150%;
  width: 400%;
  height: 400%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='matrix' values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.5 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.05;
  animation: grainShift 0.7s steps(6) infinite;
  will-change: transform;
}

@keyframes grainShift {
  0%   { transform: translate(0, 0); }
  16%  { transform: translate(-6%, -4%); }
  33%  { transform: translate(4%, -7%); }
  50%  { transform: translate(-5%, 5%); }
  66%  { transform: translate(7%, 3%); }
  83%  { transform: translate(-3%, 6%); }
  100% { transform: translate(0, 0); }
}

/* Flowing colored gradient mesh — drifts on its own AND reacts to the cursor.
   --mx / --my are set by JS (0..1 across the viewport). */
.bg-drift {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.6;
  will-change: transform;
}

.bg-drift-1 {
  top: -15%;
  left: -10%;
  width: 55vw;
  height: 55vw;
  background: radial-gradient(circle, rgba(255, 138, 61, 0.6), transparent 60%);
  animation: driftA 18s ease-in-out infinite;
}

.bg-drift-2 {
  top: 20%;
  right: -16%;
  width: 60vw;
  height: 60vw;
  background: radial-gradient(circle, rgba(86, 100, 255, 0.5), transparent 62%);
  animation: driftB 22s ease-in-out infinite;
}

.bg-drift-3 {
  bottom: -25%;
  left: 18%;
  width: 54vw;
  height: 54vw;
  background: radial-gradient(circle, rgba(192, 132, 252, 0.4), transparent 62%);
  animation: driftC 26s ease-in-out infinite;
}

/* Big, clearly visible continuous motion */
@keyframes driftA {
  0%   { transform: translate(0, 0) scale(1); }
  33%  { transform: translate(16vw, 10vh) scale(1.15); }
  66%  { transform: translate(8vw, 22vh) scale(0.95); }
  100% { transform: translate(0, 0) scale(1); }
}

@keyframes driftB {
  0%   { transform: translate(0, 0) scale(1); }
  33%  { transform: translate(-18vw, 8vh) scale(1.1); }
  66%  { transform: translate(-6vw, -12vh) scale(1.2); }
  100% { transform: translate(0, 0) scale(1); }
}

@keyframes driftC {
  0%   { transform: translate(0, 0) scale(1); }
  33%  { transform: translate(14vw, -14vh) scale(1.18); }
  66%  { transform: translate(-10vw, -4vh) scale(0.92); }
  100% { transform: translate(0, 0) scale(1); }
}

@media (prefers-reduced-motion: reduce) {
  .bg-grain, .bg-drift { animation: none !important; }
  .bg-field { transition: none; }
}


/* === 3D card tilt === */


/* === Page-load animations === */
@keyframes authIn {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeSoft {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Legal / info pages — single gentle fade */
.legal-page {
  animation: fadeSoft 620ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.legal-page > * {
  animation: fadeSoft 600ms cubic-bezier(0.22, 1, 0.36, 1) both;
}
.legal-page > *:nth-child(1) { animation-delay: 60ms; }
.legal-page > *:nth-child(2) { animation-delay: 110ms; }
.legal-page > *:nth-child(3) { animation-delay: 160ms; }
.legal-page > *:nth-child(4) { animation-delay: 210ms; }
.legal-page > *:nth-child(5) { animation-delay: 260ms; }
.legal-page > *:nth-child(6) { animation-delay: 310ms; }
.legal-page > *:nth-child(n+7) { animation-delay: 360ms; }

/* Auth pages — staggered cascade across both panels */
.auth-brand-top,
.auth-brand-headline > h2,
.auth-brand-headline > p,
.auth-perks li,
.auth-brand-foot,
.auth-split-form-top,
.auth-split-form-inner h1,
.auth-split-form-inner .auth-lede,
.auth-form .auth-field,
.auth-form .auth-check,
.auth-form .auth-forgot,
.auth-form .auth-submit,
.auth-alt,
.auth-solo-topbar,
.auth-solo-card,
.auth-solo-footer {
  animation: authIn 760ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

/* Left panel cadence */
.auth-brand-top              { animation-delay: 80ms; }
.auth-brand-headline > h2    { animation-delay: 200ms; }
.auth-brand-headline > p     { animation-delay: 280ms; }
.auth-perks li:nth-child(1)  { animation-delay: 360ms; }
.auth-perks li:nth-child(2)  { animation-delay: 420ms; }
.auth-perks li:nth-child(3)  { animation-delay: 480ms; }
.auth-perks li:nth-child(4)  { animation-delay: 540ms; }
.auth-brand-foot             { animation-delay: 620ms; }

/* Right panel cadence (slightly offset so both sides feel alive) */
.auth-split-form-top                  { animation-delay: 220ms; }
.auth-split-form-inner h1             { animation-delay: 300ms; }
.auth-split-form-inner .auth-lede     { animation-delay: 360ms; }
.auth-form .auth-field:nth-of-type(1) { animation-delay: 420ms; }
.auth-form .auth-field:nth-of-type(2) { animation-delay: 480ms; }
.auth-form .auth-field:nth-of-type(3) { animation-delay: 540ms; }
.auth-form .auth-field:nth-of-type(4) { animation-delay: 600ms; }
.auth-form .auth-check                { animation-delay: 660ms; }
.auth-form .auth-forgot               { animation-delay: 600ms; }
.auth-form .auth-submit               { animation-delay: 720ms; }
.auth-alt                             { animation-delay: 780ms; }

/* Solo card */
.auth-solo-topbar { animation-delay: 100ms; }
.auth-solo-card   { animation-delay: 200ms; }
.auth-solo-footer { animation-delay: 400ms; }

@media (prefers-reduced-motion: reduce) {
  .legal-page,
  .legal-page > *,
  .auth-brand-top,
  .auth-brand-headline > h2,
  .auth-brand-headline > p,
  .auth-perks li,
  .auth-brand-foot,
  .auth-split-form-top,
  .auth-split-form-inner h1,
  .auth-split-form-inner .auth-lede,
  .auth-form .auth-field,
  .auth-form .auth-check,
  .auth-form .auth-forgot,
  .auth-form .auth-submit,
  .auth-alt,
  .auth-solo-topbar,
  .auth-solo-card,
  .auth-solo-footer {
    animation: none !important;
  }
}

/* === Split layout (signup) === */
.auth-split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  min-height: 100vh;
}

.auth-split.auth-split-reverse {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
}

.auth-split-brand {
  position: relative;
  padding: 44px 48px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 48px;
  background:
    radial-gradient(circle at 25% 18%, rgba(148, 243, 63, 0.22), transparent 55%),
    radial-gradient(circle at 80% 78%, rgba(86, 100, 255, 0.2), transparent 60%),
    radial-gradient(circle at 60% 50%, rgba(255, 138, 61, 0.06), transparent 70%),
    #07090f;
  overflow: hidden;
  isolation: isolate;
  color: var(--text);
}

.auth-split-brand::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 100% 56px;
  mask-image: linear-gradient(to bottom, transparent, black 16%, black 84%, transparent);
  pointer-events: none;
  z-index: -1;
}

.auth-brand-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.auth-brand-top .brand-name {
  font-family: "Aeonik", "Fustat", sans-serif;
  font-style: italic;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.auth-back {
  font-size: 13px;
  color: var(--muted);
  text-decoration: none;
}

.auth-back:hover {
  color: var(--text);
}

.auth-brand-headline h2 {
  margin: 0 0 14px;
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1;
  letter-spacing: -0.015em;
  font-weight: 800;
}

.auth-brand-headline h2 em {
  font-family: "Aeonik", "Fustat", sans-serif;
  font-style: italic;
  font-weight: 700;
  background: linear-gradient(135deg, #ffd27a, #ff8a3d 50%, #ff4d2e);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
}

.auth-brand-headline p {
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
  max-width: 440px;
}

.auth-perks {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.auth-perks li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14.5px;
  line-height: 1.45;
  color: #e7e7e7;
}

.auth-perks li::before {
  content: "✓";
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  margin-top: 1px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(148, 243, 63, 0.95), rgba(86, 196, 30, 0.75));
  color: #071108;
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
  box-shadow: 0 0 16px rgba(148, 243, 63, 0.35);
}

.auth-perks li strong {
  display: block;
  font-weight: 700;
  margin-bottom: 2px;
}

.auth-brand-foot {
  font-size: 12px;
  color: var(--muted-2);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.auth-brand-foot a {
  color: var(--muted-2);
}

.auth-brand-foot a:hover {
  color: var(--muted);
}

.auth-split-form {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 36px 48px;
  background: var(--bg);
}

.auth-split-form-top {
  display: flex;
  justify-content: flex-end;
  font-size: 13px;
  color: var(--muted);
}

.auth-split-form-top a {
  color: var(--text);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
  margin-left: 6px;
}

.auth-split-form-body {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.auth-split-form-inner {
  width: min(100%, 400px);
}

.auth-split-form-inner h1 {
  font-size: clamp(28px, 3vw, 36px);
  line-height: 1.1;
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}

.auth-split-form-inner .auth-lede {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
  margin: 0 0 26px;
}

@media (max-width: 880px) {
  .auth-split {
    grid-template-columns: 1fr;
  }
  .auth-split-brand {
    padding: 32px 24px;
    gap: 32px;
  }
  .auth-brand-headline h2 {
    font-size: 36px;
  }
  .auth-split-form {
    padding: 28px 24px 48px;
  }
}

/* === Solo layout (signin) === */
.auth-solo {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 56px 20px;
  position: relative;
  background:
    radial-gradient(circle at 50% 0%, rgba(148, 243, 63, 0.14), transparent 50%),
    radial-gradient(circle at 100% 100%, rgba(86, 100, 255, 0.1), transparent 60%),
    radial-gradient(circle at 0% 100%, rgba(255, 138, 61, 0.06), transparent 60%),
    var(--bg);
  isolation: isolate;
}

.auth-solo::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 100% 56px;
  mask-image: radial-gradient(ellipse at center, black, transparent 70%);
  pointer-events: none;
  z-index: -1;
}

.auth-solo-topbar {
  position: absolute;
  top: 24px;
  left: 24px;
  right: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
}

.auth-solo-topbar .brand-name {
  font-family: "Aeonik", "Fustat", sans-serif;
  font-style: italic;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--text);
}

.auth-solo-topbar .auth-back {
  color: var(--muted);
}

.auth-solo-card {
  width: min(100%, 420px);
  padding: 40px 36px 36px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(14, 14, 14, 0.78);
  backdrop-filter: blur(14px);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6);
  text-align: left;
}

.auth-solo-card .auth-card-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-bottom: 22px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
  font-family: "Aeonik", "Fustat", sans-serif;
  font-style: italic;
  font-weight: 700;
  font-size: 20px;
  color: var(--text);
}

.auth-solo-card h1 {
  font-size: clamp(26px, 2.6vw, 32px);
  line-height: 1.1;
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}

.auth-solo-card .auth-lede {
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.5;
  margin: 0 0 24px;
}

.auth-solo-footer {
  position: absolute;
  bottom: 20px;
  left: 24px;
  right: 24px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 12px;
  color: var(--muted-2);
}

.auth-solo-footer a {
  color: var(--muted-2);
}

.auth-solo-footer a:hover {
  color: var(--muted);
}

/* shared form bits already defined below */

.auth-page {
  width: min(100% - 32px, 440px);
  margin: 80px auto 100px;
  padding: 36px 32px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background:
    radial-gradient(circle at 0% 0%, rgba(148, 243, 63, 0.06), transparent 55%),
    radial-gradient(circle at 100% 100%, rgba(86, 100, 255, 0.07), transparent 55%),
    rgba(13, 13, 13, 0.78);
  backdrop-filter: blur(6px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
}

.auth-page h1 {
  font-size: clamp(28px, 3vw, 36px);
  line-height: 1.1;
  margin: 4px 0 8px;
  letter-spacing: -0.01em;
}

.auth-page .auth-lede {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
  margin: 0 0 28px;
}

.auth-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.auth-field label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}

.auth-field input {
  width: 100%;
  height: 44px;
  padding: 0 14px;
  font: inherit;
  font-size: 15px;
  color: var(--text);
  border: 1px solid var(--line-strong);
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.03);
  outline: none;
  transition: border-color 160ms ease, background 160ms ease;
}

.auth-field input:focus {
  border-color: rgba(148, 243, 63, 0.6);
  background: rgba(255, 255, 255, 0.05);
}

.auth-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.45;
}

.auth-check input {
  margin-top: 3px;
}

.auth-check a {
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.auth-submit {
  height: 46px;
  margin-top: 6px;
  border: none;
  border-radius: 10px;
  background: #ffffff;
  color: #090909;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: background 160ms ease, transform 160ms ease;
}

.auth-submit:hover {
  background: #f0f0f0;
}

.auth-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 22px 0 14px;
  color: var(--muted-2);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.auth-divider::before,
.auth-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line);
}

.auth-alt {
  text-align: center;
  font-size: 14px;
  color: var(--muted);
  margin: 18px 0 0;
}

.auth-alt a {
  color: var(--text);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.auth-forgot {
  align-self: flex-end;
  font-size: 13px;
  color: var(--muted);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.auth-forgot:hover {
  color: var(--text);
}

.legal-page {
  width: min(100% - 48px, 820px);
  margin: 64px auto 80px;
  color: var(--text);
}

.legal-page .legal-eyebrow {
  margin: 0 0 14px;
  color: var(--yellow);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.legal-page h1 {
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}

.legal-page .legal-meta {
  margin: 0 0 36px;
  color: var(--muted-2);
  font-size: 14px;
  font-weight: 500;
}

.legal-page .legal-intro {
  font-size: clamp(17px, 1.4vw, 19px);
  line-height: 1.6;
  color: var(--muted);
  margin-bottom: 36px;
}

.legal-page h2 {
  margin: 44px 0 14px;
  font-size: clamp(22px, 2vw, 28px);
  font-weight: 700;
  letter-spacing: -0.005em;
}

.legal-page h3 {
  margin: 28px 0 10px;
  font-size: 17px;
  font-weight: 700;
}

.legal-page p,
.legal-page ul,
.legal-page ol {
  color: #d6d6d6;
  font-size: 15.5px;
  line-height: 1.65;
  margin: 0 0 14px;
}

.legal-page ul,
.legal-page ol {
  padding-left: 22px;
}

.legal-page li {
  margin-bottom: 8px;
}

.legal-page a {
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(255, 255, 255, 0.35);
}

.legal-page a:hover {
  text-decoration-color: var(--text);
}

.legal-page table {
  width: 100%;
  border-collapse: collapse;
  margin: 18px 0 28px;
  font-size: 14px;
}

.legal-page th,
.legal-page td {
  text-align: left;
  padding: 12px 14px;
  border: 1px solid var(--line);
  vertical-align: top;
}

.legal-page th {
  background: rgba(255, 255, 255, 0.04);
  font-weight: 700;
}

.legal-callout {
  margin: 24px 0;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-left: 3px solid var(--yellow);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.role-card {
  padding: 22px;
  margin: 14px 0;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.025);
}

.role-card h3 {
  margin: 0 0 6px;
}

.role-card .role-meta {
  color: var(--muted-2);
  font-size: 13px;
  margin-bottom: 10px;
}

.footer-legal {
  width: min(100% - 48px, var(--max));
  margin: 32px auto 0;
  padding: 20px 0 0;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 18px 28px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
}

.footer-legal a {
  color: var(--muted);
  transition: color 160ms ease;
}

.footer-legal a:hover {
  color: var(--text);
}

.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%) translateY(20px);
  width: min(100% - 32px, 720px);
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 18px 20px;
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  background: rgba(14, 14, 14, 0.92);
  backdrop-filter: blur(18px);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.55);
  opacity: 0;
  pointer-events: none;
  transition: transform 360ms ease, opacity 360ms ease;
}

.cookie-banner.is-visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner-text strong {
  display: block;
  margin-bottom: 4px;
  font-size: 14px;
  font-weight: 700;
}

.cookie-banner-text p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.cookie-banner-text a {
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-banner-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.cookie-btn {
  height: 38px;
  padding: 0 16px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  transition: background 160ms ease, transform 160ms ease;
}

.cookie-btn:hover {
  background: rgba(255, 255, 255, 0.09);
}

.cookie-btn-accept {
  background: #ffffff;
  color: #090909;
  border-color: #ffffff;
}

.cookie-btn-accept:hover {
  background: #f1f1f1;
}

@media (max-width: 640px) {
  .cookie-banner {
    grid-template-columns: 1fr;
  }
  .cookie-banner-actions {
    justify-content: stretch;
  }
  .cookie-btn {
    flex: 1;
  }
}

.manifesto {
  width: min(100% - 48px, var(--max));
  margin: 96px auto;
  padding: 80px 48px;
  position: relative;
  text-align: center;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(13, 13, 13, 0.55);
  overflow: hidden;
  isolation: isolate;
}

.manifesto::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.18), transparent 50%, rgba(255, 138, 61, 0.22));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
  z-index: -1;
}

.manifesto-eyebrow {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.manifesto-line {
  margin: 0 0 22px;
  font-size: clamp(56px, 9vw, 132px);
  line-height: 0.88;
  font-weight: 800;
  letter-spacing: -0.035em;
  text-transform: uppercase;
}

.manifesto-line span {
  background: linear-gradient(180deg, #ffffff, #c4c4c4);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
}

.manifesto-line em {
  font-family: "Aeonik", "Fustat", sans-serif;
  font-style: italic;
  font-weight: 700;
  background: linear-gradient(135deg, #ffd27a, #ff8a3d 45%, #ff4d2e);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  text-shadow: 0 0 60px rgba(255, 138, 61, 0.55);
}

.manifesto-sub {
  margin: 0 auto;
  max-width: 620px;
  color: var(--muted);
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.5;
  font-weight: 500;
}

@media (max-width: 720px) {
  .manifesto {
    padding: 56px 24px;
    margin: 56px auto;
  }
}


/* Staggered hero entrance — each element appears in sequence on load */
.hero .announcement,
.hero-copy > .eyebrow,
.hero-copy > h1,
.hero-copy > p:not(.eyebrow),
.hero-copy > .hero-buttons,
.hero-copy > .hero-trust,
.hero-visual {
  animation: fadeUp 720ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero .announcement        { animation-delay: 80ms; }
.hero-copy > .eyebrow      { animation-delay: 200ms; }
.hero-copy > h1            { animation-delay: 320ms; }
.hero-copy > p:not(.eyebrow) { animation-delay: 480ms; }
.hero-copy > .hero-buttons { animation-delay: 620ms; }
.hero-copy > .hero-trust   { animation-delay: 740ms; }
.hero-visual               { animation-delay: 560ms; }

.announcement {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 36px;
  margin: 0 0 38px;
  padding: 0 17px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.04));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16), 0 10px 24px rgba(0, 0, 0, 0.25);
  color: #f5f5f5;
  font-size: 14px;
  font-weight: 700;
}

.announcement span {
  color: var(--muted);
}

.announcement strong {
  font-size: 18px;
  line-height: 1;
}

.hero-copy {
  width: 100%;
  margin: 0;
}

.eyebrow,
.section-kicker {
  margin: 0 0 16px;
  color: var(--muted);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(54px, 7.4vw, 124px);
  line-height: 0.86;
  font-weight: 800;
  letter-spacing: -0.035em;
  text-transform: uppercase;
}

.hero-copy p:not(.eyebrow) {
  width: min(560px, 100%);
  margin: 0 0 28px;
  color: var(--muted);
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.45;
  font-weight: 500;
}

.hero-buttons {
  display: flex;
  justify-content: flex-start;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
}

.hero-trust-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted-2);
  white-space: nowrap;
}

.hero-trust-logos {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-trust-logos img {
  max-height: 26px;
  max-width: 90px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(1) brightness(1.6) contrast(0.9);
  opacity: 0.7;
  transition: opacity 200ms ease, filter 200ms ease;
}

.hero-trust-logos img:hover {
  opacity: 1;
  filter: grayscale(0) brightness(1.05);
}

.hero-trust-plus {
  display: inline-flex;
  align-items: center;
  height: 26px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--muted);
}

@media (max-width: 540px) {
  .hero-trust {
    gap: 14px;
    margin-top: 28px;
    padding-top: 20px;
  }
  .hero-trust-logos {
    gap: 14px;
  }
  .hero-trust-logos img {
    max-height: 22px;
    max-width: 70px;
  }
}

.primary-button {
  padding: 0 24px;
  background: #ffffff;
  color: #090909;
}

.secondary-button {
  padding: 0 22px;
  border: 1px solid var(--line-strong);
  color: var(--text);
  background: rgba(255, 255, 255, 0.03);
}

.hero-visual {
  position: relative;
  margin-top: 0;
  min-height: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-stage {
  position: relative;
  width: 100%;
  isolation: isolate;
}

.hero-glow {
  position: absolute;
  inset: -18% -10% -14% -10%;
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 196, 110, 0.16), transparent 55%),
    radial-gradient(circle at 75% 75%, rgba(255, 77, 46, 0.14), transparent 60%),
    radial-gradient(circle at 50% 100%, rgba(74, 222, 128, 0.07), transparent 60%);
  filter: blur(40px);
  z-index: -1;
  pointer-events: none;
  animation: heroGlowPulse 10s ease-in-out infinite;
}

@keyframes heroGlowPulse {
  0%, 100% { opacity: 0.85; }
  50% { opacity: 1; }
}

.hero-chip {
  position: absolute;
  z-index: 4;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(13, 13, 13, 0.86);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.5);
  pointer-events: none;
  min-width: 158px;
}

.hero-chip-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted-2);
}

.hero-chip-value {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--text);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-chip-value i {
  font-style: normal;
  font-size: 12px;
  font-weight: 700;
  color: #4ade80;
  background: rgba(74, 222, 128, 0.12);
  border: 1px solid rgba(74, 222, 128, 0.3);
  padding: 1px 7px;
  border-radius: 999px;
}

.hero-chip-tr {
  top: 12%;
  right: -8%;
  animation: chipFloat 6s ease-in-out infinite;
}

.hero-chip-bl {
  bottom: 14%;
  left: -8%;
  animation: chipFloat 7s ease-in-out -2s infinite;
}

@keyframes chipFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

@media (max-width: 1080px) {
  .hero-chip-tr { right: 0; }
  .hero-chip-bl { left: 0; }
}

@media (max-width: 720px) {
  .hero-chip { display: none; }
}

.product-frame {
  position: relative;
  display: block;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.02);
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(255, 255, 255, 0.02) inset;
  transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1), border-color 240ms ease, box-shadow 240ms ease;
}

.product-frame:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow:
    0 40px 100px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(255, 255, 255, 0.04) inset;
}

.product-frame img {
  display: block;
  width: 100%;
  height: auto;
}

.product-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px 6px 10px;
  border-radius: 999px;
  background: rgba(10, 10, 10, 0.72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.product-badge i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 10px rgba(74, 222, 128, 0.7);
  position: relative;
}

.product-badge i::after {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 1px solid rgba(74, 222, 128, 0.6);
  animation: pulseRing 2.4s ease-out infinite;
}

@media (max-width: 960px) {
  .product-frame img {
    width: 100%;
  }
}

.globe-stage {
  position: relative;
  width: min(100%, 520px);
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.globe {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

.globe-atmosphere {
  position: absolute;
  inset: -10%;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.08), transparent 60%);
  filter: blur(10px);
  pointer-events: none;
  animation: atmospherePulse 6s ease-in-out infinite;
}

.globe-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: visible;
}

.globe-svg .ocean {
  stroke: rgba(255, 255, 255, 0.18);
  stroke-width: 0.4;
}

.globe-svg .land {
  fill: url(#rayl-land);
  stroke: rgba(28, 60, 36, 0.7);
  stroke-width: 0.35;
  paint-order: stroke fill;
}

.globe-svg .dot {
  fill: rgba(220, 240, 210, 0.32);
}

.globe-svg .graticule {
  fill: none;
  stroke: rgba(255, 255, 255, 0.08);
  stroke-width: 0.35;
}

.globe-svg .sphere-shade {
  pointer-events: none;
}

/* Hide previous chip/orbit/glow decorations now that the globe is full-bleed */
.reach-globe .reach-chip,
.reach-globe .reach-glow,
.reach-globe .orbit,
.reach-globe .reach-status,
.reach-globe .globe-atmosphere,
.reach-globe .globe-shade {
  display: none !important;
}

.reach-globe .globe-stage,
.reach-globe .globe {
  width: 100%;
  height: 100%;
}

.reach-globe .globe-svg {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  filter: drop-shadow(0 -10px 80px rgba(42, 109, 163, 0.35));
}

.reach-globe .globe-pulses {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.reach-globe .globe-pulses .pulse i:first-child {
  background: #ffd27a;
  box-shadow: 0 0 14px rgba(255, 210, 122, 0.9), 0 0 32px rgba(255, 138, 61, 0.5);
}

.reach-globe .globe-pulses .pulse i:last-child {
  border-color: rgba(255, 210, 122, 0.7);
}

.reach-globe .globe-pulses .pulse em {
  display: none;
}

.globe-pulses {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.globe-pulses .pulse {
  position: absolute;
  left: 0;
  top: 0;
  margin: -5px 0 0 -5px;
  opacity: 0;
  transition: opacity 0.3s ease;
  will-change: transform, opacity;
}

.globe-shade {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  pointer-events: none;
  background:
    radial-gradient(circle at 35% 30%, rgba(255, 255, 255, 0.08), transparent 42%),
    radial-gradient(circle at 50% 50%, transparent 64%, rgba(0, 0, 0, 0.6) 100%);
}

@keyframes atmospherePulse {
  0%, 100% { opacity: 0.85; }
  50% { opacity: 1; }
}

.pulse {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: 10px;
  height: 10px;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.pulse i {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.6), 0 0 22px rgba(255, 255, 255, 0.25);
}

.pulse i:last-child {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.6);
  animation: pulseRing 2.4s ease-out infinite;
}

.pulse-eu i:last-child { animation-delay: 0.6s; }
.pulse-af i:last-child { animation-delay: 1.2s; }
.pulse-sa i:last-child { animation-delay: 0.3s; }
.pulse-as i:last-child { animation-delay: 1.8s; }

@keyframes pulseRing {
  0% { transform: scale(1); opacity: 0.9; }
  100% { transform: scale(4.5); opacity: 0; }
}

.pulse em {
  position: absolute;
  left: 18px;
  top: -10px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 8px 12px;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: rgba(14, 14, 14, 0.88);
  backdrop-filter: blur(8px);
  color: var(--text);
  font-size: 12px;
  font-weight: 700;
  font-style: normal;
  white-space: nowrap;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.45);
}

.pulse em b {
  color: var(--muted);
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.pulse-right em {
  left: auto;
  right: 18px;
  align-items: flex-end;
}

.dashboard {
  width: min(100%, 1020px);
  min-height: 470px;
  margin: 0 auto;
  padding: 28px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 128px 1fr;
  gap: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0)),
    rgba(0, 0, 0, 0.52);
  box-shadow: 0 35px 120px rgba(31, 56, 140, 0.2);
  text-align: left;
}

.dashboard,
.floating-card,
.branch-card,
.benefit-grid article,
.developer-grid article,
.balance-card,
.final-cta,
.site-footer {
  will-change: transform, opacity;
}

.metric-card,
.chart-panel,
.floating-card,
.branch-card,
.benefit-grid article,
.developer-grid article,
.balance-card,
.site-footer {
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.048), rgba(255, 255, 255, 0.012)),
    var(--panel);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.metric-card {
  min-width: 0;
  padding: 20px 22px;
  border-radius: 8px;
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.metric-card:hover,
.branch-card:hover,
.benefit-grid article:hover,
.developer-grid article:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.24);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.018)),
    var(--panel);
}

.metric-card span,
.panel-title {
  display: block;
  color: #d8d8d8;
  font-size: 14px;
  font-weight: 700;
}

.metric-card span {
  margin-bottom: 18px;
}

.metric-card strong {
  display: block;
  margin-bottom: 8px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: clamp(25px, 3.1vw, 32px);
  font-weight: 500;
  letter-spacing: 0;
}

.metric-card small {
  color: #9d9d9d;
  font-size: 12px;
}

.metric-card b {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  min-height: 18px;
  margin-right: 6px;
  border-radius: 999px;
  background: var(--green-dark);
  color: var(--green);
  font-size: 10px;
}

.chart-panel {
  position: relative;
  min-height: 256px;
  padding: 22px;
  border-radius: 8px;
  overflow: hidden;
}

.panel-header {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.panel-header p {
  margin: 5px 0 0;
  color: var(--muted-2);
  font-size: 12px;
  font-weight: 700;
}

.panel-title {
  margin-bottom: 0;
}

.chart-tabs,
.chart-legend {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  min-height: 32px;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.chart-tabs span,
.chart-tabs b {
  min-width: 34px;
  min-height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
}

.chart-tabs b {
  background: #ffffff;
  color: #090909;
}

.chart-legend {
  gap: 12px;
  padding: 0 10px;
}

.chart-legend span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.chart-legend i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
  background: var(--green);
}

.chart-legend span:last-child i {
  background: var(--blue);
}

.chart-tooltip {
  position: absolute;
  z-index: 4;
  right: 84px;
  top: 96px;
  min-width: 132px;
  padding: 10px 12px;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: rgba(9, 9, 9, 0.94);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.42);
  color: #ffffff;
  animation: pulseTooltip 2800ms ease-in-out infinite;
}

.chart-tooltip::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -6px;
  width: 10px;
  height: 10px;
  border-right: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
  background: rgba(9, 9, 9, 0.94);
  transform: translateX(-50%) rotate(45deg);
}

.chart-tooltip-left {
  right: auto;
  left: 48%;
}

.chart-tooltip span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.chart-tooltip strong {
  display: block;
  margin-top: 3px;
  font-size: 14px;
}

.chart-left {
  grid-column: span 1;
}

.chart-right {
  grid-column: span 2;
}

.chart-panel::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75), transparent);
  pointer-events: none;
}

.chart-panel svg {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 160px;
  overflow: visible;
}

.line-white,
.line-green,
.area-green {
  animation: drawLine 1400ms ease both;
  transform-origin: left center;
}

.line-white,
.line-green {
  fill: none;
  stroke-width: 4;
  stroke-linecap: round;
}

.line-white {
  stroke: #ffffff;
}

.line-green {
  stroke: var(--green);
}

.area-green {
  fill: url(#greenFill);
}

.chart-grid {
  position: absolute;
  left: 22px;
  top: 72px;
  display: grid;
  gap: 20px;
  color: var(--muted);
  font-size: 13px;
}

.chart-months {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  color: #9c9c9c;
  font-size: 13px;
}

.floating-card {
  position: absolute;
  border-radius: 8px;
  background: rgba(12, 12, 12, 0.92);
  backdrop-filter: blur(16px);
  text-align: left;
}

.floating-card strong {
  display: block;
  font-size: 30px;
  line-height: 1;
  font-weight: 800;
}

.floating-card span {
  display: block;
  margin-top: 6px;
  color: #ffffff;
  font-size: 19px;
  line-height: 1.15;
  font-weight: 800;
}

.card-providers {
  left: 0;
  bottom: 36px;
  width: 254px;
  padding: 28px 24px 24px;
}

.payment-stack {
  margin-top: 28px;
  display: grid;
  gap: 10px;
}

.payment-stack div {
  min-height: 48px;
  padding: 13px 14px;
  border: 1px solid rgba(86, 100, 255, 0.78);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  color: #eeeeee;
  font-size: 13px;
  font-weight: 700;
  transition: transform 180ms ease, background 180ms ease;
}

.payment-stack div:hover {
  transform: translateX(4px);
  background: rgba(255, 255, 255, 0.09);
}

.card-countries {
  right: 0;
  top: -48px;
  width: 250px;
  padding: 28px 24px 24px;
}

.flag-grid {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.flag-grid img,
.flag-grid i {
  display: inline-flex;
  min-height: 22px;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  overflow: hidden;
}

.flag-grid img {
  width: 100%;
  height: 24px;
  object-fit: cover;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.16);
}

.flag-grid i {
  background: #181818;
  color: #ffffff;
  font-style: normal;
  font-size: 10px;
  font-weight: 800;
}

.section {
  padding: 76px 0;
}

.section h2,
.split-section h2,
.final-cta h2 {
  width: min(900px, 100%);
  margin-bottom: 14px;
  font-size: clamp(42px, 5.8vw, 88px);
  line-height: 0.9;
  font-weight: 800;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.section-lede,
.split-section p,
.final-cta p {
  width: min(760px, 100%);
  color: var(--muted);
  font-size: clamp(19px, 2.2vw, 25px);
  line-height: 1.4;
  font-weight: 600;
}

.branch-grid {
  margin-top: 58px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.branch-card {
  min-height: 520px;
  padding: 38px 40px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.large-card {
  grid-column: span 1;
}

.branch-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 70% 18%, rgba(255, 255, 255, 0.14), transparent 16rem),
    linear-gradient(to top, rgba(0, 0, 0, 0.88), transparent 52%);
  pointer-events: none;
}

.branch-card > * {
  position: relative;
  z-index: 1;
}

.branch-card > p:first-of-type {
  margin-bottom: 14px;
  color: var(--muted);
  font-weight: 700;
}

.branch-card h3 {
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 26px;
  line-height: 1.1;
  letter-spacing: 0;
}

.branch-card h3 span {
  font-size: 28px;
  font-weight: 500;
}

.branch-card p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
  font-weight: 600;
}

.branch-visual {
  position: absolute;
  inset: 0;
}

.rails-visual span {
  position: absolute;
  height: 52px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.08);
}

/* === Rayl Payments mini operations panel === */
.payments-viz {
  padding: 24px;
  display: flex;
  flex-direction: column;
}

.pv-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  padding: 6px 12px;
  border: 1px solid rgba(74, 222, 128, 0.28);
  border-radius: 999px;
  background: rgba(13, 13, 13, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--text);
}

.pv-pill-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 8px rgba(74, 222, 128, 0.65);
  position: relative;
}

.pv-pill-dot::after {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 1px solid rgba(74, 222, 128, 0.55);
  animation: pulseRing 2.4s ease-out infinite;
}

.pv-chart {
  margin: 18px 0 16px;
  height: 90px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background:
    linear-gradient(to right, rgba(255,255,255,0.04), transparent 30%, transparent 70%, rgba(255,255,255,0.04)),
    rgba(13, 13, 13, 0.55);
  overflow: hidden;
  padding: 8px 10px;
}

.pv-chart svg {
  display: block;
  width: 100%;
  height: 100%;
}

.pv-tiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.pv-tile {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(13, 13, 13, 0.55);
}

.pv-tile span {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted-2);
}

.pv-tile strong {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--text);
}

@media (max-width: 540px) {
  .payments-viz {
    padding: 18px;
  }
  .pv-chart {
    height: 72px;
  }
  .pv-tiles {
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
  }
  .pv-tile {
    padding: 8px 10px;
  }
  .pv-tile strong {
    font-size: 13px;
  }
}

.rails-visual span:nth-child(1) {
  width: 55%;
  left: 11%;
  top: 18%;
  box-shadow: 0 0 45px rgba(86, 100, 255, 0.32);
}

.rails-visual span:nth-child(2) {
  width: 46%;
  right: 12%;
  top: 34%;
}

.rails-visual span:nth-child(3) {
  width: 62%;
  left: 20%;
  top: 50%;
  box-shadow: 0 0 48px rgba(148, 243, 63, 0.16);
}

.rails-visual span:nth-child(4) {
  width: 44%;
  left: 8%;
  top: 66%;
}

.mini-chart {
  position: absolute;
  inset: 28px 28px auto;
  height: 230px;
  border-radius: 8px;
  background-image: radial-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px);
  background-size: 14px 14px;
  overflow: hidden;
}

.mini-chart span {
  position: absolute;
  left: -20px;
  right: -20px;
  height: 3px;
  border-radius: 999px;
  transform: rotate(-15deg);
}

.mini-chart span:nth-child(1) {
  top: 120px;
  background: #ffffff;
}

.mini-chart span:nth-child(2) {
  top: 92px;
  background: var(--orange);
}

.mini-chart span:nth-child(3) {
  top: 70px;
  background: var(--blue);
}

.checkout-stack {
  position: absolute;
  inset: 42px 34px auto;
  display: grid;
  gap: 16px;
}

.checkout-stack div {
  min-height: 78px;
  display: flex;
  align-items: center;
  padding: 0 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.015));
  color: rgba(255, 255, 255, 0.72);
  font-size: 24px;
  font-weight: 800;
}

.checkout-stack div:first-child {
  border-color: rgba(86, 100, 255, 0.85);
  color: #ffffff;
}

.split-section {
  margin-top: 24px;
  padding: 66px 72px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
  gap: 42px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    radial-gradient(circle at 85% 18%, rgba(148, 243, 63, 0.13), transparent 18rem),
    rgba(255, 255, 255, 0.02);
}

.split-section p {
  margin-bottom: 0;
}

.balance-card {
  padding: 28px;
  border-radius: 8px;
}

.balance-card > div:first-child {
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.balance-card span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.balance-card strong {
  display: block;
  margin-top: 8px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 34px;
  font-weight: 500;
}

.balance-bars {
  display: grid;
  gap: 9px;
  margin: 0 0 22px;
}

.balance-bars span {
  display: block;
  width: 100%;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  overflow: hidden;
}

.balance-bars span::before {
  content: "";
  display: block;
  width: var(--bar);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--green), var(--blue));
  animation: growBar 1100ms ease both;
}

.balance-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.balance-row:last-child {
  border-bottom: 0;
}

.benefit-grid,
.developer-grid {
  margin-top: 42px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.benefit-grid article,
.developer-grid article {
  min-height: 240px;
  padding: 30px;
  border-radius: 8px;
}

.benefit-grid span {
  display: inline-block;
  margin-bottom: 52px;
  color: var(--muted);
  font-weight: 700;
}

.benefit-grid h3,
.developer-grid h3 {
  margin-bottom: 12px;
  font-size: 25px;
  line-height: 1.1;
}

.benefit-grid p,
.developer-grid p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.55;
  font-weight: 600;
}

.developer-section {
  padding-top: 40px;
}

.final-cta {
  margin-top: 40px;
  margin-bottom: 72px;
  min-height: 460px;
  padding: 80px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 0%, rgba(86, 100, 255, 0.24), transparent 28rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.012));
}

.final-cta h2 {
  margin-left: auto;
  margin-right: auto;
}

.final-cta p {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 28px;
}

.site-footer {
  width: min(100% - 48px, var(--max));
  margin: 0 auto 36px;
  padding: 36px;
  border-radius: 8px;
}

.footer-brand {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.6fr);
  gap: 40px;
  align-items: start;
  padding-bottom: 34px;
  border-bottom: 1px solid var(--line);
}

.footer-brand p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
  font-weight: 600;
}

.footer-links {
  padding: 34px 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  border-bottom: 1px solid var(--line);
}

.footer-links h2 {
  margin: 0 0 16px;
  color: #ffffff;
  font-size: 14px;
  line-height: 1;
}

.footer-links a {
  display: table;
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  transition: color 180ms ease, transform 180ms ease;
}

.footer-links a:hover {
  color: #ffffff;
  transform: translateX(3px);
}

.footer-bottom {
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: var(--muted-2);
  font-size: 13px;
  font-weight: 700;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms cubic-bezier(0.22, 1, 0.36, 1),
              transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Hero dashboard parallax lift */
.hero-visual .product-frame {
  transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1), border-color 240ms ease, box-shadow 240ms ease;
  transform: translateY(var(--parallax, 0px));
}

.hero-visual .product-frame:hover {
  transform: translateY(calc(var(--parallax, 0px) - 4px));
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes navDrop {
  from {
    opacity: 0;
    transform: translateY(-16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes drawLine {
  from {
    opacity: 0;
    transform: scaleX(0.2);
  }
  to {
    opacity: 1;
    transform: scaleX(1);
  }
}

@keyframes pulseTooltip {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

@keyframes growBar {
  from {
    width: 0;
  }
  to {
    width: var(--bar);
  }
}

@media (max-width: 1050px) {
  .site-header {
    width: min(100% - 24px, 720px);
  }

  .desktop-nav {
    gap: 20px;
  }

  .hero-visual {
    min-height: auto;
  }

  .dashboard {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .chart-left,
  .chart-right {
    grid-column: auto;
  }

  .floating-card {
    position: relative;
    inset: auto;
    display: inline-block;
    vertical-align: top;
    margin: 16px 8px 0;
  }

  .chart-tooltip {
    right: 34px;
  }

  .branch-grid,
  .benefit-grid,
  .developer-grid {
    grid-template-columns: 1fr;
  }

  .branch-card {
    min-height: 430px;
  }

  .split-section {
    grid-template-columns: 1fr;
    padding: 48px;
  }
}

@media (max-width: 760px) {
  .site-header {
    top: 12px;
    margin-top: 12px;
    min-height: 64px;
  }

  .desktop-nav,
  .header-actions {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  /* mobile-nav handled globally above */

  .hero,
  .section,
  .split-section,
  .final-cta {
    width: min(100% - 28px, var(--max));
  }

  .hero {
    padding-top: 108px;
  }

  .announcement {
    max-width: 100%;
    padding: 8px 13px;
    line-height: 1.2;
  }

  h1 {
    font-size: clamp(58px, 18vw, 88px);
  }

  .hero-visual {
    margin-top: 46px;
  }

  .dashboard {
    padding: 14px;
    gap: 12px;
  }

  .metric-card,
  .chart-panel {
    padding: 18px;
  }

  .chart-panel svg {
    height: 128px;
  }

  .floating-card {
    width: 100%;
    margin: 12px 0 0;
  }

  .section {
    padding: 56px 0;
  }

  .branch-grid,
  .benefit-grid,
  .developer-grid {
    margin-top: 32px;
  }

  .branch-card,
  .benefit-grid article,
  .developer-grid article {
    padding: 26px;
  }

  .checkout-stack {
    inset: 28px 24px auto;
  }

  .checkout-stack div {
    min-height: 64px;
    font-size: 20px;
  }

  .split-section {
    padding: 32px 24px;
  }

  .balance-card {
    padding: 22px;
  }

  .balance-card strong {
    font-size: 26px;
  }

  .balance-row {
    flex-direction: column;
    gap: 4px;
  }

  .final-cta {
    min-height: 390px;
    padding: 58px 22px;
  }

  .panel-header,
  .footer-brand,
  .footer-bottom {
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  .panel-header {
    display: grid;
  }

  .chart-tabs,
  .chart-legend {
    width: max-content;
  }

  .chart-tooltip {
    display: none;
  }

  .site-footer {
    width: min(100% - 28px, var(--max));
    padding: 28px 22px;
  }

  .footer-links {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    display: grid;
  }
}

@media (max-width: 430px) {
  .brand-name {
    font-size: 18px;
  }

  .brand-mark {
    width: 30px;
  }

  .brand-mark span {
    width: 16px;
    height: 16px;
  }

  .hero-copy p:not(.eyebrow),
  .section-lede,
  .split-section p,
  .final-cta p {
    font-size: 18px;
  }

  .hero-buttons {
    align-items: stretch;
    flex-direction: column;
  }

  .primary-button,
  .secondary-button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Original Rayl concept page */
.original-page {
  --original-bg: #080a0f;
  --original-panel: #10141d;
  --original-line: rgba(221, 231, 255, 0.14);
  --original-text: #f7f9ff;
  --original-muted: #a3adbd;
  --original-cyan: #41d7c7;
  --original-coral: #ff6b5f;
  --original-lime: #b7f45a;
  background:
    linear-gradient(120deg, rgba(65, 215, 199, 0.13), transparent 26rem),
    linear-gradient(300deg, rgba(255, 107, 95, 0.12), transparent 30rem),
    var(--original-bg);
}

.original-page .site-shell::before {
  display: none;
}

.original-shell {
  min-height: 100vh;
  color: var(--original-text);
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
}

.original-header,
.original-hero,
.original-section,
.original-cta,
.original-footer {
  width: min(100% - 48px, var(--max));
  margin: 0 auto;
}

.original-header {
  min-height: 84px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  border-bottom: 1px solid var(--original-line);
  animation: navDrop 700ms ease both;
}

.original-brand {
  justify-self: start;
}

.original-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px;
  border: 1px solid var(--original-line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
  backdrop-filter: blur(14px);
}

.original-nav a,
.original-header-cta,
.original-primary,
.original-secondary {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
  font-size: 14px;
  font-weight: 800;
}

.original-nav a {
  padding: 0 14px;
  color: var(--original-muted);
  transition: color 180ms ease, background 180ms ease;
}

.original-nav a:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.07);
}

.original-header-cta {
  justify-self: end;
  padding: 0 18px;
  border: 1px solid rgba(65, 215, 199, 0.44);
  color: var(--original-cyan);
  background: rgba(65, 215, 199, 0.08);
}

.original-hero {
  min-height: calc(100vh - 84px);
  padding: 88px 0 76px;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  gap: 64px;
  align-items: center;
}

.original-hero-copy {
  animation: fadeUp 760ms ease both;
}

.status-row {
  width: max-content;
  max-width: 100%;
  min-height: 36px;
  margin-bottom: 28px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--original-line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
  color: #dce3ed;
  font-size: 14px;
  font-weight: 800;
}

.status-row span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--original-lime);
  box-shadow: 0 0 18px rgba(183, 244, 90, 0.8);
}

.original-hero h1 {
  margin-bottom: 26px;
  font-size: clamp(54px, 7vw, 104px);
  line-height: 0.94;
}

.original-hero p {
  width: min(620px, 100%);
  margin-bottom: 34px;
  color: var(--original-muted);
  font-size: clamp(19px, 2vw, 24px);
  line-height: 1.42;
  font-weight: 650;
}

.original-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.original-primary,
.original-secondary {
  min-height: 48px;
  padding: 0 22px;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.original-primary {
  background: var(--original-cyan);
  color: #071112;
}

.original-secondary {
  border: 1px solid var(--original-line);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.045);
}

.original-primary:hover,
.original-secondary:hover,
.original-header-cta:hover {
  transform: translateY(-2px);
}

.operating-map {
  position: relative;
  min-height: 620px;
  padding: 22px;
  border: 1px solid var(--original-line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.018)),
    rgba(16, 20, 29, 0.86);
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.32);
  overflow: hidden;
  animation: fadeUp 760ms 160ms ease both;
}

.operating-map::before {
  content: "";
  position: absolute;
  inset: 76px 22px 92px;
  background-image:
    linear-gradient(var(--original-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--original-line) 1px, transparent 1px);
  background-size: 46px 46px;
  opacity: 0.42;
  mask-image: linear-gradient(to bottom, transparent, black 14%, black 84%, transparent);
}

.map-toolbar,
.map-footer,
.network-panel-header,
.operations-header {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.map-toolbar {
  padding-bottom: 20px;
  border-bottom: 1px solid var(--original-line);
}

.map-toolbar > span,
.network-panel-header span,
.method-table span,
.ops-metrics span,
.map-footer span {
  color: var(--original-muted);
  font-size: 13px;
  font-weight: 800;
}

.map-toggle {
  min-height: 34px;
  padding: 3px;
  display: inline-flex;
  align-items: center;
  gap: 3px;
  border: 1px solid var(--original-line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--original-muted);
  font-size: 12px;
  font-weight: 850;
}

.map-toggle b,
.map-toggle span {
  min-height: 26px;
  padding: 0 10px;
  display: inline-flex;
  align-items: center;
  border-radius: 6px;
}

.map-toggle b {
  background: #ffffff;
  color: #091014;
}

.map-grid {
  position: relative;
  z-index: 1;
  min-height: 420px;
}

.map-node {
  position: absolute;
  z-index: 3;
  width: 230px;
  padding: 18px;
  border: 1px solid var(--original-line);
  border-radius: 8px;
  background: rgba(9, 12, 18, 0.92);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.28);
}

.map-node:nth-child(1) {
  left: 4%;
  top: 52px;
}

.map-node:nth-child(2) {
  right: 6%;
  top: 118px;
}

.map-node:nth-child(3) {
  left: 24%;
  bottom: 42px;
}

.map-node small {
  color: var(--original-muted);
  font-weight: 800;
}

.map-node strong {
  display: block;
  margin: 12px 0 4px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 32px;
  font-weight: 500;
}

.map-node span {
  color: #d2dae7;
  font-size: 13px;
  font-weight: 750;
}

.node-primary {
  border-color: rgba(65, 215, 199, 0.48);
}

.route-line {
  position: absolute;
  z-index: 2;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--original-cyan), var(--original-coral), transparent);
  opacity: 0.78;
  animation: routePulse 2600ms ease-in-out infinite;
}

.route-one {
  width: 46%;
  left: 22%;
  top: 156px;
  transform: rotate(12deg);
}

.route-two {
  width: 38%;
  left: 20%;
  top: 290px;
  transform: rotate(-18deg);
  animation-delay: 400ms;
}

.route-three {
  width: 36%;
  right: 18%;
  bottom: 138px;
  transform: rotate(22deg);
  animation-delay: 800ms;
}

.map-footer {
  padding-top: 20px;
  border-top: 1px solid var(--original-line);
}

.map-footer strong {
  display: block;
  margin-top: 6px;
  font-size: 18px;
}

.mini-flags {
  display: flex;
  gap: 8px;
}

.mini-flags img,
.flag-ribbon img {
  width: 40px;
  height: 30px;
  border-radius: 5px;
  object-fit: cover;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.2);
}

.original-section {
  padding: 84px 0;
}

.section-heading-row {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.55fr);
  gap: 46px;
  align-items: end;
}

.section-heading-row h2,
.network-copy h2,
.operations-header h2,
.original-cta h2 {
  margin-bottom: 0;
  font-size: clamp(40px, 5.2vw, 72px);
  line-height: 0.98;
}

.section-heading-row > p,
.network-copy p,
.original-cta p {
  margin: 0;
  color: var(--original-muted);
  font-size: 19px;
  line-height: 1.5;
  font-weight: 650;
}

.timeline-grid {
  margin-top: 46px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--original-line);
  border-radius: 8px;
  overflow: hidden;
}

.timeline-grid article {
  min-height: 330px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: rgba(16, 20, 29, 0.76);
  border-right: 1px solid var(--original-line);
  transition: transform 220ms ease, background 220ms ease;
}

.timeline-grid article:last-child {
  border-right: 0;
}

.timeline-grid article:hover {
  background: rgba(28, 35, 49, 0.88);
  transform: translateY(-4px);
}

.timeline-grid span {
  color: var(--original-coral);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 14px;
}

.timeline-grid h3 {
  margin-bottom: 14px;
  font-size: 30px;
}

.timeline-grid p {
  margin: 0;
  color: var(--original-muted);
  line-height: 1.55;
  font-weight: 650;
}

.network-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(420px, 1.2fr);
  gap: 42px;
  align-items: center;
}

.network-panel,
.operations-card,
.original-cta,
.original-footer {
  border: 1px solid var(--original-line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.014)),
    rgba(16, 20, 29, 0.8);
}

.network-panel {
  padding: 28px;
}

.network-panel-header {
  margin-bottom: 26px;
}

.network-panel-header b {
  color: var(--original-lime);
  font-size: 14px;
}

.flag-ribbon {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}

.flag-ribbon img {
  width: 100%;
  height: 34px;
}

.method-table {
  margin-top: 28px;
  border: 1px solid var(--original-line);
  border-radius: 8px;
  overflow: hidden;
}

.method-table div {
  min-height: 58px;
  padding: 0 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid var(--original-line);
}

.method-table div:last-child {
  border-bottom: 0;
}

.method-table b {
  color: #ffffff;
  font-size: 14px;
}

.operations-card {
  padding: 34px;
}

.operations-header {
  align-items: flex-start;
  margin-bottom: 34px;
}

.ops-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 30px;
}

.bar-chart {
  min-height: 380px;
  padding: 26px 26px 52px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: end;
  gap: 16px;
  border: 1px solid var(--original-line);
  border-radius: 8px;
  background-image: linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  background-size: 100% 64px;
}

.bar-chart div {
  position: relative;
  height: var(--height);
  min-height: 90px;
  border-radius: 8px 8px 4px 4px;
  background: linear-gradient(180deg, var(--original-cyan), rgba(65, 215, 199, 0.24));
  animation: growColumn 1000ms ease both;
}

.bar-chart div:nth-child(2),
.bar-chart div:nth-child(5) {
  background: linear-gradient(180deg, var(--original-coral), rgba(255, 107, 95, 0.23));
}

.bar-chart span {
  position: absolute;
  left: 50%;
  bottom: -34px;
  transform: translateX(-50%);
  color: var(--original-muted);
  font-size: 12px;
  font-weight: 800;
}

.ops-metrics {
  display: grid;
  gap: 14px;
}

.ops-metrics article {
  padding: 22px;
  border: 1px solid var(--original-line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
}

.ops-metrics strong {
  display: block;
  margin: 10px 0;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 32px;
  font-weight: 500;
}

.ops-metrics p {
  margin: 0;
  color: var(--original-muted);
  line-height: 1.45;
  font-weight: 650;
}

.original-cta {
  margin-top: 26px;
  padding: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.original-cta h2 {
  max-width: 720px;
  margin-bottom: 16px;
}

.original-cta p {
  max-width: 680px;
}

.original-footer {
  margin-top: 48px;
  margin-bottom: 36px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 36px;
}

.original-footer p {
  max-width: 420px;
  margin: 18px 0 0;
  color: var(--original-muted);
  line-height: 1.5;
  font-weight: 650;
}

.original-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px;
}

.original-footer a {
  color: var(--original-muted);
  font-weight: 800;
  transition: color 180ms ease;
}

.original-footer a:hover {
  color: #ffffff;
}

.original-page .reveal {
  transform: translateY(20px);
}

@keyframes routePulse {
  0%,
  100% {
    opacity: 0.35;
    filter: saturate(0.9);
  }
  50% {
    opacity: 0.95;
    filter: saturate(1.4);
  }
}

@keyframes growColumn {
  from {
    transform: scaleY(0.2);
    transform-origin: bottom;
    opacity: 0.4;
  }
  to {
    transform: scaleY(1);
    transform-origin: bottom;
    opacity: 1;
  }
}

@media (max-width: 980px) {
  .original-header {
    grid-template-columns: 1fr;
    padding: 18px 0;
  }

  .original-brand,
  .original-nav,
  .original-header-cta {
    justify-self: stretch;
  }

  .original-nav {
    justify-content: center;
    flex-wrap: wrap;
  }

  .original-hero,
  .network-section,
  .ops-layout,
  .section-heading-row {
    grid-template-columns: 1fr;
  }

  .original-hero {
    min-height: auto;
    padding-top: 54px;
  }

  .timeline-grid {
    grid-template-columns: 1fr;
  }

  .timeline-grid article {
    border-right: 0;
    border-bottom: 1px solid var(--original-line);
  }

  .timeline-grid article:last-child {
    border-bottom: 0;
  }

  .original-cta,
  .original-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .original-footer nav {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .original-header,
  .original-hero,
  .original-section,
  .original-cta,
  .original-footer {
    width: min(100% - 28px, var(--max));
  }

  .original-hero {
    gap: 38px;
  }

  .original-hero h1 {
    font-size: clamp(46px, 14vw, 68px);
  }

  .original-actions,
  .original-primary,
  .original-secondary,
  .original-header-cta {
    width: 100%;
  }

  .operating-map {
    min-height: 720px;
  }

  .map-toolbar,
  .map-footer,
  .operations-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .map-node {
    width: calc(100% - 24px);
    left: 12px !important;
    right: auto !important;
  }

  .map-node:nth-child(1) {
    top: 82px;
  }

  .map-node:nth-child(2) {
    top: 238px;
  }

  .map-node:nth-child(3) {
    bottom: 58px;
  }

  .route-line {
    display: none;
  }

  .flag-ribbon {
    grid-template-columns: repeat(3, 1fr);
  }

  .method-table div {
    min-height: 70px;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
  }

  .bar-chart {
    gap: 8px;
    padding-left: 14px;
    padding-right: 14px;
  }

  .bar-chart span {
    writing-mode: vertical-rl;
    bottom: -54px;
  }

  .operations-card,
  .original-cta {
    padding: 24px;
  }
}
