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

:root {
  /* --c: #00e5cc; */
  --c: #E69500;
  --cd: #00b5a0;
  --cg: rgba(0, 229, 204, 0.12);
  --cb: rgba(0, 229, 204, 0.28);
  --bg: #07080a;
  --bg2: #0d0f12;
  --bg3: #131619;
  --surf: #181c20;
  --surf2: #1e2328;
  --txt: #eef0f3;
  --txt2: #8a929e;
  --txt3: #525a64;
  --acc: #ff4d6d;
  --blue: #4d9fff;
  --grn: #00d97e;
  --warn: #ffb547;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Space Grotesk", sans-serif;
  background: var(--bg);
  color: var(--txt);
  overflow-x: hidden;
  line-height: 1.6;
}

.footer-link {
  color: #525a64;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: underline;
}

.footer-link:hover {
  /* color: #00e5cc; */
  color: #E69500;
  text-decoration: none;
}

.grid-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(0, 229, 204, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 229, 204, 0.03) 1px, transparent 1px);
  background-size: 56px 56px;
  animation: gsh 24s linear infinite;
}
@keyframes gsh {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 56px 56px;
  }
}

.orb {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  filter: blur(90px);
  animation: ofl 14s ease-in-out infinite;
}
.o1 {
  width: 480px;
  height: 480px;
  background: var(--c);
  opacity: 0.12;
  top: -180px;
  right: -80px;
  animation-delay: 0s;
}
.o2 {
  width: 380px;
  height: 380px;
  background: var(--acc);
  opacity: 0.1;
  bottom: -120px;
  left: -60px;
  animation-delay: -5s;
}
.o3 {
  width: 300px;
  height: 300px;
  background: #4d9fff;
  opacity: 0.08;
  top: 50%;
  left: 45%;
  animation-delay: -9s;
}
@keyframes ofl {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-28px) scale(1.06);
  }
}

.scan {
  position: fixed;
  left: 0;
  right: 0;
  height: 1px;
  pointer-events: none;
  z-index: 999;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--c) 40%,
    var(--c) 60%,
    transparent 100%
  );
  opacity: 0.15;
  animation: scn 8s linear infinite;
}
@keyframes scn {
  from {
    top: -1px;
  }
  to {
    top: 100vh;
  }
}

.wrap {
  position: relative;
  z-index: 1;
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 3rem;
  border-bottom: 1px solid rgba(0, 229, 204, 0.1);
  background: rgba(7, 8, 10, 0.85);
  backdrop-filter: blur(18px);
  position: sticky;
  top: 0;
  z-index: 100;
}
.logoNew {
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: -0.02em;
  z-index: 1001;
}
.logoNew span {
  font-family: "Tac One", sans-serif;
  font-size: 1.8rem;
  color: var(--c);
}
.logoNew span1 {
  font-family: "Gugi", sans-serif;
  font-size: 1.3rem;
  color: var(--c);
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  color: var(--txt2);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.2s;
  cursor: pointer;
}
.nav-links a:hover {
  color: var(--c);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.2s;
  cursor: pointer;
}

.nav-btn {
  background: transparent;
  border: 1px solid var(--c);
  color: var(--c);
  padding: 0.5rem 1.3rem;
  border-radius: 6px;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  text-decoration: none;
  transition:
    background 0.2s,
    transform 0.15s;
}
.nav-btn:hover {
  background: var(--cg);
  transform: translateY(-1px);
}

.nav-toggle-label {
  display: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
}
.nav-toggle-label span,
.nav-toggle-label span::before,
.nav-toggle-label span::after {
  display: block;
  background: var(--c);
  height: 2px;
  width: 24px;
  position: relative;
  transition: all 0.3s;
}
.nav-toggle-label span::before,
.nav-toggle-label span::after {
  content: "";
  position: absolute;
}
.nav-toggle-label span::before {
  bottom: 8px;
}
.nav-toggle-label span::after {
  top: 8px;
}

