:root {
  --bg: #060310;
  --bg-2: #0f0620;
  --panel: rgba(14, 10, 27, 0.72);
  --panel-strong: rgba(20, 12, 36, 0.9);
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.14);
  --text: #f6f1ff;
  --muted: #b8b0cc;
  --accent: #f36b21;
  --accent-2: #7c2a88;
  --accent-3: #b246ff;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.36);
  --radius: 28px;
  --max-width: 1240px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 7rem;
}

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 15% 20%, rgba(243, 107, 33, 0.18), transparent 22%),
    radial-gradient(circle at 85% 8%, rgba(124, 42, 136, 0.24), transparent 26%),
    radial-gradient(circle at 50% 100%, rgba(178, 70, 255, 0.14), transparent 30%),
    linear-gradient(180deg, #05020d 0%, #090513 48%, #12081d 100%);
  overflow-x: hidden;
}

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

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

#scene-canvas,
.noise-layer,
.grid-layer {
  position: fixed;
  inset: 0;
  pointer-events: none;
}

#scene-canvas {
  z-index: 0;
  opacity: 0.78;
}

.noise-layer {
  z-index: 1;
  opacity: 0.08;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.65) 0.5px, transparent 0.7px),
    radial-gradient(circle at 80% 30%, rgba(255, 255, 255, 0.4) 0.5px, transparent 0.7px);
  background-size: 18px 18px, 26px 26px;
}

.grid-layer {
  z-index: 1;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 1) 22%, rgba(0, 0, 0, 0.45));
}

.site-shell {
  position: relative;
  z-index: 2;
  min-height: 100vh;
}

.topbar,
.section {
  width: min(calc(100% - 2rem), var(--max-width));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 1rem;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 1.1rem;
  margin-top: 1rem;
  background:
    linear-gradient(135deg, rgba(243, 107, 33, 0.12), transparent 28%),
    linear-gradient(225deg, rgba(178, 70, 255, 0.14), transparent 34%),
    rgba(14, 9, 28, 0.66);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  backdrop-filter: blur(18px);
  box-shadow:
    0 18px 48px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.brand-logo {
  width: 172px;
  height: auto;
  padding: 0.28rem 0.45rem;
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.78));
  box-shadow:
    0 10px 24px rgba(0, 0, 0, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 1rem;
}

.menu a {
  position: relative;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 500;
}

.menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.28rem;
  width: 100%;
  height: 1px;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, var(--accent), var(--accent-3));
  transition: transform 0.25s ease;
}

.menu a:hover,
.menu a:focus-visible {
  color: var(--text);
}

.menu a:hover::after,
.menu a:focus-visible::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: 0.25rem;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px 0;
  border-radius: 999px;
  background: var(--text);
}

.section {
  padding: 2rem 0 4rem;
  scroll-margin-top: 7rem;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(340px, 0.88fr);
  align-items: center;
  gap: 2rem;
  min-height: calc(100vh - 110px);
  padding-top: 3rem;
}

.eyebrow,
.price-title,
.card-index,
.signal-head,
.signal-panel span {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 800;
}

.eyebrow {
  margin: 0 0 1rem;
  color: #ffb18c;
}

.hero h1,
.section-heading h2,
.info-card h3,
.solution-card h3,
.price-card strong,
.timeline-step h3,
.reasons-grid h3,
.faq-item summary,
.contact-banner h2,
.signal-panel strong,
.signal-metrics strong {
  font-family: "Oxanium", sans-serif;
}

.hero h1 {
  margin: 0;
  max-width: 10ch;
  font-size: clamp(3rem, 7vw, 6.8rem);
  line-height: 0.93;
  letter-spacing: -0.05em;
  font-weight: 700;
}

.lead {
  max-width: 62ch;
  margin: 1.4rem 0 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.75;
  font-weight: 500;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 1.45rem;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

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

.button-primary {
  color: #fff7f2;
  background: linear-gradient(135deg, var(--accent), #e03da3 92%);
  box-shadow: 0 16px 40px rgba(243, 107, 33, 0.28);
}

.button-secondary {
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.03);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: rgba(243, 107, 33, 0.4);
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
}

.hero-tags li {
  padding: 0.7rem 0.95rem;
  border: 1px solid rgba(243, 107, 33, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  color: #ffd8c5;
  font-size: 0.94rem;
}

.hero-visual {
  position: relative;
}

.signal-card,
.info-card,
.solution-card,
.price-card,
.timeline-step,
.reasons-grid article,
.faq-item,
.contact-banner,
.motion-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015)),
    var(--panel);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.signal-card::before,
