/* PixelPros.ai — Retro Neon Professional
   80s pixel nostalgia + modern agency polish */

:root {
  --bg: #07060f;
  --bg-elevated: #0e0c18;
  --bg-card: #12101c;
  --bg-card-hover: #1a1728;
  --bg-dark: #04030a;
  --bg-dark-elevated: #12101c;
  --border: rgba(0, 255, 200, 0.12);
  --border-strong: rgba(255, 45, 149, 0.28);
  --text: #f4f0ff;
  --text-muted: #a89ec4;
  --text-dim: #6e6490;
  --primary: #00f0c8;
  --primary-hover: #5dffe0;
  --primary-dim: rgba(0, 240, 200, 0.12);
  --primary-glow: rgba(0, 240, 200, 0.4);
  --accent: #ff2d95;
  --accent-dim: rgba(255, 45, 149, 0.14);
  --success: #39ff14;
  --warning: #ffd60a;
  --danger: #ff3b5c;
  --gradient: linear-gradient(135deg, #00f0c8 0%, #7b61ff 50%, #ff2d95 100%);
  --gradient-soft: linear-gradient(180deg, rgba(0, 240, 200, 0.08), transparent 60%);
  --font-sans: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-pixel: "Press Start 2P", ui-monospace, monospace;
  --radius: 4px;
  --radius-lg: 8px;
  --radius-xl: 12px;
  --shadow: 0 0 0 1px rgba(0, 240, 200, 0.15), 0 0 40px rgba(255, 45, 149, 0.12), 0 20px 50px rgba(0,0,0,0.5);
  --shadow-soft: 0 0 0 1px rgba(0, 240, 200, 0.1), 0 12px 32px rgba(0,0,0,0.4);
  --container: 1040px;
  --container-wide: 1180px;
  --header-h: 56px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.47059;
  font-size: 17px;
  font-weight: 400;
  letter-spacing: -0.022em;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button, input, select, textarea { font: inherit; color: inherit; }

.container {
  width: min(100% - 2.5rem, var(--container));
  margin-inline: auto;
}
.container-wide {
  width: min(100% - 2.5rem, var(--container-wide));
  margin-inline: auto;
}

/* Hide tech chrome from older design */
.bg-grid {
  display: block !important;
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    linear-gradient(rgba(0, 240, 200, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 45, 149, 0.035) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(ellipse 100% 70% at 50% 0%, black 20%, transparent 75%);
}
.glow-orb { display: none !important; }
body::after {
  content: "";
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 500;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0, 0, 0, 0.12) 2px,
    rgba(0, 0, 0, 0.12) 4px
  );
  opacity: 0.35;
  mix-blend-mode: multiply;
}
@media (prefers-reduced-motion: reduce) {
  body::after { display: none; }
}

/* Skip link */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--primary);
  color: #07060f;
  padding: 0.75rem 1rem;
  z-index: 1000;
  border-radius: 8px;
}
.skip-link:focus { left: 1rem; top: 1rem; }

