/* Phlegethon — SEO static site */
:root {
  --bg: #050505;
  --surface: #0f0f0f;
  --surface-2: #0a0a0a;
  --border: rgba(255, 255, 255, 0.06);
  --border-accent: rgba(255, 77, 0, 0.25);
  --accent: #ff4d00;
  --accent-2: #ff6b35;
  --text: #f0ede8;
  --text-2: #9a9490;
  --muted: #6b6560;
  --muted-2: #4a4540;
  --green: #22c55e;
  --yellow: #ffb800;
  --font-display: "Rajdhani", sans-serif;
  --font-body: "DM Sans", sans-serif;
  --font-mono: "Roboto Mono", monospace;
  --nav-h: 64px;
  --max: 80rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

a:hover {
  text-decoration: underline;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text);
  margin: 0 0 0.75rem;
}

h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  letter-spacing: -0.01em;
}

h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
}

h3 {
  font-size: 1.35rem;
}

p {
  margin: 0 0 1rem;
  color: var(--text-2);
}

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

@media (min-width: 640px) {
  .container {
    padding: 0 1.5rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 2rem;
  }
}

/* Nav */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  height: var(--nav-h);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(5, 5, 5, 0.92);
  backdrop-filter: blur(12px);
}

.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: var(--text);
}

.brand:hover {
  text-decoration: none;
}

.brand-mark {
  width: 2rem;
  height: 2rem;
  border-radius: 0.375rem;
  display: grid;
  place-items: center;
  background: rgba(255, 77, 0, 0.15);
  border: 1px solid rgba(255, 77, 0, 0.4);
}

.brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: 0.15em;
}

.brand-ver {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  color: var(--muted);
}

.nav-links {
  display: none;
  align-items: center;
  gap: 1.5rem;
}

.nav-links a {
  font-size: 0.875rem;
  color: var(--muted);
  text-decoration: none;
  font-weight: 500;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text);
  text-decoration: none;
}

.nav-links a.active {
  color: var(--accent);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text);
  border-radius: 0.5rem;
  cursor: pointer;
}

@media (min-width: 900px) {
  .nav-links {
    display: flex;
  }
  .nav-toggle {
    display: none;
  }
}

.nav-mobile {
  display: none;
  border-bottom: 1px solid var(--border);
  background: rgba(5, 5, 5, 0.98);
  padding: 1rem;
}

.nav-mobile.open {
  display: block;
}

.nav-mobile a {
  display: block;
  padding: 0.75rem 0.5rem;
  color: var(--text-2);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
}

/* Buttons */
.magma-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #ff4d00 0%, #ff6b35 100%);
  color: #fff !important;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.05em;
  border: none;
  border-radius: 0.5rem;
  box-shadow: 0 0 20px rgba(255, 77, 0, 0.4);
  padding: 0.75rem 1.5rem;
  text-decoration: none !important;
  transition: box-shadow 0.2s, transform 0.2s;
  cursor: pointer;
  font-size: 1rem;
}

.magma-btn:hover {
  box-shadow: 0 0 30px rgba(255, 77, 0, 0.6);
  transform: translateY(-1px);
  text-decoration: none !important;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  color: var(--text) !important;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  text-decoration: none !important;
  font-weight: 500;
  transition: border-color 0.2s, background 0.2s;
}

.btn-ghost:hover {
  border-color: rgba(255, 77, 0, 0.4);
  background: rgba(255, 77, 0, 0.06);
  text-decoration: none !important;
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

/* Labels */
.mono-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

.muted {
  color: var(--muted);
}

/* Cards / grids */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.5rem;
}

.card-accent {
  border-color: var(--border-accent);
}

.grid-2 {
  display: grid;
  gap: 1.5rem;
}

.grid-3 {
  display: grid;
  gap: 1.25rem;
}

.grid-4 {
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .grid-2 {
    grid-template-columns: 1fr 1fr;
  }
  .grid-4 {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 900px) {
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(var(--nav-h) + 3rem) 0 4rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(5, 5, 5, 0.1) 0%, rgba(5, 5, 5, 0.2) 60%, #050505 100%),
    linear-gradient(to right, rgba(5, 5, 5, 0.35) 0%, transparent 60%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1.1fr 0.9fr;
  }
}

.hero h1 span {
  color: var(--accent);
  text-shadow: 0 0 40px rgba(255, 77, 0, 0.5);
}

.hero-lead {
  font-size: 1.15rem;
  color: var(--text);
  font-weight: 500;
  max-width: 32rem;
}

.hero-sub {
  max-width: 30rem;
  margin-bottom: 1.5rem;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

/* Sections */
.section {
  padding: 5rem 0;
}

.section-tight {
  padding: 3rem 0;
}

.section-head {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto 3rem;
}

/* Detector badges */
.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.detector {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(15, 15, 15, 0.9);
  font-size: 0.8rem;
  color: var(--text);
}

.detector .dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 999px;
  background: var(--green);
}

.detector.soon .dot {
  background: var(--yellow);
}

/* Platform cards */
.platform-card {
  border-radius: 1rem;
  border: 1px solid var(--border);
  background: var(--surface);
  padding: 1.5rem;
}

.platform-card h3 {
  margin-top: 0.75rem;
}

/* Steps */
.steps {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .steps {
    grid-template-columns: repeat(3, 1fr);
  }
}

.step-num {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--accent);
  font-weight: 700;
}

