/* ============================
   LOCAL POFFINS FONT IMPORT
   ============================ */
@font-face {
  font-family: 'Poppins';
  src: url('assets/fonts/poppins/Poppins-Thin.ttf') format('truetype');
  font-weight: 100;
  font-style: normal;
}
@font-face {
  font-family: 'Poppins';
  src: url('assets/fonts/poppins/Poppins-ExtraLight.ttf') format('truetype');
  font-weight: 200;
  font-style: normal;
}
@font-face {
  font-family: 'Poppins';
  src: url('assets/fonts/poppins/Poppins-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: 'Poppins';
  src: url('assets/fonts/poppins/Poppins-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: 'Poppins';
  src: url('assets/fonts/poppins/Poppins-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: 'Poppins';
  src: url('assets/fonts/poppins/Poppins-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: 'Poppins';
  src: url('assets/fonts/poppins/Poppins-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: 'Poppins';
  src: url('assets/fonts/poppins/Poppins-ExtraBold.ttf') format('truetype');
  font-weight: 800;
  font-style: normal;
}
@font-face {
  font-family: 'Poppins';
  src: url('assets/fonts/poppins/Poppins-Black.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
}

/* ============================
   ROOT & BASE (DAY MODE - GREEN/GOLD)
   ============================ */
:root {
  --bg: #fdfdfb;
  --surface: #ffffff;
  --accent: #10b981; /* Emerald Green */
  --gold: #c19b49;  /* Gold Accent */
  --accent-muted: rgba(16, 185, 129, 0.08);
  --gold-muted: rgba(193, 155, 73, 0.12);
  --text: #0f172a;
  --text-muted: #64748b;
  --border: rgba(15, 23, 42, 0.08);
  --shadow: 0 10px 40px rgba(0, 0, 0, 0.02);
}

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  cursor: auto !important;
}

a, button {
  cursor: pointer !important;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Poppins', sans-serif;
  min-height: 100vh;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
}

/* Background grid */
.background-grid {
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  background-image: 
    linear-gradient(to right, rgba(16, 185, 129, 0.02) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(16, 185, 129, 0.02) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(circle at center, black 0%, transparent 100%);
  pointer-events: none;
  z-index: -1;
}

/* ============================
   HEADER
   ============================ */
header {
  height: 80px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 2px solid var(--border);
  position: sticky; top: 0; z-index: 100;
}

.header-inner {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.site-logo {
  height: 44px;
  width: auto;
  filter: drop-shadow(0 2px 4px rgba(16, 185, 129, 0.05));
}

.nav-cta {
  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 10px 24px;
  border: 2px solid var(--text);
  border-radius: 999px;
  color: var(--text);
  transition: 0.25s ease;
  white-space: nowrap;
}

.nav-cta:hover {
  background: var(--text);
  color: white;
}

/* ============================
   MAIN (HERO)
   ============================ */
main {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 24px 80px;
  z-index: 10;
}

.hero {
  text-align: center;
  max-width: 900px;
  margin-bottom: 80px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--accent-muted);
  color: var(--accent);
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  margin-bottom: 40px;
  letter-spacing: 1px;
  border: 1px solid rgba(16, 185, 129, 0.15);
}

.badge-dot {
  width: 7px;
  height: 7px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse-badge 1.5s infinite;
}

@keyframes pulse-badge {
  0% { transform: scale(0.9); opacity: 0.6; }
  50% { transform: scale(1.1); opacity: 1; }
  100% { transform: scale(0.9); opacity: 0.6; }
}

.hero-title {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}

.line-1 {
  font-size: clamp(18px, 4vw, 24px);
  font-weight: 400;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 4px;
}

.line-2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(48px, 12vw, 110px);
  font-style: italic;
  font-weight: 700;
  line-height: 1;
  color: var(--accent);
  letter-spacing: -2px;
}

.line-3 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 8vw, 60px);
  font-weight: 900;
  color: var(--text);
  letter-spacing: -1px;
}

.outline-text {
  -webkit-text-stroke: 1.5px var(--gold);
  color: transparent;
  font-style: italic;
}

.hero-desc {
  color: var(--text-muted);
  font-size: clamp(16px, 2.5vw, 18px);
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto 48px;
  font-weight: 500;
}

/* Status summary (Gold highlighted) */
.status-summary {
  width: 100%;
  max-width: 320px;
  margin: 0 auto 40px;
  background: white;
  padding: 24px;
  border-radius: 20px;
  border: 1px solid var(--gold-muted);
  box-shadow: 0 4px 20px var(--gold-muted);
}

.status-item {
  display: flex;
  align-items: center;
  gap: 16px;
  text-align: left;
}

.status-icon {
  font-size: 28px;
}

.status-text strong {
  display: block;
  font-size: 14px;
  font-weight: 800;
  color: var(--gold);
}

.status-text span {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 600;
}

/* Capsules */
.feature-capsules {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.capsule {
  background: white;
  border: 1px solid var(--border);
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
}

/* ============================
   FEATURES
   ============================ */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  width: 100%;
  max-width: 1100px;
  margin-bottom: 100px;
}

.feature-card {
  background: white;
  padding: 40px;
  border-radius: 32px;
  border: 3px solid var(--border);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: var(--shadow);
}

.feature-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent);
}

.feature-card.highlighted {
  border-color: var(--gold);
  background: linear-gradient(150deg, #ffffff, #fefbf2);
}

.card-icon {
  font-size: 32px;
  margin-bottom: 24px;
}

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

.feature-card p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.6;
  font-weight: 500;
}

/* ============================
   STATS GRID
   ============================ */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 100%;
  max-width: 1100px;
  background: #0f172a;
  color: white;
  padding: 60px 40px;
  border-radius: 40px;
  gap: 40px;
  margin-bottom: 80px;
}

