:root {
  --purple-950: #190827;
  --purple-900: #29103f;
  --purple-800: #3f176b;
  --purple-700: #5d2592;
  --purple-500: #9a62d4;
  --purple-300: #d7bdf0;
  --lavender: #f4edfb;
  --white: #ffffff;
  --ink: #1f1628;
  --muted: #72677d;
  --line: rgba(65, 30, 93, 0.12);
  --shadow: 0 24px 70px rgba(41, 16, 63, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  font-family: "Heebo", Arial, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 10%, rgba(154, 98, 212, 0.14), transparent 28rem),
    linear-gradient(180deg, #fbf9fd 0%, #f5effa 48%, #fff 100%);
}

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

svg {
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.section-shell {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.ambient {
  position: fixed;
  z-index: -1;
  border-radius: 999px;
  filter: blur(10px);
  pointer-events: none;
}

.ambient-one {
  width: 360px;
  height: 360px;
  top: 140px;
  left: -190px;
  background: rgba(137, 80, 190, 0.13);
}

.ambient-two {
  width: 420px;
  height: 420px;
  right: -230px;
  top: 520px;
  background: rgba(75, 31, 115, 0.1);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  width: min(1220px, calc(100% - 28px));
  margin: 14px auto 0;
  padding: 12px 18px;
  border: 1px solid rgba(255,255,255,.7);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 10px 35px rgba(41,16,63,.08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.brand {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 45px;
  height: 45px;
  border-radius: 14px;
  color: var(--white);
  background: linear-gradient(145deg, var(--purple-800), var(--purple-500));
  box-shadow: 0 10px 25px rgba(93, 37, 146, .24);
}

.brand-mark svg {
  width: 27px;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1;
}

.brand strong {
  font-size: 1.35rem;
  letter-spacing: .03em;
}

.brand small {
  margin-top: 5px;
  color: var(--muted);
  font-size: .77rem;
}

.desktop-nav {
  display: flex;
  gap: 30px;
  color: #594e62;
  font-weight: 600;
}

.desktop-nav a {
  position: relative;
  padding-block: 8px;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  width: 0;
  height: 2px;
  border-radius: 99px;
  background: var(--purple-700);
  content: "";
  transition: width .25s ease;
}

.desktop-nav a:hover::after {
  width: 100%;
}

.header-call {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 11px 15px;
  border-radius: 14px;
  color: var(--white);
  background: var(--purple-800);
  font-weight: 700;
}

.header-call svg {
  width: 19px;
}

.hero {
  min-height: 720px;
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  align-items: center;
  gap: 55px;
  padding-block: 95px 70px;
}

.eyebrow {
  margin: 0 0 15px;
  color: var(--purple-700);
  font-size: .85rem;
  font-weight: 800;
  letter-spacing: .12em;
}

.hero h1,
.section-heading h2,
.about-panel h2,
.contact-card h2 {
  margin: 0;
  line-height: 1.08;
}

.hero h1 {
  max-width: 680px;
  font-size: clamp(3.15rem, 6vw, 6.3rem);
  letter-spacing: -.055em;
}

.hero h1 span {
  color: var(--purple-700);
}

.hero-text {
  max-width: 610px;
  margin: 28px 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.7vw, 1.3rem);
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 15px;
  font-weight: 800;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

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

.button-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--purple-800), #7536ae);
  box-shadow: 0 15px 35px rgba(75, 31, 115, .24);
}

.button-ghost {
  border-color: var(--line);
  background: rgba(255,255,255,.64);
}

.handset-icon {
  width: 23px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 35px;
  color: #62576c;
  font-size: .92rem;
  font-weight: 600;
}

.trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.trust-row span::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--purple-500);
  box-shadow: 0 0 0 5px rgba(154,98,212,.11);
  content: "";
}

.hero-visual {
  position: relative;
  min-height: 500px;
  display: grid;
  place-items: center;
}

.main-device {
  position: relative;
  z-index: 3;
  width: min(440px, 92%);
  min-height: 330px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.4);
  border-radius: 34px;
  color: var(--white);
  background:
    radial-gradient(circle at 80% 15%, rgba(205,165,239,.25), transparent 35%),
    linear-gradient(145deg, #35124f, #6d32a2);
  box-shadow: 0 38px 90px rgba(41, 16, 63, .34);
  transform: rotate(-3deg);
}

.main-device::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255,255,255,.12), transparent 40%);
  pointer-events: none;
  content: "";
}

