:root {
  --color-bg: #020718;
  --color-surface: #0b1224;
  --color-surface-alt: #101827;
  --color-primary: #2563eb;
  --color-primary-soft: rgba(37, 99, 235, 0.16);
  --color-primary-strong: #3b82f6;
  --color-border: rgba(148, 163, 184, 0.45);
  --color-text: #e5e7eb;
  --color-text-muted: #a5b4cf;
  --color-accent: #22d3ee;
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-pill: 999px;
  --shadow-soft: 0 24px 60px rgba(15, 23, 42, 0.9);
  --shadow-glow: 0 0 40px rgba(56, 189, 248, 0.35);
  --container-width: 1120px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, #0b1120 0, #020617 55%, #000 100%);
  color: var(--color-text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--color-primary-strong);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: linear-gradient(to bottom, rgba(15, 23, 42, 0.96), rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.65));
  border-bottom: 1px solid rgba(148, 163, 184, 0.3);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 72px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: 0.07em;
  font-size: 1rem;
  text-transform: uppercase;
  color: var(--color-text);
}

.logo-mark {
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  background: radial-gradient(circle at top left, #38bdf8, #2563eb 40%, #4f46e5 80%);
  color: #e5f2ff;
  box-shadow: 0 0 0 1px rgba(15, 23, 42, 0.8), var(--shadow-glow);
  font-size: 0.85rem;
}

.site-nav {
  display: flex;
  align-items: center;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 18px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-menu a {
  position: relative;
  font-size: 0.9rem;
  color: var(--color-text-muted);
  padding: 6px 0;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.nav-menu a:hover {
  color: var(--color-text);
  opacity: 0.9;
}

.nav-menu a[aria-current="page"] {
  color: #e5f2ff;
}

.nav-menu a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(to right, #38bdf8, #2563eb);
}

.nav-lang a {
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(148, 163, 184, 0.6);
  color: var(--color-text-muted);
  font-size: 0.8rem;
}

.nav-lang a:hover {
  border-color: #38bdf8;
  color: #e5f2ff;
  text-decoration: none;
}

.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.6);
  background: radial-gradient(circle at top, rgba(56, 189, 248, 0.25), rgba(15, 23, 42, 0.9));
  display: none;
  align-items: center;
  justify-content: center;
  padding: 0;
  cursor: pointer;
}

.nav-toggle-line {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: #e5f2ff;
  display: block;
  position: relative;
}

.nav-toggle-line + .nav-toggle-line {
  margin-top: 6px;
}

.section-hero {
  padding: 72px 0 72px;
  position: relative;
  overflow: hidden;
}

.section-hero::before {
  content: "";
  position: absolute;
  inset: -20%;
  background:
    radial-gradient(circle at 10% 0%, rgba(59, 130, 246, 0.22), transparent 55%),
    radial-gradient(circle at 80% 0%, rgba(14, 165, 233, 0.28), transparent 55%);
  opacity: 0.9;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2.5fr);
  gap: 40px;
  align-items: center;
  z-index: 1;
}

.hero-kicker {
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #a5f3fc;
  margin-bottom: 16px;
}

.hero-title {
  font-size: clamp(2.2rem, 3.1vw, 3rem);
  line-height: 1.2;
  letter-spacing: 0.02em;
  margin: 0 0 18px;
}

.hero-lead {
  margin: 0 0 28px;
  color: var(--color-text-muted);
  font-size: 0.98rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  font-size: 0.9rem;
  font-weight: 500;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    filter 0.18s ease,
    border-color 0.18s ease,
    background 0.18s ease;
}

.btn-primary {
  background: radial-gradient(circle at top left, #38bdf8, #2563eb 45%, #4f46e5 100%);
  color: #e5f2ff;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.9), var(--shadow-glow);
}

.btn-primary:hover {
  text-decoration: none;
  filter: brightness(1.05);
  transform: translateY(-1px);
  box-shadow: 0 22px 50px rgba(15, 23, 42, 0.95), var(--shadow-glow);
}

.btn-outline {
  border-color: rgba(148, 163, 184, 0.7);
  color: var(--color-text-muted);
  background: radial-gradient(circle at top, rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.98));
}

.btn-outline:hover {
  border-color: #38bdf8;
  color: #e5f2ff;
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.9);
}

.btn-secondary {
  background: rgba(15, 23, 42, 0.9);
  border-color: rgba(148, 163, 184, 0.8);
  color: var(--color-text);
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.85rem;
}

.btn-block {
  width: 100%;
}

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-orbit {
  position: relative;
  width: 280px;
  height: 280px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.5);
  background:
    radial-gradient(circle at 30% 0%, rgba(59, 130, 246, 0.25), transparent 60%),
    radial-gradient(circle at 80% 80%, rgba(56, 189, 248, 0.35), transparent 60%);
  box-shadow: 0 32px 80px rgba(15, 23, 42, 0.9), var(--shadow-glow);
}

.hero-orbit::before {
  content: "";
  position: absolute;
  inset: 18%;
  border-radius: inherit;
  border: 1px solid rgba(125, 211, 252, 0.4);
  box-shadow: 0 0 40px rgba(56, 189, 248, 0.5);
  opacity: 0.7;
  animation: orbitPulse 6s ease-in-out infinite;
}

