/* === CSS RESET & BASE === */
* { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #0a0a0a;
  --text: #f8fafc;
  --text-muted: #94a3b8;
  --accent: #d4a373; /* Golden wood-inspired neon glow color */
  --accent-glow: rgba(212, 163, 115, 0.4);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --shadow-neon: 0 0 20px var(--accent-glow);
  --glass-bg: rgba(255, 255, 255, 0.02);
  --glass-border: rgba(255, 255, 255, 0.08);
  --font-heading: 'Space Grotesk', sans-serif;
  --font-body: 'Manrope', sans-serif;
}

body {
  font-family: var(--font-body);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
  color: var(--text);
  background: var(--bg);
  background-image: repeating-linear-gradient(45deg, transparent, transparent 40px, rgba(255,255,255,0.01) 40px, rgba(255,255,255,0.01) 80px);
  background-attachment: fixed;
  animation: bgMove 60s linear infinite;
}

@keyframes bgMove {
  from { background-position: 0 0; }
  to { background-position: 1000px 0; }
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: all 0.3s ease; }

/* === STRUCTURAL BASELINES === */
.container { max-width: 1240px; margin: 0 auto; padding: 0 20px; width: 100%; }
section { padding: 90px 0; position: relative; }

@media (max-width: 768px) {
  section { padding: 70px 0; }
}

/* === PREMIUM UI BLOCKS === */
.glass-panel {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: 0 8px 32px 0 rgba(0,0,0,0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.glass-panel:hover {
  box-shadow: var(--shadow-neon);
}

.btn-tag {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  color: var(--text);
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.875rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-tag:hover {
  background: var(--accent);
  color: #000;
  box-shadow: var(--shadow-neon);
  transform: translateY(-2px);
}

/* === NAV === */
.olimp-nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.8);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--glass-border);
  height: 70px;
}

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

.nav-links {
  display: none;
  gap: 2rem;
  list-style: none;
}

.logo-center {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  object-fit: contain;
}

.logo-text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 1px;
}

@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }
  .nav-left, .nav-right {
    flex: 1;
    display: flex;
    align-items: center;
  }
  .nav-right {
    justify-content: flex-end;
  }
}

/* Mobile Nav Toggle */
.menu-toggle {
  display: block;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text);
}

@media (min-width: 768px) {
  .menu-toggle { display: none; }
}

.mobile-menu {
  position: fixed;
  top: 70px;
  left: 0;
  width: 100%;
  background: var(--bg);
  padding: 2rem;
  border-bottom: 1px solid var(--glass-border);
  display: none;
  z-index: 999;
}

.mobile-menu.active {
  display: block;
}

.mobile-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  text-align: center;
}

/* === HERO === */
.olimp-hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding-top: 100px;
  background: radial-gradient(circle at center, #1a1a1a 0%, #0a0a0a 100%);
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 10vw, 8rem);
  font-weight: 800;
  line-height: 0.9;
  text-transform: uppercase;
  margin-bottom: 2rem;
  background: linear-gradient(to bottom, #fff, var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 30px var(--accent-glow));
}

.hero-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 2rem;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.rating-badge {
  background: rgba(255, 255, 255, 0.1);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.9rem;
  margin-bottom: 2rem;
  border: 1px solid var(--glass-border);
}

/* === STATS === */
.olimp-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  text-align: center;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.circle-ring {
  position: relative;
  width: 150px;
  height: 150px;
  margin-bottom: 1rem;
}

.circle-ring svg {
  transform: rotate(-90deg);
}

.circle-bg {
  fill: none;
  stroke: rgba(255,255,255,0.05);
  stroke-width: 8;
}

.circle-progress {
  fill: none;
  stroke: var(--accent);
  stroke-width: 8;
  stroke-linecap: round;
  stroke-dasharray: 440;
  stroke-dashoffset: 440;
  transition: stroke-dashoffset 2s ease;
}

