:root {
  --cc-navy: #08234a;
  --cc-navy-deep: #051a38;
  --cc-blue: #0e4f91;
  --cc-blue-light: #eaf3fb;
  --cc-yellow: #ffc928;
  --cc-yellow-deep: #e8ab00;
  --cc-cream: #fff9e7;
  --cc-ink: #14243b;
  --cc-muted: #5b6879;
  --cc-line: #dce3ec;
  --cc-soft: #f4f7fb;
  --cc-white: #fff;
  --cc-success: #0d7a57;
  --cc-shadow: 0 20px 60px rgba(8, 35, 74, 0.11);
  --cc-shadow-small: 0 8px 26px rgba(8, 35, 74, 0.09);
  --cc-radius: 22px;
  --cc-radius-small: 14px;
  --cc-container: 1180px;
  --cc-font: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cc-white);
  color: var(--cc-ink);
  font-family: var(--cc-font);
  font-size: 16px;
  line-height: 1.8;
  overflow-wrap: anywhere;
  -webkit-font-smoothing: antialiased;
}

body.cc-menu-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: var(--cc-blue);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--cc-navy);
}

button,
input,
textarea,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--cc-yellow);
  outline-offset: 3px;
}

[hidden] {
  display: none !important;
}

h1,
h2,
h3,
h4 {
  color: var(--cc-navy);
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: -0.025em;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

.screen-reader-text {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.cc-skip-link {
  position: fixed;
  z-index: 99999;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  transform: translateY(-150%);
  border-radius: 8px;
  background: var(--cc-white);
  color: var(--cc-navy);
  font-weight: 700;
}

.cc-skip-link:focus {
  transform: translateY(0);
}

.cc-container {
  width: min(calc(100% - 40px), var(--cc-container));
  margin-inline: auto;
}

.cc-container--narrow {
  max-width: 800px;
}

.cc-button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 22px;
  border: 2px solid var(--cc-yellow);
  border-radius: 999px;
  background: var(--cc-yellow);
  color: var(--cc-navy-deep);
  box-shadow: 0 10px 26px rgba(255, 201, 40, 0.2);
  cursor: pointer;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.cc-button:hover {
  transform: translateY(-2px);
  background: #ffd75c;
  color: var(--cc-navy-deep);
  box-shadow: 0 14px 32px rgba(255, 201, 40, 0.28);
}

.cc-button:disabled {
  transform: none;
  opacity: 0.46;
  cursor: not-allowed;
  box-shadow: none;
}

.cc-button--small {
  min-height: 42px;
  padding: 10px 17px;
  font-size: 14px;
}

.cc-button--ghost {
  border-color: rgba(255, 255, 255, 0.55);
  background: transparent;
  color: var(--cc-white);
  box-shadow: none;
}

.cc-button--ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--cc-white);
}

.cc-text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--cc-blue);
  font-weight: 800;
  text-decoration: none;
}

.cc-text-link span {
  transition: transform 160ms ease;
}

.cc-text-link:hover span {
  transform: translateX(4px);
}

.cc-text-link--light {
  color: var(--cc-white);
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.45);
}

.cc-text-link--light:hover {
  color: var(--cc-yellow);
}

.cc-eyebrow {
  margin-bottom: 10px;
  color: var(--cc-blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.cc-eyebrow--light {
  color: var(--cc-yellow);
}

/* Header */
.cc-site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  border-bottom: 1px solid rgba(8, 35, 74, 0.08);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px);
}

body.admin-bar .cc-site-header {
  top: 32px;
}

.cc-site-header__inner {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.cc-brand__link {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--cc-navy);
  text-decoration: none;
}

.cc-brand__link:hover {
  color: var(--cc-navy);
}