/* ========== Header (Apple-like translucent bar) ========== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(7, 6, 15, 0.85);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid rgba(0, 240, 200, 0.15);
  transition: background 0.3s var(--ease);
}
.site-header.is-scrolled {
  background: rgba(7, 6, 15, 0.94);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(100% - 1.5rem, var(--container-wide));
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: -0.03em;
  color: var(--text);
}
.logo-mark {
  width: 28px;
  height: 28px;
  border-radius: 4px;
  background: transparent;
  color: transparent;
  display: grid;
  place-items: center;
  font-size: 0;
  font-weight: 700;
  letter-spacing: 0;
  background-image: url("/assets/brand/logo-mac-neon.jpg");
  background-size: cover;
  background-position: center;
  box-shadow: 0 0 16px var(--primary-glow);
  image-rendering: pixelated;
}
.logo-mark img { width: 100%; height: 100%; object-fit: cover; border-radius: 4px; }
.logo {
  image-rendering: auto;
}
.logo .logo-text-pixel {
  font-family: var(--font-pixel);
  font-size: 0.55rem;
  letter-spacing: 0.04em;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.logo span { color: var(--text); font-weight: 600; }

.nav {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}
.nav a {
  padding: 0.35rem 0.7rem;
  color: var(--text);
  font-size: 0.75rem;
  font-weight: 400;
  opacity: 0.88;
  border-radius: 980px;
  transition: opacity 0.2s, background 0.2s;
}
.nav a:hover,
.nav a[aria-current="page"] {
  opacity: 1;
  background: rgba(0, 240, 200, 0.08);
}
.nav-cta { display: none; }

.menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 980px;
  background: transparent;
  cursor: pointer;
  place-items: center;
  gap: 5px;
  flex-direction: column;
}
.menu-toggle span {
  display: block;
  width: 16px;
  height: 1.5px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.25s var(--ease), opacity 0.2s;
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ========== Buttons ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.75rem 1.35rem;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  border: 0;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, transform 0.2s var(--ease), box-shadow 0.2s, opacity 0.2s;
  white-space: nowrap;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 0.78rem;
}
.btn:hover { transform: scale(1.02); }
.btn:active { transform: scale(0.98); }
.btn-primary {
  background: var(--primary);
  color: #07060f;
}
.btn-primary:hover { background: var(--primary-hover); }
.btn-secondary {
  background: transparent;
  color: var(--primary);
  border: 0;
  padding-inline: 0.5rem;
  font-weight: 400;
}
.btn-secondary:hover {
  background: transparent;
  text-decoration: underline;
  text-underline-offset: 3px;
  transform: none;
}
.btn-secondary::after {
  content: " ›";
  font-weight: 500;
}
.btn-dark {
  background: var(--text);
  color: #07060f;
}
.btn-dark:hover { background: #000; }
.btn-ghost {
  background: transparent;
  color: var(--primary);
  padding-inline: 0.5rem;
}
.btn-ghost:hover { text-decoration: underline; text-underline-offset: 3px; }
.btn-lg {
  padding: 0.85rem 1.6rem;
  font-size: 1.05rem;
}
.btn-block { width: 100%; }

/* ========== Typography ========== */
.eyebrow {
  display: block;
  font-family: var(--font-pixel);
  font-size: 0.58rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--primary);
  margin-bottom: 1rem;
  text-transform: uppercase;
  text-shadow: 0 0 12px var(--primary-glow);
  line-height: 1.6;
}
.eyebrow::before { display: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.07;
  color: var(--text);
}
h1 {
  font-size: clamp(2.5rem, 6.5vw, 4.5rem);
  font-weight: 600;
  letter-spacing: -0.03em;
}
h2 {
  font-size: clamp(1.75rem, 3.8vw, 2.75rem);
  letter-spacing: -0.025em;
}
h3 { font-size: 1.2rem; letter-spacing: -0.02em; line-height: 1.2; }

.lead {
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  color: var(--text-muted);
  line-height: 1.4;
  font-weight: 400;
  letter-spacing: -0.016em;
  max-width: 32em;
}

.section-head {
  max-width: 640px;
  margin-bottom: 3.5rem;
}
.section-head.center {
  margin-inline: auto;
  text-align: center;
}
.section-head.center .lead { margin-inline: auto; }
.section-head p { margin-top: 0.85rem; color: var(--text-muted); }

/* ========== Sections ========== */
main { position: relative; z-index: 1; }
.section {
  padding: 5.5rem 0;
}
.section-sm { padding: 3.5rem 0; }
.section-tight { padding: 4rem 0; }
.section-alt {
  background: var(--bg-elevated);
}
.section-dark {
  background: var(--bg-dark);
  color: var(--text);
}
.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark .section-head p,
.section-dark .lead { color: var(--text); }
.section-dark .lead,
.section-dark .section-head p,
.section-dark .muted { color: var(--text-muted); }
.section-dark .eyebrow { color: var(--primary); }
.divider {
  border: 0;
  border-top: 1px solid var(--border);
  margin: 0;
  opacity: 0;
  height: 0;
}

