:root {
  --ink: #111827;
  --muted: #5d6677;
  --line: #dbe2ea;
  --paper: #f7fafc;
  --white: #ffffff;
  --teal: #0f766e;
  --teal-dark: #115e59;
  --coral: #f9735b;
  --gold: #d89b35;
  --navy: #172033;
  --shadow: 0 24px 70px rgba(17, 24, 39, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  letter-spacing: 0;
  overflow-x: hidden;
}

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

.cursor-glow {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 0;
  width: 340px;
  height: 340px;
  pointer-events: none;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(15, 118, 110, 0.16), transparent 66%);
  filter: blur(4px);
  opacity: 0;
  transform: translate3d(-50%, -50%, 0);
  transition: opacity 240ms ease;
}

.cursor-glow.is-active {
  opacity: 1;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 5vw, 72px);
  background: rgba(247, 250, 252, 0.86);
  border-bottom: 1px solid rgba(219, 226, 234, 0.72);
  backdrop-filter: blur(18px);
  transition: box-shadow 180ms ease, background 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 38px rgba(17, 24, 39, 0.08);
}

.brand,
.nav,
.hero-actions,
.trust-row,
.site-footer {
  display: flex;
  align-items: center;
}

.brand {
  gap: 12px;
  font-weight: 800;
  min-width: max-content;
}

.brand-mark {
  position: relative;
  display: inline-grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 8px;
  color: var(--white);
  background:
    radial-gradient(circle at 30% 24%, rgba(255, 255, 255, 0.36), transparent 28%),
    linear-gradient(135deg, #0f766e, #172033 62%, #f9735b);
  box-shadow: 0 14px 28px rgba(15, 118, 110, 0.22), 0 0 0 0 rgba(15, 118, 110, 0.26);
  animation: markPulse 3.8s ease-in-out infinite;
}

.brand-mark::after {
  position: absolute;
  inset: 1px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 7px;
  pointer-events: none;
}

.brand-mark svg {
  position: relative;
  z-index: 1;
  width: 35px;
  height: 35px;
  overflow: visible;
}

.logo-ring {
  fill: rgba(255, 255, 255, 0.08);
  stroke: rgba(255, 255, 255, 0.66);
  stroke-width: 2.5;
}

.logo-path {
  fill: none;
  stroke: #ffffff;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 5.2;
  stroke-dasharray: 92;
  animation: logoTrace 4.8s ease-in-out infinite;
}

.logo-dot {
  fill: #ffffff;
}

.dot-one {
  fill: #9df4e8;
}

.dot-two {
  fill: #ffd08a;
}

.dot-three {
  fill: #ffffff;
  opacity: 0.9;
}

.brand-text {
  display: grid;
  gap: 1px;
  line-height: 1;
}

.brand-text strong {
  color: var(--navy);
  font-size: 15px;
  letter-spacing: 0.08em;
}

.brand-text small {
  color: var(--teal);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.28em;
}

.nav {
  gap: 26px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

.nav a:hover {
  color: var(--teal-dark);
}

.nav a {
  position: relative;
}

.nav a::after {
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 100%;
  height: 2px;
  content: "";
  background: var(--teal);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.nav a:hover::after {
  transform: scaleX(1);
}

.header-action,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 8px;
  font-weight: 700;
}

.header-action {
  padding: 0 18px;
  color: var(--white);
  background: var(--navy);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.header-action:hover {
  background: var(--teal-dark);
  box-shadow: 0 14px 30px rgba(15, 118, 110, 0.18);
  transform: translateY(-2px);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
  gap: clamp(34px, 6vw, 82px);
  align-items: center;
  min-height: calc(100vh - 73px);
  padding: clamp(54px, 8vw, 104px) clamp(20px, 5vw, 72px) 42px;
  background:
    linear-gradient(115deg, rgba(15, 118, 110, 0.12), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, var(--paper) 100%);
  isolation: isolate;
  overflow: hidden;
}

.hero::before {
  position: absolute;
  inset: 9% auto auto -9%;
  z-index: -1;
  width: 34vw;
  min-width: 320px;
  height: 34vw;
  min-height: 320px;
  content: "";
  border-radius: 50%;
  background: radial-gradient(circle, rgba(249, 115, 91, 0.22), transparent 64%);
  animation: slowFloat 9s ease-in-out infinite;
}

.hero::after {
  position: absolute;
  right: -11%;
  bottom: -18%;
  z-index: -1;
  width: 42vw;
  min-width: 360px;
  height: 42vw;
  min-height: 360px;
  content: "";
  border-radius: 50%;
  background: radial-gradient(circle, rgba(15, 118, 110, 0.22), transparent 68%);
  animation: slowFloat 11s ease-in-out infinite reverse;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 780px;
  margin-bottom: 22px;
  font-size: clamp(42px, 7vw, 82px);
  line-height: 0.98;
  letter-spacing: 0;
  background: linear-gradient(100deg, var(--ink) 0%, #193b4a 48%, var(--teal-dark) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: 20px;
}

.hero-text {
  max-width: 680px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: clamp(17px, 1.7vw, 20px);
  line-height: 1.7;
}

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

.button {
  min-width: 178px;
  padding: 0 22px;
  border: 1px solid transparent;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.button.primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--teal), #12927f);
  box-shadow: 0 18px 36px rgba(15, 118, 110, 0.22);
}

.button.secondary {
  color: var(--navy);
  background: var(--white);
  border-color: var(--line);
}

.button:hover {
  transform: translateY(-3px);
}

.button.primary:hover {
  box-shadow: 0 24px 42px rgba(15, 118, 110, 0.28);
}

.button.secondary:hover {
  border-color: rgba(15, 118, 110, 0.36);
  box-shadow: 0 16px 32px rgba(17, 24, 39, 0.08);
}

.trust-row {
  flex-wrap: wrap;
  gap: 10px;
}

.trust-row span {
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 700;
  transition: transform 180ms ease, border-color 180ms ease, color 180ms ease;
}

.trust-row span:hover {
  color: var(--teal-dark);
  border-color: rgba(15, 118, 110, 0.32);
  transform: translateY(-2px);
}

.hero-visual {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid rgba(219, 226, 234, 0.9);
  border-radius: 8px;
  background: #121b2d;
  box-shadow: var(--shadow);
  transform-style: preserve-3d;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.hero-visual::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.14), transparent 22%, transparent 72%, rgba(45, 212, 191, 0.12)),
    radial-gradient(circle at 72% 18%, rgba(249, 115, 91, 0.22), transparent 26%);
  mix-blend-mode: screen;
}

.hero-visual:hover {
  box-shadow: 0 34px 88px rgba(17, 24, 39, 0.2);
}

.hero-visual canvas {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 520px;
}

.orbit {
  position: absolute;
  z-index: 2;
  border: 1px solid rgba(45, 212, 191, 0.22);
  border-radius: 50%;
  pointer-events: none;
}

.orbit::after {
  position: absolute;
  width: 10px;
  height: 10px;
  content: "";
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 18px rgba(249, 115, 91, 0.8);
}

.orbit-one {
  top: 84px;
  left: 64px;
  width: 166px;
  height: 166px;
  animation: orbitSpin 13s linear infinite;
}

.orbit-one::after {
  top: 18px;
  right: 18px;
}

.orbit-two {
  right: 56px;
  bottom: 118px;
  width: 116px;
  height: 116px;
  animation: orbitSpin 10s linear infinite reverse;
}

.orbit-two::after {
  left: 12px;
  bottom: 18px;
  background: var(--gold);
  box-shadow: 0 0 18px rgba(216, 155, 53, 0.8);
}

.terminal-card,
.metric-card {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  color: var(--white);
  background: rgba(18, 27, 45, 0.78);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(14px);
  z-index: 3;
}

.terminal-card {
  left: 24px;
  right: 24px;
  bottom: 24px;
  padding: 16px;
  animation: panelFloat 5.2s ease-in-out infinite;
}

.terminal-top {
  display: flex;
  gap: 7px;
  margin-bottom: 14px;
}

.terminal-top span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--coral);
}