.cc-brand__mark,
.custom-logo {
  display: block;
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.custom-logo-link {
  display: block;
  line-height: 0;
}

.cc-brand__text {
  display: grid;
  line-height: 1.2;
}

.cc-brand__name {
  font-size: 19px;
  font-weight: 900;
  letter-spacing: 0.01em;
}

.cc-brand__tagline {
  margin-top: 4px;
  color: var(--cc-muted);
  font-size: 11px;
  font-weight: 600;
}

.cc-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.cc-nav__list {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.cc-nav__list a {
  color: var(--cc-ink);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.cc-nav__list a:hover,
.cc-nav__list .current-menu-item > a {
  color: var(--cc-blue);
}

.cc-menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid var(--cc-line);
  border-radius: 50%;
  background: var(--cc-white);
  color: var(--cc-navy);
  cursor: pointer;
}

.cc-menu-toggle__lines,
.cc-menu-toggle__lines::before,
.cc-menu-toggle__lines::after {
  display: block;
  width: 20px;
  height: 2px;
  background: currentcolor;
  content: "";
  transition: transform 180ms ease;
}

.cc-menu-toggle__lines {
  position: relative;
}

.cc-menu-toggle__lines::before {
  position: absolute;
  top: -6px;
}

.cc-menu-toggle__lines::after {
  position: absolute;
  top: 6px;
}

.cc-menu-toggle[aria-expanded="true"] .cc-menu-toggle__lines {
  background: transparent;
}

.cc-menu-toggle[aria-expanded="true"] .cc-menu-toggle__lines::before {
  top: 0;
  transform: rotate(45deg);
}

.cc-menu-toggle[aria-expanded="true"] .cc-menu-toggle__lines::after {
  top: 0;
  transform: rotate(-45deg);
}

/* Hero */
.cc-hero {
  position: relative;
  isolation: isolate;
  min-height: 700px;
  overflow: hidden;
  background:
    radial-gradient(circle at 90% 20%, rgba(14, 79, 145, 0.8), transparent 38%),
    linear-gradient(135deg, var(--cc-navy-deep), var(--cc-navy) 60%, #0c4177);
  color: var(--cc-white);
}

.cc-hero::after {
  position: absolute;
  z-index: -1;
  right: -12%;
  bottom: -34%;
  width: 650px;
  height: 650px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 50%;
  content: "";
}

.cc-hero__glow {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  filter: blur(2px);
}

.cc-hero__glow--one {
  top: 16%;
  left: -80px;
  width: 230px;
  height: 230px;
  background: rgba(255, 201, 40, 0.09);
}

.cc-hero__glow--two {
  right: 20%;
  bottom: 2%;
  width: 150px;
  height: 150px;
  background: rgba(255, 201, 40, 0.14);
}

.cc-hero__grid {
  display: grid;
  min-height: 700px;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  align-items: center;
  gap: 70px;
  padding-block: 92px;
}

.cc-hero h1 {
  max-width: 760px;
  margin-bottom: 25px;
  color: var(--cc-white);
  font-size: clamp(42px, 5.4vw, 74px);
  line-height: 1.16;
  letter-spacing: -0.045em;
}

.cc-no-break {
  white-space: nowrap;
}

.cc-hero__lead {
  max-width: 640px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.85;
}

.cc-hero__actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.cc-hero__checks {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  padding: 0;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  list-style: none;
}

.cc-hero__checks li::before {
  margin-right: 7px;
  color: var(--cc-yellow);
  content: "✓";
  font-weight: 900;
}

.cc-hero__visual {
  display: flex;
  justify-content: center;
}

.cc-compass-card {
  position: relative;
  display: grid;
  width: min(100%, 430px);
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.28);
}

.cc-compass-card::before,
.cc-compass-card::after {
  position: absolute;
  background: rgba(255, 255, 255, 0.18);
  content: "";
}

.cc-compass-card::before {
  width: calc(100% + 58px);
  height: 1px;
}

.cc-compass-card::after {
  width: 1px;
  height: calc(100% + 58px);
}

.cc-compass-card img {
  position: relative;
  z-index: 2;
  width: 78%;
  filter: drop-shadow(0 24px 36px rgba(0, 0, 0, 0.25));
}

.cc-compass-card__orbit {
  position: absolute;
  inset: 22px;
  border: 1px dashed rgba(255, 201, 40, 0.52);
  border-radius: 50%;
  animation: cc-spin 28s linear infinite;
}

.cc-compass-card__orbit::before {
  position: absolute;
  top: 12%;
  right: 7%;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--cc-yellow);
  box-shadow: 0 0 28px rgba(255, 201, 40, 0.8);
  content: "";
}

.cc-compass-card__label {
  position: absolute;
  z-index: 3;
  padding: 7px 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(5, 26, 56, 0.7);
  color: rgba(255, 255, 255, 0.8);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.cc-compass-card__label--top {
  top: 12%;
  left: -3%;
}

.cc-compass-card__label--bottom {
  right: -2%;
  bottom: 15%;
}

@keyframes cc-spin {
  to { transform: rotate(360deg); }
}

/* Sections */
.cc-section {
  padding-block: 100px;
}

.cc-section--soft {
  background: var(--cc-soft);
}

.cc-section--intro {
  padding-block: 54px;
  border-bottom: 1px solid var(--cc-line);
}

.cc-intro-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 80px;
}

.cc-intro-grid h2 {
  margin-bottom: 0;
  font-size: clamp(26px, 3vw, 38px);
}

.cc-intro-grid > p {
  margin: 0;
  color: var(--cc-muted);
}

.cc-section-heading {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 470px);
  align-items: end;
  gap: 55px;
  margin-bottom: 42px;
}

.cc-section-heading h2 {
  margin-bottom: 0;
  font-size: clamp(32px, 4vw, 49px);
}

