/* Minimal, fast, SEO-friendly styles. */
/* Designed to mimic the provided layout with a dark header and a bright CTA button. */

:root{
  --bg:#ffffff;
  --text:#1a1a1a;
  --muted:#5b5b5b;
  --line:#e6e6e6;
  --header:#151400;
  --header2:#0e0e07;
  --accent:#ff0066;
  --accent2:#ff2a7a;
  --focus:#2aa8ff;
  --radius:10px;
  --shadow: 0 10px 30px rgba(0,0,0,.08);
}

*{box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  margin:0;
  font: 16px/1.55 system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Helvetica Neue", sans-serif;
  color:var(--text);
  background:var(--bg);
}

img{max-width:100%; height:auto; display:block;}

.sr-only{
  position:absolute;
  width:1px;height:1px;
  padding:0;margin:-1px;
  overflow:hidden;clip:rect(0,0,0,0);
  white-space:nowrap;border:0;
}

.skip{
  position:absolute; left:-9999px; top:auto;
  width:1px; height:1px; overflow:hidden;
}
.skip:focus{
  left:16px; top:16px; width:auto; height:auto;
  padding:10px 12px;
  background:#fff;
  border:2px solid var(--focus);
  border-radius:10px;
  z-index:9999;
}

/* Header */
.header{
  background: linear-gradient(180deg, var(--header), var(--header2));
  border-bottom: 1px solid rgba(255,255,255,.08);
  position:sticky; top:0; z-index:50;
}
.header__inner{
  max-width: 1100px;
  margin: 0 auto;
  padding: 10px 14px;
  display:flex;
  gap:12px;
  align-items:center;
}
.brand{display:flex; align-items:center; gap:10px; text-decoration:none;}
.brand__logo{width:170px; height:auto;}

.search{
  flex: 1;
  display:flex;
  align-items:center;
  gap:8px;
  min-width: 140px;
}
.search__input{
  width:100%;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  color:#fff;
  padding: 10px 12px;
  border-radius: 999px;
  outline:none;
}
.search__input::placeholder{color:rgba(255,255,255,.65);}
.search__input:focus{border-color:rgba(42,168,255,.7); box-shadow:0 0 0 3px rgba(42,168,255,.2);}

.search__btn{
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  color:#fff;
  padding: 10px 12px;
  border-radius: 999px;
  cursor:pointer;
}
.search__btn:focus{outline:3px solid rgba(42,168,255,.35); outline-offset:2px;}

.header__actions{display:flex; gap:8px; align-items:center; flex-shrink:0;}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 9px 12px;
  border-radius: 8px;
  text-decoration:none;
  font-weight: 600;
  font-size: 14px;
  line-height: 1;
  border: 1px solid transparent;
  white-space:nowrap;
}
.btn--ghost{
  color:#fff;
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.14);
}
.btn--ghost:hover{background: rgba(255,255,255,.10);}
.btn--pink{
  color:#fff;
  background: linear-gradient(180deg, var(--accent), var(--accent2));
  border-color: rgba(255,255,255,.08);
}
.btn--pink:hover{filter:brightness(1.05);}

/* Content */
.main{
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px 14px 30px;
}

.article{
  background:#fff;
}

h1{
  margin: 6px 0 10px;
  font-size: 32px;
  line-height: 1.15;
}
h2{
  margin: 26px 0 10px;
  font-size: 22px;
  line-height: 1.25;
}
h3{
  margin: 18px 0 8px;
  font-size: 18px;
  line-height: 1.3;
}
p{margin: 0 0 12px;}
.lead{color:#2a2a2a;}
a{color:#0f66d6;}
a:hover{text-decoration:underline;}

.cta{
  margin: 14px 0 10px;
  display:flex;
  flex-direction:column;
  gap:8px;
}
.cta__btn{
  display:block;
  width:100%;
  max-width: 520px;
  padding: 14px 18px;
  border-radius: 6px;
  background: var(--accent);
  color:#fff;
  font-weight: 800;
  letter-spacing:.3px;
  text-decoration:none;
  text-align:center;
  box-shadow: var(--shadow);
}
.cta__btn:hover{filter:brightness(1.05); text-decoration:none;}
.cta__note{color:var(--muted); font-size: 13px; margin:0;}

.note{
  border: 1px solid var(--line);
  border-left: 4px solid var(--accent);
  padding: 12px 12px 10px;
  border-radius: 10px;
  background: #fff;
  margin: 14px 0;
}

ul,ol{padding-left: 20px; margin: 0 0 12px;}
li{margin: 6px 0;}
strong{font-weight:800;}

.table-wrap{
  margin: 12px 0 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow:auto;
  -webkit-overflow-scrolling:touch;
}
.tbl{
  width:100%;
  border-collapse: collapse;
  min-width: 720px;
}
.tbl th,.tbl td{
  text-align:left;
  padding: 12px 12px;
  border-bottom: 1px solid var(--line);
  vertical-align:top;
}
.tbl th{
  background: #fafafa;
  font-size: 13px;
  text-transform: none;
}
.tbl tr:last-child td{border-bottom:0;}

.faq details{
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 10px 12px;
  margin: 10px 0;
}
.faq summary{
  cursor:pointer;
  font-weight: 800;
  list-style:none;
}
.faq summary::-webkit-details-marker{display:none;}
.faq p{margin-top:8px; color:#333;}

.footer{
  border-top: 1px solid var(--line);
  padding: 18px 14px;
  background:#fff;
}
.footer__inner{
  max-width: 1100px;
  margin: 0 auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}
.footer__text{margin:0; color:var(--muted); font-size: 13px;}
.footer__logo{display:flex; align-items:center; text-decoration:none;}

/* Mobile */
@media (max-width: 720px){
  .header__inner{gap:10px;}
  .brand__logo{width:150px;}
  .search{display:none;}
  h1{font-size: 26px;}
  h2{font-size: 20px;}
  .btn{padding: 9px 10px; font-size: 13px;}
  .footer__inner{flex-direction:column; align-items:flex-start;}
}

@media (prefers-reduced-motion: reduce){
  html{scroll-behavior:auto;}
}