.info-card::before,
.price-card::before,
.contact-banner::before {
  content: "";
  position: absolute;
  inset: -1px;
  background: linear-gradient(135deg, rgba(243, 107, 33, 0.28), transparent 28%, transparent 70%, rgba(178, 70, 255, 0.24));
  opacity: 0.9;
  pointer-events: none;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  padding: 1px;
}

.signal-card {
  min-height: auto;
  padding: 1.4rem;
}

.signal-head {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: #f7cab4;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff8b47, #d43cff);
  box-shadow: 0 0 18px rgba(243, 107, 33, 0.8);
}

.signal-metrics {
  display: grid;
  gap: 1rem;
  margin-top: 1.25rem;
}

.signal-metrics article {
  padding: 1.2rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.signal-metrics strong {
  display: block;
  font-size: 1.9rem;
  margin-bottom: 0.4rem;
}

.signal-metrics p,
.signal-panel span,
.section-heading p:last-child,
.info-card p,
.solution-card p,
.price-card li,
.timeline-step p,
.reasons-grid p,
.faq-item p,
.contact-banner p {
  color: var(--muted);
  line-height: 1.75;
}

.signal-metrics p {
  margin: 0;
}

.signal-panel {
  position: static;
  display: grid;
  gap: 0.9rem;
  margin-top: 1rem;
}

.signal-panel div {
  padding: 1rem 1.1rem;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(243, 107, 33, 0.12), rgba(124, 42, 136, 0.18));
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.signal-panel strong {
  display: block;
  margin-top: 0.35rem;
  font-size: 1.15rem;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 1.8rem;
}

.services-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: 1rem;
}

.service-feature,
.service-mini {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at top right, rgba(243, 107, 33, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015)),
    var(--panel);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.service-feature {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.9fr);
  gap: 1rem;
  padding: 1.5rem;
}

.service-feature-copy h3,
.service-mini h3 {
  margin: 0 0 0.75rem;
  font-family: "Oxanium", sans-serif;
}

.service-feature-copy h3 {
  font-size: 1.8rem;
  line-height: 1.08;
  max-width: 16ch;
}

.service-feature-copy p,
.service-mini p {
  color: var(--muted);
  line-height: 1.75;
  margin: 0;
}

.service-bullets {
  list-style: none;
  padding: 0;
  margin: 1.2rem 0 0;
  display: grid;
  gap: 0.65rem;
}

.service-bullets li {
  color: #f5d9ca;
}

.service-bullets li::before {
  content: "•";
  color: var(--accent);
  margin-right: 0.55rem;
}

.service-feature-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
}

.browser-scene {
  width: 100%;
  max-width: 320px;
  padding: 1rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.browser-top {
  display: flex;
  gap: 0.45rem;
  margin-bottom: 0.9rem;
}

.browser-top span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
}

.browser-top span:first-child {
  background: #ff8b47;
}

.browser-top span:last-child {
  background: #b246ff;
}

.browser-layout {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 0.8rem;
}

.browser-sidebar,
.browser-line,
.browser-cta {
  border-radius: 12px;
}

.browser-sidebar {
  min-height: 180px;
  background:
    linear-gradient(180deg, rgba(178, 70, 255, 0.18), rgba(255, 255, 255, 0.03));
}

.browser-content {
  display: grid;
  gap: 0.8rem;
  align-content: start;
}

.browser-line {
  height: 18px;
  background: rgba(255, 255, 255, 0.09);
  transform-origin: left center;
  animation: serviceLinePulse 3s ease-in-out infinite;
}

.line-2 {
  width: 82%;
  animation-delay: 0.2s;
}

.line-3 {
  width: 68%;
  animation-delay: 0.4s;
}