/* FAQ */
.faq-list {
  max-width: 48rem;
  margin: 0 auto;
  display: grid;
  gap: 0.75rem;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  background: var(--surface);
  padding: 1.25rem 1.5rem;
}

.faq-item h3 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.faq-item p {
  margin: 0;
  font-size: 0.95rem;
}

/* Pricing */
.price-tiers {
  display: grid;
  gap: 1rem;
}

@media (min-width: 768px) {
  .price-tiers {
    grid-template-columns: repeat(3, 1fr);
  }
}

.price-card {
  border-radius: 1rem;
  border: 1px solid var(--border);
  background: var(--surface);
  padding: 1.75rem;
  text-align: center;
}

.price-card.featured {
  border-color: rgba(255, 77, 0, 0.45);
  box-shadow: 0 0 40px rgba(255, 77, 0, 0.12);
}

.price-amount {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--accent);
  font-weight: 700;
}

.price-meta {
  color: var(--muted);
  font-size: 0.875rem;
}

.tier-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
}

.tier-table th,
.tier-table td {
  padding: 0.85rem 1rem;
  text-align: left;
  border-bottom: 1px solid rgba(255, 77, 0, 0.15);
  font-size: 0.9rem;
}

.tier-table th {
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tier-table td {
  color: var(--text-2);
}

/* Blog */
.blog-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1100px) {
  .blog-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.blog-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: 1rem;
  background: var(--surface);
  padding: 1.5rem;
  text-decoration: none;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
  color: inherit;
  min-height: 12rem;
  position: relative;
  overflow: hidden;
}

.blog-card:hover {
  border-color: rgba(255, 77, 0, 0.35);
  transform: translateY(-2px);
  text-decoration: none;
}

.blog-card h2 {
  font-size: 1.25rem;
  margin: 0.5rem 0;
  color: var(--text);
}

.blog-card p {
  font-size: 0.9rem;
  flex: 1;
}

/* Dim photoreal product heroes as card backgrounds (zip style — not lava art).
   Background-image is also inlined on each card so stale CSS caches still show art. */
.blog-card.blog-card-bg {
  background-color: #080808;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  border-color: rgba(255, 77, 0, 0.18);
  min-height: 11rem;
  justify-content: flex-end;
}

.blog-card.blog-card-bg:hover {
  border-color: rgba(255, 77, 0, 0.5);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 77, 0, 0.15);
  filter: brightness(1.08);
}

.blog-card.blog-card-bg h2 {
  color: #f5f2ed !important;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.9);
  margin-top: 0.35rem;
}

.blog-card.blog-card-bg p {
  color: rgba(240, 237, 232, 0.82) !important;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.8);
  margin-bottom: 0;
}

.blog-card.blog-card-bg .cat-pill {
  align-self: flex-start;
  background: rgba(255, 77, 0, 0.28) !important;
  border: 1px solid rgba(255, 77, 0, 0.4);
  backdrop-filter: blur(4px);
  color: #ffb08a !important;
}

.cat-pill {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  background: rgba(255, 77, 0, 0.12);
  color: var(--accent);
}

/* Article */
.article-page {
  padding: calc(var(--nav-h) + 3rem) 0 4rem;
}

.article-wrap {
  max-width: 48rem;
  margin: 0 auto;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  color: var(--muted);
  font-size: 0.875rem;
  margin-bottom: 2rem;
}

.prose h2 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.prose h3 {
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.prose p,
.prose li {
  color: var(--text-2);
  line-height: 1.75;
}

.prose strong {
  color: var(--text);
  font-weight: 600;
}

.prose a {
  color: var(--accent);
  text-decoration: underline;
}

.prose ul,
.prose ol {
  padding-left: 1.25rem;
  margin: 0 0 1.25rem;
}

.prose li {
  margin-bottom: 0.4rem;
}

.prose table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  overflow-x: auto;
  display: block;
}

.prose th,
.prose td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid rgba(255, 77, 0, 0.2);
  text-align: left;
  font-size: 0.9rem;
}

.prose th {
  color: var(--accent);
}

.prose td {
  color: var(--text-2);
}

.prose pre,
.code-block {
  background: #0a0a0a;
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  padding: 1rem 1.25rem;
  overflow-x: auto;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--text-2);
  line-height: 1.6;
  margin: 1rem 0 1.5rem;
}

