:root {
  --bg: #0b0b14;
  --panel: #121226;

  /* Purple + Orange cinema theme */
  --brand: #8b5cf6;
  --brand2: #fb923c;

  --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(139, 92, 246, .20), transparent 60%),
    radial-gradient(800px 420px at 90% 15%, rgba(251, 146, 60, .16), transparent 60%),
    linear-gradient(180deg, rgba(0, 0, 0, .25), rgba(0, 0, 0, .65)),
    var(--bg);
  min-height: 100dvh;
}

/* Header */
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px 18px;
  background: rgba(18, 18, 38, .82);
  border-bottom: 1px solid var(--stroke);
  backdrop-filter: blur(10px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px
}

.brand-badge {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(90deg, var(--brand), var(--brand2));
  color: #0b0b14;
  font-weight: 900;
  box-shadow: 0 10px 26px rgba(139, 92, 246, .18);
}

.brand-name {
  font-weight: 900;
  font-size: 18px;
  letter-spacing: .2px
}

.brand-tag {
  font-size: 12px;
  color: rgba(255, 255, 255, .72)
}

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

.top-nav a {
  color: rgba(255, 255, 255, .82);
  text-decoration: none;
  font-weight: 800;
  font-size: 12.5px;
  padding: 8px 10px;
  border-radius: 12px;
}

.top-nav a:hover {
  background: rgba(255, 255, 255, .06)
}

.container {
  max-width: 980px;
  margin: 0 auto;
  padding: 34px 18px 22px;
}

h1 {
  margin: 0 0 10px;
  text-shadow: 1px 2px rgba(0, 0, 0, .55);
  letter-spacing: .3px;
}

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

ul {
  padding-left: 18px
}

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

.hero {
  width: 100%;
  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: #0b0b14;
  background: linear-gradient(90deg, var(--brand), var(--brand2));
  box-shadow: 0 14px 35px rgba(251, 146, 60, .14);
  transition: transform .18s ease, filter .18s ease;
}

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

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

.panel {
  margin: 22px 0;
  padding: 16px;
  background: rgba(18, 18, 38, .70);
  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, 18, 38, .70);
  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: #ffd4b4;
  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 #2a2a48;
  text-align: left
}

th {
  background: rgba(139, 92, 246, .14)
}

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

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

.faq {
  margin-top: 10px;
  padding: 12px 14px;
  background: rgba(18, 18, 38, .70);
  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) {
  .top-nav {
    display: none
  }

  .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
  }

  /* Responsive table labels */
  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;
  }
}

/* Header – simple & close to original */
.site-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 22px 16px;
  background: rgba(18, 18, 38, .85);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  backdrop-filter: blur(6px);
}

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

.text-logo .mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  font-size: 18px;
  color: #0b0b14;

  background: linear-gradient(90deg, var(--brand), var(--brand2));
  box-shadow: 0 10px 26px rgba(139, 92, 246, .25);
}

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

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

/* Mobile tweaks */
@media (max-width:600px) {
  .text-logo .mark {
    width: 40px;
    height: 40px;
    font-size: 16px
  }

  .text-logo .name {
    font-size: 24px
  }

  .subtitle {
    font-size: 12px
  }
}
