:root {
  --bg: #050711;
  --bg-2: #090d19;
  --panel: rgba(255, 255, 255, 0.075);
  --panel-2: rgba(255, 255, 255, 0.045);
  --line: rgba(255, 255, 255, 0.13);
  --text: #f7fbff;
  --muted: #aeb8ca;
  --soft: #dce6f5;
  --blue: #3b82ff;
  --cyan: #22e6ff;
  --purple: #9457ff;
  --pink: #ff4ed8;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.36);
  --radius: 18px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 15% 8%, rgba(34, 230, 255, 0.18), transparent 30rem),
    radial-gradient(circle at 85% 10%, rgba(148, 87, 255, 0.18), transparent 26rem),
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    var(--bg);
  background-size: auto, auto, 56px 56px, 56px 56px, auto;
  color: var(--text);
  font-family: "Inter", "Sora", system-ui, sans-serif;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.045), transparent);
  opacity: 0.52;
  mix-blend-mode: screen;
  z-index: -1;
}

.preloader {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  background: #03050c;
  transition: opacity 420ms ease, visibility 420ms ease;
}

.preloader.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.preloader-mark {
  display: grid;
  gap: 14px;
  place-items: center;
  color: white;
  font-family: "Sora", "Inter", sans-serif;
  font-size: clamp(28px, 6vw, 62px);
  font-weight: 900;
  letter-spacing: -0.04em;
}

.preloader-mark::after {
  content: "";
  width: 180px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--cyan), var(--purple), transparent);
  animation: loaderLine 1.1s ease-in-out infinite;
}

.cursor-glow {
  position: fixed;
  left: var(--x, 50vw);
  top: var(--y, 50vh);
  width: 280px;
  height: 280px;
  pointer-events: none;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(34, 230, 255, 0.14), transparent 68%);
  transform: translate(-50%, -50%);
  z-index: 1;
}

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

a,
button,
input,
select,
textarea {
  font: inherit;
}

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(34, 230, 255, 0.65);
  outline-offset: 4px;
}

.page-transition {
  position: fixed;
  inset: 0;
  z-index: 999;
  pointer-events: none;
  background: linear-gradient(135deg, var(--cyan), var(--purple));
  transform: translateY(100%);
  transition: transform 260ms ease;
}

.page-transition.is-active {
  transform: translateY(0);
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  border-bottom: 1px solid transparent;
  background: rgba(5, 7, 17, 0.72);
  backdrop-filter: blur(18px);
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  background: rgba(5, 7, 17, 0.94);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.3);
}

.nav {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: white;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(34, 230, 255, 0.6);
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(34, 230, 255, 0.2), rgba(148, 87, 255, 0.24));
  color: var(--cyan);
  font-weight: 900;
  box-shadow: 0 0 34px rgba(34, 230, 255, 0.18);
}

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

.brand-text strong {
  font-weight: 900;
}

.brand-text span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
}

.nav-links a {
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  transition: color 180ms ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: white;
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  overflow: hidden;
  border: 1px solid rgba(34, 230, 255, 0.5);
  border-radius: 999px;
  background: linear-gradient(135deg, var(--cyan), var(--blue), var(--purple));
  background-size: 180% 180%;
  color: white;
  font-weight: 900;
  line-height: 1;
  padding: 0 20px;
  text-decoration: none;
  box-shadow: 0 18px 42px rgba(59, 130, 255, 0.24);
  transform: translate3d(var(--magnet-x, 0), var(--magnet-y, 0), 0);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
  animation: gradientMove 8s ease infinite;
}

.button:hover {
  transform: translate3d(var(--magnet-x, 0), calc(var(--magnet-y, 0) - 2px), 0);
  box-shadow: 0 22px 52px rgba(34, 230, 255, 0.28);
}

.button-outline {
  background: rgba(255, 255, 255, 0.055);
  color: white;
  animation: none;
  box-shadow: none;
}

.button-small {
  min-height: 40px;
  padding: 0 15px;
  font-size: 14px;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  place-content: center;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.07);
  cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: white;
}

