@font-face {
  font-family: 'GlacialIndifference-Bold';
  src: url('fonts/GlacialIndifference/GlacialIndifference-Bold.otf') format('opentype');
}

@font-face {
  font-family: 'ITC Franklin Gothic LT Medium';
  src: url('fonts/ITC Franklin Gothic/ITC Franklin Gothic LT Medium.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'ITC Franklin Gothic LT Medium';
  src: url('fonts/ITC Franklin Gothic/ITC Franklin Gothic LT Medium Italic.otf') format('opentype');
  font-weight: normal;
  font-style: italic;
}

@font-face {
  font-family: 'canva-sans';
  src: url('fonts/canva-sans-regular.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

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

html,
body {
  overflow-x: hidden;
  width: 100%;
  scroll-snap-type: y mandatory;
  scroll-behavior: smooth;
}

html {
  /* height: 100%; */
  padding: 0;
  margin: 0;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  /* height: 100%; */
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: #000;
  /* background: #000 url('img/bg.jpg') no-repeat center center ;
  background-attachment: fixed;
  -webkit-background-attachment: fixed;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover; */
  color: #eee;
}

:root {
  /* ========================================= */
  /* HERO SECTION POSITIONING CONFIGURATION */
  /* ========================================= */
  /* Adjust these values to change the position/size of the hero text block */
  --hero-position-top: 45%;
  /* Vertical position (percentage of screen height) */
  --hero-position-right: 2%;
  /* Horizontal position from right */
  --hero-width: 500px;
  /* Width of the text block */
  --hero-padding: 30px;
  /* Internal padding of the box */

  /* Text Sizes & Spacing */
  --hero-title-size: 5em;
  --hero-subtitle-highlight-size: 2em;
  --hero-subtitle-size: 0.8rem;
  --hero-gap-spacing: 10px;
  /* Space between elements */

  /* Mobile Adjustments */
  --hero-mobile-bottom-offset: 20px;
  /* Distance from bottom */

  /* ========================================= */
  /* INSIDERS PAGE OVERRIDES                 */
  /* ========================================= */
  --insiders-position-top: 40%;
  --insiders-position-right: 2%;
  --insiders-mobile-bottom-offset: 100px;
}

body::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  background-color: #00000066;
  opacity: 0;
  /* Initial blur value */
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  /* For Safari */
  transition: backdrop-filter 0.3s ease, -webkit-backdrop-filter 0.3s ease;
}

.bg {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  /* bottom: 0; */
  height: 100vh;
  z-index: -1;
  background: url('img/bg2.jpg') no-repeat center center;
  background-size: cover;
  pointer-events: none;
}

a {
  color: #fcc78f;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #d4a266;
  margin: 0;
  padding: 0;
  margin-top: 1em;
  font-weight: 400;
  font-family: 'ITC Franklin Gothic LT Medium', sans-serif;
}

h1 {
  text-align: center;
}

.text-page-footer {
  text-align: center;
  padding: 20px;
  /* background-color: rgba(0, 0, 0, 0.5); */
  color: #ccc;
  position: relative;
  text-transform: uppercase;
}

.overlay {
  backdrop-filter: blur(2px);
}

.content-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.content-blured-bg {
  backdrop-filter: blur(2px);
  background-color: #2f211ac7;
  border-radius: 10px;
  padding: 80px;
  width: 100%;
  max-width: 1000px;
  margin-top: 100px;
  /* flex-grow: 1; */

  /* margin: 60px; */
  /* box-shadow: 0 0 30px 10px rgba(0, 0, 0, 0.8),
    -40px -40px 100px 0px rgba(44, 143, 182, 0.4),
    40px 40px 100px 0px rgba(217, 70, 54, 0.5); */
}

.logo {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  background: url('img/logo_invokers.png') no-repeat center center;
  background-size: contain;
  height: 140px;
}

.table td {
  border: 1px solid #999;
  /* background: #000; */
  padding: 8px
}


nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #000;
  z-index: 1000;
  padding: 0.5rem 0;
}

.text-page nav {
  background-color: #000;
}

.nav-container {
  display: flex;
  justify-content: flex-end;
  /* Ensure valid property */
  align-items: center;
  max-width: 100%;
  /* Allow full width */
  margin: 0;
  /* Remove centering margin */
  padding-right: 40px;
  /* Add some padding from the edge */
  position: relative;
}

/* Burger Menu Styles */
.burger-menu {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 25px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 2000;
  position: absolute;
  left: 15px;
}

.burger-menu span {
  width: 100%;
  height: 3px;
  background-color: #fff;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.burger-menu.active span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.burger-menu.active span:nth-child(2) {
  opacity: 0;
}

.burger-menu.active span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* Nav Logo */
.nav-logo-container {
  display: none;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1500;
}

.nav-logo {
  height: 37px;
  width: auto;
}

.sidebar-logo-item,
.sidebar-socials,
.sidebar-footer {
  display: none;
}

.nav-links {
  display: flex;
  list-style: none;
  padding: 0;
}

.nav-links li {
  margin-left: 2rem;
}

.nav-links a {
  text-decoration: none;
  color: #fff;
  font-weight: 800;
  /* Bolder */
  transition: all 0.3s ease;
  text-transform: uppercase;
  font-family: 'GlacialIndifference-Bold', sans-serif;
  font-size: 21px;
  /* White bloom effect */
  text-shadow:
    0 0 2px rgba(255, 255, 255, 0.3),
    0 0 5px rgba(255, 255, 255, 0.2);
}

.nav-links a:hover,
.nav-links a.active {
  color: #FFDE59;
  /* Yellow bloom effect */
  text-shadow:
    0 0 4px rgba(255, 222, 89, 0.4),
    0 0 8px rgba(255, 222, 89, 0.2);
}



/* Logo removed from here, defined below relative to hero card */

.main-page section.main-section {
  position: relative;
  /* For absolute positioning of children */
}

/* Right aligned hero structure */
.main-page .content.right-aligned-hero {
  position: absolute;
  right: var(--hero-position-right);
  top: var(--hero-position-top);
  /* Moved up from 55% */
  transform: translateY(-50%);
  width: var(--hero-width);
  margin: 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--hero-gap-spacing);
}

