:root {
  --bg-main: #0a0a0a;
  --bg-secondary: #111111;
  --text-main: #ffffff;
  --text-muted: rgba(255, 255, 255, 0.7);
  --gold: #d4a574;
  --gold-hover: #e0b685;
  --border: rgba(255, 255, 255, 0.1);
  --font-family: 'Inter', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background-color: var(--bg-main);
  color: var(--text-main);
  font-family: var(--font-family);
  line-height: 1.5;
  overflow-x: hidden;
}

.text-gold { color: var(--gold); }
.text-white { color: var(--text-main); }
.text-muted { color: var(--text-muted); }
.border-radius-sm { border-radius: 2px !important; }

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
@media (min-width: 1024px) {
  .container { padding: 0 3rem; }
}

/* Scroll Animations */
.animate-on-scroll {
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.fade-up { transform: translateY(30px); }
.fade-left { transform: translateX(30px); }
.fade-right { transform: translateX(-30px); }
.is-visible { opacity: 1 !important; transform: translate(0) scale(1) !important; }

/* Basics */
.btn {
  font-family: inherit;
  font-size: 0.875rem;
  padding: 0.625rem 1.25rem;
  cursor: pointer;
  transition: all 0.3s;
  border: none;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.btn-primary {
  background-color: var(--gold);
  color: var(--bg-main);
  padding: 1rem 2rem;
}
.btn-primary:hover { background-color: var(--gold-hover); }
.btn-outline {
  background-color: transparent;
  color: var(--text-main);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 1rem 2rem;
}
.btn-outline:hover {
  border-color: rgba(255, 255, 255, 0.4);
  background-color: rgba(255, 255, 255, 0.05);
}
.btn-group {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 640px) { .btn-group { flex-direction: row; } }

.group:hover .group-hover-shift {
  transform: translateX(4px);
}
.transition-transform { transition: transform 0.3s; }

/* Navbar */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  background-color: rgba(10, 10, 10, 0.8);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transform: translateY(-100%);
  transition: transform 0.6s ease-out;
}
nav.nav-visible { transform: translateY(0); }
.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}
.logo {
  font-size: 1.5rem;
  letter-spacing: -0.025em;
  font-weight: 400;
}
.nav-links {
  display: none;
  align-items: center;
  gap: 2rem;
}
@media (min-width: 768px) { .nav-links { display: flex; } }
.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.3s;
}
.nav-links a:hover { color: var(--text-main); }
.nav-links .btn { padding: 0.625rem 1.25rem; }

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent, transparent, var(--bg-main));
  z-index: 1;
  pointer-events: none;
}
.hero .container {
  position: relative;
  height: 100%; width: 100%;
  padding-top: 8rem; padding-bottom: 5rem;
  display: flex; align-items: center;
  z-index: 2;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  width: 100%;
  align-items: center;
}
@media (min-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr 1fr; gap: 3rem; }
}
.hero-text-wrapper {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  z-index: 10;
}
.hero-anim {
  opacity: 0;
  transform: translateX(-50px);
  animation: heroSlideIn 0.8s ease-out forwards;
}
@keyframes heroSlideIn { to { opacity: 1; transform: translateX(0); } }

.hero-subtitle, .section-subtitle {
  color: var(--gold);
  font-size: 0.875rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}
.hero-title {
  font-size: 3.75rem;
  line-height: 0.95;
  letter-spacing: -0.025em;
  font-weight: 400;
  margin-top: 1rem;
}
@media (min-width: 1024px) { .hero-title { font-size: 4.5rem; } }
@media (min-width: 1280px) { .hero-title { font-size: 6rem; } }
.hero-desc {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 32rem;
  line-height: 1.625;
}
@media (min-width: 1024px) { .hero-desc { font-size: 1.25rem; } }

.hero-image-container {
  will-change: transform;
}
.hero-image-wrapper {
  position: relative;
  height: 500px;
  border-radius: 2px;
  overflow: hidden;
  opacity: 0;
  transform: scale(1.1);
  animation: heroImageFadeIn 1.2s ease-out 0.3s forwards;
}
@media (min-width: 1024px) { .hero-image-wrapper { height: 600px; } }
@keyframes heroImageFadeIn { to { opacity: 1; transform: scale(1); } }

.hero-img { width: 100%; height: 100%; object-fit: cover; }
.img-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--bg-main), transparent, transparent);
}

