/* =============================================
   PAGES CSS - Hard Minimalism
   Inner pages: About, Pricing, API, FAQ, Legal, etc.
   ============================================= */

/* Page Hero */
.page-hero {
  padding: 140px 0 60px;
  background: #000;
  border-bottom: 1px solid #222;
  text-align: center;
}

.page-hero h1 {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 15px;
  color: #fff;
  font-family: "JetBrains Mono", "Fira Code", "Courier New", monospace;
}

.page-hero p {
  color: #888;
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
  font-family: "JetBrains Mono", "Fira Code", "Courier New", monospace;
}

.page-hero .badge {
  margin-bottom: 20px;
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  justify-content: center;
  font-size: 0.8rem;
}

.breadcrumb a {
  color: #888;
  text-decoration: none;
  transition: color 0.3s;
}

.breadcrumb a:hover {
  color: #00ff41;
}

.breadcrumb span {
  color: #555;
}

.breadcrumb .current {
  color: #fff;
}

/* Page Content */
.page-content {
  padding: 80px 0;
}

.page-content p {
  color: #888;
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 20px;
  font-family: "JetBrains Mono", "Fira Code", "Courier New", monospace;
}

.page-content h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #fff;
  font-family: "JetBrains Mono", "Fira Code", "Courier New", monospace;
}

.page-content h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #fff;
  font-family: "JetBrains Mono", "Fira Code", "Courier New", monospace;
}

.page-content h4 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #fff;
  font-family: "JetBrains Mono", "Fira Code", "Courier New", monospace;
}

/* Value Cards (About page) */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin: 40px 0;
}

.value-card {
  background: #0a0a0a;
  padding: 30px;
  border: 1px solid #222;
  border-radius: 0;
  transition: border-color 0.3s;
}

.value-card:hover {
  border-color: #00ff41;
}

.value-card-icon {
  width: 55px;
  height: 55px;
  border: 1px solid #333;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 18px;
  color: #00ff41;
  border-radius: 0;
}

.value-card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.value-card p {
  color: #888;
  font-size: 0.85rem;
}

/* Team Grid */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin: 40px 0;
}

.team-card {
  background: #0a0a0a;
  padding: 30px;
  border: 1px solid #222;
  border-radius: 0;
  text-align: center;
  transition: border-color 0.3s;
}

.team-card:hover {
  border-color: #00ff41;
}

.team-avatar {
  width: 80px;
  height: 80px;
  background: #111;
  border-radius: 50%;
  margin: 0 auto 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: #00ff41;
  border: 1px solid #222;
}

.team-card h4 {
  font-size: 1rem;
  margin-bottom: 5px;
}

.team-card .role {
  color: #00ff41;
  font-size: 0.8rem;
  margin-bottom: 10px;
  font-weight: 600;
}

.team-card p {
  color: #888;
  font-size: 0.8rem;
}

/* Stats Row (legacy) */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin: 40px 0;
}

.stat-item {
  text-align: center;
  padding: 30px;
  background: #0a0a0a;
  border: 1px solid #222;
  border-radius: 0;
}

.stat-item .stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: #00ff41;
  display: block;
  margin-bottom: 5px;
}

.stat-item .stat-label {
  font-size: 0.85rem;
  color: #888;
}

/* =============================================
   STATS GRID - Matrix Terminal Panels
   ============================================= */

.about-stats {
  padding: 80px 0;
  background: #000;
  border-top: 1px solid rgba(0, 255, 65, 0.08);
  border-bottom: 1px solid rgba(0, 255, 65, 0.08);
  position: relative;
  overflow: hidden;
}

.about-stats::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 255, 65, 0.03) 0%, transparent 70%);
  pointer-events: none;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin: 40px 0 0;
  border: 1px solid rgba(0, 255, 65, 0.15);
  position: relative;
}

.stats-grid::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #00ff41, transparent);
  opacity: 0.4;
}

