/* ==========================================================================
   skylumo - Paper Brutalist Visual Identity
   Theme: Off-White Paper Canvas + Dot Grain + Black Typography + Square Brutalist UI
   Typography: Space Grotesk (Headings & Buttons) + Plus Jakarta Sans (Body) + JetBrains Mono (Data)
   ========================================================================== */

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

:root {
  /* Paper Palette */
  --bg-canvas: #f7f4ee;
  --bg-surface: #ffffff;
  --bg-surface-elevated: #faf8f2;
  
  /* Paper Color Tints */
  --tint-yellow: #fff9c4;
  --tint-yellow-light: #fffde7;
  --tint-green: #bbf7d0;
  --tint-green-light: #f0fdf4;
  --tint-blue: #bae6fd;
  --tint-blue-light: #f0f9ff;
  --tint-purple: #e9d5ff;
  --tint-purple-light: #faf5ff;
  --tint-rose: #fbcfe8;
  --tint-rose-light: #fff1f2;
  --tint-orange: #fed7aa;

  /* Black & Dark Typography */
  --text-bright: #000000;
  --text-muted: #1e1e1e;
  --text-dim: #3a3a3a;
  
  /* Brutalist Black Borders & Shadows */
  --border-black: #000000;
  --border-subtle: #000000;
  --shadow-brutal-sm: 3px 3px 0px #000000;
  --shadow-brutal-md: 5px 5px 0px #000000;
  --shadow-brutal-lg: 8px 8px 0px #000000;
  
  /* Fonts */
  --font-heading: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'JetBrains Mono', Consolas, monospace;
  
  /* Brutalist Square Corners */
  --radius-xs: 0px;
  --radius-sm: 0px;
  --radius-md: 0px;
  --radius-lg: 0px;
  --radius-pill: 0px;
  
  --transition-fast: 0.15s ease-out;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-canvas);
  color: var(--text-bright);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* --------------------------------------------------------------------------
   Off-White Paper Background & Tactile Dot Grain Overlay
   -------------------------------------------------------------------------- */
body {
  min-height: 100vh;
  overflow-x: hidden;
  background-color: var(--bg-canvas);
  color: var(--text-bright);
  position: relative;
}

/* Tactile Dot Grain Overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: radial-gradient(circle, rgba(0, 0, 0, 0.18) 1.2px, transparent 1.2px);
  background-size: 16px 16px;
  background-position: 0 0;
  pointer-events: none;
  z-index: -1;
}

/* Paper Micro Texture Noise */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background: 
    linear-gradient(90deg, rgba(0,0,0,0.015) 1px, transparent 1px) 0 0 / 40px 40px,
    linear-gradient(rgba(0,0,0,0.015) 1px, transparent 1px) 0 0 / 40px 40px;
  pointer-events: none;
  z-index: -1;
}

/* Hide smooth waves to showcase paper brutalist texture */
.wave-layer-container {
  display: none !important;
}

a {
  color: #000000;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
  font-weight: 700;
  transition: all var(--transition-fast);
}

a:hover {
  background-color: var(--tint-yellow);
  color: #000000;
}

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

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* --------------------------------------------------------------------------
   Crisp Black Typography & Square Badges
   -------------------------------------------------------------------------- */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--text-bright);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.gradient-title {
  color: #000000 !important;
  background: var(--tint-yellow);
  padding: 0.1em 0.3em;
  border: 2px solid #000000;
  box-shadow: 3px 3px 0px #000000;
  display: inline-block;
}

.cyber-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 1.25rem;
  background: var(--tint-yellow);
  border: 2.5px solid #000000;
  border-radius: 0px !important;
  color: #000000;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-brutal-sm);
}

.pulse-indicator {
  width: 10px;
  height: 10px;
  background-color: #000000;
  border-radius: 0px;
  animation: pulse-ring 1.5s infinite steps(2);
}

@keyframes pulse-ring {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.3; transform: scale(0.8); }
}

.section-head {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 4rem auto;
}

.section-head h2 {
  font-size: 2.5rem;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
}

.section-head p {
  color: var(--text-muted);
  font-size: 1.15rem;
  font-weight: 600;
}

/* --------------------------------------------------------------------------
   Square Brutalist Buttons
   -------------------------------------------------------------------------- */
.btn-cyber {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.95rem 2.25rem;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 800;
  border-radius: 0px !important;
  border: 2.5px solid #000000 !important;
  cursor: pointer;
  position: relative;
  white-space: nowrap;
  text-decoration: none !important;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  transition: transform 0.1s ease, box-shadow 0.1s ease, background-color 0.1s ease;
}

