/* ===================================================
   好人云 GoodCloud - Main Stylesheet
   goodcloud.cc
   =================================================== */

:root {
  --bg: #020408;
  --card: #050c14;
  --cyan: #00e5ff;
  --blue: #0070f3;
  --txt: #e8f4fd;
  --muted: #6b9ab8;
  --bdr: rgba(0, 229, 255, 0.12);
  --bdr2: rgba(0, 229, 255, 0.45);
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--txt);
  font-family: 'Noto Sans SC', sans-serif;
  overflow-x: hidden;
  cursor: none;
}

/* ── Scrollbar ── */
::-webkit-scrollbar {
  width: 4px;
}

::-webkit-scrollbar-track {
  background: var(--bg);
}

::-webkit-scrollbar-thumb {
  background: rgba(0, 229, 255, 0.28);
  border-radius: 2px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--cyan);
}

/* ── Custom Cursor ── */
.cur {
  position: fixed;
  width: 10px;
  height: 10px;
  background: var(--cyan);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 15px var(--cyan);
  transition: width 0.2s, height 0.2s;
}

.cur-r {
  position: fixed;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(0, 229, 255, 0.45);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
}

/* ── Background ── */
.bg-grid {
  position: fixed;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(rgba(0, 229, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 229, 255, 0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  z-index: 0;
  animation: of 14s ease-in-out infinite;
}

.o1 {
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(0, 112, 243, 0.14), transparent);
  top: -150px;
  right: -100px;
}

.o2 {
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(0, 229, 255, 0.09), transparent);
  bottom: 80px;
  left: -100px;
  animation-delay: -6s;
}

.o3 {
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(0, 180, 216, 0.08), transparent);
  top: 42%;
  left: 38%;
  animation-delay: -10s;
}

@keyframes of {

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

  33% {
    transform: translate(28px, -28px) scale(1.04);
  }

  66% {
    transform: translate(-18px, 18px) scale(0.96);
  }
}

/* ── Nav ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 60px;
  background: linear-gradient(to bottom, rgba(2, 4, 8, 0.95), transparent);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--bdr);
  transition: background 0.3s, border-color 0.3s;
}

nav.sc {
  background: rgba(2, 4, 8, 0.98);
  border-bottom-color: var(--bdr2);
}

.logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.len {
  font-family: 'Orbitron', monospace;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 3px;
  color: var(--cyan);
  text-shadow: 0 0 20px rgba(0, 229, 255, 0.45);
}

.lcn {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 3px;
}

.nav-links {
  display: flex;
  gap: 38px;
  list-style: none;
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 1px;
  transition: color 0.2s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--cyan);
  transform: scaleX(0);
  transition: transform 0.3s;
}

.nav-links a:hover {
  color: var(--cyan);
}

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

.ncta {
  background: transparent;
  border: 1px solid var(--cyan);
  color: var(--cyan);
  padding: 10px 26px;
  font-size: 12px;
  letter-spacing: 2px;
  font-family: 'Orbitron', monospace;
  cursor: pointer;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.ncta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--cyan);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
  z-index: -1;
}

.ncta:hover {
  color: var(--bg);
}

.ncta:hover::before {
  transform: scaleX(1);
}

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100vh;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 140px 60px 80px;
  overflow: hidden;
}

.hc {
  text-align: center;
  max-width: 860px;
  position: relative;
  z-index: 2;
}

.hbadge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--bdr2);
  padding: 6px 18px;
  font-size: 11px;
  letter-spacing: 4px;
  color: var(--cyan);
  margin-bottom: 36px;
  animation: fid 0.8s ease forwards;
}

.bdot {
  width: 6px;
  height: 6px;
  background: var(--cyan);
  border-radius: 50%;
  animation: bk 2s infinite;
}

@keyframes bk {

  0%,
  100% {
    opacity: 1;
    box-shadow: 0 0 0 0 rgba(0, 229, 255, 0.4);
  }

  50% {
    opacity: 0.6;
    box-shadow: 0 0 0 6px rgba(0, 229, 255, 0);
  }
}

.htitle {
  font-family: 'Orbitron', monospace;
  font-size: clamp(44px, 7.5vw, 92px);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 14px;
  animation: fiu 0.9s 0.1s ease both;
}

.l1 {
  display: block;
  color: var(--txt);
}

.l2 {
  display: block;
  background: linear-gradient(90deg, var(--blue), var(--cyan), #00ffcc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 30px rgba(0, 229, 255, 0.3));
}

.hsub {
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 5px;
  margin-bottom: 22px;
  animation: fiu 1s 0.2s ease both;
}

.hdesc {
  font-size: 17px;
  color: rgba(232, 244, 253, 0.58);
  line-height: 1.9;
  max-width: 600px;
  margin: 0 auto 52px;
  animation: fiu 1s 0.3s ease both;
}

.hbtns {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fiu 1s 0.4s ease both;
}

/* Buttons */
.bp {
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  color: var(--bg);
  border: none;
  padding: 16px 44px;
  font-size: 13px;
  letter-spacing: 2px;
  font-family: 'Orbitron', monospace;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.3s;
  box-shadow: 0 0 28px rgba(0, 112, 243, 0.4);
  clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 14px 100%, 0 calc(100% - 14px));
}

