/* 
  Hardriven Technologies - Shared CSS
  Design System, Navigation, Footer, and Global Helpers
*/

@font-face {
  font-family: 'WimCrouwel68';
  src: url('../fonts/WimCrouwel68Regular-d9vPE%202.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

:root {
  --black:       #000000;
  --near-black:  #0a0a0a;
  --dark:        #111111;
  --dark-card:   #1a1a1a;
  --border:      rgba(255,255,255,0.08);
  --white:       #FFFFFF;
  --off-white:   #F5F5F7;
  --gray:        #6E6E73;
  --light-gray:  #86868B;
  --green:       #30D158;
  --blue:        #0071E3;
  --red:         #FF3B30;
}

/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, 'SF Pro Text', 'SF Pro Icons', 'Helvetica Neue', 'Helvetica', 'Arial', sans-serif;
  background-color: var(--black);
  color: var(--white);
  line-height: 1.47059;
  letter-spacing: -0.022em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: -apple-system, 'SF Pro Display', 'SF Pro Icons', 'Helvetica Neue', 'Helvetica', 'Arial', sans-serif;
  letter-spacing: -0.04em;
}

p {
  color: var(--light-gray);
}


a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s ease, opacity 0.2s ease;
  -webkit-tap-highlight-color: transparent !important;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  outline: none;
  -webkit-tap-highlight-color: transparent !important;
}

/* Layout Utilities */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

section {
  position: relative;
}

.section-dark, .section-light, .section-light-alt {
  background-color: var(--black) !important;
  color: var(--white) !important;
}

.glass-panel {
  background: rgba(17, 17, 17, 0.40) !important;
  backdrop-filter: blur(48px) !important;
  -webkit-backdrop-filter: blur(48px) !important;
  border: none !important;
  border-top: 1px solid rgba(255, 255, 255, 0.15) !important;
  border-left: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-right: 1px solid rgba(255, 255, 255, 0.03) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.02) !important;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6), inset 0 24px 64px rgba(255, 255, 255, 0.02) !important;
  border-radius: 32px !important;
}

@media (max-width: 768px) {
  .container {
    padding: 0 24px;
  }
}

/* Navigation */
#nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  z-index: 1000;
  transition: background 0.3s ease, backdrop-filter 0.3s ease, border-bottom 0.3s ease, transform 0.3s ease;
  background: transparent;
  color: var(--white);
}

#nav.scrolled {
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 0.5px solid var(--border);
}

/* Handle light section nav overlap (optional, basic logic) */
#nav.light-mode {
  color: var(--black);
}
#nav.light-mode.scrolled {
  background: rgba(255, 255, 255, 0.9);
  color: var(--black);
  border-bottom: 0.5px solid rgba(0,0,0,0.1);
}

.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.nav-logo {
  font-family: 'WimCrouwel68', sans-serif !important;
  font-size: 32px;
  font-weight: normal !important;
  letter-spacing: normal;
  z-index: 1001;
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s ease;
}

@media (max-width: 768px) {
  .nav-logo { font-size: 28px; }
}

#nav.light-mode .nav-logo {
  color: var(--black);
}

.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav-links a {
  font-size: 14px;
  opacity: 0.8;
}

.nav-links a:hover {
  opacity: 1;
}

.nav-cta {
  font-size: 13px;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: background 0.2s ease, border-color 0.2s ease;
}

.nav-cta:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* Light mode overrides for nav components */
#nav.light-mode .nav-cta {
  border-color: rgba(0, 0, 0, 0.3);
}
#nav.light-mode .nav-cta:hover {
  background: rgba(0, 0, 0, 0.05);
}

/* Language Switcher */
.lang-switcher {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-left: 12px;
  font-size: 14px;
}
.lang-switcher a {
  text-decoration: none;
  font-weight: 500;
  color: var(--gray);
  transition: color 0.2s;
}
.lang-switcher a:hover {
  color: var(--light-gray);
}
.lang-switcher a.active {
  color: var(--white);
  pointer-events: none;
}
nav.light-mode .lang-switcher a {
  color: rgba(0,0,0,0.4);
}
nav.light-mode .lang-switcher a.active {
  color: var(--black);
}
.lang-divider {
  color: var(--gray);
  opacity: 0.3;
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 24px;
  height: 24px;
  z-index: 1001;
}

