@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');
/* Entire Website */
body,
button,
input,
select,
textarea,
p,
span,
div,
li,
a,
h1,
h2,
h3,
h4,
h5,
h6{
    font-family: 'Poppins', sans-serif !important;
}
div[data-column="end"] {
    display: none !important;
}
#header {
  
    display: none;
}
#header [data-column-set="2"]>div {
    display: block;
    grid-template-columns: auto auto;
}
#header [data-column=start], #header [data-column=end] {
    min-width: 0;
    justify-content: center;
}

:root {
  --ink: #0b0b1e;
  --panel: #14142e;
  --panel-2: #1b1b3a;
  --line: rgba(255, 255, 255, 0.08);
  --text: #f2f1fa;
  --text-dim: #9c9ac0;
  --text-faint: #6e6c93;
  --core-accent: #ff5e7e;
  --adv-accent: #22d3ee;
}
.app {
    max-width: 1200px;
    margin: 0 auto;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
[data-footer*="type-1"] .ct-footer [data-row*="bottom"] {
    --theme-border-top: none;
    --theme-border-bottom: none;
    background-color: antiquewhite;
}
h1 {
  
    text-align: center;
    /* margin-bottom: 21px; */
}
body {
    background: #faebd74f;
  color: var(--text);
  font-family: "Inter", sans-serif;
/*   padding: 32px 24px 64px; */
}
.app {
  max-width: 1180px;
  margin: 0 auto;
}

/* header */
.topbar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 24px;
  margin-bottom: 28px;
  border-bottom: 1px solid var(--line);
}
.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: linear-gradient(135deg, #ff5e7e, #7c5cff);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  color: #fff;
}
.brand-text .name {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 17px;
}
.brand-text .sub {
  font-size: 12px;
  color: var(--text-faint);
}

h1 {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 32px;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}
.hero-sub {
  color: var(--text-dim);
  font-size: 15px;
  max-width: 560px;
  margin-bottom: 28px;
}

/* radios: visually hidden but focusable */
input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  width: 1px;
  height: 1px;
}

/* tab toggle */
.toggle {
  position: relative;
  display: inline-flex;
  gap: 2px;
  
  border: 1px solid black;
  border-radius: 100px;
  padding: 4px;
/*   margin-bottom: 32px; */
}
.slider {
  position: absolute;
  top: 4px;
  left: 4px;
  width: 180px;
  height: calc(100% - 8px);
  border-radius: 100px;
  background: var(--core-accent);
  transition:
    transform 0.32s cubic-bezier(0.65, 0, 0.35, 1),
    background 0.32s ease;
  z-index: 0;
}
.app:has(#tab-advanced:checked) .slider {
  transform: translateX(182px);
  background: var(--adv-accent);
}
.tab-label {
  position: relative;
  z-index: 1;
  width: 180px;
  text-align: center;
  padding: 10px 0;
  border-radius: 100px;
  font-weight: 600;
  font-size: 17px;
  color:black;
  cursor: pointer;
  transition: color 0.25s ease;
	display: flex;
    align-items: center;
    justify-content: center;
	    margin-bottom: 0;

}
#tab-core:checked ~ .toggle label[for="tab-core"],
#tab-advanced:checked ~ .toggle label[for="tab-advanced"] {
  color: #0b0b1e;
}
input[type="radio"]:focus-visible + .tab-label {
  outline: 2px solid var(--text);
  outline-offset: 2px;
}

/* board */
.board {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 24px;
  align-items: start;
}
@media (max-width: 760px) {
  .board {
    grid-template-columns: 1fr;
  }
}
.card{
transition:.35s ease;
}

.card:hover{

transform:translateY(-8px);

box-shadow:
0 25px 45px rgb(0 0 0 / 20%);

border-color:#000;

}