.cc-section-heading > p,
.cc-section-heading > a {
  margin-bottom: 6px;
}

.cc-section-heading > p {
  color: var(--cc-muted);
}

/* Categories */
.cc-category-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.cc-category-card {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  padding: 34px;
  border: 1px solid rgba(8, 35, 74, 0.08);
  border-radius: var(--cc-radius);
  background: var(--cc-white);
  box-shadow: var(--cc-shadow-small);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.cc-category-card::after {
  position: absolute;
  right: -38px;
  bottom: -48px;
  width: 150px;
  height: 150px;
  border: 1px solid rgba(8, 35, 74, 0.08);
  border-radius: 50%;
  content: "";
}

.cc-category-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--cc-shadow);
}

.cc-category-card__icon {
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  margin-bottom: 48px;
  border-radius: 18px;
  background: var(--cc-navy);
  color: var(--cc-white);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.cc-category-card__icon--long {
  font-size: 9px;
  letter-spacing: 0.04em;
}

.cc-category-card--yellow .cc-category-card__icon {
  background: var(--cc-yellow);
  color: var(--cc-navy);
}

.cc-category-card--blue .cc-category-card__icon {
  background: var(--cc-blue);
}

.cc-category-card__eyebrow {
  margin-bottom: 8px;
  color: var(--cc-muted);
  font-size: 12px;
  font-weight: 700;
}

.cc-category-card h3 {
  margin-bottom: 14px;
  font-size: 25px;
}

.cc-category-card > p:not(.cc-category-card__eyebrow) {
  color: var(--cc-muted);
  font-size: 14px;
}

/* Diagnosis */
.cc-diagnosis {
  position: relative;
  overflow: hidden;
  background: var(--cc-navy);
  color: var(--cc-white);
}

.cc-diagnosis::before {
  position: absolute;
  top: -180px;
  right: -130px;
  width: 470px;
  height: 470px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  content: "";
}

.cc-diagnosis__grid {
  position: relative;
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 80px;
}

.cc-diagnosis__intro h2 {
  margin-bottom: 24px;
  color: var(--cc-white);
  font-size: clamp(34px, 4vw, 52px);
}

.cc-diagnosis__intro > p {
  color: rgba(255, 255, 255, 0.76);
}

.cc-diagnosis__note {
  padding: 20px 22px;
  margin-top: 38px;
  border-left: 3px solid var(--cc-yellow);
  background: rgba(255, 255, 255, 0.06);
}

.cc-diagnosis__note strong {
  color: var(--cc-yellow);
}

.cc-diagnosis__note p {
  margin: 5px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
}

.cc-quiz {
  min-height: 510px;
  padding: 36px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--cc-radius);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(14px);
}

.cc-quiz__progress {
  height: 5px;
  overflow: hidden;
  margin-bottom: 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.13);
}

.cc-quiz__progress span {
  display: block;
  width: 20%;
  height: 100%;
  border-radius: inherit;
  background: var(--cc-yellow);
  transition: width 260ms ease;
}

.cc-quiz__step {
  margin-bottom: 26px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  font-weight: 700;
  text-align: right;
}

.cc-quiz__question {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}

.cc-quiz__question legend {
  width: 100%;
  margin-bottom: 24px;
  color: var(--cc-white);
  font-size: clamp(22px, 3vw, 29px);
  font-weight: 800;
  line-height: 1.45;
}

.cc-quiz__question label {
  display: block;
  margin-top: 11px;
  cursor: pointer;
}

.cc-quiz__question input {
  position: absolute;
  opacity: 0;
}

.cc-quiz__question label span {
  position: relative;
  display: block;
  padding: 15px 48px 15px 18px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.88);
  font-weight: 600;
  transition: border-color 150ms ease, background 150ms ease;
}

.cc-quiz__question label span::after {
  position: absolute;
  top: 50%;
  right: 18px;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  content: "";
  transform: translateY(-50%);
}

.cc-quiz__question input:checked + span {
  border-color: var(--cc-yellow);
  background: rgba(255, 201, 40, 0.12);
  color: var(--cc-white);
}

.cc-quiz__question input:checked + span::after {
  border: 5px solid var(--cc-yellow);
  background: var(--cc-navy);
}

.cc-quiz__question input:focus-visible + span {
  outline: 3px solid var(--cc-yellow);
  outline-offset: 3px;
}

.cc-quiz__actions {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin-top: 28px;
}

.cc-quiz__actions [data-quiz-next] {
  margin-left: auto;
}

.cc-quiz__result {
  padding-top: 30px;
  text-align: center;
}

.cc-quiz__result h3 {
  margin-bottom: 16px;
  color: var(--cc-white);
  font-size: clamp(27px, 4vw, 38px);
}