.prose code {
  font-family: var(--font-mono);
  font-size: 0.85em;
  color: var(--accent-2);
}

/* Tools */
.tool-hero {
  padding: calc(var(--nav-h) + 3rem) 0 3rem;
}

.tool-hero-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 900px) {
  .tool-hero-grid {
    grid-template-columns: 1.1fr 0.9fr;
  }
}

.tool-hero-img {
  border-radius: 1rem;
  border: 1px solid var(--border);
  overflow: hidden;
  background: var(--surface);
  aspect-ratio: 4/3;
}

.tool-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin: 1.5rem 0;
}

@media (min-width: 640px) {
  .stats-row {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  padding: 1rem;
  text-align: center;
}

.stat-box .val {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
}

.stat-box .lab {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.08em;
  color: var(--muted);
  text-transform: uppercase;
}

.feature-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 768px) {
  .feature-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* Compare table */
.compare {
  width: 100%;
  border-collapse: collapse;
}

.compare th,
.compare td {
  padding: 0.85rem 1rem;
  border-bottom: 1px solid var(--border);
  text-align: left;
  font-size: 0.9rem;
}

.compare th {
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Changelog */
.timeline {
  max-width: 48rem;
  margin: 0 auto;
  display: grid;
  gap: 1.5rem;
}

.release {
  border: 1px solid var(--border);
  border-radius: 1rem;
  background: var(--surface);
  padding: 1.5rem;
}

.release.highlight {
  border-color: rgba(255, 77, 0, 0.35);
}

.release-head {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  margin-bottom: 0.75rem;
}

.ver-pill {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--accent);
  background: rgba(255, 77, 0, 0.12);
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
}

.change-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}

.change-list li {
  display: flex;
  gap: 0.75rem;
  padding: 0.4rem 0;
  font-size: 0.9rem;
  color: var(--text-2);
}

.badge-new,
.badge-improved,
.badge-fix {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.08em;
  padding: 0.15rem 0.4rem;
  border-radius: 0.2rem;
  flex-shrink: 0;
  height: fit-content;
  margin-top: 0.15rem;
}

.badge-new {
  color: #ff4d00;
  background: rgba(255, 77, 0, 0.12);
}

.badge-improved {
  color: #ffb800;
  background: rgba(255, 184, 0, 0.12);
}

.badge-fix {
  color: #4caf8a;
  background: rgba(76, 175, 138, 0.12);
}

/* API docs */
.endpoint {
  border: 1px solid var(--border);
  border-radius: 1rem;
  background: var(--surface);
  padding: 1.5rem;
  margin-bottom: 1.25rem;
}

.method {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.2rem 0.5rem;
  border-radius: 0.25rem;
}

.method.get {
  background: rgba(34, 197, 94, 0.15);
  color: #22c55e;
}

.method.post {
  background: rgba(255, 77, 0, 0.15);
  color: #ff4d00;
}

.method.delete {
  background: rgba(239, 68, 68, 0.15);
  color: #ef4444;
}

.endpoint-path {
  font-family: var(--font-mono);
  font-size: 0.9rem;
  color: var(--text);
}

/* Legal */
.legal-page {
  padding: calc(var(--nav-h) + 3rem) 0 4rem;
}

.legal-page .container {
  max-width: 52rem;
}

.legal-meta {
  color: var(--muted);
  font-size: 0.875rem;
  margin-bottom: 2rem;
}

.legal-notice {
  border: 1px solid rgba(255, 77, 0, 0.4);
  background: rgba(255, 77, 0, 0.05);
  color: #ffccb0;
  border-radius: 0.75rem;
  padding: 1rem;
  font-size: 0.85rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.legal-page section {
  margin-bottom: 2rem;
}

.legal-page h2 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.legal-page p,
.legal-page li {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--text-2);
}

.legal-page ul {
  padding-left: 1.25rem;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  background: var(--bg);
  padding: 4rem 0 2rem;
  margin-top: 2rem;
}

.footer-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
  }
  .footer-grid-5 {
    grid-template-columns: 1.3fr repeat(4, 1fr);
  }
}

@media (max-width: 767px) {
  .footer-grid-5 {
    grid-template-columns: 1fr 1fr;
  }
}

.footer-brand p {
  font-size: 0.875rem;
  color: var(--muted);
  max-width: 14rem;
}