.hero {
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 2rem;
  gap: 1.5rem;
  position: relative;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0, 229, 204, 0.07);
  border: 1px solid var(--cb);
  color: var(--c);
  padding: 0.3rem 1rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  animation: fid 0.6s ease both;
}
.pdot {
  width: 7px;
  height: 7px;
  background: var(--c);
  border-radius: 50%;
  animation: pd 2s ease-in-out infinite;
}
@keyframes pd {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.3;
    transform: scale(0.6);
  }
}

.hero h1 {
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.04;
  animation: fid 0.7s 0.1s ease both;
}
.hero h1 em {
  font-family: "Playfair Display", serif;
  font-style: italic;
  color: var(--c);
  font-weight: 700;
}
.hero-sub {
  max-width: 580px;
  color: var(--txt2);
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.75;
  animation: fid 0.7s 0.2s ease both;
}
.hero-acts {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  animation: fid 0.7s 0.3s ease both;
}
@keyframes fid {
  from {
    opacity: 0;
    transform: translateY(-16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.btn-p {
  background: var(--c);
  color: #000;
  border: none;
  padding: 0.8rem 2rem;
  border-radius: 8px;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition:
    transform 0.15s,
    box-shadow 0.2s;
}
.btn-p:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0, 229, 204, 0.4);
}

.terminal {
  background: var(--surf);
  border: 1px solid rgba(0, 229, 204, 0.2);
  border-radius: 12px;
  padding: 1rem 1.4rem;
  margin-top: 0.75rem;
  font-size: 0.8rem;
  color: var(--txt2);
  max-width: 530px;
  width: 100%;
  text-align: left;
}
.t-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.6rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.t-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
}
#tline {
  color: var(--txt2);
  border-right: 1.5px solid var(--c);
  display: inline;
  animation: blink 1s step-end infinite;
  transition: opacity 0.3s;
}
@keyframes blink {
  0%,
  100% {
    border-color: var(--c);
  }
  50% {
    border-color: transparent;
  }
}

section,
.sec {
  padding: 5rem 3rem;
  max-width: 1200px;
  margin: 0 auto;
}
.stag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c);
  margin-bottom: 0.7rem;
  border-left: 2px solid var(--c);
  padding-left: 0.6rem;
}
.stit {
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.12;
}
.ssub {
  color: var(--txt2);
  font-size: 1rem;
  font-weight: 400;
  max-width: 540px;
  margin-top: 0.7rem;
  line-height: 1.7;
}

.rpsec {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
  padding: 5rem 3rem;
  max-width: 1200px;
  margin: 0 auto;
}
.rcanvas {
  background: var(--surf);
  border: 1px solid rgba(0, 229, 204, 0.15);
  border-radius: 18px;
  padding: 1.25rem;
  position: relative;
}
.live-badge {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  color: var(--grn);
  background: rgba(0, 217, 126, 0.08);
  border: 1px solid rgba(0, 217, 126, 0.2);
  padding: 0.2rem 0.55rem;
  border-radius: 4px;
  font-weight: 700;
}
.ins-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--surf);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 10px;
  padding: 0.8rem 1rem;
  transition: border-color 0.2s;
  margin-bottom: 0.75rem;
}
.ins-row:hover {
  border-color: rgba(0, 229, 204, 0.2);
}
.ins-ico {
  width: 30px;
  height: 30px;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.ins-lbl {
  font-size: 0.85rem;
  color: var(--txt2);
}
.ins-val {
  margin-left: auto;
  font-weight: 700;
  font-size: 0.875rem;
}

.pip {
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 3rem;
}
.psteps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 3rem;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 14px;
  overflow: hidden;
}
.pstep {
  padding: 1.8rem 1.5rem;
  position: relative;
  border-right: 1px solid rgba(255, 255, 255, 0.07);
  background: var(--surf);
  transition: background 0.25s;
}
.pstep:last-child {
  border-right: none;
}
.pstep:hover {
  background: var(--surf2);
}
.psn {
  font-size: 2.2rem;
  font-weight: 700;
  /* color: rgba(10, 247, 219, 0.418); */
  color: var(--c);
  line-height: 1;
  margin-bottom: 0.7rem;
}
.pst {
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 0.45rem;
}
.psd {
  color: var(--txt3);
  font-size: 0.78rem;
  line-height: 1.65;
}
.pcon {
  position: absolute;
  right: -10px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  background: var(--bg3);
  border: 1px solid var(--cb);
  border-radius: 50%;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pdotc {
  width: 6px;
  height: 6px;
  background: var(--c);
  border-radius: 50%;
}

.pricing-sec {
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 3rem;
}
.pricing-wrap {
  position: relative;
  margin-top: 3rem;
}
.pgrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  filter: blur(4px);
  opacity: 0.3;
  pointer-events: none;
  user-select: none;
}
.pcard {
  background: var(--surf);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 2rem 1.75rem;
  min-height: 200px;
}

