@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700;800&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --font-heading: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --bg: #0f0f1e;
  --bg-card: #1a1a2e;
  --bg-section: #141428;
  --text: #f5f0e8;
  --text-heading: #ffffff;
  --text-muted: #d4cfc7;
  --accent: #f5a623;
  --accent-2: #ffc247;
  --accent-hover: #ffc247;
  --accent-dark: #c8850e;
  --gradient: linear-gradient(135deg, #f5a623, #c8850e);
  --gradient-text: linear-gradient(135deg, #ffc247, #f5a623);
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 4px 24px rgba(245, 166, 35, 0.1);
  --shadow-glow: 0 0 40px rgba(245, 166, 35, 0.15);
  --transition: 0.3s ease;
  --max-width: 1100px;
}

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

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--accent); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--accent-hover); }

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 2rem; }

/* SCROLL PROGRESS */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gradient);
  transform: scaleX(0);
  transform-origin: left;
  z-index: 200;
  pointer-events: none;
}

/* NAV */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(15, 15, 30, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(245, 166, 35, 0.1);
  padding: 1rem 0;
}
.nav .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.nav-logo img {
  height: 32px;
  width: auto;
}
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a { color: var(--text-muted); font-family: var(--font-body); font-size: 0.9rem; font-weight: 500; }
.nav-links a:hover { color: var(--text); }
.nav-cta {
  background: var(--gradient);
  color: var(--bg);
  padding: 0.5rem 1.2rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  transition: opacity var(--transition);
}
.nav-cta:hover { opacity: 0.9; color: var(--bg); }

/* HERO */
.hero {
  padding: 5rem 0 4rem;
}
.hero-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 3rem;
}
.hero-text { text-align: left; }
.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero .subtitle {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: var(--text);
  margin-bottom: 2rem;
}
.hero-cta {
  display: inline-flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all var(--transition);
  border: none;
  cursor: pointer;
}
.btn-primary {
  background: var(--gradient);
  color: var(--bg);
  box-shadow: 0 4px 15px rgba(245, 166, 35, 0.3);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(245, 166, 35, 0.4); color: var(--bg); }
.btn-secondary {
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
}
.btn-secondary:hover { background: var(--accent); color: var(--bg); }

/* HERO VISUAL — RADAR */
.hero-visual {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  max-width: 380px;
  margin: 0 auto;
}
.radar-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--bg);
  text-align: center;
  z-index: 3;
  box-shadow: var(--shadow-glow);
}
.radar-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  border: 1px solid rgba(245, 166, 35, 0.2);
  animation: pulse-ring 3s ease-out infinite;
}
.radar-ring-1 { width: 160px; height: 160px; margin: -80px 0 0 -80px; animation-delay: 0s; }
.radar-ring-2 { width: 260px; height: 260px; margin: -130px 0 0 -130px; animation-delay: 1s; }
.radar-ring-3 { width: 360px; height: 360px; margin: -180px 0 0 -180px; animation-delay: 2s; }

@keyframes pulse-ring {
  0% { opacity: 0.6; transform: scale(0.8); }
  100% { opacity: 0; transform: scale(1.1); }
}

.ai-node {
  position: absolute;
  padding: 0.4rem 0.8rem;
  background: var(--bg-card);
  border: 1px solid rgba(245, 166, 35, 0.3);
  border-radius: 20px;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent);
  z-index: 4;
}
.ai-node-1 { top: 10%; left: 60%; }
.ai-node-2 { top: 65%; left: 5%; }
.ai-node-3 { top: 75%; right: 10%; }

/* SECTIONS */
section { padding: 5rem 0; }
.section-title {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-heading);
  text-align: center;
  margin-bottom: 1rem;
}
.section-subtitle {
  text-align: center;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 3rem;
}

/* FADE-UP ANIMATION */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .fade-up { opacity: 1; transform: none; transition: none; }
  .radar-ring { animation: none; opacity: 0.2; transform: none; }
}