.btn-cyber-primary {
  background: #000000 !important;
  color: #ffffff !important;
  box-shadow: var(--shadow-brutal-md) !important;
}

.btn-cyber-primary:hover {
  background: #ffde59 !important;
  color: #000000 !important;
  transform: translate(-2px, -2px) !important;
  box-shadow: 7px 7px 0px #000000 !important;
}

.btn-cyber-primary:active {
  transform: translate(2px, 2px) !important;
  box-shadow: 2px 2px 0px #000000 !important;
}

.btn-cyber-secondary {
  background: #ffffff !important;
  color: #000000 !important;
  box-shadow: var(--shadow-brutal-md) !important;
}

.btn-cyber-secondary:hover {
  background: var(--tint-blue) !important;
  color: #000000 !important;
  transform: translate(-2px, -2px) !important;
  box-shadow: 7px 7px 0px #000000 !important;
}

.btn-cyber-secondary:active {
  transform: translate(2px, 2px) !important;
  box-shadow: 2px 2px 0px #000000 !important;
}

/* --------------------------------------------------------------------------
   Square Brutalist Navbar
   -------------------------------------------------------------------------- */
.navbar-wrapper {
  position: sticky;
  top: 1rem;
  z-index: 100;
  padding: 0 1.5rem;
}

.site-navbar {
  max-width: 1200px;
  margin: 0 auto;
  background: #ffffff;
  border: 2.5px solid #000000;
  border-radius: 0px !important;
  padding: 0.75rem 1.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: var(--shadow-brutal-md);
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-bright);
  text-decoration: none !important;
  letter-spacing: -0.03em;
}

.brand-symbol {
  width: 40px;
  height: 40px;
  background: #000000;
  border: 2px solid #000000;
  border-radius: 0px !important;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 900;
  font-family: var(--font-mono);
  box-shadow: 3px 3px 0px #ffde59;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  list-style: none;
}

.nav-item-link {
  color: #000000;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none !important;
  padding: 0.35rem 0.75rem;
  border: 2px solid transparent;
  transition: all var(--transition-fast);
}

.nav-item-link:hover, .nav-item-link.active {
  background: var(--tint-yellow);
  border-color: #000000;
  box-shadow: 2px 2px 0px #000000;
  color: #000000;
}

.mobile-burger {
  display: none;
  background: #ffffff;
  border: 2.5px solid #000000;
  border-radius: 0px !important;
  padding: 0.3rem 0.6rem;
  color: var(--text-bright);
  font-size: 1.5rem;
  cursor: pointer;
  box-shadow: 3px 3px 0px #000000;
}

/* --------------------------------------------------------------------------
   Hero Section & Brutalist Radar Terminal
   -------------------------------------------------------------------------- */
.hero-wrapper {
  padding: 6rem 0 5rem 0;
}

.hero-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}

.hero-text-block h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
}

.hero-text-block p {
  font-size: 1.25rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  max-width: 580px;
  font-weight: 600;
}

.hero-actions {
  display: flex;
  gap: 1.25rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.hero-metrics-strip {
  display: flex;
  gap: 2.5rem;
  border-top: 2.5px solid #000000;
  padding-top: 2rem;
}

.metric-strip-item {
  display: flex;
  flex-direction: column;
}

.metric-strip-val {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  color: #000000;
}

.metric-strip-lbl {
  font-size: 0.85rem;
  color: var(--text-dim);
  font-weight: 700;
  text-transform: uppercase;
}

/* Radar Terminal Card - Brutalist Paper Block */
.radar-terminal {
  background: #ffffff;
  border: 2.5px solid #000000;
  border-radius: 0px !important;
  padding: 2.25rem;
  box-shadow: var(--shadow-brutal-lg);
  position: relative;
}

.radar-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 1rem;
  margin-bottom: 1.5rem;
  border-bottom: 2.5px solid #000000;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 800;
}

.radar-nodes-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.radar-node-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--bg-canvas);
  border: 2px solid #000000;
  border-radius: 0px !important;
  padding: 0.9rem 1.25rem;
  box-shadow: var(--shadow-brutal-sm);
  transition: all var(--transition-fast);
}

.radar-node-row:hover {
  background: var(--tint-yellow);
  transform: translate(-2px, -2px);
  box-shadow: 5px 5px 0px #000000;
}