.insiders-hero {
  /* Remap the generic variables to the specific insiders ones */
  --hero-position-top: var(--insiders-position-top);
  --hero-position-right: var(--insiders-position-right);
  --hero-mobile-bottom-offset: var(--insiders-mobile-bottom-offset);
}


.main-page .content.center-hero {
  position: relative;
  width: 500px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-card {
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  padding: var(--hero-padding);
  border-radius: 10px;
}

.insiders-box {
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* Centers vertically */
  align-items: center;
  /* Centers horizontally */
  text-align: center;
  /* Centers text lines */

  padding: 30px 30px;
  border-radius: 10px;
  /* max-width: 700px; */
  height: 400px;
  width: 600px;
  /* min-height: 100%; */
  margin: 0 auto;
}

.join-section-card {
  background: rgba(0, 0, 0, 0.45) !important;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border-radius: 10px;
}

.insiders-box .title {
  font-size: clamp(2em, 5vw, 5em) !important;
  /* Adjust size as needed */
  line-height: 0.9em;
  /* Makes the two lines closer together */
  margin-top: 0;
  /* Removes space at the top */
  text-transform: uppercase;
  /* Makes it ALL CAPS */
  white-space: nowrap;
}

.insiders-box .subtitle {
  font-size: clamp(1.1em, 2vw + 0.8em, 1.6em) !important;
  /* Makes the description text adaptive */
  max-width: 100%;
  color: #ffffff !important;
  /* Keeps text from hitting the edges */
}

.insiders-box .divider {
  font-size: 1.5em;
  /* Makes the ✦ star bigger */
  margin: 15px 0;
}

/* Adjust logo to be relative to the content wrapper if desired, 
   but currently I set it absolute global. Let's make it part of the flow 
   or adjust positioning. */
.main-page .logo {
  position: relative;
  top: -50px;
  right: auto;
  width: 100%;
  height: 100px;
  /* Reduced specific height */
  /* margin-bottom: 10px; */
  /* Overlap slightly */
  z-index: 10;
}

.main-page .title {
  font-family: 'ITC Franklin Gothic LT Medium', sans-serif;
  font-size: clamp(2em, 6vw, var(--hero-title-size));
  color: #fff;
  line-height: 0.9em;
  margin: 0;
  font-weight: bold;
  text-transform: uppercase;
  text-shadow:
    0 0 2px rgba(255, 255, 255, 0.4),
    0 0 5px rgba(255, 211, 77, 0.2),
    0 0 10px rgba(255, 222, 89, 0.1);
  mix-blend-mode: screen;
  /* Optional: adds to the background lightness */
  white-space: nowrap;
}

.subtitle-highlight {
  font-family: 'ITC Franklin Gothic LT Medium', sans-serif;
  color: #FFDE59;
  font-size: var(--hero-subtitle-highlight-size);
  margin-top: 10px;
  text-shadow: 0 0 2px rgba(255, 222, 89, 0.2);
}

.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  color: #FFDE59;
  font-size: 1.5em;
  margin: 0px 0;
}

.divider::before,
.divider::after {
  content: "";
  display: block;
  width: 80px;
  /* Increased from 50px */
  height: 2px;
  /* Increased from 2px */
  background: #FFDE59;
  border-radius: 2px;
}