.browser-cta {
  width: 96px;
  height: 40px;
  background: linear-gradient(135deg, rgba(243, 107, 33, 0.88), rgba(178, 70, 255, 0.86));
  animation: ctaFloat 2.8s ease-in-out infinite;
}

.services-mini-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.service-mini {
  padding: 1.35rem;
}

.service-mini-icon {
  position: relative;
  width: 74px;
  height: 74px;
  margin-bottom: 1rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  overflow: hidden;
}

.mobile-orbit span,
.panel-flow span,
.shield-pulse span,
.advisor-wave span {
  position: absolute;
  display: block;
}

.mobile-orbit span:nth-child(1) {
  inset: 14px;
  border: 2px solid rgba(243, 107, 33, 0.7);
  border-radius: 18px;
}

.mobile-orbit span:nth-child(2),
.mobile-orbit span:nth-child(3) {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  top: 31px;
  animation: orbitDot 3.2s linear infinite;
}

.mobile-orbit span:nth-child(2) {
  left: 8px;
  background: #ff8b47;
}

.mobile-orbit span:nth-child(3) {
  right: 8px;
  background: #b246ff;
  animation-direction: reverse;
}

.panel-flow span {
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  left: 12px;
}

.panel-flow span:nth-child(1) {
  top: 15px;
  width: 26px;
}

.panel-flow span:nth-child(2) {
  top: 30px;
  width: 46px;
  animation: serviceLinePulse 2.6s ease-in-out infinite;
}

.panel-flow span:nth-child(3) {
  top: 46px;
  width: 34px;
  animation: serviceLinePulse 2.6s ease-in-out infinite 0.2s;
}

.panel-flow span:nth-child(4) {
  right: 12px;
  left: auto;
  top: 18px;
  width: 18px;
  height: 38px;
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(243, 107, 33, 0.9), rgba(178, 70, 255, 0.86));
  animation: ctaFloat 2.8s ease-in-out infinite;
}

.shield-pulse span {
  left: 22px;
  top: 16px;
  width: 30px;
  height: 38px;
  clip-path: polygon(50% 0%, 100% 16%, 100% 52%, 50% 100%, 0% 52%, 0% 16%);
  background: linear-gradient(180deg, rgba(243, 107, 33, 0.95), rgba(178, 70, 255, 0.88));
  animation: shieldPulse 2.7s ease-in-out infinite;
}

.advisor-wave span {
  bottom: 14px;
  width: 10px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(243, 107, 33, 0.95), rgba(178, 70, 255, 0.84));
  animation: equalizer 1.8s ease-in-out infinite;
}

.advisor-wave span:nth-child(1) {
  left: 18px;
  height: 22px;
}

.advisor-wave span:nth-child(2) {
  left: 32px;
  height: 36px;
  animation-delay: 0.15s;
}

.advisor-wave span:nth-child(3) {
  left: 46px;
  height: 28px;
  animation-delay: 0.3s;
}

.motion-strip {
  padding-top: 0.5rem;
}

.motion-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.motion-card {
  padding: 1.35rem;
  background:
    radial-gradient(circle at top right, rgba(243, 107, 33, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015)),
    var(--panel);
}

.motion-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
  margin-bottom: 1rem;
  border-radius: 22px;
  background:
    radial-gradient(circle at 30% 30%, rgba(243, 107, 33, 0.08), transparent 24%),
    radial-gradient(circle at 70% 65%, rgba(178, 70, 255, 0.1), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.015));
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.motion-icon::after {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: 18px;
  border: 1px dashed rgba(255, 255, 255, 0.05);
  pointer-events: none;
}

.service-visual {
  width: 176px;
  height: 176px;
}

.service-visual * {
  vector-effect: non-scaling-stroke;
}

.screen-frame,
.phone-shell,
.dashboard-frame {
  fill: rgba(255, 255, 255, 0.03);
  stroke-width: 2.2;
}