.device-top {
  display: flex;
  gap: 7px;
  padding: 22px;
  border-bottom: 1px solid rgba(255,255,255,.13);
}

.device-top span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.5);
}

.screen-content {
  display: grid;
  gap: 15px;
  padding: 30px;
}

.pulse-line {
  width: 100%;
  height: 70px;
  border-radius: 18px;
  background:
    linear-gradient(90deg, transparent 0 8%, rgba(255,255,255,.8) 8% 9%, transparent 9% 24%, rgba(255,255,255,.4) 24% 25%, transparent 25%),
    linear-gradient(180deg, rgba(255,255,255,.1), rgba(255,255,255,.04));
  opacity: .75;
}

.metric-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 15px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 18px;
  background: rgba(255,255,255,.09);
  backdrop-filter: blur(10px);
}

.metric-card strong,
.metric-card small {
  display: block;
}

.metric-card small {
  margin-top: 3px;
  color: rgba(255,255,255,.7);
}

.metric-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(255,255,255,.13);
}

.metric-icon svg {
  width: 25px;
  max-height: 25px;
}

.floating-card {
  position: absolute;
  z-index: 5;
  display: grid;
  place-items: center;
  width: 92px;
  height: 92px;
  border: 1px solid rgba(255,255,255,.8);
  border-radius: 27px;
  color: var(--purple-800);
  background: rgba(255,255,255,.88);
  box-shadow: 0 20px 55px rgba(41,16,63,.2);
  backdrop-filter: blur(15px);
  animation: float 4s ease-in-out infinite;
}

.floating-card svg {
  width: 46px;
  max-height: 46px;
}

.floating-handset {
  top: 40px;
  right: 0;
}

.floating-network {
  bottom: 45px;
  left: 0;
  animation-delay: -2s;
}

.orbit {
  position: absolute;
  border: 1px solid rgba(93,37,146,.17);
  border-radius: 50%;
}

.orbit-one {
  width: 520px;
  height: 520px;
}

.orbit-two {
  width: 390px;
  height: 390px;
  border-style: dashed;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(2deg); }
  50% { transform: translateY(-13px) rotate(-2deg); }
}

.services {
  padding-block: 95px;
}

.section-heading {
  max-width: 700px;
  margin-bottom: 40px;
}

.section-heading h2,
.about-panel h2,
.contact-card h2 {
  font-size: clamp(2.1rem, 4vw, 4rem);
  letter-spacing: -.04em;
}

.section-heading > p:last-child {
  color: var(--muted);
  font-size: 1.08rem;
}

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

.service-card {
  position: relative;
  min-height: 300px;
  padding: 27px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: rgba(255,255,255,.76);
  box-shadow: 0 15px 50px rgba(41,16,63,.07);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.service-card:hover {
  transform: translateY(-7px);
  border-color: rgba(93,37,146,.24);
  box-shadow: var(--shadow);
}

.service-card.featured {
  color: var(--white);
  border-color: transparent;
  background:
    radial-gradient(circle at 80% 10%, rgba(255,255,255,.16), transparent 30%),
    linear-gradient(145deg, var(--purple-900), var(--purple-700));
}

.service-card.wide {
  grid-column: span 2;
  min-height: 220px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 24px;
}

.service-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: 60px;
  border-radius: 18px;
  color: var(--purple-700);
  background: var(--lavender);
}

.featured .service-icon {
  color: var(--white);
  background: rgba(255,255,255,.12);
}

.service-icon svg {
  width: 29px;
  max-height: 31px;
}

.service-number {
  position: absolute;
  top: 26px;
  left: 26px;
  color: rgba(93,37,146,.4);
  font-weight: 800;
}