.divider::before,
.divider::after {
  background: linear-gradient(170deg, transparent, #FFDE59, transparent);
}

.main-page .subtitle {
  font-family: 'ITC Franklin Gothic LT Medium', sans-serif;
  /* Clean sans serif */
  font-style: italic;
  font-size: var(--hero-subtitle-size);
  color: #ccc;
  line-height: 1.4em;
  text-shadow: none;
  padding: 0 10px;
}

.hero-description {
  font-style: italic !important;
}

/* Hero Footer Links */
.hero-footer-links {
  position: absolute;
  bottom: 40px;
  left: 60px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 20;
}

.hero-footer-links .social-icon {
  display: block;
  width: 40px;
  height: 40px;
  background-size: contain;
  opacity: 0.7;
  margin-bottom: 10px;
  transition: opacity 0.3s;
}

.hero-footer-links .social-icon:hover {
  opacity: 1;
}

.hero-footer-links .social-icon.fb {
  background: url('img/facebook.svg') no-repeat center center;
}

.hero-footer-links .social-icon.discord {
  background: url('img/discord.svg') no-repeat center center;
}

.hero-footer-links .social-icon.youtube {
  background: url('img/youtube.svg') no-repeat center center;
}

.hero-footer-links .legal-links {
  display: flex;
  gap: 10px;
  align-items: baseline;
  font-family: Arial, sans-serif;
  text-transform: uppercase;
}

.hero-footer-links .legal-links .separator {
  color: #ba9571;
  font-size: 0.9em;
}

.hero-footer-links a {
  color: #ba9571;
  text-decoration: none;
  font-size: 1.2em;
  transition: color 0.3s;
}

.hero-footer-links a:hover {
  color: #FFDE59;
}

.hero-footer-links .copyright {
  display: block;
  margin-top: 5px;
  font-size: 0.8em;
  color: #777;
  font-family: sans-serif;
}


.footer-layout {
  display: flex;
  justify-content: center;
  z-index: 1;
  position: relative;
  /* align-items: center; */
}

.text-page .footer-layout {
  position: relative;

}

.main-page-footer {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px 40px;
  text-align: center;
  color: #927355;
  z-index: 100;
  position: relative;
  box-sizing: border-box;
}

.main-page-footer ul.links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 20px;
}

.main-page-footer .social-links,
.main-page-footer ul.links {
  justify-content: center;
}

.main-page-footer ul.links li {
  margin: 0 20px 0 0;
}

.main-page-footer ul.links li {
  margin: 0 50px;
}

.main-page-footer ul.links a {
  text-transform: uppercase;
  text-decoration: none;

  color: #ba9571;
}

.main-page-footer ul.links a:hover {
  color: #fcc78f;
}

.main-page-footer .social-links>a {
  width: 48px;
  height: 48px;
  display: inline-block;
  opacity: 0.5;
  margin-right: 4px;
  transition: 0.2s;
}

.main-page-footer .social-links>a:hover {
  opacity: 1;
}

.main-page-footer .social-links .fb {
  background: url('img/facebook.svg') no-repeat center center;
  background-size: contain;
}

.main-page-footer .social-links .discord {
  background: url('img/discord.svg') no-repeat center center;
  background-size: contain;
}

.main-page-footer .social-links .youtube {
  background: url('img/youtube.svg') no-repeat center center;
  background-size: contain;
}

.main-page-footer .copyright {
  text-transform: uppercase;
  font-size: 0.7em;
}

.main-page section {
  position: relative;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  z-index: 1;
}

.main-page section.h100 {
  height: 100vh;
}

.slide .text {
  max-width: 600px;
  padding: 20px;
}

.slide h2,
.join-section-title {
  font-family: 'ITC Franklin Gothic LT Medium', sans-serif;
  font-size: clamp(2em, 6vw, var(--hero-title-size));
  color: #fff;
  line-height: 0.9em;
  margin: 0;
  margin-bottom: 20px;
  /* Kept some margin for spacing */
  font-weight: bold;
  text-transform: uppercase;
  text-shadow:
    0 0 2px rgba(255, 255, 255, 0.2),
    0 0 5px rgba(255, 211, 77, 0.1);
  mix-blend-mode: screen;
}

.slide p,
.join-section-status,
.join-section-note {
  font-family: 'canva-sans', sans-serif;
  font-size: var(--hero-subtitle-size) !important;
  color: #ccc;
  line-height: 1.4em;
  font-style: normal;
  text-shadow: none;
  margin-top: 10px;
}

.slide p a {
  color: inherit;
  text-decoration: underline;
}

.slide .slide-image {
  height: auto;
  width: auto;
  max-width: 50vw;
  display: block;
  margin: 20px;
  border-radius: 10px;
  box-shadow: 0 0 30px 0px rgba(0, 0, 0, 1);
}

.download-slide {
  padding: 80px 20px;
}

.store-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 30px;
}

.store-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.store-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.store-button img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 280px;
}

.store-button.disabled {
  cursor: default;
  opacity: 0.65;
  border-style: dashed;
}

.store-button.disabled:hover {
  transform: none;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.slide.feature-slide {
  padding: 80px 50px;
  /* max-width: 1200px; */
}







.slide.feedback-slide .text {
  max-width: 600px;
  /* Matched to general slide text width */
}

.slide .video-frame {
  border-radius: 10px;
  width: 80vw;
  height: 45vw;
  max-width: 80vh;
  max-height: 45vh;
  position: relative;
  box-shadow: 0 0 30px 0px rgba(0, 0, 0, 1);
}

.slide.flex {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
}

#scroll-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 1000;
  background: url('img/scroll-up.svg') no-repeat center center;
  background-size: contain;
  transition: 0.4s;
  border: none;
  outline: none;
  padding: 0;
  display: flex;
  opacity: 0;
}