.sidebar {

  border: 1px solid black;
/*   border-radius: 16px; */
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.side-item {
  display: none;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border-radius: 10px;
  border-left: 3px solid transparent;
  cursor: pointer;
  transition:
    background 0.18s ease,
    border-color 0.18s ease;
}
.side-core {
  display: flex;
}
.app:has(#tab-advanced:checked) .side-core {
  display: none;
}
.app:has(#tab-advanced:checked) .side-adv {
  display: flex;
}
input[type="radio"]:checked + .side-item {
  background: color-mix(in srgb, var(--accent) 12%, transparent);
  border-left-color: var(--accent);
}
input[type="radio"]:focus-visible + .side-item {
  outline: 2px solid var(--text);
  outline-offset: -2px;
}
.side-icon {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "JetBrains Mono", monospace;
  font-weight: 700;
  font-size: 12px;
  background: color-mix(in srgb, var(--accent) 18%, transparent);
  color: var(--accent);
}
.side-label {
  font-size: 17px;
  font-weight: 500;
  line-height: 1.3;
	color:black
}
.side-count {
  font-size: 14px;
  color: var(--text-faint);
  margin-top: 1px;
}

/* content panels */
.panel {
  display: none;
}
.app:has(#tab-core:checked):has(#core-tl:checked) .panel-tl {
  display: block;
}
.app:has(#tab-core:checked):has(#core-fq:checked) .panel-fq {
  display: block;
}
.app:has(#tab-core:checked):has(#core-em:checked) .panel-em {
  display: block;
}
.app:has(#tab-core:checked):has(#core-da:checked) .panel-da {
  display: block;
}
.app:has(#tab-core:checked):has(#core-fa:checked) .panel-fa {
  display: block;
}
.app:has(#tab-core:checked):has(#core-sr:checked) .panel-sr {
  display: block;
}
.app:has(#tab-core:checked):has(#core-gs:checked) .panel-gs {
  display: block;
}
.app:has(#tab-advanced:checked):has(#adv-ri:checked) .panel-ri {
  display: block;
}
.app:has(#tab-advanced:checked):has(#adv-in:checked) .panel-in {
  display: block;
}
.app:has(#tab-advanced:checked):has(#adv-ic:checked) .panel-ic {
  display: block;
}
.app:has(#tab-advanced:checked):has(#adv-ae:checked) .panel-ae {
  display: block;
}
.app:has(#tab-advanced:checked):has(#adv-su:checked) .panel-su {
  display: block;
}

.panel-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}
.panel-head h2 {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 22px;
}
.panel-head .total {
  font-size: 16px;
  color: black;
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.card {
   background: rgba(255,255,255,.75);
    backdrop-filter: blur(20px);
    border:1px solid black;
    box-shadow:
        0 15px 40px rgba(90,70,255,.08);
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
	    margin-bottom: 20px;
      flex-direction: row !important;

}
.badge {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  flex-shrink: 0;
  display: flex !important;
  align-items: center;
  justify-content: center;
  font-family: "JetBrains Mono", monospace;
  font-weight: 700;
  font-size: 13px;
  background: color-mix(in srgb, var(--accent) 16%, transparent);
  color: var(--accent);
}
.card-body {
  flex: 1;
  min-width: 0;
}
.card-body .t {
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 3px;
	color:black
}
.card-body .d {
  font-size: 16px;
  color: black;
  line-height: 1.55;
}
.card-right {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}
.pts {
  text-align: right;
}
.pts .n {
  font-family: "JetBrains Mono", monospace;
  font-weight: 700;
  font-size: 18px;
  color: var(--accent);
}
.pts .u {
  font-size: 11px;
  color: black;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.view-btn {
  border: none;
  padding: 9px 18px;
  border-radius: 9px;
  font-weight: 600;
  font-size: 13px;
  color: #fff;
  background: var(--accent);
  cursor: pointer;
}
.view-btn:hover {
/*   filter: brightness(1.08); */
}

a:hover {
    color: white;
}
@media (max-width: 560px) {
  .card {
    flex-wrap: wrap;
  }
  .card-right {
    width: 100%;
    justify-content: space-between;
    padding-top: 8px;
    border-top: 1px solid var(--line);
  }
}

.hero-section.is-width-constrained {
    display: none;
}
/* ==========================
   TOP BAR
========================== */

.top-bar{
    display:grid;
    grid-template-columns:1fr auto 1fr;
    align-items:center;
    gap:20px;
    width:100%;
    margin-bottom:40px;
}

.toggle{
    justify-self:center;
}

.logo{
    justify-self:end;
}

.logo img{
    height:60px;
    width:auto;
    display:block;
    object-fit:contain;
}

/* ==========================
   TABLET
========================== */

@media (max-width:992px){

    .top-bar{
        grid-template-columns:1fr auto;
    }

    .toggle{
        justify-self:start;
    }

    .logo{
        justify-self:end;
    }

    .logo img{
        height:50px;
    }

}

/* ==========================
   MOBILE
========================== */

@media (max-width:768px){

    .top-bar{

        display:flex;

        flex-direction:column;

        align-items:center;

        gap:18px;

    }

    .toggle{

        width:100%;

        max-width:350px;

        justify-self:center;

    }

    .logo{

        order:-1;   /* Remove this line if you want logo below */

    }

    .logo img{

        height:45px;

    }

}

/* ==========================
   SMALL MOBILE
========================== */

@media (max-width:480px){

    .toggle{

        width:100%;

        max-width:300px;

        transform:scale(.92);

    }

    .logo img{

        height:38px;

    }
	.slider {
  
    width: 120px !important;
	}

}
.top-bar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:40px;
}

.logo img{
    height:60px;          /* Adjust as needed */
    width:auto;
    display:block;
}
p:empty {
    display: none;
}
.sidebar > p:empty {
    display: none !important;
}

.sidebar > p {
    margin: 0;
    padding: 0;
}
a, a:link, a:visited {
    color: white !important;
}
p {
     margin: 0 0 0px !important; 
}
button:hover {
    background-color: #4f46e5 !important;
}