.stat-card {
  padding: 32px 28px;
  background: rgba(0, 255, 65, 0.02);
  border-right: 1px solid rgba(0, 255, 65, 0.1);
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

.stat-card:last-child {
  border-right: none;
}

/* Scan line animation */
.stat-card::before {
  content: "";
  position: absolute;
  top: -100%;
  left: 0;
  right: 0;
  height: 100%;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(0, 255, 65, 0.03) 50%,
    transparent 100%
  );
  animation: statScanDown 4s ease-in-out infinite;
  pointer-events: none;
}

.stat-card:nth-child(2)::before { animation-delay: 1s; }
.stat-card:nth-child(3)::before { animation-delay: 2s; }
.stat-card:nth-child(4)::before { animation-delay: 3s; }

@keyframes statScanDown {
  0% { top: -100%; }
  100% { top: 200%; }
}

/* Hover glow accent */
.stat-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: #00ff41;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
  box-shadow: 0 0 12px rgba(0, 255, 65, 0.4);
}

.stat-card:hover::after {
  transform: scaleX(1);
}

.stat-card:hover {
  background: rgba(0, 255, 65, 0.05);
}

/* Card Header */
.stat-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.stat-card-icon {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(0, 255, 65, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: #00ff41;
  font-weight: 700;
  font-family: "JetBrains Mono", monospace;
  transition: all 0.3s ease;
}

.stat-card:hover .stat-card-icon {
  border-color: #00ff41;
  box-shadow: 0 0 10px rgba(0, 255, 65, 0.2);
}

.stat-card-tag {
  font-size: 0.65rem;
  color: rgba(0, 255, 65, 0.4);
  font-family: "JetBrains Mono", monospace;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
}

/* Number */
.stat-card .stat-number {
  font-size: 3rem;
  font-weight: 800;
  color: #00ff41;
  line-height: 1;
  margin-bottom: 8px;
  font-family: "JetBrains Mono", monospace;
  text-shadow: 0 0 20px rgba(0, 255, 65, 0.3), 0 0 40px rgba(0, 255, 65, 0.1);
  transition: text-shadow 0.3s ease;
}

.stat-card:hover .stat-number {
  text-shadow: 0 0 25px rgba(0, 255, 65, 0.5), 0 0 50px rgba(0, 255, 65, 0.2);
}

.stat-unit {
  font-size: 1.4rem;
  font-weight: 600;
  opacity: 0.6;
  margin-left: 2px;
}

/* Label */
.stat-card .stat-label {
  font-size: 0.85rem;
  color: #fff;
  font-weight: 600;
  font-family: "JetBrains Mono", monospace;
  margin-bottom: 6px;
  letter-spacing: 0.5px;
}

/* Description */
.stat-desc {
  font-size: 0.75rem;
  color: #555;
  font-family: "JetBrains Mono", monospace;
  line-height: 1.5;
  margin-bottom: 20px;
}

/* Progress Bar */
.stat-bar-track {
  width: 100%;
  height: 3px;
  background: rgba(0, 255, 65, 0.08);
  position: relative;
  overflow: hidden;
}

.stat-bar-fill {
  height: 100%;
  width: var(--fill-width, 0%);
  background: linear-gradient(90deg, #00ff41, rgba(0, 255, 65, 0.4));
  box-shadow: 0 0 8px rgba(0, 255, 65, 0.3);
  animation: statBarGrow 2s ease-out forwards;
  transform-origin: left;
}

@keyframes statBarGrow {
  0% { transform: scaleX(0); }
  100% { transform: scaleX(1); }
}

/* Staggered bar animation */
.stat-card:nth-child(1) .stat-bar-fill { animation-delay: 0.2s; transform: scaleX(0); }
.stat-card:nth-child(2) .stat-bar-fill { animation-delay: 0.4s; transform: scaleX(0); }
.stat-card:nth-child(3) .stat-bar-fill { animation-delay: 0.6s; transform: scaleX(0); }
.stat-card:nth-child(4) .stat-bar-fill { animation-delay: 0.8s; transform: scaleX(0); }

/* Timeline */
.timeline {
  position: relative;
  margin: 40px 0;
  padding-left: 30px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  background: #222;
}

.timeline-item {
  position: relative;
  margin-bottom: 40px;
  padding-left: 30px;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -34px;
  top: 5px;
  width: 9px;
  height: 9px;
  background: #00ff41;
  border-radius: 0;
}

.timeline-item .timeline-date {
  font-size: 0.8rem;
  color: #00ff41;
  font-weight: 600;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.timeline-item h4 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.timeline-item p {
  color: #888;
  font-size: 0.85rem;
}

/* FAQ */
.faq-section {
  margin: 40px 0;
}

.faq-item {
  border: 1px solid #222;
  border-radius: 0;
  margin-bottom: 10px;
  background: #0a0a0a;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  cursor: pointer;
  transition: color 0.3s;
  font-family: "JetBrains Mono", "Fira Code", "Courier New", monospace;
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
  background: transparent;
  border: none;
  width: 100%;
  text-align: left;
}

.faq-question:hover {
  color: #00ff41;
}

.faq-question .faq-toggle {
  font-size: 1.2rem;
  color: #00ff41;
  transition: transform 0.3s;
  font-family: "JetBrains Mono", "Fira Code", "Courier New", monospace;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  display: none;
  padding: 0 20px 20px;
  color: #888;
  font-size: 0.9rem;
  line-height: 1.7;
  font-family: "JetBrains Mono", "Fira Code", "Courier New", monospace;
}

.faq-item.active .faq-answer {
  display: block;
}

/* SDK Cards (API/Docs page) */
.sdk-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin: 40px 0;
}

.sdk-card {
  background: #0a0a0a;
  padding: 30px;
  border: 1px solid #222;
  border-radius: 0;
  transition: border-color 0.3s;
}

.sdk-card:hover {
  border-color: #00ff41;
}

.sdk-card-icon {
  width: 50px;
  height: 50px;
  border: 1px solid #333;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 16px;
  color: #00ff41;
  border-radius: 0;
}

.sdk-card h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.sdk-card p {
  color: #888;
  font-size: 0.85rem;
  margin-bottom: 15px;
}

.sdk-card .sdk-link {
  color: #00ff41;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: opacity 0.3s;
}

.sdk-card .sdk-link:hover {
  opacity: 0.8;
}

/* Highlight Box */
.highlight-box {
  background: #0a0a0a;
  border: 1px solid #222;
  border-radius: 0;
  padding: 30px;
  margin: 30px 0;
}

.highlight-box.accent {
  border-color: #00ff41;
}

.highlight-box h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: #fff;
}

.highlight-box p {
  color: #888;
  font-size: 0.9rem;
}

.highlight-box ul {
  list-style: none;
  padding: 0;
}

.highlight-box ul li {
  padding: 8px 0;
  color: #888;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.highlight-box ul li::before {
  content: "[+]";
  color: #00ff41;
  font-weight: 700;
  font-size: 0.8rem;
}

/* Code Block */
.code-block {
  background: #0a0a0a;
  border: 1px solid #222;
  border-radius: 0;
  margin: 20px 0;
  overflow: hidden;
}

.code-block-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  background: #111;
  border-bottom: 1px solid #222;
}

