/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Syncopate:wght@400;700&family=Outfit:wght@300;400;500;600;700&display=swap');

/* Color Variables and Core Theme (Dark Cyberpunk Style matching VR Bird logo) */
:root {
  --bg-color: #080b11; /* Deep navy dark space color matching bird's body */
  --bg-color-rgba: rgba(8, 11, 17, 0.75);
  --bg-card: rgba(16, 20, 33, 0.65);
  --bg-card-hover: rgba(22, 28, 46, 0.85);
  --accent-purple: #a121ce;
  --accent-cyan: #00b8d4; /* Electric cyberpunk cyan */
  --accent-orange: #ff9f1c; /* Logo orange/gold wing and strap color */
  --text-primary: #f9f5eb; /* Warm cream text from the logo background */
  --text-secondary: #9ea4b8; /* Cool slate gray */
  --glow-orange: 0 0 15px rgba(255, 159, 28, 0.45);
  --glow-cyan: 0 0 15px rgba(0, 184, 212, 0.4);
  --glow-purple: 0 0 15px rgba(161, 33, 206, 0.4);
  --border-light: rgba(249, 245, 235, 0.08); /* Faint cream borders */
  --border-glow: rgba(255, 159, 28, 0.3);
  --font-title: 'Syncopate', sans-serif; /* Wide geometric tech font matching Trancespace logo */
  --font-body: 'Outfit', sans-serif;
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  user-select: none;
}

html {
  scroll-behavior: smooth;
  background-color: var(--bg-color);
  color: var(--text-primary);
  font-family: var(--font-body);
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}

/* Cyberpunk Tech Grid Background */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(249, 245, 235, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(249, 245, 235, 0.015) 1px, transparent 1px);
  background-size: 50px 50px;
  z-index: -2;
  pointer-events: none;
}

/* Scrollbar Customization */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-color);
}
::-webkit-scrollbar-thumb {
  background: rgba(249, 245, 235, 0.15);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent-orange);
  box-shadow: var(--glow-orange);
}

/* Background Canvas */
#webgl-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  pointer-events: none;
}

/* Custom Cursor */
.cursor-dot {
  width: 6px;
  height: 6px;
  background-color: var(--text-primary);
  border-radius: 50%;
  position: fixed;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 9999;
  transition: width 0.2s, height 0.2s, background-color 0.2s;
}

.cursor-ring {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 159, 28, 0.5);
  border-radius: 50%;
  position: fixed;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 9998;
  transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1), 
              height 0.3s cubic-bezier(0.16, 1, 0.3, 1), 
              border-color 0.3s, background-color 0.3s;
}

/* Cursor Hover Class */
.cursor-hover .cursor-dot {
  width: 10px;
  height: 10px;
  background-color: var(--accent-purple);
}

.cursor-hover .cursor-ring {
  width: 50px;
  height: 50px;
  border-color: var(--accent-purple);
  background-color: rgba(161, 33, 206, 0.05);
}

/* Scroll Progress Bar */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-purple), var(--accent-orange), var(--accent-cyan));
  width: 0%;
  z-index: 10000;
  box-shadow: 0 0 10px rgba(255, 159, 28, 0.5);
}

