:root{
  --bg: #0b1220;
  --bg2: #0f1b33;
  --card: rgba(255,255,255,0.06);
  --card2: rgba(255,255,255,0.08);
  --text: #eaf0ff;
  --muted: rgba(234,240,255,0.72);
  --gold: #f3c969;
  --gold2:#e0b24a;
  --line: rgba(255,255,255,0.12);
}

html{
  scroll-behavior:smooth;
}

body{
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: linear-gradient(180deg, #071022 0%, #0b1220 20%, #08101f 100%);
  color: var(--text);
}

.skip-link{
  position:absolute;
  left:-999px;
  top:auto;
  width:1px;
  height:1px;
  overflow:hidden;
}
.skip-link:focus{
  left:16px;
  top:16px;
  width:auto;
  height:auto;
  padding:10px 12px;
  background:#000;
  z-index:9999;
  border-radius:8px;
}

.site-header{
  position: sticky;
  top: 0;
  z-index: 1030;
  background: rgba(7, 16, 34, 0.62);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.navbar{
  padding-top: 14px;
  padding-bottom: 14px;
}

.navbar .navbar-brand{
  font-weight: 800;
  letter-spacing: .2px;
  display:flex;
  align-items:center;
  gap:10px;
}

.brand-mark{
  width:34px;
  height:34px;
  border-radius: 10px;
  display:grid;
  place-items:center;
  background: rgba(243,201,105,0.18);
  border:1px solid rgba(243,201,105,0.35);
  color: var(--gold);
  box-shadow: 0 10px 30px rgba(243,201,105,0.08);
}

.brand-sub{
  display:block;
  font-weight: 700;
  font-size: 0.86rem;
  color: rgba(243,201,105,0.95);
  margin-top: -2px;
}

.nav-link{
  color: rgba(234,240,255,0.82);
  font-weight: 600;
  padding: 10px 8px;
}
.nav-link:hover{
  color: var(--text);
}

.btn-gold{
  background: linear-gradient(180deg, var(--gold) 0%, var(--gold2) 100%);
  border: 1px solid rgba(243,201,105,0.55);
  color: #1a1200;
  font-weight: 800;
}
.btn-gold:hover{
  filter: brightness(1.02);
  color:#1a1200;
}

.hero{
  padding: 70px 0 50px;
  position: relative;
}

.hero::before{
  content:"";
  position:absolute;
  inset:-200px 0 auto 0;
  height: 420px;
  background: radial-gradient(circle at 20% 10%, rgba(243,201,105,0.18), transparent 45%),
              radial-gradient(circle at 80% 40%, rgba(64,120,255,0.18), transparent 40%);
  pointer-events:none;
}

.hero-badge .badge-glow{
  background: rgba(243,201,105,0.12);
  border:1px solid rgba(243,201,105,0.30);
  color: var(--text);
  font-weight: 700;
}

.hero-title{
  font-size: clamp(2rem, 3.4vw, 3rem);
  line-height: 1.12;
  font-weight: 900;
  margin-top: 18px;
}

.hero-subtitle{
  color: var(--muted);
  font-size: 1.05rem;
  margin-top: 14px;
  margin-bottom: 18px;
  line-height: 1.6;
}

.hero-cta{
  display:flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 22px;
}

.hero-highlights{
  margin-top: 18px;
  display:grid;
  gap: 10px;
}
.icon-circle{
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display:grid;
  place-items:center;
  background: rgba(243,201,105,0.10);
  border: 1px solid rgba(243,201,105,0.28);
  color: var(--gold);
  flex: 0 0 auto;
}

.hero-preview-card{
  background: linear-gradient(180deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.04) 100%);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 18px;
  overflow:hidden;
  box-shadow: 0 22px 60px rgba(0,0,0,0.35);
}

.preview-header{
  display:flex;
  align-items:center;
  gap: 12px;
  padding: 14px 16px;
  background: rgba(0,0,0,0.15);
  border-bottom: 1px solid rgba(255,255,255,0.10);
}

.dot{
  width:10px;
  height:10px;
  border-radius:50%;
  display:inline-block;
}
.dot-red{ background:#ff5f57; }
.dot-yellow{ background:#febc2e; }
.dot-green{ background:#28c840; }
.preview-title{
  font-weight: 800;
  color: rgba(234,240,255,0.85);
}

.codebox{
  padding: 16px;
  margin: 0;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, "Liberation Mono", monospace;
  font-size: .92rem;
  color: rgba(255,255,255,0.92);
  background: rgba(0,0,0,0.18);
}

.hero-trust{
  display:grid;
  gap: 12px;
}
.trust-item{
  display:flex;
  gap: 12px;
  align-items:flex-start;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 16px;
  padding: 14px;
}
.trust-item i{
  color: var(--gold);
  font-size: 1.15rem;
  width: 34px;
  height: 34px;
  display:grid;
  place-items:center;
  border-radius: 12px;
  background: rgba(243,201,105,0.10);
  border: 1px solid rgba(243,201,105,0.22);
}
.trust-title{
  font-weight: 900;
}
.trust-sub{
  color: var(--muted);
  font-size: .95rem;
  margin-top: 2px;
}

.section{
  padding: 70px 0;
}
.section-soft{
  background: linear-gradient(180deg, rgba(243,201,105,0.08), rgba(243,201,105,0.0));
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.section-head{
  margin-bottom: 28px;
}
.section-title{
  font-weight: 950;
  letter-spacing: -0.3px;
  font-size: clamp(1.5rem, 2.2vw, 2.1rem);
}
.section-subtitle{
  color: var(--muted);
  margin-top: 8px;
  margin-bottom: 0;
  line-height: 1.6;
  max-width: 70ch;
}

.feature-card{
  height: 100%;
  background: var(--card);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.20);
}
.feature-icon{
  width: 44px;
  height: 44px;
  border-radius: 16px;
  display:grid;
  place-items:center;
  background: rgba(243,201,105,0.10);
  border: 1px solid rgba(243,201,105,0.25);
  color: var(--gold);
}
.feature-card h3{
  margin-top: 12px;
  font-size: 1.05rem;
  font-weight: 900;
}
.feature-card p{
  margin-top: 8px;
  color: var(--muted);
}

.step-card{
  height: 100%;
  border-radius: 18px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 18px;
  position:relative;
  overflow:hidden;
}
.step-card::after{
  content:"";
  position:absolute;
  inset:-80px auto auto -80px;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(243,201,105,0.18), transparent 65%);
}
.step-no{
  position:relative;
  z-index:1;
  width: 40px;
  height: 40px;
  border-radius: 14px;
  background: rgba(243,201,105,0.14);
  border: 1px solid rgba(243,201,105,0.32);
  display:grid;
  place-items:center;
  font-weight: 900;
  color: var(--gold);
}
.step-card h3{
  position:relative;
  z-index:1;
  margin-top: 14px;
  font-size: 1.1rem;
  font-weight: 900;
}
.step-card p{
  position:relative;
  z-index:1;
  color: var(--muted);
  margin-top: 8px;
  line-height: 1.6;
}

.sample-json-wrap{
  border-radius: 18px;
  overflow:hidden;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.05);
}
.sample-json-head{
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.10);
  color: rgba(234,240,255,0.88);
  font-weight: 800;
}

.api-card{
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 18px;
  padding: 18px;
  height: 100%;
}
.api-title{
  font-size: 1.05rem;
  font-weight: 950;
}
.code-snippet-meta{
  color: var(--muted);
  font-weight: 700;
  margin-top: 8px;
  margin-bottom: 10px;
}
.mono{
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, "Liberation Mono", monospace;
  color: rgba(234,240,255,0.95);
}

.price-card{
  height: 100%;
  border-radius: 20px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 18px 50px rgba(0,0,0,0.25);
  overflow:hidden;
}
.price-card-best{
  border-color: rgba(243,201,105,0.45);
  box-shadow: 0 22px 70px rgba(243,201,105,0.10);
  background: linear-gradient(180deg, rgba(243,201,105,0.12) 0%, rgba(255,255,255,0.04) 100%);
}
.best-badge{
  background: rgba(243,201,105,0.18);
  border-bottom: 1px solid rgba(243,201,105,0.32);
  color: rgba(255,255,255,0.92);
  padding: 10px 16px;
  font-weight: 900;
  display:flex;
  align-items:center;
  gap: 10px;
}
.price-head{
  padding: 18px 18px 8px;
}
.price-title{
  font-size: 1.2rem;
  font-weight: 950;
}
.price-body{
  padding: 10px 18px 18px;
}
.price-amount{
  font-size: 2.25rem;
  font-weight: 1000;
  letter-spacing: -0.8px;
}
.price-unit{
  font-size: 1rem;
  font-weight: 900;
  color: var(--muted);
  letter-spacing: 0;
}
.price-subtext{
  color: var(--gold);
  font-weight: 900;
  margin-top: -6px;
}
.price-subtext-2{
  color: var(--muted);
  font-weight: 700;
  margin-top: 6px;
}
.price-list{
  list-style:none;
  padding:0;
  margin: 18px 0 0;
  display:grid;
  gap: 10px;
}
.price-list li{
  display:flex;
  align-items:center;
  gap: 10px;
  color: rgba(234,240,255,0.88);
  font-weight: 700;
}
.price-list i{
  color: var(--gold);
}

.pricing-note{
  color: var(--muted);
  font-weight: 650;
}

.usecase-card{
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 14px;
  display:flex;
  align-items:center;
  gap: 12px;
  height: 100%;
}
.usecase-card i{
  color: var(--gold);
  width: 36px;
  height: 36px;
  border-radius: 14px;
  display:grid;
  place-items:center;
  background: rgba(243,201,105,0.10);
  border: 1px solid rgba(243,201,105,0.22);
}
.usecase-card span{
  font-weight: 900;
}

.why-card{
  height:100%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 18px;
  padding: 18px;
}
.why-card h3{
  font-weight: 950;
  font-size: 1.08rem;
}
.why-card p{
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom:0;
}

.faq-accordion .accordion-item{
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  overflow:hidden;
  margin-bottom: 12px;
}
.faq-accordion .accordion-button{
  background: rgba(0,0,0,0.12);
  color: var(--text);
  font-weight: 900;
  border-radius: 0;
}
.faq-accordion .accordion-body{
  color: var(--muted);
  line-height: 1.7;
}

.final-cta{
  padding: 70px 0 90px;
}
.final-cta-box{
  background: linear-gradient(180deg, rgba(243,201,105,0.14) 0%, rgba(255,255,255,0.06) 100%);
  border: 1px solid rgba(243,201,105,0.35);
  border-radius: 22px;
  padding: 22px;
  box-shadow: 0 30px 90px rgba(0,0,0,0.28);
}
.final-title{
  font-size: clamp(1.4rem, 2.4vw, 2.1rem);
  font-weight: 1000;
  margin-bottom: 10px;
}
.final-subtitle{
  color: var(--muted);
  line-height: 1.6;
  font-weight: 700;
}
.final-actions .btn{
  font-weight: 900;
  border-radius: 14px;
}
.trust-row{
  display:flex;
  flex-wrap: wrap;
  gap: 12px;
}
.trust-mini{
  flex: 1 1 220px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 12px 14px;
  display:flex;
  align-items:center;
  gap: 10px;
  color: rgba(234,240,255,0.88);
  font-weight: 850;
}
.trust-mini i{
  color: var(--gold);
}

.footer{
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 35px 0;
  background: rgba(0,0,0,0.10);
}
.footer-brand{
  display:flex;
  align-items:center;
  gap: 12px;
}
.footer-mark{
  width: 44px;
  height: 44px;
  border-radius: 16px;
  background: rgba(243,201,105,0.10);
  border: 1px solid rgba(243,201,105,0.25);
  display:grid;
  place-items:center;
  color: var(--gold);
}
.footer-company{
  font-weight: 950;
}
.footer-product{
  color: var(--muted);
  font-weight: 750;
  margin-top: 2px;
}
.footer-note{
  color: var(--muted);
  margin-top: 14px;
  font-weight: 650;
}
.footer-link{
  color: rgba(234,240,255,0.86);
  text-decoration:none;
  font-weight: 700;
}
.footer-link:hover{
  color: var(--text);
  text-decoration: underline;
}
.footer-title{
  font-weight: 950;
  margin-bottom: 10px;
}
.footer-col{
  padding-top: 8px;
}
.footer-bottom{
  margin-top: 25px;
  color: rgba(234,240,255,0.70);
  font-weight: 650;
}

/* Modal (Privacy/Terms) - keep consistent dark theme */
.modal-content{
  background: rgba(11, 18, 32, 0.98);
  border: 1px solid rgba(243,201,105,0.30);
  border-radius: 20px;
  box-shadow: 0 40px 120px rgba(0,0,0,0.45);
  color: var(--text);
}
.modal-header{
  border-bottom: 1px solid rgba(255,255,255,0.10);
  background: rgba(0,0,0,0.10);
}
.modal-title{
  color: var(--text);
  font-weight: 1000;
}
.btn-close{
  filter: invert(1);
  opacity: 0.85;
}
.modal-body{
  color: rgba(234,240,255,0.80);
}
.modal-body h3{
  color: rgba(243,201,105,0.95);
  font-weight: 950;
}
.modal-footer{
  border-top: 1px solid rgba(255,255,255,0.10);
  background: rgba(0,0,0,0.06);
}

/* Responsive tweaks */
@media (max-width: 991.98px){
  .hero-cta .btn{
    width: 100%;
  }
  .hero{
    padding-top: 50px;
  }
}