#scroll-down {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 1000;
  background: url('img/scroll-up.svg') no-repeat center center;
  background-size: contain;
  transform: rotate(180deg);
  transition: 0.4s;
  border: none;
  outline: none;
  padding: 0;
  display: flex;
}

#scroll-down:hover {
  transform: rotate(180deg) scale(1.1);
  box-shadow: 0 0 5px rgba(255, 222, 89, 0.3);
}

.home-page #scroll-to-top {
  bottom: 70px;
}

/* Benefits Table Styles */
.benefits-section {
  align-items: center;
  justify-content: center;
  display: flex;
  flex-direction: column;
  /* Ensure title stacks above table */
}

.benefits-header {
  text-align: center;
  margin-bottom: 5px;
}

.benefits-container {
  background: rgba(0, 0, 0, 0.85);
  padding: 40px;
  border-radius: 10px;
  max-width: 1000px;
  width: 90%;
  margin: 0 auto;
  text-align: center;
}

.benefits-title {
  color: #fff;
  font-size: 3em;
  text-transform: uppercase;
  margin-bottom: 10px;
  font-family: 'ITC Franklin Gothic LT Medium', sans-serif;
  font-weight: bold;
  text-shadow:
    0 0 2px rgba(255, 255, 255, 0.4),
    0 0 5px rgba(255, 211, 77, 0.2),
    0 0 10px rgba(255, 222, 89, 0.1);
  mix-blend-mode: screen;
}

.benefits-subtitle {
  color: #FFDE59;
  font-style: italic;
  margin-top: 1px;
  margin-bottom: 30px;
  font-size: 1.2em;
}

/* Download Section Buttons */
.store-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: nowrap;
  margin-top: 20px;
}

.store-button {
  display: block;
  text-decoration: none;
  transition: transform 0.2s;
  flex-shrink: 0;
}

.store-button:hover {
  transform: scale(1.05);
}

.store-button img {
  height: 44px;
  width: auto;
  display: block;
}

.benefits-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 6px;
  /* Spacing between cells */
  margin-bottom: 30px;
  font-family: 'ITC Franklin Gothic LT Medium', sans-serif;
  position: relative;
  /* Anchor point for dynamic children */
}

.benefits-table th {
  padding: 15px;
  text-transform: uppercase;
  color: #ccc;
  font-weight: bold;
  position: relative;
  background: rgba(30, 20, 50, 0.8);
  /* Dark Purple */
  border-radius: 2px;
}

/* Hide the empty top-left header cell */
.benefits-table thead th:first-child {
  background: transparent;
  opacity: 0;
  pointer-events: none;
}

.benefits-table th.pioneer-col-head {
  position: relative;
  background: linear-gradient(70deg, #390826 0%, #bd347a 100%);
  border-radius: 2px;
  z-index: 1;
  padding: 15px;
  color: #FFDE59;
  text-align: center;
  vertical-align: middle;
}

/* Specific text gradient for the word PIONEER when wrapped in a span */
.benefits-table th.pioneer-col-head span {
  background: linear-gradient(to right, #ffec84, #ff8c00);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  font-weight: bold;
}

/* Create a large border overlay for the entire Pioneer column */
.benefits-table th.pioneer-col-head::before {
  content: "";
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  /* DYNAMIC HEIGHT: Calculated by JavaScript or fallback to a guess */
  height: var(--pioneer-height, calc(100% + 400px));
  border: 3px solid #FFDE59;
  border-radius: 2px;
  pointer-events: none;
  z-index: -1;
}

/* Remove hardcoded overrides - JS will handle this now */


.benefits-table td {
  padding: 12px;
  color: #fff;
  font-size: 1.2em;
  background: rgba(40, 30, 60, 0.6);
  /* Slightly lighter purple */
  border-radius: 2px;
  text-align: center;
  vertical-align: middle;
  height: 10px;
  /* Ensures consistent row height */
  /* font-family: 'canva-sans', sans-serif; */
}

.benefits-table td.tick {
  color: #88ff88;
  font-size: 1.5em;
}

.benefits-table td.row-label {
  text-align: center;
  color: #fff;
  font-size: 1em;
  padding: 12px;
  background: rgba(40, 30, 60, 0.8);
  border-radius: 2px;
}

.benefits-table td.pioneer-col {
  background: rgba(51, 28, 69, 0.8);
  border-radius: 2px;
  position: relative;
  z-index: 1;
}

.benefits-table tbody tr:last-child td.pioneer-col {
  border-radius: 2px;
}


.benefits-footer {
  font-size: 0.9em;
  color: #ccc;
  font-family: Arial, sans-serif;
}

.benefits-footer p:first-child {
  color: #FFDE59;
}

.benefits-footer-split {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 20px;
  text-align: left;
}

.benefits-footer-split p {
  flex: 1;
  margin: 0;
  color: #FFDE59;
}

.benefits-footer-split p:nth-child(2) {
  text-align: right;
}

.benefits-footer .highlight-gold {
  color: #FFDE59;
  font-weight: bold;
}

.benefits-footer .highlight-white {
  color: #fff;
  font-weight: bold;
}

/* Insiders Page Styles */
.join-button {
  display: inline-block;
  border: 2px solid #fff;
  color: #fff;
  padding: 10px 40px;
  font-size: 1.5em;
  font-weight: bold;
  text-decoration: none;
  border-radius: 5px;
  background: rgba(0, 0, 0, 0.3);
  font-family: 'ITC Franklin Gothic LT Medium', sans-serif;
  text-transform: uppercase;
  transition: all 0.3s ease;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  margin-bottom: 20px;
}

.join-button:hover {
  background: #fff;
  color: #000;
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.5);
}

.insider-footer-text {
  font-size: 0.9em;
  color: #ccc;
  line-height: 1.4em;
  font-family: Arial, sans-serif;
}

.insider-footer-text p {
  margin: 5px 0;
}

/* Join Section Styles */
.join-section-card {
  padding: 60px 40px;
  max-width: 800px;
  width: 90%;
  margin: 0 auto;
}

.join-section-title {
  font-family: 'ITC Franklin Gothic LT Medium', sans-serif;
  font-size: 4em;
  color: #fff;
  margin: 0 0 10px 0;
  text-transform: none;
  text-shadow:
    0 0 3px rgba(255, 255, 255, 0.200),
    0 0 9px rgba(255, 255, 200, 0.4);
}

.join-section-subtitle {
  font-family: 'ITC Franklin Gothic LT Medium', sans-serif;
  color: #FFDE59;
  font-size: 2em;
  font-weight: bold;
  margin-bottom: 30px;
}

.join-now-box-button {
  display: inline-block;
  border: 3px solid #FFDE59;
  color: #fff;
  padding: 15px 60px;
  font-size: 2.5em;
  font-weight: bold;
  text-decoration: none;
  text-transform: uppercase;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.5);
  font-family: 'ITC Franklin Gothic LT Medium', sans-serif;
  text-shadow: 0 0 3px rgba(255, 255, 255, 0.8);
  box-shadow: 0 0 9px rgba(255, 222, 89, 0.2);
  transition: all 0.3s ease;
  margin-bottom: 40px;
}

