/* Reality Deleted — Ultra-modern tech (Linear/Vercel energy) + Matrix edge */
:root {
  --bg: #030403;
  --bg-elev: #070a07;
  --bg-card: rgba(10, 14, 10, 0.78);
  --bg-hover: rgba(0, 255, 65, 0.04);
  --text: #f0f4f0;
  --muted: #7a947a;
  --muted-2: #4a634a;
  --line: rgba(0, 255, 65, 0.1);
  --line-strong: rgba(0, 255, 65, 0.22);
  --accent: #00ff41;
  --accent-dim: #00c832;
  --accent-soft: #39ff14;
  --delete: #ff3355;
  --cyan: #5ce1ff;
  --glow: rgba(0, 255, 65, 0.18);
  --glow-lg: rgba(0, 255, 65, 0.28);
  --radius: 10px;
  --radius-sm: 6px;
  --max: 1180px;
  --font: "Inter", system-ui, -apple-system, sans-serif;
  --display: "Space Grotesk", var(--font);
  --mono: "JetBrains Mono", ui-monospace, monospace;
  --nav-h: 64px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  background-image:
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(0, 255, 65, 0.07), transparent),
    linear-gradient(rgba(0, 255, 65, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 255, 65, 0.025) 1px, transparent 1px);
  background-size: auto, 48px 48px, 48px 48px;
  background-attachment: fixed;
}
body::before {
  content: "";
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 9998;
  opacity: 0.28;
  background: repeating-linear-gradient(
    0deg, transparent, transparent 2px, rgba(0, 0, 0, 0.07) 2px, rgba(0, 0, 0, 0.07) 3px
  );
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { font: inherit; }

.wrap {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
  position: relative;
  z-index: 2;
}

/* —— Nav —— */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-h);
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  background: rgba(3, 4, 3, 0.82);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
  gap: 1rem;
}
.logo {
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: -0.04em;
  font-size: 1.05rem;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  white-space: nowrap;
}
.logo-mark { width: 26px; height: 26px; }
.logo span { color: var(--delete); }
.nav-links {
  display: flex;
  gap: 0.15rem;
  align-items: center;
  font-family: var(--mono);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.nav-links > a:not(.btn) {
  color: var(--muted);
  padding: 0.45rem 0.7rem;
  border-radius: var(--radius-sm);
  transition: color 0.15s, background 0.15s;
}
.nav-links > a:not(.btn):hover {
  color: var(--accent);
  background: var(--bg-hover);
}
.nav-cta { margin-left: 0.5rem; }
.nav-toggle {
  display: none;
  background: rgba(0, 255, 65, 0.06);
  border: 1px solid var(--line);
  color: var(--text);
  padding: 0.45rem 0.7rem;
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: var(--radius-sm);
}

/* —— Buttons —— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.65rem 1.15rem;
  font-family: var(--mono);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #030403;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s, border-color 0.15s;
  white-space: nowrap;
}
.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 32px var(--glow-lg);
  background: var(--accent-soft);
  border-color: var(--accent-soft);
}
.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--line-strong);
}
.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--bg-hover);
  box-shadow: 0 0 24px var(--glow);
}
.btn-sm { padding: 0.4rem 0.75rem; font-size: 0.62rem; }

/* —— Hero —— */
.hero {
  position: relative;
  padding: 5.5rem 0 5rem;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.rain-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.38;
  pointer-events: none;
}
.rain-toggle {
  position: absolute;
  bottom: 1.1rem;
  right: 1.1rem;
  z-index: 3;
  font-family: var(--mono);
  font-size: 0.58rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.4rem 0.65rem;
  background: rgba(3, 4, 3, 0.8);
  border: 1px solid var(--line);
  color: var(--muted);
  cursor: pointer;
  border-radius: var(--radius-sm);
  backdrop-filter: blur(8px);
}
.rain-toggle:hover { color: var(--accent); border-color: var(--accent); }
.hero-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.85fr;
  gap: 3rem;
  align-items: center;
}
.eyebrow {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.15rem;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}
.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}
.hero h1 {
  font-family: var(--display);
  font-size: clamp(2.6rem, 6.5vw, 4.6rem);
  line-height: 0.92;
  letter-spacing: -0.05em;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 1.35rem;
}
.glitch { position: relative; display: inline-block; }
.glitch:hover::before,
.glitch:hover::after {
  content: attr(data-text);
  position: absolute;
  left: 0; top: 0; width: 100%;
  overflow: hidden;
  pointer-events: none;
}
.glitch:hover::before {
  color: var(--cyan);
  clip-path: inset(0 0 55% 0);
  transform: translate(-2px, 0);
  opacity: 0.8;
}
.glitch:hover::after {
  color: var(--delete);
  clip-path: inset(45% 0 0 0);
  transform: translate(2px, 0);
  opacity: 0.8;
}
.hero-lead {
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 38ch;
  margin-bottom: 1.85rem;
  line-height: 1.65;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.hero-panel {
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  padding: 1.5rem;
  position: relative;
  box-shadow: 0 0 0 1px rgba(0, 255, 65, 0.04), 0 24px 64px rgba(0, 0, 0, 0.45), 0 0 40px var(--glow);
}
.hero-panel::before,
.hero-panel::after {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  pointer-events: none;
}
.hero-panel::before {
  top: -1px; left: -1px;
  border-top: 2px solid var(--accent);
  border-left: 2px solid var(--accent);
}
.hero-panel::after {
  bottom: -1px; right: -1px;
  border-bottom: 2px solid var(--accent);
  border-right: 2px solid var(--accent);
}
.hero-panel h3 {
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.1rem;
}
.stat-row { display: grid; gap: 0.75rem; }
.stat {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  border-bottom: 1px solid var(--line);
  padding-bottom: 0.55rem;
  font-size: 0.9rem;
  gap: 1rem;
}
.stat span { color: var(--muted); }
.stat strong {
  font-family: var(--mono);
  color: var(--accent);
  font-weight: 500;
  font-size: 0.78rem;
  text-align: right;
}

/* —— Sections —— */
section { padding: 5rem 0; border-bottom: 1px solid var(--line); }
.section-head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1.25rem;
  margin-bottom: 2.25rem;
}
.section-head h2 {
  font-family: var(--display);
  font-size: clamp(1.7rem, 3.5vw, 2.35rem);
  letter-spacing: -0.04em;
  text-transform: uppercase;
  font-weight: 700;
  line-height: 1.1;
}
.section-head p {
  color: var(--muted);
  max-width: 42ch;
  font-size: 0.95rem;
}
.tag {
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.55rem;
  display: inline-block;
}