.nav-hamburger span {
  display: block;
  width: 100%;
  height: 1.5px;
  background-color: currentColor;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-hamburger.active span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.nav-hamburger.active span:nth-child(2) {
  opacity: 0;
}
.nav-hamburger.active span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* Mobile Menu */
.nav-mobile {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100svh;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(48px);
  -webkit-backdrop-filter: blur(48px);
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 32px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  z-index: 999;
  padding-bottom: env(safe-area-inset-bottom);
}

.nav-mobile.active {
  opacity: 1;
  pointer-events: all;
}

.nav-mobile a {
  font-size: 32px;
  font-weight: 600;
  letter-spacing: -1px;
}

.nav-cta-mobile {
  margin-top: 16px;
  font-size: 18px !important;
  padding: 12px 32px;
  border-radius: 999px;
  border: 1px solid var(--white);
}

.nav-mobile .lang-switcher {
  margin-left: 0;
  margin-top: -16px;
  font-size: 18px;
}
.nav-mobile .lang-switcher a.active {
  color: var(--white) !important;
}

@media (max-width: 768px) {
  .nav-inner { padding: 0 24px; }
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
}

/* Footer */
footer {
  background: var(--near-black);
  color: var(--white);
  border-top: 0.5px solid var(--border);
  padding: 80px 40px 40px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}


.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 64px;
  margin-bottom: 80px;
}

.footer-brand .footer-logo {
  font-family: 'WimCrouwel68', sans-serif;
  font-size: 36px;
  display: block;
  margin-bottom: 20px;
  letter-spacing: normal;
}

.footer-brand p {
  color: var(--light-gray);
  font-size: 14px;
  line-height: 1.6;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.footer-links h4 {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--white);
  margin-bottom: 16px;
  text-transform: uppercase;
}

.footer-links a {
  display: block;
  color: var(--light-gray);
  font-size: 13px;
  margin-bottom: 12px;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  border-top: 0.5px solid var(--border);
}

.footer-trust {
  display: flex;
  gap: 24px;
  color: var(--gray);
  font-size: 12px;
}

.footer-trust span {
  display: flex;
  align-items: center;
}

.footer-legal {
  color: var(--gray);
  font-size: 12px;
}

.footer-legal a {
  text-decoration: underline;
}

@media (max-width: 850px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
  .footer-trust {
    flex-wrap: wrap;
    column-gap: 24px;
    row-gap: 12px;
  }
}

@media (max-width: 768px) {
  footer {
    padding: 64px 24px 32px;
  }
  .footer-links {
    grid-template-columns: 1fr 1fr;
  }
}

/* Awwwards GSAP-style Reveal Animations */
.reveal, .reveal-up, .reveal-left, .reveal-right, .reveal-scale, .reveal-blur {
  opacity: 0;
  will-change: opacity, transform, filter;
}

