/*
Theme Name: REALITY TAG LEGENDARY
Theme URI: https://realitytag.com
Author: ROKETHOUSE
Author URI: https://rokethouse.co.uk
Description: Premium £75k theme for REALITY TAG - Optical proof of reality
Version: 4.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: realitytag
*/

:root {
  --font-sans: -apple-system, system-ui, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", sans-serif;
  --deep-black: #020308;
  --neon-cyan: #3ad5ff;
  --neon-green: #52ff8a;
  --neon-purple: #b16dff;
}

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

body {
  font-family: var(--font-sans);
  background: var(--deep-black);
  color: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  line-height: 1.6;
}

.page {
  min-height: 100vh;
  position: relative;
}

/* === SECTION SEPARATORS === */
.section-separator {
  height: 1px;
  background: linear-gradient(90deg, 
    transparent, 
    rgba(255,255,255,0.08) 20%, 
    rgba(255,255,255,0.08) 80%, 
    transparent
  );
  margin: 0 auto;
  max-width: 1400px;
}

/* === TOP BAR === */
.top-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 60px;
  display: flex;
  align-items: center;
  padding: 0 40px;
  justify-content: space-between;
  backdrop-filter: blur(30px) saturate(180%);
  background: rgba(0,0,0,0.85);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1000;
}

.top-logo {
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #fff;
  font-weight: 600;
  opacity: 1;
  white-space: nowrap;
}

.top-tagline {
  font-size: 11px;
  letter-spacing: 0.03em;
  color: rgba(255,255,255,0.55);
  font-weight: 400;
  font-style: normal;
  flex: 1;
  text-align: center;
  max-width: 500px;
  margin: 0 auto;
  white-space: nowrap;
}

.top-cta {
  font-size: 11px;
  padding: 9px 20px;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.05);
  color: rgba(255,255,255,0.95);
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.top-cta span.icon {
  font-size: 10px;
  opacity: 0.7;
}

.top-cta:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-1px);
  border-color: rgba(255,255,255,0.3);
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}

/* === COMMON SECTION STYLES === */
.rt-section {
  width: 100%;
  position: relative;
}

.rt-inner {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 4vw;
}

/* === HERO SECTION === */
.rt-section.rt-hero {
  padding: 200px 0 200px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background:
    radial-gradient(ellipse at top, rgba(58,213,255,0.06), transparent 60%),
    radial-gradient(ellipse at bottom right, rgba(82,255,138,0.04), transparent 60%),
    var(--deep-black);
  color: #fff;
  position: relative;
}

.rt-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

/* LOGO LOCKUP */
.rt-logo-lockup {
  margin-bottom: 1.5rem;
}

/* LOGO IMAGE STYLING */
.rt-logo-img {
  height: 60px;
  width: auto;
  display: block;
}



/* SACRED TAGLINE */
.rt-hero-sacred-tagline {
  font-size: 1.15rem;
  letter-spacing: 0.02em;
  font-weight: 400;
  color: rgba(255,255,255,0.95);
  margin-bottom: 2.5rem;
  font-style: italic;
}

/* H1 - THE HEADLINE */
.rt-hero-copy h1 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 600;
  line-height: 1.25;
  margin: 0 0 1.5rem;
  color: #fff;
  letter-spacing: -0.02em;
}

.rt-hero-context {
  margin: 0 0 2.5rem;
  font-size: 1.05rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.85);
}

/* BUTTONS — premium neon */
.rt-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.rt-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.8rem;
  border-radius: 999px;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  white-space: nowrap;
  font-weight: 600;
}

.rt-btn-neon {
  background: linear-gradient(135deg, var(--neon-green), var(--neon-cyan), var(--neon-purple));
  color: #000;
  box-shadow: 0 10px 30px rgba(82,255,138,0.35);
  position: relative;
  overflow: hidden;
}

.rt-btn-neon::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.5s;
}

.rt-btn-neon:hover::before {
  left: 100%;
}

.rt-btn-neon:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 42px rgba(82,255,138,0.45);
}