.cc-quiz__result > p:not(.cc-eyebrow) {
  max-width: 520px;
  margin: 0 auto 25px;
  color: rgba(255, 255, 255, 0.78);
}

.cc-text-button {
  display: block;
  padding: 7px;
  margin: 18px auto 0;
  border: 0;
  background: none;
  color: rgba(255, 255, 255, 0.75);
  cursor: pointer;
  font-weight: 700;
  text-decoration: underline;
}

/* Rankings */
.cc-ranking-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.cc-ranking-card {
  display: flex;
  gap: 20px;
  padding: 28px;
  border: 1px solid var(--cc-line);
  border-radius: var(--cc-radius-small);
  background: var(--cc-white);
}

.cc-ranking-card__number {
  display: grid;
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 50%;
  background: var(--cc-cream);
  color: var(--cc-yellow-deep);
  font-size: 20px;
  font-weight: 900;
}

.cc-ranking-card__status {
  display: inline-block;
  padding: 3px 9px;
  margin-bottom: 8px;
  border-radius: 999px;
  background: var(--cc-blue-light);
  color: var(--cc-blue);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.06em;
}

.cc-ranking-card h3 {
  margin-bottom: 10px;
  font-size: 19px;
}

.cc-ranking-card div > p:last-child {
  margin: 0;
  color: var(--cc-muted);
  font-size: 13px;
}

.cc-disclosure {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 24px;
  padding: 26px 30px;
  margin-top: 24px;
  border-left: 4px solid var(--cc-yellow);
  border-radius: 0 var(--cc-radius-small) var(--cc-radius-small) 0;
  background: var(--cc-cream);
}

.cc-disclosure strong {
  color: var(--cc-navy);
}

.cc-disclosure p {
  margin: 0;
  color: var(--cc-muted);
  font-size: 14px;
}

/* Posts */
.cc-post-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.cc-post-card {
  overflow: hidden;
  border: 1px solid rgba(8, 35, 74, 0.08);
  border-radius: var(--cc-radius-small);
  background: var(--cc-white);
  box-shadow: var(--cc-shadow-small);
}

.cc-post-card__media {
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: linear-gradient(135deg, var(--cc-blue-light), var(--cc-cream));
}

.cc-post-card__media > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 240ms ease;
}

.cc-post-card:hover .cc-post-card__media > img {
  transform: scale(1.04);
}

.cc-post-card__placeholder {
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
}

.cc-post-card__placeholder img {
  width: 82px;
  opacity: 0.84;
}

.cc-post-card__body {
  padding: 24px;
}

.cc-post-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 15px;
  margin-bottom: 10px;
  color: var(--cc-muted);
  font-size: 11px;
}

.cc-post-card__meta span {
  color: var(--cc-blue);
  font-weight: 700;
}

.cc-post-card h3 {
  margin-bottom: 11px;
  font-size: 20px;
}

.cc-post-card h3 a {
  color: inherit;
  text-decoration: none;
}

.cc-post-card__body > p {
  color: var(--cc-muted);
  font-size: 13px;
}

.cc-empty-state {
  grid-column: 1 / -1;
  padding: 55px 30px;
  border: 1px dashed #b8c5d4;
  border-radius: var(--cc-radius);
  background: rgba(255, 255, 255, 0.7);
  text-align: center;
}

.cc-empty-state > span {
  color: var(--cc-yellow-deep);
  font-size: 32px;
}

.cc-empty-state h3 {
  margin: 10px 0 5px;
}

.cc-empty-state p {
  margin: 0;
  color: var(--cc-muted);
}

/* Trust */
.cc-trust {
  background: linear-gradient(135deg, var(--cc-navy-deep), var(--cc-navy));
  color: var(--cc-white);
}

.cc-trust__grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 90px;
}

.cc-trust h2 {
  color: var(--cc-white);
  font-size: clamp(34px, 4vw, 52px);
}

.cc-trust__list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.cc-trust__list li {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 20px;
  padding: 25px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.cc-trust__list li:first-child {
  padding-top: 0;
}

.cc-trust__list li > span {
  color: var(--cc-yellow);
  font-size: 12px;
  font-weight: 900;
}

.cc-trust__list strong {
  display: block;
  margin-bottom: 6px;
  color: var(--cc-white);
  font-size: 18px;
}

.cc-trust__list p {
  margin: 0;
  color: rgba(255, 255, 255, 0.67);
  font-size: 14px;
}

/* Footer */
.cc-site-footer {
  padding-top: 70px;
  background: #03152e;
  color: rgba(255, 255, 255, 0.65);
}

.cc-site-footer__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 1fr;
  gap: 70px;
  padding-bottom: 58px;
}