.pricing-veil {
  position: absolute;
  inset: 0;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  background: rgba(7, 8, 10, 0.82);
  backdrop-filter: blur(10px);
  border-radius: 14px;
}
.veil-lock {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--cg);
  border: 1px solid var(--cb);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}
.veil-badge {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(0, 229, 204, 0.08);
  border: 1px solid var(--cb);
  padding: 0.6rem 1.5rem;
  border-radius: 999px;
  color: var(--c);
  font-weight: 700;
  font-size: 0.9rem;
}
.veil-cta {
  background: var(--c);
  color: #000;
  border: none;
  padding: 0.65rem 1.75rem;
  border-radius: 7px;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  cursor: pointer;
  transition:
    transform 0.15s,
    box-shadow 0.2s;
}
.veil-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0, 229, 204, 0.35);
}

.cta-sec {
  max-width: 780px;
  margin: 0 auto;
  padding: 5rem 3rem 6rem;
  text-align: center;
  position: relative;
}
.cta-sec h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  position: relative;
}
.cta-sec h2 em {
  font-family: "Playfair Display", serif;
  font-style: italic;
  color: var(--c);
}

footer {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 2.25rem 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(7, 8, 10, 0.95);
}
.fc {
  color: var(--txt3);
  font-size: 0.75rem;
  text-align: center;
  margin-top: 1rem;
}

.fu {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.fu.vis {
  opacity: 1;
  transform: none;
}

.dnodes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.dn {
  position: absolute;
  width: 3px;
  height: 3px;
  background: var(--c);
  border-radius: 50%;
  animation: nf 9s ease-in-out infinite;
}
@keyframes nf {
  0%,
  100% {
    transform: translateY(0);
    opacity: 0.5;
  }
  50% {
    transform: translateY(-22px);
    opacity: 0.1;
  }
}

@media (max-width: 992px) {
  .psteps {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  nav {
    padding: 1.2rem 1.5rem;
    justify-content: space-between;
  }

  .nav-toggle-label {
    display: block;
    position: relative;
    z-index: 2001;
  }

  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #07080a;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    transform: translateY(-100%);
    opacity: 0;
    transition:
      transform 0.4s ease,
      opacity 0.3s ease;
    z-index: 1000;
    pointer-events: none;
  }

  .nav-links a {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--c);
  }

  .nav-toggle:checked ~ .nav-links {
    transform: translateY(0);
    opacity: 0.9;
    pointer-events: auto;
  }

  .nav-toggle:checked ~ .nav-toggle-label span {
    background: transparent;
  }
  .nav-toggle:checked ~ .nav-toggle-label span::before {
    transform: translateY(8px) rotate(45deg);
  }
  .nav-toggle:checked ~ .nav-toggle-label span::after {
    transform: translateY(-8px) rotate(-45deg);
  }

  .nav-btn {
    display: none;
  }
  .rpsec,
  .psteps,
  .pgrid {
    grid-template-columns: 1fr;
  }
}