.stat-number {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
}

.stat-label {
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* === GALLERY === */
.olimp-gallery {
  columns: 3 250px;
  column-gap: 16px;
}

.gallery-item {
  margin-bottom: 16px;
  break-inside: avoid;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0,0,0,0.5);
  transition: all 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.03);
  box-shadow: var(--shadow-neon);
}

.gallery-item img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

@media (max-width: 768px) {
  .olimp-gallery {
    columns: 2 150px;
  }
}

@media (max-width: 480px) {
  .olimp-gallery {
    columns: 1;
  }
}

/* === FEATURES === */
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.feature-item {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  position: relative;
}

@media (min-width: 768px) {
  .feature-item {
    flex-direction: row;
    align-items: center;
  }
  .feature-item:nth-child(even) {
    flex-direction: row-reverse;
  }
  .feature-text { width: 45%; }
  .feature-visual { width: 55%; }
}

.feature-number {
  position: absolute;
  top: -20px;
  left: -20px;
  font-family: var(--font-heading);
  font-size: 12rem;
  font-weight: 900;
  color: rgba(255,255,255,0.03);
  z-index: -1;
  line-height: 1;
}

.feature-icon {
  font-size: 2.5rem;
  color: var(--accent);
  margin-bottom: 1rem;
}

.feature-title {
  font-family: var(--font-heading);
  font-size: 2rem;
  margin-bottom: 1rem;
}

.feature-visual img {
  max-width: 320px;
  margin: 0 auto;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-neon);
}

/* === REVIEWS === */
.olimp-reviews-wrapper {
  overflow-x: auto;
  padding-bottom: 2rem;
  scrollbar-width: none;
}

.olimp-reviews-wrapper::-webkit-scrollbar { display: none; }

.reviews-scroll {
  display: flex;
  gap: 1.5rem;
  padding: 0 1rem;
}

.review-card {
  min-width: 300px;
  max-width: 400px;
}

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

.avatar-circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #000;
}

.stars {
  color: #fbbf24;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.review-text {
  font-size: 0.95rem;
  color: var(--text-muted);
  font-style: italic;
}

/* === DOWNLOAD CTA === */
.olimp-download {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 768px) {
  .olimp-download {
    flex-direction: row;
    justify-content: space-between;
  }
  .download-text { width: 50%; }
  .download-visual { width: 40%; }
}

.download-visual img {
  max-width: 320px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-neon);
}

/* === FOOTER === */
.olimp-footer {
  background: #050505;
  padding: 100px 0 50px;
  clip-path: ellipse(150% 100% at 50% 100%);
  border-top: 1px solid var(--glass-border);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-brand .logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1.5rem;
}

.footer-icon {
  width: 24px;
  height: 24px;
  border-radius: 4px;
}

.footer-col h4 {
  font-family: var(--font-heading);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a:hover {
  color: var(--accent);
  padding-left: 5px;
}

.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.social-icon:hover {
  background: var(--accent);
  color: #000;
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--glass-border);
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* === SECTION DIVIDERS === */
.tear-divider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 40px;
  background: var(--bg);
  clip-path: polygon(0% 0%, 5% 40%, 10% 0%, 15% 60%, 20% 0%, 25% 30%, 30% 0%, 35% 50%, 40% 0%, 45% 70%, 50% 0%, 55% 20%, 60% 0%, 65% 40%, 70% 0%, 75% 60%, 80% 0%, 85% 30%, 90% 0%, 95% 50%, 100% 0%, 100% 100%, 0% 100%);
  transform: translateY(-100%);
}

/* === REVEAL ANIMATIONS === */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.stagger-item {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

.stagger-item.active {
  opacity: 1;
  transform: translateY(0);
}

/* Newsletter */
.newsletter-form {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
}

.newsletter-input {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  color: var(--text);
  flex: 1;
}

.btn-mini {
  padding: 0.75rem 1rem;
}
