/* ============================================================
   DATAKENX — Global Stylesheet
   Brand: #101010 | #0680d7 | #35fa00
   Fonts: Barlow Condensed, Barlow, Share Tech Mono
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;600;700;800&family=Barlow:wght@400;500;600&family=Share+Tech+Mono&display=swap');

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
img { max-width: 100%; display: block; }
a { text-decoration: none; }

/* ── Brand Tokens ── */
:root {
  --black:  #101010;
  --blue:   #0680d7;
  --green:  #35fa00;
  --white:  #f5f5f5;
  --gray:   #1a1a1a;
  --gray2:  #2a2a2a;
  --gray3:  #3a3a3a;
  --text-muted: #c0c0c0;
  --font-head: 'Barlow Condensed', sans-serif;
  --font-body: 'Barlow', sans-serif;
  --font-mono: 'Share Tech Mono', monospace;
}

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
}

/* ── Announcement Bar ── */
.ann-bar {
  background: var(--blue);
  text-align: center;
  padding: 10px 16px;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.04em;
}
.ann-bar a {
  color: var(--green);
  font-weight: 600;
  margin-left: 8px;
}
.ann-bar a:hover { text-decoration: underline; }

/* ── Navigation ── */
nav {
  background: var(--black);
  border-bottom: 1px solid var(--gray2);
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-logo {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--white);
  text-transform: uppercase;
}
.nav-logo span { color: var(--green); }
.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: #ddd;
  letter-spacing: 0.03em;
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--green); }
.nav-cta {
  background: var(--green);
  color: var(--black);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 9px 20px;
  border: none;
  cursor: pointer;
  border-radius: 2px;
  transition: opacity 0.2s;
}
.nav-cta:hover { opacity: 0.88; }

/* ── Scrolling Ticker ── */
.ticker-wrap {
  background: var(--green);
  border-top: 1px solid rgba(0,0,0,0.15);
  border-bottom: 1px solid rgba(0,0,0,0.15);
  padding: 13px 0;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
}
.ticker-label {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  display: flex;
  align-items: center;
  padding: 0 20px;
  background: var(--black);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--green);
  text-transform: uppercase;
  z-index: 2;
  border-right: 2px solid var(--green);
}
.ticker-track {
  display: inline-flex;
  animation: ticker-scroll 22s linear infinite;
  padding-left: 180px;
}
.ticker-track:hover { animation-play-state: paused; }
.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--black);
  padding: 0 32px;
}
.ticker-dot {
  width: 5px; height: 5px;
  background: var(--black);
  border-radius: 50%;
  opacity: 0.4;
}
@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── Page Hero (inner pages) ── */
.page-hero {
  background: var(--black);
  border-bottom: 1px solid var(--gray2);
  padding: 64px 32px 52px;
  text-align: center;
}
.page-hero .eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--blue);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.page-hero h1 {
  font-family: var(--font-head);
  font-size: 52px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  line-height: 1.05;
  margin-bottom: 16px;
}
.page-hero h1 span { color: var(--green); }
.page-hero p {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ── Section Utilities ── */
.section {
  padding: 64px 32px;
  max-width: 1100px;
  margin: 0 auto;
}
.section-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--blue);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.section-title {
  font-family: var(--font-head);
  font-size: 38px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 10px;
  line-height: 1.1;
}
.section-title span { color: var(--green); }
.section-sub {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 560px;
  margin-bottom: 40px;
  line-height: 1.6;
}
.divider { border: none; border-top: 1px solid var(--gray2); margin: 0; }
.bg-gray {
  background: var(--gray);
  border-top: 1px solid var(--gray2);
  border-bottom: 1px solid var(--gray2);
}

/* ── Cards ── */
.card {
  background: var(--gray);
  border: 1px solid var(--gray2);
  border-radius: 4px;
  padding: 24px;
  transition: border-color 0.2s;
}
.card:hover { border-color: var(--blue); }
.card h3 {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 10px;
  line-height: 1.2;
}
.card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 16px;
}