.code-block-header span {
  font-size: 0.8rem;
  color: #888;
  font-family: "JetBrains Mono", "Fira Code", "Courier New", monospace;
}

.code-block-header .copy-btn {
  background: transparent;
  border: 1px solid #333;
  border-radius: 0;
  color: #888;
  font-size: 0.75rem;
  cursor: pointer;
  padding: 4px 10px;
  transition: all 0.3s;
  font-family: "JetBrains Mono", "Fira Code", "Courier New", monospace;
}

.code-block-header .copy-btn:hover {
  border-color: #00ff41;
  color: #00ff41;
}

.code-block pre {
  padding: 20px;
  overflow-x: auto;
  margin: 0;
}

.code-block code {
  font-family: "JetBrains Mono", "Fira Code", "Courier New", monospace;
  font-size: 0.85rem;
  color: #fff;
  line-height: 1.6;
}

/* Inline code */
.page-content code {
  background: #0a0a0a;
  border: 1px solid #222;
  padding: 2px 6px;
  font-size: 0.85rem;
  font-family: "JetBrains Mono", "Fira Code", "Courier New", monospace;
  color: #00ff41;
}

/* Comparison Table */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin: 30px 0;
}

.comparison-table th,
.comparison-table td {
  padding: 16px 20px;
  text-align: left;
  border: 1px solid #222;
  font-size: 0.9rem;
  font-family: "JetBrains Mono", "Fira Code", "Courier New", monospace;
}