.join-now-box-button:hover {
  background: #FFDE59;
  color: #000;
  text-shadow: none;
}

.join-section-footer {
  max-width: 600px;
  margin: 0 auto;
}

.join-section-status {
  margin-bottom: 15px;
}

.join-section-note {
  opacity: 0.8;
}

@media (max-width: 1200px) {
  .nav-links li {
    margin-left: 20px;
    font-size: 1em;
  }

  .main-page section.main-section {
    align-items: center;
  }

  .main-page .content {
    margin-right: 0;
  }

  .slide.flex {
    flex-direction: column;
  }

  .slide .slide-image {
    max-width: 100%;
  }
}

@media (max-width: 900px) {
  .main-page .content.right-aligned-hero {
    position: relative;
    right: auto;
    top: auto;
    transform: none;
    width: 95%;
    max-width: 500px;
    margin: 0 auto;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 120px);
    /* Account for padding and header */
  }

  .main-page .content.center-hero {
    width: 100%;
    max-width: 640px;
    padding: 0 20px;
    box-sizing: border-box;
  }

  .main-page .logo {
    position: relative;
    top: auto;
    height: 100px;
    margin: 0 auto 40px;
    /* Clear space between logo and hero card below */
    display: block;
  }

  .insiders-box {
    width: 95%;
    max-width: 600px;
    height: auto;
    min-height: 300px;
    padding: 40px 20px;
    margin: 0 auto;
  }

  .insiders-box .title {
    font-size: 2.8em !important;
  }

  .main-page section.h100 {
    min-height: 100vh;
    padding: 80px 20px 60px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  /* .main-page-footer was hidden here, now it should be visible */
}