.hero-node {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-size: 0.8rem;
  white-space: nowrap;
}

.hero-node--main {
  inset: 28%;
  background: radial-gradient(circle at top left, #38bdf8, #2563eb 50%, #4f46e5 100%);
  color: #e5f2ff;
}

.hero-node--sub {
  padding: 6px 14px;
  background: rgba(15, 23, 42, 0.96);
  border: 1px solid rgba(148, 163, 184, 0.7);
  color: var(--color-text-muted);
  backdrop-filter: blur(10px);
}

.hero-node--hire {
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
}

.hero-node--marketing {
  top: 35%;
  right: -4%;
}

.hero-node--sales {
  bottom: 14%;
  right: 8%;
}

.hero-node--backoffice {
  bottom: 4%;
  left: 6%;
}

.section {
  padding: 72px 0;
  position: relative;
}

.section-alt {
  background: radial-gradient(circle at top, rgba(15, 23, 42, 0.92), rgba(15, 23, 42, 0.98));
}

.section-header {
  text-align: center;
  margin-bottom: 36px;
}

.section-header-left {
  text-align: left;
}


.section-title {
  font-size: 1.6rem;
  margin: 0 0 12px;
}

.section-lead {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 0.98rem;
}

.section-kicker {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #a5f3fc;
  margin-bottom: 8px;
}

.subsection-title {
  font-size: 1.15rem;
  margin: 0 0 12px;
}

.body-text {
  font-size: 0.96rem;
  color: var(--color-text-muted);
  margin: 0 0 12px;
}

.body-text-small {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.grid {
  display: grid;
  gap: 24px;
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  background: radial-gradient(circle at top left, rgba(37, 99, 235, 0.2), rgba(15, 23, 42, 0.98));
  padding: 18px 18px 16px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.9);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease;
}

.card-soft {
  background: radial-gradient(circle at top left, rgba(37, 99, 235, 0.14), rgba(15, 23, 42, 0.98));
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.95), var(--shadow-glow);
  border-color: rgba(191, 219, 254, 0.9);
}

.card-title {
  font-size: 1rem;
  margin: 0 0 8px;
}

.card-text {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin: 0 0 8px;
}

.card-tagline {
  font-size: 0.8rem;
  color: #a5f3fc;
  margin: 0;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feature-item {
  padding: 12px 0;
  border-bottom: 1px dashed rgba(148, 163, 184, 0.4);
}

.feature-item:last-child {
  border-bottom: none;
}

.feature-title {
  margin: 0 0 4px;
  font-size: 1rem;
}

.feature-text {
  margin: 0;
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.feature-panel {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(148, 163, 184, 0.8);
  background:
    radial-gradient(circle at top left, rgba(56, 189, 248, 0.22), transparent 60%),
    radial-gradient(circle at bottom right, rgba(37, 99, 235, 0.4), rgba(15, 23, 42, 0.98));
  padding: 20px 22px 10px;
  box-shadow: var(--shadow-soft), var(--shadow-glow);
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease,
    background 0.22s ease;
}

.feature-panel:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 70px rgba(15, 23, 42, 0.98), var(--shadow-glow);
  border-color: rgba(191, 219, 254, 0.95);
}

.feature-panel-header {
  margin-bottom: 12px;
}

.feature-panel-kicker {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #e0f2fe;
  margin: 0 0 6px;
}

.feature-panel-title {
  margin: 0;
  font-size: 1.1rem;
}

.feature-panel-list {
  margin: 10px 0 6px;
  padding-left: 18px;
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.feature-panel-list li + li {
  margin-top: 2px;
}

.feature-panel-link {
  width: 100%;
  justify-content: center;
}

.info-panel {
  border-radius: var(--radius-md);
  border: 1px solid rgba(148, 163, 184, 0.7);
  background:
    radial-gradient(circle at top left, rgba(37, 99, 235, 0.24), rgba(15, 23, 42, 0.98));
  padding: 16px 18px 16px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.9);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease;
}

.info-panel:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 56px rgba(15, 23, 42, 0.95);
  border-color: rgba(191, 219, 254, 0.9);
}

.info-panel-title {
  font-size: 1rem;
  margin: 0 0 10px;
}

.info-list {
  margin: 0 0 10px;
}

.info-row {
  display: grid;
  grid-template-columns: 100px minmax(0, 1fr);
  gap: 8px;
  margin-bottom: 6px;
  font-size: 0.9rem;
}

.info-row dt {
  color: var(--color-text-muted);
}

.info-row dd {
  margin: 0;
}

.list {
  margin: 0;
  padding-left: 18px;
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.list li + li {
  margin-top: 4px;
}

.card > .btn {
  margin-top: 16px;
}

.feature-panel-link {
  margin-top: 6px;
}

.info-panel .btn-block {
  margin-top: 16px;
}

.list-check {
  list-style: none;
  padding-left: 0;
}

.list-check li {
  position: relative;
  padding-left: 20px;
}

.list-check li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 0.8rem;
  color: #22c55e;
}