.cc-brand__link--footer {
  color: var(--cc-white);
}

.cc-brand__link--footer:hover {
  color: var(--cc-white);
}

.cc-site-footer__brand > p {
  max-width: 360px;
  margin-top: 16px;
  font-size: 13px;
}

.cc-site-footer h2 {
  margin-bottom: 18px;
  color: var(--cc-white);
  font-size: 14px;
}

.cc-site-footer ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.cc-site-footer li + li {
  margin-top: 8px;
}

.cc-site-footer a,
.cc-site-footer li span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
}

.cc-site-footer li span {
  opacity: 0.58;
}

.cc-site-footer__notice {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding-block: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 11px;
}

.cc-site-footer__notice p {
  margin: 0;
}

/* Archive, article and pages */
.cc-main {
  min-height: 60vh;
}

.cc-page-hero,
.cc-article__header {
  padding-block: 80px 70px;
  background:
    radial-gradient(circle at 86% 0%, rgba(255, 201, 40, 0.22), transparent 26%),
    var(--cc-soft);
  border-bottom: 1px solid var(--cc-line);
}

.cc-page {
  background: var(--cc-soft);
}

.cc-page-hero--branded {
  position: relative;
  isolation: isolate;
  padding-block: 72px 68px;
  overflow: hidden;
  border-bottom: 0;
  background:
    radial-gradient(circle at 84% 25%, rgba(255, 201, 40, 0.18), transparent 24%),
    radial-gradient(circle at 6% 90%, rgba(14, 79, 145, 0.42), transparent 30%),
    linear-gradient(135deg, var(--cc-navy-deep), var(--cc-navy) 60%, #0b376c);
}

.cc-page-hero--branded::before,
.cc-page-hero--branded::after {
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  content: "";
}

.cc-page-hero--branded::before {
  top: -220px;
  right: -80px;
  width: 520px;
  height: 520px;
}

.cc-page-hero--branded::after {
  right: 190px;
  bottom: -330px;
  width: 500px;
  height: 500px;
}

.cc-page-hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 190px;
  align-items: center;
  gap: 70px;
}

.cc-page-hero__content {
  max-width: 780px;
}

.cc-page-hero--branded h1 {
  margin-bottom: 18px;
  color: var(--cc-white);
}

.cc-page-hero--branded .cc-breadcrumb,
.cc-page-hero--branded .cc-breadcrumb a {
  color: rgba(255, 255, 255, 0.62);
}

.cc-page-hero__lead {
  color: rgba(255, 255, 255, 0.8) !important;
  font-size: clamp(16px, 2vw, 19px);
  line-height: 1.8;
}

.cc-page-hero__mark {
  position: relative;
  display: grid;
  width: 180px;
  height: 180px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
}

.cc-page-hero__mark img {
  position: relative;
  z-index: 1;
  width: 132px;
  filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.2));
}

.cc-page-hero__orbit {
  position: absolute;
  inset: 13px;
  border: 1px dashed rgba(255, 201, 40, 0.66);
  border-radius: 50%;
  animation: cc-spin 22s linear infinite;
}

.cc-page-hero h1,
.cc-article__header h1 {
  max-width: 900px;
  margin-bottom: 14px;
  font-size: clamp(35px, 5vw, 56px);
}

.cc-page-hero p,
.cc-archive-description {
  max-width: 700px;
  margin-bottom: 0;
  color: var(--cc-muted);
}

.cc-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 25px;
  color: var(--cc-muted);
  font-size: 12px;
}

.cc-breadcrumb a {
  color: var(--cc-muted);
}

.cc-archive-layout {
  padding-block: 72px 100px;
}

.cc-archive-layout > .search-form {
  display: flex;
  max-width: 650px;
  gap: 10px;
  margin-bottom: 35px;
}

.search-field,
.cc-entry-content input:not([type="submit"]):not([type="checkbox"]):not([type="radio"]),
.cc-entry-content select,
.cc-entry-content textarea,
.comment-form input:not([type="submit"]),
.comment-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #b8c5d4;
  border-radius: 10px;
  background: var(--cc-white);
}

.search-submit,
.submit {
  padding: 11px 20px;
  border: 0;
  border-radius: 999px;
  background: var(--cc-navy);
  color: var(--cc-white);
  cursor: pointer;
  font-weight: 700;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 45px;
}

.nav-links .page-numbers {
  display: grid;
  min-width: 42px;
  height: 42px;
  place-items: center;
  padding-inline: 12px;
  border: 1px solid var(--cc-line);
  border-radius: 9px;
  color: var(--cc-navy);
  text-decoration: none;
}

.nav-links .current {
  border-color: var(--cc-navy);
  background: var(--cc-navy);
  color: var(--cc-white);
}