.bp:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 50px rgba(0, 229, 255, 0.5);
}

.bs {
  background: transparent;
  color: var(--txt);
  border: 1px solid var(--bdr2);
  padding: 16px 44px;
  font-size: 13px;
  letter-spacing: 2px;
  font-family: 'Orbitron', monospace;
  cursor: pointer;
  transition: all 0.3s;
  clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 14px 100%, 0 calc(100% - 14px));
}

.bs:hover {
  background: rgba(0, 229, 255, 0.08);
  border-color: var(--cyan);
  color: var(--cyan);
}

.hstats {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-top: 80px;
  padding-top: 48px;
  border-top: 1px solid var(--bdr);
  animation: fiu 1s 0.6s ease both;
  flex-wrap: wrap;
}

.sn {
  font-family: 'Orbitron', monospace;
  font-size: 36px;
  font-weight: 800;
  color: var(--cyan);
  text-shadow: 0 0 20px rgba(0, 229, 255, 0.4);
}

.sl {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 2px;
  margin-top: 6px;
}

@keyframes fiu {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fid {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── Sections ── */
section {
  position: relative;
  z-index: 1;
  padding: 120px 60px;
}

.slbl {
  font-family: 'Orbitron', monospace;
  font-size: 11px;
  letter-spacing: 5px;
  color: var(--cyan);
  margin-bottom: 16px;
  display: block;
}

.stitle {
  font-family: 'Orbitron', monospace;
  font-size: clamp(26px, 3.2vw, 42px);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
}

.ssub {
  font-size: 16px;
  color: var(--muted);
  max-width: 540px;
  line-height: 1.8;
}

/* ── Products ── */
.products {
  background: linear-gradient(to bottom, transparent, rgba(0, 18, 38, 0.55), transparent);
}

.ph {
  text-align: center;
  margin-bottom: 72px;
}

.ph .ssub {
  margin: 0 auto;
}

.pgrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  max-width: 1200px;
  margin: 0 auto;
}

.pc {
  background: var(--card);
  border: 1px solid var(--bdr);
  padding: 44px 34px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s;
  cursor: pointer;
}

.pc::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  transform: scaleX(0);
  transition: transform 0.4s;
}

.pc:hover::before {
  transform: scaleX(1);
}

.pc:hover {
  border-color: rgba(0, 229, 255, 0.28);
  background: rgba(0, 28, 58, 0.82);
  transform: translateY(-5px);
}