.stat-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.stat-value {
  font-size: clamp(32px, 6vw, 64px);
  font-weight: 900;
  letter-spacing: -2px;
  color: var(--gold);
}

.stat-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  opacity: 0.6;
  text-align: center;
}

/* ============================
   FOOTER
   ============================ */
footer {
  padding: 60px 24px;
  border-top: 2px solid var(--border);
  background: white;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 32px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-logo {
  height: 34px;
  width: auto;
}

.footer-site-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--text);
}

.footer-rights {
  color: var(--text-muted);
  font-size: 11px;
}

.footer-site-link {
  text-decoration: none;
  font-weight: 800;
  font-size: 13px;
  color: var(--text);
  border: 1.5px solid var(--text);
  padding: 8px 18px;
  border-radius: 999px;
  transition: all 0.2s ease;
}

/* ============================
   RESPONSIVE (MOBILE)
   ============================ */
@media (max-width: 768px) {
    header {
        height: 72px;
    }
    
    .header-inner {
        padding: 0 16px;
    }

    .site-logo {
        height: 38px;
    }

    .nav-cta {
        padding: 8px 16px;
        font-size: 11px;
    }

    main {
        padding: 40px 16px 60px;
    }

    .hero {
        margin-bottom: 60px;
    }

    .hero-badge {
        font-size: 10px;
        padding: 6px 14px;
        margin-bottom: 24px;
    }

    .hero-desc {
        margin-bottom: 32px;
    }

    .features {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-bottom: 60px;
    }

    .feature-card {
        padding: 32px;
        border-radius: 24px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        padding: 40px 24px;
        gap: 24px;
        margin-bottom: 60px;
        border-radius: 32px;
    }

    .stat-box {
        padding-bottom: 24px;
        border-bottom: 1px solid rgba(255,255,255,0.05);
    }
    
    .stat-box:last-child {
        padding-bottom: 0;
        border-bottom: none;
    }

    .footer-inner {
        flex-direction: column;
        text-align: center;
        gap: 24px;
    }

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