:root {
  --bg: #081528;
  --bg-soft: #0f2440;
  --surface: rgba(255, 255, 255, 0.08);
  --surface-strong: rgba(255, 255, 255, 0.14);
  --text: #eff4ff;
  --muted: #bfd0f5;
  --accent: #ff8a3d;
  --accent-soft: #ffb37f;
  --ok: #5ed39f;
  --line: rgba(255, 255, 255, 0.2);
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Manrope", "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 5% 10%, rgba(255, 138, 61, 0.18), transparent 35%),
    radial-gradient(circle at 95% 0%, rgba(94, 211, 159, 0.16), transparent 28%),
    linear-gradient(145deg, #061021 0%, #0a1b34 42%, #10294d 100%);
  color: var(--text);
  line-height: 1.55;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
  font-family: "Sora", "Trebuchet MS", sans-serif;
  line-height: 1.2;
  margin: 0 0 0.55rem;
}

p {
  margin: 0;
}

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

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.bg-orb {
  position: fixed;
  border-radius: 999px;
  filter: blur(48px);
  z-index: -2;
  pointer-events: none;
}

.orb-1 {
  width: 420px;
  height: 420px;
  background: rgba(255, 138, 61, 0.2);
  top: -140px;
  right: -90px;
}

.orb-2 {
  width: 360px;
  height: 360px;
  background: rgba(94, 211, 159, 0.15);
  bottom: -120px;
  left: -80px;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(14px);
  background: rgba(4, 10, 22, 0.55);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.topbar-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.3px;
}

.brand-dot {
  width: 10px;
  height: 10px;
  border-radius: 99px;
  background: var(--accent);
  box-shadow: 0 0 0 8px rgba(255, 138, 61, 0.2);
}

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

.nav a {
  color: var(--muted);
  font-weight: 600;
  font-size: 0.94rem;
  transition: color 180ms ease;
}

.nav a:hover {
  color: #fff;
}

.lang-switch {
  display: inline-flex;
  gap: 0.4rem;
  padding: 0.35rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
}

.lang-btn {
  border: 0;
  background: transparent;
  color: var(--muted);
  padding: 0.36rem 0.62rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  cursor: pointer;
}

.lang-btn.is-active {
  background: #fff;
  color: #10294d;
}

.hero {
  padding: 5rem 0 3rem;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: center;
}

.eyebrow {
  color: var(--accent-soft);
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.77rem;
  margin-bottom: 0.9rem;
}

h1 {
  font-size: clamp(2rem, 4.4vw, 3.9rem);
  max-width: 18ch;
  margin-bottom: 1rem;
}

.lead {
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  max-width: 62ch;
}

.cta-row {
  margin-top: 1.6rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.68rem 1.1rem;
  border-radius: 12px;
  border: 1px solid transparent;
  font-weight: 800;
  font-size: 0.93rem;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(120deg, #ff8a3d, #ff9f5e);
  color: #1c130a;
}

.btn-ghost {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

.btn-secondary {
  background: rgba(94, 211, 159, 0.14);
  border-color: rgba(94, 211, 159, 0.4);
  color: #d9ffe9;
  margin-top: 1rem;
}

.kpi-row {
  margin-top: 1.8rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
}

.kpi-card {
  padding: 0.85rem;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.06);
  display: grid;
  gap: 0.2rem;
}

.kpi-card strong {
  font-family: "Sora", sans-serif;
  font-size: 1rem;
}

.kpi-card span {
  font-size: 0.84rem;
  color: var(--muted);
}

.hero-visual {
  display: grid;
  place-items: center;
}

.globe {
  position: relative;
  width: min(380px, 70vw);
  aspect-ratio: 1;
  border-radius: 999px;
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.03)),
    radial-gradient(circle at 30% 30%, rgba(255, 138, 61, 0.28), transparent 42%),
    radial-gradient(circle at 60% 70%, rgba(94, 211, 159, 0.2), transparent 45%),
    #122f57;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: var(--shadow);
}

.pulse {
  position: absolute;
  border: 2px solid rgba(255, 157, 92, 0.8);
  border-radius: 999px;
  animation: pulse 2.8s infinite ease-out;
}

.p1 {
  width: 90px;
  height: 90px;
  top: 21%;
  left: 22%;
}

.p2 {
  width: 66px;
  height: 66px;
  right: 18%;
  top: 30%;
  animation-delay: 0.65s;
}

.p3 {
  width: 72px;
  height: 72px;
  bottom: 18%;
  left: 44%;
  animation-delay: 1.35s;
}