@media (max-width: 768px) {
  nav {
    background-color: #000;
    /* Solid black, no transparency */
    padding: 23px 0;
  }

  .nav-container {
    justify-content: center;
    padding: 0 5px;
  }

  section#home.h100,
  section#insiders.h100 {
    justify-content: flex-end !important;
    padding-bottom: 0px !important;
    padding-top: 0px !important;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.4) 40%, rgba(0, 0, 0, 0.8) 70%, #000 100%) !important;
  }

  /* Show burger menu on mobile */
  .burger-menu {
    display: flex;
    width: 30px;
    height: 20px;
  }

  /* Show logo in nav on mobile */
  .nav-logo-container {
    display: block;
  }

  /* Mobile navigation styles */
  .nav-links {
    position: fixed;
    left: 0;
    top: 0;
    flex-direction: column;
    background-color: #0f0f0f;
    width: 300px;
    height: 100vh;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    padding: 20px 0;
    margin: 0;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.5);
    overflow-y: auto;
    z-index: 1500;
  }

  .nav-links.active {
    transform: translateX(0);
  }

  .nav-links li {
    margin: 0;
    width: 100%;
    text-align: left;
  }

  .nav-links li a {
    display: block;
    padding: 15px 20px;
    font-size: 18px !important;
    /* Force consistent size */
  }

  .sidebar-logo-item {
    border-bottom: none !important;
    padding: 40px 20px 20px;
    display: flex;
    justify-content: center;
    width: 100%;
  }

  .sidebar-logo {
    width: 270px;
    height: auto;
  }

  .sidebar-socials {
    display: flex !important;
    justify-content: center !important;
    gap: 25px !important;
    padding: 30px 20px 20px !important;
    border-bottom: none !important;
    margin-top: auto !important;
  }

  .sidebar-socials a {
    display: block !important;
    padding: 0 !important;
    border: none !important;
  }

  .sidebar-socials img {
    width: 32px;
    height: 32px;
    filter: brightness(0) invert(1);
    opacity: 0.8;
    transition: opacity 0.3s, transform 0.3s;
  }

  .sidebar-socials a:hover img {
    opacity: 1;
    transform: scale(1.1);
  }

  .nav-links .sidebar-footer {
    display: block !important;
    padding: 0 20px 30px;
    text-align: center !important;
    border-bottom: none !important;
    margin-top: 0 !important;
  }

  .sidebar-legal-links {
    margin-bottom: 10px;
    font-size: 0.75em;
    font-family: 'canva-sans', sans-serif;
    display: flex;
    justify-content: center;
    white-space: nowrap;
  }

  .nav-links .sidebar-footer .sidebar-legal-links a {
    display: inline-block !important;
    padding: 0 5px !important;
    color: #888 !important;
    text-decoration: none !important;
    font-size: 12px !important;
    font-weight: normal !important;
    font-family: 'canva-sans', sans-serif !important;
    text-transform: uppercase !important;
    border-bottom: none !important;
    text-shadow: none !important;
  }

  .sidebar-legal-links .separator {
    color: #444;
  }

  .sidebar-copyright {
    font-size: 9px;
    color: #555;
    font-family: 'canva-sans', sans-serif;
    font-weight: normal;
  }

  :root {
    scroll-padding-top: 80px;
  }

  .main-page .title {
    font-size: 2.5em !important;
    line-height: 1.1em !important;
    text-shadow: 0 0 10px #fff, 0 0 20px rgba(255, 255, 255, 0.4) !important;
    margin: 0 auto !important;
    text-align: center !important;
    width: 100% !important;
    white-space: wrap !important;
    letter-spacing: -1px !important;
  }

  .slide h2,
  .join-section-title {
    font-size: 2.5em !important;
    line-height: 1.1em !important;
    text-shadow: 0 0 4px rgba(255, 255, 255, 0.3) !important;
    text-align: center !important;
    white-space: normal !important;
    margin-bottom: 20px !important;
  }

  .main-page .title br {
    display: none !important;
  }

  .main-page .logo {
    display: none;
  }

  .subtitle-highlight {
    font-size: 1.4em !important;
    color: #FFDE59 !important;
    text-shadow: 0 0 8px rgba(255, 222, 89, 0.6) !important;
    margin-top: 3px !important;
    text-align: center !important;
  }

  .hero-card {
    padding: 20px 10px !important;
    width: 100% !important;
    max-width: 500px !important;
    background: transparent !important;
    box-sizing: border-box !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    margin: 0 auto !important;
    box-shadow: none !important;
    border: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  /* Specific override to keep the join card visible on mobile */
  .join-section-card {
    background: rgba(0, 0, 0, 0.45) !important;
    backdrop-filter: blur(4px) !important;
    -webkit-backdrop-filter: blur(4px) !important;
    border: none !important;
    box-shadow: none !important;
  }


  /* Store Buttons */
  .store-btn {
    display: inline-flex;
    align-items: center;
    background-color: #000;
    border: 1px solid #fff;
    border-radius: 10px;
    padding: 5px 12px;
    text-decoration: none;
    color: #fff;
    margin: 5px;
    transition: transform 0.2s, background-color 0.2s;
    min-width: 160px;
    height: 50px;
    box-sizing: border-box;
  }

  .store-btn:hover {
    transform: scale(1.05);
    background-color: #111;
    border-color: #FFDE59;
    /* Nice touch */
  }

  .store-btn .store-btn-icon img {
    width: 38px;
    height: auto;
    margin-right: 10px;
    display: block;
  }

  .store-btn .store-btn-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    line-height: 1;
    text-align: left;
  }

  .store-btn .small-text {
    font-size: clamp(0.5em, 2vw, 0.7em);
    font-weight: 400;
    text-transform: uppercase;
    font-family: sans-serif;
    opacity: 0.9;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
    white-space: nowrap;
  }

  .store-btn .large-text {
    font-size: clamp(0.8em, 4vw, 1.2em);
    font-weight: 600;
    font-family: sans-serif;
    letter-spacing: 0.5px;
    white-space: nowrap;
  }

  /* Feature Slide Buttons Wrapper */
  .store-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
  }


  .main-page .content.right-aligned-hero {
    position: relative !important;
    right: auto !important;
    top: auto !important;
    transform: none !important;
    width: 100% !important;
    min-height: 0 !important;
    margin: 0 auto !important;
    padding: 0 5px 5px !important;
    margin-bottom: var(--hero-mobile-bottom-offset) !important;
    /* Push visual center up */
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    z-index: 10 !important;
  }

  .main-page .subtitle,
  .slide p,
  .join-section-status,
  .join-section-note {
    font-size: 0.8rem !important;
    /* GIVE US FEEDBACK */
    line-height: 1.2em !important;
    color: #eee !important;
    text-align: center !important;
    margin-top: 1px !important;
    text-shadow: none !important;
    font-family: 'canva-sans', sans-serif !important;
    font-style: normal !important;
  }

  .slide,
  section.main-section {
    min-height: 100svh;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 120px 20px;
    box-sizing: border-box;
    margin-bottom: 20vh;
  }

  .benefits-section {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 100vh;
    padding: 40px 0;
    width: 100%;
  }

  .benefits-container {
    padding: 10px 5px;
    /* Minimal padding */
    width: 100%;
    /* Take full width */
    margin: 0 auto;
    box-sizing: border-box;
  }

  .benefits-title {
    font-size: 1.6em;
    /* Slightly smaller for better fit */
    text-align: center;
    margin-bottom: 15px;
    padding: 0 10px;
  }

  .benefits-table {
    display: table;
    /* Standard table layout to fit width */
    width: 100%;
    table-layout: fixed;
    /* Force all columns to share space */
    border-spacing: 2px;
    /* Tight spacing */
    font-size: 0.65em;
    /* Small font to fit all 6 columns */
    margin: 0 auto 30px;
  }

  .benefits-table th,
  .benefits-table td {
    padding: 4px 2px;
    /* Minimal padding */
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
  }

  .benefits-table td.row-label {
    font-size: 0.8em;
    /* Relative to table font size */
    padding-left: 4px;
    text-align: left;
    width: 30%;
    /* Balanced split with check columns */
  }

  .benefits-table th.pioneer-col-head::before {
    display: block;
    top: -2px;
    left: -2px;
    right: -2px;
    border-width: 2px;
  }

  .nav-links a {
    text-shadow: 0 0 2px rgba(255, 255, 255, 0.3);
    /* Subdued white bloom */
  }

  .nav-links a:hover,
  .nav-links a.active {
    text-shadow: 0 0 4px rgba(255, 222, 89, 0.4);
    /* Subdued yellow bloom */
  }

  .join-section-title,
  .benefits-title {
    text-shadow:
      0 0 3px rgba(255, 255, 255, 0.3),
      0 0 6px rgba(255, 211, 77, 0.2);
  }

  .join-section-subtitle {
    text-shadow: 0 0 2px rgba(255, 222, 89, 0.2);
  }

  .slide h2 {
    text-shadow: 0 0 0.1em rgba(201, 181, 121, 0.25);
  }

  .join-now-box-button {
    text-shadow: 0 0 2px rgba(255, 255, 255, 0.4);
    box-shadow: 0 0 5px rgba(255, 222, 89, 0.1);
  }

  .footer-layout {
    position: relative;
    padding-bottom: 40px;
  }

  .main-page-footer {
    width: 100%;
    padding: 20px;
    text-align: center;
  }

  .main-page-footer .social-links {
    text-align: center;
    justify-content: center;
    display: flex;
    width: 100%;
    margin-bottom: 15px;
  }

  .main-page-footer .social-links,
  .main-page-footer ul.links {
    justify-content: center !important;
  }

  .main-page-footer ul.links {
    justify-content: center;
    padding: 0;
  }

  .main-page-footer ul.links li {
    margin: 5px 15px;
  }


}