/* ========== Hero ========== */
.hero {
  padding: 4.5rem 0 3.5rem;
  text-align: center;
  background: var(--bg);
}
.hero-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
  max-width: 820px;
  margin-inline: auto;
}
.hero-grid > div:first-child {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero h1 {
  max-width: 14em;
  margin-inline: auto;
}
.hero h1 .grad {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: none;
  filter: drop-shadow(0 0 20px rgba(0, 240, 200, 0.35));
}
.hero .lead {
  margin: 1.15rem auto 1.75rem;
  text-align: center;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.25rem;
  margin-bottom: 2rem;
  justify-content: center;
  align-items: center;
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  justify-content: center;
  color: var(--text-dim);
  font-size: 0.8rem;
  letter-spacing: -0.01em;
}
.hero-trust strong { color: var(--text-muted); font-weight: 500; }
.hero-trust li {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.hero-trust li::before {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--text-dim);
}

/* Hero product card — Apple product showcase feel */
.hero-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  text-align: left;
  max-width: 720px;
  margin-inline: auto;
  width: 100%;
}
.hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(0, 240, 200, 0.12), transparent 50%), linear-gradient(225deg, rgba(255, 45, 149, 0.08), transparent 50%);
  pointer-events: none;
}
.hero-card-inner { position: relative; z-index: 1; }
.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.65rem;
  margin-bottom: 1.25rem;
}
.stat {
  background: var(--bg-card);
  border: 0;
  border-radius: var(--radius);
  padding: 1.1rem 0.65rem;
  text-align: center;
  box-shadow: var(--shadow-soft);
}
.stat-value {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--text);
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
}
.stat-label {
  font-size: 0.7rem;
  color: var(--text-dim);
  margin-top: 0.2rem;
  letter-spacing: -0.01em;
}
.hero-list { display: grid; gap: 0.55rem; }
.hero-list li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 0.9rem 1rem;
  background: var(--bg-card);
  border: 0;
  border-radius: 14px;
  font-size: 0.9rem;
  color: var(--text-muted);
  letter-spacing: -0.01em;
  box-shadow: none;
}
.hero-list .icon {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--text);
  color: #07060f;
  display: grid;
  place-items: center;
  font-size: 0.75rem;
  font-weight: 600;
}

/* ========== Cards / grids ========== */
.grid-2 { display: grid; gap: 1rem; grid-template-columns: 1fr; }
.grid-3 { display: grid; gap: 1rem; grid-template-columns: 1fr; }
.grid-4 { display: grid; gap: 1rem; grid-template-columns: 1fr; }

.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  transition: transform 0.35s var(--ease-out), background 0.25s, border-color 0.25s, box-shadow 0.25s;
  box-shadow: inset 0 0 0 1px rgba(255,45,149,0.04);
}
.card:hover {
  border-color: rgba(0, 240, 200, 0.4);
  background: var(--bg-card-hover);
  transform: translateY(-3px);
  box-shadow: 0 0 24px rgba(0, 240, 200, 0.12);
}
.card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--bg-card);
  border: 0;
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  margin-bottom: 1.25rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}
.card h3 { margin-bottom: 0.55rem; font-size: 1.25rem; }
.card p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.45; }
.card ul { margin-top: 1.1rem; display: grid; gap: 0.4rem; }
.card ul li {
  color: var(--text-muted);
  font-size: 0.875rem;
  padding-left: 1rem;
  position: relative;
}
.card ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--text-dim);
  color: transparent;
}

/* Problem / solution */
.problem-grid {
  display: grid;
  gap: 0.85rem;
}
.problem-item {
  display: flex;
  gap: 1rem;
  padding: 1.35rem 1.4rem;
  background: var(--bg-card);
  border: 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}
.problem-item .mark {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 59, 48, 0.1);
  color: var(--danger);
  display: grid;
  place-items: center;
  font-weight: 600;
  font-size: 0.8rem;
}
.problem-item h3 { font-size: 1.05rem; margin-bottom: 0.25rem; }
.problem-item p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.4; }

.benefit-item {
  display: flex;
  gap: 1rem;
  padding: 1.35rem 1.4rem;
  background: var(--bg-card);
  border: 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}
.benefit-item .mark {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(52, 199, 89, 0.12);
  color: var(--success);
  display: grid;
  place-items: center;
  font-weight: 600;
  font-size: 0.8rem;
}
.benefit-item h3 { font-size: 1.05rem; margin-bottom: 0.25rem; }
.benefit-item p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.4; }

/* ========== Pricing ========== */
.pricing-grid {
  display: grid;
  gap: 1rem;
  align-items: stretch;
}
.price-card {
  background: var(--bg-card);
  border: 0;
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  position: relative;
}
.price-card.featured {
  border: 1px solid rgba(0, 240, 200, 0.45);
  box-shadow: 0 0 40px rgba(0, 240, 200, 0.12);
  background: linear-gradient(180deg, rgba(0, 240, 200, 0.1), var(--bg-card) 50%);
  color: var(--text);
}
.price-card.featured .tier { color: var(--primary); }
.price-card.featured h3,
.price-card.featured .price { color: var(--text); }
.price-card.featured .blurb,
.price-card.featured .features li { color: var(--text-muted); }
.price-card.featured .features li::before { color: var(--success); }
.price-card.featured .btn-primary {
  background: var(--gradient);
  color: #07060f;
}
.price-card.featured .btn-primary:hover {
  filter: brightness(1.08);
}
.price-badge {
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: #07060f;
  font-size: 0.7rem;
  font-weight: 500;
  padding: 0.3rem 0.85rem;
  border-radius: 980px;
  white-space: nowrap;
  letter-spacing: -0.01em;
}
.price-card .tier {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.8rem;
  margin-bottom: 0.45rem;
  letter-spacing: -0.01em;
}
.price-card h3 { margin-bottom: 0.25rem; font-size: 1.35rem; }
.price-card .price {
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 600;
  margin: 0.65rem 0 0.35rem;
  letter-spacing: -0.03em;
}
.price-card .price span { font-size: 1rem; color: var(--text-dim); font-weight: 400; }
.price-card.featured .price span { color: var(--text-dim); }
.price-card .blurb {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 1.35rem;
  line-height: 1.4;
}
.price-card .features {
  display: grid;
  gap: 0.5rem;
  margin-bottom: 1.75rem;
  flex: 1;
}
.price-card .features li {
  display: flex;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.35;
}
.price-card .features li::before {
  content: "✓";
  color: var(--success);
  font-weight: 600;
  flex-shrink: 0;
}