.terminal-top span:nth-child(2) {
  background: var(--gold);
}

.terminal-top span:nth-child(3) {
  background: #20c997;
}

pre {
  margin: 0;
  white-space: pre-wrap;
  color: #d8fff9;
  font: 600 14px/1.8 ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

.metric-card {
  top: 24px;
  right: 24px;
  width: 158px;
  padding: 18px;
  animation: panelFloat 5.8s ease-in-out infinite reverse;
}

.metric-card strong {
  display: block;
  margin-bottom: 4px;
  font-size: 34px;
}

.metric-card span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  line-height: 1.45;
}

.section,
.contact-section {
  padding: clamp(58px, 8vw, 104px) clamp(20px, 5vw, 72px);
}

.stats-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  padding-top: 0;
  padding-bottom: 0;
  background: var(--line);
}

.stat-item {
  position: relative;
  overflow: hidden;
  padding: clamp(28px, 5vw, 46px);
  background: var(--white);
}

.stat-item::after {
  position: absolute;
  inset: auto 0 0;
  height: 3px;
  content: "";
  background: linear-gradient(90deg, var(--teal), var(--coral), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 700ms ease;
}

.stat-item.is-visible::after {
  transform: scaleX(1);
}

.stat-item strong {
  display: block;
  margin-bottom: 8px;
  color: var(--navy);
  font-size: clamp(36px, 6vw, 64px);
  line-height: 1;
}

.stat-item:nth-child(2) strong::after {
  content: "/7";
  color: var(--teal);
  font-size: 0.48em;
}

.stat-item:nth-child(3) strong::after {
  content: "%";
  color: var(--teal);
  font-size: 0.48em;
}

.stat-item span {
  color: var(--muted);
  font-weight: 700;
}

.intro {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(28px, 6vw, 76px);
  align-items: start;
  background: var(--white);
}

.intro p:last-child,
.contact-copy p,
.service-card p,
.timeline-item p {
  color: var(--muted);
  line-height: 1.7;
}

.intro p:last-child {
  margin: 36px 0 0;
  font-size: 18px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.services {
  position: relative;
  background:
    linear-gradient(135deg, rgba(238, 245, 243, 0.96), rgba(255, 255, 255, 0.68)),
    radial-gradient(circle at 84% 18%, rgba(249, 115, 91, 0.16), transparent 34%);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.service-card {
  position: relative;
  overflow: hidden;
  min-height: 278px;
  padding: 24px;
  border: 1px solid rgba(219, 226, 234, 0.92);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 32px rgba(17, 24, 39, 0.06);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.service-card::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background: linear-gradient(135deg, rgba(15, 118, 110, 0.12), transparent 42%);
  opacity: 0;
  transition: opacity 220ms ease;
}

.service-card:hover {
  border-color: rgba(15, 118, 110, 0.28);
  box-shadow: 0 24px 48px rgba(17, 24, 39, 0.12);
  transform: translateY(-8px);
}

.service-card:hover::before {
  opacity: 1;
}

.icon {
  display: inline-grid;
  width: 48px;
  height: 48px;
  place-items: center;
  margin-bottom: 26px;
  border-radius: 8px;
  color: var(--teal-dark);
  background: rgba(15, 118, 110, 0.1);
  font-weight: 800;
  transition: background 220ms ease, color 220ms ease, transform 220ms ease;
}

.service-card:hover .icon {
  color: var(--white);
  background: var(--teal);
  transform: rotate(-4deg) scale(1.04);
}

.process {
  background: var(--white);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
}

.timeline-item {
  position: relative;
  padding: 32px 24px 0 0;
}

.timeline-item::before {
  position: absolute;
  top: -1px;
  left: 0;
  width: 0;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, var(--teal), var(--coral));
  transition: width 700ms ease;
}

.timeline-item.is-visible::before {
  width: calc(100% - 24px);
}

.timeline-item span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 8px;
  color: var(--white);
  background: var(--navy);
  font-weight: 800;
  box-shadow: 0 16px 30px rgba(23, 32, 51, 0.16);
}

.contact-section {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: clamp(30px, 6vw, 80px);
  align-items: start;
  color: var(--white);
  background:
    linear-gradient(rgba(18, 27, 45, 0.88), rgba(18, 27, 45, 0.92)),
    url("./images/contact-bg.jpg.jpg") center/cover;
  background-attachment: fixed;
}

.contact-copy p {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 18px;
}

.contact-panel {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.22);
}

