/* ============================================================
   AIPAC — Absolutely Insane Price Action Coin
   Classified Intelligence Document / Leaked File Aesthetic
   Fonts: Bebas Neue (display), Space Mono / Courier Prime (body)
   ============================================================ */

:root {
  --green: #39ff14;
  --green-dim: #2ac40f;
  --green-glow: rgba(57, 255, 20, 0.35);
  --dark: #050a04;
  --dark2: #080f06;
  --dark3: #0d1a0a;
  --panel: #0a1208;
  --panel2: #111d0e;
  --border: rgba(57, 255, 20, 0.18);
  --border-bright: rgba(57, 255, 20, 0.55);
  --text: #c8e8c0;
  --muted: #5a7a52;
  --red: #ff3b30;
  --yellow: #ffd60a;
  --white: #f0f8ee;
  /* Document colors */
  --doc-bg: #f4f0e8;
  --doc-text: #1a1a1a;
  --doc-stamp-red: #c41e0a;
  --doc-stamp-green: #0a4a0a;
  --doc-line: #9a9080;
  --doc-shadow: rgba(0,0,0,0.35);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--dark);
  color: var(--text);
  font-family: 'Space Mono', monospace;
  font-size: 15px;
  line-height: 1.75;
  overflow-x: hidden;
}

/* ── UTILITIES ── */
.green { color: var(--green); }
.red-text { color: var(--red); }
.bold-line { font-weight: 700; font-size: 1.1rem; }
.big-text { font-size: 2rem; font-family: 'Bebas Neue', sans-serif; letter-spacing: 2px; }
.muted-label { color: var(--muted); font-size: 0.75rem; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 0.5rem; }
.muted-caption { color: var(--muted); font-size: 0.8rem; font-style: italic; }

.section-header {
  text-align: center;
  position: relative;
  z-index: 1;
}

.section-label {
  font-family: 'Space Mono', monospace;
  font-size: 0.7rem;
  color: var(--green-dim);
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 8vw, 6rem);
  line-height: 0.95;
  letter-spacing: 2px;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.section-sub {
  font-size: 1.1rem;
  color: var(--muted);
  margin-bottom: 2.5rem;
}

/* ── CLASSIFIED DOC WATERMARK ── */
.doc-watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-25deg);
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(4rem, 12vw, 9rem);
  letter-spacing: 8px;
  color: rgba(57, 255, 20, 0.025);
  pointer-events: none;
  white-space: nowrap;
  z-index: 0;
  user-select: none;
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block;
  background: var(--green);
  color: #000;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.3rem;
  letter-spacing: 3px;
  padding: 0.9rem 2.5rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s;
  clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px var(--green-glow);
}
.btn-primary.pulse { animation: pulse 2s infinite; }
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 var(--green-glow); }
  50% { box-shadow: 0 0 20px 8px var(--green-glow); }
}
.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--green);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.3rem;
  letter-spacing: 3px;
  padding: 0.9rem 2.5rem;
  text-decoration: none;
  border: 1px solid var(--border-bright);
  transition: background 0.2s, color 0.2s;
}
.btn-secondary:hover { background: rgba(57,255,20,0.08); }
.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--green);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.3rem;
  letter-spacing: 3px;
  padding: 0.9rem 2.5rem;
  text-decoration: none;
  border: 2px solid var(--green);
  transition: background 0.2s;
}
.btn-outline:hover { background: rgba(57,255,20,0.1); }
.btn-xl { font-size: 1.8rem; padding: 1.2rem 3.5rem; }
.btn-center { display: block; width: fit-content; margin: 2.5rem auto 0; }

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 999;
  background: rgba(5, 10, 4, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0;
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.6rem 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.nav-logo {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--border);
}
.nav-brand {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  color: var(--green);
  letter-spacing: 4px;
  flex: 1;
}
.nav-links { display: flex; gap: 2rem; align-items: center; }
.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--green); }
.nav-cta {
  background: var(--green) !important;
  color: #000 !important;
  padding: 0.4rem 1.1rem;
  font-weight: 700;
  font-family: 'Bebas Neue', sans-serif !important;
  font-size: 0.85rem !important;
  letter-spacing: 2px !important;
}