.comparison-table th {
  background: #111;
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.8rem;
}

.comparison-table td {
  color: #888;
  background: #000;
}

.comparison-table tr:hover td {
  background: #0a0a0a;
}

.comparison-table .highlight,
.comparison-table td.highlight {
  background: rgba(0, 255, 65, 0.1);
  color: #00ff41;
}

.comparison-table .check {
  color: #00ff41;
  font-weight: 700;
}

.comparison-table .cross {
  color: #555;
}

/* API Endpoint List */
.endpoint-list {
  margin: 30px 0;
}

.endpoint-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  border: 1px solid #222;
  border-radius: 0;
  margin-bottom: 10px;
  background: #0a0a0a;
  transition: border-color 0.3s;
}

.endpoint-item:hover {
  border-color: #00ff41;
}

.endpoint-method {
  padding: 4px 12px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 0;
  font-family: "JetBrains Mono", "Fira Code", "Courier New", monospace;
  flex-shrink: 0;
}

.endpoint-method.get {
  background: #00ff41;
  color: #000;
}

.endpoint-method.post {
  background: #0088ff;
  color: #fff;
}

.endpoint-method.put {
  background: #ff9900;
  color: #000;
}

.endpoint-method.delete {
  background: #ff4444;
  color: #fff;
}

.endpoint-info h4 {
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.endpoint-info .endpoint-path {
  font-size: 0.85rem;
  color: #00ff41;
  margin-bottom: 6px;
  font-family: "JetBrains Mono", "Fira Code", "Courier New", monospace;
}

.endpoint-info p {
  font-size: 0.82rem;
  color: #888;
  margin-bottom: 0;
}

/* Tabs */
.tabs {
  display: flex;
  gap: 0;
  border-bottom: 1px solid #222;
  margin-bottom: 30px;
}

.tab {
  padding: 14px 24px;
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  color: #888;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  font-family: "JetBrains Mono", "Fira Code", "Courier New", monospace;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.tab:hover {
  color: #fff;
}

.tab.active {
  color: #00ff41;
  border-bottom-color: #00ff41;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

/* Legal Document Pages */
.legal-document {
  max-width: 800px;
  margin: 0 auto;
}

.legal-document h2 {
  font-size: 1.8rem;
  margin-top: 40px;
  margin-bottom: 20px;
  padding-top: 30px;
  border-top: 1px solid #222;
}

.legal-document h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.legal-document h3 {
  font-size: 1.3rem;
  margin-top: 25px;
}

.legal-document p {
  color: #888;
  font-size: 0.9rem;
  line-height: 1.8;
}

.legal-document ul,
.legal-document ol {
  margin: 15px 0;
  padding-left: 20px;
}

.legal-document ul {
  list-style: none;
  padding-left: 0;
}

.legal-document ul li {
  padding: 6px 0;
  color: #888;
  font-size: 0.9rem;
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.legal-document ul li::before {
  content: ">";
  color: #00ff41;
  font-weight: 700;
  font-size: 0.8rem;
  flex-shrink: 0;
}

.legal-document ol li {
  padding: 6px 0;
  color: #888;
  font-size: 0.9rem;
}

.legal-document a {
  color: #00ff41;
  text-decoration: none;
  transition: opacity 0.3s;
}

.legal-document a:hover {
  opacity: 0.8;
}

.legal-document .last-updated {
  font-size: 0.85rem;
  color: #555;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid #222;
}

/* Contact Section */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin: 40px 0;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 0.85rem;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.form-group input,
.form-group textarea,
.form-group select {
  padding: 14px 18px;
  background: #0a0a0a;
  border: 1px solid #222;
  border-radius: 0;
  color: #fff;
  font-size: 0.9rem;
  font-family: "JetBrains Mono", "Fira Code", "Courier New", monospace;
  outline: none;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: #00ff41;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #555;
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

.form-group select {
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
}

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-info-card {
  background: #0a0a0a;
  border: 1px solid #222;
  border-radius: 0;
  padding: 25px;
  transition: border-color 0.3s;
}

.contact-info-card:hover {
  border-color: #00ff41;
}

.contact-info-card .contact-icon {
  width: 45px;
  height: 45px;
  border: 1px solid #333;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 15px;
  color: #00ff41;
  border-radius: 0;
}

.contact-info-card h4 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.contact-info-card p {
  color: #888;
  font-size: 0.85rem;
  margin-bottom: 0;
}

.contact-info-card a {
  color: #00ff41;
  text-decoration: none;
  transition: opacity 0.3s;
}

.contact-info-card a:hover {
  opacity: 0.8;
}

/* Use Cases / Solutions Grid */
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin: 40px 0;
}

.solution-card {
  background: #0a0a0a;
  border: 1px solid #222;
  border-radius: 0;
  padding: 30px;
  transition: border-color 0.3s;
}

.solution-card:hover {
  border-color: #00ff41;
}

.solution-card-icon {
  width: 55px;
  height: 55px;
  border: 1px solid #333;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 18px;
  color: #00ff41;
  border-radius: 0;
}

.solution-card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.solution-card p {
  color: #888;
  font-size: 0.85rem;
}

/* Integration Logos Grid */
.integrations-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 40px 0;
}

.integration-item {
  background: #0a0a0a;
  border: 1px solid #222;
  border-radius: 0;
  padding: 25px;
  text-align: center;
  transition: border-color 0.3s;
}

.integration-item:hover {
  border-color: #00ff41;
}

.integration-item .integration-icon {
  font-size: 2rem;
  color: #00ff41;
  margin-bottom: 10px;
  display: block;
}

.integration-item span {
  font-size: 0.85rem;
  color: #888;
}

/* Changelog */
.changelog-list {
  margin: 30px 0;
}

.changelog-entry {
  padding: 25px;
  border: 1px solid #222;
  border-radius: 0;
  margin-bottom: 15px;
  background: #0a0a0a;
}

.changelog-entry-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 12px;
}

.changelog-version {
  padding: 4px 12px;
  background: #00ff41;
  color: #000;
  font-size: 0.8rem;
  font-weight: 700;
  border-radius: 0;
}

.changelog-date {
  font-size: 0.8rem;
  color: #555;
}

.changelog-entry h4 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.changelog-entry p {
  color: #888;
  font-size: 0.85rem;
  margin-bottom: 0;
}

.changelog-entry ul {
  list-style: none;
  padding: 0;
  margin: 10px 0 0;
}

.changelog-entry ul li {
  padding: 4px 0;
  color: #888;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.changelog-entry ul li::before {
  content: ">";
  color: #00ff41;
  font-weight: 700;
}

/* Status Page */
.status-grid {
  margin: 30px 0;
}

.status-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border: 1px solid #222;
  border-radius: 0;
  margin-bottom: 8px;
  background: #0a0a0a;
}