.pc.ft {
  border-color: rgba(0, 229, 255, 0.22);
  background: linear-gradient(145deg, rgba(0, 28, 58, 0.9), rgba(0, 10, 24, 0.9));
}

.pc.ft::after {
  content: 'HOT';
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--cyan);
  color: var(--bg);
  font-family: 'Orbitron', monospace;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 10px;
  letter-spacing: 2px;
}

.pico {
  width: 50px;
  height: 50px;
  margin-bottom: 26px;
}

.pico svg {
  width: 40px;
  height: 40px;
}

.pn {
  font-family: 'Orbitron', monospace;
  font-size: 15px;
  font-weight: 700;
  color: var(--txt);
  margin-bottom: 6px;
  letter-spacing: 1px;
}

.pcn {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 18px;
}

.pdesc {
  font-size: 14px;
  color: rgba(232, 244, 253, 0.48);
  line-height: 1.8;
  margin-bottom: 26px;
}

.pspecs {
  list-style: none;
  margin-bottom: 28px;
}

.pspecs li {
  font-size: 13px;
  color: var(--muted);
  padding: 7px 0;
  border-bottom: 1px solid var(--bdr);
  display: flex;
  justify-content: space-between;
}

.pspecs li:last-child {
  border-bottom: none;
}

.sv {
  color: var(--cyan);
  font-family: 'Orbitron', monospace;
  font-size: 11px;
}

.pprice {
  margin-bottom: 22px;
}

.pfrom {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 2px;
}

.pnum {
  font-family: 'Orbitron', monospace;
  font-size: 30px;
  font-weight: 800;
  color: var(--cyan);
}

.punit {
  font-size: 12px;
  color: var(--muted);
}

.pbtn {
  width: 100%;
  background: transparent;
  border: 1px solid var(--bdr2);
  color: var(--cyan);
  padding: 12px;
  font-size: 12px;
  letter-spacing: 2px;
  font-family: 'Orbitron', monospace;
  cursor: pointer;
  transition: all 0.3s;
}

.pbtn:hover {
  background: var(--cyan);
  color: var(--bg);
}

.pc.ft .pbtn {
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  color: var(--bg);
  border: none;
  font-weight: 700;
}

/* ── Features ── */
.fi {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

.flist {
  margin-top: 44px;
}

.fitem {
  display: flex;
  gap: 24px;
  padding: 26px 0;
  border-bottom: 1px solid var(--bdr);
  transition: padding-left 0.3s;
  cursor: default;
}

.fitem:hover {
  padding-left: 10px;
}

.fitem:last-child {
  border-bottom: none;
}

.fnum {
  font-family: 'Orbitron', monospace;
  font-size: 11px;
  color: var(--cyan);
  opacity: 0.45;
  flex-shrink: 0;
  padding-top: 3px;
  letter-spacing: 2px;
}

.ftitle {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 7px;
}

.fdesc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.8;
}

/* DC visual */
.dcv {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 400px;
}

.dcr {
  position: absolute;
  border-radius: 50%;
  border: 1px solid var(--bdr);
  animation: rr 20s linear infinite;
}

.dcr:nth-child(1) {
  width: 380px;
  height: 380px;
}

.dcr:nth-child(2) {
  width: 290px;
  height: 290px;
  animation-duration: 14s;
  animation-direction: reverse;
  border-color: rgba(0, 229, 255, 0.08);
}

.dcr:nth-child(3) {
  width: 210px;
  height: 210px;
  animation-duration: 9s;
}

.dcr::before {
  content: '';
  position: absolute;
  top: -3px;
  left: 50%;
  width: 6px;
  height: 6px;
  background: var(--cyan);
  border-radius: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 10px var(--cyan);
}

@keyframes rr {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.dcc {
  width: 110px;
  height: 110px;
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--card);
  border: 2px solid rgba(0, 229, 255, 0.28);
  border-radius: 50%;
  box-shadow: 0 0 40px rgba(0, 229, 255, 0.12), inset 0 0 25px rgba(0, 112, 243, 0.1);
}