.screen-frame {
  stroke: url(#webStroke);
}

.screen-topbar {
  fill: rgba(243, 107, 33, 0.12);
  stroke: rgba(255, 255, 255, 0.05);
}

.ui-dot,
.phone-camera,
.graph-node {
  fill: #ffb18c;
}

.code-line,
.sync-arc,
.graph-line {
  fill: none;
  stroke-linecap: round;
  stroke-width: 4;
}

.code-line {
  stroke: rgba(255, 255, 255, 0.82);
  stroke-dasharray: 72;
  stroke-dashoffset: 72;
  animation: drawLine 3s ease-in-out infinite;
}

.code-line-b {
  animation-delay: 0.25s;
}

.code-line-c {
  animation-delay: 0.5s;
}

.cursor-path {
  fill: rgba(243, 107, 33, 0.94);
  transform-origin: 130px 96px;
  animation: floatPointer 3.2s ease-in-out infinite;
}

.phone-shell {
  stroke: url(#mobileStroke);
}

.phone-screen {
  fill: rgba(255, 255, 255, 0.04);
  stroke: rgba(255, 255, 255, 0.16);
  stroke-width: 1.5;
}

.app-card {
  fill: rgba(255, 255, 255, 0.1);
}

.app-card-a {
  animation: pulseCard 2.6s ease-in-out infinite;
}

.app-card-b {
  animation: pulseCard 2.6s ease-in-out infinite 0.2s;
}

.app-card-c {
  animation: pulseCard 2.6s ease-in-out infinite 0.4s;
}

.sync-orb {
  fill: rgba(243, 107, 33, 0.88);
  filter: drop-shadow(0 0 12px rgba(243, 107, 33, 0.3));
}

.orb-right {
  fill: rgba(178, 70, 255, 0.84);
  filter: drop-shadow(0 0 12px rgba(178, 70, 255, 0.3));
}

.sync-arc {
  stroke: rgba(255, 255, 255, 0.7);
  stroke-dasharray: 8 12;
  animation: dashMove 3.4s linear infinite;
}

.arc-bottom {
  animation-direction: reverse;
}

.dashboard-frame {
  stroke: url(#panelStroke);
}

.dashboard-block {
  fill: rgba(255, 255, 255, 0.06);
  stroke: rgba(255, 255, 255, 0.06);
  stroke-width: 1;
}

.block-main {
  animation: pulseCard 2.8s ease-in-out infinite;
}

.graph-line {
  stroke: #ffb18c;
  stroke-dasharray: 140;
  stroke-dashoffset: 140;
  animation: drawGraph 3.2s ease-in-out infinite;
}

.node-a,
.node-b,
.node-c,
.node-d {
  animation: blinkNode 3.2s ease-in-out infinite;
}

.node-b {
  animation-delay: 0.2s;
}

.node-c {
  animation-delay: 0.4s;
}

.node-d {
  animation-delay: 0.6s;
}

.motion-card h3 {
  margin: 0 0 0.7rem;
  font-family: "Oxanium", sans-serif;
  font-size: 1.24rem;
}

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

.section-heading h2 {
  margin: 0;
  font-size: clamp(2.1rem, 4vw, 3.4rem);
  line-height: 1.03;
}

.card-grid,
.solutions-grid,
.pricing-grid,
.reasons-grid {
  display: grid;
  gap: 1rem;
}

.three-up,
.solutions-grid,
.reasons-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.info-card,
.solution-card,
.price-card,
.reasons-grid article {
  padding: 1.5rem;
}

.card-index {
  display: inline-block;
  margin-bottom: 1rem;
  color: #ffb18c;
}

.info-card h3,
.solution-card h3,
.reasons-grid h3 {
  margin: 0 0 0.75rem;
  font-size: 1.28rem;
}

.solution-card {
  min-height: 190px;
}

.price-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.price-card.featured {
  background:
    linear-gradient(180deg, rgba(243, 107, 33, 0.12), rgba(255, 255, 255, 0.018)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.015)),
    var(--panel-strong);
}

.price-title {
  margin: 0;
  color: #ffb18c;
}

.price-card strong {
  font-size: 1.5rem;
  line-height: 1.2;
}

.price-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.7rem;
}

.price-card li::before {
  content: "•";
  color: var(--accent);
  margin-right: 0.55rem;
}

.timeline {
  display: grid;
  gap: 1rem;
}

.timeline-step {
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 1rem;
  padding: 1.35rem;
}

.timeline-step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(243, 107, 33, 0.24), rgba(124, 42, 136, 0.28));
  font-family: "Oxanium", sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
}

