:root {
  --ui-scale: 0.75;
  --yellow: rgba(255, 207, 86, 0.83);
  --bg-black: #04040a;
  --bg-dark: #0b0b12;
  --text-primary: #e8f4ff;
  --text-muted: #94b8d9;
  --purple: #9333ea;
  --blue: #3b82f6;
  --cyan: #00d9ff;
  --netflix-gray: #a7a7b0;
  --green: #00e676;
  --red: #ff6b6b;
  --card-radius: 1.125rem;
  --glass: rgba(147, 51, 234, 0.03);
  --glass-border: rgba(147, 51, 234, 0.12);
  --row-height: 4rem;
  --gradient-main: linear-gradient(135deg, #9333ea 0%, #3b82f6 50%, #00d9ff 100%);
  font-family: Inter, system-ui, 'Segoe UI', Roboto, Arial, sans-serif;
}
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(8, 8, 14, 0.85);
  backdrop-filter: blur(30px);
  border-bottom: 1px solid rgba(147, 51, 234, 0.25);
  box-shadow: 0 4px 30px rgba(147, 51, 234, 0.15);
  max-height: 77px;
  height: 77px;
  overflow: visible;
}
.nav-container {
  max-width: 1500px;
  margin: 0 auto;
  padding: 1.125rem 2.34375rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 77px;
  padding: 0 37.5px;
  box-sizing: border-box;
  overflow: hidden;
}
.logo {
  height: 2.53125rem;
  width: auto;
  filter: drop-shadow(0 0 35px rgba(147, 51, 234, 0.8));
  transition: all 0.3s ease;
  max-height: 40.5px;
  height: auto;
}
.logo:hover {
  filter: drop-shadow(0 0 45px rgba(0, 217, 255, 1));
  transform: scale(1.05);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.625rem;
  list-style: none;
}
.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.03125rem;
  transition: all 0.3s ease;
  position: relative;
  letter-spacing: -0.01em;
  padding: 0.28125rem 0.5625rem;
}
.nav-links a::before {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -0.234375rem;
  width: 0;
  height: 0.140625rem;
  background: var(--gradient-main);
  transform: translateX(-50%);
  transition: width 0.3s ease;
  border-radius: 2px;
  box-shadow: 0 0 15px rgba(147, 51, 234, 0.6);
}
.nav-links a:hover {
  color: var(--text-primary);
  text-shadow: 0 0 20px rgba(147, 51, 234, 0.8);
}
.nav-links a:hover::before {
  width: 100%;
}
.user-icon {
  width: 2.53125rem;
  height: 2.53125rem;
  border-radius: 50%;
  background: var(--glass);
  border: 2px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}
