:root {
  --bg: #0b1020;
  --panel: #121a33;

  /* New theme: rose + indigo */
  --brand: #fb7185;
  /* rose */
  --brand2: #6366f1;
  /* indigo */

  --text: #ffffff;
  --muted: #cbd5e1;
  --stroke: rgba(255, 255, 255, .08);
  --shadow: 0 16px 55px rgba(0, 0, 0, .45);
}

* {
  box-sizing: border-box
}

body {
  margin: 0;
  font-family: "Poppins", system-ui, -apple-system, Segoe UI, Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(900px 420px at 15% 10%, rgba(251, 113, 133, .18), transparent 60%),
    radial-gradient(850px 420px at 90% 15%, rgba(99, 102, 241, .16), transparent 60%),
    linear-gradient(180deg, rgba(0, 0, 0, .20), rgba(0, 0, 0, .62)),
    var(--bg);
  min-height: 100dvh;
}

.site-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 22px 16px;
  background: rgba(18, 26, 51, .85);
  border-bottom: 1px solid var(--stroke);
  backdrop-filter: blur(8px);
}

.text-logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 900;
  letter-spacing: .4px;
  user-select: none;
}

.text-logo .mark {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: linear-gradient(90deg, var(--brand), var(--brand2));
  color: #0b1020;
  box-shadow: 0 10px 26px rgba(251, 113, 133, .18);
}

.text-logo .name {
  font-size: 28px;
  text-shadow: 1px 2px rgba(0, 0, 0, .55);
}

.subtitle {
  margin-top: 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, .72);
  text-align: center;
}

article {
  max-width: 980px;
  margin: 32px auto;
  padding: 0 16px;
}

h1 {
  margin: 0 0 12px;
  text-align: center;
  letter-spacing: .4px;
  text-shadow: 1px 2px rgba(0, 0, 0, .55);
}

p,
ul {
  color: var(--muted);
  line-height: 1.75
}

ul {
  padding-left: 18px
}

.center {
  text-align: center;
  margin: 18px 0
}

img {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow);
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 260px;
  height: 56px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 900;
  color: #0b1020;
  background: linear-gradient(90deg, var(--brand), var(--brand2));
  box-shadow: 0 14px 35px rgba(99, 102, 241, .14);
  transition: transform .18s ease, filter .18s ease;
}

.cta:hover {
  transform: translateY(-2px);
  filter: saturate(1.05)
}

.cta.small {
  width: 210px;
  height: 50px
}

.panel {
  margin: 22px 0;
  padding: 16px;
  background: rgba(18, 26, 51, .72);
  border: 1px solid var(--stroke);
  border-radius: 16px;
  box-shadow: 0 14px 40px rgba(0, 0, 0, .25);
}

.section {
  margin-top: 24px
}

.muted {
  color: rgba(203, 213, 225, .86)
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px
}

.chip {
  padding: 10px 12px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 900;
  color: #fff;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .10);
}

.chip:hover {
  background: rgba(255, 255, 255, .10)
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 12px;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 12px;
}

.two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 12px;
}

.card,
.cat {
  background: rgba(18, 26, 51, .72);
  border: 1px solid var(--stroke);
  border-radius: 16px;
  padding: 14px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, .22);
}

.card h3,
.cat h3 {
  margin: 0 0 6px
}

.card p {
  margin: 0
}

.link {
  display: inline-block;
  margin-top: 10px;
  font-weight: 900;
  color: #ffd0da;
  text-decoration: none
}

.callout {
  margin-top: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .10);
}

.table-wrapper {
  overflow-x: auto;
  margin: 18px 0
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px
}

th,
td {
  padding: 12px 14px;
  border: 1px solid #2a3455;
  text-align: left
}

th {
  background: rgba(99, 102, 241, .14)
}

tbody tr:nth-child(odd) {
  background: rgba(255, 255, 255, .03)
}

.quote {
  margin: 18px 0 0;
  padding: 16px;
  border-left: 5px solid var(--brand);
  background: rgba(18, 26, 51, .72);
  border-radius: 16px;
  box-shadow: 0 10px 26px rgba(0, 0, 0, .25);
}

.faq {
  margin-top: 10px;
  padding: 12px 14px;
  background: rgba(18, 26, 51, .72);
  border: 1px solid var(--stroke);
  border-radius: 14px;
}

.faq summary {
  cursor: pointer;
  font-weight: 900
}

.footer {
  text-align: center;
  padding: 18px;
  color: rgba(255, 255, 255, .68);
  border-top: 1px solid var(--stroke);
  background: rgba(0, 0, 0, .12);
  margin-top: 22px;
}

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

  .grid-2 {
    grid-template-columns: 1fr
  }

  .two {
    grid-template-columns: 1fr
  }

  table {
    min-width: 560px
  }

  .callout {
    flex-direction: column;
    align-items: flex-start
  }
}

@media (max-width:600px) {
  .cta {
    width: 100%;
    max-width: 360px
  }

  table,
  thead,
  tbody,
  th,
  td,
  tr {
    display: block
  }

  thead tr {
    position: absolute;
    top: -9999px;
    left: -9999px
  }

  tr {
    margin-bottom: 14px
  }

  td {
    border: none;
    position: relative;
    padding-left: 50%
  }

  td:before {
    content: attr(data-label);
    position: absolute;
    left: 10px;
    top: 10px;
    font-weight: 900;
    font-size: .65rem;
    text-transform: uppercase;
    color: #fff;
  }
}

/* === Better Logo === */
.logo-wrap {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  letter-spacing: .3px;
  user-select: none;
}

.logo-badge {
  width: 50px;
  height: 50px;
  border-radius: 18px;
  display: grid;
  place-items: center;

  /* glass frame */
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .14);
  box-shadow: 0 14px 40px rgba(0, 0, 0, .35);
  position: relative;
  overflow: hidden;
}

/* gradient “spark” */
.logo-badge::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: conic-gradient(from 180deg, var(--brand), var(--brand2), var(--brand));
  opacity: .9;
  filter: blur(10px);
}

/* inner plate */
.logo-badge-inner {
  position: relative;
  z-index: 1;
  width: 42px;
  height: 42px;
  border-radius: 16px;
  display: grid;
  place-items: center;

  background: linear-gradient(90deg, var(--brand), var(--brand2));
  color: #0b1020;
  font-size: 16px;
  box-shadow: 0 10px 26px rgba(0, 0, 0, .25);
}

/* Name */
.logo-name {
  font-size: 30px;
  color: #fff;
  text-shadow: 1px 2px rgba(0, 0, 0, .55);
  line-height: 1;
}

.logo-accent {
  margin-left: 2px;
  background: linear-gradient(90deg, var(--brand), var(--brand2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Mobile tweaks */
@media (max-width:600px) {
  .logo-badge {
    width: 46px;
    height: 46px;
    border-radius: 16px
  }

  .logo-badge-inner {
    width: 38px;
    height: 38px;
    border-radius: 14px;
    font-size: 15px
  }

  .logo-name {
    font-size: 26px
  }
}