:root {
    --bg0: #07070a;
    --bg1: #0b0b0f;
    --red: #ff2b2b;
    --red2: #c8102e;
    --text: #f3f4f6;
    --muted: #b9bcc6;
    --card: rgba(255, 255, 255, .06);
    --card2: rgba(255, 255, 255, .10);
    --line: rgba(255, 255, 255, .10);
    --shadow: 0 14px 40px rgba(0, 0, 0, .55);
    --radius: 18px;
}

* {
    box-sizing: border-box
}

html,
body {
    height: 100%
}

body {
    margin: 0;
    font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Devanagari Sangam MN", sans-serif;
    color: var(--text);
    background:
        radial-gradient(900px 500px at 20% 10%, rgba(255, 43, 43, .25), transparent 55%),
        radial-gradient(800px 480px at 80% 15%, rgba(200, 16, 46, .18), transparent 60%),
        radial-gradient(900px 600px at 50% 90%, rgba(255, 43, 43, .10), transparent 60%),
        linear-gradient(180deg, var(--bg0), var(--bg1));
}

a {
    color: inherit;
    text-decoration: none
}

a:hover {
    opacity: .92
}

.container {
    width: min(1100px, calc(100% - 32px));
    margin: 0 auto;
}

.topbar {
    position: sticky;
    top: 0;
    z-index: 20;
    backdrop-filter: saturate(130%) blur(10px);
    background: linear-gradient(180deg, rgba(7, 7, 10, .92), rgba(7, 7, 10, .65));
    border-bottom: 1px solid var(--line);
}

.topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
    gap: 14px;
}

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

.brand span {
    display: inline-block;
    font-size: 15px;
    white-space: nowrap;
}

.nav {
    display: flex;
    gap: 16px;
    align-items: center;
}

.nav a {
    font-size: 14px;
    color: var(--muted);
    padding: 8px 10px;
    border-radius: 12px;
    border: 1px solid transparent;
}

.nav a.active,
.nav a:hover {
    color: var(--text);
    border-color: var(--line);
    background: rgba(255, 255, 255, .04);
}

.lang-switch {
    display: flex;
    gap: 6px;
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 4px;
    background: rgba(255, 255, 255, .03);
}

.lang-switch a {
    font-size: 12px;
    padding: 7px 10px;
    border-radius: 999px;
    color: var(--muted);
}

.lang-switch a.active {
    color: var(--text);
    background: linear-gradient(180deg, rgba(255, 43, 43, .28), rgba(255, 43, 43, .14));
    border: 1px solid rgba(255, 43, 43, .35);
}

.hero {
    margin: 22px 0 14px;
    padding: 22px;
    border-radius: var(--radius);
    background:
        radial-gradient(600px 240px at 10% 0%, rgba(255, 43, 43, .20), transparent 55%),
        linear-gradient(180deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .03));
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}

.hero h1 {
    margin: 0 0 8px;
    font-size: clamp(24px, 3vw, 38px);
    letter-spacing: -.6px;
}

.hero p {
    margin: 0;
    color: var(--muted);
    line-height: 1.6;
    font-size: 15px;
    max-width: 78ch;
}

.cta-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 14px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 14px;
    border-radius: 14px;
    border: 1px solid transparent;
    font-weight: 800;
    letter-spacing: .2px;
    min-width: 140px;
    transition: transform .12s ease, box-shadow .12s ease, opacity .12s ease;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn-primary {
    background: linear-gradient(180deg, rgba(255, 43, 43, .96), rgba(200, 16, 46, .92));
    border-color: rgba(255, 43, 43, .35);
    box-shadow: 0 14px 30px rgba(255, 43, 43, .14);
}

.btn-secondary {
    background: rgba(255, 255, 255, .05);
    border-color: rgba(255, 43, 43, .38);
}

.btn-ghost {
    background: transparent;
    border-color: var(--line);
    color: var(--muted);
}

.grid {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 14px;
    margin: 14px 0 26px;
}

@media (max-width: 920px) {
    .grid {
        grid-template-columns: 1fr
    }

    .nav {
        display: none
    }
}

.card {
    border-radius: var(--radius);
    border: 1px solid var(--line);
    background: linear-gradient(180deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .03));
    box-shadow: 0 10px 26px rgba(0, 0, 0, .45);
    padding: 18px;
}

.card h2 {
    margin: 0 0 10px;
    font-size: 18px;
}

