/* ==========================================================================
   CSS VARIABLES - NEON DARK + GLOW PRESET
   ========================================================================== */
:root {
  --glyco-dark-bg: #070a10;
  --glyco-surface-dark: #0f1623;
  --glyco-surface-border: rgba(0, 242, 254, 0.18);
  --glyco-neon-cyan: #00f2fe;
  --glyco-neon-hover: #4facfe;
  --glyco-neon-emerald: #00ffb9;
  --glyco-text-light: #f0f6fc;
  --glyco-text-muted: #8b949e;
  --glyco-gradient-glow: linear-gradient(135deg, #00f2fe 0%, #4facfe 100%);
  --glyco-glow-shadow: 0 0 25px rgba(0, 242, 254, 0.3);
  --font-display-style: 'Montserrat', sans-serif;
  --font-body-style: 'Inter', sans-serif;
  --glyco-radius-soft: 16px;
  --glyco-padding-scale: 10dvh;
}

/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--glyco-dark-bg);
  color: var(--glyco-text-light);
  font-family: var(--font-body-style);
}

body.glyco-page-body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  background-color: var(--glyco-dark-bg);
}

main {
  flex: 1;
}

/* Scroll Progress Bar */
.glyco-scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: var(--glyco-gradient-glow);
  width: 100%;
  transform-origin: left;
  z-index: 10000;
  box-shadow: 0 0 10px var(--glyco-neon-cyan);
}

/* Typography */
h1, h2, h3, h4 {
  font-family: var(--font-display-style);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--glyco-text-light);
  line-height: 1.2;
}

.glyco-heading-glow {
  font-size: clamp(2rem, 5vw, 3.2rem);
  text-shadow: 0 0 20px rgba(0, 242, 254, 0.6), 0 0 40px rgba(0, 242, 254, 0.3);
  margin-bottom: 1.2rem;
}

.glyco-subtitle-text {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--glyco-text-muted);
  line-height: 1.6;
  max-width: 800px;
}

.glyco-body-paragraph {
  font-size: 1.05rem;
  color: var(--glyco-text-muted);
  line-height: 1.7;
  margin-bottom: 1.2rem;
}

.glyco-badge-tag {
  display: inline-block;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  background: rgba(0, 242, 254, 0.1);
  border: 1px solid var(--glyco-neon-cyan);
  color: var(--glyco-neon-cyan);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  letter-spacing: 0.1em;
}