/* ========== Steps ========== */
.steps {
  display: grid;
  gap: 1rem;
  counter-reset: step;
}
.step {
  background: var(--bg-card);
  border: 0;
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  counter-increment: step;
  position: relative;
}
.step::before {
  content: counter(step);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.8rem;
  color: var(--primary);
  display: block;
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}
.step h3 { margin-bottom: 0.4rem; font-size: 1.1rem; }
.step p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.4; }

/* ========== Testimonials ========== */
.quote-card {
  background: var(--bg-card);
  border: 0;
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
}
.quote-card blockquote {
  font-size: 1.1rem;
  line-height: 1.4;
  margin-bottom: 1.35rem;
  color: var(--text);
  font-weight: 400;
  letter-spacing: -0.016em;
}
.quote-card footer {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}
.avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--text);
  display: grid;
  place-items: center;
  font-weight: 600;
  color: #07060f;
  font-size: 0.75rem;
  flex-shrink: 0;
}
.quote-card cite {
  font-style: normal;
  font-size: 0.85rem;
}
.quote-card cite strong { display: block; color: var(--text); font-weight: 600; }
.quote-card cite span { color: var(--text-dim); font-size: 0.8rem; }
.placeholder-note {
  font-size: 0.7rem;
  color: var(--text-dim);
  margin-top: 0.25rem;
  font-style: italic;
  display: block;
}

/* ========== FAQ ========== */
.faq-list {
  display: grid;
  gap: 0.65rem;
  max-width: 720px;
  margin-inline: auto;
}
.faq-item {
  background: var(--bg-card);
  border: 0;
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-item summary {
  padding: 1.15rem 1.25rem;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: -0.016em;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 1.25rem;
  color: var(--text-dim);
  font-weight: 300;
  flex-shrink: 0;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item .answer {
  padding: 0 1.25rem 1.25rem;
  color: var(--text-muted);
  font-size: 0.925rem;
  line-height: 1.5;
}

/* ========== CTA band ========== */
.cta-band {
  background: var(--bg-dark);
  border: 0;
  border-radius: var(--radius-xl);
  padding: 4rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  color: var(--text);
}
.cta-band h2 { margin-bottom: 0.75rem; color: var(--text); }
.cta-band p {
  color: var(--text-muted);
  max-width: 28rem;
  margin: 0 auto 1.75rem;
  font-size: 1.1rem;
  line-height: 1.4;
}
.cta-band .eyebrow { color: var(--primary); justify-content: center; }
.cta-band .hero-actions { justify-content: center; margin-bottom: 0; }
.cta-band .btn-primary {
  background: var(--bg-card);
  color: #07060f;
}
.cta-band .btn-primary:hover { background: var(--bg-elevated); }
.cta-band .btn-secondary {
  color: var(--primary);
}
.cta-band .btn-secondary:hover { color: var(--primary); }

/* ========== Page hero (inner) ========== */
.page-hero {
  padding: 3.5rem 0 2.5rem;
  border-bottom: 0;
  text-align: center;
  background: var(--bg-elevated);
}
.page-hero .container { max-width: 720px; }
.page-hero h1 { margin-bottom: 0.85rem; }
.page-hero .lead { margin-inline: auto; }
.breadcrumb {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  font-size: 0.75rem;
  color: var(--text-dim);
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb span { color: var(--text-muted); }

/* ========== Forms ========== */
.form-wrap {
  display: grid;
  gap: 1.5rem;
}
.form-card {
  background: var(--bg-card);
  border: 0;
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
}
.form-grid { display: grid; gap: 1rem; }
.form-row { display: grid; gap: 1rem; }
.field label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--text);
  letter-spacing: -0.01em;
}
.field label .req { color: var(--primary); }
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border-strong);
  border-radius: 12px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  font-size: 1rem;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px var(--primary-dim);
}
.field textarea { min-height: 140px; resize: vertical; }
.field .hint { font-size: 0.75rem; color: var(--text-dim); margin-top: 0.35rem; }
.form-note {
  font-size: 0.8rem;
  color: var(--text-dim);
  margin-top: 1rem;
}
.form-success {
  display: none;
  padding: 1rem 1.15rem;
  background: rgba(52, 199, 89, 0.1);
  border: 0;
  border-radius: 12px;
  color: var(--success);
  margin-bottom: 1rem;
  font-size: 0.9rem;
}
.form-success.is-visible { display: block; }