.user-icon::before {
  content: '';
  position: absolute;
  inset: -100%;
  background: conic-gradient(from 0deg, transparent, var(--purple) 90deg, var(--blue) 180deg, var(--cyan) 270deg, transparent);
  animation: icon-spin 6s linear infinite;
  opacity: 0;
  transition: opacity 0.4s ease;
}
@keyframes icon-spin {
  to {
    transform: rotate(360deg);
  }
}
.user-icon:hover::before {
  opacity: 1;
}
.user-icon:hover {
  transform: scale(1.15);
  border-color: var(--cyan);
  box-shadow: 0 0 35px rgba(0, 217, 255, 0.7);
}
.user-icon svg {
  width: 1.3125rem;
  height: 1.3125rem;
  fill: var(--text-primary);
  position: relative;
  z-index: 1;
}
html {
  font-size: calc(100% * var(--ui-scale));
}
html,
body {
  height: 100%;
  margin: 0;
  background: var(--bg-black);
  color: var(--text-primary);
  position: relative;
}
#pricing-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.3;
}
.pricing-orbs {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
.pricing-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(2.5rem);
  animation: orb-float 14s ease-in-out infinite;
}
.pricing-orb-1 {
  width: 31.25rem;
  height: 31.25rem;
  background: radial-gradient(circle, rgba(147, 51, 234, 0.14), transparent);
  top: -9.375rem;
  left: -6.25rem;
}
.pricing-orb-2 {
  width: 37.5rem;
  height: 37.5rem;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.12), transparent);
  bottom: -12.5rem;
  right: -9.375rem;
  animation-delay: 4s;
}
.pricing-orb-3 {
  width: 28.125rem;
  height: 28.125rem;
  background: radial-gradient(circle, rgba(0, 217, 255, 0.12), transparent);
  top: 45%;
  right: -6.25rem;
  animation-delay: 8s;
}
@keyframes orb-float {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(3.125rem, -3.125rem) scale(1.12);
  }
}
.grid-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(rgba(147, 51, 234, 0.03) 0.0625rem, transparent 0.0625rem),
    linear-gradient(90deg, rgba(147, 51, 234, 0.03) 0.0625rem, transparent 0.0625rem);
  background-size: 3.75rem 3.75rem;
  z-index: 0;
  pointer-events: none;
}
.wrap {
  max-width: 100rem;
  margin: 1.875rem auto;
  padding: 6.5625rem 2.5rem 2.25rem 2.5rem;
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  animation: fade-in-up 0.8s ease-out;
}
@keyframes fade-in-up {
  from {
    opacity: 0;
    transform: translateY(1.875rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
h1 {
  font-size: 4rem;
  margin: 0 0 0 0;
  font-weight: 900;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: center;
  letter-spacing: -0.04em;
  filter: drop-shadow(0 0 2.1875rem rgba(147, 51, 234, 0.4));
  animation: title-glow 4s ease-in-out infinite;
  white-space: nowrap;
}
@keyframes title-glow {
  0%,
  100% {
    filter: drop-shadow(0 0 2.1875rem rgba(147, 51, 234, 0.4));
  }
  50% {
    filter: drop-shadow(0 0 3.125rem rgba(0, 217, 255, 0.6));
  }
}
.subtitle {
  text-align: center;
  font-size: 1.375rem;
  color: var(--text-muted);
  margin-bottom: 0.625rem;
  font-weight: 600;
}
.compare {
  display: grid;
  grid-template-columns: 20rem 1fr 1fr 1.5fr;
  column-gap: 2rem;
  row-gap: 0;
  align-items: stretch;
  position: relative;
  background-color: rgba(6, 8, 12, 0.99);
  border: 0.0625rem solid rgba(255, 255, 255, 0.02);
  border-radius: var(--card-radius);
  padding: 2rem 2.25rem;
  box-shadow: 0 0.375rem 1.125rem rgba(0, 0, 0, 0.72);
  animation: fade-in-up 1s ease-out 0.2s both;
  width: 100%;
  max-width: 87.5rem;
  margin: 0 auto;
}
.hdr {
  position: relative;
  z-index: 2;
  background: transparent;
  border-radius: 0.5rem;
  min-height: 6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: none;
  border: 0.0625rem solid rgba(255, 255, 255, 0.01);
  margin-bottom: 0;
  transition: all 0.18s ease;
}
.hdr:hover {
  transform: translateY(-0.125rem);
  box-shadow: 0 0.375rem 1rem rgba(147, 51, 234, 0.08);
}
.hdr > div {
  position: relative;
  z-index: 1;
}
.brand {
  grid-column: 2 / span 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem;
  font-weight: 900;
  font-size: 1.625rem;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  min-width: 12.5rem;
  min-inline-size: 12.5rem;
}
.brand img.chillstreams-logo {
  width: 21rem;
  max-width: 100%;
  min-width: 12.5rem;
  height: auto;
  filter: none;
}
.netflix-brand {
  grid-column: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem;
  font-weight: 900;
  font-size: 1.625rem;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
}
.hdr.features {
  grid-column: 1;
  color: var(--text-muted);
}
.hdr.basic {
  grid-column: 2;
  background: linear-gradient(135deg, rgba(147, 51, 234, 0.12), transparent);
  margin-left: -3px;
}
.hdr.basic > div {
  margin-left: 8.75rem;
}
@media (max-width: 87.5rem) {
  .hdr.basic > div {
    margin-left: 6.875rem;
  }
}
@media (max-width: 75rem) {
  .hdr.basic > div {
    margin-left: 1.45rem;
  }
}
.hdr.pro {
  grid-column: 3;
  background: linear-gradient(135deg, rgba(0, 217, 255, 0.12), transparent);
  margin-left: -3px;
}
.hdr.netflix {
  grid-column: 4;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  gap: 0.625rem;
  margin-left: -3px;
}
.hdr.basic::before,
.hdr.pro::before,
.hdr.netflix::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0.3125rem;
  z-index: 0;
  border-top-left-radius: var(--card-radius);
  border-bottom-left-radius: var(--card-radius);
  box-shadow: 0 0 1.5625rem currentColor;
  animation: glow-pulse 3s ease-in-out infinite;
}
@keyframes glow-pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.6;
  }
}
.hdr.basic::before {
  background: var(--purple);
  color: var(--purple);
  box-shadow: none;
  opacity: 0.9;
}
.hdr.pro::before {
  background: var(--cyan);
  color: var(--cyan);
  box-shadow: none;
  opacity: 0.9;
}
.hdr.netflix::before {
  background: var(--netflix-gray);
  color: var(--netflix-gray);
  box-shadow: none;
  opacity: 0.9;
}
.col-basic-cell {
  border-left: 0.0625rem solid var(--purple);
}
.col-pro-cell {
  border-left: 0.0625rem solid var(--cyan);
}
.col-netflix-cell {
  border-left: 0.0625rem solid var(--netflix-gray);
}
.grade-c {
  color: var(--yellow);
  font-weight: 800;
  font-size: 1.375rem;
}
.grade-a {
  color: var(--green);
  font-weight: 800;
  font-size: 1.375rem;
}
.compare {
  font-size: 1.0625rem;
}
.plan-title {
  font-weight: 900;
  font-size: 1.75rem;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}