/* Hamburger */
.nav-hamburger {
  display: none;
  background: none;
  border: 1px solid var(--border);
  color: var(--green);
  font-size: 1.3rem;
  cursor: pointer;
  padding: 0.3rem 0.7rem;
  line-height: 1;
}
.nav-mobile-menu {
  display: none;
  flex-direction: column;
  background: rgba(5, 10, 4, 0.99);
  border-top: 1px solid var(--border);
  padding: 1rem 2rem;
  gap: 0;
}
.nav-mobile-menu.open { display: flex; }
.nav-mobile-link {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}
.nav-mobile-link:hover, .nav-mobile-link:last-child { color: var(--green); }
.nav-mobile-cta {
  color: var(--green) !important;
  font-weight: 700;
  margin-top: 0.5rem;
  border-bottom: none;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  background: var(--dark);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding-top: 80px;
}
.hero-noise {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.4;
  pointer-events: none;
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(57,255,20,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(57,255,20,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.hero-inner {
  position: relative; z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
  text-align: center;
}
.hero-logo-wrap {
  position: relative;
  width: 160px; height: 160px;
  margin: 0 auto 2.5rem;
}
.hero-logo {
  width: 160px; height: 160px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--green);
  box-shadow: 0 0 40px var(--green-glow);
}
.hero-logo-ring {
  position: absolute; inset: -8px;
  border-radius: 50%;
  border: 1px solid rgba(57,255,20,0.3);
  animation: spin 12s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.hero-tag {
  font-size: 0.7rem;
  letter-spacing: 5px;
  color: var(--green-dim);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}
.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3.5rem, 12vw, 9rem);
  line-height: 0.9;
  letter-spacing: 3px;
  color: var(--white);
  margin-bottom: 2rem;
}
.hero-title-green { color: var(--green); text-shadow: 0 0 40px var(--green-glow); }
.hero-sub { font-size: 1rem; color: var(--muted); margin-bottom: 1rem; }
.hero-sub-bold { font-weight: 700; color: var(--text); font-size: 1.05rem; margin-bottom: 1.5rem; }
.hero-copy { font-size: 1rem; line-height: 1.9; margin-bottom: 2.5rem; max-width: 600px; margin-left: auto; margin-right: auto; }
.hero-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 3rem; }

/* Ticker */
.hero-ticker {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 0.75rem 0;
  background: rgba(57,255,20,0.03);
  white-space: nowrap;
}
.hero-ticker span {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 2px;
  color: var(--green-dim);
  text-transform: uppercase;
  animation: ticker 30s linear infinite;
}
@keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ── ABOUT ── */
.about {
  background: var(--dark2);
  padding: 7rem 2rem;
  border-top: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 1100px;
  margin: 0 auto 3rem;
}
.about-col { position: relative; z-index: 1; }
.about-col p { margin-bottom: 1.2rem; }
.ops-list { list-style: none; margin: 1rem 0 1.5rem; }
.ops-list li { padding: 0.4rem 0; font-size: 0.9rem; display: flex; gap: 0.8rem; }
.bullet { color: var(--green); }
.contrast-text { color: var(--muted); font-style: italic; }
.badge-box {
  border: 1px solid var(--green);
  padding: 1.5rem;
  margin-top: 1.5rem;
  background: rgba(57,255,20,0.04);
  box-shadow: 0 0 20px rgba(57,255,20,0.05);
}
.badge-box p { margin-bottom: 0.5rem; }
.footer-note {
  text-align: center;
  color: var(--muted);
  font-style: italic;
  font-size: 0.85rem;
  position: relative;
  z-index: 1;
}

/* ── KOL / PUPPETS ── */
.payroll {
  background: var(--dark);
  padding: 7rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Gallery layout — image-forward cards */
.kol-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto 3rem;
  position: relative;
  z-index: 1;
}
.kol-card {
  background: var(--panel);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
  display: flex;
  flex-direction: column;
}
.kol-card:hover {
  border-color: var(--border-bright);
  box-shadow: 0 0 24px rgba(57,255,20,0.12);
  transform: translateY(-3px);
}
.kol-card-redacted {
  opacity: 0.65;
  filter: contrast(0.65) saturate(0.5);
}
.kol-img-wrap {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--dark);
  position: relative;
}
.kol-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.4s ease;
}
.kol-card:hover .kol-img { transform: scale(1.03); }

.kol-redacted-img {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #050a04;
}
.kol-redacted-block {
  font-size: 5rem;
  opacity: 0.3;
}

.kol-info {
  padding: 1.1rem 1.2rem 1.4rem;
  text-align: left;
  border-top: 1px solid var(--border);
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.kol-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  color: var(--white);
  letter-spacing: 2px;
}
.kol-status { font-size: 0.68rem; letter-spacing: 3px; }
.kol-status.active { color: var(--green); }
.kol-status.classified { color: var(--yellow); }
.kol-role {
  font-size: 0.68rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 2px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 0.6rem;
  margin-bottom: 0.3rem;
}
.kol-note {
  font-size: 0.8rem;
  color: var(--text);
  line-height: 1.7;
  font-style: italic;
}