/* Container */
.glyco-layout-holder {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Sections */
.glyco-section-block {
  padding: var(--glyco-padding-scale) 0;
  position: relative;
}

.glyco-surface-glow {
  background-color: var(--glyco-surface-dark);
  border-top: 1px solid var(--glyco-surface-border);
  border-bottom: 1px solid var(--glyco-surface-border);
}

.glyco-center-head {
  text-align: center;
  margin-bottom: 3.5rem;
}

.glyco-section-heading {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  margin-bottom: 0.8rem;
  position: relative;
  display: inline-block;
}

.glyco-section-sub {
  color: var(--glyco-text-muted);
  font-size: 1.1rem;
}

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */
.glyco-header-bar {
  position: sticky;
  top: 0;
  background: rgba(7, 10, 16, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--glyco-surface-border);
  z-index: 999;
  padding: 1rem 0;
}

.glyco-header-inner {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.glyco-brand-anchor {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--glyco-text-light);
}

.glyco-brand-icon {
  width: 32px;
  height: 32px;
  stroke: var(--glyco-neon-cyan);
  filter: drop-shadow(0 0 8px var(--glyco-neon-cyan));
}

.glyco-brand-title {
  font-family: var(--font-display-style);
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  background: var(--glyco-gradient-glow);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.glyco-navigation-panel {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.glyco-nav-link {
  color: var(--glyco-text-muted);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  position: relative;
}

.glyco-nav-link:hover, .glyco-active-link {
  color: var(--glyco-neon-cyan);
  text-shadow: 0 0 10px rgba(0, 242, 254, 0.5);
}

.glyco-menu-checkbox {
  display: none;
}

.glyco-hamburger-trigger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

.glyco-hamburger-trigger span {
  width: 28px;
  height: 2px;
  background-color: var(--glyco-neon-cyan);
  box-shadow: 0 0 5px var(--glyco-neon-cyan);
  transition: 0.3s;
}

/* ==========================================================================
   HERO COMPONENT
   ========================================================================== */
.glyco-hero-viewport {
  min-height: 85dvh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  position: relative;
  border-bottom: 1px solid var(--glyco-surface-border);
}

.glyco-hero-content-box {
  max-width: 800px;
  padding: 2rem 0;
}

.glyco-hero-actions {
  margin-top: 2.5rem;
}

/* Neon Glow Action Button */
.glyco-neon-action {
  display: inline-block;
  padding: 1.1rem 2.4rem;
  border-radius: 999px;
  color: var(--glyco-text-light);
  text-decoration: none;
  font-family: var(--font-display-style);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  background: transparent;
  border: 2px solid var(--glyco-neon-cyan);
  box-shadow: var(--glyco-glow-shadow);
  transition: all 0.3s ease;
  text-align: center;
}

.glyco-neon-action:hover {
  background: var(--glyco-neon-cyan);
  color: #000;
  box-shadow: 0 0 35px var(--glyco-neon-cyan);
}

/* Keyframes for Pulse */
@keyframes neon-pulse {
  0% { box-shadow: 0 0 15px rgba(0, 242, 254, 0.4); }
  50% { box-shadow: 0 0 30px rgba(0, 242, 254, 0.9); }
  100% { box-shadow: 0 0 15px rgba(0, 242, 254, 0.4); }
}

.glyco-pulse-btn {
  animation: neon-pulse 2.5s infinite ease-in-out;
}

/* ==========================================================================
   CONTENT SPLIT
   ========================================================================== */
.glyco-info-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.glyco-split-media img {
  width: 100%;
  height: auto;
  border-radius: var(--glyco-radius-soft);
  box-shadow: 0 0 35px rgba(0, 242, 254, 0.25);
  border: 1px solid var(--glyco-surface-border);
}

.glyco-link-accent {
  color: var(--glyco-neon-cyan);
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  margin-top: 1rem;
}

.glyco-link-accent:hover {
  text-decoration: underline;
}

/* ==========================================================================
   FEATURES GRID
   ========================================================================== */
.glyco-grid-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.glyco-feature-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--glyco-surface-border);
  border-radius: var(--glyco-radius-soft);
  padding: 2.2rem;
  transition: all 0.3s ease;
}

.glyco-feature-item:hover {
  border-color: var(--glyco-neon-cyan);
  box-shadow: var(--glyco-glow-shadow);
  transform: translateY(-5px);
}

.glyco-feature-icon-wrap {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: rgba(0, 242, 254, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.glyco-feature-icon-wrap svg {
  width: 26px;
  height: 26px;
  stroke: var(--glyco-neon-cyan);
}

.glyco-feature-title {
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
}

.glyco-feature-text {
  color: var(--glyco-text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ==========================================================================
   TIMELINE
   ========================================================================== */
.glyco-timeline-vertical {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.glyco-timeline-node {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
}

.glyco-timeline-dot {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--glyco-surface-dark);
  border: 2px solid var(--glyco-neon-cyan);
  box-shadow: 0 0 15px var(--glyco-neon-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display-style);
  font-weight: 700;
  color: var(--glyco-neon-cyan);
  flex-shrink: 0;
}

.glyco-timeline-content {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--glyco-surface-border);
  padding: 1.5rem 2rem;
  border-radius: var(--glyco-radius-soft);
  flex-grow: 1;
}

.glyco-node-title {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.glyco-node-text {
  color: var(--glyco-text-muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

/* ==========================================================================
   STATISTICS & CARDS
   ========================================================================== */
.glyco-stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.glyco-stat-pill {
  background: var(--glyco-surface-dark);
  border: 1px solid var(--glyco-surface-border);
  border-radius: 999px;
  padding: 1.8rem 2rem;
  text-align: center;
  box-shadow: var(--glyco-glow-shadow);
}

.glyco-stat-number {
  display: block;
  font-family: var(--font-display-style);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--glyco-neon-cyan);
  text-shadow: 0 0 15px rgba(0, 242, 254, 0.5);
}

.glyco-stat-label {
  font-size: 0.85rem;
  color: var(--glyco-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 0.4rem;
}

.glyco-cards-overview {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.glyco-info-card {
  background: var(--glyco-surface-dark);
  border: 1px solid var(--glyco-surface-border);
  border-radius: var(--glyco-radius-soft);
  padding: 2rem;
}

.glyco-card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.glyco-card-icon {
  width: 28px;
  height: 28px;
  stroke: var(--glyco-neon-cyan);
}

.glyco-card-title {
  font-size: 1.2rem;
}

.glyco-card-text {
  color: var(--glyco-text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.glyco-badge-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.glyco-badge-list li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.9rem;
  color: var(--glyco-text-light);
}

.glyco-num-badge {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--glyco-neon-cyan);
  color: #000;
  font-weight: 700;
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ==========================================================================
   FORM COMPONENT
   ========================================================================== */
.glyco-form-shell {
  max-width: 600px;
  margin: 0 auto;
  background: var(--glyco-surface-dark);
  border: 1px solid var(--glyco-surface-border);
  border-radius: var(--glyco-radius-soft);
  padding: 2.5rem;
  box-shadow: var(--glyco-glow-shadow);
}

.glyco-form-box {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.glyco-form-field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.glyco-form-label {
  font-size: 0.9rem;
  color: var(--glyco-text-light);
  font-weight: 600;
}

.glyco-form-input {
  width: 100%;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.4);
  border: none;
  border-bottom: 2px solid var(--glyco-surface-border);
  color: var(--glyco-text-light);
  font-family: var(--font-body-style);
  font-size: 1rem;
  transition: all 0.3s ease;
  border-radius: 4px 4px 0 0;
}

.glyco-form-input:focus {
  outline: none;
  border-bottom-color: var(--glyco-neon-cyan);
  box-shadow: 0 4px 15px rgba(0, 242, 254, 0.2);
}

.glyco-checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  margin: 0.5rem 0;
}

.glyco-check-label {
  font-size: 0.85rem;
  color: var(--glyco-text-muted);
  line-height: 1.4;
}

.glyco-inline-link {
  color: var(--glyco-neon-cyan);
  text-decoration: none;
}

/* ==========================================================================
   ACCORDION / FAQ
   ========================================================================== */
.glyco-accordion-group {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.glyco-faq-item {
  background: var(--glyco-surface-dark);
  border: 1px solid var(--glyco-surface-border);
  border-radius: 12px;
  padding: 1.2rem 1.5rem;
}

.glyco-faq-summary {
  font-family: var(--font-display-style);
  font-weight: 600;
  font-size: 1.05rem;
  cursor: pointer;
  color: var(--glyco-text-light);
  outline: none;
}

.glyco-faq-details {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.glyco-faq-details p {
  color: var(--glyco-text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ==========================================================================
   CTA STRIP
   ========================================================================== */
.glyco-cta-strip {
  background: var(--glyco-dark-bg);
  padding: var(--glyco-padding-scale) 0;
  border-top: 1px solid var(--glyco-surface-border);
  text-align: center;
}

.glyco-cta-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

/* ==========================================================================
   LEGAL PAGES
   ========================================================================== */
.glyco-legal-content {
  padding: 6dvh 0;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.glyco-footer-bar {
  background-color: #04060a;
  border-top: 1px solid var(--glyco-surface-border);
  padding: 3rem 0 2rem 0;
}

.glyco-footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.glyco-footer-nav {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.glyco-footer-nav a {
  color: var(--glyco-text-muted);
  text-decoration: none;
  font-size: 0.9rem;
}

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

.glyco-disclaimer-box {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 1rem 1.5rem;
  margin-bottom: 2rem;
}

.glyco-disclaimer-box p {
  font-size: 0.82rem;
  color: var(--glyco-text-muted);
  line-height: 1.5;
  text-align: center;
}

.glyco-footer-bottom {
  text-align: center;
  font-size: 0.85rem;
  color: var(--glyco-text-muted);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 1.5rem;
}

/* ==========================================================================
   COOKIE BANNER
   ========================================================================== */
.glyco-cookie-wrapper {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(15, 22, 35, 0.96);
  border-top: 1px solid var(--glyco-neon-cyan);
  box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.8);
  z-index: 9999;
  padding: 1.2rem 0;
}

.glyco-cookie-inner {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.glyco-cookie-text {
  font-size: 0.9rem;
  color: var(--glyco-text-light);
  flex: 1;
  min-width: 280px;
}

.glyco-cookie-btns {
  display: flex;
  gap: 1rem;
}

.glyco-cookie-btn {
  padding: 0.6rem 1.4rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
}

.glyco-btn-accept {
  background: var(--glyco-neon-cyan);
  color: #000;
  box-shadow: 0 0 10px var(--glyco-neon-cyan);
}

.glyco-btn-decline {
  background: transparent;
  color: var(--glyco-text-muted);
  border: 1px solid var(--glyco-text-muted);
}

.glyco-btn-decline:hover {
  color: var(--glyco-text-light);
  border-color: var(--glyco-text-light);
}

/* ==========================================================================
   RESPONSIVE LAYOUT
   ========================================================================== */
@media (max-width: 868px) {
  .glyco-hamburger-trigger {
    display: flex;
  }

  .glyco-navigation-panel {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--glyco-surface-dark);
    border-bottom: 1px solid var(--glyco-surface-border);
    flex-direction: column;
    padding: 2rem 0;
    gap: 1.5rem;
    display: none;
  }

  .glyco-menu-checkbox:checked ~ .glyco-navigation-panel {
    display: flex;
  }

  .glyco-info-split {
    grid-template-columns: 1fr;
  }

  .glyco-stats-row {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .glyco-stats-row {
    grid-template-columns: 1fr;
  }
  
  .glyco-cookie-inner {
    flex-direction: column;
    align-items: stretch;
  }
}