/*
 * Redeyed brand overlay for the public marketing site.
 * Loaded after the template's style.css to push the palette to the
 * Redeyed black + glowing-red (#e60000) identity. Layered, non-destructive.
 */
:root {
  --redeyed-red: #e60000;
  --redeyed-red-bright: #ff1a1a;
  --redeyed-black: #000000;
}

body.dark,
body.web-development {
  background-color: #000000 !important;
}

/* Accent text + the template's <span> highlight words */
a { color: var(--redeyed-red-bright); }
a:hover { color: var(--redeyed-red); }
.section-title span,
.title span,
.sub-heading,
h1 span, h2 span, h3 span { color: var(--redeyed-red) !important; }

::selection { background: var(--redeyed-red); color: #fff; }

/* Primary buttons / CTAs in the theme */
.rr-primary-btn,
.rr-btn,
.footer-btn,
.theme-btn,
button[type="submit"].rr-btn,
.submit-btn .rr-btn {
  background-color: var(--redeyed-red) !important;
  border-color: var(--redeyed-red) !important;
  color: #fff !important;
  box-shadow: 0 0 22px rgba(230, 0, 0, .45);
}
.rr-primary-btn:hover,
.rr-btn:hover,
.footer-btn:hover {
  background-color: var(--redeyed-red-bright) !important;
  border-color: var(--redeyed-red-bright) !important;
}

/* Hero / section glow accents */
.hero-section-3 .round-shape,
.hero-section-3 .round-shape-2 { box-shadow: 0 0 120px rgba(230, 0, 0, .35); }

/* Header + menu active state */
.main-menu ul li a.active,
.main-menu ul li a:hover { color: var(--redeyed-red-bright) !important; }

/* Newsletter / form focus accents */
input:focus, textarea:focus, select:focus {
  border-color: var(--redeyed-red) !important;
  box-shadow: 0 0 0 2px rgba(230, 0, 0, .25) !important;
}

/* Public alert popup accent */
#alerting .close-alerting { background: var(--redeyed-red) !important; border-color: var(--redeyed-red) !important; }

/* Footer */
.footer-section { background-color: #050505 !important; }
.copyright-area { border-top: 1px solid rgba(230, 0, 0, .2) !important; }

/* ============================================================
   Redeyed branded hero — black + cyber grid + glowing red eye
   ============================================================ */
.redeyed-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  isolation: isolate;
  background: #000000;
  text-align: center;
}

/* Starfield / particle dots */
.redeyed-hero__stars {
  position: absolute; inset: 0; z-index: -5;
  background-image:
    radial-gradient(1px 1px at 20% 30%, rgba(255,60,60,.7), transparent),
    radial-gradient(1px 1px at 80% 20%, rgba(255,255,255,.5), transparent),
    radial-gradient(1px 1px at 65% 60%, rgba(255,60,60,.6), transparent),
    radial-gradient(1.5px 1.5px at 35% 75%, rgba(255,80,80,.5), transparent),
    radial-gradient(1px 1px at 50% 15%, rgba(255,255,255,.4), transparent),
    radial-gradient(1px 1px at 90% 70%, rgba(255,60,60,.5), transparent),
    radial-gradient(1px 1px at 10% 80%, rgba(255,255,255,.35), transparent);
  background-repeat: no-repeat;
  opacity: .55;
  animation: redeyed-twinkle 6s ease-in-out infinite alternate;
}
@keyframes redeyed-twinkle { from { opacity:.35; } to { opacity:.7; } }

/* Faint world-map dot texture in the upper area */
.redeyed-hero__map {
  position: absolute; left: 50%; top: 8%; transform: translateX(-50%);
  width: 1100px; max-width: 95vw; height: 480px; z-index: -4;
  background-image: radial-gradient(rgba(230,0,0,.35) 1px, transparent 1.4px);
  background-size: 10px 10px;
  -webkit-mask-image: radial-gradient(ellipse 55% 60% at 50% 45%, #000 35%, transparent 75%);
          mask-image: radial-gradient(ellipse 55% 60% at 50% 45%, #000 35%, transparent 75%);
  opacity: .25;
}

/* Perspective cyber-grid floor */
.redeyed-hero__grid {
  position: absolute; left: 50%; bottom: -2px; transform: translateX(-50%) perspective(420px) rotateX(62deg);
  transform-origin: bottom center;
  width: 240%; height: 60vh; z-index: -4;
  background-image:
    linear-gradient(rgba(230,0,0,.45) 1px, transparent 1px),
    linear-gradient(90deg, rgba(230,0,0,.45) 1px, transparent 1px);
  background-size: 46px 46px;
  -webkit-mask-image: linear-gradient(to top, #000 0%, transparent 85%);
          mask-image: linear-gradient(to top, #000 0%, transparent 85%);
  animation: redeyed-grid 7s linear infinite;
}
@keyframes redeyed-grid { from { background-position: 0 0; } to { background-position: 0 46px; } }

/* Horizon + ambient red glow */
.redeyed-hero__glow {
  position: absolute; inset: 0; z-index: -3; pointer-events: none;
  background:
    radial-gradient(60% 40% at 50% 100%, rgba(230,0,0,.45), transparent 70%),
    radial-gradient(45% 35% at 50% 38%, rgba(230,0,0,.18), transparent 70%);
}
.redeyed-hero::after { /* sharp horizon line of light */
  content: ""; position: absolute; left: 50%; bottom: 30%; transform: translateX(-50%);
  width: 70%; height: 2px; z-index: -2;
  background: linear-gradient(90deg, transparent, #ff1a1a, transparent);
  box-shadow: 0 0 40px 6px rgba(230,0,0,.6);
}

/* Moving scanline */
.redeyed-hero__scanline {
  position: absolute; left: 0; right: 0; height: 140px; z-index: -1; pointer-events: none;
  background: linear-gradient(to bottom, transparent, rgba(230,0,0,.06), transparent);
  animation: redeyed-scan 6s linear infinite;
}
@keyframes redeyed-scan { 0% { top: -140px; } 100% { top: 100%; } }

/* Content */
.redeyed-hero__inner { position: relative; z-index: 2; padding: 120px 16px 80px; max-width: 880px; margin: 0 auto; }

.redeyed-hero__eye-wrap { position: relative; width: 130px; height: 130px; margin: 0 auto 28px; display: inline-flex; align-items: center; justify-content: center; }
.redeyed-hero__eye {
  width: 96px; height: 96px; display: block;
  filter: drop-shadow(0 0 18px rgba(230,0,0,.85)) drop-shadow(0 0 40px rgba(230,0,0,.5));
  animation: redeyed-pulse 2.8s ease-in-out infinite;
}
@keyframes redeyed-pulse { 0%,100% { transform: scale(1); filter: drop-shadow(0 0 16px rgba(230,0,0,.7)); } 50% { transform: scale(1.06); filter: drop-shadow(0 0 28px rgba(230,0,0,1)); } }
.redeyed-hero__ring { position: absolute; inset: 0; border: 1px solid rgba(230,0,0,.4); border-radius: 50%; animation: redeyed-spin 14s linear infinite; }
.redeyed-hero__ring--2 { inset: -16px; border-color: rgba(230,0,0,.2); border-style: dashed; animation-duration: 22s; animation-direction: reverse; }
@keyframes redeyed-spin { to { transform: rotate(360deg); } }

.redeyed-hero__kicker { display: inline-block; color: #ff3b3b; font-size: 13px; font-weight: 700; letter-spacing: 6px; text-transform: uppercase; margin-bottom: 14px; }
.redeyed-hero__title {
  font-size: clamp(48px, 9vw, 120px); line-height: .95; font-weight: 800; text-transform: uppercase;
  color: #ffffff; margin: 0 0 14px; letter-spacing: 2px;
  text-shadow: 0 0 30px rgba(230,0,0,.45);
}
.redeyed-hero__title span { color: #e60000; text-shadow: 0 0 26px rgba(230,0,0,.9); }
.redeyed-hero__sub { color: #c9c9c9; font-size: clamp(13px,2.2vw,18px); font-weight: 600; letter-spacing: 4px; text-transform: uppercase; margin: 0 0 22px; }
.redeyed-hero__lead { color: #9aa0aa; font-size: 16px; line-height: 1.8; max-width: 620px; margin: 0 auto 34px; }

.redeyed-hero__cta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.redeyed-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 32px; border-radius: 10px; font-weight: 700; font-size: 15px;
  text-decoration: none; transition: all .2s ease; border: 1px solid transparent;
}
.redeyed-btn--primary { background: #e60000; color: #fff; box-shadow: 0 0 30px rgba(230,0,0,.55); }
.redeyed-btn--primary:hover { background: #ff1a1a; color: #fff; transform: translateY(-2px); box-shadow: 0 0 44px rgba(230,0,0,.8); }
.redeyed-btn--ghost { background: rgba(230,0,0,.06); color: #fff; border-color: rgba(230,0,0,.5); }
.redeyed-btn--ghost:hover { background: rgba(230,0,0,.16); border-color: #e60000; color: #fff; }

/* Scroll cue */
.redeyed-hero__scroll { position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); width: 26px; height: 42px; border: 2px solid rgba(230,0,0,.6); border-radius: 14px; z-index: 3; }
.redeyed-hero__scroll span { position: absolute; top: 8px; left: 50%; transform: translateX(-50%); width: 4px; height: 8px; background: #ff1a1a; border-radius: 2px; animation: redeyed-bob 1.6s ease-in-out infinite; }
@keyframes redeyed-bob { 0%,100% { opacity: 0; top: 8px; } 50% { opacity: 1; top: 18px; } }

@media (max-width: 600px) {
  .redeyed-hero__inner { padding: 96px 16px 70px; }
  .redeyed-hero__grid { height: 42vh; }
}

/* ============================================================
   === OpenLab tools (public) ===
   Tool hub + tool console, black/red glass on the dark
   marketing background. Layered on top of the template.
   ============================================================ */

/* ---- Shared hero / section spacing ---- */
.redeyed-tools-hero { padding: 150px 0 40px; }
.redeyed-tools-section { padding-top: 20px; }
.redeyed-tools-lead {
  color: #c4c4c8; font-size: 17px; line-height: 1.8;
  max-width: 680px; margin: 18px auto 0;
}
.redeyed-tools-note { color: #8d9098; font-size: 14px; margin: 14px auto 0; max-width: 640px; }
.redeyed-tools-note a { color: var(--redeyed-red-bright); }

/* ---- Category headings ---- */
.redeyed-tools-cat-head { display: flex; align-items: center; gap: 18px; margin: 56px 0 26px; }
.redeyed-tools-cat-title {
  color: #fff; font-size: 22px; font-weight: 800; text-transform: uppercase;
  letter-spacing: 2px; margin: 0; white-space: nowrap;
}
.redeyed-tools-cat-rule {
  flex: 1 1 auto; height: 1px;
  background: linear-gradient(90deg, rgba(230,0,0,.6), rgba(230,0,0,0));
}

/* ---- Tool grid ---- */
.redeyed-tool-grid {
  display: grid; gap: 24px;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
}

/* ---- Tool card (dark glass, red glow on hover) ---- */
.redeyed-tool-card {
  position: relative; display: flex; flex-direction: column;
  padding: 28px 26px;
  background: linear-gradient(160deg, rgba(20,20,22,.92), rgba(8,8,9,.96));
  border: 1px solid rgba(230,0,0,.22);
  border-radius: 16px;
  backdrop-filter: blur(8px);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.redeyed-tool-card:hover {
  transform: translateY(-6px);
  border-color: rgba(230,0,0,.75);
  box-shadow: 0 0 0 1px rgba(230,0,0,.35), 0 18px 50px rgba(230,0,0,.28);
}
.redeyed-tool-card__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.redeyed-tool-card__icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 56px; height: 56px; border-radius: 14px;
  background: rgba(230,0,0,.12); border: 1px solid rgba(230,0,0,.4);
  color: var(--redeyed-red-bright); font-size: 24px;
  box-shadow: 0 0 22px rgba(230,0,0,.25);
}
.redeyed-tool-badge {
  font-size: 11px; font-weight: 700; letter-spacing: .5px; text-transform: uppercase;
  color: #ff8a8a; padding: 5px 10px; border-radius: 999px;
  background: rgba(230,0,0,.1); border: 1px solid rgba(230,0,0,.35);
}
.redeyed-tool-card__title { color: #fff; font-size: 20px; font-weight: 700; margin: 0 0 10px; }
.redeyed-tool-card__desc { color: #a9adb5; font-size: 14.5px; line-height: 1.65; margin: 0 0 16px; flex: 1 1 auto; }
.redeyed-tool-card__cost { color: #7f838c; font-size: 13px; margin: 0 0 20px; display: flex; align-items: center; gap: 8px; }
.redeyed-tool-card__cost i { color: var(--redeyed-red-bright); }
.redeyed-tool-card__btn { align-self: flex-start; display: inline-flex; align-items: center; gap: 9px; }

/* ---- Upsell panel ---- */
.redeyed-tools-upsell {
  margin-top: 60px; text-align: center; padding: 48px 28px;
  background: radial-gradient(60% 120% at 50% 0%, rgba(230,0,0,.14), rgba(8,8,9,.96));
  border: 1px solid rgba(230,0,0,.28); border-radius: 18px;
}
.redeyed-tools-upsell__title { color: #fff; font-size: 26px; font-weight: 800; margin: 0 0 12px; }
.redeyed-tools-upsell__text { color: #a9adb5; font-size: 15px; line-height: 1.7; max-width: 620px; margin: 0 auto 26px; }

/* ---- Tool console (show page) ---- */
.redeyed-tool-back { margin-bottom: 22px; }
.redeyed-tool-back a { color: #9aa0aa; font-size: 14px; text-decoration: none; }
.redeyed-tool-back a:hover { color: var(--redeyed-red-bright); }
.redeyed-tool-hero-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 76px; height: 76px; margin: 0 auto 18px; border-radius: 18px;
  background: rgba(230,0,0,.12); border: 1px solid rgba(230,0,0,.45);
  color: var(--redeyed-red-bright); font-size: 32px;
  box-shadow: 0 0 32px rgba(230,0,0,.32);
}

.redeyed-tool-console {
  display: grid; gap: 28px; align-items: start;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  max-width: 1100px; margin: 0 auto;
}
@media (max-width: 900px) { .redeyed-tool-console { grid-template-columns: 1fr; } }

.redeyed-tool-console__form,
.redeyed-tool-console__result {
  padding: 30px 28px;
  background: linear-gradient(160deg, rgba(20,20,22,.92), rgba(8,8,9,.96));
  border: 1px solid rgba(230,0,0,.22); border-radius: 16px;
  backdrop-filter: blur(8px);
}

/* ---- Form fields ---- */
.redeyed-field { margin-bottom: 20px; }
.redeyed-field label { display: block; color: #d8dade; font-size: 14px; font-weight: 600; margin-bottom: 8px; }
.redeyed-field__group-label span { color: #7f838c; font-weight: 400; font-size: 12.5px; }
.redeyed-field input[type="text"],
.redeyed-field input[type="url"],
.redeyed-field input[type="tel"],
.redeyed-field textarea {
  width: 100%; padding: 13px 15px; color: #fff; font-size: 15px;
  background: rgba(0,0,0,.45); border: 1px solid rgba(255,255,255,.12);
  border-radius: 10px; outline: none; transition: border-color .2s ease, box-shadow .2s ease;
}
.redeyed-field input::placeholder, .redeyed-field textarea::placeholder { color: #6b6f78; }
.redeyed-field input:focus, .redeyed-field textarea:focus {
  border-color: var(--redeyed-red) !important;
  box-shadow: 0 0 0 2px rgba(230,0,0,.25) !important;
}
.redeyed-field__error { display: block; color: #ff5c5c; font-weight: 700; font-size: 13px; margin-bottom: 8px; }

.redeyed-checks { display: flex; flex-wrap: wrap; gap: 10px 18px; }
.redeyed-check { display: inline-flex; align-items: center; gap: 7px; color: #c4c4c8; font-size: 14px; font-weight: 400; margin: 0; cursor: pointer; }
.redeyed-check input { accent-color: var(--redeyed-red); width: 16px; height: 16px; }

.redeyed-tool-run { display: inline-flex; align-items: center; gap: 9px; width: 100%; justify-content: center; }
.redeyed-tool-limit { margin: 18px 0 0; color: #7f838c; font-size: 13px; line-height: 1.6; }
.redeyed-tool-limit a { color: var(--redeyed-red-bright); }

/* ---- Result panel ---- */
.redeyed-result-heading {
  color: #8d9098; font-size: 12px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; margin: 0 0 18px;
}
.redeyed-result-meta { color: #9aa0aa; font-size: 13.5px; margin: 0 0 14px; }
.redeyed-result-meta strong { color: #fff; }
.redeyed-result-empty { text-align: center; color: #6b6f78; padding: 50px 10px; }
.redeyed-result-empty i { font-size: 46px; color: rgba(230,0,0,.5); display: block; margin-bottom: 14px; }
.redeyed-result-empty p { margin: 0; }
.redeyed-hidden { display: none !important; }

/* Result tables */
.redeyed-table-wrap { overflow-x: auto; }
.redeyed-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.redeyed-table th, .redeyed-table td { padding: 10px 12px; text-align: left; border-bottom: 1px solid rgba(255,255,255,.08); vertical-align: top; }
.redeyed-table thead th { color: #8d9098; font-size: 12px; text-transform: uppercase; letter-spacing: .5px; }
.redeyed-table tbody tr:hover { background: rgba(230,0,0,.06); }
.redeyed-table--kv th { color: #9aa0aa; width: 40%; font-weight: 600; }
.redeyed-table td, .redeyed-table th { color: #d8dade; }
.redeyed-table code { color: #ff8a8a; background: rgba(230,0,0,.08); padding: 2px 6px; border-radius: 5px; font-size: 13px; }
.redeyed-break { word-break: break-all; }

.redeyed-tag {
  display: inline-block; font-size: 12px; font-weight: 700; padding: 3px 9px; border-radius: 6px;
  background: rgba(230,0,0,.18); color: #ff9a9a; border: 1px solid rgba(230,0,0,.4);
}
.redeyed-tag--warn { background: rgba(255,176,0,.16); color: #ffce6b; border-color: rgba(255,176,0,.4); }
.redeyed-tag--ok { background: rgba(0,200,120,.16); color: #6bffb0; border-color: rgba(0,200,120,.4); }

/* Pre / console output */
.redeyed-pre {
  white-space: pre-wrap; word-break: break-word; margin: 0;
  padding: 16px 18px; font-size: 13px; line-height: 1.6;
  color: #d8dade; background: #050505; border: 1px solid rgba(230,0,0,.2); border-radius: 10px;
}
.redeyed-pre--tall { max-height: 500px; overflow: auto; }

/* Alerts */
.redeyed-alert {
  padding: 14px 16px; border-radius: 10px; font-size: 14px; line-height: 1.6;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12); color: #d8dade;
}
.redeyed-alert--error { background: rgba(230,0,0,.12); border-color: rgba(230,0,0,.45); color: #ff9a9a; }
.redeyed-alert--success { background: rgba(0,200,120,.1); border-color: rgba(0,200,120,.4); color: #8effc4; margin-bottom: 14px; }
.redeyed-alert--warning { background: rgba(255,176,0,.1); border-color: rgba(255,176,0,.4); color: #ffce6b; }
.redeyed-alert--info { background: rgba(60,140,255,.1); border-color: rgba(60,140,255,.4); color: #9ec4ff; }

/* YouTube thumbnail grid */
.redeyed-thumb-grid { display: grid; gap: 14px; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); }
.redeyed-thumb { background: #050505; border: 1px solid rgba(230,0,0,.2); border-radius: 10px; overflow: hidden; }
.redeyed-thumb img { width: 100%; display: block; }
.redeyed-thumb__meta { padding: 8px 10px; text-align: center; }
.redeyed-thumb__name { color: #d8dade; font-size: 12.5px; font-weight: 700; }
.redeyed-thumb__meta a { color: var(--redeyed-red-bright); font-size: 12.5px; }

/* Processing spinner */
.redeyed-processing { text-align: center; padding: 40px 10px; color: #c4c4c8; }
.redeyed-processing p { margin: 16px 0 6px; }
.redeyed-processing small { color: #7f838c; }
.redeyed-spinner {
  display: inline-block; width: 42px; height: 42px; border-radius: 50%;
  border: 3px solid rgba(230,0,0,.2); border-top-color: var(--redeyed-red);
  animation: redeyed-spin 0.8s linear infinite;
  box-shadow: 0 0 18px rgba(230,0,0,.4);
}

@media (max-width: 600px) {
  .redeyed-tools-hero { padding: 120px 0 30px; }
  .redeyed-tools-cat-head { margin: 40px 0 20px; }
}

/* ============================================================
   Redeyed hero v2 — eye-globe lockup + digital-world + SUPERCHARGED + pillars
   ============================================================ */

/* The "unique digital world": drop your wide world-map artwork at
   public/images/redeyed-world.png (transparent or dark). It layers behind
   everything; if absent the CSS dotted-globe below still carries the look. */
.redeyed-hero__world {
  position: absolute; left: 50%; top: 40%; transform: translate(-50%, -50%);
  width: min(1100px, 150vw); height: min(1100px, 150vw); z-index: -6; pointer-events: none;
  background: url('/images/eye.png') no-repeat center / contain;
  opacity: .10; filter: blur(3px) saturate(1.2);
  -webkit-mask-image: radial-gradient(circle, #000 45%, transparent 72%);
          mask-image: radial-gradient(circle, #000 45%, transparent 72%);
  animation: redeyed-spin 90s linear infinite;
}
/* CSS dotted-globe fallback/ambiance (always on, sits with the .map layer) */
.redeyed-hero__map {
  width: 1300px; height: 620px; top: 4%; opacity:.4;
  background-image:
    radial-gradient(rgba(230,0,0,.5) 1.1px, transparent 1.6px),
    radial-gradient(rgba(255,255,255,.10) 1px, transparent 1.4px);
  background-size: 13px 13px, 21px 21px;
  -webkit-mask-image: radial-gradient(circle at 50% 45%, #000 30%, rgba(0,0,0,.5) 52%, transparent 70%);
          mask-image: radial-gradient(circle at 50% 45%, #000 30%, rgba(0,0,0,.5) 52%, transparent 70%);
  animation: rey-globe 60s linear infinite;
}
@keyframes rey-globe { to { background-position: 260px 0, -160px 0; } }

/* content */
.rey-hero { position: relative; z-index: 3; text-align: center; padding: 110px 16px 70px; max-width: 940px; margin: 0 auto; }

.rey-hero__lockwrap { position: relative; display: inline-block; margin: 0 auto 18px; padding: 0; }
.rey-hero__lockup { display: block; width: clamp(280px, 46vw, 540px); height: auto;
  filter: drop-shadow(0 0 30px rgba(230,0,0,.55)) drop-shadow(0 0 70px rgba(230,0,0,.35));
  animation: rey-breathe 3.4s ease-in-out infinite; }
.rey-hero__halo { position: absolute; left: 50%; top: 38%; transform: translate(-50%,-50%); width: 60%; height: 70%;
  border-radius: 50%; background: radial-gradient(circle, rgba(230,0,0,.30), transparent 65%); filter: blur(14px); z-index: -1;
  animation: rey-breathe 3.4s ease-in-out infinite; }
@keyframes rey-breathe { 0%,100% { transform: scale(1); opacity:.96 } 50% { transform: scale(1.03); opacity:1 } }

.rey-hero__word { font-size: clamp(40px,8vw,92px); font-weight: 900; letter-spacing: 2px; line-height: 1; margin: 0; transform: skewX(-6deg); }
.rey-hero__word .r { color: var(--redeyed-red); }
.rey-hero__word .w { color: #fff; }
.rey-hero__word .dot { color: var(--redeyed-red); }
.rey-hero__word .w, .rey-hero__word .r { text-shadow: 0 0 30px rgba(230,0,0,.4); }

.rey-hero__lab { display: flex; align-items: center; justify-content: center; gap: 14px; margin: 14px 0 6px; }
.rey-hero__lab::before, .rey-hero__lab::after { content: ""; height: 1px; width: 60px; background: linear-gradient(90deg, transparent, var(--redeyed-red)); }
.rey-hero__lab::after { background: linear-gradient(90deg, var(--redeyed-red), transparent); }
.rey-hero__lab span { color: #d6d9de; font-size: clamp(12px,2vw,17px); font-weight: 600; letter-spacing: 7px; text-transform: uppercase; }

.rey-hero__pillars { color: #9aa0aa; font-size: clamp(11px,1.6vw,14px); letter-spacing: 4px; text-transform: uppercase; margin: 0 0 22px; }
.rey-hero__pillars i { color: var(--redeyed-red); font-style: normal; margin: 0 6px; }

.rey-hero__lead { color: #9aa0aa; font-size: 16px; line-height: 1.8; max-width: 620px; margin: 0 auto 30px; }
.rey-hero__cta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* SUPERCHARGED band with HUD brackets */
.rey-hero__super { display: flex; align-items: center; justify-content: center; gap: 18px; margin: 60px 0 8px; }
.rey-hero__super h2 { color: var(--redeyed-red); font-size: clamp(20px,4vw,34px); font-weight: 800; letter-spacing: 10px; text-transform: uppercase; margin: 0; text-shadow: 0 0 26px rgba(230,0,0,.6); }
.rey-hero__super .brk { width: 90px; height: 16px; border: 2px solid rgba(230,0,0,.7); border-right: 0; border-bottom: 0; transform: skewX(-20deg); }
.rey-hero__super .brk--r { border: 2px solid rgba(230,0,0,.7); border-left: 0; border-top: 0; }
.rey-hero__impact { color: #cfd3d9; font-size: clamp(13px,2vw,16px); letter-spacing: 3px; text-transform: uppercase; margin: 0 0 36px; }

/* Feature pillars */
.rey-hero__pillargrid { display: flex; justify-content: center; flex-wrap: wrap; gap: 0; }
.rey-pillar { display: flex; align-items: center; gap: 12px; padding: 8px 30px; color: #c7ccd3; text-align: left; }
.rey-pillar + .rey-pillar { border-left: 1px solid rgba(230,0,0,.25); }
.rey-pillar i { color: var(--redeyed-red); font-size: 24px; filter: drop-shadow(0 0 8px rgba(230,0,0,.5)); }
.rey-pillar span { font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; line-height: 1.35; }

@media (max-width: 700px) {
  .rey-hero__lockup { width: clamp(240px, 80vw, 420px); }
  .rey-hero__pillargrid { gap: 8px; }
  .rey-pillar { padding: 8px 14px; }
  .rey-pillar + .rey-pillar { border-left: 0; }
}

/* Nav logo cap */
.header__logo img { max-width: 170px; height: auto; }

/* ============================================================
   Top-nav auth buttons (Log In / Sign Up)
   ============================================================ */
.rey-nav-auth { display: inline-flex; align-items: center; gap: 12px; margin-right: 14px; }
.rey-nav-login {
  color: #fff !important; font-weight: 600; font-size: 14px; letter-spacing: .5px;
  text-decoration: none; transition: color .18s ease; white-space: nowrap;
}
.rey-nav-login:hover { color: var(--redeyed-red-bright) !important; }
.rey-nav-signup {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--redeyed-red); color: #fff !important; font-weight: 700; font-size: 14px;
  letter-spacing: .5px; text-decoration: none; padding: 9px 20px; border-radius: 8px;
  border: 1px solid var(--redeyed-red); white-space: nowrap;
  box-shadow: 0 0 18px rgba(230,0,0,.45); transition: all .18s ease;
}
.rey-nav-signup:hover { background: var(--redeyed-red-bright); border-color: var(--redeyed-red-bright); color: #fff !important; transform: translateY(-1px); box-shadow: 0 0 28px rgba(230,0,0,.7); }
@media (max-width: 480px) {
  .rey-nav-auth { gap: 8px; margin-right: 8px; }
  .rey-nav-login { display: none; }            /* keep just Sign Up on tiny screens */
  .rey-nav-signup { padding: 8px 14px; font-size: 13px; }
}