.reveal, .reveal-up {
  transform: translateY(60px);
  transition: opacity 0.9s cubic-bezier(0.2, 0.8, 0.2, 1),
              transform 0.9s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal-left {
  transform: translateX(-60px);
  transition: opacity 0.9s cubic-bezier(0.2, 0.8, 0.2, 1),
              transform 0.9s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal-right {
  transform: translateX(60px);
  transition: opacity 0.9s cubic-bezier(0.2, 0.8, 0.2, 1),
              transform 0.9s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal-scale {
  transform: scale(0.85) translateY(40px);
  transition: opacity 1.1s cubic-bezier(0.2, 0.8, 0.2, 1),
              transform 1.1s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal-blur {
  filter: blur(24px);
  transform: translateY(40px);
  transition: opacity 1.1s cubic-bezier(0.2, 0.8, 0.2, 1),
              transform 1.1s cubic-bezier(0.2, 0.8, 0.2, 1),
              filter 1.1s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal.visible, .reveal-up.visible,
.reveal-left.visible, .reveal-right.visible {
  opacity: 1;
  transform: translate(0);
}

.reveal-scale.visible {
  opacity: 1;
  transform: scale(1) translateY(0);
}

.reveal-blur.visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-up, .reveal-left, .reveal-right, .reveal-scale, .reveal-blur, .pill, * {
    animation: none !important;
    transition: none !important;
  }
}

@media (max-width: 768px) {
  .reveal, .reveal-up, .reveal-left, .reveal-right, .reveal-scale, .reveal-blur {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    transition: none !important;
    animation: none !important;
  }
  .story-card .bento-title {
    font-size: 22px !important;
  }
  .story-card .bento-text {
    font-size: 15px !important;
  }
}

/* Common Components */
.btn-primary {
  display: inline-block;
  background: var(--white);
  color: var(--black);
  padding: 14px 28px;
  border-radius: 30px;
  font-weight: 500;
  font-size: 15px;
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn-primary:hover {
  transform: scale(1.02);
  background: var(--off-white);
}

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--white);
  padding: 13px 27px;
  border-radius: 30px;
  font-weight: 500;
  font-size: 15px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: background 0.2s ease, border-color 0.2s ease;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* Product Preview Sectie */
.preview-section {
  padding: 80px 0 140px;
  position: relative;
  z-index: 10;
}

@media (max-width: 768px) {
  .preview-section {
    padding: 60px 0 40px;
  }
}

.preview-header {
  text-align: center;
  margin-bottom: 64px;
}

.preview-header h2 {
  font-size: clamp(32px, 4vw, 42px);
  margin-bottom: 16px;
  letter-spacing: -1px;
}

.preview-header p {
  font-size: 18px;
  color: var(--light-gray);
  max-width: 600px;
  margin: 0 auto;
}

.preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Sumup Section */
.sumup-section {
  position: relative;
  height: 800vh;
}

.sumup-snap {
  position: absolute;
  width: 100%;
  height: 200vh;
  pointer-events: none;
}

.sumup-sticky-wrapper {
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 70px 24px 20px;
  overflow: hidden;
}

.sumup-sticky-wrapper::before {
  content: "";
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background-image: linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.65)), url("../photo's/tokyo-bg.jpg");
  background-size: cover;
  background-position: center;
  z-index: -1;
}

.sumup-container {
  max-width: 1050px;
  width: 100%;
  margin: 0 auto;
  border-radius: 32px;
  padding: 48px;

  /* Apple Glassmorphism (Doorzichtig) */
  background: rgba(17, 17, 17, 0.40); /* Transparante base */
  backdrop-filter: blur(48px);
  -webkit-backdrop-filter: blur(48px);

  /* Specular Highlight randjes (zoals op de foto) */
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  border-right: 1px solid rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid rgba(255, 255, 255, 0.02);
  
  /* Diepte schaduw */
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6), inset 0 24px 64px rgba(255, 255, 255, 0.02);
}

.sumup-content {
  display: flex;
  gap: 64px;
  align-items: center;
}

.sumup-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 0 0 320px;
  justify-content: center;
}

.sumup-btn {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 14px 20px;
  border-radius: 999px;
  color: var(--white);
  font-size: 17px;
  font-weight: 500;
  transition: all 0.3s ease;
  width: max-content;
}

.sumup-btn:hover {
  background: rgba(255,255,255,0.1);
}

.sumup-btn.active {
  background: var(--white);
  color: var(--black);
}

.sumup-btn .icon {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid currentColor;
  transition: transform 0.3s ease;
}

.sumup-btn .icon::before,
.sumup-btn .icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background-color: currentColor;
  transform: translate(-50%, -50%);
  border-radius: 1px;
}

.sumup-btn .icon::before {
  width: 11px;
  height: 1.5px;
}

.sumup-btn .icon::after {
  width: 1.5px;
  height: 11px;
}

.sumup-btn.active .icon {
  transform: rotate(45deg);
}

.sumup-visuals {
  flex: 1;
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.visual-item {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease, transform 0.5s ease;
  transform: translateY(20px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.visual-item.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.visual-item img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
  margin-bottom: 32px;
}

.visual-item h3 {
  font-size: 32px;
  margin-bottom: 12px;
}

.visual-item p {
  font-size: 18px;
  color: var(--light-gray);
  line-height: 1.5;
  max-width: 480px;
}

@media (max-width: 900px) {
  .sumup-content {
    flex-direction: column;
    gap: 32px;
  }
  .sumup-list {
    flex: auto;
    width: 100%;
  }
  .sumup-visuals {
    width: 100%;
    min-height: 240px;
  }
  .sumup-container {
    padding: 24px;
    margin: 0 12px;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transform: scale(0.88) translateZ(0);
    transform-origin: center center;
  }
  .visual-item h3 {
    font-size: 26px;
    margin-bottom: 8px;
  }
  .visual-item p {
    font-size: 15px;
  }
}

/* Minimal Products Hero */
.hero-minimal {
  padding: 160px 0 60px;
  text-align: center;
  background-color: var(--black);
  position: relative;
  overflow: hidden;
}

.hero-minimal h1 {
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 600;
  letter-spacing: -1.5px;
  margin-bottom: 40px;
  z-index: 2;
  position: relative;
}

.hero-img-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  /* Very subtle shadow/ambient glow to anchor it */
  box-shadow: 0 40px 100px rgba(0,0,0,0.8);
  will-change: transform;
}

.hero-stripe-img {
  width: 100%;
  height: auto;
  display: block;
  transform: scale(1.1); /* Provide room for the parallax/scale animation */
  will-change: transform;
}

.local-nav {
  position: sticky;
  top: 60px; /* Below scrolled main nav */
  z-index: 990;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 0.5px solid rgba(255, 255, 255, 0.1);
  border-top: 0.5px solid rgba(255, 255, 255, 0.1);
  padding: 16px 0;
  transition: transform 0.3s ease;
}

.local-nav .container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.local-nav p.nav-title {
  margin-right: 24px;
  font-size: 15px;
  font-weight: 500;
  color: var(--light-gray);
  display: none;
}

.footer-logo {
  font-family: 'WimCrouwel68', sans-serif !important;
  font-size: 24px;
  font-weight: normal !important;
  color: var(--white);
  margin-bottom: 12px;
  display: block;
}

@media (min-width: 768px) {
  .local-nav p.nav-title { display: block; }
}

/* Mobile Back-to-Top Button */
#back-to-top {
  display: none;
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  justify-content: center;
  align-items: center;
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: opacity 0.3s ease, transform 0.2s ease;
  cursor: pointer;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

#back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
}