/* ── WHY PUMPING ── */
.why {
  background: var(--dark2);
  border-top: 4px solid var(--green);
  padding: 7rem 2rem;
  position: relative;
  overflow: hidden;
}
.why-inner { max-width: 800px; margin: 0 auto; text-align: center; position: relative; z-index: 1; }
.big-drop {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 10vw, 7rem);
  color: var(--green);
  text-shadow: 0 0 40px var(--green-glow);
  letter-spacing: 3px;
  margin-bottom: 1rem;
}
.why-answer { margin-bottom: 3rem; }
.why-answer p { font-size: 1.05rem; color: var(--muted); }

/* Fingerprint icons with images */
.fingerprint-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 0 auto 3rem;
  max-width: 700px;
}
.fp-item {
  background: var(--panel);
  border: 1px solid var(--border);
  padding: 1.4rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.82rem;
  transition: border-color 0.2s, background 0.2s;
  cursor: default;
}
.fp-item:hover { border-color: var(--border-bright); background: rgba(57,255,20,0.04); }
.fp-icon {
  width: 40px;
  height: 40px;
  object-fit: contain;
  display: block;
  filter: brightness(0.9) saturate(0.8);
  transition: filter 0.2s;
}
.fp-item:hover .fp-icon { filter: brightness(1.1) saturate(1.2); }
.fp-item strong { color: var(--white); text-align: center; font-size: 0.78rem; letter-spacing: 0.5px; }

.why-copy { text-align: left; margin-bottom: 3rem; }
.why-copy p { margin-bottom: 1.2rem; font-size: 1rem; }
.why-cta-block {
  text-align: center;
  padding: 2.5rem;
  border: 1px solid var(--border);
  background: rgba(57,255,20,0.03);
}
.why-cta-block p { margin-bottom: 0.8rem; font-size: 1.05rem; }

/* ── OPS REPORT ── */
.ops-report {
  background: #000;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 6rem 2rem;
}
.ops-inner { max-width: 800px; margin: 0 auto; }
.ops-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
}
.ops-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.5rem;
  color: var(--green);
  letter-spacing: 4px;
  text-align: center;
  flex: 1;
}
.ops-stamp {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1rem;
  letter-spacing: 3px;
  color: var(--green);
  border: 2px solid var(--green);
  padding: 0.3rem 0.8rem;
  opacity: 0.6;
  transform: rotate(-2deg);
  display: inline-block;
}
.ops-stamp-red { color: var(--red); border-color: var(--red); transform: rotate(2deg); }
.ops-terminal {
  background: var(--dark);
  border: 1px solid var(--green);
  box-shadow: 0 0 30px rgba(57,255,20,0.08), inset 0 0 30px rgba(0,0,0,0.5);
  padding: 2.5rem;
  font-family: 'Space Mono', monospace;
}
.terminal-line { padding: 0.4rem 0; display: flex; gap: 1rem; flex-wrap: wrap; }
.terminal-line.obj { padding: 0.25rem 0; font-size: 0.9rem; }
.terminal-header { color: var(--muted); font-size: 0.8rem; letter-spacing: 2px; text-transform: uppercase; margin-top: 0.5rem; }
.terminal-divider { color: var(--border); font-size: 0.8rem; padding: 0.8rem 0; }
.terminal-note { color: var(--text); font-size: 0.92rem; line-height: 1.8; padding-top: 0.5rem; font-style: italic; }
.key { color: var(--muted); font-size: 0.82rem; letter-spacing: 1px; min-width: 280px; }
.val { color: var(--white); font-weight: 700; }
.active-val { color: var(--green); }
.warning-val { color: var(--yellow); }
.bullet-t { color: var(--green); margin-right: 0.5rem; }

/* ── HOLDERS ── */
.holders {
  background: var(--dark3);
  padding: 7rem 2rem;
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.holders-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto 3rem;
  text-align: left;
}
.contrast-box {
  background: var(--panel);
  border: 1px solid var(--border);
  padding: 2rem;
  height: 100%;
}
.contrast-box p { margin-bottom: 1rem; }
.bright-box { border-color: var(--green); box-shadow: 0 0 20px rgba(57,255,20,0.07); }

/* Infra items with icons */
.infra-items { display: flex; flex-wrap: wrap; gap: 0.8rem; margin: 1.2rem 0; }
.infra-item-img {
  background: rgba(57,255,20,0.08);
  border: 1px solid var(--border);
  padding: 0.5rem 0.9rem;
  font-size: 0.82rem;
  color: var(--green);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.infra-icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
  filter: brightness(0.9) saturate(0.7);
}

.holders-closer { margin-top: 1rem; }
.holders-closer p { margin-bottom: 0.8rem; font-size: 1.1rem; }
.holders-closer .green { display: block; margin: 0.5rem 0 2rem; }