.mobile-menu {
  display: grid;
  max-height: 0;
  overflow: hidden;
  border-top: 1px solid transparent;
  background: rgba(5, 7, 17, 0.98);
  padding-inline: 20px;
  transition: max-height 260ms ease, border-color 260ms ease, padding 260ms ease;
}

.mobile-menu.is-open {
  max-height: 520px;
  border-color: var(--line);
  padding-block: 10px 18px;
}

.mobile-menu a {
  border-radius: 14px;
  color: white;
  font-weight: 850;
  padding: 14px;
  text-decoration: none;
}

.mobile-menu a:hover {
  background: rgba(255, 255, 255, 0.08);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: center;
  padding: 118px 0 70px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 54px;
}

.eyebrow {
  color: var(--cyan);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero h1,
.page-hero h1,
.section-title {
  margin: 0;
  color: white;
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 0.96;
}

.hero h1 {
  margin-top: 20px;
  font-size: clamp(48px, 8vw, 112px);
}

.lead {
  color: var(--muted);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.75;
}

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

.hero-visual {
  position: relative;
  min-height: 560px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background:
    radial-gradient(circle at 35% 30%, rgba(34, 230, 255, 0.22), transparent 14rem),
    radial-gradient(circle at 70% 70%, rgba(255, 78, 216, 0.16), transparent 13rem),
    rgba(255, 255, 255, 0.045);
  box-shadow: var(--shadow);
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 0 13%, rgba(255, 255, 255, 0.06) 13% 13.5%, transparent 13.5%),
    linear-gradient(0deg, transparent 0 18%, rgba(255, 255, 255, 0.06) 18% 18.5%, transparent 18.5%);
  background-size: 110px 110px;
  animation: gridDrift 16s linear infinite;
}

.orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(8px);
  opacity: 0.82;
  animation: float 7s ease-in-out infinite;
}

.orb-one {
  width: 150px;
  height: 150px;
  left: 12%;
  top: 12%;
  background: rgba(34, 230, 255, 0.34);
}

.orb-two {
  width: 210px;
  height: 210px;
  right: 8%;
  bottom: 9%;
  background: rgba(148, 87, 255, 0.34);
  animation-delay: -2s;
}

.floating-card {
  position: absolute;
  width: min(78%, 330px);
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  padding: 18px;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
}

.floating-card strong {
  display: block;
  color: white;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.floating-card span {
  display: block;
  color: var(--muted);
  margin-top: 8px;
}

.floating-card.one {
  left: 7%;
  top: 16%;
}

.floating-card.two {
  right: 7%;
  top: 38%;
}

.floating-card.three {
  left: 14%;
  bottom: 12%;
}

.floating-card.four {
  right: 18%;
  bottom: 34%;
  width: 220px;
}

.floating-card.five {
  left: 11%;
  top: 43%;
  width: 210px;
}

.floating-card.six {
  right: 10%;
  top: 12%;
  width: 215px;
}

.floating-card.seven {
  right: 30%;
  bottom: 8%;
  width: 230px;
}

.scroll-indicator {
  display: inline-grid;
  gap: 10px;
  margin-top: 54px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.scroll-indicator i {
  width: 2px;
  height: 54px;
  border-radius: 999px;
  background: linear-gradient(var(--cyan), transparent);
  animation: scrollPulse 1.7s ease-in-out infinite;
}

.section {
  padding: clamp(76px, 8vw, 128px) 0;
}

.section-head {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 32px;
  align-items: end;
  margin-bottom: 42px;
}

.section-title {
  margin-top: 12px;
  font-size: clamp(38px, 5.7vw, 78px);
}

.marquee {
  border-block: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.035);
  overflow: hidden;
  padding: 16px 0;
}

.marquee-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: marquee 24s linear infinite;
}

.marquee-track span {
  color: white;
  font-size: clamp(15px, 2vw, 20px);
  font-weight: 900;
  white-space: nowrap;
}

.marquee-track span::after {
  content: "/";
  color: var(--cyan);
  margin-left: 20px;
}