#back-to-top:active {
  transform: scale(0.9);
}

@media (max-width: 768px) {
  #back-to-top {
    display: flex;
  }
}

/* Premium Newsletter Modal Responsive Framework */
.modal-overlay {
  position: fixed;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-content {
  position: relative;
  width: 100%;
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  border-radius: 24px;
  background: rgba(17, 17, 17, 0.85);
  backdrop-filter: blur(48px);
  -webkit-backdrop-filter: blur(48px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.8), inset 0 24px 64px rgba(255, 255, 255, 0.05);
}

.modal-overlay.active .modal-content {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: white;
  border: none;
  font-size: 16px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
}

.modal-close:hover { background: rgba(255,255,255,0.2); }

/* --- DESKTOP: Bottom Left Widget --- */
@media (min-width: 769px) {
  .modal-overlay {
    bottom: 32px;
    left: 32px;
    background: transparent;
  }
  .modal-content {
    width: 420px;
    padding: 40px;
    text-align: left;
    transform: translateY(40px) scale(0.95);
  }
  .modal-close {
    top: 16px; right: 16px;
  }
  /* Typography Overrides for small panel */
  .modal-content .signup-brand {
    font-family: 'WimCrouwel68', sans-serif !important;
    font-weight: normal !important;
    text-align: left;
    margin-bottom: 8px !important;
  }
  .modal-content .signup-title {
    font-size: 26px !important;
    text-align: left;
  }
  .modal-content .signup-desc {
    font-size: 15px !important;
    text-align: left;
    margin-bottom: 24px !important;
  }
}

/* --- MOBILE: Full Screen Overlay --- */
@media (max-width: 768px) {
  .modal-overlay {
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
  }
  .modal-content {
    max-width: 500px;
    padding: 48px 24px;
    text-align: center;
    transform: translateY(40px) scale(0.95);
  }
  .modal-close {
    top: 24px; right: 24px;
  }
}

/* Refined Premium Inputs */
.premium-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.premium-input-wrapper {
  position: relative;
}
.premium-input {
  width: 100%;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  padding: 20px 24px;
  color: var(--white);
  font-size: 17px;
  font-family: inherit;
  outline: none;
  transition: all 0.3s ease;
  backdrop-filter: blur(12px);
}
.premium-input:focus {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(0, 0, 0, 0.6);
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.05);
}
.premium-input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.btn-submit {
  width: 100%;
  padding: 18px;
  border-radius: 16px;
  background: rgba(255,255,255,0.1);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.2);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  backdrop-filter: blur(12px);
  transition: all 0.2s ease;
}
.btn-submit:hover {
  background: var(--white);
  color: var(--black);
  transform: translateY(-2px);
}
.btn-submit:active {
  transform: translateY(0) scale(0.98);
}

@media (max-width: 768px) {
  .modal-content { padding: 40px 24px; }
}



/* Conditional Nav Logo Hiding (For Homepage Hero Parity) */
.nav-logo.hero-hidden {
  opacity: 0 !important;
  pointer-events: none;
  transform: translateY(-10px);
}
.nav-logo {
  transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Hide Mobile Hero Brand on Desktop */
@media (min-width: 769px) {
  .hero-brand-mobile {
    display: none !important;
  }
}