.contact-row {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  gap: 22px;
  padding: 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

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

.contact-row span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-row a,
.contact-row strong,
address {
  min-width: 0;
  color: var(--white);
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.55;
  overflow-wrap: anywhere;
}

.contact-row a {
  transition: color 180ms ease;
}

.contact-row a:hover {
  color: #9df4e8;
}

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

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

.service-card.reveal:nth-child(2),
.timeline-item.reveal:nth-child(2) {
  transition-delay: 90ms;
}

.service-card.reveal:nth-child(3),
.timeline-item.reveal:nth-child(3) {
  transition-delay: 180ms;
}

.service-card.reveal:nth-child(4),
.timeline-item.reveal:nth-child(4) {
  transition-delay: 270ms;
}

@keyframes markPulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(15, 118, 110, 0.26);
  }

  50% {
    box-shadow: 0 0 0 10px rgba(15, 118, 110, 0);
  }
}

@keyframes logoTrace {
  0%,
  100% {
    stroke-dashoffset: 0;
  }

  50% {
    stroke-dashoffset: 92;
  }
}

@keyframes slowFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    transform: translate3d(28px, -18px, 0) scale(1.04);
  }
}

@keyframes panelFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes orbitSpin {
  to {
    transform: rotate(360deg);
  }
}

.site-footer {
  justify-content: space-between;
  gap: 20px;
  padding: 26px clamp(20px, 5vw, 72px);
  color: var(--muted);
  background: var(--white);
  border-top: 1px solid var(--line);
  font-size: 14px;
  font-weight: 700;
}

@media (max-width: 1040px) {
  .hero,
  .intro,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

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

  .stats-strip .stat-item:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  .site-header {
    align-items: flex-start;
  }

  .nav,
  .header-action {
    display: none;
  }

  .hero {
    padding-top: 44px;
  }

  h1 {
    font-size: 42px;
  }

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

  .hero-visual canvas {
    min-height: 430px;
  }

  .metric-card {
    width: 138px;
    top: 16px;
    right: 16px;
  }

  .terminal-card {
    left: 16px;
    right: 16px;
    bottom: 16px;
  }

  .service-grid,
  .timeline,
  .stats-strip {
    grid-template-columns: 1fr;
  }

  .stats-strip .stat-item:last-child {
    grid-column: auto;
  }

  .service-card {
    min-height: auto;
  }

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

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 420px) {
  .button {
    width: 100%;
  }

  h1 {
    font-size: 36px;
  }
}

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

  .cursor-glow {
    display: none;
  }

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