.rt-btn-outline {
  border: 1px solid rgba(255,255,255,0.28);
  color: rgba(255,255,255,0.95);
  background: rgba(255,255,255,0.04);
}

.rt-btn-outline:hover {
  background: rgba(255,255,255,0.09);
  border-color: rgba(255,255,255,0.5);
  transform: translateY(-1px);
}

/* HERO BADGE — SIMPLE 3D BOOMERANG + SHINE */
.rt-hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* === BADGE WITH SHINE === */
.rt-badge-wrap {
  width: 320px;
  max-width: 90%;
  position: relative;
  display: block;
}

.rt-badge-img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.rt-badge-img:hover {
  transform: scale(1.02);
}

/* MASKED SHINE SWEEP ON BADGE */
.rt-badge-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 200%;
  height: 100%;
  background: linear-gradient(
    110deg,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,0) 35%,
    rgba(255,255,255,0.5) 45%,
    rgba(255,255,255,0.9) 50%,
    rgba(255,255,255,0.5) 55%,
    rgba(255,255,255,0) 65%,
    rgba(255,255,255,0) 100%
  );
  mix-blend-mode: overlay;
  pointer-events: none;
  animation: badgeShine 8s ease-in-out 2s infinite;
}

@keyframes badgeShine {
  0%, 100% {
    left: -100%;
  }
  30% {
    left: 100%;
  }
}





/* === HUMAN CONTEXT STRIP === */
.rt-section.rt-context {
  padding: 80px 0;
  background: var(--deep-black);
  color: #fff;
}

.rt-context-label {
  text-align: center;
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.7);
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.rt-context-images {
  display: flex;
  gap: 0.8rem;
  justify-content: center;
  flex-wrap: nowrap;
  overflow-x: auto;
}

.rt-context-image {
  width: 260px;
  height: 260px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 20px 60px rgba(0,0,0,0.8);
  background: rgba(5,8,15,0.9);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.rt-context-image-wide {
  width: 360px;
  height: 260px;
}

.rt-context-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(58,213,255,0.08), transparent);
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 1;
}

.rt-context-image:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 30px 80px rgba(58,213,255,0.2), 0 0 40px rgba(58,213,255,0.1);
  border-color: rgba(58,213,255,0.3);
}

.rt-context-image:hover::before {
  opacity: 1;
}

.rt-context-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.85) contrast(1.08) saturate(0.95);
  transition: filter 0.3s;
}

.rt-context-image:hover img {
  filter: brightness(1) contrast(1.1) saturate(1);
}

/* === SCIENCE SECTION === */
.rt-section.rt-science {
  padding: 160px 0;
  background: 
    radial-gradient(ellipse at center, rgba(58,213,255,0.03), transparent 70%),
    #010208;
  color: #fff;
}

.rt-science-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 5rem;
  align-items: center;
}

.rt-science-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  opacity: 0.6;
  margin-bottom: 0.8rem;
  font-weight: 600;
}

.rt-science-copy h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 500;
  margin: 0 0 1.5rem;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.rt-science-text {
  margin: 0 0 2rem;
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.78);
}

.rt-science-points {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.8);
}

.rt-science-points li { 
  margin-bottom: 0.8rem;
  padding-left: 1.5rem;
  position: relative;
}

.rt-science-points li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--neon-cyan);
  font-weight: bold;
}

.rt-science-points strong {
  color: #fff;
  font-weight: 600;
}

/* Science visual - stacked images */
.rt-science-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.rt-science-image-wrap {
  width: 100%;
  max-width: 380px;
  padding: 8px;
  border-radius: 18px;
  background:
    radial-gradient(circle at top left, rgba(255,255,255,0.12), transparent),
    rgba(5,10,18,1);
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: 0 20px 50px rgba(0,0,0,0.9);
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.rt-science-image-wrap:hover {
  transform: translateY(-4px);
  box-shadow: 0 25px 60px rgba(58,213,255,0.15);
  border-color: rgba(58,213,255,0.25);
}

.rt-science-image-wrap img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

/* === UNDER THE HOOD SECTION === */
.rt-section.rt-underhood {
  padding: 160px 0;
  background:
    radial-gradient(ellipse at top left, rgba(177,109,255,0.04), transparent 60%),
    #010208;
  color: #fff;
}

.rt-underhood-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
}