/* Sections Base */
.section { padding: 8rem 0; }
@media (min-width: 1024px) { .section { padding: 8rem 0; } }
.bg-secondary { background-color: var(--bg-secondary); }

.section-title {
  font-size: 2.25rem;
  line-height: 1.1;
  letter-spacing: -0.025em;
  font-weight: 400;
  margin-top: 1rem;
}
@media (min-width: 1024px) { .section-title { font-size: 3rem; } }
@media (min-width: 1280px) { .section-title { font-size: 3.75rem; } }

/* Features */
.features-header { text-align: center; margin-bottom: 5rem; }
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) { .features-grid { grid-template-columns: repeat(3, 1fr); gap: 2rem; } }
@media (min-width: 1024px) { .features-grid { gap: 3rem; } }

.feature-card {
  position: relative;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.5s;
}
@media (min-width: 1024px) { .feature-card { padding: 2.5rem; } }
.feature-card:hover { border-color: rgba(212, 165, 116, 0.5); }
.feature-card-hover {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom right, rgba(212, 165, 116, 0.05), transparent);
  opacity: 0;
  transition: opacity 0.5s;
}
.feature-card:hover .feature-card-hover { opacity: 1; }
.feature-icon {
  color: var(--gold);
  width: 3rem; height: 3rem;
  margin-bottom: 1.5rem;
  stroke-width: 1.5px;
}
.feature-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 400;
  position: relative;
}
@media (min-width: 1024px) { .feature-title { font-size: 1.875rem; } }
.feature-desc { color: var(--text-muted); position: relative; line-height: 1.625; }

/* Showcases */
.showcase-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}
@media (min-width: 1024px) { .showcase-grid { grid-template-columns: 1fr 1fr; } }
.showcase-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.showcase-desc { font-size: 1.125rem; color: var(--text-muted); line-height: 1.625; }

.stats-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-top: 1rem;
}
.stat-item {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  border-left: 2px solid var(--gold);
  padding-left: 1.5rem;
}
.stat-val { font-size: 2.25rem; color: var(--gold); letter-spacing: -0.025em; }
.stat-label { color: var(--text-muted); }

.c-order-1 { order: 1; }
.c-order-2 { order: 2; }
@media (min-width: 1024px) {
  .lg-order-1 { order: 1 !important; }
  .lg-order-2 { order: 2 !important; }
}

.showcase-image-wrapper {
  position: relative;
  height: 400px;
  overflow: hidden;
  border-radius: 2px;
}
@media (min-width: 1024px) { .showcase-image-wrapper { height: 600px; } }
.showcase-img { width: 100%; height: 100%; object-fit: cover; }
.gradient-r { background: linear-gradient(to right, var(--bg-secondary), transparent, transparent); }
.gradient-l { background: linear-gradient(to left, var(--bg-main), transparent, transparent); }
.absolute-inset { position: absolute; inset: 0; }

.link-icon {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gold);
  text-decoration: none;
  transition: gap 0.3s;
  background: none; border: none; font-size: 1rem; cursor: pointer;
}
.link-icon:hover { gap: 1rem; }

/* Final CTA */
.cta-content {
  text-align: center;
  max-width: 42rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.cta-desc { font-size: 1.125rem; color: var(--text-muted); line-height: 1.625; }
@media (min-width: 1024px) { .cta-desc { font-size: 1.25rem; } }
.cta-btns { padding-top: 1rem; justify-content: center; }

/* Footer */
footer {
  padding-top: 4rem;
  padding-bottom: 4rem;
  border-top: 1px solid var(--border);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(4, 1fr); } }
.footer-desc { color: rgba(255, 255, 255, 0.6); font-size: 0.875rem; margin-top: 1rem; line-height: 1.625; }
.footer-title { font-size: 0.875rem; letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 1rem; }
.footer-links { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-links a { color: rgba(255, 255, 255, 0.6); text-decoration: none; font-size: 0.875rem; transition: color 0.3s; }
.footer-links a:hover { color: var(--text-main); }
.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
}
@media (min-width: 768px) { .footer-bottom { flex-direction: row; } }
.footer-copy, .footer-bottom-links a { color: rgba(255, 255, 255, 0.4); text-decoration: none; font-size: 0.875rem; transition: color 0.3s; }
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a:hover { color: var(--text-main); }
