
:root{
  /* --bg: #0b0b0c; */
  --ink: #0d0d0e;
  --paper: #ffffff;
  --sand: #f2ebe3;
  --soft: #f6f3f1;

  --crimson: #d61f2c;
  --crimson-2: #a40f1a;
  --maroon: #2a0608;

  /* --muted: rgba(255,255,255,.74);
  --muted-2: rgba(255,255,255,.58); */

  --line: rgba(0,0,0,.10);
  --line2: rgba(255,255,255,.12);

  --shadow: 0 18px 45px rgba(0,0,0,.22);
  --shadow2: 0 12px 30px rgba(0,0,0,.12);

  --radius: 18px;
  --radius2: 26px;

  --max: 1100px;
  --font: "Manrope", system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;

}

/* *{ box-sizing:border-box; } */
html, body{ height:100%; }
header{
  margin:0;
  font-family:var(--font);
  color:var(--ink);
  background: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

.container{
  width:min(var(--max), calc(100% - 48px));
  margin-inline:auto;
}

a{ color: inherit; text-decoration:none; }
code{ font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; }

/* Topbar */
.topbar{
  background: #0a0a0b;
  color: rgba(255,255,255,.88);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.topbar__inner{
  display:flex;
  align-items:center;
  gap:12px;
  padding: 10px 0;
  font-size: 13px;
}
.topbar__badge{
  background: rgba(214,31,44,.18);
  color: #fff;
  border: 1px solid rgba(214,31,44,.35);
  border-radius: 999px;
  padding: 3px 10px;
  font-weight: 700;
  letter-spacing: .02em;
}
.topbar__link{
  margin-left:auto;
  color: rgba(255,255,255,.90);
  border-bottom: 1px solid rgba(255,255,255,.35);
  padding-bottom: 1px;
}
.topbar__link:hover{ color:#fff; border-bottom-color:#fff; }

/* Header */
.header{
  position: sticky;
  top: 0;
  z-index: 50;
  background:#0a0a0b;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.header--solid{
  background: rgba(11,11,12,.88);
  border-bottom: 1px solid rgba(255,255,255,.10);
}
.header__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 16px 0;
  gap: 14px;
}

/* Brand */

/* Brand */
.brand{
  display:flex;
  align-items:center;
  gap: 10px;
  color:#fff;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.brand__mark{
  width: 28px;
  height: 28px;
  border-radius: 9px;
  background:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,.9), rgba(255,255,255,.0) 55%),
    linear-gradient(135deg, var(--crimson), var(--crimson-2));
  box-shadow: 0 10px 30px rgba(214,31,44,.35);
}
.brand__name{
  font-size: 15px;
}
.brand__img{
  display:block;          /* removes inline-img baseline gap */
  height: 38px;           /* logo size in navbar */
  width: auto;
  max-width: 180px;       /* prevents huge logos */
  object-fit: contain;

  /* subtle premium depth */
  filter: drop-shadow(0 10px 18px rgba(16, 17, 20, 0.10));
  transform: translateZ(0); /* keeps it sharp */
  transition: transform 180ms ease, filter 180ms ease;
}

/* .brand__img:hover{
  transform: translateY(-1px);
  filter: drop-shadow(0 14px 24px rgba(16, 17, 20, 0.14));
} */

@media (max-width: 480px){
  .brand__img{
    height: 32px;
    max-width: 150px;
  }
}

/* Nav */
.nav{
  display:flex;
  gap: 20px;
  align-items:center;
}
.nav__link{
  color: rgba(255,255,255,.84);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .01em;
  padding: 8px 0;
}
.nav__link:hover{ color:#fff; }

/* Buttons */
.header__actions{
  display:flex;
  align-items:center;
  gap: 30px;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 700;
  font-size: 14px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .12s ease, background .12s ease, border-color .12s ease, color .12s ease;
  user-select:none;
  white-space: nowrap;
}
.btn--lg{
  padding: 13px 18px;
  font-size: 15px;
}
.btn--full{ width:100%; }

.btn--primary{
  color:#fff;
  background: linear-gradient(135deg, var(--crimson), var(--crimson-2));
  box-shadow: 0 14px 30px rgba(214,31,44,.25);
}
.btn--primary:hover{ transform: translateY(-1px); }
.btn--primary:active{ transform: translateY(0px) scale(.99); }

.btn--ghost{
  color: rgba(255,255,255,.90);
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.14);
}
.btn--ghost:hover{ background: rgba(255,255,255,.12); }

.iconBtn{
  display:none;
  align-items:center;
  justify-content:center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  color:#fff;
  cursor:pointer;
}

/* Mobile menu */
.mobileMenu{
  background: rgba(11,11,12,.96);
  border-bottom: 1px solid rgba(255,255,255,.10);
}
.mobileMenu__inner{
  padding: 18px 0 22px;
  display:grid;
  gap: 10px;
}
.mobileMenu__link{
  color: rgba(255,255,255,.90);
  font-weight: 700;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,.10);
}
.mobileMenu__cta{
  display:flex;
  gap: 10px;
  margin-top: 10px;
}