.list-bullet {
  list-style: disc;
}

.section-sub {
  margin-top: 32px;
}

.section-cta-inline {
  margin-top: 32px;
  padding: 16px 20px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(148, 163, 184, 0.8);
  background:
    radial-gradient(circle at top left, rgba(56, 189, 248, 0.28), rgba(15, 23, 42, 0.98));
  box-shadow: var(--shadow-soft), var(--shadow-glow);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  justify-content: space-between;
}

.section-cta-inline-title {
  margin: 0 0 4px;
  font-size: 1.05rem;
}

.section-cta-inline-lead {
  margin: 0;
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.section-cta {
  background:
    radial-gradient(circle at top left, rgba(56, 189, 248, 0.3), rgba(15, 23, 42, 0.98));
  padding-top: 72px;
  padding-bottom: 72px;
}

.cta-inner {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(148, 163, 184, 0.9);
  padding: 22px 24px;
  box-shadow: var(--shadow-soft), var(--shadow-glow);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
}

.cta-title {
  margin: 0 0 6px;
  font-size: 1.4rem;
}

.cta-lead {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

.cta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.site-footer {
  margin-top: 40px;
  border-top: 1px solid rgba(148, 163, 184, 0.3);
  background: radial-gradient(circle at top, #020617, #020617 40%, #000 100%);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  padding: 28px 0 18px;
}

.footer-brand {
  max-width: 340px;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(148, 163, 184, 0.6);
  background: radial-gradient(circle at top left, #38bdf8, #2563eb 45%, #4f46e5 90%);
  color: #e5f2ff;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 10px;
  box-shadow: var(--shadow-glow);
}

.footer-text {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}

.footer-column {
  min-width: 130px;
}

.footer-heading {
  font-size: 0.86rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin: 0 0 10px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.88rem;
}

.footer-column li + li {
  margin-top: 4px;
}

.footer-column a {
  color: var(--color-text-muted);
}

.footer-column a:hover {
  color: #e5f2ff;
  text-decoration: none;
}

.footer-bottom {
  border-top: 1px solid rgba(30, 41, 59, 0.9);
}

.footer-bottom-inner {
  padding: 10px 0 14px;
  text-align: center;
}

.footer-copy {
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

.page-hero {
  padding: 72px 0 32px;
  position: relative;
}

.page-hero::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -40%;
  left: -40%;
  bottom: 0;
  background:
    radial-gradient(circle at 0% 0%, rgba(56, 189, 248, 0.22), transparent 55%),
    radial-gradient(circle at 95% 0%, rgba(59, 130, 246, 0.28), transparent 55%);
  opacity: 0.9;
  pointer-events: none;
}

.page-kicker {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #a5f3fc;
  margin: 0 0 8px;
}

.page-title {
  font-size: 1.9rem;
  margin: 0 0 10px;
}

.page-lead {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 0.96rem;
}

.timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  border-left: 1px solid rgba(148, 163, 184, 0.6);
}

.timeline-item {
  position: relative;
  padding-left: 16px;
  margin-bottom: 10px;
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -4px;
  top: 4px;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #38bdf8;
  box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.2);
}

.timeline-year {
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 2px;
}

.timeline-content {
  font-size: 0.9rem;
}

.policy {
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.policy h2 {
  font-size: 1rem;
  margin-top: 18px;
  margin-bottom: 6px;
  color: var(--color-text);
}

.policy p {
  margin: 0 0 8px;
}

.policy ul {
  margin: 0 0 8px 22px;
  padding: 0;
}

.policy-updated {
  margin-top: 18px;
  font-size: 0.85rem;
}

.u-hidden-sm {
  display: inline;
}

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-visual {
    order: -1;
    margin-bottom: 12px;
  }

  .grid-2 {
    grid-template-columns: minmax(0, 1fr);
  }

  .grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section-cta-inline {
    flex-direction: column;
    align-items: flex-start;
  }

  .cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@keyframes orbitPulse {
  0% {
    transform: scale(0.96);
    opacity: 0.4;
  }
  50% {
    transform: scale(1.02);
    opacity: 0.85;
  }
  100% {
    transform: scale(0.96);
    opacity: 0.4;
  }
}

@media (max-width: 720px) {
  .header-inner {
    height: 64px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-menu {
    position: absolute;
    right: 16px;
    top: 60px;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 16px;
    border: 1px solid rgba(148, 163, 184, 0.6);
    background: radial-gradient(circle at top, rgba(15, 23, 42, 0.98), rgba(15, 23, 42, 0.98));
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.98);
    min-width: 170px;
    display: none;
  }

  .nav-menu.is-open {
    display: flex;
  }

  .section,
  .section-hero {
    padding-left: 0;
    padding-right: 0;
  }

  .page-hero {
    padding-top: 44px;
  }

  .hero-title {
    font-size: 2rem;
  }

  .grid-3 {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-orbit {
    width: 230px;
    height: 230px;
  }

  .footer-inner {
    flex-direction: column;
  }

  .footer-links {
    gap: 20px;
  }

  .u-hidden-sm {
    display: none;
  }
}