.status-item .status-name {
  font-size: 0.9rem;
  color: #fff;
  font-weight: 600;
}

.status-item .status-badge {
  padding: 4px 12px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 0;
}

.status-badge.operational {
  background: rgba(0, 255, 65, 0.15);
  color: #00ff41;
  border: 1px solid #00ff41;
}

.status-badge.degraded {
  background: rgba(255, 153, 0, 0.15);
  color: #ff9900;
  border: 1px solid #ff9900;
}

.status-badge.down {
  background: rgba(255, 68, 68, 0.15);
  color: #ff4444;
  border: 1px solid #ff4444;
}

/* Notice / Alert Banner */
.notice-banner {
  padding: 16px 24px;
  border: 1px solid #222;
  border-radius: 0;
  margin: 20px 0;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
}

.notice-banner.info {
  border-color: #0088ff;
  color: #0088ff;
  background: rgba(0, 136, 255, 0.05);
}

.notice-banner.warning {
  border-color: #ff9900;
  color: #ff9900;
  background: rgba(255, 153, 0, 0.05);
}

.notice-banner.success {
  border-color: #00ff41;
  color: #00ff41;
  background: rgba(0, 255, 65, 0.05);
}

.notice-banner.error {
  border-color: #ff4444;
  color: #ff4444;
  background: rgba(255, 68, 68, 0.05);
}

