/* ===========================================================
   1RED — Overview (red / charcoal)
   Matches uploaded screenshot · responsive · honest intl version
   =========================================================== */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,600;0,700;0,800;1,700;1,800&family=Barlow:wght@400;500;600&display=swap');

:root {
  --bg:        #14161e;
  --panel:     #1f2330;
  --panel-2:   #1a1d27;
  --border:    #2a2f3d;
  --border-2:  #3a4151;
  --red:       #e8323f;
  --red-2:     #ff4754;
  --gold:      #ffc23c;
  --text:      #f1f3f8;
  --muted:     #99a0b2;
  --radius:    16px;
  --maxw:      1120px;
  --display:   'Montserrat', system-ui, sans-serif;
  --body:      'Barlow', system-ui, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background:
    radial-gradient(760px 420px at 80% -6%, rgba(232,50,63,.12), transparent 60%),
    var(--bg);
  color: var(--text); font-family: var(--body); line-height: 1.6;
  -webkit-font-smoothing: antialiased; overflow-x: hidden;
}
a { color: var(--red-2); text-decoration: none; transition: color .2s; }
a:hover { color: #ff7079; }
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }
h1,h2,h3,h4 { font-family: var(--display); letter-spacing: -.2px; line-height: 1.15; }

/* ---------- top bar ---------- */
.topbar { position: sticky; top: 0; z-index: 50; backdrop-filter: blur(10px);
  background: rgba(16,18,25,.84); border-bottom: 1px solid var(--border); }
.topbar .container { display: flex; align-items: center; justify-content: space-between; height: 66px; }
.brand { display: flex; align-items: center; gap: 10px; }
.brand img { height: 30px; width: 30px; }
.wordmark { font-family: var(--display); font-style: italic; font-weight: 800; font-size: 1.5rem; letter-spacing: -1px; }
.wordmark b { color: var(--red-2); }
.nav { display: flex; gap: 12px; align-items: center; }
.menu-btn { display: none; background: none; border: 1px solid var(--border-2); border-radius: 999px; padding: 8px 10px; cursor: pointer; }
.menu-btn span { display: block; width: 20px; height: 2px; background: var(--red-2); margin: 4px 0; }

/* ---------- buttons ---------- */
.btn { display: inline-flex; align-items: center; gap: 8px; font-family: var(--display);
  font-weight: 700; font-size: .9rem; padding: 11px 20px; border-radius: 999px; border: none; cursor: pointer;
  transition: transform .18s, box-shadow .25s, filter .2s; }
.btn.red { background: linear-gradient(135deg, var(--red-2), var(--red)); color: #fff;
  box-shadow: 0 0 0 1px rgba(232,50,63,.3), 0 10px 26px -12px rgba(232,50,63,.9); }
