/* ==========================================================================
   Cherry Ngọc — Franchise Landing v2
   ========================================================================== */

:root {
  --cn-green-dark: #074d2c;
  --cn-green: #0b6b3a;
  --cn-green-light: #eaf5ee;
  --cn-yellow: #fdbb16;
  --cn-yellow-hover: #e8a800;
  --cn-text: #173326;
  --cn-text-light: #5f6f66;
  --cn-white: #ffffff;
  --cn-bg: #f8faf8;
  --cn-border: #dfe8e2;
  --cn-radius: 16px;
  --cn-shadow: 0 8px 30px rgba(0, 60, 35, 0.08);
  --cn-container: 1200px;
  --cn-header-h: 78px;
  --cn-font: "Be Vietnam Pro", system-ui, -apple-system, "Segoe UI", sans-serif;
  --cn-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body.cn-body {
  margin: 0;
  font-family: var(--cn-font);
  color: var(--cn-text);
  background: var(--cn-white);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body.cn-nav-open { overflow: hidden; }

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, p { margin: 0; }

.screen-reader-text,
.cn-skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.cn-skip-link:focus {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 1000;
  width: auto;
  height: auto;
  margin: 0;
  clip: auto;
  padding: 0.6rem 1rem;
  background: var(--cn-yellow);
  color: var(--cn-green-dark);
  border-radius: 8px;
  font-weight: 700;
}

.cn-container {
  width: min(100% - 48px, var(--cn-container));
  margin-inline: auto;
}

/* ---- Buttons ---- */
.cn-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 44px;
  font-family: inherit;
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  border: 0;
  border-radius: 999px;
  padding: 0.85rem 1.5rem;
  cursor: pointer;
  transition: transform 0.25s var(--cn-ease), background 0.25s ease, box-shadow 0.25s ease;
}

.cn-btn:hover { transform: translateY(-2px); }
.cn-btn:focus-visible {
  outline: 3px solid rgba(11, 107, 58, 0.35);
  outline-offset: 2px;
}
.cn-btn:disabled { opacity: 0.7; cursor: wait; transform: none; }

.cn-btn--yellow {
  background: var(--cn-yellow);
  color: var(--cn-green-dark);
  box-shadow: 0 10px 24px rgba(253, 187, 22, 0.35);
}
.cn-btn--yellow:hover { background: var(--cn-yellow-hover); }

.cn-btn--lg {
  padding: 1.05rem 1.85rem;
  font-size: 1rem;
  text-transform: uppercase;
}

.cn-btn--block { width: 100%; }
.cn-btn--arrow .cn-icon { width: 1.1rem; height: 1.1rem; }

.cn-btn--outline {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.cn-icon { width: 1.15rem; height: 1.15rem; flex-shrink: 0; }

/* ---- Header ---- */
.cn-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.cn-header.is-scrolled {
  border-bottom-color: var(--cn-border);
  box-shadow: 0 8px 24px rgba(7, 77, 44, 0.08);
}

.cn-header__inner {
  min-height: var(--cn-header-h);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.cn-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
}

.cn-logo__mark {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 0.85rem;
  color: #fff;
  background: linear-gradient(145deg, var(--cn-green), var(--cn-green-dark));
  box-shadow: inset 0 0 0 2px rgba(253, 187, 22, 0.55);
}

.cn-logo__text { display: flex; flex-direction: column; line-height: 1.15; }
.cn-logo__brand { font-weight: 800; font-size: 1.12rem; color: var(--cn-green-dark); text-transform: uppercase; }
.cn-logo__tag { font-size: 0.68rem; color: var(--cn-text-light); font-weight: 500; }
.cn-logo .custom-logo { max-height: 48px; width: auto; }

.cn-nav { margin-left: auto; }

.cn-nav__list,
.cn-nav .menu {
  display: flex;
  align-items: center;
  gap: 0.2rem 1.2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.cn-nav a {
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--cn-text);
  padding: 0.4rem 0;
  position: relative;
}

.cn-nav .is-active > a,
.cn-nav .current-menu-item > a {
  color: var(--cn-green);
}

.cn-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--cn-green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s var(--cn-ease);
}

.cn-nav a:hover::after,
.cn-nav .is-active > a::after,
.cn-nav .current-menu-item > a::after {
  transform: scaleX(1);
}

.cn-header__cta {
  flex-shrink: 0;
  padding: 0.55rem 1rem;
  gap: 0.55rem;
}

.cn-header__cta-label {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  text-align: left;
}

.cn-header__cta-kicker {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  opacity: 0.85;
}

.cn-header__cta-phone {
  font-size: 0.95rem;
  font-weight: 800;
}

.cn-nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  margin-left: auto;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
}

.cn-nav-toggle__bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--cn-green-dark);
  margin-inline: auto;
}