.glass,
.service-card,
.service-group-card,
.industry-card,
.portfolio-card,
.testimonial-card,
.stat-card,
.job-card,
.form-panel,
.contact-card,
.value-card,
.process-step {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, var(--panel), var(--panel-2));
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px);
}

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

.service-card {
  display: grid;
  min-height: 300px;
  align-content: start;
  gap: 16px;
  padding: 22px;
  transform: perspective(900px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
  transition: transform 160ms ease, border-color 180ms ease, background 180ms ease;
}

.service-groups {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.service-group-card {
  display: grid;
  gap: 18px;
  min-height: 520px;
  padding: 28px;
  transform: perspective(900px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
  transition: transform 160ms ease, border-color 180ms ease, background 180ms ease;
}

.service-group-card:hover,
.industry-card:hover {
  border-color: rgba(34, 230, 255, 0.54);
  background: linear-gradient(145deg, rgba(34, 230, 255, 0.11), rgba(148, 87, 255, 0.08));
}

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

.service-group-top span {
  color: rgba(255, 255, 255, 0.32);
  font-size: clamp(54px, 7vw, 98px);
  font-weight: 900;
  letter-spacing: -0.08em;
  line-height: 0.85;
}

.service-group-top i {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 1px solid rgba(34, 230, 255, 0.38);
  border-radius: 16px;
  color: var(--cyan);
  font-style: normal;
  font-weight: 900;
}

.service-group-card h3 {
  margin: 0;
  color: white;
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 900;
  letter-spacing: -0.04em;
}

.service-group-card p,
.industry-card p {
  color: var(--muted);
  line-height: 1.72;
  margin: 0;
}

.service-group-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-group-card li {
  color: var(--soft);
  font-weight: 800;
}

.service-group-card li::before {
  content: "•";
  color: var(--cyan);
  margin-right: 10px;
}

.essence-text {
  max-width: 1040px;
  color: white;
  font-size: clamp(42px, 7vw, 104px);
  font-weight: 900;
  letter-spacing: -0.055em;
  line-height: 0.95;
}

.trust-grid,
.models-grid,
.industries-grid {
  display: grid;
  gap: 16px;
}

.trust-grid {
  grid-template-columns: repeat(5, 1fr);
}

.trust-logo {
  display: grid;
  min-height: 120px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
  color: rgba(255, 255, 255, 0.56);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.model-card {
  padding: clamp(24px, 4vw, 42px);
}

.model-card h3 {
  margin: 0;
  color: white;
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 900;
  letter-spacing: -0.04em;
}

.model-card ul {
  display: grid;
  gap: 12px;
  margin: 24px 0;
  padding: 0;
  list-style: none;
}

.model-card li {
  color: var(--soft);
  font-weight: 800;
}

.industries-grid {
  grid-template-columns: repeat(5, 1fr);
}

.industry-card {
  min-height: 230px;
  padding: 22px;
  transform: perspective(900px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
  transition: transform 160ms ease, border-color 180ms ease, background 180ms ease;
}

.industry-card span {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 1px solid rgba(34, 230, 255, 0.32);
  border-radius: 15px;
  color: var(--cyan);
  font-weight: 900;
}

.industry-card h3 {
  margin: 28px 0 10px;
  color: white;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.numbered-field {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
}

.numbered-field > b {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(34, 230, 255, 0.36);
  border-radius: 14px;
  color: var(--cyan);
}

.checkbox-field {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--muted);
  line-height: 1.6;
}

.checkbox-field input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
}

.service-card:hover {
  border-color: rgba(34, 230, 255, 0.54);
  background: linear-gradient(145deg, rgba(34, 230, 255, 0.11), rgba(148, 87, 255, 0.08));
}

.service-icon {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 1px solid rgba(34, 230, 255, 0.32);
  border-radius: 15px;
  color: var(--cyan);
  font-weight: 900;
}

.service-card h3,
.value-card h3,
.process-step h3,
.job-card h3 {
  margin: 0;
  color: white;
  font-size: 23px;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.service-card p,
.value-card p,
.process-step p,
.job-card p,
.testimonial-card p {
  color: var(--muted);
  line-height: 1.72;
  margin: 0;
}

.card-link {
  align-self: end;
  color: var(--cyan);
  font-weight: 900;
  text-decoration: none;
}

.card-link:hover {
  text-decoration: underline;
}

.split {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 42px;
  align-items: center;
}

.image-panel {
  min-height: 450px;
  overflow: hidden;
}

.image-panel img {
  width: 100%;
  height: 100%;
  min-height: 450px;
  object-fit: cover;
  border-radius: var(--radius);
}

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

.value-card {
  padding: 22px;
  min-height: 190px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
}

.process-grid::before {
  content: "";
  position: absolute;
  top: 28px;
  left: 8%;
  right: 8%;
  height: 1px;
  background: linear-gradient(90deg, var(--cyan), var(--purple));
}

.process-step {
  position: relative;
  padding: 24px;
  margin: 0 8px;
}

.process-step span {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--cyan), var(--purple));
  color: white;
  font-weight: 900;
  margin-bottom: 28px;
}

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

.portfolio-card {
  position: relative;
  min-height: 330px;
  overflow: hidden;
}

.portfolio-card img {
  width: 100%;
  height: 100%;
  min-height: 330px;
  object-fit: cover;
  transition: transform 450ms ease, filter 450ms ease;
}

.portfolio-overlay {
  position: absolute;
  inset: auto 16px 16px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  background: rgba(5, 7, 17, 0.72);
  padding: 18px;
  backdrop-filter: blur(16px);
  transform: translateY(12px);
  transition: transform 220ms ease;
}

.portfolio-card:hover img {
  transform: scale(1.06);
  filter: saturate(1.12);
}

.portfolio-card:hover .portfolio-overlay {
  transform: translateY(0);
}

.portfolio-overlay span,
.job-card span {
  color: var(--cyan);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.portfolio-overlay h3 {
  margin: 8px 0;
  color: white;
  font-size: 24px;
  font-weight: 900;
}

.portfolio-overlay p {
  color: var(--muted);
  line-height: 1.6;
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}

.filter-row button {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: white;
  cursor: pointer;
  font-weight: 850;
  padding: 12px 16px;
}

.filter-row button.is-active,
.filter-row button:hover {
  border-color: rgba(34, 230, 255, 0.58);
  color: var(--cyan);
}

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

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

.stat-card,
.testimonial-card {
  padding: 24px;
}

.stat-card strong {
  display: block;
  color: white;
  font-size: clamp(40px, 6vw, 68px);
  font-weight: 900;
  letter-spacing: -0.04em;
}

.stat-card span,
.testimonial-card cite span {
  display: block;
  color: var(--muted);
}

.testimonial-card cite {
  display: block;
  margin-top: 24px;
  color: white;
  font-style: normal;
  font-weight: 900;
}

.page-hero {
  padding: 150px 0 80px;
}

.page-hero h1 {
  margin-top: 18px;
  max-width: 980px;
  font-size: clamp(46px, 7vw, 104px);
}

.page-hero .lead {
  max-width: 760px;
  margin-top: 22px;
}

.detail-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.detail-list li {
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--soft);
  font-weight: 800;
  padding: 16px;
  background: rgba(255, 255, 255, 0.045);
}

.jobs-list {
  display: grid;
  gap: 16px;
}

.job-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px;
}

.job-card h3 {
  margin-top: 8px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  align-items: start;
}

.form-panel,
.contact-card {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 3vw, 34px);
}

.field {
  display: grid;
  gap: 8px;
}

.field span {
  color: white;
  font-weight: 850;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  color: white;
  outline: none;
  padding: 14px 15px;
}

.field select option {
  color: #0b1020;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(34, 230, 255, 0.66);
  box-shadow: 0 0 0 4px rgba(34, 230, 255, 0.1);
}

.field small {
  display: none;
  color: #ff8d9d;
  font-weight: 800;
}

.field.is-invalid small {
  display: block;
}

.field.is-invalid input,
.field.is-invalid select,
.field.is-invalid textarea {
  border-color: #ff8d9d;
}

.two-col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.form-status {
  display: none;
  border: 1px solid rgba(34, 230, 255, 0.28);
  border-radius: 14px;
  background: rgba(34, 230, 255, 0.09);
  color: #dffbff;
  font-weight: 850;
  padding: 14px 16px;
}

.form-status.is-visible {
  display: block;
}

.contact-info {
  display: grid;
  gap: 14px;
}

.contact-info p {
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
}

.contact-info strong {
  color: white;
}

.socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.socials a {
  border: 1px solid var(--line);
  border-radius: 999px;
  color: white;
  font-weight: 850;
  padding: 10px 13px;
  text-decoration: none;
}

.socials a:hover {
  border-color: rgba(34, 230, 255, 0.58);
  color: var(--cyan);
}

.map-placeholder,
.map-frame {
  width: 100%;
  min-height: 330px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background:
    linear-gradient(45deg, rgba(34, 230, 255, 0.08) 25%, transparent 25%),
    linear-gradient(-45deg, rgba(148, 87, 255, 0.08) 25%, transparent 25%),
    rgba(255, 255, 255, 0.05);
  background-size: 36px 36px;
}

.map-placeholder {
  display: grid;
  place-items: center;
  color: white;
  font-weight: 900;
}

.map-frame {
  filter: grayscale(0.9) invert(0.9) contrast(0.95);
}

.cta-band {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 20% 30%, rgba(34, 230, 255, 0.22), transparent 18rem),
    linear-gradient(135deg, rgba(34, 230, 255, 0.12), rgba(148, 87, 255, 0.12));
  padding: clamp(28px, 6vw, 70px);
  box-shadow: var(--shadow);
}

