/* Generated by tools/build-theme-css.py. Do not edit directly. */
body.page-template-page-placement-test,
body.page-template-page-templatespage-placement-test-php {
  --navy: var(--cb-navy);
  --navy-deep: var(--cb-navy-deep);
  --navy-mid: #17224a;
  --red: var(--cb-red);
  --red-dark: #8f1f24;
  --red-bright: #d4474c;
  --red-glow: rgba(184, 41, 45, 0.12);
  --cream: var(--cb-cream);
  --cream-dark: #efe7db;
  --stone: var(--cb-stone);
  --white: var(--cb-white);
  --charcoal: var(--cb-charcoal);
  --radius-xl: 20px;
  --radius-lg: 14px;
  --radius-md: 8px;
  --shadow-med: 0 10px 28px rgba(14, 22, 50, 0.1);
  --shadow-strong: 0 20px 60px rgba(14, 22, 50, 0.12);
  --ease-spring: cubic-bezier(0.18, 0.89, 0.32, 1.28);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --font-body: "DM Sans", sans-serif;
  --font-serif: "Cormorant Garamond", Georgia, serif;
  --font-mono: "DM Mono", monospace;
}

.cb-placement-page {
  background: var(--white);
}

.cb-test-panel {
  display: none;
}

.cb-test-panel.is-active {
  display: block;
}

.sec {
  padding: 88px 0;
}

.sec-cream {
  background: var(--cream);
}

.sec-inner {
  width: min(calc(100% - 40px), 1160px);
  margin: 0 auto;
}

.sec-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
}

.sec-eyebrow-center {
  justify-content: center;
  width: 100%;
}

.sec-h2 {
  margin: 12px 0 0;
  text-align: center;
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3vw, 3rem);
  color: var(--navy);
  font-weight: 600;
}


.exam-hero {
  background: var(--navy-deep);
  padding: 72px 32px 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.exam-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 80%, rgba(184, 41, 45, 0.06), transparent 45%),
    radial-gradient(circle at 70% 20%, rgba(46, 61, 128, 0.08), transparent 45%);
}

.exam-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.025;
  background-image:
    linear-gradient(rgba(255, 255, 255, 1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 1) 1px, transparent 1px);
  background-size: 40px 40px;
}

.exam-hero h1 {
  position: relative;
  z-index: 2;
  margin: 0 0 12px;
  font-family: var(--font-serif);
  font-size: clamp(32px, 3.5vw, 50px);
  color: #fff;
  font-weight: 500;
}

.exam-hero h1 .ri {
  font-style: italic;
  font-weight: 600;
  color: var(--red);
}

.exam-hero > p {
  position: relative;
  z-index: 2;
  max-width: 520px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.4);
  font-size: 15px;
}

.pt-switch {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-top: 24px;
  margin-bottom: 28px;
  position: relative;
  z-index: 2;
}

.pt-switch-btn {
  min-width: 180px;
  padding: 12px 28px;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.pt-switch-btn:first-child {
  border-radius: 50px 0 0 50px;
}

.pt-switch-btn:last-child {
  border-radius: 0 50px 50px 0;
}

.pt-switch-btn.is-active {
  border-color: var(--red);
  background: var(--red);
  color: #fff;
}

.pt-hero-copy {
  position: relative;
  z-index: 2;
  margin-bottom: 8px;
}

.pt-overline {
  margin-bottom: 10px;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red);
}

.pt-hero-copy h2 {
  margin: 0 0 10px;
  font-family: var(--font-serif);
  font-size: clamp(22px, 2.5vw, 32px);
  color: #fff;
  font-weight: 600;
}

.pt-hero-copy p {
  max-width: 580px;
  margin: 0 auto 28px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  line-height: 1.7;
}

.pt-hero-copy p strong {
  color: rgba(255, 255, 255, 0.8);
}

.ef-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  max-width: 760px;
  margin: 36px auto 0;
}

.ef-card {
  padding: 20px 14px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.03);
  text-align: center;
  transition: all 0.4s var(--ease-spring);
}

.ef-card:hover {
  background: rgba(255, 255, 255, 0.07);
  transform: translateY(-4px) scale(1.03);
}

.ef-icon {
  font-size: 26px;
}

.ef-card h4 {
  margin: 8px 0 3px;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
}

.ef-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.35);
  font-size: 11.5px;
}


.pt-demo-section {
  text-align: center;
}

.demo-wrap {
  max-width: 720px;
  margin: 36px auto 0;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: var(--white);
  text-align: left;
  box-shadow: var(--shadow-strong);
}

.demo-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 13px 22px;
  background: var(--navy);
}