/* ---- Hero (banner image) ---- */
.cn-hero--banner {
  position: relative;
  min-height: 0;
  display: block;
  overflow: hidden;
  background: #f4f6f5;
}

.cn-hero__banner-wrap {
  position: relative;
  width: 100%;
  line-height: 0;
}

.cn-hero__banner {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Hotspot khớp nút vàng trong ảnh banner */
.cn-hero__hotspot {
  position: absolute;
  left: 3.8%;
  top: 66%;
  width: 26%;
  height: 11%;
  border-radius: 999px;
  z-index: 2;
}

.cn-hero__hotspot:focus-visible {
  outline: 3px solid var(--cn-yellow);
  outline-offset: 3px;
}

/* ---- Stats ---- */
.cn-stats {
  margin-top: -1.75rem;
  position: relative;
  z-index: 2;
  padding-bottom: 1rem;
}

.cn-stats__card {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--cn-white);
  border: 1px solid var(--cn-border);
  border-radius: var(--cn-radius);
  box-shadow: var(--cn-shadow);
  overflow: hidden;
}

.cn-stats__item {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  padding: 1.35rem 1.2rem;
  border-right: 1px solid var(--cn-border);
}

.cn-stats__item:last-child { border-right: 0; }

.cn-stats__icon {
  width: 40px;
  height: 40px;
  color: var(--cn-green);
  flex-shrink: 0;
}

.cn-stats__icon svg { width: 100%; height: 100%; }

.cn-stats__num {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--cn-green-dark);
  line-height: 1.25;
  text-transform: uppercase;
}

.cn-stats__num span { font-size: 0.82rem; }

.cn-stats__desc {
  margin-top: 0.2rem;
  font-size: 0.82rem;
  color: var(--cn-text-light);
}

/* ---- Sections ---- */
.cn-section { padding: 4.5rem 0; }

.cn-section__head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 2.75rem;
}

.cn-section__head--left {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
  max-width: none;
}

.cn-section__title {
  font-size: clamp(25px, 3vw, 38px);
  font-weight: 800;
  color: var(--cn-green-dark);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 1.25;
}

.cn-reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s var(--cn-ease), transform 0.7s var(--cn-ease);
}

.cn-reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* ---- Why ---- */
.cn-why { background: var(--cn-green-light); }

.cn-why__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
}

.cn-why__item { text-align: center; padding: 0.35rem; }

.cn-why__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 0.9rem;
  color: var(--cn-green);
  display: grid;
  place-items: center;
}

.cn-why__icon svg { width: 56px; height: 56px; }

.cn-why__title {
  font-size: 1rem;
  font-weight: 800;
  color: var(--cn-green-dark);
  margin-bottom: 0.4rem;
}

.cn-why__desc {
  font-size: 0.88rem;
  color: var(--cn-text-light);
}

/* ---- Support ---- */
.cn-support__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.cn-support-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--cn-white);
  border: 1px solid var(--cn-border);
  border-radius: var(--cn-radius);
  overflow: hidden;
  transition: transform 0.25s var(--cn-ease), box-shadow 0.25s ease;
}

.cn-support-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--cn-shadow);
}

.cn-support-card__media {
  aspect-ratio: 16 / 10;
  background-size: cover;
  background-position: center;
  object-fit: cover;
}

