/* ============================================
   FOCUS 100% – Global Styles
   Design inspired by finsight.framer.ai
   Colors: #0a0a10 (dark), #fff, #f5a520 (amber)
   ============================================ */

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  color: #1a1a2e;
  background: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

/* === CSS VARIABLES === */
:root {
  --dark:      #0a0a10;
  --dark-2:    #12121c;
  --dark-3:    #1c1c2e;
  --amber:     #f5a520;
  --amber-dark:#d4891a;
  --amber-glow: rgba(245, 165, 32, 0.25);
  --white:     #ffffff;
  --gray-100:  #f8f7f4;
  --gray-200:  #e8e6e0;
  --gray-400:  #a0a0b0;
  --gray-600:  #6b6b80;
  --text-dark: #1a1a2e;
  --border-glass: rgba(255,255,255,0.08);
  --border-amber: rgba(245,165,32,0.3);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
}
h1 { font-size: clamp(2.4rem, 5.5vw, 4.5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.1rem; font-weight: 700; }
p  { font-size: 1rem; line-height: 1.75; max-width: 64ch; }

.label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--amber);
}

/* === LAYOUT === */
.container { max-width: 1140px; margin: 0 auto; padding: 0 1.5rem; }
.section-pad { padding: 6rem 0; }
.section-pad--sm { padding: 4rem 0; }
.text-center { text-align: center; }
.text-amber { color: var(--amber); }
.bg-dark { background: var(--dark); }
.bg-dark-2 { background: var(--dark-2); }
.bg-light { background: var(--gray-100); }