.cta-band h2 {
  max-width: 820px;
  margin: 0;
  color: white;
  font-size: clamp(36px, 6vw, 76px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 0.98;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: rgba(3, 5, 12, 0.9);
}

.home-hero {
  min-height: 760px;
  display: grid;
  align-items: center;
  padding: 112px 0 48px;
  border-bottom: 1px solid var(--line);
}

.home-hero-grid {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  align-items: center;
  gap: clamp(32px, 5vw, 76px);
}

.hero-copy h1 {
  margin: 20px 0 0;
  color: white;
  font-size: clamp(44px, 6.4vw, 86px);
  font-weight: 900;
  letter-spacing: -0.055em;
  line-height: 1.04;
}

.pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  border: 1px solid rgba(109, 168, 255, 0.34);
  border-radius: 999px;
  background: rgba(109, 168, 255, 0.08);
  color: var(--soft);
  font-size: 13px;
  font-weight: 800;
  padding: 8px 12px;
}

.pill-badge::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #6da8ff;
  box-shadow: 0 0 18px #6da8ff;
}

.dashboard-scene {
  position: relative;
  min-height: 520px;
}

.dashboard-screen,
.mobile-analytics,
.hero-side-card {
  border: 1px solid rgba(109, 168, 255, 0.22);
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(12, 18, 29, 0.94), rgba(5, 8, 15, 0.92));
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.44), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(18px);
}