.notice-banner .notice-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
}

/* Two Column Layout */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.two-col.sidebar-left {
  grid-template-columns: 280px 1fr;
}

.two-col.sidebar-right {
  grid-template-columns: 1fr 280px;
}

/* Sidebar Navigation */
.sidebar-nav {
  position: sticky;
  top: 100px;
}

.sidebar-nav ul {
  list-style: none;
}

.sidebar-nav li {
  margin-bottom: 4px;
}

.sidebar-nav a {
  display: block;
  padding: 10px 16px;
  color: #888;
  text-decoration: none;
  font-size: 0.85rem;
  border-left: 2px solid transparent;
  transition: all 0.3s;
}

.sidebar-nav a:hover {
  color: #fff;
  border-left-color: #222;
}

.sidebar-nav a.active {
  color: #00ff41;
  border-left-color: #00ff41;
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  margin: 40px 0;
}

.testimonial-card {
  background: #0a0a0a;
  border: 1px solid #222;
  border-radius: 0;
  padding: 30px;
}

.testimonial-card .testimonial-text {
  color: #888;
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-card .testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-card .testimonial-avatar {
  width: 45px;
  height: 45px;
  background: #111;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: #00ff41;
  border: 1px solid #222;
}

.testimonial-card .testimonial-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
}

.testimonial-card .testimonial-role {
  font-size: 0.8rem;
  color: #555;
}

/* Pagination */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 40px 0;
}

.pagination a,
.pagination span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid #222;
  border-radius: 0;
  color: #888;
  text-decoration: none;
  font-size: 0.85rem;
  transition: all 0.3s;
  font-family: "JetBrains Mono", "Fira Code", "Courier New", monospace;
}

.pagination a:hover {
  border-color: #00ff41;
  color: #00ff41;
}

.pagination .active {
  background: #00ff41;
  color: #000;
  border-color: #00ff41;
  font-weight: 700;
}

/* Search Box */
.search-box {
  display: flex;
  gap: 10px;
  margin: 30px 0;
}

.search-box input {
  flex: 1;
  padding: 14px 20px;
  background: #0a0a0a;
  border: 1px solid #222;
  border-radius: 0;
  color: #fff;
  font-size: 0.9rem;
  font-family: "JetBrains Mono", "Fira Code", "Courier New", monospace;
  outline: none;
  transition: border-color 0.3s;
}

.search-box input:focus {
  border-color: #00ff41;
}

.search-box input::placeholder {
  color: #555;
}

.search-box button {
  padding: 14px 24px;
  background: #00ff41;
  border: none;
  border-radius: 0;
  color: #000;
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  font-family: "JetBrains Mono", "Fira Code", "Courier New", monospace;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: background 0.3s;
}

.search-box button:hover {
  background: #00cc33;
}