.dcc svg {
  width: 48px;
  height: 48px;
}

/* ── Locations ── */
.locations {
  background: rgba(0, 8, 18, 0.65);
}

.li {
  max-width: 1200px;
  margin: 0 auto;
}

.lh {
  margin-bottom: 60px;
}

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

.ld {
  background: var(--card);
  border: 1px solid var(--bdr);
  padding: 24px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.ld::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, var(--blue), var(--cyan));
}

.ld:hover {
  border-color: rgba(0, 229, 255, 0.28);
  transform: translateY(-3px);
}

.lc {
  font-family: 'Orbitron', monospace;
  font-size: 13px;
  font-weight: 700;
  color: var(--txt);
  margin-bottom: 4px;
}

.ll {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 10px;
}

.lst {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  color: #00ff88;
}

.lst::before {
  content: '';
  width: 6px;
  height: 6px;
  background: #00ff88;
  border-radius: 50%;
  box-shadow: 0 0 8px #00ff88;
  animation: bk 2s infinite;
}

.llat {
  font-size: 11px;
  color: var(--muted);
  margin-top: 6px;
}

.llat span {
  color: var(--cyan);
  font-family: 'Orbitron', monospace;
}

/* ── Pricing ── */
.prh {
  text-align: center;
  margin-bottom: 64px;
}

.prh .ssub {
  margin: 0 auto;
}

.ptabs {
  display: flex;
  justify-content: center;
  border: 1px solid var(--bdr);
  margin-bottom: 52px;
}

.tbtn {
  background: transparent;
  border: none;
  color: var(--muted);
  padding: 13px 34px;
  font-size: 12px;
  letter-spacing: 2px;
  font-family: 'Orbitron', monospace;
  cursor: pointer;
  transition: all 0.3s;
  position: relative;
}

.tbtn.act {
  background: rgba(0, 229, 255, 0.08);
  color: var(--cyan);
}

.tbtn.act::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--cyan);
}

.prgrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  max-width: 1100px;
  margin: 0 auto;
}

.prcard {
  background: var(--card);
  border: 1px solid var(--bdr);
  padding: 44px 34px;
  position: relative;
  transition: all 0.3s;
}

.prcard.pop {
  border-color: rgba(0, 229, 255, 0.32);
  background: linear-gradient(145deg, rgba(0, 22, 48, 0.95), rgba(0, 8, 22, 0.95));
  transform: scale(1.03);
  z-index: 2;
}

.ptag {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  color: var(--bg);
  font-family: 'Orbitron', monospace;
  font-size: 10px;
  font-weight: 700;
  padding: 5px 20px;
  letter-spacing: 2px;
  white-space: nowrap;
}

.ptier {
  font-family: 'Orbitron', monospace;
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--muted);
  margin-bottom: 8px;
}

.pname {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 24px;
}

.pamount {
  display: flex;
  align-items: baseline;
  gap: 3px;
  margin-bottom: 6px;
}

.pcur {
  font-size: 18px;
  color: var(--muted);
}

.pval {
  font-family: 'Orbitron', monospace;
  font-size: 46px;
  font-weight: 800;
  color: var(--cyan);
  line-height: 1;
}

.pper {
  font-size: 13px;
  color: var(--muted);
}

.pnote {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 30px;
}

.pfeat {
  list-style: none;
  margin-bottom: 34px;
}

.pfeat li {
  font-size: 14px;
  color: rgba(232, 244, 253, 0.6);
  padding: 10px 0;
  border-bottom: 1px solid var(--bdr);
  display: flex;
  align-items: center;
  gap: 10px;
}

.pfeat li:last-child {
  border-bottom: none;
}

.pfeat li::before {
  content: '▸';
  color: var(--cyan);
  font-size: 10px;
  flex-shrink: 0;
}