.cc-pagination > ul {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 0;
  margin: 45px 0 0;
  list-style: none;
}

.cc-pagination .page-numbers:not(ul) {
  display: grid;
  min-width: 42px;
  height: 42px;
  place-items: center;
  padding-inline: 12px;
  border: 1px solid var(--cc-line);
  border-radius: 9px;
  color: var(--cc-navy);
  text-decoration: none;
}

.cc-pagination .page-numbers.current {
  border-color: var(--cc-navy);
  background: var(--cc-navy);
  color: var(--cc-white);
}

.cc-article__category {
  display: inline-block;
  padding: 5px 12px;
  margin-bottom: 14px;
  border-radius: 999px;
  background: var(--cc-blue-light);
  color: var(--cc-blue);
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
}

.cc-article__meta {
  display: flex;
  gap: 18px;
  color: var(--cc-muted);
  font-size: 12px;
}

.cc-article__image {
  margin-top: 55px;
}

.cc-article__image img {
  display: block;
  width: 100%;
  border-radius: var(--cc-radius);
}

.cc-article__disclaimer {
  padding: 18px 20px;
  margin: 50px 0 30px;
  border-left: 4px solid var(--cc-yellow);
  border-radius: 0 10px 10px 0;
  background: var(--cc-cream);
  color: var(--cc-muted);
  font-size: 13px;
}

.cc-entry-content {
  padding-bottom: 70px;
  color: #24364c;
  font-size: 17px;
  line-height: 1.95;
}

.cc-page__content {
  padding: 46px 52px 56px;
  border: 1px solid rgba(8, 35, 74, 0.08);
  border-radius: var(--cc-radius);
  background: var(--cc-white);
  box-shadow: var(--cc-shadow-small);
}

.cc-page-shell {
  display: grid;
  grid-template-columns: 270px minmax(0, 1fr);
  align-items: start;
  gap: 30px;
  padding-block: 70px 110px;
}

.cc-page-aside {
  position: sticky;
  top: 108px;
  padding: 32px 28px 30px;
  overflow: hidden;
  border-radius: var(--cc-radius);
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 201, 40, 0.2), transparent 36%),
    var(--cc-navy);
  box-shadow: var(--cc-shadow-small);
  color: rgba(255, 255, 255, 0.74);
}

.cc-page-aside__line {
  display: block;
  width: 42px;
  height: 4px;
  margin-bottom: 26px;
  border-radius: 999px;
  background: var(--cc-yellow);
}

.cc-page-aside .cc-eyebrow {
  margin-bottom: 10px;
  color: var(--cc-yellow);
}

.cc-page-aside h2 {
  margin-bottom: 16px;
  color: var(--cc-white);
  font-size: 22px;
  line-height: 1.5;
}

.cc-page-aside > p:last-of-type {
  margin-bottom: 25px;
  font-size: 13px;
  line-height: 1.8;
}

.cc-page-aside__trust {
  display: grid;
  gap: 12px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  font-size: 12px;
}

.cc-page-aside__trust span {
  display: flex;
  align-items: center;
  gap: 9px;
}

.cc-page-aside__trust span::before {
  display: grid;
  width: 21px;
  height: 21px;
  flex: 0 0 21px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 201, 40, 0.15);
  color: var(--cc-yellow);
  content: "\2713";
  font-size: 11px;
  font-weight: 900;
}

.cc-page__content > :first-child {
  margin-top: 0;
}

.cc-page__content > :last-child {
  margin-bottom: 0;
}

.cc-page__content p {
  margin-bottom: 1.25em;
}

.cc-page__content strong {
  color: var(--cc-navy);
}

.cc-entry-content > * {
  max-width: 100%;
}

.cc-entry-content h2 {
  padding: 16px 0 13px;
  margin: 2.3em 0 1em;
  border-bottom: 3px solid var(--cc-yellow);
  font-size: clamp(25px, 4vw, 33px);
}

.cc-entry-content h3 {
  padding-left: 14px;
  margin: 2em 0 0.9em;
  border-left: 4px solid var(--cc-blue);
  font-size: clamp(21px, 3vw, 26px);
}

.cc-entry-content a {
  font-weight: 600;
}

.cc-entry-content blockquote {
  padding: 22px 25px;
  margin: 32px 0;
  border-left: 4px solid var(--cc-yellow);
  background: var(--cc-soft);
}

.cc-entry-content table {
  display: block;
  width: 100%;
  overflow-x: auto;
  border-spacing: 0;
  border-collapse: collapse;
}

/* Contact Form 7 */
.cc-page__content .wpcf7 form {
  margin-top: 34px;
}

.cc-page__content .wpcf7-form > p {
  margin-bottom: 24px;
}

