/* =========================
   Dauntoto Landing - style.css
   Premium ecommerce-style UI
   ========================= */

:root{
  --bg: #070a14;
  --bg2:#0b1020;
  --card:#0f1733;
  --card2:#0c132b;
  --text:#eaf0ff;
  --muted:#a9b6da;
  --line: rgba(255,255,255,.10);
  --shadow: 0 18px 45px rgba(0,0,0,.45);
  --shadow2: 0 10px 28px rgba(0,0,0,.35);
  --radius: 18px;
  --radius2: 24px;

  --primary:#7c5cff;
  --primary2:#52d2ff;
  --good:#39e58c;
  --warn:#ffd24a;

  --max: 1180px;
}

/* Base reset */
*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  color: var(--text);
  background:
    radial-gradient(1000px 700px at 10% -10%, rgba(124,92,255,.20), transparent 55%),
    radial-gradient(900px 700px at 90% 0%, rgba(82,210,255,.14), transparent 50%),
    radial-gradient(800px 700px at 50% 110%, rgba(57,229,140,.10), transparent 52%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg2) 55%, #060912 100%);
  line-height:1.55;
  overflow-x:hidden;
}

img{
  max-width:100%;
  height:auto;
  display:block;
}

a{
  color: inherit;
  text-decoration: none;
}

.container{
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

.section{
  padding: 70px 0;
}

.section-head{
  margin-bottom: 22px;
}
.section-head h2{
  margin: 0 0 10px;
  font-size: clamp(22px, 2vw, 30px);
  letter-spacing: .2px;
}
.section-head p{
  margin: 0;
  color: var(--muted);
  max-width: 72ch;
}

.muted{ color: var(--muted); }

/* Skip link */
.skip-link{
  position:absolute;
  left:-9999px;
  top:8px;
  padding:10px 12px;
  border-radius:12px;
  background: rgba(255,255,255,.14);
  border: 1px solid var(--line);
  color: var(--text);
  z-index: 999;
}
.skip-link:focus{ left: 12px; }

/* Header */
.site-header{
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(12px);
  background: rgba(7,10,20,.58);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding: 14px 0;
}
.brand{
  display:flex;
  flex-direction:column;
  gap:4px;
  min-width: 170px;
}
.logo{
  font-weight: 800;
  letter-spacing: .6px;
  font-size: 18px;
  padding: 8px 12px;
  width: fit-content;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(124,92,255,.30), rgba(82,210,255,.18));
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 12px 30px rgba(0,0,0,.25);
}
.tagline{
  color: var(--muted);
  font-size: 12px;
  letter-spacing: .2px;
}

.nav{
  display:flex;
  gap: 14px;
  align-items:center;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(15,23,51,.55);
}
.nav a{
  font-size: 13px;
  color: rgba(234,240,255,.90);
  padding: 8px 10px;
  border-radius: 999px;
  transition: transform .15s ease, background .15s ease, color .15s ease;
}
.nav a:hover{
  background: rgba(255,255,255,.08);
  transform: translateY(-1px);
  color: #fff;
}

.header-cta{
  display:flex;
  align-items:center;
  gap:10px;
}

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding: 10px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  color: var(--text);
  font-weight: 650;
  font-size: 14px;
  letter-spacing: .15px;
  box-shadow: 0 10px 26px rgba(0,0,0,.20);
  transition: transform .15s ease, filter .15s ease, background .15s ease, border .15s ease;
  user-select:none;
}
.btn:hover{
  transform: translateY(-1px);
  filter: brightness(1.04);
}
.btn:active{
  transform: translateY(0px);
  filter: brightness(.98);
}
.btn-lg{
  padding: 12px 16px;
  border-radius: 16px;
  font-size: 15px;
}
.btn-primary{
  border: 1px solid rgba(124,92,255,.35);
  background:
    radial-gradient(140% 140% at 10% 0%, rgba(255,255,255,.20), transparent 35%),
    linear-gradient(135deg, rgba(124,92,255,.92), rgba(82,210,255,.85));
  box-shadow: 0 18px 45px rgba(124,92,255,.25);
}
.btn-ghost{
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.12);
}