/* PROBLEM STATEMENT */
.problem-section { padding: 4rem 0; }
.problem-compare {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.problem-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  border: 1px solid rgba(245, 166, 35, 0.1);
  width: 260px;
}
.problem-year {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-muted);
  margin-bottom: 1.2rem;
}
.problem-new .problem-year { color: var(--accent); }
.problem-label {
  margin-top: 1.2rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.problem-arrow {
  color: var(--accent);
  flex-shrink: 0;
}

/* SERP Mock */
.serp-mock { display: flex; flex-direction: column; gap: 4px; }
.serp-bar {
  height: 8px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 4px;
}
.serp-bar.highlight {
  background: var(--gradient);
  opacity: 0.7;
}

/* AI Bubble Mock */
.ai-bubble {
  background: rgba(245, 166, 35, 0.05);
  border: 1px solid rgba(245, 166, 35, 0.2);
  border-radius: var(--radius);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.ai-bubble-line {
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
}
.ai-bubble-line.short { width: 60%; }
.ai-bubble-line.highlight {
  background: var(--gradient);
  opacity: 0.6;
}

/* STATS */
.stats-section { padding: 4rem 0; }
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
}
.stat-icon {
  width: 32px;
  height: 32px;
  color: var(--accent);
  margin-bottom: 0.5rem;
}
.stat-item .stat-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-item .stat-label {
  color: var(--text-muted);
  font-size: 0.85rem;
}
.stat-source {
  font-size: 0.72rem;
  color: rgba(212, 207, 199, 0.5);
  margin-top: 0.2rem;
}

/* SERVICES GRID */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
.service-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 2rem;
  border: 1px solid rgba(245, 166, 35, 0.15);
  transition: all var(--transition);
  transition-delay: calc(var(--i, 0) * 0.1s);
}
.service-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.service-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
}
.service-icon svg {
  width: 24px;
  height: 24px;
  color: var(--bg);
}
.service-card h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--text-heading);
  margin-bottom: 0.8rem;
}
.service-bullets {
  list-style: none;
  margin-bottom: 1.2rem;
}
.service-bullets li {
  position: relative;
  padding-left: 1.2rem;
  color: var(--text-muted);
  font-size: 0.88rem;
  margin-bottom: 0.4rem;
}
.service-bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}
.service-link {
  font-size: 0.85rem;
  font-weight: 600;
}

/* PROCESS TIMELINE */
.process-timeline {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  padding: 2rem 0;
}
.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 0 0 200px;
}
.process-node {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 2px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  box-shadow: 0 0 20px rgba(245, 166, 35, 0.15);
}
.process-node svg {
  width: 28px;
  height: 28px;
  color: var(--accent);
}
.process-step h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--text-heading);
  margin-bottom: 0.4rem;
}
.process-step p {
  font-size: 0.82rem;
  color: var(--text-muted);
  max-width: 160px;
}
.process-line {
  flex: 0 0 60px;
  height: 2px;
  background: rgba(245, 166, 35, 0.3);
  margin-top: 32px;
}

/* COMPARISON TABLE */
.comparison-section { padding: 5rem 0; }
.comparison-table-wrap {
  max-width: 700px;
  margin: 0 auto 2rem;
  overflow-x: auto;
}
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.comparison-table th,
.comparison-table td {
  padding: 1rem 1.2rem;
  text-align: left;
  border-bottom: 1px solid rgba(245, 166, 35, 0.08);
}
.comparison-table th {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--text-heading);
  font-size: 1rem;
}
.comparison-table td {
  color: var(--text-muted);
}
.comparison-table .row-label {
  font-weight: 600;
  color: var(--text);
  font-size: 0.85rem;
}
.comparison-table .highlight-col {
  background: rgba(245, 166, 35, 0.06);
  color: var(--accent-2);
  font-weight: 600;
}
.comparison-table thead .highlight-col {
  color: var(--accent);
}

.comparison-note {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.88rem;
}
.venn {
  position: relative;
  display: inline-flex;
  margin-bottom: 0.8rem;
  height: 60px;
  width: 120px;
}
.venn-circle {
  position: absolute;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 0.65rem;
  font-weight: 700;
}
.venn-left {
  left: 0;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--text-muted);
}
.venn-right {
  left: 40px;
  background: rgba(245, 166, 35, 0.15);
  border: 1px solid rgba(245, 166, 35, 0.4);
  color: var(--accent);
}