.footer-col h4 {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 1rem;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col li {
  margin-bottom: 0.5rem;
}

.footer-col a {
  color: var(--text-2);
  font-size: 0.875rem;
  text-decoration: none;
}

.footer-col a:hover {
  color: var(--accent);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  color: var(--muted-2);
  font-size: 0.8rem;
}

/* Page shell */
.page-top {
  padding: calc(var(--nav-h) + 3rem) 0 2rem;
}

.cta-band {
  text-align: center;
  padding: 4rem 1.5rem;
  border: 1px solid rgba(255, 77, 0, 0.2);
  border-radius: 1.25rem;
  background: linear-gradient(180deg, rgba(255, 77, 0, 0.08), transparent);
  margin: 2rem 0;
}

.cta-band h2 {
  margin-bottom: 0.75rem;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.check-list li {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  margin-bottom: 0.6rem;
  color: var(--text-2);
  font-size: 0.95rem;
}

.check-list li::before {
  content: "✓";
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
}

.x-list li::before {
  content: "✕";
  color: var(--muted);
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin: 1rem 0;
}

.tag {
  font-size: 0.875rem;
  color: var(--text-2);
}

.tag span {
  color: var(--accent);
}

/* Related tools */
.related {
  display: grid;
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .related {
    grid-template-columns: repeat(3, 1fr);
  }
}

.related a {
  display: block;
  padding: 1rem;
  border-radius: 0.75rem;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  text-decoration: none;
}

.related a:hover {
  border-color: rgba(255, 77, 0, 0.35);
  text-decoration: none;
}

/* ===== Full home (source-fidelity) ===== */
.home .h2-lg { font-size: clamp(2rem, 4vw, 3rem); line-height: 1.1; margin-bottom: 1rem; }
.home .section { padding: 5rem 0; }
.home .band { background: rgba(8,8,8,0.95); border-top: 1px solid rgba(255,255,255,0.04); }
.home .section-lead { color: var(--muted); max-width: 34rem; margin-bottom: 2rem; }
.home .section-lead.center { margin-left: auto; margin-right: auto; text-align: center; }
.home .center-head, .home .center { text-align: center; }
.home .center-label { text-align: center; font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.12em; color: var(--muted); margin: 0 0 1.5rem; }
.home .sec-head-row { display: flex; justify-content: space-between; align-items: flex-end; gap: 1rem; margin-bottom: 2rem; flex-wrap: wrap; }
.home .text-link { color: var(--accent); font-size: 0.9rem; white-space: nowrap; text-decoration: none; }
.home .text-link:hover { text-decoration: underline; }

.hero-full { position: relative; min-height: 100vh; display: flex; align-items: center; padding: calc(var(--nav-h) + 2rem) 0 3rem; overflow: hidden; }
.hero-full .hero-bg { position: absolute; inset: 0; }
.hero-full .hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.7; }
.hero-full .hero-grad { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(5,5,5,0.1) 0%, rgba(5,5,5,0.25) 55%, #050505 100%), linear-gradient(to right, rgba(5,5,5,0.4) 0%, transparent 55%); }
.hero-grid { position: relative; z-index: 1; display: grid; gap: 2.5rem; align-items: center; }
@media (min-width: 1024px) { .hero-grid { grid-template-columns: 1.1fr 0.9fr; } }
.hero-copy h1 { font-size: clamp(2.75rem, 7vw, 4.5rem); margin-bottom: 1rem; }
.hero-copy .glow { color: var(--accent); text-shadow: 0 0 40px rgba(255,77,0,0.5); }
.hero-copy .lead { font-size: 1.2rem; color: var(--text); font-weight: 500; max-width: 32rem; }
.hero-copy .sub { color: var(--text-2); max-width: 30rem; margin-bottom: 1.5rem; }
.hero-copy .hint { color: var(--muted); font-size: 0.9rem; }
.hero-suite { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1.25rem; }
.hero-suite a { font-size: 0.8rem; color: var(--text-2); border: 1px solid var(--border); border-radius: 999px; padding: 0.35rem 0.75rem; text-decoration: none; }
.hero-suite a:hover { border-color: rgba(255,77,0,0.4); color: var(--text); }
.hero-video-m { display: block; margin: 1rem 0; }
@media (min-width: 1024px) { .hero-video-m { display: none; } }
.yt-btn { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.75rem 1.1rem; border-radius: 0.5rem; border: 1px solid rgba(255,77,0,0.35); background: rgba(255,77,0,0.1); color: var(--accent); font-weight: 600; text-decoration: none; }
.hero-media { display: none; }
@media (min-width: 1024px) { .hero-media { display: flex; justify-content: center; } }
.yt-card { position: relative; display: block; border-radius: 0.75rem; overflow: hidden; max-width: 480px; width: 100%; border: 1px solid var(--border); }
.yt-card img { width: 100%; height: auto; display: block; }
.yt-card .play { position: absolute; left: 1rem; bottom: 1rem; color: #fff; font-weight: 600; text-shadow: 0 1px 4px #000; }

.stats-bar { padding: 2.5rem 0; border-top: 1px solid rgba(255,255,255,0.05); border-bottom: 1px solid rgba(255,255,255,0.05); background: #080808; }
.stats-4 { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.5rem; text-align: center; max-width: 64rem; }
@media (min-width: 640px) { .stats-4 { grid-template-columns: repeat(4,1fr); } }
.stats-4 .sv { font-family: var(--font-display); font-size: 2rem; font-weight: 700; color: var(--accent); }
.stats-4 .sl { font-size: 0.75rem; color: var(--muted); }

.det-strip { padding: 3rem 0; background: rgba(12,12,12,0.9); border-bottom: 1px solid rgba(255,77,0,0.08); }
.det-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.75rem; }
.det-chip { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.55rem 1rem; border-radius: 0.5rem; background: #0F0F0F; border: 1px solid var(--border); font-size: 0.9rem; }
.det-chip .varies { font-family: var(--font-mono); font-size: 0.55rem; color: #FFB800; letter-spacing: 0.08em; font-weight: 700; }
.det-chip .chk { font-weight: 700; }

.plat-grid { display: grid; gap: 1rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .plat-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1100px) { .plat-grid { grid-template-columns: repeat(5, 1fr); } }
.plat-card { background: #0A0A0A; border: 1px solid rgba(255,255,255,0.06); border-radius: 0.75rem; padding: 1.35rem; }
.plat-card h3 { font-size: 1.1rem; margin: 0.4rem 0; }
.plat-card p { font-size: 0.85rem; color: var(--muted); margin: 0; }
.plat-name { font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.1em; font-weight: 700; }
.plat-line { height: 2px; margin-top: 1rem; border-radius: 2px; }

.tool-grid { display: grid; gap: 0.6rem; grid-template-columns: repeat(3, 1fr); }
@media (min-width: 640px) { .tool-grid { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 1024px) { .tool-grid.gen { grid-template-columns: repeat(6, 1fr); } .tool-grid.util { grid-template-columns: repeat(5, 1fr); } }
.tool-tile { position: relative; display: flex; flex-direction: column; align-items: center; text-align: center; gap: 0.4rem; padding: 0.85rem 0.5rem; border-radius: 0.75rem; background: #0F0F0F; border: 1px solid rgba(255,255,255,0.06); text-decoration: none; color: inherit; transition: border-color .15s, background .15s; }
.tool-tile:hover { border-color: color-mix(in srgb, var(--c, #FF4D00) 50%, transparent); background: #141414; text-decoration: none; }
.tool-tile.popular { background: rgba(255,184,0,0.05); border-color: rgba(255,184,0,0.25); }
.tool-tile .pop { position: absolute; top: -0.4rem; font-family: var(--font-display); font-size: 0.5rem; font-weight: 700; background: #FFB800; color: #050505; padding: 0.1rem 0.4rem; border-radius: 999px; letter-spacing: 0.05em; }
.tool-ico { width: 40px; height: 40px; border-radius: 10px; display: grid; place-items: center; background: color-mix(in srgb, var(--c,#FF4D00) 12%, transparent); border: 1px solid color-mix(in srgb, var(--c,#FF4D00) 30%, transparent); }
.tool-ico img {
  width: 22px;
  height: 22px;
  filter: brightness(0) invert(1);
  opacity: 0.85;
  display: block;
}
.tool-ico svg { display: block; }
.tool-ico.mono { font-family: var(--font-display); font-weight: 700; color: var(--c); }
.tool-name { font-family: var(--font-display); font-weight: 700; font-size: 0.8rem; color: var(--text); line-height: 1.2; }
.tool-desc { font-size: 0.65rem; color: var(--muted); display: none; }
@media (min-width: 640px) { .tool-desc { display: block; } }

.engine { position: relative; overflow: hidden; }
.engine-bg { position: absolute; inset: 0; opacity: 0.08; }
.engine-bg img { width: 100%; height: 100%; object-fit: cover; }
.engine-grid { position: relative; z-index: 1; display: grid; gap: 2.5rem; }
@media (min-width: 1024px) { .engine-grid { grid-template-columns: 1fr 1fr; align-items: center; } }
.engine-grid p { color: var(--text-2); line-height: 1.7; }
.pipe-row { display: flex; gap: 1rem; padding: 1.1rem; border-radius: 0.75rem; background: #0A0A0A; border: 1px solid rgba(255,77,0,0.08); margin-bottom: 0.65rem; }
.pipe-num { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; color: rgba(255,77,0,0.25); min-width: 2rem; }
.pipe-label { font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.1em; color: var(--accent); margin-bottom: 0.35rem; }
.pipe-row p { margin: 0; font-size: 0.9rem; color: var(--muted); }
.pipe-note { margin-top: 0.75rem; padding: 0.9rem 1rem; border-radius: 0.75rem; background: rgba(255,77,0,0.04); border: 1px solid rgba(255,77,0,0.15); font-size: 0.85rem; color: var(--muted); }

.types-grid { display: grid; gap: 1rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .types-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .types-grid { grid-template-columns: repeat(4,1fr); } }
.type-card { background: #0F0F0F; border: 1px solid rgba(255,77,0,0.1); border-radius: 0.75rem; padding: 1.35rem; }
.type-card .emoji { font-size: 2rem; margin-bottom: 0.75rem; }
.not-supported { margin-top: 1.25rem; display: inline-flex; gap: 0.5rem; padding: 0.85rem 1.1rem; border-radius: 0.75rem; background: rgba(239,68,68,0.05); border: 1px solid rgba(239,68,68,0.15); color: var(--text-2); font-size: 0.9rem; }
.not-supported strong { color: #EF4444; }

.steps-3 { display: grid; gap: 1rem; }
@media (min-width: 768px) { .steps-3 { grid-template-columns: repeat(3,1fr); } }
.step-card { position: relative; background: #0F0F0F; border: 1px solid rgba(255,77,0,0.1); border-radius: 0.75rem; padding: 1.35rem; }
.step-bg { font-family: var(--font-display); font-size: 2.75rem; font-weight: 700; color: rgba(255,77,0,0.12); line-height: 1; margin-bottom: 0.5rem; }
.workflow-tip { margin-top: 1.5rem; color: var(--text-2); font-size: 0.95rem; }
.workflow-tip a { color: var(--accent); }

.who-grid { display: grid; gap: 1rem; max-width: 56rem; margin: 0 auto; }
@media (min-width: 768px) { .who-grid { grid-template-columns: 1fr 1fr; } }
.who-yes, .who-no { background: #0A0A0A; border-radius: 0.75rem; padding: 1.35rem; }
.who-yes { border: 1px solid rgba(34,197,94,0.2); }
.who-no { border: 1px solid rgba(239,68,68,0.2); }
.who-title { font-family: var(--font-display); font-weight: 700; letter-spacing: 0.08em; font-size: 0.85rem; margin-bottom: 1rem; }
.who-title.ok { color: #22C55E; }
.who-title.bad { color: #EF4444; }
.who-yes ul, .who-no ul { list-style: none; padding: 0; margin: 0; }
.who-yes li, .who-no li { display: flex; gap: 0.6rem; margin-bottom: 0.65rem; color: var(--text-2); font-size: 0.9rem; }
.who-yes .ok { color: #22C55E; }
.who-no .bad { color: #EF4444; }

.narrow { max-width: 48rem; }
.cmp { border: 1px solid rgba(255,255,255,0.06); border-radius: 0.75rem; overflow: hidden; }
.cmp-head, .cmp-row { display: grid; grid-template-columns: 1.4fr 1fr 1fr; padding: 0.85rem 1.1rem; align-items: center; }
.cmp-head { background: #111; border-bottom: 1px solid rgba(255,255,255,0.06); font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.1em; color: var(--muted); }
.cmp-head span:nth-child(2) { color: var(--accent); text-align: center; }
.cmp-head span:nth-child(3) { text-align: center; }
.cmp-row { border-bottom: 1px solid rgba(255,255,255,0.04); font-size: 0.9rem; color: var(--text-2); }
.cmp-row .c { text-align: center; color: #22C55E; font-weight: 700; }
.cmp-row .c:last-child { color: #EF4444; }

.priv-grid { display: grid; gap: 1rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .priv-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .priv-grid { grid-template-columns: repeat(4,1fr); } }
.priv-card { background: #0F0F0F; border: 1px solid rgba(255,255,255,0.06); border-radius: 0.75rem; padding: 1.35rem; }
.priv-card h3 { font-size: 1.1rem; }
.delete-note { margin-top: 1rem; padding: 1.1rem 1.25rem; border-radius: 0.75rem; background: #0A0A0A; border: 1px solid rgba(255,255,255,0.06); }
.delete-note p { margin: 0.35rem 0 0; color: var(--muted); font-size: 0.9rem; }

.free-hero { position: relative; min-height: 80vh; display: flex; align-items: center; padding: 4rem 0; }
.free-bg { position: absolute; inset: 0; }
.free-bg img { width: 100%; height: 100%; object-fit: cover; }
.free-card { position: relative; z-index: 1; max-width: 40rem; margin: 0 auto; text-align: center; padding: 2rem 1.75rem; border-radius: 1rem; background: rgba(20,20,20,0.95); border: 1px solid rgba(255,77,0,0.3); box-shadow: 0 0 60px rgba(255,77,0,0.1); }
.free-card .emoji { font-size: 2rem; margin-bottom: 0.75rem; }
.free-card h2 { font-size: clamp(1.75rem, 3vw, 2.25rem); margin-bottom: 0.75rem; }
.tag-row { display: flex; flex-wrap: wrap; gap: 0.75rem 1.1rem; justify-content: center; margin: 1.25rem 0; color: var(--text-2); font-size: 0.9rem; }

.tiers { display: grid; grid-template-columns: repeat(2,1fr); gap: 0.75rem; max-width: 40rem; margin: 0 auto 1.5rem; }
@media (min-width: 640px) { .tiers { grid-template-columns: repeat(4,1fr); } }
.tier { position: relative; background: #0F0F0F; border: 1px solid rgba(255,255,255,0.06); border-radius: 0.75rem; padding: 1rem; text-align: center; }
.tier.hi { background: rgba(255,77,0,0.08); border-color: rgba(255,77,0,0.35); box-shadow: 0 0 24px rgba(255,77,0,0.12); }
.tier-pop { position: absolute; top: -0.6rem; left: 50%; transform: translateX(-50%); background: #FF4D00; color: #fff; font-family: var(--font-display); font-size: 0.65rem; font-weight: 700; padding: 0.15rem 0.5rem; border-radius: 999px; letter-spacing: 0.06em; }
.tier-price { font-family: var(--font-display); font-size: 1.6rem; font-weight: 700; color: var(--text); }
.tier.hi .tier-price { color: var(--accent); }
.tier-cr { color: var(--text-2); font-size: 0.9rem; }
.tier-per { color: var(--muted); font-family: var(--font-mono); font-size: 0.7rem; }

.blog-3 { display: grid; gap: 1rem; }
@media (min-width: 768px) { .blog-3 { grid-template-columns: repeat(3,1fr); } }
.blog-teaser { display: block; background: #0F0F0F; border: 1px solid rgba(255,255,255,0.06); border-radius: 0.75rem; padding: 1.35rem; text-decoration: none; color: inherit; transition: border-color .15s; }
.blog-teaser:hover { border-color: rgba(255,77,0,0.25); text-decoration: none; }
.blog-teaser .meta { display: flex; gap: 0.6rem; align-items: center; margin-bottom: 0.6rem; font-size: 0.75rem; color: var(--muted); }
.blog-teaser .cat { background: rgba(255,77,0,0.12); color: var(--accent); padding: 0.15rem 0.45rem; border-radius: 0.25rem; font-family: var(--font-mono); }
.blog-teaser h3 { font-size: 1.05rem; margin: 0 0 0.5rem; color: var(--text); }
.blog-teaser p { margin: 0; font-size: 0.9rem; color: var(--muted); }

.faq-wrap { display: grid; gap: 0.65rem; }
.faq-d { background: #0F0F0F; border: 1px solid rgba(255,255,255,0.06); border-radius: 0.75rem; overflow: hidden; }
.faq-d summary { list-style: none; cursor: pointer; padding: 1rem 1.15rem; color: var(--text); font-weight: 500; display: flex; justify-content: space-between; gap: 1rem; }
.faq-d summary::-webkit-details-marker { display: none; }
.faq-d summary::after { content: "›"; color: var(--accent); font-size: 1.2rem; transition: transform .15s; }
.faq-d[open] summary::after { transform: rotate(90deg); }
.faq-a { padding: 0 1.15rem 1.1rem; color: var(--muted); font-size: 0.95rem; line-height: 1.65; }

.final-cta { position: relative; padding: 6rem 0; }
.final-cta .lead-soft { color: var(--text-2); font-size: 1.1rem; max-width: 32rem; margin: 0 auto 1.5rem; }
.magma-btn.lg { padding: 1rem 2rem; font-size: 1.1rem; }

.tool-page .crumbs { font-size: 0.85rem; color: var(--muted); margin-bottom: 0.75rem; }
.tool-page .crumbs a { color: var(--muted); }
.tool-page .long { font-size: 1.05rem; line-height: 1.75; color: var(--text-2); max-width: 48rem; }
.tool-page .mb { margin-bottom: 2.5rem; }
.tool-page .prose-block { margin-bottom: 2rem; }
.tool-hero-img.placeholder { display: grid; place-items: center; font-family: var(--font-display); letter-spacing: 0.12em; color: var(--muted); min-height: 16rem; border: 1px solid var(--border); border-radius: 1rem; background: var(--surface); }
.seo-chip-row { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1rem; }
.seo-chip-row a { font-size: 0.75rem; color: var(--text-2); border: 1px solid var(--border); border-radius: 999px; padding: 0.3rem 0.65rem; text-decoration: none; }
.seo-chip-row a:hover { border-color: rgba(255,77,0,0.4); color: var(--text); }
.workflow-banner h3 { color: var(--text); }
.table-wrap { overflow-x: auto; }

/* Image-heavy tiles */
.tool-tile-img .tool-thumb {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 0.5rem;
  overflow: hidden;
  background: #0a0a0a;
  border: 1px solid rgba(255,255,255,0.06);
}
.tool-tile-img .tool-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.tool-tile-img { padding: 0.5rem; }
.style-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .style-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .style-grid { grid-template-columns: 1fr 1fr 1fr; } }
.style-card {
  display: flex;
  flex-direction: column;
  background: #0A0A0A;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 0.85rem;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: border-color .15s, transform .15s;
}
.style-card:hover { border-color: rgba(255,77,0,0.35); transform: translateY(-2px); text-decoration: none; }
.style-img { aspect-ratio: 4/3; background: #111; overflow: hidden; }
.style-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.style-body { padding: 1rem 1.1rem 1.15rem; }
.style-top { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.4rem; flex-wrap: wrap; }
.style-top h3 { margin: 0; font-size: 1.15rem; flex: 1; }
.style-top .cr { font-family: var(--font-mono); font-size: 0.7rem; color: #FFB800; margin-left: auto; }
.nsfw { font-family: var(--font-display); font-size: 0.65rem; font-weight: 700; background: rgba(255,77,0,0.15); color: #FF4D00; padding: 0.1rem 0.4rem; border-radius: 0.25rem; }
.style-body p { margin: 0 0 0.6rem; font-size: 0.85rem; color: var(--muted); }
.style-body .try { font-size: 0.8rem; color: var(--accent); font-weight: 600; }
.hint-banner {
  margin: 0 0 1.5rem;
  padding: 0.9rem 1.1rem;
  border-radius: 0.75rem;
  background: rgba(59,130,246,0.08);
  border: 1px solid rgba(59,130,246,0.25);
  color: var(--text-2);
  font-size: 0.9rem;
}
.hint-banner strong { display: block; color: #60A5FA; font-family: var(--font-display); letter-spacing: 0.05em; margin-bottom: 0.25rem; }
.pill-row { margin-bottom: 1rem; }
.pill {
  display: inline-flex;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--accent);
  background: rgba(255,77,0,0.1);
  border: 1px solid rgba(255,77,0,0.3);
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
}
.genai-hero .glow { color: var(--accent); text-shadow: 0 0 30px rgba(255,77,0,0.4); }
.price-tier-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 1rem;
  border-radius: 0.5rem;
  background: rgba(15,15,15,0.9);
  border: 1px solid rgba(255,77,0,0.1);
  margin-bottom: 0.5rem;
}
.ptr-range { font-family: var(--font-display); font-weight: 700; color: var(--text); }
.ptr-rate { color: var(--accent); font-size: 0.9rem; }
.ptr-ex { color: var(--muted); font-size: 0.85rem; text-align: right; }
.accent-line { color: var(--accent); font-weight: 600; }
.mb-xl { margin-bottom: 2.5rem; }
.deep-page .emoji { font-size: 1.75rem; margin-bottom: 0.5rem; }
.tier-list { margin-top: 1rem; }

/* Live-style overview rows (icon + text, not photo thumbnails) */
.style-card-row {
  flex-direction: row;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.1rem 1.15rem;
}
.style-card-row .style-ico {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 12px;
  display: grid;
  place-items: center;
}
.style-card-row .style-ico img {
  width: 26px;
  height: 26px;
  filter: brightness(0) invert(1);
  opacity: 0.85;
}
.style-card-row .style-body { padding: 0; flex: 1; min-width: 0; }

/* Expansion sections — text-dense, no mid-flow brand images */
.expand-sec { padding: 3.5rem 0; }
.expand-sec .container > p { max-width: 48rem; }
.expand-sec .check-list { margin-top: 1.25rem; max-width: 40rem; }
.expand-sec .step-card p + p { margin-top: 0.75rem; color: var(--muted); font-size: 0.92rem; }
.page-hero-sec { padding-top: calc(var(--nav-h) + 2rem); }

/* Niche / solutions heroes with product card art as full-bleed background */
.page-hero-bg {
  position: relative;
  padding-top: calc(var(--nav-h) + 2.5rem);
  padding-bottom: 3.5rem;
  margin-bottom: 0;
  border-bottom: 1px solid rgba(255, 77, 0, 0.12);
  min-height: 22rem;
  display: flex;
  align-items: flex-end;
}
.page-hero-bg .container {
  position: relative;
  z-index: 1;
  width: 100%;
}
.page-hero-bg .hero-copy-panel {
  background: linear-gradient(135deg, rgba(5, 5, 5, 0.55) 0%, rgba(5, 5, 5, 0.28) 100%);
  border: 1px solid rgba(255, 77, 0, 0.18);
  border-radius: 1rem;
  padding: 1.5rem 1.75rem;
  backdrop-filter: blur(6px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.45);
}
.page-hero-bg .hero-copy-panel h1 {
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.85);
  color: #f5f2ed;
}
.page-hero-bg .hero-copy-panel .hero-lead,
.page-hero-bg .hero-copy-panel p {
  color: rgba(240, 237, 232, 0.92) !important;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.75);
}
.page-hero-bg .hero-crumb,
.page-hero-bg .hero-crumb a {
  color: rgba(240, 237, 232, 0.75) !important;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.7);
}
.page-hero-bg .btn-ghost {
  background: rgba(5, 5, 5, 0.45);
  border-color: rgba(255, 255, 255, 0.18);
  color: #f0ede8;
}
.page-hero-bg .btn-ghost:hover {
  border-color: rgba(255, 77, 0, 0.45);
}
