@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Outfit:wght@500;700;800&display=swap');

:root {
  --primary: #FFB300; /* Rich egg yolk color */
  --primary-hover: #E6A200;
  --bg-color: #0F1115;
  --surface-color: #1A1D24;
  --text-main: #FFFFFF;
  --text-muted: #A0AABF;
  --border-color: rgba(255, 255, 255, 0.1);
  --glass-bg: rgba(15, 17, 21, 0.85);
}

/* Base */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-color);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  color: var(--text-main);
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

img {
  max-width: 100%;
  display: block;
}

/* Layout */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem 0;
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 100;
  border-bottom: 1px solid var(--border-color);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Outfit', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.nav-brand img {
  height: 40px;
  width: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(255, 179, 0, 0.2);
}

.hamburger-menu {
  display: none;
  background: none;
  border: none;
  color: var(--text-main);
  font-size: 1.8rem;
  cursor: pointer;
  z-index: 1001;
}

.nav-content {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
  position: relative;
}

.nav-links a:hover, .nav-links a.active {
  color: var(--text-main);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: var(--primary);
  transition: width 0.3s ease;
}

.nav-links a:hover::after, .nav-links a.active::after {
  width: 100%;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.8rem;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  font-size: 1rem;
  gap: 8px;
}

.btn-primary {
  background: var(--primary);
  color: #111;
  box-shadow: 0 4px 15px rgba(255, 179, 0, 0.25);
}

.btn-primary:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 179, 0, 0.4);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-main);
  border: 1px solid var(--border-color);
}

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

/* Hero Section */
.hero {
  padding: 10rem 0 6rem;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 179, 0, 0.15) 0%, rgba(15, 17, 21, 0) 70%);
  border-radius: 50%;
  z-index: -1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-content h1 {
  font-size: 3.8rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -1px;
  background: linear-gradient(135deg, #FFFFFF 0%, #A0AABF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-content h1 span {
  background: linear-gradient(135deg, var(--primary) 0%, #FF8A00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-content p {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  max-width: 520px;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
}

.hero-image {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-image::after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 20px;
  background: rgba(0,0,0,0.5);
  filter: blur(15px);
  border-radius: 50%;
  z-index: -1;
}

.hero-image img {
  max-width: 300px;
  border-radius: 36px;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.5);
  border: 4px solid var(--surface-color);
  transform: perspective(1000px) rotateY(-12deg) rotateX(4deg);
  transition: transform 0.5s ease;
}

.hero-image:hover img {
  transform: perspective(1000px) rotateY(0deg) rotateX(0deg) translateY(-10px);
}

/* Features Section */
.features {
  padding: 6rem 0;
  background-color: var(--surface-color);
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.15rem;
  max-width: 650px;
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: var(--bg-color);
  padding: 2.5rem 2rem;
  border-radius: 24px;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 179, 0, 0.4);
  box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}

.feature-icon {
  width: 56px;
  height: 56px;
  background: rgba(255, 179, 0, 0.1);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
}

.feature-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.feature-card p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.5;
}

/* Showcase Section */
.showcase {
  padding: 8rem 0;
  border-top: 1px solid var(--border-color);
}

.showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.showcase-grid.reverse {
  direction: rtl;
}

.showcase-grid.reverse > * {
  direction: ltr;
}

.showcase-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.showcase-content p {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.showcase-list {
  list-style: none;
}

.showcase-list li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 1.2rem;
  color: var(--text-muted);
}

.showcase-list li i {
  color: var(--primary);
  margin-top: 5px;
}

.showcase-image {
  position: relative;
  display: flex;
  justify-content: center;
}

.showcase-image img {
  max-width: 280px;
  border-radius: 32px;
  border: 4px solid var(--surface-color);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

/* Call to action section */
.cta-section {
  padding: 6rem 0 8rem;
  text-align: center;
}

.cta-box {
  background: linear-gradient(135deg, var(--surface-color) 0%, rgba(255, 179, 0, 0.05) 100%);
  padding: 5rem 3rem;
  border-radius: 40px;
  border: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
}

.cta-box::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: var(--primary);
  filter: blur(100px);
  opacity: 0.15;
  border-radius: 50%;
}

.cta-box h2 {
  font-size: 3rem;
  margin-bottom: 1.2rem;
}

.cta-box p {
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 2.5rem;
  font-size: 1.2rem;
}

/* Footer */
footer {
  border-top: 1px solid var(--border-color);
  padding: 4rem 0 2rem;
  background-color: var(--bg-color);
}

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

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.9rem;
  max-width: 300px;
}

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

.footer-links a {
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 500;
}

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

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

/* Legal Pages / Typography Styling */
.page-content > h1,
.page-content > h2,
.page-content > h3,
.page-content > h4,
.page-content > p,
.page-content > ul {
  width: 90%;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-content h1 {
  font-size: 3rem;
  text-align: center;
  margin-bottom: 3rem;
  color: var(--primary);
  margin-top: -2rem;
}

.page-content h2 {
  font-size: 1.8rem;
  margin-top: 3.5rem;
  margin-bottom: 1.2rem;
  color: var(--text-main);
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 0.5rem;
}

.page-content h3 {
  font-size: 1.4rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  color: var(--text-main);
}

.page-content h4 {
  font-size: 1.2rem;
  margin-top: 1.5rem;
  margin-bottom: 0.8rem;
  color: var(--text-main);
}

.page-content p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  line-height: 1.8;
}

.page-content ul {
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  padding-left: 2rem;
}

.page-content li {
  margin-bottom: 1rem;
  font-size: 1.1rem;
  line-height: 1.8;
}

.page-content li p {
  margin-bottom: 0;
}

.page-content strong {
  color: #ffffff;
  font-weight: 600;
}

.page-content a {
  color: var(--primary);
  text-decoration: none;
}

.page-content a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 992px) {
  .hero-grid, .showcase-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
  }
  
  .showcase-grid.reverse {
    direction: ltr; /* Reset to normal on mobile */
  }

  .showcase-list li {
    align-items: center;
    text-align: left;
    justify-content: flex-start;
  }
  
  .hero-content h1 {
    font-size: 3.2rem;
  }
  
  .hero-content p, .showcase-content p {
    margin: 0 auto 2.5rem;
  }
  
  .hero-buttons {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .hamburger-menu {
    display: block;
  }
  
  .nav-content {
    position: fixed;
    top: 0;
    right: -100%;
    width: 250px;
    height: 100vh;
    background: var(--surface-color);
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 6rem;
    gap: 2rem;
    transition: right 0.3s ease;
    box-shadow: -5px 0 20px rgba(0,0,0,0.5);
    z-index: 1000;
  }
  
  .nav-content.active {
    right: 0;
  }
  
  .nav-links {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .nav-links a {
    font-size: 1.1rem;
  }
  
  .hero-content h1 {
    font-size: 2.8rem;
  }
  
  .footer-content {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-brand {
    align-items: center;
  }
}