.cc-page__content .wpcf7 label {
  display: block;
  color: var(--cc-navy);
  font-size: 15px;
  font-weight: 750;
}

.cc-page__content .wpcf7-form-control-wrap {
  display: block;
  margin-top: 8px;
}

.cc-page__content .wpcf7 input[type="text"],
.cc-page__content .wpcf7 input[type="email"],
.cc-page__content .wpcf7 input[type="tel"],
.cc-page__content .wpcf7 input[type="url"],
.cc-page__content .wpcf7 select,
.cc-page__content .wpcf7 textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #b8c5d4;
  border-radius: 12px;
  background: #fbfdff;
  color: var(--cc-ink);
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.cc-page__content .wpcf7 textarea {
  min-height: 190px;
  resize: vertical;
}

.cc-page__content .wpcf7 input[type="text"]:focus,
.cc-page__content .wpcf7 input[type="email"]:focus,
.cc-page__content .wpcf7 input[type="tel"]:focus,
.cc-page__content .wpcf7 input[type="url"]:focus,
.cc-page__content .wpcf7 select:focus,
.cc-page__content .wpcf7 textarea:focus {
  border-color: var(--cc-blue);
  outline: 0;
  background: var(--cc-white);
  box-shadow: 0 0 0 4px rgba(14, 79, 145, 0.12);
}

.cc-page__content .wpcf7 input[type="submit"] {
  display: inline-flex;
  min-width: 190px;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 13px 28px;
  border: 0;
  border-radius: 999px;
  background: var(--cc-yellow);
  box-shadow: 0 10px 24px rgba(232, 171, 0, 0.24);
  color: var(--cc-navy-deep);
  cursor: pointer;
  font-weight: 800;
  transition: transform 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.cc-page__content .wpcf7 input[type="submit"]:hover {
  transform: translateY(-2px);
  background: #ffd34f;
  box-shadow: 0 14px 28px rgba(232, 171, 0, 0.3);
}

.cc-page__content .wpcf7 .wpcf7-acceptance .wpcf7-list-item {
  margin: 0;
}

.cc-page__content .wpcf7 .wpcf7-acceptance label {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-weight: 600;
}

.cc-page__content .wpcf7 .wpcf7-acceptance input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  margin: 0;
  accent-color: var(--cc-blue);
}

.cc-page__content .wpcf7-not-valid-tip {
  margin-top: 6px;
  font-size: 13px;
  font-weight: 500;
}

.cc-page__content .wpcf7 form .wpcf7-response-output {
  padding: 15px 18px;
  margin: 25px 0 0;
  border-radius: 10px;
  font-size: 14px;
}

.cc-entry-content th,
.cc-entry-content td {
  min-width: 120px;
  padding: 12px 14px;
  border: 1px solid var(--cc-line);
  text-align: left;
}

.cc-entry-content th {
  background: var(--cc-navy);
  color: var(--cc-white);
}

.cc-entry-content figure {
  margin-block: 32px;
}

.cc-entry-content img {
  border-radius: 10px;
}

.cc-tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.cc-tag-list a {
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--cc-soft);
  color: var(--cc-muted);
  font-size: 12px;
  text-decoration: none;
}

.cc-post-navigation {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 15px;
  padding-block: 30px;
  border-top: 1px solid var(--cc-line);
}

.cc-post-navigation div:last-child {
  text-align: right;
}

.cc-comments {
  padding-block: 40px 80px;
}

.comment-list {
  padding-left: 22px;
}

.comment-body {
  padding: 20px;
  margin-bottom: 15px;
  border: 1px solid var(--cc-line);
  border-radius: 10px;
}

.cc-not-found {
  display: grid;
  min-height: 70vh;
  place-items: center;
  padding-block: 80px;
  background: var(--cc-soft);
  text-align: center;
}

.cc-not-found img {
  margin-bottom: 20px;
}

.cc-not-found h1 {
  font-size: clamp(32px, 5vw, 50px);
}

