/* ═══════════════════════════════════════════
   TATEWARE Design System v2.0
   Color scheme: Pink accent / Dark BG
   ═══════════════════════════════════════════ */

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

:root {
  --bg: #08080c;
  --bg-card: #0e0e14;
  --bg-elevated: #14141c;
  --bg-hover: #1a1a24;
  --border: rgba(255,255,255,0.06);
  --border-hover: rgba(255,255,255,0.12);
  --text: #eeeef2;
  --text-secondary: #8a8a9a;
  --text-muted: #55555f;
  --accent: #FF4F8B;
  --accent-soft: rgba(255,79,139,0.12);
  --accent-glow: rgba(255,79,139,0.2);
  --green: #34d399;
  --green-soft: rgba(52,211,153,0.1);
  --amber: #fbbf24;
  --red: #ef4444;
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 20px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Exo 2', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Grain overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border-hover); border-radius: 3px; }

a { color: inherit; text-decoration: none; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 1.5rem; }
.mono { font-family: 'JetBrains Mono', monospace; }

/* ═══════ BUTTONS ═══════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  font-family: inherit;
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  letter-spacing: 0.01em;
  text-decoration: none;
}
.btn-accent {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 2px 20px var(--accent-glow), inset 0 1px 0 rgba(255,255,255,0.15);
}
.btn-accent:hover {
  background: #e8457d;
  transform: translateY(-1px);
  box-shadow: 0 4px 30px rgba(255,79,139,0.35), inset 0 1px 0 rgba(255,255,255,0.15);
}
.btn-outline {
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid var(--border-hover);
}
.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-soft);
}
.btn-lg { padding: 1rem 2.25rem; font-size: 1rem; }
.btn-sm { padding: 0.55rem 1.25rem; font-size: 0.8rem; }
.btn-block { width: 100%; }

/* ═══════ TAGS ═══════ */
.tag {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.3rem 0.7rem;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-radius: 5px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  color: var(--text-secondary);
}
.tag-green { background: var(--green-soft); border-color: rgba(52,211,153,0.2); color: var(--green); }
.tag-accent { background: var(--accent-soft); border-color: rgba(255,79,139,0.2); color: var(--accent); }

/* ═══════ STATUS DOT ═══════ */
.status-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 6px rgba(52,211,153,0.5);
  animation: pulse 2.5s ease infinite;
  display: inline-block;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 6px rgba(52,211,153,0.5); }
  50% { box-shadow: 0 0 12px rgba(52,211,153,0.3); }
}

/* ═══════ SECTIONS ═══════ */
.section { padding: 5rem 0; }
.section-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 0.75rem;
}
.section-title {
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.divider { height: 1px; background: var(--border); margin: 0; }

/* ═══════ TOP BAR ═══════ */
.top-bar {
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
  padding: 0.6rem 0;
  font-size: 0.78rem;
  color: var(--text-secondary);
  text-align: center;
}
.top-bar .inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
}

/* ═══════ HEADER ═══════ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(8,8,12,0.92);
  backdrop-filter: blur(16px) saturate(1.4);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}
.logo img { border-radius: 7px; }
.logo span {
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.nav-desktop {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-link {
  color: var(--text-secondary);
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-link:hover { color: var(--text); }
.nav-link.active { color: var(--accent); }
.menu-btn {
  background: none;
  border: 1px solid var(--border);
  padding: 0.45rem 0.65rem;
  color: var(--text);
  cursor: pointer;
  border-radius: 6px;
  font-size: 0.9rem;
}
.mobile-nav {
  display: none;
  border-top: 1px solid var(--border);
  padding: 1rem 1.5rem;
  background: var(--bg);
}
.mobile-nav a {
  display: block;
  padding: 0.65rem 0;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* ═══════ HERO ═══════ */