/* Hero */
.hero{
  padding: 64px 0 26px;
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 26px;
  align-items:center;
}
.eyebrow{
  display:inline-flex;
  gap:10px;
  align-items:center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  color: rgba(234,240,255,.88);
  font-size: 13px;
  margin: 0 0 12px;
}
.hero-copy h1{
  margin: 0 0 12px;
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.08;
  letter-spacing: .2px;
}
.subhead{
  margin: 0 0 18px;
  color: rgba(234,240,255,.86);
  max-width: 62ch;
}
.hero-actions{
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 14px 0 18px;
}
.hero-badges{
  display:flex;
  flex-wrap:wrap;
  gap: 10px;
  margin: 14px 0 8px;
}
.badge{
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(15,23,51,.55);
  border: 1px solid rgba(255,255,255,.10);
  color: rgba(234,240,255,.90);
  font-size: 13px;
}

.fineprint{
  margin: 10px 0 0;
  color: rgba(169,182,218,.92);
  font-size: 12px;
}

.hero-media{
  display:flex;
  flex-direction:column;
  gap: 12px;
}
.media-card{
  border-radius: var(--radius2);
  overflow:hidden;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(15,23,51,.55);
  box-shadow: var(--shadow);
  transform: translateZ(0);
}
.media-card img{
  width:100%;
  aspect-ratio: 12 / 9;
  object-fit: cover;
}
.media-strip{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.media-strip img{
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  box-shadow: var(--shadow2);
  aspect-ratio: 11 / 7;
  object-fit: cover;
}

/* Trust */
.trust-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.trust-card{
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.10);
  background: linear-gradient(180deg, rgba(15,23,51,.72), rgba(12,19,43,.64));
  box-shadow: var(--shadow2);
  padding: 16px 16px 14px;
}
.trust-metric{
  display:flex;
  flex-direction:column;
  gap: 4px;
  margin-bottom: 8px;
}
.metric{
  font-weight: 850;
  letter-spacing:.2px;
  font-size: 20px;
}
.label{
  font-size: 13px;
  color: rgba(169,182,218,.96);
}

/* Product grid */
.product-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.product-card{
  border-radius: var(--radius2);
  overflow:hidden;
  border: 1px solid rgba(255,255,255,.10);
  background: linear-gradient(180deg, rgba(15,23,51,.74), rgba(12,19,43,.66));
  box-shadow: var(--shadow2);
  transition: transform .18s ease, border .18s ease, filter .18s ease;
}
.product-card:hover{
  transform: translateY(-3px);
  filter: brightness(1.02);
  border: 1px solid rgba(124,92,255,.28);
}
.product-media{
  position:relative;
}
.product-media img{
  width:100%;
  aspect-ratio: 12 / 8;
  object-fit: cover;
}
.chip{
  position:absolute;
  left: 12px;
  top: 12px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(0,0,0,.40);
  border: 1px solid rgba(255,255,255,.16);
  color: rgba(255,255,255,.92);
  font-size: 12px;
  backdrop-filter: blur(10px);
}
.product-body{
  padding: 14px 14px 16px;
}
.product-body h3{
  margin: 0 0 6px;
  font-size: 16px;
  letter-spacing:.2px;
}
.product-actions{
  display:flex;
  gap: 10px;
  margin-top: 12px;
  flex-wrap: wrap;
}
.product-actions .btn{
  box-shadow:none;
}

/* Benefits */
.benefit-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 14px;
}
.benefit-card{
  padding: 16px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(15,23,51,.55);
  box-shadow: var(--shadow2);
}
.benefit-card h3{
  margin: 0 0 8px;
  font-size: 16px;
}

