:root {
  --primary-gradient: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  --bg-dark: #0a0a0c;
  --text-primary: #ffffff;
  --text-secondary: #a0a0ab;
  --glass-bg: rgba(255, 255, 255, 0.05);
  --glass-border: rgba(255, 255, 255, 0.1);
  --accent: #ff4757;
  --transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

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

html {
  scroll-behavior: smooth;
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Navbar ────────────────────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 80px;
  display: flex;
  align-items: center;
  z-index: 1000;
  background: rgba(10, 10, 12, 0.8);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -1px;
}

.logo-icon {
    font-size: 24px;
}

.logo-icon-img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

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

.nav-links a {
  text-decoration: none;
  color: var(--text-secondary);
  font-weight: 600;
  font-size: 15px;
  transition: var(--transition);
}

.nav-links a:hover {
  color: var(--text-primary);
}

/* ── Hero Section ───────────────────────────────────────────────────────── */
.hero {
  padding-top: 180px;
  padding-bottom: 100px;
  position: relative;
}

.hero .container {
  display: flex;
  align-items: center;
  gap: 60px;
}

.hero-content {
  flex: 1;
}

.hero h1 {
  font-size: 64px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -3px;
}

.hero h1 span {
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p {
  font-size: 20px;
  color: var(--text-secondary);
  margin-bottom: 40px;
  max-width: 540px;
}

.hero-btns {
  display: flex;
  align-items: center;
  gap: 24px;
}

.hero-badge {
    font-size: 14px;
    font-weight: 700;
    color: #ffd32a;
    letter-spacing: 1px;
}

/* ── Hero Visual Mockup ─────────────────────────────────────────────────── */
.hero-visual {
  flex: 1.2;
  position: relative;
}

.mockup-container {
  position: relative;
  z-index: 2;
  perspective: 1000px;
}

.mockup-img {
  width: 100%;
  border-radius: 24px;
  box-shadow: 0 40px 100px rgba(0,0,0,0.5);
  transform: rotateY(-5deg) rotateX(5deg);
  transition: var(--transition);
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotateY(-5deg) rotateX(5deg); }
  50% { transform: translateY(-20px) rotateY(-2deg) rotateX(2deg); }
}

.glass-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: -1;
  opacity: 0.4;
}

.orb-1 {
  top: -10%;
  right: -10%;
  width: 300px;
  height: 300px;
  background: #dc2743;
}

.orb-2 {
  bottom: -20%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: #bc1888;
}

/* ── Buttons ───────────────────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--primary-gradient);
  color: white;
  text-decoration: none;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 14px;
  transition: var(--transition);
  box-shadow: 0 10px 30px rgba(220, 39, 67, 0.3);
}

.btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(220, 39, 67, 0.5);
  filter: brightness(1.1);
}

.btn-primary.large {
  padding: 18px 36px;
  font-size: 18px;
}

.btn-primary.x-large {
  padding: 22px 48px;
  font-size: 20px;
  border-radius: 18px;
}

.btn-primary.mini {
    padding: 10px 20px;
    font-size: 14px;
    border-radius: 10px;
}

/* ── Features ──────────────────────────────────────────────────────────── */
.features {
  padding: 120px 0;
  background: #0d0d0f;
}

.section-title {
  font-size: 40px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 60px;
  letter-spacing: -1.5px;
}

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

.feature-card {
  padding: 40px;
  border-radius: 28px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  transition: var(--transition);
}

.feature-card:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-10px);
  border-color: rgba(255, 255, 255, 0.2);
}

.feature-icon {
  font-size: 40px;
  margin-bottom: 24px;
}

.feature-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
}

.feature-card p {
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.5;
}

/* ── CTA Section ───────────────────────────────────────────────────────── */
.cta-section {
    padding: 100px 0;
}

.cta-card {
  padding: 80px 40px;
  border-radius: 40px;
  text-align: center;
  background: linear-gradient(rgba(10, 10, 12, 0.5), rgba(10, 10, 12, 0.5)), var(--primary-gradient);
  border: 1px solid var(--glass-border);
}

.cta-card h2 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -2px;
}

.cta-card p {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.9;
}

/* ── Support ───────────────────────────────────────────────────────────── */
.support {
    padding: 100px 0;
}

.support-card {
    padding: 60px 40px;
    border-radius: 40px;
    text-align: center;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.support-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
}

.support-icon {
    font-size: 48px;
    margin-bottom: 24px;
}

.support-card h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -1.5px;
}

.support-card p {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

/* ── Footer ────────────────────────────────────────────────────────────── */
footer {
  padding: 60px 0;
  border-top: 1px solid var(--glass-border);
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

footer p {
  color: var(--text-secondary);
  font-size: 14px;
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 14px;
  transition: var(--transition);
}

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

/* ── Animations ────────────────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  animation: reveal 0.8s forwards cubic-bezier(0.23, 1, 0.32, 1);
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }

@keyframes reveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── Responsive ────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero .container {
    flex-direction: column;
    text-align: center;
  }
  .hero h1 { font-size: 48px; }
  .hero p { margin: 0 auto 40px; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-btns { justify-content: center; }
}

@media (max-width: 640px) {
  .feature-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 36px; }
  .hero-btns { flex-direction: column; }
  .nav-links { display: none; }
}