/* Glassmorphism Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  background: rgba(8, 11, 17, 0.25);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-light);
  transition: var(--transition-smooth);
}

header.scrolled {
  padding: 1rem 5%;
  background: rgba(8, 11, 17, 0.85);
  box-shadow: 0 4px 30px rgba(8, 11, 17, 0.5);
}

.brand-container {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-logo {
  height: 42px;
  width: auto;
  border-radius: 8px;
  border: 1px solid var(--border-light);
  transition: var(--transition-smooth);
}

.brand-container:hover .brand-logo {
  transform: rotate(5deg) scale(1.05);
  border-color: var(--accent-orange);
  box-shadow: var(--glow-orange);
}

.brand-name {
  font-family: var(--font-title);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: 2px;
  background: linear-gradient(135deg, var(--text-primary) 50%, var(--accent-orange) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

nav a {
  font-family: var(--font-title);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-secondary);
  text-decoration: none;
  letter-spacing: 2px;
  transition: var(--transition-smooth);
  position: relative;
  padding: 5px 0;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-orange), var(--accent-cyan));
  transition: var(--transition-smooth);
}

nav a:hover {
  color: var(--text-primary);
  text-shadow: 0 0 8px rgba(255, 159, 28, 0.2);
}

nav a:hover::after {
  width: 100%;
}

.btn-meta {
  font-family: var(--font-title);
  font-size: 0.75rem;
  font-weight: 700;
  color: #ffffff;
  background: linear-gradient(135deg, var(--accent-cyan), var(--bg-color));
  border: none;
  padding: 0.6rem 1.4rem;
  border-radius: 30px;
  text-decoration: none;
  letter-spacing: 2px;
  box-shadow: var(--glow-cyan);
  transition: var(--transition-smooth);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-meta:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 25px rgba(0, 184, 212, 0.7);
}

/* Sections General */
section {
  min-height: 100vh;
  padding: 8rem 8% 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 1;
}

/* Hero Section */
#hero {
  align-items: flex-start;
  max-width: 52%;
  z-index: 2;
}

.mobile-instagram-post {
  display: none;
}

.hero-subtitle {
  font-family: var(--font-title);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 4px;
  color: var(--accent-orange);
  text-transform: uppercase;
  margin-bottom: 1rem;
  display: inline-block;
  position: relative;
  animation: pulse-orange 3s infinite alternate;
}

.hero-title {
  font-family: var(--font-title);
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 2px;
  margin-bottom: 1.5rem;
}

.hero-title span {
  display: block;
  background: linear-gradient(135deg, var(--text-primary) 30%, var(--accent-purple) 70%, var(--accent-orange) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  padding-bottom: 5px;
}

.hero-desc {
  font-size: 1.15rem;
  line-height: 1.6;
  color: var(--text-secondary);
  max-width: 550px;
  margin-bottom: 2.5rem;
  font-weight: 300;
}

.hero-ctas {
  display: flex;
  gap: 1.5rem;
}

.btn-primary {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 2px;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, var(--accent-orange), var(--accent-purple));
  color: #ffffff;
  border: none;
  border-radius: 4px;
  text-decoration: none;
  box-shadow: var(--glow-orange);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

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

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

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 25px rgba(255, 159, 28, 0.7), 0 0 15px rgba(161, 33, 206, 0.3);
}

.btn-secondary {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 2px;
  padding: 1rem 2rem;
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-light);
  border-radius: 4px;
  text-decoration: none;
  transition: var(--transition-smooth);
}

.btn-secondary:hover {
  border-color: var(--accent-orange);
  box-shadow: var(--glow-orange);
  background: rgba(255, 159, 28, 0.05);
}

/* Glassmorphism Card Style */
.glass-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 2.5rem;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.glass-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.03), transparent);
  pointer-events: none;
}

.glass-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-glow);
  transform: translateY(-5px);
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.5), 0 0 15px rgba(255, 159, 28, 0.2);
}

/* Flagship Trancespace Section */
#trancespace {
  min-height: auto;
  padding-bottom: 8rem;
}

.section-tag {
  font-family: var(--font-title);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent-purple);
  text-transform: uppercase;
  letter-spacing: 4px;
  margin-bottom: 0.5rem;
  text-shadow: var(--glow-purple);
}

.section-title {
  font-family: var(--font-title);
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: 3px;
  margin-bottom: 3rem;
  background: linear-gradient(135deg, var(--text-primary) 50%, var(--text-secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.product-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3.5rem;
  align-items: center;
}

.product-showcase {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.main-image-container {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: 0 10px 30px rgba(0,0,0,0.6);
  aspect-ratio: 16/9;
  transition: var(--transition-smooth);
}

.main-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.main-image-container:hover img {
  transform: scale(1.04);
}

.image-overlay-text {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 2rem;
  background: linear-gradient(to top, rgba(8, 11, 17, 0.95), transparent);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.overlay-title {
  font-family: var(--font-title);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--text-primary);
}

.overlay-subtitle {
  font-size: 0.85rem;
  color: var(--accent-orange);
  font-weight: 600;
}

.thumbnail-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

@media (max-width: 768px) {
  .thumbnail-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
  }
}

@media (max-width: 480px) {
  .thumbnail-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }
}

.thumbnail-item {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border-light);
  aspect-ratio: 16/9;
  cursor: pointer;
  transition: var(--transition-smooth);
  position: relative;
}