.hero {
  position: relative;
  padding: 5rem 0 0;
  overflow: hidden;
  min-height: 85vh;
  display: flex;
  align-items: center;
}
.hero-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.06;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(8,8,12,0.95) 0%, rgba(8,8,12,0.6) 50%, rgba(8,8,12,0.85) 100%);
}
.hero-glow {
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,79,139,0.1) 0%, transparent 70%);
  top: -150px; right: -100px;
  pointer-events: none;
}
.hero-glow-2 {
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(99,102,241,0.05) 0%, transparent 70%);
  bottom: -150px; left: -100px;
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  width: 100%;
}
.hero-text { max-width: 560px; }
.hero-text h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
}
.hero-text h1 .accent { color: var(--accent); }
.hero-character {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
.hero-character img {
  max-height: 520px;
  width: auto;
  max-width: 100%;
  filter: drop-shadow(0 0 60px rgba(255,79,139,0.2)) drop-shadow(0 20px 40px rgba(0,0,0,0.5));
  animation: float 6s ease-in-out infinite;
}
.hero-character::before {
  content: '';
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  height: 60px;
  background: radial-gradient(ellipse, rgba(255,79,139,0.15) 0%, transparent 70%);
  border-radius: 50%;
}
.hero-stats {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
  padding-top: 0.5rem;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* ═══════ TRUST BAR ═══════ */
.trust-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  padding: 2.5rem 0;
  flex-wrap: wrap;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 500;
}
.trust-item i { font-size: 1.1rem; color: var(--text-secondary); }

/* ═══════ PRODUCT IMAGE CARDS ═══════ */
.products-showcase {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.product-image-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
  border: 1px solid var(--border);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s, box-shadow 0.4s;
  background: var(--bg-card);
}
.product-image-card:hover {
  transform: translateY(-6px) scale(1.01);
  border-color: rgba(255,79,139,0.35);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 40px rgba(255,79,139,0.08);
}
.product-image-card .card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.product-image-card:hover .card-bg { transform: scale(1.05); }
.product-image-card .card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,8,12,0.95) 0%, rgba(8,8,12,0.3) 40%, transparent 100%);
}
.product-image-card .card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.75rem;
  z-index: 1;
}
.product-image-card .card-title {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}
.card-price-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.85rem;
  background: var(--accent);
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 700;
  color: #fff;
}
.card-price-tag .label {
  font-weight: 500;
  font-size: 0.7rem;
  opacity: 0.85;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.card-features {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 0.75rem;
}
.card-feature-pill {
  padding: 0.25rem 0.6rem;
  background: rgba(255,255,255,0.08);
  border-radius: 4px;
  font-size: 0.7rem;
  color: var(--text-secondary);
  backdrop-filter: blur(4px);
}

/* Icon-only card (no image) */
.product-icon-card .card-icon-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%);
  width: 100px;
  height: 100px;
  background: var(--accent-soft);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--accent);
  transition: transform 0.4s;
}
.product-icon-card:hover .card-icon-wrap { transform: translate(-50%, -60%) scale(1.08); }

/* Bottom row wider cards */
.products-showcase-bottom {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 1.25rem;
}
.products-showcase-bottom .product-image-card { aspect-ratio: 16/9; }

/* ═══════ PRICING CARDS ═══════ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.25rem;
}
.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  position: relative;
}
.pricing-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-2px);
}
.pricing-card-featured {
  border-color: rgba(255,79,139,0.25);
  background: linear-gradient(165deg, rgba(255,79,139,0.04) 0%, var(--bg-card) 50%);
}
.pricing-card-featured::before {
  content: '';
  position: absolute;
  top: 0;
  left: 2rem;
  right: 2rem;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  border-radius: 0 0 2px 2px;
}
.pricing-card-featured:hover {
  border-color: rgba(255,79,139,0.4);
  box-shadow: 0 8px 40px rgba(255,79,139,0.08);
}

.features-list { list-style: none; }
.features-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.35rem 0;
  font-size: 0.875rem;
  color: var(--text-secondary);
}
.features-list li .icon {
  width: 16px; height: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.6rem;
  color: var(--green);
  flex-shrink: 0;
}

/* Compact pricing row */
.pricing-compact {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.25rem;
  margin-top: 1.25rem;
}
.pricing-compact .pricing-card { padding: 1.5rem; }

/* ═══════ TESTIMONIALS ═══════ */
.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: border-color 0.3s, transform 0.3s;
}
.testimonial-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-2px);
}
.stars { color: var(--amber); font-size: 0.75rem; letter-spacing: 1px; }