.rt-underhood-label {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.6;
  margin-bottom: 0.8rem;
  font-weight: 600;
}

.rt-underhood-header h2 {
  margin: 0 0 1.5rem;
  font-size: clamp(1.7rem, 2.8vw, 2.3rem);
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.rt-underhood-header p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.78);
}

.rt-underhood-video-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.rt-underhood-video-wrap {
  width: 100%;
  max-width: 600px;
  padding: 12px;
  border-radius: 26px;
  background:
    radial-gradient(circle at top left, rgba(255,255,255,0.18), transparent),
    rgba(5,10,18,1);
  border: 1px solid rgba(255,255,255,0.16);
  box-shadow: 0 25px 70px rgba(0,0,0,0.98);
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.rt-underhood-video-wrap:hover {
  transform: translateY(-4px);
  box-shadow: 0 35px 90px rgba(58,213,255,0.15);
  border-color: rgba(58,213,255,0.25);
}

.rt-underhood-video {
  width: 100%;
  display: block;
  border-radius: 20px;
  object-fit: cover;
}

.rt-underhood-caption {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.45);
  font-weight: 500;
}

/* === AI FAIL SECTION === */
.ai-fail-section {
  padding: 160px 0;
  background: 
    radial-gradient(ellipse at bottom, rgba(177,109,255,0.05), transparent 60%),
    #02030a;
}

.ai-fail-header {
  text-align: center;
  margin-bottom: 4rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.ai-fail-label {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.6;
  margin-bottom: 1rem;
  color: #fff;
  font-weight: 600;
}

.ai-fail-header h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 500;
  margin: 0 0 1rem;
  color: #fff;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.ai-fail-media {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 3rem;
  max-width: 900px;
  margin: 0 auto;
}

.ai-fail-video-wrap {
  width: 100%;
  border-radius: 24px;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(255,255,255,0.14), transparent),
    rgba(5,10,18,1);
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: 0 25px 60px rgba(0,0,0,0.85);
  position: relative;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.ai-fail-video-wrap:hover {
  transform: translateY(-6px);
  box-shadow: 0 35px 80px rgba(177,109,255,0.2);
  border-color: rgba(177,109,255,0.3);
}

.ai-fail-video-wrap video {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.ai-fail-caption {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.9);
  background: rgba(0,0,0,0.8);
  backdrop-filter: blur(12px);
  padding: 8px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.18);
  max-width: 90%;
  text-align: center;
  line-height: 1.4;
  font-weight: 500;
}

/* === BUY SECTION === */
.buy-section {
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: 
    radial-gradient(circle at center, rgba(58,213,255,0.04), transparent 70%),
    #010208;
  padding: 120px 32px;
  text-align: center;
}

.buy-section h3 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 500;
  color: #fff;
  margin-bottom: 2rem;
  letter-spacing: -0.02em;
}

.btn-main {
  padding: 14px 32px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.25);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  background: rgba(255,255,255,0.08);
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
}

.btn-main:hover {
  background: rgba(255,255,255,0.14);
  transform: translateY(-3px);
  box-shadow: 0 20px 50px rgba(58,213,255,0.3);
  border-color: rgba(58,213,255,0.4);
}

/* === FOOTER === */
footer {
  padding: 80px 32px;
  text-align: center;
  background: var(--deep-black);
  color: rgba(255,255,255,0.5);
  font-size: 0.75rem;
  line-height: 2;
  border-top: 1px solid rgba(255,255,255,0.06);
}

footer a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: color 0.3s;
  font-weight: 500;
}

footer a:hover {
  color: var(--neon-cyan);
}