/* —— Feature / about —— */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.feature-card {
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  border: 1px solid var(--line);
  padding: 1.5rem;
  border-radius: var(--radius);
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.feature-card:hover {
  border-color: var(--line-strong);
  box-shadow: 0 0 32px var(--glow);
  transform: translateY(-2px);
}
.feature-icon {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  font-family: var(--mono);
  font-size: 0.75rem;
  color: var(--accent);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  margin-bottom: 1rem;
  background: rgba(0, 255, 65, 0.06);
}
.feature-card h3 {
  font-family: var(--display);
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}
.feature-card p { color: var(--muted); font-size: 0.9rem; }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.about-card {
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  border: 1px solid var(--line);
  padding: 1.6rem;
  border-radius: var(--radius);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.about-card:hover {
  border-color: var(--line-strong);
  box-shadow: 0 0 28px var(--glow);
}
.about-card h3 {
  font-family: var(--display);
  font-size: 1.1rem;
  margin-bottom: 0.55rem;
  letter-spacing: -0.02em;
}
.about-card p { color: var(--muted); font-size: 0.92rem; }

/* —— Filters —— */
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 1.5rem;
}
.filter-btn {
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.45rem 0.85rem;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--muted);
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.15s;
}
.filter-btn:hover { color: var(--accent); border-color: var(--line-strong); }
.filter-btn.active {
  background: rgba(0, 255, 65, 0.12);
  border-color: var(--accent);
  color: var(--accent);
  box-shadow: 0 0 16px var(--glow);
}

