:root {
  --navy: #0a2540;
  --navy-900: #06182c;
  --blue: #1d5bd7;
  --teal: #22a6b3;
  --cyan: #6ee7e0;
  --ink: #10243b;
  --muted: #607089;
  --line: #dce7f3;
  --surface: #ffffff;
  --soft: #f5f9fd;
  --soft-blue: #edf6ff;
  --shadow: 0 24px 70px rgba(10, 37, 64, 0.13);
  --shadow-soft: 0 16px 44px rgba(10, 37, 64, 0.09);
  --radius: 20px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 5%, rgba(34, 166, 179, 0.16), transparent 28rem),
    radial-gradient(circle at 88% 0%, rgba(29, 91, 215, 0.14), transparent 32rem),
    #fbfdff;
  font-family: Inter, sans-serif;
  line-height: 1.6;
}

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

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  padding: 14px 0;
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(220, 231, 243, 0.85);
  backdrop-filter: blur(18px);
}

.nav-shell {
  width: min(1220px, calc(100% - 32px));
  min-height: 98px;
  margin-inline: auto;
  padding: 16px 22px;
  display: flex;
  align-items: center;
  gap: 22px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(245, 249, 253, 0.92));
  border: 1px solid rgba(220, 231, 243, 0.95);
  border-radius: 24px;
  box-shadow: 0 12px 38px rgba(10, 37, 64, 0.08);
}

.brand {
  display: flex;
  align-items: center;
  flex: 0 0 355px;
  padding: 6px 10px;
}

.brand img {
  width: auto;
  height: 86px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 26px;
  margin-left: auto;
  color: #41516a;
  font-size: 0.92rem;
  font-weight: 700;
}

.nav-links a {
  transition: color 180ms ease;
}

.nav-links a:hover {
  color: var(--blue);
}

.nav-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.nav-cta {
  color: white;
  background: linear-gradient(135deg, var(--blue), var(--teal));
  box-shadow: 0 12px 28px rgba(29, 91, 215, 0.22);
  white-space: nowrap;
}

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

.section-pad {
  padding: 96px 0;
}

.hero {
  position: relative;
  overflow: hidden;
  padding-top: 86px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 4% 5% auto auto;
  width: 42vw;
  height: 42vw;
  max-width: 620px;
  max-height: 620px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(29, 91, 215, 0.14), rgba(34, 166, 179, 0.18));
  filter: blur(12px);
  z-index: -1;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, 0.96fr);
  align-items: center;
  gap: 58px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--blue);
  font-family: Sora, sans-serif;
  font-size: clamp(0.86rem, 1vw, 0.98rem);
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--navy);
  font-family: Sora, sans-serif;
  letter-spacing: -0.045em;
  line-height: 1.03;
}

h1 {
  max-width: 760px;
  font-size: clamp(2.65rem, 5.7vw, 5.15rem);
}

h2 {
  font-size: clamp(2.1rem, 4vw, 3.85rem);
}

h3 {
  font-size: 1.28rem;
}