@keyframes pulse {
  0% {
    transform: scale(0.8);
    opacity: 1;
  }
  100% {
    transform: scale(1.75);
    opacity: 0;
  }
}

.section {
  padding: 3.6rem 0;
}

.section-head {
  margin-bottom: 1.2rem;
}

.section h2 {
  font-size: clamp(1.45rem, 3vw, 2.25rem);
  max-width: 22ch;
}

.sub {
  color: var(--muted);
  margin-top: 0.55rem;
  max-width: 64ch;
}

.grid {
  display: grid;
  gap: 0.9rem;
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

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

.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  padding: 1rem;
}

.card h3 {
  font-size: 1.04rem;
  margin-bottom: 0.45rem;
}

.card p {
  color: var(--muted);
}

.stat-card {
  min-height: 140px;
}

.chip-card {
  text-align: center;
  font-weight: 800;
  color: #fef9f1;
  display: grid;
  place-items: center;
  min-height: 74px;
  background: linear-gradient(125deg, rgba(255, 138, 61, 0.2), rgba(18, 47, 87, 0.4));
}

.inline-note {
  margin-top: 0.9rem;
  color: #d9e7ff;
}

.pillars-grid .card {
  min-height: 180px;
}

.pill-index {
  display: inline-grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: rgba(255, 138, 61, 0.18);
  color: #ffd8be;
  font-size: 0.82rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
}

.compare-card {
  min-height: 160px;
}

.compare-card.old {
  border-color: rgba(255, 138, 61, 0.45);
  background: rgba(255, 138, 61, 0.08);
}

.compare-card.new {
  border-color: rgba(94, 211, 159, 0.5);
  background: rgba(94, 211, 159, 0.09);
}

.user-card {
  min-height: 180px;
}

.text-link {
  margin-top: 0.75rem;
  display: inline-block;
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.flow-wrap {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  overflow-x: auto;
  white-space: nowrap;
  padding-bottom: 0.9rem;
}

.flow-step {
  padding: 0.64rem 0.82rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid var(--line);
  font-weight: 700;
}

.flow-arrow {
  color: #dce7ff;
  font-weight: 800;
}

.stack-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 0.7rem;
}

.stack-item {
  text-align: center;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 0.58rem 0.7rem;
  font-weight: 700;
  font-size: 0.9rem;
}

.slim {
  margin-top: 0.9rem;
}

.case-card ul {
  margin: 0.8rem 0 0;
  padding-left: 1.05rem;
  color: #dfebff;
}

.case-card li + li {
  margin-top: 0.28rem;
}

.join-card {
  min-height: 180px;
}

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 28px;
  left: 2%;
  right: 2%;
  height: 2px;
  background: linear-gradient(90deg, rgba(255, 138, 61, 0.8), rgba(94, 211, 159, 0.8));
  opacity: 0.75;
}

.timeline-item {
  position: relative;
  padding-top: 2rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
  padding: 2rem 0.8rem 0.9rem;
}

.timeline-item::before {
  content: "";
  position: absolute;
  top: 18px;
  left: 18px;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.17);
}

.footer {
  margin-top: 2.2rem;
  border-top: 1px solid var(--line);
  background: rgba(4, 10, 22, 0.8);
}

.footer-grid {
  padding: 2rem 0 2.5rem;
  display: grid;
  grid-template-columns: 1.1fr 0.8fr 1fr;
  gap: 1rem;
}

.footer h3,
.footer h4 {
  margin-bottom: 0.55rem;
}

.footer p {
  color: var(--muted);
}

.meeting {
  margin-top: 0.5rem;
}

.plain-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.35rem;
}

.plain-list a {
  color: #e8f0ff;
}

.newsletter {
  display: grid;
  gap: 0.5rem;
}

.newsletter input {
  min-height: 42px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  padding: 0.6rem 0.8rem;
}

.newsletter input::placeholder {
  color: #c5d5f7;
}

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

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 650ms ease, transform 650ms ease;
}

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

@media (max-width: 1040px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 4rem;
  }

  .hero-visual {
    order: -1;
  }

  .grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .timeline::before {
    display: none;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .topbar-inner {
    flex-wrap: wrap;
    justify-content: center;
    padding: 0.55rem 0;
  }

  .nav {
    order: 3;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.7rem;
    margin-top: 0.2rem;
  }

  .section {
    padding: 3rem 0;
  }

  .grid-2,
  .grid-3,
  .grid-4,
  .footer-grid,
  .timeline,
  .kpi-row {
    grid-template-columns: 1fr;
  }

  .globe {
    width: min(320px, 80vw);
  }
}