.featured .service-number {
  color: rgba(255,255,255,.45);
}

.service-card h3 {
  margin: 0 0 10px;
  font-size: 1.35rem;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.featured p {
  color: rgba(255,255,255,.72);
}

.about {
  padding-block: 65px;
}

.about-panel {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 60px;
  align-items: end;
  padding: 55px;
  border-radius: 34px;
  color: var(--white);
  background:
    linear-gradient(115deg, rgba(255,255,255,.05), transparent),
    var(--purple-950);
  box-shadow: 0 30px 80px rgba(25,8,39,.25);
}

.about-panel > p {
  margin: 0;
  color: rgba(255,255,255,.73);
  font-size: 1.08rem;
  line-height: 1.85;
}

.about-panel .eyebrow,
.contact-card .eyebrow {
  color: var(--purple-300);
}

.contact {
  padding-block: 85px 55px;
}

.contact-card {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 50px;
  padding: 50px;
  border-radius: 34px;
  color: var(--white);
  background:
    radial-gradient(circle at 10% 20%, rgba(255,255,255,.16), transparent 28rem),
    linear-gradient(135deg, #542080, #7d3eb4);
  box-shadow: var(--shadow);
}

.contact-card p:not(.eyebrow) {
  margin-bottom: 0;
  color: rgba(255,255,255,.76);
  font-size: 1.08rem;
}

.contact-actions {
  display: grid;
  justify-items: center;
  gap: 10px;
}

.button-light {
  color: var(--purple-900);
  background: var(--white);
}

.contact-actions > span {
  color: rgba(255,255,255,.65);
  font-size: .82rem;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-block: 28px 42px;
  color: var(--muted);
  font-size: .9rem;
}

.mobile-call {
  position: fixed;
  z-index: 60;
  left: 18px;
  bottom: 18px;
  display: none;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 19px;
  color: var(--white);
  background: var(--purple-800);
  box-shadow: 0 16px 38px rgba(41,16,63,.33);
}

.mobile-call svg {
  width: 29px;
}

.reveal {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity .7s ease, transform .7s ease;
}

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

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .desktop-nav {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 70px;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-text {
    margin-inline: auto;
  }

  .hero-actions,
  .trust-row {
    justify-content: center;
  }

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

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

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

  .contact-actions {
    justify-items: start;
  }
}

@media (max-width: 640px) {
  .section-shell {
    width: min(100% - 24px, 1180px);
  }

  .site-header {
    width: calc(100% - 16px);
    margin-top: 8px;
    padding: 10px 12px;
    border-radius: 18px;
  }

  .header-call {
    padding: 10px 12px;
    font-size: 0;
  }

  .header-call svg {
    width: 22px;
  }

  .hero {
    gap: 25px;
    padding-block: 58px 35px;
  }

  .hero h1 {
    font-size: clamp(2.8rem, 15vw, 4.1rem);
  }

  .hero-actions .button {
    flex: 1 1 100%;
  }

  .trust-row {
    gap: 12px 18px;
  }

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

  .main-device {
    min-height: 285px;
    transform: none;
  }

  .screen-content {
    padding: 22px;
  }

  .orbit-one {
    width: 390px;
    height: 390px;
  }

  .orbit-two {
    width: 300px;
    height: 300px;
  }

  .floating-card {
    width: 72px;
    height: 72px;
    border-radius: 22px;
  }

  .floating-card svg {
    width: 35px;
  }

  .floating-handset {
    right: -4px;
  }

  .floating-network {
    left: -4px;
  }

  .services {
    padding-block: 65px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card,
  .service-card.wide {
    grid-column: auto;
    min-height: auto;
  }

  .service-card.wide {
    display: block;
  }

  .service-icon {
    margin-bottom: 36px;
  }

  .about-panel,
  .contact-card {
    padding: 30px 24px;
    border-radius: 27px;
  }

  .contact-actions {
    justify-items: stretch;
  }

  .site-footer {
    flex-direction: column;
    padding-bottom: 90px;
  }

  .mobile-call {
    display: grid;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

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