@media (max-width: 480px) {
  .nav-links li {
    font-size: 16px;
    /* Use px to avoid relative scaling issues */
    margin: 3px 5px;
  }

  .main-page .title {
    font-size: 2.8em !important;
  }

  .insiders-box .title {
    font-size: 2.8em !important;
  }

  .slide.feature-slide p {
    font-size: 1.1em;
  }

  .insiders-box .subtitle {
    font-size: 1.1em !important;
  }

  .divider::before,
  .divider::after {
    width: 30px;
  }

  .main-page .title {
    font-size: 2.6em !important;
  }

  .insiders-box .title {
    font-size: 2.6em !important;
  }

  .slide h2 {
    font-size: 1.8em;
  }

  .slide.feature-slide p {
    font-size: 1.2em;
  }
}


/* Tooltip styles */
[data-tooltip] {
  position: relative;
}

[data-tooltip]::before {
  content: attr(data-tooltip);
  position: absolute;
  bottom: 120%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: #FFDE59;
  color: #000;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: bold;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  z-index: 1000;
  box-shadow: 0 4px 15px rgba(255, 222, 89, 0.4);
  text-transform: uppercase;
  font-family: 'ITC Franklin Gothic LT Medium', sans-serif;
  pointer-events: none;
}

[data-tooltip]::after {
  content: '';
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  border: 10px solid transparent;
  border-top-color: #FFDE59;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  z-index: 1000;
  pointer-events: none;
}