.btn.red:hover { transform: translateY(-2px); filter: brightness(1.07); color: #fff; }
.btn.dark { background: #262b39; color: var(--text); border: 1px solid var(--border-2); }
.btn.dark:hover { transform: translateY(-2px); border-color: var(--red-2); color: #fff; }
.btn.lg { padding: 14px 28px; font-size: 1rem; }

/* ---------- hero card ---------- */
.hero { padding: 26px 0 10px; }
.hero-card { background: linear-gradient(180deg, #232838, #1b1f2b); border: 1px solid var(--border);
  border-radius: 22px; padding: 34px 36px; }
.hero-card .grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 34px; align-items: center; }
.hero-card h1 { font-size: clamp(1.7rem, 3.8vw, 2.5rem); font-weight: 800; }
.stars { color: var(--gold); letter-spacing: 2px; margin: 12px 0; font-size: 1.05rem; }
.hero-card p { color: var(--muted); margin: 8px 0; }
.bonus-strip { background: #2b3042; border: 1px solid var(--border-2); border-radius: 999px;
  padding: 13px 22px; margin: 20px 0 14px; color: var(--text); font-weight: 600; }
.cta-row { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-illus { border-radius: 16px; overflow: hidden; border: 1px solid var(--border-2);
  background: radial-gradient(380px 280px at 50% 35%, rgba(232,50,63,.22), transparent 70%), #0f1118;
  aspect-ratio: 16/11; }
.hero-illus svg { width: 100%; height: 100%; }

/* ---------- disclaimer ---------- */
.disclaimer { margin: 16px 0; border: 1px solid var(--border-2); border-left: 3px solid var(--red-2);
  background: linear-gradient(90deg, rgba(232,50,63,.07), transparent); border-radius: 12px;
  padding: 14px 18px; color: var(--muted); font-size: .9rem; }
.disclaimer b { color: var(--text); }
.warn { border-left-color: var(--gold); background: linear-gradient(90deg, rgba(255,194,60,.08), transparent); }
.warn b { color: var(--gold); }

/* ---------- sections ---------- */
section.block { padding: 26px 0; }
.section-head { display: flex; align-items: center; gap: 11px; margin-bottom: 14px; }
.section-head .dot { width: 9px; height: 9px; border-radius: 3px; background: var(--red-2); box-shadow: 0 0 12px var(--red); }
.section-head h2 { font-size: 1.6rem; font-weight: 800; }
section.block > .container > p, .lead { color: var(--muted); max-width: 86ch; margin-bottom: 10px; }

.split { display: grid; grid-template-columns: 1.1fr .9fr; gap: 32px; align-items: center; }
.checklist { list-style: none; margin: 8px 0; }
.checklist li { color: var(--text); padding: 9px 0 9px 30px; position: relative; }
.checklist li::before { content: '✔'; color: var(--red-2); font-weight: 700; position: absolute; left: 0; }
.muted { color: var(--muted); }

.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px,1fr)); gap: 16px; }
.card { background: var(--panel); border: 1px solid var(--border); border-radius: var(--radius); padding: 22px 24px; transition: transform .2s, border-color .25s; }
.card:hover { transform: translateY(-3px); border-color: var(--border-2); }
.card h3 { font-size: 1.12rem; margin-bottom: 8px; }
.card p { color: var(--muted); }

.panel { background: var(--panel); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px 26px; }
.panel h3 { font-size: 1.15rem; margin-bottom: 8px; }
.panel p { color: var(--muted); }

.illus-side { border-radius: 16px; overflow: hidden; border: 1px solid var(--border-2);
  background: radial-gradient(320px 240px at 50% 40%, rgba(232,50,63,.2), transparent 70%), #0f1118; aspect-ratio: 4/3; }
.illus-side svg { width: 100%; height: 100%; }

/* faq */
.faq details { background: var(--panel); border: 1px solid var(--border); border-radius: 12px; padding: 0 18px; margin-bottom: 10px; }
.faq details[open] { border-color: var(--border-2); }
.faq summary { cursor: pointer; list-style: none; padding: 15px 0; font-family: var(--display); font-weight: 700; font-size: 1.02rem;
  display: flex; justify-content: space-between; align-items: center; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; color: var(--red-2); font-size: 1.4rem; transition: transform .2s; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq p { color: var(--muted); padding: 0 0 15px; }

/* responsible + footer */
.responsible { background: var(--panel-2); border: 1px solid var(--border-2); border-radius: var(--radius); padding: 26px 28px; }
.responsible h2 { font-size: 1.4rem; margin-bottom: 10px; }
.responsible p { color: var(--muted); }
footer { margin-top: 46px; border-top: 1px solid var(--border); padding: 26px 0 56px; color: var(--muted); font-size: .87rem; }
footer .container { display: flex; flex-direction: column; gap: 9px; }
footer .legal { font-size: .81rem; color: #6b7283; }

[data-rise] { opacity: 0; transform: translateY(16px); animation: rise .7s forwards; }
@keyframes rise { to { opacity: 1; transform: none; } }

/* mobile */
@media (max-width: 900px) {
  .hero-card .grid { grid-template-columns: 1fr; }
  .hero-illus { order: -1; }
  .split { grid-template-columns: 1fr; }
  .illus-side { display: none; }
  .nav { position: fixed; inset: 66px 0 auto 0; flex-direction: column; gap: 0; background: #101219;
    border-bottom: 1px solid var(--border); padding: 12px 22px 20px; transform: translateY(-140%); transition: transform .3s; }
  .nav.open { transform: translateY(0); }
  .nav .btn { width: 100%; justify-content: center; }
  .menu-btn { display: block; }
  .hero-card { padding: 24px 20px; }
}
@media (max-width: 480px) {
  .cta-row { flex-direction: column; }
  .cta-row .btn { width: 100%; justify-content: center; }
}

/* ---- login-page additions ---- */
.steps { counter-reset: s; list-style: none; margin: 8px 0; }
.steps li { counter-increment: s; position: relative; padding: 10px 0 10px 46px; color: var(--muted); border-bottom: 1px dashed #242a38; }
.steps li:last-child { border-bottom: none; }
.steps li::before { content: counter(s); position: absolute; left: 0; top: 9px; width: 30px; height: 30px;
  background: linear-gradient(135deg, var(--red-2), var(--red)); color: #fff; border-radius: 9px;
  display: grid; place-items: center; font-family: var(--display); font-weight: 700; font-size: .9rem; }
.steps li b { color: var(--text); }
.grid2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 900px){ .grid2 { grid-template-columns: 1fr; } }
.login-mock { background: linear-gradient(165deg,#232838,#161922); border:1px solid var(--border-2); border-radius:14px; padding:22px; }
.login-mock .lh{ display:flex; align-items:center; gap:9px; margin-bottom:14px; font-family:var(--display); font-weight:800; font-style:italic;}
.login-mock .lh img{width:26px;height:26px;}
.field{ background:#161922; border:1px solid var(--border-2); border-radius:9px; padding:10px 12px; color:var(--muted); font-size:.9rem; margin-bottom:10px;}
.field .lbl{ font-size:.7rem; text-transform:uppercase; letter-spacing:1px; color:#69708a; display:block; margin-bottom:3px;}
.login-mock .btn{ width:100%; justify-content:center; margin-top:4px;}