/* —— Product cards —— */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.cards-dense {
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
}
.card {
  background: var(--bg-card);
  backdrop-filter: blur(14px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.35rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
  position: relative;
  overflow: hidden;
}
.card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 255, 65, 0.35), transparent);
  opacity: 0;
  transition: opacity 0.2s;
}
.card:hover {
  border-color: var(--line-strong);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35), 0 0 32px var(--glow);
}
.card:hover::before { opacity: 1; }
.card[hidden] { display: none !important; }
.card-meta, .card-type {
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cyan);
}
.card h3 {
  font-family: var(--display);
  font-size: 1.1rem;
  letter-spacing: -0.02em;
  line-height: 1.25;
}
.card p {
  color: var(--muted);
  font-size: 0.88rem;
  flex: 1;
}
.card-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 0.35rem;
  gap: 0.5rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--line);
}
.price {
  font-family: var(--mono);
  font-size: 0.9rem;
  color: var(--accent);
  font-weight: 500;
}
.link-out, .link {
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text);
  border-bottom: 1px solid var(--accent);
  padding-bottom: 1px;
  transition: color 0.15s;
}
.link-out:hover, .link:hover { color: var(--accent); }
.cta-row {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* —— Merch / Labs bands —— */
.merch, .labs {
  background:
    radial-gradient(ellipse at 85% 0%, rgba(0, 255, 65, 0.06), transparent 50%),
    var(--bg-elev);
}
.merch-inner, .labs-inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2.5rem;
  align-items: center;
}
.merch-copy {
  color: var(--muted);
  margin-bottom: 1.35rem;
  max-width: 48ch;
  font-size: 0.95rem;
}
.labs-list { display: grid; gap: 0.55rem; }
.labs-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 1.05rem;
  background: rgba(3, 4, 3, 0.7);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  transition: border-color 0.15s;
}
.labs-list li:hover { border-color: var(--line-strong); }
.labs-list li span {
  font-family: var(--mono);
  font-size: 0.65rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

/* —— Socials —— */
.social-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 0.65rem;
}
.social-chip {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  padding: 1rem 1.05rem;
  background: var(--bg-card);
  backdrop-filter: blur(10px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-family: var(--mono);
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: border-color 0.15s, box-shadow 0.15s, color 0.15s;
}
.social-chip span {
  color: var(--muted-2);
  font-size: 0.6rem;
  letter-spacing: 0.1em;
}
.social-chip.coming-soon:hover {
  border-color: var(--line-strong);
  box-shadow: 0 0 20px var(--glow);
  color: var(--accent);
}

/* —— FAQ —— */
.faq-list { display: grid; gap: 0.55rem; max-width: 780px; }
.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-card);
  overflow: hidden;
  transition: border-color 0.15s;
}
.faq-item[open] { border-color: var(--line-strong); }
.faq-item summary {
  cursor: pointer;
  padding: 1.05rem 1.25rem;
  font-family: var(--display);
  font-weight: 600;
  font-size: 0.98rem;
  letter-spacing: -0.02em;
  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-family: var(--mono);
  color: var(--accent);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item .faq-body {
  padding: 0 1.25rem 1.15rem;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.65;
}
.faq-item .faq-body a { color: var(--accent); }
.faq-item .faq-body a:hover { text-decoration: underline; }

/* —— Contact —— */
.contact-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.contact-item {
  border: 1px solid var(--line);
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  padding: 1.5rem;
  border-radius: var(--radius);
  transition: border-color 0.15s, box-shadow 0.15s;
}
.contact-item:hover {
  border-color: var(--line-strong);
  box-shadow: 0 0 24px var(--glow);
}
.contact-item h3 {
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.55rem;
}
.contact-item a {
  font-size: 1.02rem;
  color: var(--accent);
  word-break: break-all;
  font-family: var(--mono);
  font-size: 0.88rem;
}
.contact-item a:hover { color: var(--cyan); text-decoration: underline; }
.contact-item p {
  color: var(--muted);
  font-size: 0.88rem;
  margin-top: 0.5rem;
}

/* —— Footer —— */
.footer {
  padding: 3.5rem 0 2.5rem;
  font-family: var(--mono);
  font-size: 0.68rem;
  color: var(--muted);
  letter-spacing: 0.02em;
  background: var(--bg-elev);
  border-top: 1px solid var(--line);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}
.footer-brand p {
  margin-top: 0.75rem;
  max-width: 32ch;
  line-height: 1.6;
  color: var(--muted-2);
}
.footer-col h4 {
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 0.85rem;
}
.footer-col a, .footer-col span {
  display: block;
  color: var(--muted);
  margin-bottom: 0.45rem;
  transition: color 0.15s;
}
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  align-items: center;
}
.footer-brands {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer a { color: var(--muted); }
.footer a:hover { color: var(--accent); }
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  align-items: start;
}