[data-tooltip].show-tooltip::before,
[data-tooltip].show-tooltip::after {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

/* Default hidden */
.mobile-creator-cta {
  display: none;
}

/* Mobile Creator CTA Styles */
@media (max-width: 768px) {

  /* Hide desktop hero footer and navigation on mobile */
  .hero-footer-links,
  #scroll-to-top,
  #scroll-down {
    display: none !important;
  }

  .mobile-creator-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin-top: 20px;
    padding-bottom: 20px;
    /* Space for the arrow */
  }

  .store-badges {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 0px;
    width: 100%;
  }

  .store-badges .badge {
    display: block;
    width: 130px;
    /* Adjust as needed */
    height: auto;
    transition: transform 0.2s;
  }

  .store-badges .badge:hover {
    transform: scale(1.05);
  }

  .store-badges .badge img {
    width: 100%;
    height: auto;
    display: block;
  }

  .creator-text {
    font-family: 'canva-sans', sans-serif;
    color: #FFDE59;
    font-size: 0.9em;
    text-align: center;
    margin-bottom: 15px;
    width: 100%;
  }

  .creator-text .highlight {
    color: #FFDE59;
    font-weight: bold;
    text-transform: uppercase;
  }

  .join-now-btn,
  .join-button {
    display: inline-block;
    border: 2px solid #FFDE59;
    /* Goldish border */
    color: #fff;
    padding: 10px 30px;
    font-size: 0.7em;
    font-weight: bold;
    text-decoration: none;
    text-transform: uppercase;
    border-radius: 5px;
    background: rgba(0, 0, 0, 0.4);
    font-family: 'ITC Franklin Gothic LT Medium', sans-serif;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
    box-shadow: 0 0 10px rgba(186, 149, 113, 0.3);
    margin-bottom: 20px;
    transition: all 0.3s ease;
  }

  .join-now-btn:hover,
  .join-button:hover {
    background: #FFDE59;
    color: #000;
    box-shadow: 0 0 20px rgba(186, 149, 113, 0.6);
  }

  .mobile-scroll-arrow {
    display: none !important;
  }

  .mobile-scroll-arrow::after {
    content: '';
    position: absolute;
    top: 8px;
    left: 8px;
    width: 15px;
    height: 15px;
    border-right: 5px solid #FFDE59;
    border-bottom: 5px solid #FFDE59;
  }

  @keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
      transform: translateY(0) rotate(45deg);
    }

    40% {
      transform: translateY(-10px) rotate(45deg);
    }

    60% {
      transform: translateY(-5px) rotate(45deg);
    }
  }

}

/* Global Override for Email Link */
.slide.feedback-slide a {
  color: #FFDE59 !important;
}

/* FORCE OVERRIDE FOR MOBILE BUTTONS (Home & Insiders) */
@media (max-width: 768px) {

  :root {
    --mobile-unified-heading-size: 28px;
  }

  body.main-page.home-page #home .hero-card .title,
  body.main-page.home-page section h2 {
    font-size: var(--mobile-unified-heading-size) !important;
    white-space: nowrap !important;
  }

  body.main-page.home-page #home .hero-card .title br {
    display: none;
  }

  body.main-page.home-page #home .content.right-aligned-hero {
    transform: translateY(clamp(8px, 1.8vh, 18px)) !important;
  }

  body.main-page.insiders-page #insiders .hero-card .title,
  body.main-page.insiders-page .insiders-box .title,
  body.main-page.insiders-page h2.benefits-title,
  body.main-page.insiders-page h2.join-section-title {
    font-size: var(--mobile-unified-heading-size) !important;
    white-space: nowrap !important;
  }

  body.main-page.insiders-page #insiders .hero-card .title br,
  body.main-page.insiders-page .insiders-box .title br {
    display: none;
  }

  /* 1. BUTTONS */
  .join-now-box-button,
  .join-now-btn,
  .join-button {
    font-size: 1.4em !important;
    padding: 7px 17px !important;
  }

  /* 2. FEEDBACK SLIDE SPACING & TEXT */
  .slide.feature-slide,
  .slide.feedback-slide {
    /* Removed massive reduction to keep slides independent */
  }

  .slide.feedback-slide h2 {
    font-size: var(--mobile-unified-heading-size) !important;
    margin-bottom: 0.2em !important;
    /* Pull text closer */
    margin-top: 0 !important;
  }

  .slide.feedback-slide p {
    font-size: 1.4em !important;
    margin-bottom: 0.5em !important;
  }

  /* 3. COMPACT FOOTER */
  .main-page-footer {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 15px !important;
    padding: 20px 20px !important;
    margin-top: 160px !important;
    padding-bottom: 10px !important;
  }

  .home-page .main-page-footer {
    margin-top: 160px !important;
  }

  .main-page-footer .social-links {
    width: auto !important;
    margin-bottom: 0 !important;
  }

  .main-page-footer ul.links {
    margin-top: 0 !important;
    display: flex !important;
  }

  .main-page-footer ul.links li {
    margin: 0 10px !important;
  }

  /* 4. REDUCED BLOOM */
  .main-page .title,
  .insiders-box .title {
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.5) !important;
    /* Reduced from 10px/20px */
  }
}