/* CHECKER SPLIT */
.checker-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 3rem;
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 3rem;
  border: 1px solid rgba(245, 166, 35, 0.2);
}
.checker-split-text h2 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--text-heading);
  margin-bottom: 0.8rem;
}
.checker-split-text p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}
.checker-mockup {
  display: flex;
  justify-content: center;
}
.mockup-card {
  background: var(--bg);
  border-radius: var(--radius-sm);
  padding: 1.2rem;
  border: 1px solid rgba(245, 166, 35, 0.15);
  width: 100%;
  max-width: 280px;
}
.mockup-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.mockup-row:last-child { border-bottom: none; }
.mockup-provider {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text);
}
.mockup-badge {
  padding: 0.2rem 0.6rem;
  border-radius: 12px;
  font-size: 0.68rem;
  font-weight: 600;
}
.mockup-badge.found { background: rgba(34, 197, 94, 0.15); color: #22c55e; }
.mockup-badge.not-found { background: rgba(239, 68, 68, 0.15); color: #ef4444; }

/* TRUST SIGNALS */
.trust-section { padding: 3rem 0; }
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  background: var(--bg-card);
  border-radius: var(--radius-sm);
  padding: 1rem 1.2rem;
  border: 1px solid rgba(245, 166, 35, 0.08);
  font-size: 0.85rem;
  color: var(--text);
}
.trust-icon {
  width: 24px;
  height: 24px;
  color: var(--accent);
  flex-shrink: 0;
}
.temporal-marker {
  text-align: center;
  font-size: 0.75rem;
  color: rgba(212, 207, 199, 0.5);
}

/* BLOG CARDS */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
.blog-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 1.8rem;
  border: 1px solid rgba(245, 166, 35, 0.1);
  transition: all var(--transition);
}
.blog-card:hover { border-color: var(--accent); transform: translateY(-2px); }
.blog-card .tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--accent);
  margin-bottom: 0.8rem;
}
.blog-card h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--text-heading);
  margin-bottom: 0.6rem;
  line-height: 1.4;
}
.blog-card p { color: var(--text-muted); font-size: 0.85rem; }
.blog-meta {
  margin-top: 1rem;
  font-size: 0.78rem;
  color: rgba(212, 207, 199, 0.6);
}

/* FAQ ACCORDION */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  background: var(--bg-card);
  border-radius: var(--radius);
  margin-bottom: 1rem;
  border: 1px solid rgba(245, 166, 35, 0.1);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item[open] { border-color: rgba(245, 166, 35, 0.3); }
.faq-item summary {
  padding: 1.4rem 1.8rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--accent);
  transition: transform var(--transition);
  flex-shrink: 0;
  margin-left: 1rem;
}
.faq-item[open] summary::after {
  transform: rotate(45deg);
}
.faq-item summary h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--text-heading);
  font-weight: 600;
}
.faq-item p {
  padding: 0 1.8rem 1.4rem;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ABOUT */
.about-block {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}
.about-avatar {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--accent);
  box-shadow: var(--shadow-glow);
  margin-bottom: 1.2rem;
}
.about-name {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 0.3rem;
}
.about-role {
  color: var(--text-muted);
  margin-bottom: 1rem;
}
.about-bio {
  color: var(--text);
  margin-bottom: 1.2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.about-credentials {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}
.credential {
  background: rgba(245, 166, 35, 0.08);
  border: 1px solid rgba(245, 166, 35, 0.2);
  border-radius: 20px;
  padding: 0.3rem 0.9rem;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--accent);
}
.about-cta {
  margin-top: 1rem;
}

/* FOOTER */
.footer {
  border-top: 1px solid rgba(245, 166, 35, 0.1);
  padding: 3rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}
.footer-brand {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.4rem;
}
.footer-tagline {
  font-size: 0.82rem;
  color: var(--text-muted);
}
.footer-heading {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--text-heading);
  margin-bottom: 0.8rem;
}
.footer-col a {
  display: block;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
}
.footer-col a:hover { color: var(--accent); }
.footer-copy {
  text-align: center;
  font-size: 0.78rem;
  color: rgba(212, 207, 199, 0.5);
  border-top: 1px solid rgba(245, 166, 35, 0.05);
  padding-top: 1.5rem;
}