/* —— Products page —— */
.page-hero {
  padding: 3.75rem 0 2.25rem;
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.page-hero h1 {
  font-family: var(--display);
  font-size: clamp(1.9rem, 4vw, 2.9rem);
  text-transform: uppercase;
  letter-spacing: -0.04em;
  font-weight: 700;
  margin-bottom: 0.65rem;
}
.page-hero p { color: var(--muted); max-width: 52ch; }
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1rem;
  padding: 2.25rem 0 4.5rem;
}

/* —— Trust strip —— */
.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 2.5rem;
}
.trust-item {
  background: var(--bg-elev);
  padding: 1.15rem 1.25rem;
  text-align: center;
}
.trust-item strong {
  display: block;
  font-family: var(--mono);
  font-size: 0.78rem;
  color: var(--accent);
  margin-bottom: 0.25rem;
  letter-spacing: 0.04em;
}
.trust-item span {
  font-size: 0.78rem;
  color: var(--muted);
}

@media (prefers-reduced-motion: reduce) {
  .rain-canvas { display: none; }
  .glitch:hover::before, .glitch:hover::after { display: none; }
  .eyebrow::before { animation: none; }
}

@media (max-width: 960px) {
  .hero-grid, .about-grid, .merch-inner, .labs-inner,
  .contact-box, .feature-grid, .footer-grid { grid-template-columns: 1fr 1fr; }
  .cards { grid-template-columns: 1fr 1fr; }
  .trust-strip { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .wrap { width: min(100% - 1.5rem, var(--max)); }
  .hero-grid, .about-grid, .merch-inner, .labs-inner,
  .contact-box, .feature-grid, .cards, .cards-dense,
  .footer-grid { grid-template-columns: 1fr; }
  .trust-strip { grid-template-columns: 1fr 1fr; }
  .nav-toggle { display: inline-flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: var(--nav-h);
    left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    background: rgba(7, 10, 7, 0.97);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--line);
    padding: 1rem;
    gap: 0.35rem;
  }
  .nav-links.open { display: flex; }
  .nav-links > a:not(.btn) { padding: 0.75rem 0.85rem; }
  .nav-links .btn, .nav-cta { width: 100%; margin-left: 0; margin-top: 0.35rem; }
  .hero { padding: 3.5rem 0 3.5rem; }
  section { padding: 3.5rem 0; }
}


/* —— Wave 7 photoreal featured —— */
.hero-visual {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line-strong);
  box-shadow: 0 0 40px var(--glow);
  background: var(--bg-elev);
}
.hero-visual img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
.hero-visual-caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 0.65rem 0.9rem;
  font-family: var(--mono);
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  color: var(--accent-soft);
  background: linear-gradient(transparent, rgba(3, 4, 3, 0.92));
}
.featured-wave7 { padding-top: 1rem; }
.photoreal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 1.5rem;
}
.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  padding-bottom: 1rem;
  transition: border-color 0.2s, background 0.2s;
}
.feature-card:hover {
  border-color: var(--line-strong);
  background: var(--bg-hover);
}
.feature-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  margin-bottom: 0.85rem;
}
.feature-card h3 {
  font-family: var(--display);
  font-size: 1.1rem;
  padding: 0 1rem;
  margin-bottom: 0.35rem;
}
.feature-card p {
  color: var(--muted);
  font-size: 0.92rem;
  padding: 0 1rem 0.75rem;
}
.feature-card .link-out {
  padding: 0 1rem;
  color: var(--accent);
  font-size: 0.9rem;
}
.card-featured {
  border-color: rgba(0, 255, 65, 0.28);
  box-shadow: 0 0 24px rgba(0, 255, 65, 0.08);
}
@media (max-width: 960px) {
  .photoreal-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  .photoreal-grid { grid-template-columns: 1fr; }
}