.thumbnail-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
  filter: grayscale(35%) brightness(80%);
}

.thumbnail-item.active {
  border-color: var(--accent-orange);
  box-shadow: var(--glow-orange);
}

.thumbnail-item.active img {
  filter: grayscale(0) brightness(100%);
}

.thumbnail-item:hover img {
  filter: grayscale(0) brightness(100%);
  transform: scale(1.02);
}

.product-details {
  display: flex;
  flex-direction: column;
}

.product-brand {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 1.5rem;
}

.product-logo {
  height: 50px;
  border-radius: 8px;
  border: 1px solid var(--border-light);
  box-shadow: var(--glow-purple);
}

.product-name {
  font-family: var(--font-title);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--text-primary);
}

.product-desc {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 2rem;
  font-size: 1rem;
  font-weight: 300;
}

.features-list {
  list-style: none;
  margin-bottom: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.features-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--text-secondary);
  font-size: 0.95rem;
  font-weight: 300;
}

.features-list li svg {
  color: var(--accent-cyan);
  flex-shrink: 0;
  margin-top: 3px;
  filter: drop-shadow(0 0 5px var(--accent-cyan));
}

.features-list li strong {
  color: var(--text-primary);
}

/* Premium Product Brand & Large Icon */
.product-brand-large {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-light);
}

.product-logo-large {
  width: 120px;
  height: 120px;
  border-radius: 28px;
  border: 2px solid var(--border-light);
  box-shadow: var(--glow-purple), 0 8px 30px rgba(0, 0, 0, 0.5);
  transition: var(--transition-smooth);
  object-fit: cover;
  flex-shrink: 0;
}

.product-logo-large:hover {
  transform: scale(1.08) rotate(3deg);
  border-color: var(--accent-purple);
  box-shadow: 0 0 30px rgba(161, 33, 206, 0.8), 0 12px 40px rgba(0, 0, 0, 0.6);
}

.product-brand-text {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.product-tag-mini {
  font-family: var(--font-title);
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--accent-orange);
  letter-spacing: 2px;
  text-transform: uppercase;
  text-shadow: var(--glow-orange);
}

.product-title-large {
  font-family: var(--font-title);
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 3px;
  background: linear-gradient(135deg, var(--text-primary) 30%, var(--accent-purple) 70%, var(--accent-orange) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.product-tagline {
  font-size: 1rem;
  color: var(--text-secondary);
  font-style: italic;
  font-weight: 400;
}

/* Sections of description */
.product-section {
  margin-bottom: 2rem;
}

.product-desc-large {
  color: var(--text-primary);
  line-height: 1.7;
  font-size: 1.05rem;
  font-weight: 300;
}

.diff-section {
  padding: 1.5rem;
  background: rgba(255, 159, 28, 0.03);
  border: 1px solid rgba(255, 159, 28, 0.1);
  border-radius: 12px;
}

.product-section-title {
  font-family: var(--font-title);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent-orange);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
  text-shadow: var(--glow-orange);
}

.product-diff-desc {
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: 0.95rem;
  font-weight: 300;
}

/* Premium Features List */
.features-list-premium {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.features-list-premium li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.feature-icon {
  color: var(--accent-cyan);
  background: rgba(0, 184, 212, 0.08);
  border: 1px solid rgba(0, 184, 212, 0.2);
  border-radius: 50%;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 0 10px rgba(0, 184, 212, 0.1);
  transition: var(--transition-smooth);
}

.features-list-premium li:hover .feature-icon {
  color: var(--text-primary);
  background: var(--accent-cyan);
  box-shadow: var(--glow-cyan);
  transform: scale(1.1);
}

.feature-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.feature-text strong {
  color: var(--text-primary);
  font-size: 1rem;
  font-weight: 600;
}

.feature-text span {
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.5;
  font-weight: 300;
}

.meta-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-light);
}