.demo-head h4 {
  margin: 0;
  color: #fff;
  font-size: 13.5px;
  font-weight: 500;
}

.demo-timer {
  padding: 4px 12px;
  border-radius: 50px;
  background: rgba(184, 41, 45, 0.15);
  color: var(--red);
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
}

.demo-body {
  padding: 28px;
}

.demo-passage {
  margin-bottom: 18px;
  padding: 14px 18px;
  border-radius: var(--radius-md);
  background: var(--cream);
  color: var(--charcoal);
  font-family: var(--font-serif);
  font-size: 13.5px;
  line-height: 1.6;
  font-style: italic;
}

.demo-passage[hidden] {
  display: none !important;
}

.demo-qnum {
  margin-bottom: 8px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--red);
}

.demo-q {
  margin-bottom: 20px;
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.45;
  color: var(--navy);
}

.demo-opts {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.demo-opt {
  display: flex;
  align-items: center;
  gap: 11px;
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid rgba(27, 38, 85, 0.06);
  border-radius: var(--radius-md);
  background: var(--cream);
  color: var(--charcoal);
  font-size: 14px;
  text-align: left;
  cursor: pointer;
  transition: all 0.3s var(--ease-spring);
}

.demo-opt:hover {
  border-color: var(--navy);
  background: var(--white);
  transform: translateX(4px);
}

.demo-opt.sel {
  border-color: var(--red);
  background: var(--red-glow);
  transform: translateX(4px);
}

.demo-ol {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background: var(--cream-dark);
  color: var(--navy);
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: 700;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.demo-opt.sel .demo-ol {
  background: var(--red);
  color: #fff;
  transform: scale(1.1);
}

.demo-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 22px;
  background: var(--cream);
}

.demo-prog {
  display: flex;
  align-items: center;
  gap: 9px;
}

.demo-bar {
  width: 160px;
  height: 4px;
  overflow: hidden;
  border-radius: 2px;
  background: rgba(27, 38, 85, 0.06);
}

.demo-fill {
  width: 2%;
  height: 100%;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--red), var(--navy));
  transition: width 0.2s ease;
}

.demo-prog span {
  color: var(--stone);
  font-family: var(--font-mono);
  font-size: 11.5px;
}

.demo-next {
  border: none;
  border-radius: var(--radius-md);
  background: var(--navy);
  color: #fff;
  padding: 8px 22px;
  font-family: var(--font-body);
  font-size: 12.5px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s var(--ease-spring);
}

.demo-next:hover {
  background: var(--red);
  transform: scale(1.05);
}


.pt-demo-cta {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  row-gap: 14px;
  margin-top: 36px;
}

.pt-hero-cta {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  grid-template-rows: auto 1fr;
  min-height: 132px;
  align-items: stretch;
  margin-top: 28px;
}

.cta-main {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 999px;
  background: var(--red);
  color: #fff;
  padding: 14px 28px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.1;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(184, 41, 45, 0.22);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  text-decoration: none;
  white-space: nowrap;
}

.cta-main:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(184, 41, 45, 0.28);
}

.pt-demo-cta p {
  margin: 0;
  color: var(--stone);
  font-family: var(--font-mono);
  font-size: 12px;
  text-align: center;
}

.pt-hero-cta p {
  max-width: 760px;
  width: 100%;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.55);
  font-family: var(--font-mono);
  font-size: 12px;
  text-align: center;
}

.pt-section-intro {
  text-align: center;
}

.pt-section-intro-spaced {
  margin-top: 52px;
}

.pt-section-copy {
  max-width: 760px;
  margin: 12px auto 0;
  color: var(--stone);
  font-size: 15px;
  line-height: 1.75;
}

.cb-placement-page .feat-grid {
  margin-top: 24px;
}


@media (max-width: 1024px) {
  .ef-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .demo-head,
  .demo-foot {
    flex-direction: column;
    align-items: flex-start;
  }

  .demo-prog {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .exam-hero {
    padding: 60px 18px 44px;
  }

  .sec {
    padding: 72px 0;
  }

  .pt-switch {
    flex-direction: column;
    width: min(100%, 320px);
    margin-left: auto;
    margin-right: auto;
    gap: 10px;
  }

  .pt-switch-btn {
    width: 100%;
    border-radius: 999px;
  }

  .ef-grid {
    grid-template-columns: 1fr;
  }

  .demo-body,
  .demo-head,
  .demo-foot {
    padding-left: 18px;
    padding-right: 18px;
  }

  .demo-q {
    font-size: 1.15rem;
  }

  .cta-main {
    width: 100%;
  }
}