.contact-aside { display: grid; gap: 1rem; }
.aside-card {
  background: var(--bg-card);
  border: 0;
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}
.aside-card h3 { margin-bottom: 0.5rem; font-size: 1.05rem; }
.aside-card p, .aside-card li { color: var(--text-muted); font-size: 0.9rem; line-height: 1.4; }
.aside-card ul { margin-top: 0.75rem; display: grid; gap: 0.4rem; }
.aside-card ul li {
  padding-left: 1rem;
  position: relative;
}
.aside-card ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--success);
  font-size: 0.8rem;
}

/* ========== Tables ========== */
.table-wrap {
  overflow-x: auto;
  border: 0;
  border-radius: var(--radius-lg);
  background: var(--bg-card);
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
  font-size: 0.875rem;
}
.compare-table th,
.compare-table td {
  padding: 0.95rem 1.1rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
}
.compare-table th {
  background: transparent;
  font-family: var(--font-display);
  font-weight: 600;
  white-space: nowrap;
  font-size: 0.8rem;
  letter-spacing: -0.01em;
}
.compare-table th.highlight { color: var(--primary); }
.compare-table td { color: var(--text-muted); }
.compare-table tr:last-child td { border-bottom: 0; }
.compare-table .yes { color: var(--success); font-weight: 600; }
.compare-table .no { color: var(--text-dim); }

/* ========== About / prose ========== */
.about-grid {
  display: grid;
  gap: 2rem;
  align-items: start;
}
.prose { color: var(--text-muted); display: grid; gap: 1rem; line-height: 1.5; }
.prose h2 { color: var(--text); margin-top: 0.5rem; }
.prose strong { color: var(--text); }
.prose ul {
  display: grid;
  gap: 0.45rem;
  margin: 0.25rem 0;
}
.prose ul li {
  padding-left: 1rem;
  position: relative;
}
.prose ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--text-dim);
  color: transparent;
}

/* ========== Blog ========== */
.blog-card {
  background: var(--bg-card);
  border: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.3s var(--ease-out);
}
.blog-card:hover {
  border-color: transparent;
  transform: scale(1.015);
}
.blog-card-body { padding: 1.75rem; }
.blog-meta {
  font-size: 0.75rem;
  color: var(--text-dim);
  margin-bottom: 0.65rem;
}
.blog-card h3 { margin-bottom: 0.5rem; font-size: 1.15rem; }
.blog-card p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.4; }
.blog-card .read-more {
  display: inline-block;
  margin-top: 1rem;
  color: var(--primary);
  font-weight: 400;
  font-size: 0.9rem;
}

/* ========== Footer ========== */
.site-footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--border);
  padding: 2.5rem 0 2rem;
  margin-top: 0;
  background: var(--bg-elevated);
}
.footer-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 2rem;
}
.footer-brand p {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-top: 0.75rem;
  max-width: 22rem;
  line-height: 1.4;
}
.footer-col h4 {
  font-size: 0.7rem;
  text-transform: none;
  letter-spacing: -0.01em;
  color: var(--text);
  margin-bottom: 0.75rem;
  font-weight: 600;
}
.footer-col ul { display: grid; gap: 0.4rem; }
.footer-col a {
  color: var(--text-muted);
  font-size: 0.8rem;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--primary); }
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
  font-size: 0.75rem;
  color: var(--text-dim);
}