/* ── SERVICES ── */
.services {
  background: var(--dark);
  padding: 7rem 2rem;
  text-align: center;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  max-width: 1000px;
  margin: 0 auto 3rem;
  background: var(--border);
  border: 1px solid var(--border);
}
.service-item {
  background: var(--panel);
  padding: 1.5rem 1.2rem;
  font-size: 0.88rem;
  text-align: left;
  transition: background 0.2s, color 0.2s;
  cursor: default;
  display: flex;
  align-items: center;
  gap: 0.85rem;
}
.service-item:hover { background: rgba(57,255,20,0.06); color: var(--green); }
.service-icon {
  width: 32px;
  height: 32px;
  object-fit: contain;
  flex-shrink: 0;
  filter: brightness(0.85) saturate(0.7);
  transition: filter 0.2s;
}
.service-item:hover .service-icon { filter: brightness(1.1) saturate(1.3); }
.services-tagline { font-size: 1.2rem; line-height: 2; }

/* ── FAQ ── */
.faq {
  background: var(--dark2);
  padding: 7rem 2rem;
  border-top: 1px solid var(--border);
}
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); padding: 2rem 0; }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-q {
  font-family: 'Space Mono', monospace;
  font-size: 0.92rem;
  color: var(--green);
  margin-bottom: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}
.faq-a { color: var(--text); font-size: 0.92rem; line-height: 1.9; }

/* ── BUY ── */
.buy {
  background: #000;
  border-top: 4px solid var(--green);
  padding: 8rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.buy::before {
  content: '$';
  position: absolute;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 40vw;
  color: rgba(57,255,20,0.03);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.buy-inner { position: relative; z-index: 2; }
.buy-top-label { font-size: 0.7rem; letter-spacing: 5px; color: var(--green-dim); margin-bottom: 1rem; }
.buy-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(4rem, 14vw, 10rem);
  line-height: 0.9;
  color: var(--green);
  text-shadow: 0 0 60px var(--green-glow);
  letter-spacing: 4px;
  margin-bottom: 2rem;
}
.buy-sub { font-size: 1.15rem; margin-bottom: 1rem; max-width: 600px; margin-left: auto; margin-right: auto; }
.buy-disclaimer { color: var(--muted); font-size: 0.9rem; margin-bottom: 2.5rem; }
.buy-btns { display: flex; gap: 1.5rem; justify-content: center; flex-wrap: wrap; margin-bottom: 3rem; }
.contract-box {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  border: 1px solid var(--border);
  padding: 0.8rem 1.5rem;
  font-size: 0.82rem;
}
.contract-label { color: var(--muted); letter-spacing: 2px; }
.contract-addr { color: var(--green); font-family: 'Space Mono', monospace; letter-spacing: 1px; }

/* ── FOOTER ── */
.footer {
  background: var(--dark);
  border-top: 1px solid var(--border);
  padding: 4rem 2rem;
}
.footer-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  text-align: center;
}
.footer-logo { width: 50px; height: 50px; border-radius: 50%; opacity: 0.6; object-fit: cover; }
.footer-disclaimer { color: var(--muted); font-size: 0.82rem; line-height: 2; max-width: 700px; }
.footer-disclaimer strong { color: var(--text); }
.footer-satire { color: var(--green); font-weight: 700; margin-top: 0.8rem; }
.footer-legal { color: #2d4228; font-size: 0.7rem; letter-spacing: 1px; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .kol-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: block; }

  .about-grid { grid-template-columns: 1fr; gap: 2rem; }
  .kol-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .holders-split { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .fingerprint-grid { grid-template-columns: repeat(2, 1fr); }
  .ops-header { flex-direction: column; text-align: center; }
  .key { min-width: unset; }
  .terminal-line { flex-direction: column; gap: 0.2rem; }
  .buy-btns { flex-direction: column; align-items: center; }
  .hero-btns { flex-direction: column; align-items: center; }
  .hero-inner { padding: 3rem 1rem; }
  .kol-name { font-size: 1.2rem; }
  .kol-note { font-size: 0.75rem; }
  .kol-info { padding: 0.8rem 0.9rem 1rem; }

  .about { padding: 4rem 1.2rem; }
  .payroll { padding: 4rem 1.2rem; }
  .why { padding: 4rem 1.2rem; }
  .holders { padding: 4rem 1.2rem; }
  .services { padding: 4rem 1.2rem; }
  .faq { padding: 4rem 1.2rem; }
  .buy { padding: 5rem 1.2rem; }

  .section-title { font-size: clamp(2.5rem, 10vw, 4rem); }
  .doc-watermark { display: none; }
}

@media (max-width: 480px) {
  .kol-grid { grid-template-columns: 1fr; max-width: 360px; margin-left: auto; margin-right: auto; }
  .services-grid { grid-template-columns: 1fr; }
  .fingerprint-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-title { font-size: clamp(3rem, 14vw, 5rem); }
  .buy-title { font-size: clamp(3.5rem, 16vw, 6rem); }
  .btn-xl { font-size: 1.4rem; padding: 1rem 2rem; }
}