.info-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.info-label {
  font-family: var(--font-title);
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--text-secondary);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.info-value {
  font-size: 0.95rem;
  color: var(--text-primary);
  font-weight: 600;
}

.product-ctas {
  display: flex;
  gap: 1rem;
}

/* About & Founder Section */
#about {
  min-height: auto;
  padding-bottom: 8rem;
}

.about-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: stretch;
}

.founder-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2rem;
}

.founder-header {
  display: flex;
  align-items: center;
  gap: 20px;
}

.founder-avatar-wrapper {
  position: relative;
  width: 80px;
  height: 80px;
}

.founder-avatar {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid var(--accent-purple);
  object-fit: cover;
  box-shadow: var(--glow-purple);
}

.founder-glow {
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  border-radius: 50%;
  background: conic-gradient(from 0deg, var(--accent-purple), var(--accent-orange), var(--accent-purple));
  z-index: -1;
  filter: blur(8px);
  opacity: 0.4;
  animation: rotate-conic 10s linear infinite;
}

.founder-title-group h3 {
  font-family: var(--font-title);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--text-primary);
}

.founder-title-group p {
  color: var(--accent-orange);
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
}

.founder-bio {
  color: var(--text-secondary);
  line-height: 1.7;
  font-weight: 300;
}

.founder-bio p {
  margin-bottom: 1rem;
}

.founder-bio p:last-child {
  margin-bottom: 0;
}

.founder-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-light);
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-primary);
  text-decoration: none;
  font-size: 0.95rem;
  transition: var(--transition-smooth);
}

.contact-link svg {
  color: var(--accent-orange);
}

.contact-link:hover {
  color: var(--accent-orange);
  text-shadow: var(--glow-orange);
}

.qr-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 1.5rem;
}

.qr-image-wrapper {
  background: #ffffff;
  padding: 1.25rem;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.8);
  display: inline-flex;
  transition: var(--transition-smooth);
  border: 2px solid transparent;
}

.qr-image-wrapper:hover {
  border-color: var(--accent-orange);
  box-shadow: 0 0 25px rgba(255, 159, 28, 0.4);
}

.qr-image-wrapper img {
  width: 180px;
  height: auto;
}

.qr-text h4 {
  font-family: var(--font-title);
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
  letter-spacing: 2px;
}