/* ═══════ WHY CARDS ═══════ */
.why-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  transition: border-color 0.3s, transform 0.3s;
}
.why-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-3px);
}
.icon-wrap {
  width: 56px; height: 56px;
  background: var(--accent-soft);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 1.2rem;
  color: var(--accent);
  transition: background 0.3s;
}
.why-card:hover .icon-wrap { background: rgba(255,79,139,0.18); }

/* ═══════ FAQ ═══════ */
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:last-child { border-bottom: none; }
.faq-btn {
  width: 100%;
  padding: 1.25rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
}
.faq-btn i { color: var(--text-muted); transition: transform 0.3s; font-size: 0.75rem; }
.faq-body { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-body-inner {
  padding-bottom: 1.25rem;
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.75;
}

/* ═══════ MODAL ═══════ */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(8px);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.modal-backdrop.active { display: flex; }
.modal-content {
  background: var(--bg-card);
  border: 1px solid var(--border-hover);
  border-radius: var(--radius-lg);
  max-width: 480px;
  width: 100%;
  position: relative;
  overflow: hidden;
  animation: modalIn 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes modalIn {
  from { opacity: 0; transform: scale(0.95) translateY(10px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}
.modal-header {
  padding: 1.75rem 1.75rem 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.modal-close {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 0.8rem;
  transition: all 0.2s;
}
.modal-close:hover { border-color: var(--accent); color: var(--accent); }
.modal-body { padding: 1.25rem 1.75rem 1.75rem; }

/* ═══════ BLOG CARDS ═══════ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.25rem;
}
.blog-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: border-color 0.3s, transform 0.3s;
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-3px);
}
.blog-card .card-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  flex-wrap: wrap;
}
.blog-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}
.blog-card p {
  color: var(--text-secondary);
  font-size: 0.85rem;
  line-height: 1.6;
  flex: 1;
}
.blog-card .card-footer {
  margin-top: 1rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ═══════ ARTICLE ═══════ */
.article-header {
  padding: 5rem 0 2rem;
  max-width: 700px;
  margin: 0 auto;
}
.breadcrumb {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}
.breadcrumb a { color: var(--text-secondary); text-decoration: none; }
.breadcrumb a:hover { color: var(--accent); }
.article-meta {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}
.article-header h1 {
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 0.75rem;
}
.article-header .subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
}

.article-body {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 0 3rem;
}
.article-body h2 {
  font-size: 1.25rem;
  font-weight: 800;
  margin: 2.5rem 0 0.75rem;
  letter-spacing: -0.01em;
  position: relative;
  padding-left: 1rem;
}
.article-body h2::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--accent);
  border-radius: 2px;
}
.article-body h3 {
  font-size: 1rem;
  font-weight: 700;
  margin: 1.75rem 0 0.5rem;
  color: var(--accent);
}
.article-body p {
  font-size: 0.925rem;
  color: var(--text-secondary);
  margin-bottom: 1.1rem;
}
.article-body strong { color: var(--text); font-weight: 600; }
.article-body a { color: var(--accent); }
.article-body a:hover { text-decoration: underline; }
.article-body ul, .article-body ol {
  margin: 0 0 1.1rem 1.5rem;
  color: var(--text-secondary);
}
.article-body li { margin-bottom: 0.4rem; font-size: 0.925rem; }

.callout {
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  border-left: 3px solid var(--accent);
}
.callout.warning { border-left-color: var(--amber); }
.callout.danger { border-left-color: var(--red); }
.callout.success { border-left-color: var(--green); }
.callout-title {
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.callout.warning .callout-title { color: var(--amber); }
.callout.danger .callout-title { color: var(--red); }
.callout.success .callout-title { color: var(--green); }
.callout p { margin-bottom: 0; font-size: 0.85rem; }

.comparison-table { width: 100%; border-collapse: collapse; margin: 1.5rem 0; font-size: 0.825rem; }
.comparison-table th {
  text-align: left; padding: 0.75rem 1rem;
  background: var(--bg-card); border: 1px solid var(--border);
  font-weight: 600; font-size: 0.75rem;
  text-transform: uppercase; letter-spacing: 0.06em;
  color: var(--text-secondary);
}
.comparison-table td { padding: 0.75rem 1rem; border: 1px solid var(--border); color: var(--text-secondary); }
.comparison-table tr:hover td { background: var(--bg-card); }
.status-safe { color: var(--green); font-weight: 600; }
.status-risky { color: var(--amber); font-weight: 600; }
.status-detected { color: var(--red); font-weight: 600; }

.product-cta {
  padding: 2rem;
  margin: 2.5rem 0;
  background: linear-gradient(165deg, rgba(255,79,139,0.04) 0%, var(--bg-card) 50%);
  border: 1px solid rgba(255,79,139,0.2);
  border-radius: var(--radius);
  text-align: center;
}
.product-cta h3 { font-size: 1.15rem; font-weight: 800; margin-bottom: 0.4rem; }
.product-cta p { font-size: 0.85rem; color: var(--text-secondary); margin-bottom: 1.25rem; }

.article-footer {
  max-width: 700px;
  margin: 0 auto 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}
.back-link {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.back-link:hover { color: var(--accent); }

/* ═══════ PRODUCT PAGE FEATURES ═══════ */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
}

/* ═══════ FOOTER ═══════ */
.site-footer {
  padding: 1.75rem 0;
  border-top: 1px solid var(--border);
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.footer-nav {
  display: flex;
  gap: 1.5rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}
.footer-nav a {
  color: inherit;
  transition: color 0.2s;
}
.footer-nav a:hover { color: var(--text-secondary); }

/* ═══════ MOBILE STICKY CTA ═══════ */
.mobile-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(8,8,12,0.95);
  backdrop-filter: blur(16px);
  border-top: 1px solid var(--border);
  padding: 0.75rem 1rem;
  padding-bottom: calc(0.75rem + env(safe-area-inset-bottom));
}

/* ═══════ ANIMATIONS ═══════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.anim { animation: fadeUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards; }
.anim-d1 { animation-delay: 0.08s; opacity: 0; }
.anim-d2 { animation-delay: 0.16s; opacity: 0; }
.anim-d3 { animation-delay: 0.24s; opacity: 0; }
.anim-d4 { animation-delay: 0.32s; opacity: 0; }
.anim-d5 { animation-delay: 0.40s; opacity: 0; }

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════ ADMIN ═══════ */
.admin-form {
  max-width: 800px;
  margin: 0 auto;
}
.form-group {
  margin-bottom: 1.25rem;
}
.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.form-input {
  width: 100%;
  padding: 0.75rem 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-family: inherit;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s;
}
.form-input:focus { border-color: rgba(255,79,139,0.4); }
.form-input::placeholder { color: var(--text-muted); }
textarea.form-input { min-height: 400px; font-family: 'JetBrains Mono', monospace; font-size: 0.8rem; line-height: 1.6; resize: vertical; }

.admin-article-list {
  display: grid;
  gap: 0.75rem;
  margin-top: 2rem;
}
.admin-article-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  gap: 1rem;
}
.admin-article-item:hover { border-color: var(--border-hover); }

/* ═══════ 404 ═══════ */
.page-404 {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* ═══════ RESPONSIVE ═══════ */
@media (max-width: 900px) {
  .products-showcase { grid-template-columns: 1fr 1fr; }
  .products-showcase-bottom { grid-template-columns: 1fr; }
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-character { display: none; }
  .hero-text { max-width: 100%; margin: 0 auto; }
  .hero-stats { justify-content: center; }
  .hero .btn-row { justify-content: center; }
}
@media (max-width: 768px) {
  .hide-mobile { display: none !important; }
  .section { padding: 3.5rem 0; }
  body { padding-bottom: 72px; }
  .hero { min-height: auto; padding: 4rem 0 2rem; }
  .products-showcase { grid-template-columns: 1fr; }
  .products-showcase-bottom { grid-template-columns: 1fr; }
  .product-image-card { aspect-ratio: 4/3 !important; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-compact { grid-template-columns: 1fr; }
  .trust-bar { gap: 1.5rem; }
  .blog-grid { grid-template-columns: 1fr; }
  .article-header { padding: 3.5rem 0 1.5rem; }
  .article-body h2 { font-size: 1.1rem; }
  .article-footer { flex-direction: column; gap: 1rem; }
  .admin-article-item { flex-direction: column; align-items: flex-start; }
}
@media (min-width: 769px) {
  .show-mobile { display: none !important; }
}