.pfeat li.hl {
  color: var(--txt);
  font-weight: 500;
}

/* ── Testimonials ── */
.tgrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  max-width: 1200px;
  margin: 0 auto;
}

.tc {
  background: var(--card);
  border: 1px solid var(--bdr);
  padding: 36px;
  transition: all 0.3s;
}

.tc:hover {
  border-color: rgba(0, 229, 255, 0.2);
  transform: translateY(-4px);
}

.tq {
  font-size: 40px;
  color: var(--cyan);
  opacity: 0.25;
  font-family: Georgia, serif;
  line-height: 1;
  margin-bottom: 14px;
}

.tt {
  font-size: 14px;
  color: rgba(232, 244, 253, 0.6);
  line-height: 1.9;
  margin-bottom: 26px;
}

.ta {
  display: flex;
  align-items: center;
  gap: 14px;
}

.tav {
  width: 44px;
  height: 44px;
  border: 1px solid var(--bdr2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Orbitron', monospace;
  font-size: 13px;
  font-weight: 700;
  color: var(--cyan);
  background: rgba(0, 229, 255, 0.05);
  flex-shrink: 0;
}

.tan {
  font-size: 14px;
  font-weight: 600;
}

.tar {
  font-size: 12px;
  color: var(--muted);
}

/* ── CTA Band ── */
.cband {
  position: relative;
  padding: 100px 60px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(0, 28, 68, 0.8), rgba(0, 12, 30, 0.9));
  border-top: 1px solid var(--bdr);
  border-bottom: 1px solid var(--bdr);
  text-align: center;
}

.cband::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(0, 112, 243, 0.1), transparent);
  pointer-events: none;
}

.ct {
  font-family: 'Orbitron', monospace;
  font-size: clamp(26px, 4vw, 50px);
  font-weight: 800;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}

.cs {
  font-size: 16px;
  color: var(--muted);
  margin-bottom: 44px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
  position: relative;
  z-index: 1;
}

.cbtns {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

/* ── Footer ── */
footer {
  background: rgba(0, 4, 10, 0.98);
  padding: 80px 60px 40px;
  border-top: 1px solid var(--bdr);
}

.ftop {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 56px;
  margin-bottom: 56px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--bdr);
}

.ftag {
  font-size: 14px;
  color: var(--muted);
  margin-top: 18px;
  line-height: 1.7;
  max-width: 270px;
}

.fdom {
  margin-top: 22px;
  font-family: 'Orbitron', monospace;
  font-size: 13px;
  color: var(--cyan);
  letter-spacing: 1px;
}

.fcol h4 {
  font-family: 'Orbitron', monospace;
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--muted);
  margin-bottom: 22px;
}

.fcol ul {
  list-style: none;
}

.fcol ul li {
  margin-bottom: 11px;
}

.fcol ul li a {
  font-size: 14px;
  color: rgba(232, 244, 253, 0.4);
  text-decoration: none;
  transition: color 0.2s;
}

.fcol ul li a:hover {
  color: var(--cyan);
}

.fbot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--muted);
  flex-wrap: wrap;
  gap: 10px;
}

.fbot a {
  color: var(--muted);
  text-decoration: none;
}

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

/* ── Scroll Reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(38px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* ── Responsive ── */
@media (max-width: 1024px) {

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

  .fi {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .dcv {
    display: none;
  }

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

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

@media (max-width: 768px) {
  nav {
    padding: 16px 24px;
  }

  .nav-links {
    display: none;
  }

  section {
    padding: 80px 24px;
  }

  .hero {
    padding: 120px 24px 60px;
  }

  .pgrid,
  .prgrid,
  .tgrid {
    grid-template-columns: 1fr;
  }

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

  .hstats {
    gap: 30px;
  }

  .cband {
    padding: 60px 24px;
  }

  footer {
    padding: 60px 24px 30px;
  }

  .ftop {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .prcard.pop {
    transform: scale(1);
  }
}