.node-region {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-weight: 800;
  font-size: 0.95rem;
  color: #000000;
}

.node-latency-pill {
  font-family: var(--font-mono);
  font-size: 0.825rem;
  padding: 0.35rem 0.85rem;
  border: 2px solid #000000;
  border-radius: 0px !important;
  font-weight: 800;
  background: #ffffff;
  color: #000000;
  box-shadow: 2px 2px 0px #000000;
}

.radar-node-row:nth-child(1) .node-latency-pill { background: var(--tint-green); }
.radar-node-row:nth-child(2) .node-latency-pill { background: var(--tint-blue); }
.radar-node-row:nth-child(3) .node-latency-pill { background: var(--tint-yellow); }
.radar-node-row:nth-child(4) .node-latency-pill { background: var(--tint-rose); }

/* --------------------------------------------------------------------------
   Square Brutalist Bento Grid Cards
   -------------------------------------------------------------------------- */
.bento-section {
  padding: 6rem 0;
}

.masonry-bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.bento-box {
  background: #ffffff;
  border: 2.5px solid #000000;
  border-radius: 0px !important;
  padding: 2.25rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-brutal-md);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.bento-box:nth-child(1) { background: var(--tint-blue-light); }
.bento-box:nth-child(2) { background: var(--tint-purple-light); }
.bento-box:nth-child(3) { background: var(--tint-green-light); }
.bento-box:nth-child(4) { background: var(--tint-yellow-light); }
.bento-box:nth-child(5) { background: var(--tint-rose-light); }

.bento-box:hover {
  transform: translate(-3px, -3px);
  box-shadow: var(--shadow-brutal-lg);
}

.bento-box.span-2 {
  grid-column: span 2;
}

.bento-icon-wrapper {
  width: 58px;
  height: 58px;
  border-radius: 0px !important;
  background: #ffffff;
  border: 2.5px solid #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.75rem;
  color: #000000;
  box-shadow: var(--shadow-brutal-sm);
}

.bento-box h3 {
  font-size: 1.4rem;
  margin-bottom: 0.85rem;
  text-transform: uppercase;
}

.bento-box p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.65;
  font-weight: 600;
}

/* --------------------------------------------------------------------------
   Brutalist Ecosystem Matrix (AI & Streaming)
   -------------------------------------------------------------------------- */
.ecosystem-section {
  padding: 6rem 0;
}

.matrix-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}

.matrix-card {
  background: #ffffff;
  border: 2.5px solid #000000;
  border-radius: 0px !important;
  padding: 2.75rem;
  box-shadow: var(--shadow-brutal-md);
}

.matrix-card:nth-child(1) { background: var(--tint-purple-light); }
.matrix-card:nth-child(2) { background: var(--tint-rose-light); }