.hdr.netflix .plan-title {
  display: none;
}
.plan-desc {
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 700;
}
.price {
  font-weight: 900;
  font-size: 2.125rem;
}
.price .muted-small {
  font-size: 1.0625rem;
  color: var(--text-muted);
}
.price.purple {
  color: var(--purple);
  text-shadow: none;
  filter: none;
}
.col-basic-cell .price.purp {
  color: #b774ec !important;
}
.price.purp {
  color: #b774ec !important;
}
.price.cyan {
  color: var(--cyan);
  text-shadow: none;
  filter: none;
}
.price.gray {
  color: #fff;
}
.price.netflix {
  color: var(--red);
  font-weight: 800;
}
.nf-tiers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  gap: 0.625rem;
  border-radius: 0.875rem;
  overflow: hidden;
  margin-top: 0.625rem;
  margin-bottom: 0.625rem;
}
.nf-tier {
  position: relative;
  padding: 1rem 1.125rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: transparent;
  border-radius: 0.625rem;
  border: 0.0625rem solid rgba(255, 255, 255, 0.06);
  z-index: 1;
  transition: all 0.3s ease;
}
.nf-tier:hover {
  background: rgba(255, 255, 255, 0.01);
  border-color: rgba(255, 255, 255, 0.06);
}
.row {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  padding: 0 2.25rem;
  border-top: 0.0625rem solid rgba(255, 255, 255, 0.03);
  min-height: 4.25rem;
  background: transparent;
  transition: all 0.16s ease;
  font-size: 1.25rem;
  line-height: 1.3;
}
.row:hover {
  background: rgba(147, 51, 234, 0.01);
  border-left: 0.0625rem solid rgba(147, 51, 234, 0.3);
  padding-left: 2.25rem;
}
.row.no-shift:hover {
  padding-left: 2.25rem;
  background: rgba(147, 51, 234, 0.01);
  border-left: 0.0625rem solid rgba(147, 51, 234, 0.3);
}
.row.no-shift .btn-select {
  transition:
    transform 0.22s cubic-bezier(0.2, 0.9, 0.2, 1),
    box-shadow 0.22s ease;
  transform-origin: center;
}
.row.no-shift .btn-select:hover,
.row.no-shift:hover .btn-select {
  transform: translateY(-0.25rem) scale(1.06);
  box-shadow: 0 1.25rem 3rem rgba(0, 0, 0, 0.55);
}
.row.label {
  font-weight: 600;
  color: var(--text-primary);
  padding-left: 1.75rem;
  font-size: 1.25rem;
}
.row.center {
  justify-content: center;
}
.muted-small {
  font-size: 0.9375rem;
  color: var(--text-muted);
}
.muted-medium {
  font-size: 1.1875rem;
  color: var(--text-muted);
  font-weight: 600;
}
.muted-medium.grade-a {
  color: var(--green);
  font-weight: 700;
}
.muted-medium.grade-c {
  color: var(--yellow);
  font-weight: 700;
}
.sometimes {
  color: var(--yellow);
  font-weight: 600;
}
.ok {
  color: var(--green);
  font-weight: 900;
  font-size: 1.25rem;
  line-height: 1;
}
.no {
  color: var(--red);
  font-weight: 900;
  font-size: 1.5rem;
  line-height: 1;
}
.no-light {
  font-weight: 600;
  font-size: 1.0625rem;
  line-height: 1;
}
.nf-cell {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  gap: 0.625rem;
}
.nf-cell > div {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 1rem;
  background: transparent;
  border-radius: 0.625rem;
  transition: all 0.16s ease;
  font-size: 1.1875rem;
}
.nf-cell > div:hover {
  background: rgba(255, 255, 255, 0.01);
}
.rt-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 0.5rem;
  vertical-align: middle;
}
.rt-icon .rt-svg {
  width: 1.25rem;
  height: 1.25rem;
  display: block;
}
.disclaimer {
  grid-column: 1/-1;
  padding: 1.5rem 1.75rem;
  margin-top: 1.75rem;
  background: rgba(147, 51, 234, 0.06);
  border-radius: var(--card-radius);
  border: 0.0625rem solid var(--glass-border);
  border-left: 0.0625rem solid var(--purple);
  color: var(--text-muted);
  font-size: 0.9375rem;
  line-height: 1.7;
  z-index: 2;
}
.chillpermonthshort{
  display:none;
}
.brand img.chillstreams-logo {
  width: 21rem;
  max-width: 100%;
  min-width: 15rem;
  height: auto;
  display: block;
  filter: none;
  transition: all 0.18s ease;
}
.brand img.chillstreams-logo:hover {
  filter: drop-shadow(0 0.375rem 1.125rem rgba(0, 0, 0, 0.6));
}
.netflix-brand img.netflix-logo {
  width: 12rem;
  max-width: 100%;
  height: auto;
  display: block;
}
.nf-label {
  font-size: 1.375rem;
  font-weight: 900;
  color: var(--text-primary);
  line-height: 1.15;
  text-align: center;
}
.btn-select {
  position: relative;
  display: inline-block;
  padding: 1rem 2.5rem;
  border-radius: 0.75rem;
  font-family:
    system-ui,
    -apple-system,
    'Segoe UI',
    Roboto,
    Arial,
    sans-serif;
  font-weight: 600;
  font-size: 0.9375rem;
  letter-spacing: 0.5px;
  border: 0;
  cursor: pointer;
  color: #fff;
  box-shadow: 0 0.5rem 1.125rem rgba(0, 0, 0, 0.6);
  transition: all 0.25s ease;
  transform: translateY(0);
  overflow: visible;
}
.btn-select.basic {
  background: linear-gradient(135deg, var(--purple), #a855f7);
  box-shadow: 0 0.625rem 1.5rem rgba(147, 51, 234, 0.25);
}
.btn-select.pro {
  background: linear-gradient(135deg, var(--cyan), #3b82f6);
  box-shadow: 0 0.625rem 1.5rem rgba(0, 217, 255, 0.25);
}
.btn-select:hover {
  transform: translateY(-0.25rem) scale(1.4);
  box-shadow: 0 1rem 2.25rem rgba(0, 0, 0, 0.5);
}
.row.select-row {
  padding-top: 1.75rem;
  padding-bottom: 2.25rem;
}
.hdr.basic > div,
.hdr.pro > div {
  margin: 0 auto;
  text-align: center;
}
@media (max-width: 75rem) {
  .compare {
    grid-template-columns: 1fr;
    column-gap: 0;
  }
  .hdr,
  .row {
    /*border-radius: var(--card-radius);*/
  }
  .brand {
    min-width: 12.5rem;
    min-inline-size: 12.5rem;
  }
  .btn-select {
    width: 100%;
    max-width: 30rem;
  }

  /* Nav - keep desktop-level font size at this breakpoint */
  .nav-container {
    padding: 0.84375rem 1.171875rem;
  }
  .logo {
    height: 2.0625rem;
  }
  .nav-links {
    gap: 1.3125rem;
  }
  .nav-links a {
    font-size: 1.03125rem;
    padding: 0.234375rem 0.375rem;
  }
  .wrap {
    padding: 5.15625rem 2.5rem 2.25rem 2.5rem;
  }
}
@media (max-width: 50rem) {
  h1 {
    padding: 0.5rem 0.375rem;
    font-size: 1.75rem;
    white-space: normal;
  }
  /*.hdr.basic > div,*/
  /*.hdr.pro > div,*/
  /*.hdr.netflix > div {*/
  /*  margin-left: 0;*/
  /*}*/
  .compare {
    padding: 0.5rem;
    gap: 0;
    column-gap: 0.25rem;
    row-gap: 0;
    grid-template-columns: 7rem .7fr .7fr 1fr;
    font-size: 0.75rem;
  }
  .row{
    min-width: unset;
    max-height: 5rem;
  }
  .row.select-row{
    min-width: unset;
    max-height: 4rem;
    padding-top: .7rem;
    padding-bottom: 1rem;
  }
  .brand {
    padding: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.75rem;
  }
  .brand img.chillstreams-logo {
    max-width: 15rem;
    min-width: 8rem;
  }
  .netflix-brand {
    padding: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.75rem;
  }
  .netflix-brand img.netflix-logo {
    min-width: 4rem;
    width:65%;
  }
  .hdr {
    padding: 0.5rem 0.375rem;
    max-height: 40px;
    min-height: 40px;
  }
  .basic{
      margin-left: -3px;
  }
  .pro{
      margin-left: -3px;
  }
  .netflix{
      margin-left: -3px;
  }
  .row {
    padding: 0 0.375rem;
    min-height: 2.5rem;
    font-size: 0.75rem;
  }
  .row:hover {
    padding-left: 0.375rem;
  }
  .row.no-shift:hover {
    padding-left: 0.375rem;
  }
  .row.label {
    padding-left: 0.375rem;
    font-size: 0.6875rem;
    font-weight: 600;
  }
  .price {
    font-size: 1.125rem;
  }
  .price .muted-small {
    font-size: 0.6875rem;
    font-weight: 600;
  }
  .plan-title {
    font-size: 0.75rem;
    margin-bottom: 0.125rem;
  }
  .plan-desc {
    font-size: 0.5625rem;
  }
  .muted-medium {
    font-size: 0.6875rem;
  }
  .muted-small {
    font-size: 0.625rem;
  }
  .ok {
    font-size: 0.875rem;
  }
  .no {
    font-size: 0.875rem;
    font-weight: 700;
  }
  .subtitle{
    font-size: 1rem;
  }
  .grade-c,
  .grade-a {
    font-size: 0.875rem;
  }
  .btn-select {
    padding: 0.375rem 0.75rem;
    font-size: 0.7rem;
    border-radius: 0.375rem;
  }
  .btn-select:hover {
    transform: translateY(-0.125rem) scale(1.05);
  }
  .nf-tiers {
    gap: 0.25rem;
  }
  .nf-tier {
    padding: 0.375rem;
  }
  .nf-label {
    font-size: 0.625rem;
  }
  .nf-cell {
    gap: 0.25rem;
  }
  .nf-cell > div {
    padding: 0.375rem 0.25rem;
    font-size: 0.6875rem;
  }
  .disclaimer {
    padding: 0.75rem;
    margin-top: 0.5rem;
    font-size: 0.625rem;
    line-height: 1.5;
  }
  .disclaimer p {
    margin: 0;
  }
  .sometimes{
    font-size: 0.875rem;
  }
  .permonth{
    display:none
  }

  /* Nav adjustments for tablet / small laptops - slightly reduce font for space */
  .nav-container {
    padding: 0.65625rem 0.75rem;
  }
  .logo {
    height: 1.6875rem;
  }
  .nav-links {
    gap: 0.75rem;
  }
  .nav-links a {
    font-size: 0.85rem;
    padding: 0.234375rem 0.375rem;
  }
  .user-icon {
    width: 2.0625rem;
    height: 2.0625rem;
  }
  .user-icon svg {
    width: 1.125rem;
    height: 1.125rem;
  }
  .wrap {
    padding: 4.125rem 2.5rem 2.25rem 2.5rem;
  }
}
@media (max-width: 25rem) {
  h1 {
    font-size: 1.25rem;
  }
  .subtitle {
    font-size: 0.75rem;
  }
  .wrap {
    padding: 3.125rem 0.25rem 2.25rem 0.25rem;
    margin: 0.5rem auto;
  }
  /*.compare {*/
  /*  margin: 0.5rem auto;*/
  /*  padding: 0.25rem;*/
  /*  column-gap: 0.125rem;*/
  /*  !*grid-template-columns: 7rem .7fr .7fr 1fr;*!*/
  /*  grid-template-columns: 6rem .3fr .3fr 9rem;*/
  /*  font-size: 0.625rem;*/
  /*}*/
  .brand img.chillstreams-logo {
    width: 80%;
  }
  .netflix-brand img.netflix-logo {
    width: 65%;
  }
  .chillpermonth{
    display:none
  }
  .chillpermonthshort{
    display:inline;
  }
  .hdr {
    padding: 0.25rem 0.1875rem;
    min-height: 2.5rem;
  }
  .row {
    padding: 0 0.1875rem;
    min-height: 2.3rem;
    font-size: 0.725rem;
  }
  .row.label {
    padding-left: 0.1875rem;
    font-size: 0.6625rem;
  }
  .price {
    font-size: 0.95rem;
  }
  .price .muted-small {
    font-size: 0.5rem;
  }
  .plan-title {
    font-size: 0.725rem;
  }
  .plan-desc {
    font-size: 0.5rem;
  }
  .muted-medium {
    font-size: 0.6625rem;
  }
  .ok,
  .no {
    font-size: 0.75rem;
  }
  .grade-c,
  .grade-a {
    font-size: 0.75rem;
  }
  .btn-select {
    padding: 0.25rem 0.5rem;
    font-size: 0.625rem;
    border-radius: 0.25rem;
  }
  .nf-label {
    font-size: 0.6rem;
  }
  .nf-cell > div {
    padding: 0.25rem 0.125rem;
    font-size: 0.5625rem;
  }
  .disclaimer {
    padding: 0.5rem;
    font-size: 0.5625rem;
  }

  /* Mobile: slightly larger nav text to match main.css mobile sizing */
  .nav-container {
    padding: 0.5rem 0.5rem;
  }
  .logo {
    height: 1.5rem;
  }
  .nav-links {
    gap: 0.5rem;
  }
  .nav-links a {
    font-size: 0.85625rem;
    padding: 0.1875rem 0.28125rem;
  }
}

/* NAV PIXEL OVERRIDES — KEEP PRICING CONTENT AT 0.75 SCALE BUT MAKE NAV MATCH HOMEPAGE */
nav .nav-container {
  padding: 18px 37.5px;
}
nav .logo {
  height: 40.5px;
  width: auto;
}
nav .nav-links {
  gap: 42px;
}
nav .nav-links a {
  font-size: 16.5px;
  padding: 4.5px 9px;
}
nav .nav-links a::before {
  bottom: -3.75px;
  height: 2.25px;
}
nav .user-icon {
  width: 40.5px;
  height: 40.5px;
  border-radius: 50%;
}
nav .user-icon svg {
  width: 21px;
  height: 21px;
}

/* Tablet overrides (match main.css breakpoints) */
@media (max-width: 768px) {
  nav .nav-container {
    padding: 13.5px 18.75px;
  }
  nav .logo {
    height: 33px;
  }
  nav .nav-links {
    gap: 21px;
  }
  nav .nav-links a {
    font-size: 13.6px;
    padding: 4px 6px;
  }
  nav .user-icon {
    width: 33px;
    height: 33px;
  }
}

/* Mobile overrides */
@media (max-width: 480px) {
  nav .nav-container {
    padding: 10.5px 12px;
  }
  nav .logo {
    height: 27px;
  }
  nav .nav-links {
    gap: 12px;
  }
  nav .nav-links a {
    font-size: 13.7px;
    padding: 4px 6px;
  }
  nav .user-icon {
    width: 33px;
    height: 33px;
  }
}

/* End NAV PIXEL OVERRIDES */

/* NAV: enforce maximum height to match homepage visual (77px) */
nav {
  max-height: 77px;
  height: 77px;
  overflow: visible;
}
nav .nav-container {
  height: 77px;
  padding: 0 37.5px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
nav .logo {
  max-height: 40.5px;
  height: auto;
}
@media (max-width: 768px) {
  nav {
    height: 77px;
  }
  nav .nav-container {
    height: 77px;
    padding: 0 18.75px;
  }
  nav .logo {
    max-height: 33px;
  }
}
@media (max-width: 480px) {
  nav {
    height: 45px;
  }
  nav .nav-container {
    height: 45px;
    padding: 0 12px;
  }
  nav .logo {
    max-height: 27px;
  }
}

/* NAV: slightly larger nav text for better readability (overrides previous values) */
nav .nav-links a {
  font-size: 18px;
  padding: 5px 10px;
}
@media (max-width: 768px) {
  nav .nav-links a {
    font-size: 15px;
    padding: 5px 8px;
  }
}
@media (max-width: 480px) {
  nav .nav-links a {
    font-size: 14.5px;
    padding: 5px 8px;
  }
}

/* Footer styling */
footer {
  position: relative;
  z-index: 10;
  padding: 3.75rem 2.34375rem 1.875rem;
  text-align: center;
  border-top: 1px solid rgba(147, 51, 234, 0.25);
}

footer p {
  color: var(--text-muted);
  font-size: 0.703125rem;
  font-weight: 500;
}

/* Footer legal links styling */
.footer-legal {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.footer-legal .legal-links {
  list-style: none;
  display: flex;
  gap: 0.75rem;
  padding: 0;
  margin: 0;
}

.footer-legal .legal-links li {
  margin: 0;
}

.footer-legal .legal-links a {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.875rem;
  text-decoration: none;
  font-weight: 400;
}

.footer-legal .legal-links a:hover {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: underline;
}