.dashboard-screen {
  position: absolute;
  inset: 24px 96px 32px 40px;
  padding: 24px;
  transform: perspective(1100px) rotateY(-4deg) rotateX(2deg);
  animation: float 7s ease-in-out infinite;
}

.dash-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: white;
  font-weight: 900;
  margin-bottom: 18px;
}

.dash-top i {
  width: 72px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
}

.dash-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 14px;
}

.dash-card {
  min-height: 132px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.035);
  padding: 16px;
}

.dash-card small,
.mobile-analytics small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.dash-card strong,
.mobile-analytics strong {
  display: block;
  color: white;
  font-size: 24px;
  font-weight: 900;
  margin-top: 8px;
}

.dash-card span,
.mobile-analytics span {
  color: #6ee7b7;
  font-size: 12px;
  font-weight: 800;
}

.revenue {
  grid-row: span 2;
}

.revenue svg {
  width: 100%;
  margin-top: 18px;
}

.ring,
.mini-ring {
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: conic-gradient(#6da8ff 0 28%, rgba(255, 255, 255, 0.08) 28% 100%);
  color: white;
  font-weight: 900;
}

.ring {
  width: 82px;
  height: 82px;
  margin-top: 16px;
}

.ring b,
.mini-ring {
  font-size: 13px;
}

.channels p,
.leads p {
  margin: 9px 0 0;
  color: var(--soft);
  font-size: 12px;
}

.mobile-analytics {
  position: absolute;
  left: 0;
  bottom: 30px;
  width: 180px;
  padding: 18px;
  animation: float 6.4s ease-in-out infinite reverse;
}

.mini-bars {
  display: flex;
  align-items: end;
  gap: 6px;
  height: 58px;
  margin-top: 16px;
}

.mini-bars i {
  flex: 1;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(#6da8ff, #1b4d91);
}

.mini-bars i:nth-child(1) { height: 28%; }
.mini-bars i:nth-child(2) { height: 44%; }
.mini-bars i:nth-child(3) { height: 62%; }
.mini-bars i:nth-child(4) { height: 78%; }
.mini-bars i:nth-child(5) { height: 92%; }

.mini-ring {
  width: 58px;
  height: 58px;
  margin-top: 14px;
  background: conic-gradient(#6da8ff 0 78%, rgba(255, 255, 255, 0.08) 78% 100%);
}

.hero-side-card {
  position: absolute;
  right: 0;
  width: 190px;
  padding: 18px;
}

.hero-side-card b {
  color: white;
  display: block;
  font-size: 14px;
}

.hero-side-card span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
  margin-top: 10px;
}

.hero-side-card.one { top: 76px; }
.hero-side-card.two { top: 220px; }
.hero-side-card.three { top: 364px; }

.compact-section {
  padding-block: clamp(48px, 6vw, 82px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.055);
}

.small-title {
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.035em;
}

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

.screenshot-split {
  grid-template-columns: 0.75fr 1.25fr;
}

.wide-image-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
}

.wide-image-card img {
  width: 100%;
  min-height: 280px;
  object-fit: cover;
}

.cta-strip {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: radial-gradient(circle at 72% 30%, rgba(59, 130, 255, 0.28), transparent 24rem), linear-gradient(135deg, rgba(12, 28, 52, 0.92), rgba(4, 8, 15, 0.96));
  padding: 36px 0;
  text-align: center;
}

.cta-strip h2 {
  margin: 0;
  color: white;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 900;
  letter-spacing: -0.035em;
}

.cta-strip p {
  color: var(--muted);
  margin: 10px 0 18px;
}

.five-col {
  grid-template-columns: 1.4fr repeat(4, 1fr);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.7fr 0.9fr 0.9fr;
  gap: 32px;
  padding: 54px 0;
}

.footer-grid h3 {
  margin: 0 0 14px;
  color: white;
  font-size: 16px;
}

.footer-grid p,
.footer-grid a,
.footer-bottom {
  color: var(--muted);
}

.footer-grid a {
  display: block;
  margin: 10px 0;
  text-decoration: none;
}

.footer-grid a:hover {
  color: var(--cyan);
}

.footer-bottom {
  border-top: 1px solid var(--line);
  padding: 18px 0;
  text-align: center;
  font-size: 14px;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 720ms ease var(--delay, 0ms), transform 720ms ease var(--delay, 0ms);
}

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

@keyframes gradientMove {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

@keyframes gridDrift {
  from {
    background-position: 0 0, 0 0;
  }
  to {
    background-position: 220px 110px, 110px 220px;
  }
}

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

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

@keyframes scrollPulse {
  0%,
  100% {
    transform: scaleY(0.45);
    opacity: 0.6;
  }
  50% {
    transform: scaleY(1);
    opacity: 1;
  }
}

@keyframes loaderLine {
  0%,
  100% {
    transform: scaleX(0.32);
    opacity: 0.55;
  }
  50% {
    transform: scaleX(1);
    opacity: 1;
  }
}

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