/* =============================================
   HONISTA.SITE - Global Stylesheet
   ============================================= */
@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;500;600;700;800&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,400&display=swap');

:root {
  --bg: #08070f;
  --bg2: #0f0e1a;
  --bg3: #16152a;
  --card: #1a1830;
  --card2: #1f1d38;
  --border: rgba(255,255,255,0.07);
  --pink: #E1306C;
  --purple: #833AB4;
  --orange: #F77737;
  --gradient: linear-gradient(135deg, #E1306C, #833AB4, #F77737);
  --gradient2: linear-gradient(135deg, #833AB4, #E1306C);
  --text: #f0eeff;
  --text2: #b8b4d8;
  --text3: #7c78a8;
  --green: #00d68f;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 20px 60px rgba(131,58,180,0.2);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

/* ---- BACKGROUND MESH ---- */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 600px 400px at 10% 20%, rgba(131,58,180,0.12) 0%, transparent 70%),
    radial-gradient(ellipse 500px 400px at 90% 80%, rgba(225,48,108,0.10) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

main { position: relative; z-index: 1; }

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4, h5 { font-family: 'Syne', sans-serif; line-height: 1.2; }
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 800; }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 700; }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); font-weight: 600; }
p { color: var(--text2); font-size: 1rem; }
a { color: var(--text); text-decoration: none; }

.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---- LAYOUT ---- */
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section-title { text-align: center; margin-bottom: 16px; }
.section-sub { text-align: center; color: var(--text2); margin-bottom: 56px; max-width: 600px; margin-left: auto; margin-right: auto; }

/* ---- NAV ---- */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(8,7,15,0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
}
.nav-logo img { width: 36px; height: 36px; border-radius: 10px; }
.nav-logo span { background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.nav-links { display: flex; align-items: center; gap: 8px; }
.nav-links a {
  padding: 7px 14px;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text2);
  transition: all 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--text); background: var(--card); }
.nav-download {
  background: var(--gradient) !important;
  color: #fff !important;
  font-weight: 600 !important;
  padding: 8px 20px !important;
  border-radius: 10px !important;
}
.nav-download:hover { opacity: 0.9; transform: translateY(-1px); }
.hamburger { display: none; cursor: pointer; flex-direction: column; gap: 5px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: all 0.3s; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.25s;
  border: none;
  text-decoration: none;
}
.btn-primary {
  background: var(--gradient);
  color: #fff;
  box-shadow: 0 8px 30px rgba(225,48,108,0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(225,48,108,0.5); }
.btn-secondary {
  background: var(--card);
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-secondary:hover { background: var(--card2); border-color: rgba(255,255,255,0.15); }
.btn-lg { padding: 18px 40px; font-size: 1.1rem; border-radius: 14px; }

/* ---- CARDS ---- */
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: all 0.3s;
}
.card:hover { border-color: rgba(131,58,180,0.3); transform: translateY(-3px); box-shadow: var(--shadow); }

/* ---- BADGE ---- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}
.badge-gradient { background: rgba(131,58,180,0.15); border: 1px solid rgba(131,58,180,0.3); color: #c084fc; }
.badge-green { background: rgba(0,214,143,0.1); border: 1px solid rgba(0,214,143,0.25); color: var(--green); }

/* ---- STARS ---- */
.stars { color: #f59e0b; letter-spacing: 2px; }

/* ---- INFO TABLE ---- */
.info-table { width: 100%; border-collapse: collapse; }
.info-table tr { border-bottom: 1px solid var(--border); }
.info-table tr:last-child { border: none; }
.info-table td { padding: 14px 0; color: var(--text2); font-size: 0.95rem; }
.info-table td:first-child { font-weight: 600; color: var(--text); width: 45%; }

/* ---- FAQ ---- */
.faq-item { border: 1px solid var(--border); border-radius: var(--radius-sm); margin-bottom: 12px; overflow: hidden; }
.faq-q {
  padding: 18px 20px;
  font-weight: 600;
  font-family: 'Syne', sans-serif;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.2s;
}
.faq-q:hover { background: var(--card2); }
.faq-a { padding: 0 20px; max-height: 0; overflow: hidden; transition: all 0.35s; color: var(--text2); }
.faq-item.open .faq-a { padding: 0 20px 18px; max-height: 300px; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-icon { transition: transform 0.3s; color: var(--pink); font-size: 1.3rem; }

/* ---- FOOTER ---- */
footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 60px 0 30px;
  position: relative;
  z-index: 1;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-logo { font-family: 'Syne', sans-serif; font-size: 1.4rem; font-weight: 800; margin-bottom: 12px; }
.footer-desc { color: var(--text3); font-size: 0.9rem; line-height: 1.8; }
.footer-col h4 { font-family: 'Syne', sans-serif; font-size: 0.85rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--text3); margin-bottom: 16px; }
.footer-col a { display: block; color: var(--text2); font-size: 0.9rem; margin-bottom: 10px; transition: color 0.2s; }
.footer-col a:hover { color: var(--pink); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 28px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { color: var(--text3); font-size: 0.85rem; }
.disclaimer { background: var(--card); border: 1px solid var(--border); border-radius: 10px; padding: 16px 20px; color: var(--text3); font-size: 0.85rem; margin-bottom: 32px; }

/* ---- VERSION BADGE ---- */
.version-chip {
  display: inline-block;
  padding: 3px 10px;
  background: rgba(225,48,108,0.1);
  border: 1px solid rgba(225,48,108,0.25);
  color: var(--pink);
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 65px;
    left: 0; right: 0;
    background: var(--bg2);
    border-bottom: 1px solid var(--border);
    padding: 20px 24px;
    gap: 4px;
  }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .section { padding: 56px 0; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ---- ANIMATIONS ---- */
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes pulse { 0%,100% { box-shadow: 0 0 0 0 rgba(225,48,108,0.4); } 50% { box-shadow: 0 0 0 12px rgba(225,48,108,0); } }
.animate { animation: fadeUp 0.7s ease both; }
.animate-delay-1 { animation-delay: 0.1s; }
.animate-delay-2 { animation-delay: 0.2s; }
.animate-delay-3 { animation-delay: 0.3s; }
.pulse { animation: pulse 2.5s infinite; }

/* ---- GRID UTILITIES ---- */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
@media (max-width: 900px) { .grid-3, .grid-4 { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 600px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

/* ---- BREADCRUMB ---- */
.breadcrumb { display: flex; align-items: center; gap: 8px; color: var(--text3); font-size: 0.85rem; margin-bottom: 32px; flex-wrap: wrap; }
.breadcrumb a { color: var(--text3); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--pink); }
.breadcrumb span { color: var(--text2); }

/* ---- PROGRESS BAR ---- */
.progress-bar { height: 6px; background: var(--bg3); border-radius: 100px; overflow: hidden; margin-top: 8px; }
.progress-fill { height: 100%; border-radius: 100px; background: var(--gradient); }

/* ---- INLINE ICON EMOJI ---- */
.icon { font-size: 1.3rem; }

/* ---- TABLE STYLE ---- */
.styled-table { width: 100%; border-collapse: collapse; font-size: 0.95rem; }
.styled-table th { background: var(--card2); padding: 14px 16px; text-align: left; font-family: 'Syne', sans-serif; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.8px; color: var(--text3); }
.styled-table td { padding: 14px 16px; border-bottom: 1px solid var(--border); color: var(--text2); }
.styled-table tr:last-child td { border: none; }
.styled-table tr:hover td { background: rgba(255,255,255,0.02); }

/* ---- SHARED NAV/FOOTER JS ---- */
.mobile-menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 99;
}