/* CTA band */
.cta-band{
  margin-top: 18px;
  padding: 18px;
  border-radius: var(--radius2);
  border: 1px solid rgba(255,255,255,.10);
  background:
    radial-gradient(120% 120% at 0% 0%, rgba(124,92,255,.18), transparent 55%),
    radial-gradient(120% 120% at 100% 0%, rgba(82,210,255,.14), transparent 55%),
    rgba(15,23,51,.55);
  box-shadow: var(--shadow);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 14px;
}
.cta-band h3{
  margin: 0 0 6px;
}
.cta-band-actions{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* Reviews */
.review-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.review-card{
  margin:0;
  padding: 16px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(15,23,51,.55);
  box-shadow: var(--shadow2);
}
.review-card blockquote{
  margin:0 0 10px;
  color: rgba(234,240,255,.92);
  font-weight: 600;
}
.review-card figcaption{
  color: rgba(169,182,218,.95);
  font-size: 13px;
}

/* Promo */
.promo-box{
  border-radius: var(--radius2);
  border: 1px solid rgba(255,255,255,.10);
  background:
    radial-gradient(120% 120% at 20% 0%, rgba(255,210,74,.10), transparent 55%),
    radial-gradient(120% 120% at 100% 20%, rgba(124,92,255,.16), transparent 50%),
    rgba(15,23,51,.55);
  box-shadow: var(--shadow);
  padding: 18px;
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 16px;
  align-items:center;
}
.promo-list{
  margin: 12px 0 0;
  padding-left: 18px;
  color: rgba(234,240,255,.88);
}
.promo-actions{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 14px;
}
.promo-media img{
  border-radius: var(--radius2);
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: var(--shadow2);
  aspect-ratio: 12 / 10;
  object-fit: cover;
}

/* FAQ */
.faq-list{
  display:grid;
  gap: 12px;
  margin-top: 14px;
}
.faq-item{
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(15,23,51,.55);
  box-shadow: var(--shadow2);
  padding: 10px 12px;
}
.faq-item summary{
  cursor:pointer;
  list-style:none;
  font-weight: 750;
  letter-spacing:.2px;
  padding: 10px 8px;
}
.faq-item summary::-webkit-details-marker{ display:none; }
.faq-body{
  padding: 0 8px 10px;
  color: rgba(234,240,255,.88);
}

/* Final CTA */
.final-cta-box{
  border-radius: var(--radius2);
  border: 1px solid rgba(255,255,255,.10);
  background:
    radial-gradient(120% 120% at 0% 0%, rgba(57,229,140,.12), transparent 55%),
    radial-gradient(120% 120% at 100% 0%, rgba(82,210,255,.10), transparent 55%),
    rgba(15,23,51,.55);
  box-shadow: var(--shadow);
  padding: 18px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 14px;
}
.final-cta-actions{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* Footer */
.site-footer{
  border-top: 1px solid rgba(255,255,255,.06);
  background: rgba(7,10,20,.62);
  padding: 44px 0 22px;
}
.footer-grid{
  display:grid;
  grid-template-columns: 1.3fr .7fr .7fr;
  gap: 18px;
}
.footer-brand{
  font-weight: 850;
  letter-spacing: .4px;
  margin-bottom: 8px;
}
.site-footer h3{
  margin: 0 0 10px;
  font-size: 14px;
  color: rgba(234,240,255,.92);
}
.site-footer ul{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  gap: 8px;
}
.site-footer a{
  color: rgba(169,182,218,.95);
}
.site-footer a:hover{
  color: #fff;
  text-decoration: underline;
}
.footer-bottom{
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,.06);
  color: rgba(169,182,218,.92);
}

/* Responsive */
@media (max-width: 980px){
  .hero-grid{ grid-template-columns: 1fr; }
  .promo-box{ grid-template-columns: 1fr; }
  .trust-grid{ grid-template-columns: repeat(2, 1fr); }
  .product-grid{ grid-template-columns: repeat(2, 1fr); }
  .benefit-grid{ grid-template-columns: repeat(2, 1fr); }
  .review-grid{ grid-template-columns: 1fr; }
  .footer-grid{ grid-template-columns: 1fr; }
  .nav{ display:none; } /* simple: sembunyiin nav di mobile */
  .brand{ min-width: unset; }
}

@media (max-width: 560px){
  .trust-grid{ grid-template-columns: 1fr; }
  .product-grid{ grid-template-columns: 1fr; }
  .benefit-grid{ grid-template-columns: 1fr; }
  .cta-band, .final-cta-box{ flex-direction: column; align-items:flex-start; }
}