.card p,
.card li {
    color: var(--muted);
    line-height: 1.7;
    font-size: 15px;
}

.card ul {
    margin: 10px 0 0;
    padding-left: 18px;
}

.kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: rgba(255, 255, 255, .85);
    border: 1px solid rgba(255, 43, 43, .35);
    background: rgba(255, 43, 43, .10);
    border-radius: 999px;
    padding: 6px 10px;
    margin-bottom: 10px;
}

.hr {
    height: 1px;
    background: var(--line);
    margin: 18px 0;
}

.footer {
    margin-top: 26px;
    border-top: 1px solid var(--line);
    background: rgba(0, 0, 0, .18);
}

.footer-inner {
    padding: 18px 0;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.fineprint {
    margin: 0;
    font-size: 12px;
    color: rgba(255, 255, 255, .65);
    line-height: 1.55;
    max-width: 80ch;
}

.sep {
    opacity: .45;
    padding: 0 8px
}

/* =========================
   Sticky CTA (global)
   ========================= */
.sticky-cta{
  position:fixed;
  right:18px;
  bottom:18px;
  z-index:60;
  width:min(420px, calc(100vw - 24px));
  display:flex;
  align-items:center;
  gap:12px;
  padding:12px 12px 12px 14px;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.14);
  background: linear-gradient(180deg, rgba(0,0,0,.62), rgba(0,0,0,.42));
  backdrop-filter: blur(12px) saturate(140%);
  box-shadow: 0 18px 60px rgba(0,0,0,.55);
  transform: translateY(18px);
  opacity:0;
  pointer-events:none;
}

.sticky-cta.is-visible{
  transform: translateY(0);
  opacity:1;
  pointer-events:auto;
}

.sticky-cta__copy{flex:1; min-width: 160px;}
.sticky-cta__title{font-weight:900; letter-spacing:.2px; font-size:14px; margin-bottom:2px;}
.sticky-cta__sub{font-size:12px; color: rgba(255,255,255,.72); line-height:1.35;}

.sticky-cta__actions{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  justify-content:flex-end;
}

.sticky-cta__actions .btn{
  min-width: 110px;
  padding: 10px 12px;
  border-radius: 14px;
}

.sticky-cta__close{
  width:30px;
  height:30px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.85);
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  flex:0 0 auto;
}

.sticky-cta__close:hover{opacity:.92;}

@media (max-width: 520px){
  .sticky-cta{right:12px; left:12px; width:auto; bottom:12px;}
  .sticky-cta__actions{justify-content:flex-start;}
}


/* =========================
   Sticky Bottom Bar (global)
   ========================= */
.stickybar{
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 80;
  pointer-events: none;
  opacity: 0;
  transform: translateY(14px);
}

.stickybar.is-visible{
  pointer-events: auto;
  opacity: 1;
  transform: translateY(0);
  transition: opacity .22s ease, transform .22s ease;
}

.stickybar__inner{
  width: min(1100px, 100%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 12px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.14);
  background: linear-gradient(180deg, rgba(0,0,0,.72), rgba(0,0,0,.48));
  backdrop-filter: blur(10px) saturate(140%);
  box-shadow: 0 18px 70px rgba(0,0,0,.55);
}

.stickybar__brand{flex: 0 0 auto;}
.stickybar__logo{
  width: 38px;
  height: 38px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  font-size: 16px;
}

.stickybar__copy{flex: 1 1 auto; min-width: 150px;}
.stickybar__title{
  font-weight: 900;
  letter-spacing: .2px;
  font-size: 14px;
  margin-bottom: 2px;
}
.stickybar__sub{
  font-size: 12px;
  color: rgba(255,255,255,.72);
  line-height: 1.35;
}
.stickybar__sep{opacity: .5; padding: 0 8px;}
.stickybar__link{color: rgba(255,255,255,.86); text-decoration: underline; text-underline-offset: 2px;}

.stickybar__actions{
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
}

.stickybar__actions .btn{
  min-width: 108px;
  padding: 10px 12px;
  border-radius: 14px;
}

.stickybar__close{
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.85);
  display: grid;
  place-items: center;
  cursor: pointer;
}

.stickybar__close:hover{opacity: .92;}

@media (max-width: 640px){
  .stickybar__inner{
    align-items: flex-start;
    flex-wrap: wrap;
  }
  .stickybar__actions{
    width: 100%;
    justify-content: flex-start;
  }
  .stickybar__actions .btn{min-width: 0; flex: 1 1 auto;}
}