/* ========== Utilities ========== */
.text-center { text-align: center; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-2 { margin-bottom: 1rem; }
.muted { color: var(--text-muted); }
.dim { color: var(--text-dim); }
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

/* Homepage-specific promo strips */
.promo-strip {
  text-align: center;
  padding: 1rem;
  background: var(--bg-elevated);
  font-size: 0.85rem;
  color: var(--text-muted);
  letter-spacing: -0.01em;
}
.promo-strip a {
  color: var(--primary);
  font-weight: 400;
}
.promo-strip a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.feature-tile {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
  position: relative;
  overflow: hidden;
}
.feature-tile::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gradient);
  opacity: 0.7;
}
.feature-tile:hover {
  border-color: rgba(255, 45, 149, 0.4);
  box-shadow: 0 0 28px rgba(255, 45, 149, 0.12);
  transform: translateY(-3px);
}
.feature-tile h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}
.feature-tile p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.4;
  margin-bottom: 1rem;
}
.feature-tile a {
  color: var(--primary);
  font-size: 0.95rem;
}
.feature-tile a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.feature-tile a::after { content: " ›"; }

/* Scroll reveal (subtle) */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
  }
  .reveal.is-visible {
    opacity: 1;
    transform: none;
  }
}

/* ========== Pixel chat (light Apple-adjacent) ========== */
.pixel-chat {
  position: fixed;
  z-index: 200;
  right: 1.25rem;
  bottom: 1.25rem;
  font-family: var(--font-sans);
}
.pixel-chat__launcher {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.15rem;
  border: 0;
  border-radius: 980px;
  background: var(--text);
  color: #07060f;
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: -0.01em;
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: transform 0.2s var(--ease), background 0.2s;
}
.pixel-chat__launcher:hover {
  transform: scale(1.03);
  background: #000;
}
.pixel-chat__launcher-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  display: grid;
  place-items: center;
  font-size: 0.75rem;
}
.pixel-chat.is-open .pixel-chat__launcher-label { display: none; }
.pixel-chat.is-open .pixel-chat__launcher {
  width: 48px;
  height: 48px;
  padding: 0;
  justify-content: center;
  border-radius: 50%;
}
.pixel-chat.is-open .pixel-chat__launcher-icon { background: transparent; }

.pixel-chat__panel {
  position: absolute;
  right: 0;
  bottom: calc(100% + 0.75rem);
  width: min(100vw - 2rem, 380px);
  height: min(70vh, 560px);
  display: none;
  flex-direction: column;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.pixel-chat.is-open .pixel-chat__panel { display: flex; }

.pixel-chat__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.9rem 1rem;
  border-bottom: 1px solid var(--border);
  background: var(--bg-elevated);
}
.pixel-chat__brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}
.pixel-chat__avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--text);
  color: #07060f;
  font-weight: 600;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  font-size: 0.8rem;
}
.pixel-chat__brand strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.pixel-chat__status {
  display: block;
  font-size: 0.7rem;
  color: var(--text-dim);
}
.pixel-chat__close {
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.06);
  color: var(--text-muted);
  font-size: 1.2rem;
  line-height: 1;
  cursor: pointer;
}
.pixel-chat__close:hover { background: rgba(0, 0, 0, 0.1); color: var(--text); }

.pixel-chat__messages {
  flex: 1;
  overflow-y: auto;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  background: var(--bg-card);
}
.pixel-chat__row { display: flex; }
.pixel-chat__row--user { justify-content: flex-end; }
.pixel-chat__row--assistant { justify-content: flex-start; }
.pixel-chat__bubble {
  max-width: 88%;
  padding: 0.7rem 0.9rem;
  border-radius: 18px;
  font-size: 0.875rem;
  line-height: 1.4;
  white-space: pre-wrap;
  word-break: break-word;
  letter-spacing: -0.01em;
}
.pixel-chat__row--user .pixel-chat__bubble {
  background: var(--primary);
  color: #07060f;
  border-bottom-right-radius: 6px;
  font-weight: 400;
}
.pixel-chat__row--assistant .pixel-chat__bubble {
  background: var(--bg-elevated);
  border: 0;
  color: var(--text);
  border-bottom-left-radius: 6px;
}
.pixel-chat__bubble.is-error {
  background: rgba(255, 59, 48, 0.08);
  color: #ff8fa3;
}

.pixel-chat__dots {
  display: inline-flex;
  gap: 4px;
  align-items: center;
  height: 1em;
}
.pixel-chat__dots i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--text-dim);
  opacity: 0.4;
  animation: pixel-bounce 1s infinite ease-in-out;
}
.pixel-chat__dots i:nth-child(2) { animation-delay: 0.15s; }
.pixel-chat__dots i:nth-child(3) { animation-delay: 0.3s; }
@keyframes pixel-bounce {
  0%, 80%, 100% { transform: translateY(0); opacity: 0.35; }
  40% { transform: translateY(-3px); opacity: 1; }
}