/* === GRADIENT TEXT === */
.gradient-text {
  background: linear-gradient(135deg, #f5a520 0%, #ffd166 60%, #f5a520 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* === DOT GRID PATTERN === */
.dot-grid {
  background-image: radial-gradient(circle, rgba(255,255,255,0.07) 1px, transparent 1px);
  background-size: 28px 28px;
}

/* === GLOW EFFECTS === */
.glow-amber {
  box-shadow: 0 0 40px var(--amber-glow), 0 0 80px rgba(245,165,32,0.12);
}
.glow-sm { box-shadow: 0 0 20px var(--amber-glow); }

/* === GLASS CARD === */
.glass-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.glass-card--light {
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(245,165,32,0.15);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}

/* === BUTTONS === */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.875rem 2rem;
  font-size: 0.9rem; font-weight: 700;
  letter-spacing: 0.02em;
  border-radius: var(--radius-sm);
  cursor: pointer; border: none;
  transition: all 0.2s;
  text-decoration: none; line-height: 1;
}
.btn:hover { transform: translateY(-2px); }
.btn-amber {
  background: var(--amber); color: #000;
  box-shadow: 0 4px 20px var(--amber-glow);
}
.btn-amber:hover { background: #f9b83d; box-shadow: 0 8px 30px var(--amber-glow); }
.btn-outline-white {
  background: transparent; color: #fff;
  border: 1.5px solid rgba(255,255,255,0.35);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.6); }
.btn-outline-dark {
  background: transparent; color: var(--text-dark);
  border: 1.5px solid rgba(26,26,46,0.3);
}
.btn-outline-dark:hover { background: var(--dark); color: #fff; }
.btn-lg { padding: 1.1rem 2.5rem; font-size: 1rem; border-radius: var(--radius-md); }

/* === ICONS === */
.icon { display: inline-block; vertical-align: middle; flex-shrink: 0; }

/* === HEADER === */
header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(10,10,16,0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.site-nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 1.5rem; max-width: 1140px; margin: 0 auto;
  position: relative;
}
.logo {
  font-size: 1.2rem; font-weight: 900; color: #fff;
  letter-spacing: -0.04em;
}
.logo span { color: var(--amber); }
.nav-links {
  display: flex; align-items: center; gap: 2rem;
}
.nav-links li a {
  color: rgba(255,255,255,0.7);
  font-size: 0.875rem; font-weight: 600;
  transition: color 0.2s;
}
.nav-links li a:hover { color: #fff; }
.nav-links .nav-cta a {
  background: var(--amber); color: #000 !important;
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-sm);
  font-weight: 700; font-size: 0.85rem;
}
.nav-links .nav-cta a:hover { background: #f9b83d; }

/* Mobile nav */
.nav-toggle-checkbox { display: none; }
.nav-toggle-label { display: none; cursor: pointer; color: #fff; }
@media (max-width: 768px) {
  .nav-toggle-label { display: block; }
  .nav-links {
    display: none; position: absolute; top: 100%; left: 0; width: 100%;
    background: var(--dark-2); flex-direction: column; align-items: flex-start;
    gap: 0; border-top: 1px solid rgba(255,255,255,0.08); padding: 1rem 1.5rem;
  }
  .nav-toggle-checkbox:checked ~ .nav-links { display: flex; }
  .nav-links li { width: 100%; padding: 0.75rem 0; border-bottom: 1px solid rgba(255,255,255,0.05); }
  .nav-links li:last-child { border-bottom: none; }
  .nav-links li a { font-size: 0.975rem; color: rgba(255,255,255,0.8); }
}

/* === FAQ ACCORDION === */
details { border-bottom: 1px solid rgba(26,26,46,0.1); }
details:first-child { border-top: 1px solid rgba(26,26,46,0.1); }
details summary {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem 0; cursor: pointer;
  font-weight: 700; font-size: 1rem; list-style: none; user-select: none; gap: 1rem;
}
details summary::-webkit-details-marker { display: none; }
details summary .faq-icon { flex-shrink: 0; color: var(--amber); transition: transform 0.2s; }
details[open] summary .faq-icon { transform: rotate(45deg); }
details .faq-body { padding: 0 0 1.5rem; color: var(--gray-600); font-size: 0.975rem; line-height: 1.75; }

/* === FOOTER === */
footer { background: var(--dark); color: #fff; border-top: 1px solid rgba(255,255,255,0.06); }
.footer-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2.5rem; padding: 4rem 0 2.5rem;
}
.footer-col h4 {
  font-size: 0.75rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.12em; color: var(--amber); margin-bottom: 1.25rem;
}
.footer-col nav ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col nav ul li a { color: rgba(255,255,255,0.45); font-size: 0.875rem; font-weight: 500; transition: color 0.2s; }
.footer-col nav ul li a:hover { color: #fff; }
.footer-logo { font-size: 1.5rem; font-weight: 900; letter-spacing: -0.04em; margin-bottom: 0.75rem; }
.footer-logo span { color: var(--amber); }
.footer-desc { color: rgba(255,255,255,0.4); font-size: 0.875rem; max-width: 240px; line-height: 1.6; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06); padding: 1.5rem 0;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
}
.footer-bottom p { color: rgba(255,255,255,0.3); font-size: 0.8rem; max-width: none; }
.footer-bottom a { color: rgba(255,255,255,0.3); font-size: 0.8rem; transition: color 0.2s; }
.footer-bottom a:hover { color: var(--amber); }

/* === MARQUEE === */
.marquee-wrapper { overflow: hidden; padding: 1rem 0; }
.marquee-track {
  display: flex; gap: 3.5rem; align-items: center;
  animation: marquee 22s linear infinite; width: max-content;
}
.marquee-track:hover { animation-play-state: paused; }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.marquee-item { color: rgba(255,255,255,0.35); font-size: 0.875rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; white-space: nowrap; }

/* === TABLE === */
.table-wrap { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
th { background: var(--dark); color: #fff; padding: 0.875rem 1rem; text-align: left; font-weight: 700; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.08em; }
td { padding: 0.875rem 1rem; border-bottom: 1px solid var(--gray-200); }
tr:nth-child(even) td { background: var(--gray-100); }