.matrix-head {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.matrix-head h3 {
  font-size: 1.5rem;
  text-transform: uppercase;
}

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

.chip-tag {
  border: 2px solid #000000;
  padding: 0.5rem 1.15rem;
  border-radius: 0px !important;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 800;
  background: #ffffff;
  color: #000000;
  box-shadow: 2px 2px 0px #000000;
}

.tag-cloud .chip-tag:nth-child(1) { background: var(--tint-yellow); }
.tag-cloud .chip-tag:nth-child(2) { background: var(--tint-rose); }
.tag-cloud .chip-tag:nth-child(3) { background: var(--tint-blue); }
.tag-cloud .chip-tag:nth-child(4) { background: var(--tint-green); }
.tag-cloud .chip-tag:nth-child(5) { background: var(--tint-purple); }
.tag-cloud .chip-tag:nth-child(6) { background: var(--tint-orange); }

/* --------------------------------------------------------------------------
   Square Brutalist SaaS Pricing Cards
   -------------------------------------------------------------------------- */
.pricing-wrapper {
  padding: 6rem 0;
}

.pricing-layout {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: stretch;
}

.tier-card {
  background: #ffffff;
  border: 2.5px solid #000000;
  border-radius: 0px !important;
  padding: 3.25rem 2.25rem;
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: var(--shadow-brutal-md);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.tier-card:nth-child(1) { background: var(--tint-blue-light); }

.tier-card.highlighted {
  background: var(--tint-yellow-light);
  box-shadow: var(--shadow-brutal-lg);
  transform: translateY(-8px);
  border-width: 3px;
}

.tier-card:nth-child(3) { background: var(--tint-green-light); }

.recommended-ribbon {
  position: absolute;
  top: -16px;
  right: 1.5rem;
  background: #000000;
  color: #ffffff;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 800;
  padding: 0.4rem 1.25rem;
  border-radius: 0px !important;
  border: 2px solid #000000;
  text-transform: uppercase;
  box-shadow: 3px 3px 0px #ffde59;
}

.tier-name {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.tier-price {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 800;
  color: #000000;
  margin: 1.5rem 0;
}

.tier-price span {
  font-size: 1rem;
  color: var(--text-dim);
  font-weight: 700;
}

.tier-features {
  list-style: none;
  margin: 1.5rem 0 2.5rem 0;
  flex: 1;
}

.tier-features li {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1rem;
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 600;
}

.tier-features li svg {
  color: #000000;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   Square Brutalist SEO Content Hub Cards (3x3)
   -------------------------------------------------------------------------- */
.hub-section {
  padding: 6rem 0;
}

.hub-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.hub-card {
  background: #ffffff;
  border: 2.5px solid #000000;
  border-radius: 0px !important;
  padding: 2.25rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-brutal-md);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.hub-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: var(--shadow-brutal-lg);
  background: var(--tint-yellow-light);
}

.hub-cat {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 800;
  color: #000000;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
  background: var(--tint-yellow);
  padding: 0.2rem 0.6rem;
  display: inline-block;
  border: 1.5px solid #000000;
  box-shadow: 2px 2px 0px #000000;
}

.hub-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.85rem;
}

.hub-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.hub-foot {
  display: flex;
  justify-content: space-between;
  font-size: 0.825rem;
  color: var(--text-dim);
  border-top: 2px solid #000000;
  padding-top: 1rem;
  font-weight: 700;
}

/* --------------------------------------------------------------------------
   Brutalist Reviews & FAQ Accordion
   -------------------------------------------------------------------------- */
.reviews-section {
  padding: 6rem 0;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.review-card {
  background: #ffffff;
  border: 2.5px solid #000000;
  border-radius: 0px !important;
  padding: 2.25rem;
  box-shadow: var(--shadow-brutal-md);
}

.review-card:nth-child(1) { background: var(--tint-yellow-light); }
.review-card:nth-child(2) { background: var(--tint-rose-light); }
.review-card:nth-child(3) { background: var(--tint-green-light); }

.review-text {
  font-size: 1.05rem;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.review-user {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.user-avatar {
  width: 44px;
  height: 44px;
  border-radius: 0px !important;
  background: #000000;
  border: 2px solid #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: #fff;
  font-family: var(--font-mono);
  box-shadow: 2px 2px 0px #ffde59;
}

.faq-section {
  padding: 6rem 0;
}

.faq-box {
  max-width: 860px;
  margin: 0 auto;
}

.faq-row {
  background: #ffffff;
  border: 2.5px solid #000000;
  border-radius: 0px !important;
  margin-bottom: 1.25rem;
  overflow: hidden;
  box-shadow: var(--shadow-brutal-sm);
  transition: all var(--transition-fast);
}

.faq-row:hover {
  box-shadow: var(--shadow-brutal-md);
}

.faq-btn {
  width: 100%;
  padding: 1.5rem 1.75rem;
  background: none;
  border: none;
  color: var(--text-bright);
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-chevron {
  transition: transform 0.2s ease;
  font-size: 1.5rem;
  color: #000000;
  font-weight: 900;
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 1.75rem;
  color: var(--text-muted);
  font-weight: 600;
}

.faq-row.active {
  background: var(--tint-yellow-light);
  box-shadow: var(--shadow-brutal-md);
}

.faq-row.active .faq-content {
  padding-bottom: 1.5rem;
  max-height: 500px;
}

.faq-row.active .faq-chevron {
  transform: rotate(45deg);
}

/* --------------------------------------------------------------------------
   Brutalist Architectural Footer
   -------------------------------------------------------------------------- */
.site-footer {
  background: var(--bg-surface-elevated);
  border-top: 3px solid #000000;
  padding: 5rem 0 2.5rem 0;
}

.footer-columns {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 3.5rem;
  margin-bottom: 4rem;
}

.footer-manifesto p {
  color: var(--text-muted);
  font-size: 0.975rem;
  margin-top: 1.25rem;
  max-width: 340px;
  font-weight: 600;
}

.footer-col-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: var(--text-bright);
  text-transform: uppercase;
}

.footer-menu {
  list-style: none;
}

.footer-menu li {
  margin-bottom: 0.85rem;
}

.footer-menu a {
  color: var(--text-muted);
  font-size: 0.95rem;
  text-decoration: none;
}

.footer-menu a:hover {
  background: var(--tint-yellow);
  color: #000000;
}

.footer-base {
  border-top: 2.5px solid #000000;
  padding-top: 2.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  text-align: center;
}

.footer-copy {
  font-size: 0.9rem;
  color: var(--text-dim);
  font-weight: 700;
}

.footer-partner-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--text-dim);
}

.footer-partner-links a {
  color: #000000;
  font-weight: 700;
  text-decoration: underline;
}

.footer-partner-links a:hover {
  background: var(--tint-yellow);
}

/* --------------------------------------------------------------------------
   Brutalist SEO Article Page Styles
   -------------------------------------------------------------------------- */
.article-header {
  padding: 4rem 0 2rem 0;
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-dim);
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.breadcrumb a {
  color: #000000;
}

.article-body {
  max-width: 820px;
  margin: 0 auto 5rem auto;
  background: #ffffff;
  border: 2.5px solid #000000;
  border-radius: 0px !important;
  padding: 3.5rem 3rem;
  box-shadow: var(--shadow-brutal-lg);
}

.article-body h2 {
  font-size: 1.75rem;
  margin: 2.25rem 0 1rem 0;
  padding-bottom: 0.5rem;
  border-bottom: 2.5px solid #000000;
  color: var(--text-bright);
}

.article-body h3 {
  font-size: 1.35rem;
  margin: 1.75rem 0 0.75rem 0;
  color: var(--text-bright);
}

.article-body p {
  color: #1e1e1e;
  margin-bottom: 1.35rem;
  font-size: 1.05rem;
  line-height: 1.8;
  font-weight: 500;
}

.article-body ul, .article-body ol {
  margin: 0 0 1.5rem 1.5rem;
  color: #1e1e1e;
  font-weight: 600;
}

.article-body li {
  margin-bottom: 0.5rem;
}

.article-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 1.75rem 0;
  font-size: 0.95rem;
  border-radius: 0px !important;
  overflow: hidden;
  border: 2.5px solid #000000;
  box-shadow: var(--shadow-brutal-sm);
}

.article-table th, .article-table td {
  padding: 0.9rem 1.1rem;
  border-bottom: 2px solid #000000;
  border-right: 2px solid #000000;
  text-align: left;
  font-weight: 600;
}

.article-table th:last-child, .article-table td:last-child {
  border-right: none;
}

.article-table tr:last-child td {
  border-bottom: none;
}

.article-table th {
  background: var(--tint-yellow);
  color: #000000;
  font-weight: 800;
  font-family: var(--font-heading);
}

.article-cta-box {
  background: var(--tint-yellow-light);
  border: 2.5px solid #000000;
  border-radius: 0px !important;
  padding: 2.5rem;
  text-align: center;
  margin: 2.5rem 0;
  box-shadow: var(--shadow-brutal-md);
}

.article-cta-box h3 {
  margin-top: 0;
  color: var(--text-bright);
  font-size: 1.6rem;
  text-transform: uppercase;
}

.related-articles {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 2.5px solid #000000;
}

/* --------------------------------------------------------------------------
   Responsive Breakpoints
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .hero-layout {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }
  
  .masonry-bento, .pricing-layout, .hub-grid, .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .bento-box.span-2 {
    grid-column: span 2;
  }
  
  .footer-columns {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .hero-text-block h1 {
    font-size: 2.5rem;
  }
  
  .nav-links {
    position: fixed;
    top: 5rem;
    left: 1.5rem;
    right: 1.5rem;
    background: #ffffff;
    border: 2.5px solid #000000;
    border-radius: 0px !important;
    flex-direction: column;
    padding: 2rem;
    display: none;
    box-shadow: var(--shadow-brutal-lg);
  }
  
  .nav-links.active {
    display: flex;
  }
  
  .mobile-burger {
    display: block;
  }
  
  .masonry-bento, .matrix-grid, .pricing-layout, .hub-grid, .reviews-grid {
    grid-template-columns: 1fr;
  }
  
  .bento-box.span-2 {
    grid-column: span 1;
  }
  
  .footer-columns {
    grid-template-columns: 1fr;
  }

  .article-body {
    padding: 2rem 1.5rem;
    border-radius: 0px !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