.timeline-step h3 {
  margin: 0 0 0.45rem;
  font-size: 1.24rem;
}

.faq-list {
  display: grid;
  gap: 0.9rem;
}

.faq-item {
  padding: 0 1.3rem;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.25rem 0;
  font-size: 1.08rem;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  margin: 0 0 1.25rem;
}

.contact-banner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 1.5rem;
  align-items: center;
  padding: 2rem;
}

.pricing-banner {
  margin-bottom: 1.2rem;
}

.contact-banner h2 {
  margin: 0;
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  line-height: 1.02;
}

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

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

@keyframes drawLine {
  0%,
  15% {
    stroke-dashoffset: 72;
    opacity: 0.45;
  }

  30%,
  70% {
    stroke-dashoffset: 0;
    opacity: 1;
  }

  100% {
    stroke-dashoffset: -24;
    opacity: 0.55;
  }
}

@keyframes floatPointer {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(-4px, 5px) scale(1.04);
  }
}

@keyframes pulseCard {
  0%,
  100% {
    opacity: 0.45;
    transform: translateY(0);
  }

  50% {
    opacity: 1;
    transform: translateY(-2px);
  }
}

@keyframes dashMove {
  0% {
    stroke-dashoffset: 0;
    opacity: 0.45;
  }

  50% {
    opacity: 1;
  }

  100% {
    stroke-dashoffset: 40;
    opacity: 0.45;
  }
}

@keyframes drawGraph {
  0%,
  15% {
    stroke-dashoffset: 140;
    opacity: 0.35;
  }

  40%,
  75% {
    stroke-dashoffset: 0;
    opacity: 1;
  }

  100% {
    stroke-dashoffset: -30;
    opacity: 0.5;
  }
}

@keyframes blinkNode {
  0%,
  100% {
    opacity: 0.45;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.18);
  }
}

@keyframes serviceLinePulse {
  0%,
  100% {
    opacity: 0.45;
    transform: scaleX(0.92);
  }

  50% {
    opacity: 1;
    transform: scaleX(1);
  }
}

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

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

@keyframes orbitDot {
  0% {
    transform: translateX(0) scale(1);
    opacity: 0.7;
  }

  50% {
    transform: translateX(24px) scale(1.12);
    opacity: 1;
  }

  100% {
    transform: translateX(0) scale(1);
    opacity: 0.7;
  }
}

@keyframes shieldPulse {
  0%,
  100% {
    transform: scale(1);
    filter: drop-shadow(0 0 0 rgba(243, 107, 33, 0));
  }

  50% {
    transform: scale(1.08);
    filter: drop-shadow(0 0 14px rgba(243, 107, 33, 0.35));
  }
}

@keyframes equalizer {
  0%,
  100% {
    transform: scaleY(0.75);
    opacity: 0.65;
  }

  50% {
    transform: scaleY(1.15);
    opacity: 1;
  }
}

@media (max-width: 1024px) {
  .hero,
  .services-showcase,
  .motion-grid,
  .three-up,
  .solutions-grid,
  .pricing-grid,
  .reasons-grid,
  .contact-banner {
    grid-template-columns: 1fr 1fr;
  }

  .hero {
    min-height: auto;
  }

  .signal-card {
    min-height: 420px;
  }

  .service-feature {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 780px) {
  .topbar {
    align-items: flex-start;
    flex-wrap: wrap;
    border-radius: 28px;
  }

  .brand-logo {
    width: 144px;
  }

  .menu-toggle {
    display: block;
    margin-left: auto;
  }

  .menu {
    display: none;
    width: 100%;
    padding-top: 0.8rem;
    border-top: 1px solid var(--line);
    flex-direction: column;
    align-items: flex-start;
  }

  .menu.is-open {
    display: flex;
  }

  .hero,
  .services-showcase,
  .motion-grid,
  .three-up,
  .solutions-grid,
  .pricing-grid,
  .reasons-grid,
  .contact-banner {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 2rem;
  }

  .hero h1 {
    max-width: 12ch;
  }

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

  .signal-panel {
    position: static;
    margin-top: 1rem;
  }

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

  .timeline-step {
    grid-template-columns: 1fr;
  }
}