/* Responsive */
@media (max-width: 1020px) {
  .cc-menu-toggle {
    display: inline-flex;
  }

  .cc-nav {
    position: fixed;
    z-index: 999;
    top: 78px;
    right: 0;
    left: 0;
    display: none;
    max-height: calc(100vh - 78px);
    align-items: stretch;
    padding: 28px 20px 36px;
    overflow-y: auto;
    border-top: 1px solid var(--cc-line);
    background: var(--cc-white);
    box-shadow: var(--cc-shadow);
  }

  body.admin-bar .cc-nav {
    top: 110px;
  }

  .cc-nav.is-open {
    display: block;
  }

  .cc-nav__list {
    display: grid;
    gap: 0;
  }

  .cc-nav__list li {
    border-bottom: 1px solid var(--cc-line);
  }

  .cc-nav__list a {
    display: block;
    padding: 15px 6px;
    font-size: 16px;
  }

  .cc-nav > .cc-button {
    width: 100%;
    margin-top: 22px;
  }

  .cc-hero,
  .cc-hero__grid {
    min-height: auto;
  }

  .cc-hero__grid {
    grid-template-columns: 1fr;
    gap: 70px;
    padding-block: 80px 100px;
  }

  .cc-hero__content {
    max-width: 760px;
  }

  .cc-hero__visual {
    max-width: 470px;
    margin-inline: auto;
  }

  .cc-intro-grid,
  .cc-diagnosis__grid,
  .cc-trust__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .cc-category-grid,
  .cc-ranking-grid,
  .cc-post-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cc-category-grid > :last-child,
  .cc-ranking-grid > :last-child {
    grid-column: 1 / -1;
  }

  .cc-site-footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cc-page-shell {
    grid-template-columns: 225px minmax(0, 1fr);
    gap: 24px;
  }

  .cc-page__content {
    padding-inline: 38px;
  }
}

@media (max-width: 782px) {
  body.admin-bar .cc-site-header {
    top: 46px;
  }

  body.admin-bar .cc-nav {
    top: 124px;
  }
}

@media (max-width: 700px) {
  .cc-container {
    width: min(calc(100% - 28px), var(--cc-container));
  }

  .cc-site-header__inner {
    min-height: 70px;
  }

  .cc-brand__mark,
  .custom-logo {
    width: 45px;
    height: 45px;
  }

  .cc-brand__name {
    font-size: 16px;
  }

  .cc-brand__tagline {
    display: none;
  }

  .cc-nav {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  body.admin-bar .cc-nav {
    top: 116px;
  }

  .cc-hero__grid {
    gap: 56px;
    padding-block: 64px 80px;
  }

  .cc-hero h1 {
    font-size: clamp(39px, 12vw, 58px);
  }

  .cc-hero__actions {
    align-items: stretch;
    flex-direction: column;
    gap: 18px;
  }

  .cc-hero__actions .cc-button {
    width: 100%;
  }

  .cc-hero__actions .cc-text-link {
    justify-content: center;
  }

  .cc-compass-card {
    width: 84vw;
  }

  .cc-section {
    padding-block: 72px;
  }

  .cc-section--intro {
    padding-block: 44px;
  }

  .cc-section-heading {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-bottom: 30px;
  }

  .cc-category-grid,
  .cc-ranking-grid,
  .cc-post-grid {
    grid-template-columns: 1fr;
  }

  .cc-category-grid > :last-child,
  .cc-ranking-grid > :last-child {
    grid-column: auto;
  }

  .cc-category-card {
    min-height: 0;
    padding: 28px;
  }

  .cc-category-card__icon {
    margin-bottom: 34px;
  }

  .cc-quiz {
    min-height: 0;
    padding: 24px 18px;
  }

  .cc-quiz__actions {
    flex-wrap: wrap;
  }

  .cc-quiz__actions .cc-button {
    min-width: 120px;
  }

  .cc-ranking-card {
    padding: 23px 20px;
  }

  .cc-disclosure {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 22px;
  }

  .cc-trust__list li {
    grid-template-columns: 36px 1fr;
  }

  .cc-site-footer__grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .cc-site-footer__notice {
    align-items: flex-start;
    flex-direction: column;
  }

  .cc-page-hero,
  .cc-article__header {
    padding-block: 55px 48px;
  }

  .cc-page-hero--branded {
    padding-block: 50px;
  }

  .cc-page-hero__grid {
    grid-template-columns: minmax(0, 1fr) 112px;
    gap: 24px;
  }

  .cc-page-hero__mark {
    width: 108px;
    height: 108px;
  }

  .cc-page-hero__mark img {
    width: 80px;
  }

  .cc-page-hero__orbit {
    inset: 8px;
  }

  .cc-page-shell {
    grid-template-columns: 1fr;
    gap: 22px;
    padding-block: 38px 76px;
  }

  .cc-page-aside {
    position: relative;
    top: auto;
    padding: 27px 24px;
  }

  .cc-page-aside__line {
    margin-bottom: 20px;
  }

  .cc-page__content {
    padding: 30px 22px 38px;
  }

  .cc-page__content .wpcf7 input[type="submit"] {
    width: 100%;
  }

  .cc-archive-layout {
    padding-block: 55px 75px;
  }

  .cc-entry-content {
    font-size: 16px;
  }

  .cc-post-navigation {
    grid-template-columns: 1fr;
  }

  .cc-post-navigation div:last-child {
    text-align: left;
  }
}

@media (max-width: 470px) {
  .cc-page-hero__grid {
    grid-template-columns: 1fr;
  }

  .cc-page-hero__mark {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