.pixel-chat__quick {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  padding: 0 1rem 0.65rem;
}
.pixel-chat__chip {
  border: 1px solid var(--border-strong);
  background: var(--bg-card);
  color: var(--text-muted);
  font-size: 0.72rem;
  padding: 0.4rem 0.7rem;
  border-radius: 980px;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
  letter-spacing: -0.01em;
}
.pixel-chat__chip:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--primary-dim);
}

.pixel-chat__form {
  display: flex;
  gap: 0.5rem;
  padding: 0.65rem 0.85rem;
  border-top: 1px solid var(--border);
  align-items: flex-end;
  background: var(--bg-card);
}
.pixel-chat__form textarea {
  flex: 1;
  resize: none;
  max-height: 120px;
  padding: 0.65rem 0.85rem;
  border-radius: 16px;
  border: 1px solid var(--border-strong);
  background: var(--bg-elevated);
  color: var(--text);
  font: inherit;
  font-size: 0.875rem;
  outline: none;
  line-height: 1.4;
}
.pixel-chat__form textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-dim);
  background: var(--bg-card);
}
.pixel-chat__send {
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: var(--primary);
  color: #07060f;
  font-size: 1.1rem;
  font-weight: 500;
  cursor: pointer;
  flex-shrink: 0;
}
.pixel-chat__send:hover { background: var(--primary-hover); }

.pixel-chat__footnote {
  padding: 0 1rem 0.75rem;
  font-size: 0.65rem;
  color: var(--text-dim);
  line-height: 1.4;
  background: var(--bg-card);
}
.pixel-chat__footnote a { color: var(--primary); }

/* ========== Responsive ========== */
@media (min-width: 640px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr 1fr; }
  .problem-grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
}

@media (min-width: 900px) {
  .nav-cta { display: inline-flex; }
  .hero {
    padding: 5.5rem 0 4rem;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: repeat(3, 1fr); gap: 1.15rem; }
  .steps { grid-template-columns: repeat(5, 1fr); gap: 0.85rem; }
  .form-wrap { grid-template-columns: 1.35fr 0.85fr; }
  .about-grid { grid-template-columns: 1.3fr 0.9fr; text-align: left; }
  .page-hero { text-align: left; }
  .page-hero .container { max-width: var(--container-wide); }
  .page-hero .lead { margin-inline: 0; }
  .page-hero .breadcrumb { justify-content: flex-start; }
  .footer-grid { grid-template-columns: 1.6fr 1fr 1fr 1fr; }
  .section { padding: 6.5rem 0; }
}

@media (max-width: 899px) {
  .menu-toggle { display: flex; }
  .nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    background: rgba(7, 6, 15, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    align-items: stretch;
    padding: 0.75rem 1rem 1rem;
    gap: 0.15rem;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s var(--ease), opacity 0.3s;
  }
  .nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav a {
    padding: 0.85rem 0.75rem;
    font-size: 1rem;
    opacity: 1;
  }
  .nav .btn {
    margin-top: 0.5rem;
    width: 100%;
  }
}

@media (max-width: 480px) {
  .pixel-chat { right: 0.85rem; bottom: 0.85rem; }
  .pixel-chat__launcher-label { display: none; }
  .pixel-chat__launcher {
    width: 52px;
    height: 52px;
    padding: 0;
    justify-content: center;
    border-radius: 50%;
  }
  .pixel-chat__panel {
    width: calc(100vw - 1.5rem);
    height: min(75vh, 580px);
  }
  .hero-actions { flex-direction: column; width: 100%; }
  .hero-actions .btn { width: 100%; max-width: 280px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* Inline style overrides from old dark theme pages */
[style*="background:var(--gradient)"] {
  background: none !important;
  -webkit-background-clip: unset !important;
  background-clip: unset !important;
  color: var(--text) !important;
}


/* Retro brand extras — louder neon + dual logos */
.logo-img,
.logo-img--header {
  width: 36px;
  height: 36px;
  border-radius: 6px;
  object-fit: cover;
  box-shadow:
    0 0 0 1px rgba(0, 240, 200, 0.5),
    0 0 18px var(--primary-glow),
    0 0 28px rgba(255, 45, 149, 0.25);
  flex-shrink: 0;
}
.logo-word {
  font-weight: 700;
  letter-spacing: -0.02em;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 10px rgba(0, 240, 200, 0.25));
}

.hero-showcase {
  display: grid;
  gap: 1rem;
  width: 100%;
  max-width: 820px;
  margin-inline: auto;
}
.hero-visual {
  margin: 0;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(0, 240, 200, 0.35);
  box-shadow:
    0 0 0 1px rgba(255, 45, 149, 0.15),
    0 0 50px rgba(0, 240, 200, 0.15),
    0 20px 50px rgba(0, 0, 0, 0.45);
  overflow: hidden;
  background: var(--bg-card);
  position: relative;
}
.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(0, 240, 200, 0.08),
    transparent 30%,
    transparent 70%,
    rgba(255, 45, 149, 0.1)
  );
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}
.hero-visual img {
  width: 100%;
  height: auto;
  display: block;
}