.hero-lede {
  max-width: 680px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.btn-primary {
  color: white;
  background: linear-gradient(135deg, var(--blue), var(--teal));
  box-shadow: 0 18px 38px rgba(29, 91, 215, 0.25);
}

.btn-secondary {
  color: var(--navy);
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-proof span {
  padding: 9px 13px;
  color: #33455e;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 700;
}

.hero-visual {
  position: relative;
  min-height: 540px;
  padding: 38px;
  border: 1px solid rgba(220, 231, 243, 0.9);
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(245, 249, 253, 0.78)),
    radial-gradient(circle at 50% 32%, rgba(110, 231, 224, 0.3), transparent 20rem);
  box-shadow: var(--shadow);
}

.system-map {
  position: absolute;
  inset: 96px 30px 78px;
  display: grid;
  place-items: center;
  border-radius: 28px;
  background:
    linear-gradient(90deg, rgba(29, 91, 215, 0.08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(34, 166, 179, 0.08) 1px, transparent 1px),
    linear-gradient(135deg, rgba(10, 37, 64, 0.96), rgba(8, 26, 48, 0.9));
  background-size: 34px 34px, 34px 34px, auto;
  overflow: hidden;
}

.system-map svg {
  width: 90%;
  height: 72%;
  fill: none;
  stroke: url("#gradient");
}

.system-map path {
  stroke: rgba(110, 231, 224, 0.72);
  stroke-width: 3.5;
  stroke-linecap: round;
  filter: drop-shadow(0 0 18px rgba(34, 166, 179, 0.36));
}

.node {
  position: absolute;
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  color: white;
  background: linear-gradient(135deg, var(--blue), var(--teal));
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 22px;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.25);
  font-family: Sora, sans-serif;
  font-weight: 800;
}

.node-ai {
  top: 38px;
  left: 42px;
}

.node-cloud {
  top: 42px;
  right: 44px;
}

.node-devops {
  bottom: 34px;
  left: 78px;
}

.node-sec {
  right: 72px;
  bottom: 38px;
}

.orbit-card {
  position: absolute;
  z-index: 2;
  display: grid;
  gap: 4px;
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(220, 231, 243, 0.95);
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
}

.orbit-card strong {
  color: var(--navy);
}

.orbit-card em,
.orbit-card span {
  color: var(--muted);
  font-style: normal;
  font-size: 0.88rem;
}

.card-primary {
  top: 28px;
  left: 28px;
}

.card-secondary {
  right: 26px;
  bottom: 28px;
}

.status-dot {
  width: 10px;
  height: 10px;
  background: #24d18f;
  border-radius: 999px;
  box-shadow: 0 0 0 7px rgba(36, 209, 143, 0.14);
}

.trust-strip {
  padding: 24px 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.trust-grid div,
.failure-card,
.feature-card,
.track-card,
.salary-panel,
.salary-bars,
.timeline-step,
.testimonial,
.urgency-card,
.final-card {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(220, 231, 243, 0.95);
  box-shadow: var(--shadow-soft);
}

.trust-grid div {
  padding: 24px;
  border-radius: 18px;
}

.trust-grid strong {
  display: block;
  color: var(--navy);
  font-family: Sora, sans-serif;
  font-size: 1.65rem;
}

.trust-grid span {
  color: var(--muted);
  font-weight: 700;
}

.two-col,
.outcomes-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 38px;
  align-items: start;
}

.section-heading {
  position: sticky;
  top: 130px;
}

.failure-card {
  padding: 36px;
  border-radius: var(--radius);
}

.failure-card p,
.salary-panel p,
.final-card p,
.urgency-card p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.before-after {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 28px;
}

.before-after div {
  padding: 22px;
  background: var(--soft);
  border-radius: 18px;
}

.before-after span,
.track-card span {
  display: block;
  margin-bottom: 9px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.alt-bg {
  background:
    linear-gradient(180deg, rgba(237, 246, 255, 0.72), rgba(255, 255, 255, 0.92));
}

.center-heading {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}

.feature-grid,
.track-grid,
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.feature-card,
.track-card,
.testimonial {
  padding: 28px;
  border-radius: var(--radius);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.feature-card:hover,
.track-card:hover,
.testimonial:hover {
  transform: translateY(-6px);
  border-color: rgba(29, 91, 215, 0.28);
  box-shadow: var(--shadow);
}

.feature-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 28px;
  color: white;
  background: linear-gradient(135deg, var(--blue), var(--teal));
  border-radius: 16px;
  font-family: Sora, sans-serif;
  font-weight: 800;
}

.feature-card p,
.track-card p,
.timeline-step p,
.testimonial blockquote {
  margin: 14px 0 0;
  color: var(--muted);
}

.section-split {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-bottom: 34px;
}

.section-split h2 {
  max-width: 720px;
}

.section-subtitle {
  max-width: 680px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.text-link {
  color: var(--blue);
  font-weight: 900;
}

.track-card {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.track-positioning {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.track-card.highlight {
  color: white;
  background:
    radial-gradient(circle at 20% 0%, rgba(110, 231, 224, 0.32), transparent 16rem),
    linear-gradient(135deg, var(--navy), #0b3760);
  border-color: rgba(110, 231, 224, 0.26);
}

.track-card.highlight h3,
.track-card.highlight .track-block strong,
.track-card.highlight .track-outcome {
  color: white;
}

.track-card.highlight p,
.track-card.highlight span,
.track-card.highlight li {
  color: rgba(255, 255, 255, 0.78);
}

.track-card.highlight .track-block {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
}

.track-block {
  display: grid;
  gap: 8px;
  padding: 16px;
  background: rgba(245, 249, 253, 0.74);
  border: 1px solid rgba(220, 231, 243, 0.9);
  border-radius: 16px;
}

.track-block strong,
.track-outcome {
  color: var(--navy);
  font-family: Sora, sans-serif;
}

.track-block ul {
  display: grid;
  gap: 6px;
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.track-block p {
  margin: 0;
}

.track-outcome {
  margin-top: auto;
  padding-top: 4px;
  line-height: 1.45;
}

.track-cta {
  display: inline-flex;
  justify-content: center;
  margin-top: 2px;
  padding: 13px 18px;
  color: white;
  background: linear-gradient(135deg, var(--blue), var(--teal));
  border-radius: 999px;
  font-weight: 900;
  box-shadow: 0 14px 28px rgba(29, 91, 215, 0.18);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.track-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(29, 91, 215, 0.24);
}

.track-card.highlight .track-cta {
  color: var(--navy);
  background: white;
}

.before-after.compact {
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 0;
}

.before-after.compact div {
  padding: 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.before-after.compact span {
  margin-bottom: 4px;
}

.before-after.compact strong {
  color: inherit;
  font-size: 0.92rem;
}

.decision-helper {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 28px;
  align-items: center;
  margin-top: 28px;
  padding: 30px;
  background:
    radial-gradient(circle at 12% 0%, rgba(29, 91, 215, 0.12), transparent 18rem),
    linear-gradient(135deg, white, var(--soft));
  border: 1px solid rgba(220, 231, 243, 0.95);
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
}

.decision-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.decision-grid div {
  padding: 16px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(220, 231, 243, 0.95);
  border-radius: 16px;
}

.decision-grid span {
  display: block;
  color: var(--blue);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.decision-grid strong {
  display: block;
  margin-top: 5px;
  color: var(--navy);
  font-family: Sora, sans-serif;
}

.micro-conversion {
  margin: 22px 0 0;
  color: var(--navy);
  font-family: Sora, sans-serif;
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  font-weight: 800;
  text-align: center;
}

.outcomes {
  color: white;
  background:
    radial-gradient(circle at 15% 15%, rgba(34, 166, 179, 0.3), transparent 28rem),
    linear-gradient(135deg, var(--navy-900), var(--navy));
}

.outcomes h2,
.outcomes .eyebrow {
  color: white;
}

.salary-panel,
.salary-bars {
  color: white;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: none;
  border-radius: var(--radius);
}

.salary-panel {
  padding: 36px;
}

.salary-panel p {
  color: rgba(255, 255, 255, 0.72);
}

.salary-bars {
  display: grid;
  gap: 14px;
  padding: 24px;
}

.salary-bars div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.09);
  border-radius: 16px;
}

.salary-bars span {
  color: rgba(255, 255, 255, 0.72);
}

.salary-bars strong {
  font-family: Sora, sans-serif;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.timeline-step {
  padding: 26px;
  border-radius: var(--radius);
}

.timeline-step span {
  display: inline-flex;
  margin-bottom: 24px;
  color: var(--teal);
  font-family: Sora, sans-serif;
  font-weight: 900;
}

.testimonial {
  margin: 0;
}

.testimonial blockquote {
  font-size: 1.04rem;
}

.testimonial figcaption {
  margin-top: 22px;
  color: var(--navy);
  font-weight: 900;
}

.urgency-card,
.final-card {
  border-radius: 28px;
  background:
    radial-gradient(circle at 82% 20%, rgba(34, 166, 179, 0.2), transparent 20rem),
    linear-gradient(135deg, #ffffff, #f5f9fd);
}

.urgency-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
  padding: 42px;
}

.urgency-card h2 {
  max-width: 760px;
}

.final-card {
  max-width: 920px;
  margin-inline: auto;
  padding: clamp(34px, 7vw, 70px);
  text-align: center;
}

.final-card .hero-actions {
  justify-content: center;
}

.contact-section {
  padding-top: 0;
}

.contact-card {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 32px;
  padding: clamp(30px, 5vw, 54px);
  background:
    radial-gradient(circle at 10% 12%, rgba(29, 91, 215, 0.12), transparent 18rem),
    radial-gradient(circle at 92% 80%, rgba(34, 166, 179, 0.16), transparent 20rem),
    white;
  border: 1px solid rgba(220, 231, 243, 0.95);
  border-radius: 28px;
  box-shadow: var(--shadow-soft);
}

.contact-card p {
  max-width: 680px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.contact-actions {
  display: grid;
  gap: 16px;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 22px 24px;
  border-radius: 20px;
  border: 1px solid rgba(220, 231, 243, 0.95);
  background: rgba(245, 249, 253, 0.72);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.contact-method:hover {
  transform: translateY(-4px);
  border-color: rgba(29, 91, 215, 0.3);
  box-shadow: var(--shadow-soft);
}

.contact-icon {
  display: grid;
  flex: 0 0 46px;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-right: 12px;
  color: white;
  background: #25d366;
  border-radius: 999px;
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.3);
}

.contact-icon svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.contact-copy {
  display: grid;
  gap: 3px;
}

.contact-copy small {
  color: var(--blue);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.contact-copy strong {
  color: var(--navy);
  font-family: Sora, sans-serif;
  font-size: 1.08rem;
}

.contact-copy em {
  color: var(--muted);
  font-style: normal;
  font-weight: 800;
}

.contact-method.whatsapp {
  background: linear-gradient(135deg, rgba(29, 91, 215, 0.08), rgba(34, 166, 179, 0.12));
}

.footer {
  position: relative;
  overflow: hidden;
  padding: 62px 0;
  color: rgba(255, 255, 255, 0.78);
  background:
    radial-gradient(circle at 12% 12%, rgba(29, 91, 215, 0.38), transparent 22rem),
    radial-gradient(circle at 78% 28%, rgba(34, 166, 179, 0.35), transparent 24rem),
    linear-gradient(135deg, var(--navy-900), var(--navy));
  border-top: 1px solid rgba(110, 231, 224, 0.22);
}

.footer::before {
  content: "";
  position: absolute;
  inset: 18px;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
}

.footer-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 400px 1fr auto;
  align-items: center;
  gap: 24px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.92rem;
}

.footer-brand img {
  width: auto;
  height: 96px;
  object-fit: contain;
  filter: drop-shadow(0 18px 34px rgba(0, 0, 0, 0.28));
}

.reveal {
  opacity: 0;
  transform: translate3d(0, 34px, 0) scale(0.985);
  filter: blur(8px);
  transition:
    opacity 720ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 720ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 720ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--delay, 0ms);
}

.reveal-left {
  transform: translate3d(-28px, 20px, 0) scale(0.985);
}

.reveal-right {
  transform: translate3d(28px, 20px, 0) scale(0.985);
}

.reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  filter: blur(0);
}

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

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

@media (max-width: 980px) {
  .nav-shell {
    min-height: 84px;
  }

  .brand {
    flex-basis: 300px;
  }

  .brand img {
    height: 72px;
  }

  .nav-links {
    display: none;
  }

  .hero-grid,
  .two-col,
  .outcomes-grid {
    grid-template-columns: 1fr;
  }

  .section-heading {
    position: static;
  }

  .hero-visual {
    min-height: 460px;
  }

  .trust-grid,
  .feature-grid,
  .track-grid,
  .testimonial-grid,
  .timeline {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-card,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-brand img {
    height: 86px;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, var(--max));
  }

  .site-header {
    padding: 10px 0;
  }

  .nav-shell {
    width: calc(100% - 20px);
    padding: 10px 12px;
    border-radius: 18px;
  }

  .brand {
    flex-basis: min(58vw, 238px);
    padding: 4px 0;
  }

  .brand img {
    height: 58px;
  }

  .nav-cta {
    min-height: 40px;
    padding: 0 13px;
    font-size: 0.78rem;
  }

  .section-pad {
    padding: 66px 0;
  }

  .hero {
    padding-top: 46px;
  }

  .hero-grid {
    gap: 36px;
  }

  .hero-actions,
  .section-split,
  .urgency-card {
    align-items: stretch;
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .hero-visual {
    min-height: 380px;
    padding: 20px;
    border-radius: 24px;
  }

  .system-map {
    inset: 72px 18px 62px;
  }

  .node {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    font-size: 0.8rem;
  }

  .orbit-card {
    max-width: 190px;
    padding: 12px 14px;
    font-size: 0.82rem;
  }

  .before-after,
  .trust-grid,
  .feature-grid,
  .track-grid,
  .testimonial-grid,
  .timeline {
    grid-template-columns: 1fr;
  }

  .contact-method {
    padding: 18px;
  }

  .footer {
    padding: 46px 0;
  }

  .footer-brand img {
    height: 72px;
  }

  .failure-card,
  .urgency-card {
    padding: 26px;
  }
}