/* BLOG PAGE */
.article { max-width: 720px; margin: 0 auto; padding: 4rem 2rem; }
.article h1 {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--text-heading);
  margin-bottom: 1rem;
  line-height: 1.3;
}
.article .meta {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(245, 166, 35, 0.1);
}
.article h2 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--text-heading);
  margin: 2.5rem 0 1rem;
}
.article h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--text-heading);
  margin: 2rem 0 0.8rem;
}
.article p { margin-bottom: 1.2rem; }
.article ul, .article ol {
  margin: 1rem 0 1.5rem 1.5rem;
  color: var(--text);
}
.article li { margin-bottom: 0.5rem; }
.article strong { color: var(--text-heading); }
.article blockquote {
  border-left: 3px solid var(--accent);
  padding-left: 1.2rem;
  margin: 1.5rem 0;
  color: var(--text-muted);
  font-style: italic;
}

/* CHECKER PAGE */
.checker-container {
  max-width: 700px;
  margin: 0 auto;
  padding: 4rem 2rem;
}
.checker-container h1 {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--text-heading);
  text-align: center;
  margin-bottom: 0.8rem;
}
.checker-description {
  text-align: center;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
}
.checker-form {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 2rem;
  border: 1px solid rgba(245, 166, 35, 0.15);
}
.form-group { margin-bottom: 1.5rem; }
.form-group label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-heading);
  margin-bottom: 0.5rem;
}
.form-group input, .form-group select {
  width: 100%;
  padding: 0.8rem 1rem;
  background: var(--bg);
  border: 1px solid rgba(245, 166, 35, 0.2);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color var(--transition);
}
.form-group input:focus, .form-group select:focus {
  outline: none;
  border-color: var(--accent);
}
.form-group input::placeholder { color: var(--text-muted); }

.checker-results {
  margin-top: 2rem;
}
.result-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-bottom: 1rem;
  border: 1px solid rgba(245, 166, 35, 0.1);
}
.result-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.8rem;
}
.result-provider { font-family: var(--font-heading); font-weight: 700; color: var(--text-heading); }
.result-status {
  padding: 0.25rem 0.8rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
}
.result-status.found { background: rgba(34, 197, 94, 0.15); color: #22c55e; }
.result-status.not-found { background: rgba(239, 68, 68, 0.15); color: #ef4444; }
.result-context { color: var(--text-muted); font-size: 0.85rem; line-height: 1.5; }
.result-context mark {
  background: rgba(245, 166, 35, 0.3);
  color: var(--text-heading);
  padding: 0 3px;
  border-radius: 3px;
}

.loading {
  text-align: center;
  padding: 2rem;
  color: var(--text-muted);
}
.loading::after {
  content: '';
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 2px solid var(--accent);
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin-left: 0.5rem;
  vertical-align: middle;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* TEMPORAL NOTE */
.temporal-note {
  background: rgba(245, 166, 35, 0.08);
  border-left: 3px solid var(--accent);
  padding: 0.6rem 1rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hero { padding: 3rem 0 2rem; }
  .hero-layout { grid-template-columns: 1fr; text-align: center; }
  .hero-text { text-align: center; }
  .hero-cta { justify-content: center; }
  .hero-visual { max-width: 280px; margin-top: 2rem; }
  .problem-compare { flex-direction: column; gap: 1.5rem; }
  .problem-card { width: 100%; max-width: 280px; }
  .problem-arrow { transform: rotate(90deg); }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: 1fr; }
  .process-timeline { flex-direction: column; align-items: center; }
  .process-line { width: 2px; height: 40px; margin: 0; }
  .comparison-table { font-size: 0.8rem; }
  .comparison-table th, .comparison-table td { padding: 0.7rem 0.8rem; }
  .checker-split { grid-template-columns: 1fr; padding: 2rem; }
  .checker-mockup { margin-top: 1rem; }
  .trust-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
}

@media (max-width: 480px) {
  .stats-row { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2rem; }
  .stat-item .stat-number { font-size: 2rem; }
}