/* ── Badge ── */
.badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  padding: 3px 10px;
  border-radius: 2px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.badge-free { background: rgba(53,250,0,0.12); color: var(--green); }
.badge-paid { background: rgba(6,128,215,0.15); color: var(--blue); }
.badge-new  { background: rgba(53,250,0,0.2);  color: var(--green); }

/* ── Link Arrow ── */
.link-arrow {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--green);
  letter-spacing: 0.06em;
}
.link-arrow::after { content: ' →'; }
.link-arrow:hover { text-decoration: underline; }

/* ── Buttons ── */
.btn-primary {
  display: inline-block;
  background: var(--green);
  color: var(--black);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 13px 28px;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: opacity 0.2s;
}
.btn-primary:hover { opacity: 0.88; }
.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--green);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 11px 28px;
  border: 1px solid var(--green);
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.btn-outline:hover { background: var(--green); color: var(--black); }
.btn-blue {
  display: inline-block;
  background: var(--blue);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 11px 24px;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: opacity 0.2s;
}
.btn-blue:hover { opacity: 0.88; }

/* ── Forms ── */
.inline-form {
  display: flex;
  gap: 0;
  max-width: 500px;
}
.inline-form input {
  flex: 1;
  background: var(--gray);
  border: 1px solid var(--gray2);
  border-right: none;
  color: var(--white);
  padding: 13px 18px;
  font-size: 15px;
  font-family: var(--font-body);
  outline: none;
  border-radius: 2px 0 0 2px;
}
.inline-form input::placeholder { color: #666; }
.inline-form button {
  background: var(--green);
  color: var(--black);
  border: none;
  padding: 13px 22px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 0 2px 2px 0;
  white-space: nowrap;
}
.form-fine {
  font-size: 12px;
  color: #666;
  font-family: var(--font-mono);
  margin-top: 10px;
}

/* ── Footer CTA Strip ── */
.footer-cta {
  background: var(--blue);
  padding: 56px 32px;
  text-align: center;
}
.footer-cta h2 {
  font-family: var(--font-head);
  font-size: 40px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 10px;
}
.footer-cta p {
  font-size: 16px;
  color: rgba(255,255,255,0.9);
  margin-bottom: 28px;
}
.footer-cta .inline-form {
  margin: 0 auto 12px;
}
.footer-cta .inline-form input {
  background: rgba(0,0,0,0.3);
  border: 1px solid rgba(255,255,255,0.2);
  border-right: none;
  color: white;
}
.footer-cta .inline-form input::placeholder { color: rgba(255,255,255,0.5); }
.footer-cta .form-fine { color: rgba(255,255,255,0.5); }

/* ── Footer ── */
footer {
  background: #080808;
  border-top: 1px solid var(--gray2);
  padding: 40px 32px 24px;
}
.footer-inner { max-width: 1100px; margin: 0 auto; }
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 32px;
}
.footer-brand h3 {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}
.footer-brand h3 span { color: var(--green); }
.footer-brand p { font-size: 13px; color: #aaa; line-height: 1.6; max-width: 260px; }
.footer-col h4 {
  font-family: var(--font-mono);
  font-size: 11px;
  color: #aaa;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.footer-col a {
  display: block;
  font-size: 13px;
  color: #bbb;
  margin-bottom: 8px;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid var(--gray2);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-copy { font-size: 12px; color: #888; font-family: var(--font-mono); }
.footer-social { display: flex; gap: 10px; }
.social-link {
  width: 34px; height: 34px;
  background: var(--blue);
  border: 1px solid var(--blue);
  border-radius: 2px;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px;
  color: #fff;
  font-family: var(--font-mono);
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.social-link:hover {
  background: var(--green);
  border-color: var(--green);
  color: var(--black);
}

/* ── Grids ── */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }

/* ── Legal / Prose Pages ── */
.prose {
  max-width: 780px;
  margin: 0 auto;
  padding: 64px 32px;
}
.prose h2 {
  font-family: var(--font-head);
  font-size: 26px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--white);
  margin: 40px 0 12px;
  padding-top: 16px;
  border-top: 1px solid var(--gray2);
}
.prose h2:first-of-type { margin-top: 0; border-top: none; }
.prose p { font-size: 15px; color: var(--text-muted); line-height: 1.75; margin-bottom: 16px; }
.prose ul { margin: 0 0 16px 20px; }
.prose li { font-size: 15px; color: var(--text-muted); line-height: 1.75; margin-bottom: 6px; }
.prose a { color: var(--blue); }
.prose a:hover { color: var(--green); }
.prose .last-updated {
  font-family: var(--font-mono);
  font-size: 11px;
  color: #555;
  letter-spacing: 0.1em;
  margin-bottom: 40px;
}

/* ── Contact Form ── */
.contact-form { max-width: 620px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 8px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: var(--gray);
  border: 1px solid var(--gray2);
  color: var(--white);
  padding: 12px 16px;
  font-size: 15px;
  font-family: var(--font-body);
  border-radius: 2px;
  outline: none;
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--blue); }
.form-group textarea { resize: vertical; min-height: 140px; }

/* ── Testimonial Cards ── */
.testi-card {
  background: var(--gray);
  border: 1px solid var(--gray2);
  border-radius: 4px;
  padding: 28px;
}
.testi-quote { font-size: 32px; color: var(--green); font-family: var(--font-head); line-height: 1; margin-bottom: 12px; }
.testi-text { font-size: 14px; color: #d0d0d0; line-height: 1.6; margin-bottom: 20px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--gray2));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-size: 14px; font-weight: 700; color: white;
  flex-shrink: 0;
}
.testi-name { font-family: var(--font-head); font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; }
.testi-role { font-size: 12px; color: #888; font-family: var(--font-mono); }

/* ── Step List ── */
.step-list { list-style: none; margin-top: 24px; }
.step-item { display: flex; gap: 20px; padding: 20px 0; border-bottom: 1px solid var(--gray2); }
.step-item:last-child { border-bottom: none; }
.step-num { font-family: var(--font-mono); font-size: 22px; color: var(--green); min-width: 36px; font-weight: 600; }
.step-content h4 { font-family: var(--font-head); font-size: 17px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 6px; }
.step-content p { font-size: 14px; color: var(--text-muted); line-height: 1.5; }

/* ── Mini Left-Border Card ── */
.mini-card {
  background: var(--gray);
  border: 1px solid var(--gray2);
  border-left: 3px solid var(--green);
  border-radius: 0 4px 4px 0;
  padding: 20px 20px 20px 22px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.mini-icon {
  width: 42px; height: 42px;
  background: rgba(53,250,0,0.08);
  border-radius: 2px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 20px;
}
.mini-card h4 { font-family: var(--font-head); font-size: 15px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 4px; }
.mini-card p { font-size: 13px; color: var(--text-muted); line-height: 1.4; }

/* ── Comm Button ── */
.comm-btn {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
  border: 1px solid rgba(53,250,0,0.3);
  padding: 7px 16px;
  border-radius: 2px;
  transition: background 0.2s, color 0.2s;
}
.comm-btn:hover { background: var(--green); color: var(--black); }

/* ── Stat Box ── */
.stat-box {
  background: var(--black);
  border: 1px solid var(--gray2);
  border-radius: 4px;
  padding: 32px;
  text-align: center;
}
.stat-big { font-family: var(--font-head); font-size: 56px; font-weight: 800; color: var(--green); line-height: 1; }
.stat-label { font-family: var(--font-mono); font-size: 11px; color: #777; letter-spacing: 0.12em; text-transform: uppercase; margin-top: 6px; }

/* ── Responsive ── */
@media (max-width: 900px) {
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
}
@media (max-width: 600px) {
  .grid-3, .grid-2, .grid-4 { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .page-hero h1 { font-size: 36px; }
  .section-title { font-size: 28px; }
  .inline-form { flex-direction: column; }
  .inline-form input { border-right: 1px solid var(--gray2); border-radius: 2px; border-bottom: none; }
  .inline-form button { border-radius: 2px; }
}