/* === FOUNDERS LIST PANEL === */
.rt-founders-panel {
  position: fixed;
  right: 32px;
  bottom: 32px;
  width: 380px;
  max-width: calc(100% - 64px);
  background: rgba(3,3,6,0.97);
  border-radius: 24px;
  padding: 28px 24px 24px;
  box-shadow: 0 22px 80px rgba(0,0,0,0.85);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.14);
  transform: translateY(140%);
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 9999;
}

.rt-founders-panel.is-visible {
  transform: translateY(0);
  opacity: 1;
}

.rt-founders-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  border: none;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  color: rgba(255,255,255,0.7);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.rt-founders-close:hover {
  background: rgba(255,255,255,0.14);
  color: #fff;
}

.rt-founders-inner h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.8rem;
  letter-spacing: -0.01em;
}

.rt-founders-inner p {
  font-size: 0.88rem;
  line-height: 1.55;
  color: rgba(255,255,255,0.75);
  margin-bottom: 1.5rem;
}

.rt-founders-form input,
.rt-founders-form button {
  width: 100%;
  margin-top: 10px;
  padding: 12px 16px;
  border-radius: 12px;
  border: none;
  font-size: 14px;
  font-family: inherit;
}

.rt-founders-form input {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: #fff;
  transition: all 0.3s ease;
}

.rt-founders-form input:focus {
  outline: none;
  background: rgba(255,255,255,0.08);
  border-color: rgba(177,109,255,0.4);
  box-shadow: 0 0 0 3px rgba(177,109,255,0.1);
}

.rt-founders-form input::placeholder {
  color: rgba(255,255,255,0.4);
}

.rt-founders-form button {
  margin-top: 14px;
  font-weight: 600;
  cursor: pointer;
  background: linear-gradient(135deg, rgba(177,109,255,0.9), rgba(58,213,255,0.8));
  color: #fff;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 13px;
}

.rt-founders-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(177,109,255,0.3);
}

.rt-founders-note {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  margin-top: 12px;
  line-height: 1.5;
  text-align: center;
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .rt-hero-grid,
  .rt-science-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .rt-hero-visual {
    order: -1;
  }

  .rt-science-visual {
    max-width: 100%;
  }

  .top-tagline {
    display: none;
  }

  .top-bar {
    padding: 0 28px;
  }
}

@media (max-width: 768px) {
  .rt-section.rt-hero {
    padding: 120px 0 100px;
    min-height: auto;
  }
  
  .rt-hero-grid {
    gap: 3rem;
  }
  
  .rt-badge-wrap {
    width: 260px;
  }

  .rt-hero-sacred-tagline {
    font-size: 1rem;
    margin-bottom: 2rem;
  }

  .rt-hero-copy h1 {
    font-size: 1.35rem;
  }

  .rt-section.rt-context,
  .rt-section.rt-science,
  .rt-section.rt-underhood,
  .ai-fail-section {
    padding: 100px 0;
  }

  .rt-context-images {
    flex-wrap: wrap;
    gap: 1.2rem;
  }

  .rt-context-image {
    width: calc(50% - 0.6rem);
    height: 180px;
    min-width: 160px;
  }

  .rt-science-grid {
    gap: 3rem;
  }

  .rt-underhood-video-wrap {
    max-width: 100%;
  }

  .ai-fail-media {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .buy-section {
    min-height: 60vh;
    padding: 80px 24px;
  }

  .top-bar {
    padding: 0 24px;
    height: 56px;
  }

  .top-logo {
    font-size: 12px;
  }

  .top-tagline {
    display: none;
  }

  .top-cta {
    font-size: 10px;
    padding: 8px 16px;
  }
}

@media (max-width: 480px) {
  .rt-badge-wrap {
    width: 220px;
  }

  .rt-founders-panel {
    right: 16px;
    bottom: 16px;
    max-width: calc(100% - 32px);
    padding: 24px 20px 20px;
  }

  .rt-context-images {
    flex-direction: column;
    align-items: center;
  }

  .rt-context-image {
    width: 100%;
    max-width: 300px;
    height: 220px;
  }
}