/* Tag / Label */
.tag {
  display: inline-block;
  padding: 4px 10px;
  border: 1px solid #333;
  border-radius: 0;
  font-size: 0.75rem;
  color: #888;
  font-family: "JetBrains Mono", "Fira Code", "Courier New", monospace;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.tag.primary {
  border-color: #00ff41;
  color: #00ff41;
}

.tag.warning {
  border-color: #ff9900;
  color: #ff9900;
}

.tag.danger {
  border-color: #ff4444;
  color: #ff4444;
}

/* Empty State */
.empty-state {
  text-align: center;
  padding: 60px 20px;
}

.empty-state .empty-icon {
  font-size: 3rem;
  color: #333;
  margin-bottom: 20px;
  display: block;
}

.empty-state h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.empty-state p {
  color: #888;
  font-size: 0.9rem;
}

/* =============================================
   RESPONSIVE
   ============================================= */

/* Tablet */
@media (max-width: 968px) {
  .page-hero {
    padding: 120px 0 50px;
  }

  .page-hero h1 {
    font-size: 2.2rem;
  }

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .stats-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

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

  .stat-card:nth-child(2) {
    border-right: none;
  }

  .stat-card:nth-child(1),
  .stat-card:nth-child(2) {
    border-bottom: 1px solid rgba(0, 255, 65, 0.1);
  }

  .sdk-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .solutions-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .integrations-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
  }

  .two-col {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .two-col.sidebar-left,
  .two-col.sidebar-right {
    grid-template-columns: 1fr;
  }

  .sidebar-nav {
    position: static;
    border-bottom: 1px solid #222;
    padding-bottom: 20px;
    margin-bottom: 20px;
  }

  .sidebar-nav ul {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
  }

  .sidebar-nav a {
    border-left: none;
    border-bottom: 2px solid transparent;
    padding: 8px 14px;
  }

  .sidebar-nav a.active {
    border-left-color: transparent;
    border-bottom-color: #00ff41;
  }

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

  .comparison-table {
    display: block;
    overflow-x: auto;
  }

  .tabs {
    overflow-x: auto;
  }

  .tab {
    white-space: nowrap;
    padding: 12px 18px;
    font-size: 0.8rem;
  }
}

/* Mobile */
@media (max-width: 640px) {
  .page-hero {
    padding: 110px 0 40px;
  }

  .page-hero h1 {
    font-size: 1.8rem;
  }

  .page-hero p {
    font-size: 0.9rem;
  }

  .page-content {
    padding: 50px 0;
  }

  .page-content h2 {
    font-size: 1.6rem;
  }

  .page-content h3 {
    font-size: 1.2rem;
  }

  .values-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .team-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .stats-row {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .stat-item .stat-number {
    font-size: 2rem;
  }

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

  .stat-card {
    border-right: none !important;
    border-bottom: 1px solid rgba(0, 255, 65, 0.1);
  }

  .stat-card:last-child {
    border-bottom: none;
  }

  .stat-card .stat-number {
    font-size: 2.4rem;
  }

  .sdk-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .integrations-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .endpoint-item {
    flex-direction: column;
    gap: 12px;
  }

  .faq-question {
    font-size: 0.88rem;
    padding: 16px;
  }

  .faq-answer {
    padding: 0 16px 16px;
    font-size: 0.85rem;
  }

  .highlight-box {
    padding: 20px;
  }

  .code-block pre {
    padding: 15px;
  }

  .code-block code {
    font-size: 0.8rem;
  }

  .search-box {
    flex-direction: column;
  }

  .search-box button {
    width: 100%;
  }

  .pagination a,
  .pagination span {
    width: 36px;
    height: 36px;
    font-size: 0.8rem;
  }

  .notice-banner {
    flex-direction: column;
    text-align: center;
    gap: 8px;
    padding: 14px 18px;
    font-size: 0.85rem;
  }

  .legal-document h2 {
    font-size: 1.4rem;
  }

  .breadcrumb {
    font-size: 0.75rem;
    flex-wrap: wrap;
    justify-content: center;
  }

  .changelog-entry-header {
    flex-direction: column;
    gap: 8px;
  }

  .status-item {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .contact-info-card {
    padding: 20px;
  }

  .tabs {
    flex-wrap: nowrap;
  }

  .tab {
    padding: 10px 14px;
    font-size: 0.75rem;
  }
}

/* Small mobile */
@media (max-width: 380px) {
  .page-hero h1 {
    font-size: 1.5rem;
  }

  .page-content h2 {
    font-size: 1.4rem;
  }

  .value-card,
  .sdk-card,
  .solution-card {
    padding: 20px;
  }

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