.brand-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}
.brand-duo__card {
  margin: 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 0.85rem;
  text-align: center;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}
.brand-duo__card:hover {
  border-color: rgba(255, 45, 149, 0.45);
  box-shadow: 0 0 28px rgba(255, 45, 149, 0.18);
  transform: translateY(-2px);
}
.brand-duo__card:first-child:hover {
  border-color: rgba(0, 240, 200, 0.5);
  box-shadow: 0 0 28px rgba(0, 240, 200, 0.18);
}
.brand-duo__card img {
  width: 100%;
  max-width: 200px;
  margin-inline: auto;
  border-radius: 8px;
  image-rendering: auto;
  box-shadow: 0 0 24px rgba(0, 240, 200, 0.2);
}
.brand-duo__card figcaption {
  margin-top: 0.65rem;
  font-family: var(--font-pixel);
  font-size: 0.45rem;
  letter-spacing: 0.06em;
  color: var(--primary);
  text-transform: uppercase;
  line-height: 1.5;
  text-shadow: 0 0 10px var(--primary-glow);
}

.promo-strip {
  background: linear-gradient(
    90deg,
    rgba(0, 240, 200, 0.14),
    rgba(123, 97, 255, 0.12),
    rgba(255, 45, 149, 0.14)
  );
  border-bottom: 1px solid rgba(0, 240, 200, 0.2);
  color: var(--text);
  font-family: var(--font-pixel);
  font-size: 0.5rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1.9;
  text-shadow: 0 0 12px rgba(0, 240, 200, 0.35);
}
.promo-strip a {
  color: var(--accent);
  text-shadow: 0 0 10px rgba(255, 45, 149, 0.5);
}

/* Stronger ambient color */
.section-alt {
  background:
    radial-gradient(ellipse 80% 60% at 10% 0%, rgba(0, 240, 200, 0.07), transparent 55%),
    radial-gradient(ellipse 70% 50% at 90% 100%, rgba(255, 45, 149, 0.08), transparent 50%),
    var(--bg-elevated);
}
.hero {
  background:
    radial-gradient(ellipse 90% 70% at 50% -10%, rgba(0, 240, 200, 0.12), transparent 55%),
    radial-gradient(ellipse 60% 50% at 80% 40%, rgba(255, 45, 149, 0.08), transparent 50%),
    var(--bg);
}
.hero h1 {
  text-shadow: 0 0 40px rgba(0, 240, 200, 0.15);
}

.stat {
  border: 1px solid rgba(0, 240, 200, 0.2) !important;
  box-shadow: 0 0 16px rgba(0, 240, 200, 0.08) !important;
}
.stat-value {
  background: var(--gradient) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  color: transparent !important;
  filter: drop-shadow(0 0 8px rgba(0, 240, 200, 0.35));
}

.feature-tile h3 {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

@keyframes neon-pulse {
  0%, 100% { box-shadow: 0 0 16px var(--primary-glow); }
  50% { box-shadow: 0 0 28px var(--primary-glow), 0 0 40px rgba(255, 45, 149, 0.25); }
}
.btn-primary {
  animation: neon-pulse 3s ease-in-out infinite;
}
@media (prefers-reduced-motion: reduce) {
  .btn-primary { animation: none; }
}

.pixel-chat__launcher {
  border-radius: 4px !important;
  background: var(--gradient) !important;
  color: #07060f !important;
  font-weight: 700 !important;
  text-transform: uppercase;
  font-size: 0.7rem !important;
  letter-spacing: 0.04em;
  box-shadow: 0 0 24px var(--primary-glow) !important;
}

/* Corner pixel accents on feature tiles */
.feature-tile::after {
  content: "";
  position: absolute;
  right: 12px;
  top: 12px;
  width: 8px;
  height: 8px;
  background: var(--accent);
  box-shadow:
    10px 0 0 var(--primary),
    0 10px 0 var(--primary),
    10px 10px 0 rgba(123, 97, 255, 0.8);
  opacity: 0.85;
}