.cn-support-card__media--1 { background-image: linear-gradient(160deg, #d8f3dc, #40916c 55%, #1b4332); }
.cn-support-card__media--2 { background-image: linear-gradient(160deg, #fff3cd, #fdbb16 45%, #0b6b3a); }
.cn-support-card__media--3 { background-image: linear-gradient(160deg, #caf0f8, #52b788, #074d2c); }
.cn-support-card__media--4 { background-image: linear-gradient(160deg, #fefae0, #95d5b2, #1b4332); }
.cn-support-card__media--5 { background-image: linear-gradient(160deg, #e9edc9, #74c69d, #2d6a4f); }
.cn-support-card__media--6 {
  background-image:
    linear-gradient(135deg, rgba(253,187,22,0.35), transparent 40%),
    linear-gradient(160deg, #d8f3dc, #0b6b3a 50%, #074d2c);
}

.cn-support-card__body {
  padding: 1.15rem 1.2rem 1.35rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.cn-support-card__title {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--cn-green-dark);
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}

.cn-support-card__desc {
  font-size: 0.9rem;
  color: var(--cn-text-light);
}

.cn-support__cta {
  margin-top: 2.5rem;
  text-align: center;
}

/* ---- Models + Invest ---- */
.cn-models__layout {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 1.5rem;
  align-items: start;
}

.cn-models__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.cn-model-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--cn-border);
  border-radius: var(--cn-radius);
  overflow: hidden;
  background: #fff;
  transition: transform 0.25s var(--cn-ease), box-shadow 0.25s ease;
}

.cn-model-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--cn-shadow);
}

.cn-model-card__media {
  aspect-ratio: 1 / 1.05;
  background-size: cover;
  background-position: center;
}

.cn-model-card__media--1 { background-image: linear-gradient(145deg, #fefae0, #95d5b2 45%, #1b4332); }
.cn-model-card__media--2 { background-image: linear-gradient(145deg, #d8f3dc, #74c69d 40%, #074d2c); }
.cn-model-card__media--3 { background-image: linear-gradient(145deg, #fff3cd, #fdbb16 35%, #0b6b3a); }

.cn-model-card__body { padding: 1rem 1rem 0.75rem; flex: 1; }

.cn-model-card__title {
  font-size: 1rem;
  font-weight: 800;
  color: var(--cn-green-dark);
  margin-bottom: 0.45rem;
  line-height: 1.3;
}

.cn-model-card__meta {
  font-size: 0.82rem;
  color: var(--cn-text-light);
  margin-bottom: 0.25rem;
}

.cn-model-card__desc {
  margin-top: 0.4rem;
  font-size: 0.88rem;
  color: var(--cn-text-light);
}

.cn-model-card__badge {
  display: block;
  text-align: center;
  padding: 0.7rem 0.5rem;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.cn-model-card__badge--green { background: var(--cn-green); color: #fff; }
.cn-model-card__badge--yellow { background: var(--cn-yellow); color: var(--cn-green-dark); }
.cn-model-card__badge--dark { background: var(--cn-green-dark); color: #fff; }

.cn-invest {
  position: sticky;
  top: calc(var(--cn-header-h) + 1rem);
  background: linear-gradient(165deg, #fff 0%, #f7faf8 100%);
  border: 1px solid var(--cn-border);
  border-radius: var(--cn-radius);
  padding: 1.5rem;
  box-shadow: var(--cn-shadow);
}

.cn-invest__title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--cn-green-dark);
  text-transform: uppercase;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.cn-invest__list { display: grid; gap: 0.85rem; }

.cn-invest__list li {
  display: grid;
  gap: 0.2rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px dashed var(--cn-border);
}

.cn-invest__label {
  font-size: 0.85rem;
  color: var(--cn-text-light);
}

.cn-invest__value {
  color: var(--cn-green);
  font-size: 1.02rem;
}

.cn-invest__art {
  margin-top: 1.25rem;
  height: 130px;
  border-radius: 12px;
  background:
    radial-gradient(circle at 72% 40%, rgba(253, 187, 22, 0.55), transparent 45%),
    linear-gradient(120deg, #074d2c, #0b6b3a 55%, #95d5b2);
}

.cn-invest__note {
  margin-top: 0.75rem;
  font-size: 0.78rem;
  color: var(--cn-text-light);
}

/* ---- Process ---- */
.cn-process { background: var(--cn-bg); }

.cn-process__track {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.75rem;
  position: relative;
}

.cn-process__track::before {
  content: "";
  position: absolute;
  top: 28px;
  left: 6%;
  right: 6%;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--cn-green) 0 10px, transparent 10px 18px);
  opacity: 0.35;
  pointer-events: none;
}

.cn-process__step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.cn-process__num {
  width: 56px;
  height: 56px;
  margin: 0 auto 0.75rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--cn-green);
  color: var(--cn-green);
  font-weight: 800;
  font-size: 1.1rem;
  box-shadow: 0 6px 16px rgba(11, 107, 58, 0.12);
}

.cn-process__label {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--cn-text);
  line-height: 1.35;
}

.cn-process__desc {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.78rem;
  color: var(--cn-text-light);
}

/* ---- Testimonials ---- */
.cn-testimonials__desktop {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.cn-testimonials__mobile { display: none; }

.cn-quote {
  margin: 0;
  padding: 1.5rem 1.35rem 1.35rem;
  border: 1px solid var(--cn-border);
  border-radius: var(--cn-radius);
  background: #fff;
  display: grid;
  gap: 0.85rem;
  transition: box-shadow 0.3s ease, transform 0.25s var(--cn-ease);
}

.cn-quote:hover {
  box-shadow: var(--cn-shadow);
  transform: translateY(-4px);
}

.cn-quote__avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(145deg, var(--cn-green), var(--cn-green-dark));
  border: 3px solid var(--cn-green-light);
}

.cn-quote__text {
  font-style: italic;
  color: var(--cn-text-light);
  font-size: 0.95rem;
}

.cn-quote__name {
  font-style: normal;
  font-weight: 800;
  color: var(--cn-green-dark);
  text-transform: uppercase;
}

.cn-quote__role {
  display: block;
  font-size: 0.85rem;
  color: var(--cn-text-light);
}

.cn-quote__stars {
  color: var(--cn-yellow);
  letter-spacing: 0.08em;
}

/* ---- Register form ---- */
.cn-register {
  background:
    radial-gradient(ellipse 55% 70% at 12% 80%, rgba(253, 187, 22, 0.16), transparent 55%),
    linear-gradient(125deg, var(--cn-green-dark), var(--cn-green) 55%, #12824a);
  color: #fff;
  padding: 4.25rem 0;
}

.cn-register__inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
  align-items: center;
}

.cn-register__title {
  font-size: clamp(1.7rem, 3.2vw, 2.45rem);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.15;
  margin-bottom: 0.9rem;
}

.cn-register__title span { display: block; }

.cn-register__text {
  opacity: 0.92;
  margin-bottom: 1.2rem;
  max-width: 38ch;
}

.cn-register__perks {
  display: grid;
  gap: 0.55rem;
  margin-bottom: 1.5rem;
}

.cn-register__perks li {
  padding-left: 1.55rem;
  position: relative;
  font-weight: 600;
}

.cn-register__perks li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--cn-yellow);
  font-weight: 800;
}

.cn-register__visual {
  height: 150px;
  max-width: 300px;
  border-radius: var(--cn-radius);
  background:
    linear-gradient(135deg, rgba(255,255,255,0.14), transparent),
    linear-gradient(160deg, #95d5b2, #074d2c);
}

.cn-form {
  background: #fff;
  color: var(--cn-text);
  border-radius: 18px;
  padding: 1.55rem 1.45rem 1.65rem;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.2);
}

.cn-form__honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  overflow: hidden;
}

.cn-form__row { margin-bottom: 0.9rem; }

.cn-form__row label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.cn-form__row label span { color: #c0392b; }

.cn-form__row input,
.cn-form__row select,
.cn-form__row textarea {
  width: 100%;
  font: inherit;
  border: 1px solid #cfd9d3;
  border-radius: 10px;
  padding: 0.8rem 0.9rem;
  min-height: 44px;
  background: #fafcfb;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.cn-form__row input:focus,
.cn-form__row select:focus,
.cn-form__row textarea:focus {
  outline: none;
  border-color: var(--cn-green);
  box-shadow: 0 0 0 3px rgba(11, 107, 58, 0.15);
  background: #fff;
}

.cn-form__row .is-invalid { border-color: #c0392b; }

.cn-form__error {
  display: block;
  min-height: 1.1em;
  font-size: 0.78rem;
  color: #c0392b;
  margin-top: 0.25rem;
}

.cn-form__status {
  margin-top: 0.85rem;
  font-size: 0.9rem;
  font-weight: 700;
  text-align: center;
}

.cn-form__status.is-ok { color: var(--cn-green); }
.cn-form__status.is-err { color: #c0392b; }

/* ---- Promo ---- */
.cn-promo {
  background: var(--cn-green-dark);
  padding: 0 0 1.75rem;
  margin-top: -0.25rem;
}

.cn-promo__banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: var(--cn-yellow);
  color: var(--cn-green-dark);
  border-radius: 999px;
  padding: 1rem 1.5rem;
  font-weight: 800;
  text-align: center;
  box-shadow: 0 10px 28px rgba(253, 187, 22, 0.35);
  animation: cn-pulse 2.8s ease-in-out infinite;
}

.cn-promo__text {
  font-size: clamp(0.85rem, 1.8vw, 1.05rem);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.35;
}

@keyframes cn-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.015); }
}

/* ---- Footer ---- */
.cn-footer {
  background: #052618;
  color: rgba(255, 255, 255, 0.88);
  padding-top: 3.25rem;
}

.cn-footer__grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 2.5rem;
}

.cn-logo--footer .cn-logo__brand { color: #fff; }

.cn-footer__desc {
  margin-top: 0.85rem;
  font-size: 0.9rem;
  opacity: 0.8;
  max-width: 32ch;
}

.cn-social {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
}

.cn-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.72rem;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: background 0.2s ease;
}

.cn-social a:hover {
  background: var(--cn-yellow);
  color: var(--cn-green-dark);
}

.cn-footer__title {
  font-size: 1rem;
  font-weight: 800;
  color: var(--cn-yellow);
  margin-bottom: 0.9rem;
}

.cn-footer__list {
  display: grid;
  gap: 0.55rem;
  font-size: 0.9rem;
}

.cn-footer__list a:hover { color: var(--cn-yellow); }

.cn-fanpage-placeholder {
  border: 1px dashed rgba(255, 255, 255, 0.25);
  border-radius: 12px;
  padding: 1rem;
  min-height: 140px;
  display: grid;
  align-content: center;
  gap: 0.75rem;
  font-size: 0.88rem;
}

.cn-footer__bar {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1rem 0;
  font-size: 0.85rem;
  text-align: center;
  opacity: 0.75;
}

.cn-content { padding: 3rem 0; }

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