.qr-text p {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

/* Footer Section */
footer {
  padding: 4rem 8% 2rem;
  border-top: 1px solid var(--border-light);
  background: rgba(8, 11, 17, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 10;
  position: relative;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 3rem;
}

.footer-brand {
  max-width: 300px;
}

.footer-brand p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-top: 1rem;
  line-height: 1.5;
}

.footer-links {
  display: flex;
  gap: 4rem;
}

.footer-link-group {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-link-group h5 {
  font-family: var(--font-title);
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-primary);
}

.footer-link-group a {
  font-size: 0.85rem;
  color: var(--text-secondary);
  text-decoration: none;
  transition: var(--transition-smooth);
}

.footer-link-group a:hover {
  color: var(--accent-orange);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--text-secondary);
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.footer-socials {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.footer-socials a {
  color: var(--text-secondary);
  transition: var(--transition-smooth);
}

.footer-socials a:hover {
  color: var(--accent-purple);
  transform: translateY(-2px);
}

/* Privacy Policy Layout & Formatting */
.privacy-container {
  max-width: 800px;
  margin: 6rem auto 4rem;
  padding: 3rem;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.privacy-header {
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 1.5rem;
  margin-bottom: 2.5rem;
}

.privacy-title {
  font-family: var(--font-title);
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, var(--text-primary), var(--accent-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.privacy-meta {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.privacy-content h2 {
  font-family: var(--font-title);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 2px;
  margin: 2.5rem 0 1rem;
  color: var(--accent-orange);
  border-bottom: 1px solid rgba(255, 159, 28, 0.2);
  padding-bottom: 5px;
}

.privacy-content p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  font-weight: 300;
}

.privacy-content ul {
  list-style: none;
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.privacy-content ul li {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-secondary);
  padding-left: 20px;
  position: relative;
  font-weight: 300;
}

.privacy-content ul li::before {
  content: '>';
  position: absolute;
  left: 0;
  color: var(--accent-purple);
  font-family: var(--font-title);
  font-weight: bold;
}

/* Animations */
@keyframes pulse-orange {
  0% {
    text-shadow: 0 0 10px rgba(255, 159, 28, 0.25);
  }
  100% {
    text-shadow: 0 0 20px rgba(255, 159, 28, 0.6), 0 0 30px rgba(255, 159, 28, 0.2);
  }
}

@keyframes rotate-conic {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Intersection Observer Animations */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Mobile Store Button - Hidden on Desktop */
.mobile-store-btn {
  display: none !important;
}

/* Hamburger Toggle Button */
.mobile-nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1001;
  padding: 0;
}

.mobile-nav-toggle span {
  width: 100%;
  height: 2px;
  background-color: var(--text-primary);
  transition: var(--transition-smooth);
  transform-origin: left center;
}

.mobile-nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg);
  position: relative;
  top: -2px;
  left: 2px;
}

.mobile-nav-toggle.active span:nth-child(2) {
  opacity: 0;
  width: 0;
}

.mobile-nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg);
  position: relative;
  bottom: -2px;
  left: 2px;
}

/* Responsive Rules */
@media (max-width: 1024px) {
  #hero {
    max-width: 100%;
    width: 100%;
    align-items: center;
    text-align: center;
    padding-top: 10rem;
    padding-bottom: 6rem;
  }

  .mobile-instagram-post {
    display: flex;
    flex-direction: column;
    width: 90%;
    max-width: 320px; /* Narrower post-card width */
    background: rgba(16, 20, 33, 0.7);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 0;
    overflow: hidden;
    text-decoration: none;
    z-index: 3;
    margin-bottom: 2rem;
    box-shadow: 0 15px 35px rgba(0,0,0,0.6);
    transition: var(--transition-smooth);
    animation: float-logo 6s ease-in-out infinite;
  }

  .mobile-instagram-post:hover {
    transform: translateY(-5px);
    border-color: rgba(161, 33, 206, 0.4);
    box-shadow: 0 20px 45px rgba(0,0,0,0.7), 0 0 20px rgba(161, 33, 206, 0.25);
  }

  /* Post Header */
  .post-header {
    display: flex;
    align-items: center;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid rgba(249, 245, 235, 0.05);
    width: 100%;
  }

  .post-avatar-wrapper {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    overflow: hidden;
    border: 1.5px solid var(--accent-orange);
    padding: 1px;
    background: #000;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .post-avatar {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
  }

  .post-user-info {
    display: flex;
    flex-direction: column;
    margin-left: 10px;
    flex-grow: 1;
    text-align: left;
  }

  .post-username {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-primary);
  }

  .post-location {
    font-size: 0.65rem;
    color: var(--accent-cyan);
    font-weight: 400;
  }

  .post-more-btn {
    color: var(--text-secondary);
    display: flex;
    align-items: center;
  }

  /* Post Image */
  .post-image-container {
    position: relative;
    width: 100%;
    aspect-ratio: 1/1;
    background: #000;
    overflow: hidden;
    border-bottom: 1px solid rgba(249, 245, 235, 0.05);
  }

  .post-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
  }

  .mobile-instagram-post:hover .post-main-image {
    transform: scale(1.03);
  }

  .post-image-tag {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: var(--accent-cyan);
    color: #080b11;
    font-family: var(--font-title);
    font-size: 0.55rem;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 6px 12px;
    border-radius: 4px;
    box-shadow: var(--glow-cyan);
    text-transform: uppercase;
  }

  /* Action Bar */
  .post-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem 0.5rem;
    color: var(--text-primary);
    width: 100%;
  }

  .left-actions {
    display: flex;
    gap: 12px;
  }

  .left-actions svg, .right-action {
    transition: transform 0.2s ease, color 0.2s ease;
    cursor: pointer;
  }

  .mobile-instagram-post:hover .left-actions svg:first-child {
    color: #ff3040;
    transform: scale(1.1);
  }

  /* Caption Block */
  .post-caption-block {
    padding: 0 1rem 1rem;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: 100%;
  }

  .post-likes {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-primary);
  }

  .post-caption {
    font-size: 0.75rem;
    line-height: 1.4;
    color: var(--text-secondary);
    font-weight: 300;
  }

  .caption-username {
    font-weight: 700;
    color: var(--text-primary);
    margin-right: 6px;
  }

  .post-time {
    font-size: 0.6rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.7;
    margin-top: 2px;
  }

  @keyframes float-logo {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
  }
  
  .hero-content {
    background: rgba(16, 20, 33, 0.55); /* Translucent dark card matching core theme */
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    box-shadow: 0 10px 45px rgba(0, 0, 0, 0.6);
    width: 100%;
    max-width: 580px;
    margin: 0 auto;
  }
  
  .hero-desc {
    max-width: 100%;
    text-shadow: 0 2px 10px rgba(8, 11, 17, 0.95);
  }
  
  .hero-title {
    font-size: 2.2rem;
    text-shadow: 0 4px 15px rgba(8, 11, 17, 0.9);
  }
  
  .section-title {
    font-size: 1.8rem;
    margin-bottom: 2rem;
  }
  
  .product-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .about-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 768px) {
  .mobile-nav-toggle {
    display: flex;
  }

  #headerStoreButton {
    display: none;
  }
  
  .mobile-store-btn {
    display: inline-flex !important;
    margin-top: 1.5rem;
  }

  #mainNav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(8, 11, 17, 0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.6);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1000;
    border-left: 1px solid var(--border-light);
    padding: 2rem;
  }

  #mainNav.active {
    right: 0;
  }

  #mainNav a:not(.mobile-store-btn) {
    font-size: 1.1rem;
    width: 100%;
    text-align: center;
    padding: 10px 0;
  }
  
  header {
    padding: 1rem 5%;
  }
  
  section {
    padding: 6rem 5% 3rem;
  }
  
  .hero-title {
    font-size: 1.7rem;
  }
  
  .section-title {
    font-size: 1.4rem;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
  }
  
  .product-name {
    font-size: 1.1rem;
    letter-spacing: 1.5px;
  }
  
  .product-brand-large {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
    padding-bottom: 1.25rem;
    margin-bottom: 1.5rem;
  }
  
  .product-logo-large {
    width: 100px;
    height: 100px;
    border-radius: 22px;
  }
  
  .product-title-large {
    font-size: 1.4rem;
  }
  
  .product-tagline {
    font-size: 0.9rem;
  }
  
  .hero-ctas {
    flex-direction: column;
    width: 100%;
    gap: 1rem;
  }
  
  .btn-primary, .btn-secondary {
    width: 100%;
    text-align: center;
  }
  
  .cursor-dot, .cursor-ring {
    display: none;
  }
  
  .glass-card {
    padding: 1.75rem;
  }
  
  .footer-top {
    flex-direction: column;
    gap: 2.5rem;
  }
  
  .footer-links {
    width: 100%;
    justify-content: space-between;
    gap: 1rem;
  }
  
  .privacy-container {
    padding: 1.5rem;
    margin: 5rem 1rem 2rem;
  }
}

@media (max-width: 480px) {
  .brand-name {
    font-size: 0.9rem;
    letter-spacing: 1.5px;
  }
  
  .brand-logo {
    height: 34px;
  }
  
  .hero-content {
    padding: 1.75rem 1.25rem; /* Reduced padding for compact mobile screens */
  }
  
  .hero-title {
    font-size: 1.35rem;
  }
  
  .section-title {
    font-size: 1.1rem;
    letter-spacing: 1px;
  }
  
  .product-name {
    font-size: 0.95rem;
    letter-spacing: 1px;
  }
  
  .product-logo-large {
    width: 80px;
    height: 80px;
    border-radius: 18px;
  }
  
  .product-title-large {
    font-size: 1.2rem;
  }
  
  .product-tagline {
    font-size: 0.85rem;
  }
  
  .hero-desc {
    font-size: 0.95rem;
  }
}
