:root{
  --bg:#1e1a16;
  --fg:#f5f5f5;
  --muted:rgba(245,245,245,.70);
  --muted2:rgba(245,245,245,.60);
  --glass:rgba(255,255,255,.10);
  --glass2:rgba(255,255,255,.20);
  --primary:#ec8c4d;
  --primaryText:#0f0703;
  --radius:16px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:ui-sans-serif,system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial,"Apple Color Emoji","Segoe UI Emoji";
  background:var(--bg);
  color:var(--fg);
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
}

a{color:inherit;text-decoration:none}
img{display:block;max-width:100%}

.page{min-height:100vh}
.container{
  width:100%;
  max-width:1440px;
  margin:0 auto;
  padding:0 20px;
}

.header{width:100%}
.header__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:16px 0;
}
.brand{display:block}
.brand__logo{height:40px;width:180px;object-fit:contain;object-position:left}

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

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:10px 22px;
  border-radius:999px;
  font-weight:600;
  font-size:14px;
  line-height:1;
  border:1px solid transparent;
  transition:transform .15s ease, background-color .15s ease, border-color .15s ease, color .15s ease;
  user-select:none;
  white-space:nowrap;
}
.btn:active{transform:translateY(1px)}
.btn--outline{border-color:var(--primary);color:var(--primary);background:transparent}
.btn--primary{background:var(--primary);color:var(--primaryText)}
.btn:hover{filter:brightness(1.03)}

.hero{
  position:relative;
  margin-top:8px;
  border-radius:26px;
  overflow:hidden;
  background:rgba(0,0,0,.20);
}
.hero__image{
  width:100%;
  aspect-ratio:16/7;
  object-fit:cover;
}
.hero__overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(to top, rgba(0,0,0,.55), rgba(0,0,0,.20), rgba(0,0,0,.10));
}
.hero__content{
  position:absolute;
  left:0; right:0; bottom:0;
  padding:32px;
}
.hero__title{
  margin:0;
  max-width:900px;
  font-size:30px;
  line-height:1.2;
  font-weight:600;
  text-wrap:balance;
  text-shadow:0 2px 12px rgba(0,0,0,.25);
}
.hero__text{
  margin:12px 0 0;
  max-width:900px;
  font-size:14px;
  color:rgba(255,255,255,.85);
  line-height:1.6;
}

.chips{
  margin-top:24px;
  display:flex;
  gap:12px;
  overflow-x:auto;
  padding-bottom:8px;
  -webkit-overflow-scrolling:touch;
}
.chip{
  flex:0 0 auto;
  padding:12px 18px;
  border-radius:999px;
  border:0;
  background:var(--glass2);
  color:rgba(255,255,255,.90);
  backdrop-filter:blur(8px);
  cursor:pointer;
  font-weight:600;
  font-size:14px;
  transition:background-color .15s ease, color .15s ease;
}
.chip:hover{background:rgba(255,255,255,.25);color:#fff}
.chip.is-active{background:rgba(255,255,255,.25);color:#fff}

.section-head{
  margin-top:40px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}
.section-head__title{
  margin:0;
  font-size:20px;
  font-weight:600;
  color:rgba(255,255,255,.90);
}
.section-head__link{
  font-size:14px;
  font-weight:600;
  color:var(--muted2);
}
.section-head__link:hover{text-decoration:underline}

.cards{
  margin-top:16px;
  display:flex;
  gap:16px;
  overflow-x:auto;
  padding-bottom:8px;
  -webkit-overflow-scrolling:touch;
}
.card{
  position:relative;
  width:152px;
  height:152px;
  flex:0 0 auto;
  overflow:hidden;
  border-radius:18px;
  background:rgba(255,255,255,.08);
}
.card::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(to top, rgba(0,0,0,.35), transparent);
  opacity:.7;
}
.card img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .30s ease;
}
.card:hover img{transform:scale(1.02)}

.content{
  max-width:980px;
  padding-top:56px;
  padding-bottom:80px;
}
.content h1{
  margin:0;
  font-size:30px;
  font-weight:600;
  color:rgba(255,255,255,.90);
}
.content h2{
  margin:40px 0 0;
  font-size:24px;
  font-weight:600;
  color:rgba(255,255,255,.90);
}
.content p{
  margin:16px 0 0;
  font-size:14px;
  line-height:1.7;
  color:var(--muted);
}
.content ul{
  margin:16px 0 0;
  padding-left:18px;
  color:var(--muted);
  font-size:14px;
}
.content li{margin:8px 0;list-style:disc}

.faq{margin-top:16px;display:flex;flex-direction:column;gap:16px}
.faq__item{
  border-radius:18px;
  background:var(--glass);
  padding:18px;
}
.faq__q{
  cursor:pointer;
  font-weight:600;
  color:rgba(255,255,255,.90);
}
.faq__q::-webkit-details-marker{display:none}
.faq__a{
  margin-top:10px;
  font-size:14px;
  line-height:1.7;
  color:var(--muted);
}

@media (max-width: 700px){
  .hero__content{padding:18px}
  .hero__title{font-size:20px}
  .brand__logo{width:150px}
  .btn{padding:10px 16px}
}
