/* ===============================================
   DESIGN SYSTEM - Warm, trustworthy, human
   "The design should disappear."
   =============================================== */
:root {
  --blue: #3D6BE0;
  --blue-dark: #2F55B8;
  --blue-light: #EAF0FF;
  --terra: #D4885A;
  --terra-light: #FDF0E6;
  --sage: #2DA87A;
  --sage-light: #E6F7EF;
  --purple: #7C5CDB;

  --color-dark: #1E1E32;
  --color-body: #4E4E66;
  --color-muted: #7E7E98;
  --color-light: #A0A0B6;
  --color-bg: #FAFAF7;
  --color-white: #FFFFFF;
  --color-warm: #F4F1EC;
  --color-border: #E5E2DC;
  --color-border-hover: #D5D0C8;

  --font-heading: 'Source Serif 4', Georgia, 'Times New Roman', serif;
  --font-body: 'DM Sans', system-ui, -apple-system, sans-serif;
  --max-content: 1240px;
  --max-text: 1000px;
  --radius: 12px;
  --transition: 0.2s ease;
}


/* Force base type on the whole page */
body.hk {
  font-family: var(--font-body) !important;
}

/* Force headings back to the serif */
body.hk h1,
body.hk h2,
body.hk h3,
body.hk h4,
body.hk h5,
body.hk h6 {
  font-family: var(--font-heading) !important;
}

body.hk .has-fira-sans-font-family {
  font-family: var(--font-body) !important;
}

body.hk .has-literata-font-family {
  font-family: var(--font-heading) !important;
}


.hk {
  font-family: var(--font-body);
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.7;
  color: var(--color-body);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  width: 100%;
  margin-left: 0;
  margin-right: 0;
  overflow-x: hidden;
}

.hk,
.hk *,
.hk *::before,
.hk *::after {
  box-sizing: border-box;
}

.hk * {
  margin: 0;
  padding: 0;
}

.hk a {
  color: var(--blue);
  text-decoration: none;
}

.hk a:hover {
  text-decoration: underline;
}

.hk img {
  max-width: 100%;
  display: block;
}

.hk h1,
.hk h2,
.hk h3 {
  font-family: var(--font-heading);
  color: var(--color-dark);
  font-weight: 700;
  line-height: 1.2;
}

.hk h1 {
  font-size: 2.75rem;
  letter-spacing: -0.02em;
}

.hk h2 {
  font-size: 2rem;
  letter-spacing: -0.015em;
}

.hk h3 {
  font-size: 1.25rem;
  letter-spacing: -0.01em;
  line-height: 1.35;
}

.hk p {
  max-width: none;
}

.hk ::selection {
  background: rgba(61, 107, 224, 0.15);
}

/* Gradient text - light blue to deep navy */
.hk .text-shimmer {
  background: linear-gradient(135deg, #7EB4F0 0%, #3D6BE0 40%, #1E1E52 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Subtle entrance animations */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-16px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hk .animate-on-scroll {
  opacity: 1;
  transform: translateY(0);
}

.hk.hk-js .animate-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.hk.hk-js .animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered children */
.hk .stagger-children .animate-on-scroll:nth-child(1) {
  transition-delay: 0s;
}

.hk .stagger-children .animate-on-scroll:nth-child(2) {
  transition-delay: 0.08s;
}

.hk .stagger-children .animate-on-scroll:nth-child(3) {
  transition-delay: 0.16s;
}

.hk .stagger-children .animate-on-scroll:nth-child(4) {
  transition-delay: 0.24s;
}

.hk .stagger-children .animate-on-scroll:nth-child(5) {
  transition-delay: 0.32s;
}

.hk .stagger-children .animate-on-scroll:nth-child(6) {
  transition-delay: 0.4s;
}

.hk .stagger-children .animate-on-scroll:nth-child(7) {
  transition-delay: 0.48s;
}

.hk .stagger-children .animate-on-scroll:nth-child(8) {
  transition-delay: 0.56s;
}

@media (max-width: 768px) {
  .hk {
    font-size: 1rem;
  }

  .hk h1 {
    font-size: 1.875rem;
  }

  .hk h2 {
    font-size: 1.5rem;
  }

  .hk h3 {
    font-size: 1.125rem;
  }
}

@media (prefers-reduced-motion: reduce) {

  .hk *,
  .hk *::before,
  .hk *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ===============================================
   EMOTIONAL PHOTO MOSAIC
   =============================================== */
.hk .mosaic-section {
  padding: 0;
  overflow: hidden;
  background: var(--color-warm);
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.hk .mosaic-track {
  display: flex;
  width: max-content;
  animation: scrollRight 80s linear infinite;
}

@keyframes scrollRight {
  from {
    transform: translateX(-50%);
  }

  to {
    transform: translateX(0);
  }
}

.hk .mosaic-img {
  position: relative;
  width: 320px;
  height: 240px;
  flex-shrink: 0;
}

.hk .mosaic-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.85);
}

/* Label on hover */
.hk .mosaic-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px 14px 10px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.55));
  color: #fff;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.hk .mosaic-img:hover .mosaic-label {
  opacity: 1;
}

@media (max-width: 480px) {
  .hk .mosaic-img {
    width: 240px;
    height: 180px;
  }
}

/* ===============================================
   LAYOUT
   =============================================== */
.hk .section {
  padding: 80px 0;
}

.hk .section-inner {
  max-width: var(--max-content);
  margin: 0 auto;
  padding: 0 24px;
}

.hk .section-inner.is-text {
  max-width: var(--max-text);
}

.hk .section-inner.is-content {
  max-width: var(--max-content);
}

.hk .section-inner.is-full {
  max-width: none;
}

.hk .section-warm {
  background: var(--color-warm);
}

.hk .text-center {
  text-align: center;
}

.hk .section-header {
  text-align: center;
  margin-bottom: 48px;
}

.hk .section-header h2 {
  margin-bottom: 10px;
}

.hk .section-header p {
  max-width: 680px;
  margin: 0 auto;
  color: var(--color-muted);
  font-size: 1.1rem;
}

@media (max-width: 768px) {
  .hk .section {
    padding: 52px 0;
  }
}

/* ===============================================
   BUTTONS
   =============================================== */
.hk .btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 0.9675rem;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  line-height: 1;
}

.hk .btn:hover {
  text-decoration: none;
}

.hk .btn-primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 2px 10px rgba(61, 107, 224, 0.18);
}

.hk .btn-primary:hover {
  background: var(--blue-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(61, 107, 224, 0.24);
}

.hk .btn-warm {
  background: var(--color-white);
  color: var(--color-dark);
  border: 1px solid var(--color-border);
}

.hk .btn-warm:hover {
  border-color: var(--color-border-hover);
  background: var(--color-warm);
}

.hk .btn-lg {
  font-size: 1.0625rem;
  padding: 16px 32px;
}

@media (max-width: 640px) {
  .hk .btn {
    width: 100%;
    justify-content: center;
    padding: 15px 28px;
  }
}

.hk .hk-form-msg {
  margin-top: 10px;
  font-size: 0.875rem;
  color: var(--color-muted);
  text-align: center;
}

.hk .hk-form-msg.is-success {
  color: var(--sage);
}

.hk .hk-form-msg.is-error {
  color: var(--terra);
}

/* Klaviyo embed styling */
.hk .klaviyo-form-Stcmg2,
.hk .klaviyo-form-Stcmg2 * {
  font-family: var(--font-body) !important;
}

.hk .klaviyo-form-Stcmg2 h1,
.hk .klaviyo-form-Stcmg2 h2,
.hk .klaviyo-form-Stcmg2 h3,
.hk .klaviyo-form-Stcmg2 h4 {
  font-family: var(--font-heading) !important;
  color: var(--color-dark) !important;
}

.hk .klaviyo-form-Stcmg2 input,
.hk .klaviyo-form-Stcmg2 button {
  font-family: var(--font-body) !important;
}

/* ===============================================
   1. HERO
   =============================================== */
.hk .hero {
  padding: 80px 0 72px;
  text-align: center;
  background: linear-gradient(170deg, #FFFFFF 0%, #F5F0FF 40%, #EFF6FF 70%, #FFFFFF 100%);
  border-bottom: 1px solid var(--color-border);
}

.hk .hero h1 {
  max-width: 860px;
  margin: 0 auto 20px;
  animation: fadeUp 0.7s ease both;
}

.hk .hero-sub {
  max-width: 720px;
  margin: 0 auto 32px;
  font-size: 1.0625rem;
  color: var(--color-body);
  animation: fadeUp 0.7s ease 0.15s both;
}

.hk .hero-ctas {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp 0.7s ease 0.3s both;
}

.hk .hero-micro {
  margin-top: 20px;
  font-size: 1rem;
  color: var(--color-muted);
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeIn 0.8s ease 0.5s both;
}

.hk .hero-micro span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.hk .hero-micro svg {
  width: 14px;
  height: 14px;
  stroke: var(--sage);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@media (max-width: 640px) {
  .hk .hero {
    padding: 56px 0 48px;
  }

  .hk .hero-ctas {
    flex-direction: column;
    align-items: stretch;
    padding: 0 8px;
  }

  .hk .hero-micro {
    flex-direction: column;
    align-items: center;
    gap: 6px;
  }
}

/* ===============================================
   2. PROBLEM
   =============================================== */
.hk .problem-inner {
  max-width: 780px;
  margin: 0 auto;
}

.hk .problem-inner h2 {
  margin-bottom: 20px;
  text-align: center;
}

.hk .problem-inner p {
  margin: 0 auto 14px;
  text-align: center;
}

.hk .problem-inner p:last-of-type {
  margin-bottom: 0;
}

.hk .problem-hl {
  color: var(--color-dark);
  font-weight: 600;
}

/* ===============================================
   3. VALUE STACK
   =============================================== */
.hk .stack {
  max-width: 680px;
  margin: 0 auto;
}

.hk .si {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid var(--color-border);
}

.hk .si:first-child {
  border-top: 1px solid var(--color-border);
}

.hk .si-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.hk .si-check {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--sage-light);
  margin-top: 2px;
}

.hk .si-check svg {
  width: 12px;
  height: 12px;
  fill: none;
  stroke: var(--sage);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hk .si-name {
  font-size: 1.0625rem;
  color: var(--color-dark);
  font-weight: 500;
}

.hk .si-desc {
  font-size: 0.95rem;
  color: var(--color-muted);
  margin-top: 1px;
}

.hk .si-val {
  font-size: 1rem;
  color: var(--color-light);
  font-weight: 500;
  white-space: nowrap;
}

.hk .si-bonus .si-check {
  background: var(--terra-light);
}

.hk .si-bonus .si-check svg {
  stroke: var(--terra);
}

.hk .si-bonus .si-name {
  color: var(--terra);
  font-weight: 600;
}

.hk .stack-foot {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 20px 0 0;
  max-width: 680px;
  margin: 0 auto;
}

.hk .stack-foot-label {
  font-size: 1rem;
  color: var(--color-muted);
}

.hk .stack-foot-label s {
  text-decoration: line-through;
}

.hk .stack-foot-price {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-dark);
  font-family: var(--font-heading);
}

.hk .stack-foot-price .from {
  font-size: 1rem;
  font-weight: 400;
  color: var(--color-muted);
  font-family: var(--font-body);
  margin-right: 4px;
}

.hk .stack-cta {
  text-align: center;
  margin-top: 16px;
}

/* ===============================================
   4. DIFFERENTIATION
   =============================================== */
.hk .diff-list {
  max-width: 660px;
  margin: 0 auto;
}

.hk .di {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 4px 20px;
  padding: 18px 0;
  border-bottom: 1px solid var(--color-border);
  align-items: baseline;
}

.hk .di:first-child {
  border-top: 1px solid var(--color-border);
}

.hk .di-not {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-light);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.hk .di-is {
  font-size: 0.9675rem;
  color: var(--color-body);
  max-width: none;
  line-height: 1.55;
}

.hk .di-is strong {
  color: var(--color-dark);
  font-weight: 600;
}

@media (max-width: 640px) {
  .hk .di {
    grid-template-columns: 1fr;
    gap: 2px;
  }
}

/* ===============================================
   5. TESTIMONIALS
   =============================================== */
.hk .tg {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.hk .tc {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 28px 24px 24px;
  position: relative;
  transition: box-shadow var(--transition), transform var(--transition);
}

.hk .tc:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
  transform: translateY(-3px);
}

.hk .tc-quote {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 8px;
  display: block;
}

.hk .tc:nth-child(6n+1) .tc-quote {
  color: var(--blue);
}

.hk .tc:nth-child(6n+2) .tc-quote {
  color: var(--sage);
}

.hk .tc:nth-child(6n+3) .tc-quote {
  color: var(--terra);
}

.hk .tc:nth-child(6n+4) .tc-quote {
  color: var(--purple);
}

.hk .tc:nth-child(6n+5) .tc-quote {
  color: var(--blue);
}

.hk .tc:nth-child(6n+6) .tc-quote {
  color: var(--sage);
}

.hk .tc-text {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--color-body);
  margin-bottom: 16px;
  max-width: none;
}

.hk .tc-who {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hk .tc-av {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.75rem;
}

.hk .tc:nth-child(6n+1) .tc-av {
  background: var(--blue-light);
  color: var(--blue);
}

.hk .tc:nth-child(6n+2) .tc-av {
  background: var(--sage-light);
  color: var(--sage);
}

.hk .tc:nth-child(6n+3) .tc-av {
  background: var(--terra-light);
  color: var(--terra);
}

.hk .tc:nth-child(6n+4) .tc-av {
  background: rgba(124, 92, 219, 0.1);
  color: var(--purple);
}

.hk .tc:nth-child(6n+5) .tc-av {
  background: var(--blue-light);
  color: var(--blue);
}

.hk .tc:nth-child(6n+6) .tc-av {
  background: var(--sage-light);
  color: var(--sage);
}

.hk .tc-name {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--color-dark);
}

.hk .tc-meta {
  font-size: 0.875rem;
  color: var(--color-muted);
}

@media (max-width: 640px) {
  .hk .tg {
    grid-template-columns: 1fr;
  }
}

/* ===============================================
   6. HOW IT WORKS
   =============================================== */
.hk .steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 820px;
  margin: 0 auto;
}

.hk .step {
  text-align: center;
}

.hk .step-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  font-family: var(--font-heading);
  margin: 0 auto 16px;
  background: var(--blue-light);
  color: var(--blue);
}

.hk .step h3 {
  margin-bottom: 6px;
}

.hk .step p {
  margin: 0 auto;
  color: var(--color-muted);
  font-size: 0.9375rem;
}

@media (max-width: 768px) {
  .hk .steps {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* SAMPLE CALLOUT */
.hk .sample {
  width: 100%;
  background: var(--color-white);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: 60px 24px;
  text-align: center;
}

.hk .sample h3 {
  margin-bottom: 12px;
  font-size: 1.5rem;
}

.hk .sample p {
  color: var(--color-body);
  font-size: 1.1rem;
  margin: 0 auto 24px;
  max-width: 700px;
  line-height: 1.6;
}

.hk .sample-paths {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.hk .sample-paths .or {
  color: var(--color-muted);
  font-size: 1rem;
  font-weight: 500;
}

.hk .sample-paths .btn {
  padding: 10px 20px;
  font-size: 0.875rem;
}

@media (max-width: 640px) {
  .hk .sample-paths {
    flex-direction: column;
  }

  .hk .sample-paths .or {
    display: none;
  }
}

/* ===============================================
   7. WHO IS THIS FOR
   =============================================== */
.hk .aud-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.hk .ac {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: box-shadow var(--transition), transform var(--transition);
}

.hk .ac:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
  transform: translateY(-2px);
}

.hk .ac.primary {
  grid-column: 1 / -1;
  border-left: 4px solid var(--blue);
  border-radius: 4px var(--radius) var(--radius) 4px;
  background: linear-gradient(135deg, #FAFAFE, #F8F6FF);
}

.hk .ac.primary .ac-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  max-width: 700px;
  margin: 0 auto;
}

.hk .ac-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 3px 10px;
  border-radius: 4px;
  margin-bottom: 10px;
}

.hk .ac.primary .ac-tag {
  background: var(--blue-light);
  color: var(--blue);
}

.hk .ac:not(.primary):nth-of-type(2) .ac-tag {
  background: var(--sage-light);
  color: var(--sage);
}

.hk .ac:not(.primary):nth-of-type(3) .ac-tag {
  background: var(--terra-light);
  color: var(--terra);
}

.hk .ac:not(.primary):nth-of-type(4) .ac-tag {
  background: var(--blue-light);
  color: var(--blue);
}

.hk .ac h3 {
  margin-bottom: 10px;
}

.hk .ac-quotes {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.hk .ac-quotes li {
  font-size: 1rem;
  color: var(--color-body);
  font-style: italic;
  padding-left: 14px;
  border-left: 2px solid var(--color-border);
  line-height: 1.5;
}

.hk .ac.primary .ac-quotes li {
  border-left: none;
  padding-left: 0;
}

.hk .ac-promise {
  margin-top: 12px;
  font-size: 0.9375rem;
  color: var(--color-muted);
  max-width: none;
  line-height: 1.55;
}

@media (max-width: 768px) {
  .hk .aud-grid {
    grid-template-columns: 1fr;
  }

  .hk .ac.primary .ac-inner {
    grid-template-columns: 1fr;
  }
}

/* ===============================================
   8. PRICING
   =============================================== */
.hk .pg {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  align-items: start;
}

.hk .tier {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  position: relative;
  transition: box-shadow var(--transition);
}

.hk .tier:hover {
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

.hk .tier.feat {
  border-color: var(--blue);
  box-shadow: 0 4px 24px rgba(61, 107, 224, 0.12);
}

.hk .tier-badge {
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--blue);
  color: #fff;
  font-size: 0.625rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 4px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
}

.hk .tier-name {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--color-dark);
  font-family: var(--font-heading);
  margin-bottom: 2px;
}

.hk .tier-desc {
  font-size: 0.9rem;
  color: var(--color-muted);
  margin-bottom: 16px;
  max-width: none;
}

.hk .tier-price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-dark);
  font-family: var(--font-heading);
  line-height: 1;
  margin-bottom: 2px;
}

.hk .tier-price .cur {
  font-size: 1.25rem;
  vertical-align: super;
}

.hk .tier-orig {
  font-size: 1rem;
  color: var(--color-light);
  text-decoration: line-through;
  margin-bottom: 16px;
  min-height: 1.2em;
}

.hk .tier-feats {
  list-style: none;
  text-align: left;
  margin: 16px 0;
  padding: 16px 0 0;
  border-top: 1px solid var(--color-border);
}

.hk .tier-feats li {
  padding: 4px 0;
  font-size: 0.95rem;
  color: var(--color-body);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.45;
}

.hk .tier-feats li::before {
  content: "\2713";
  color: var(--sage);
  font-weight: 700;
  flex-shrink: 0;
  font-size: 0.875rem;
}

.hk .tier-feats li.na {
  color: var(--color-light);
}

.hk .tier-feats li.na::before {
  content: "\2014";
  color: var(--color-light);
}

.hk .tier-scar {
  font-size: 0.8rem;
  color: var(--terra);
  margin-top: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.hk .tier .btn {
  margin-top: 8px;
  width: 100%;
  justify-content: center;
}

.hk .pg-note {
  text-align: center;
  margin-top: 24px;
  font-size: 1rem;
  color: var(--color-muted);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}

.hk .pg-note strong {
  color: var(--color-body);
  font-weight: 600;
}

@media (max-width: 1024px) {
  .hk .pg {
    grid-template-columns: 1fr;
    max-width: 380px;
    margin-left: auto;
    margin-right: auto;
  }

  .hk .tier.feat {
    order: -1;
  }
}

/* ===============================================
   9. FAQ
   =============================================== */
.hk .faq-list {
  max-width: 660px;
  margin: 0 auto;
}

.hk .faq-item {
  border-bottom: 1px solid var(--color-border);
}

.hk .faq-item:first-child {
  border-top: 1px solid var(--color-border);
}

.hk .faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 0;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  gap: 16px;
}

.hk .faq-q::after {
  content: "+";
  font-size: 1.25rem;
  color: var(--color-light);
  flex-shrink: 0;
  font-weight: 400;
}

.hk .faq-item.open .faq-q::after {
  content: "\2212";
}

.hk .faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--color-body);
}

.hk .faq-item.open .faq-a {
  max-height: 500px;
  padding-bottom: 18px;
}

/* ===============================================
   10. FINAL CTA
   =============================================== */
.hk .final {
  text-align: center;
  background: linear-gradient(170deg, #FFFFFF, #F5F0FF 50%, #EFF8F5 100%);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.hk .final h2 {
  margin-bottom: 12px;
}

.hk .final p {
  margin: 0 auto 28px;
}

/* ===============================================
   11. CAPTURE
   =============================================== */
.hk .cap {
  max-width: 460px;
  margin: 0 auto;
  text-align: center;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 32px 28px;
}

.hk .cap h3 {
  margin-bottom: 6px;
  font-size: 1.125rem;
}

.hk .cap>p {
  margin: 0 auto 20px;
  color: var(--color-muted);
  font-size: 0.9375rem;
}

.hk .cap-row {
  display: flex;
  gap: 10px;
}

.hk .cap-row input {
  flex: 1;
  padding: 12px 14px;
  font-size: 0.9375rem;
  font-family: var(--font-body);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  color: var(--color-dark);
  background: var(--color-bg);
}

.hk .cap-row input:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(74, 111, 165, 0.1);
}

.hk .cap-row input::placeholder {
  color: var(--color-light);
}

.hk .cap-row .btn {
  white-space: nowrap;
  width: auto;
}

@media (max-width: 640px) {
  .hk .cap-row {
    flex-direction: column;
  }

  .hk .cap-row .btn {
    width: 100%;
  }
}

/* TRUST */
.hk .trust {
  padding: 32px 24px;
  text-align: center;
}

.hk .trust p {
  margin: 0 0 4px;
  color: var(--color-muted);
  font-size: 0.875rem;
  max-width: none;
}

.hk :focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
}

/* ===============================================
   HOME OVERRIDES
   =============================================== */
.hk-home .hero {
  padding: 88px 0 80px;
  text-align: center;
  background: linear-gradient(170deg, #FFFFFF 0%, #F5F0FF 40%, #EFF6FF 70%, #FFFFFF 100%);
  border-bottom: 1px solid var(--color-border);
}

.hk-home .hero h1 {
  max-width: 800px;
  margin: 0 auto 20px;
  animation: fadeUp 0.7s ease both;
}

.hk-home .hero-sub {
  max-width: 620px;
  margin: 0 auto 36px;
  font-size: 1.125rem;
  color: var(--color-body);
  animation: fadeUp 0.7s ease 0.15s both;
}

.hk-home .hero-ctas {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp 0.7s ease 0.3s both;
}

.hk-home .hero-micro {
  margin-top: 20px;
  font-size: 0.875rem;
  color: var(--color-muted);
  text-align: center !important;
  display: block !important;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  animation: fadeIn 0.8s ease 0.5s both;
}

@media (max-width: 640px) {
  .hk-home .hero {
    padding: 60px 0 52px;
  }

  .hk-home .hero-ctas {
    flex-direction: column;
    align-items: stretch;
    padding: 0 8px;
  }
}

/* Cards */
.hk-home .card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.hk-home .card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 32px 24px;
  transition: box-shadow var(--transition), transform var(--transition);
}

.hk-home .card:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
  transform: translateY(-3px);
}

.hk-home .card-icon {
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  margin-bottom: 18px;
}

.hk-home .card:nth-child(1) .card-icon {
  background: var(--sage-light);
}

.hk-home .card:nth-child(2) .card-icon {
  background: var(--blue-light);
}

.hk-home .card:nth-child(3) .card-icon {
  background: var(--terra-light);
}

.hk-home .card-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hk-home .card:nth-child(1) .card-icon svg {
  stroke: var(--sage);
}

.hk-home .card:nth-child(2) .card-icon svg {
  stroke: var(--blue);
}

.hk-home .card:nth-child(3) .card-icon svg {
  stroke: var(--terra);
}

.hk-home .card h3 {
  margin-bottom: 8px;
}

.hk-home .card p {
  color: var(--color-body);
  font-size: 0.9675rem;
  max-width: none;
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .hk-home .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .hk-home .card-grid {
    grid-template-columns: 1fr;
  }
}

/* Product spotlight */
.hk-home .product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.hk-home .product-text h2 {
  margin-bottom: 16px;
}

.hk-home .product-text p {
  margin-bottom: 12px;
}

.hk-home .product-text .btn {
  margin-top: 8px;
}

.hk-home .product-list {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-left: 4px solid var(--blue);
  border-radius: 4px var(--radius) var(--radius) 4px;
  padding: 28px 24px;
}

.hk-home .product-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 11px 0;
}

.hk-home .product-item+.product-item {
  border-top: 1px solid var(--color-border);
}

.hk-home .product-check {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-top: 2px;
  background: var(--sage-light);
}

.hk-home .product-check svg {
  width: 12px;
  height: 12px;
  fill: none;
  stroke: var(--sage);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hk-home .product-item span {
  font-size: 0.9675rem;
  line-height: 1.5;
  color: var(--color-body);
}

@media (max-width: 768px) {
  .hk-home .product-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

/* Testimonials layout */
.hk-home .tg {
  grid-template-columns: repeat(3, 1fr);
}

.hk-home .tc::before {
  content: "";
  position: absolute;
  top: 0;
  left: 20px;
  right: 20px;
  height: 2px;
  border-radius: 0 0 2px 2px;
}

.hk-home .tc:nth-child(3n+1)::before {
  background: var(--blue);
}

.hk-home .tc:nth-child(3n+2)::before {
  background: var(--sage);
}

.hk-home .tc:nth-child(3n+3)::before {
  background: var(--terra);
}

/* App teaser */
.hk-home .app-inner {
  max-width: 480px;
  margin: 0 auto;
  text-align: center;
}

.hk-home .app-inner h2 {
  margin-bottom: 10px;
  font-size: 1.625rem;
}

.hk-home .app-inner>p {
  margin: 0 auto 24px;
  color: var(--color-body);
  font-size: 1rem;
}

.hk-home .email-row {
  display: flex;
  gap: 10px;
}

.hk-home .email-row input {
  flex: 1;
  padding: 13px 16px;
  font-size: 0.9375rem;
  font-family: var(--font-body);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  color: var(--color-dark);
  background: var(--color-bg);
}

.hk-home .email-row input:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(61, 107, 224, 0.1);
}

.hk-home .email-row input::placeholder {
  color: var(--color-light);
}

.hk-home .email-row .btn {
  white-space: nowrap;
  width: auto;
}

@media (max-width: 640px) {
  .hk-home .email-row {
    flex-direction: column;
  }

  .hk-home .email-row .btn {
    width: 100%;
  }
}

/* Trust sizing */
.hk-home .trust p {
  font-size: 0.8125rem;
  max-width: 520px;
  margin: 0 auto 4px;
}

/* ===============================================
   MEDITATION SERIES OVERRIDES
   =============================================== */
.hk-meditation .hero {
  padding: 88px 0 80px;
  text-align: center;
  background: linear-gradient(170deg, #FFFFFF 0%, #F0F5FF 40%, #F5F0FF 70%, #FFFFFF 100%);
  border-bottom: 1px solid var(--color-border);
}

.hk-meditation .hero .section-inner {
  text-align: center;
}

.hk-meditation .hero-series-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-muted);
  margin-bottom: 20px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  animation: fadeIn 0.6s ease both;
}

.hk-meditation .hero h1 {
  max-width: 680px;
  margin: 0 auto 16px;
  text-align: center;
  animation: fadeUp 0.7s ease 0.1s both;
}

.hk-meditation .hero-sub-label {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--color-muted);
  margin-bottom: 28px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  animation: fadeUp 0.7s ease 0.2s both;
}

.hk-meditation .hero-desc {
  max-width: 580px;
  margin: 0 auto 36px;
  font-size: 1.0625rem;
  color: var(--color-body);
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  animation: fadeUp 0.7s ease 0.3s both;
}

.hk-meditation .hero-cta {
  animation: fadeUp 0.7s ease 0.4s both;
}

@media (max-width: 640px) {
  .hk-meditation .hero {
    padding: 60px 0 52px;
  }
}

/* About */
.hk-meditation .about-inner {
  max-width: 700px;
  margin: 0 auto;
}

.hk-meditation .about-inner h2 {
  margin-bottom: 8px;
}

.hk-meditation .about-lead {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--color-dark);
  margin-bottom: 24px;
  max-width: var(--max-text);
}

.hk-meditation .about-inner p {
  margin-bottom: 16px;
}

.hk-meditation .about-inner p:last-of-type {
  margin-bottom: 0;
}

.hk-meditation .about-close {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--color-border);
  font-style: italic;
  color: var(--color-muted);
  font-size: 1rem;
}

/* Series list */
.hk-meditation .series-header {
  margin-bottom: 40px;
}

.hk-meditation .series-header h2 {
  margin-bottom: 6px;
}

.hk-meditation .series-header p {
  color: var(--color-muted);
  font-size: 1rem;
}

.hk-meditation .series-list {
  max-width: 740px;
  margin: 0 auto;
}

.hk-meditation .series-item {
  border-bottom: 1px solid var(--color-border);
  transition: background var(--transition);
}

.hk-meditation .series-item:first-child {
  border-top: 1px solid var(--color-border);
}

.hk-meditation .series-item:hover {
  background: rgba(255, 255, 255, 0.5);
}

.hk-meditation .series-q {
  width: 100%;
  background: none;
  border: none;
  padding: 6px 0;
  font-family: var(--font-body);
  cursor: pointer;
  display: flex;
  gap: 10px;
  align-items: center;
  text-align: left;
}

.hk-meditation .series-num {
  font-family: var(--font-heading);
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1;
  width: 32px;
  flex: 0 0 32px;
}

.hk-meditation .series-item:nth-child(9n+1) .series-num {
  color: var(--blue);
}

.hk-meditation .series-item:nth-child(9n+2) .series-num {
  color: var(--sage);
}

.hk-meditation .series-item:nth-child(9n+3) .series-num {
  color: var(--terra);
}

.hk-meditation .series-item:nth-child(9n+4) .series-num {
  color: var(--purple);
}

.hk-meditation .series-item:nth-child(9n+5) .series-num {
  color: var(--blue);
}

.hk-meditation .series-item:nth-child(9n+6) .series-num {
  color: var(--sage);
}

.hk-meditation .series-item:nth-child(9n+7) .series-num {
  color: var(--terra);
}

.hk-meditation .series-item:nth-child(9n+8) .series-num {
  color: var(--purple);
}

.hk-meditation .series-item:nth-child(9n+9) .series-num {
  color: var(--blue);
}

.hk-meditation .series-title-block {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  width: 100%;
  flex: 1 1 auto;
}

.hk-meditation .series-title {
  font-family: var(--font-heading);
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--color-dark);
  line-height: 1.35;
  display: block;
  text-align: left;
}

.hk-meditation .series-tag {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 3px 10px;
  border-radius: 4px;
  background: var(--color-warm);
  color: var(--color-muted);
  white-space: nowrap;
  margin-top: 4px;
}

.hk-meditation .series-toggle {
  font-size: 1.375rem;
  color: var(--color-light);
  font-weight: 300;
  flex-shrink: 0;
  width: 28px;
  text-align: center;
  transition: transform var(--transition);
  margin-left: auto;
}

.hk-meditation .series-item.open .series-toggle {
  transform: rotate(45deg);
}

.hk-meditation .series-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.hk-meditation .series-item.open .series-a {
  max-height: 600px;
  padding: 0 0 12px 40px;
}

.hk-meditation .series-a-inner {
  font-size: 0.9675rem;
  line-height: 1.65;
  color: var(--color-body);
  max-width: 580px;
}

.hk-meditation .series-a-inner p {
  margin-bottom: 12px;
  max-width: none;
}

.hk-meditation .series-a-inner p:last-child {
  margin-bottom: 0;
}

.hk-meditation .series-a-inner .read-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--blue);
  margin-top: 4px;
}

.hk-meditation .series-a-inner .read-link:hover {
  text-decoration: underline;
}

@media (max-width: 640px) {
  .hk-meditation .series-q {
    gap: 6px;
    padding: 4px 0;
  }

  .hk-meditation .series-tag {
    display: none;
  }

  .hk-meditation .series-num {
    font-size: 1.125rem;
    width: 26px;
    flex-basis: 26px;
  }

  .hk-meditation .series-title {
    font-size: 1rem;
  }

  .hk-meditation .series-toggle {
    width: 22px;
  }

  .hk-meditation .series-item.open .series-a {
    padding-left: 34px;
  }
}

/* CTA / waitlist */
.hk-meditation .cta-box {
  max-width: 520px;
  margin: 0 auto;
  text-align: center;
}

.hk-meditation .cta-box h2 {
  margin-bottom: 10px;
  font-size: 1.625rem;
}

.hk-meditation .cta-sub {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-style: italic;
  color: var(--color-dark);
  margin-bottom: 16px;
}

.hk-meditation .cta-box>p {
  margin: 0 auto 24px;
  color: var(--color-body);
  font-size: 1rem;
}

.hk-meditation .cta-box .email-row {
  display: flex;
  gap: 10px;
}

.hk-meditation .cta-box .email-row input {
  flex: 1;
  padding: 13px 16px;
  font-size: 0.9375rem;
  font-family: var(--font-body);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  color: var(--color-dark);
  background: var(--color-bg);
}

.hk-meditation .cta-box .email-row input:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(61, 107, 224, 0.1);
}

.hk-meditation .cta-box .email-row input::placeholder {
  color: var(--color-light);
}

.hk-meditation .cta-box .email-row .btn {
  white-space: nowrap;
  width: auto;
}

.hk-meditation .cta-micro {
  margin-top: 10px;
  font-size: 0.8125rem;
  color: var(--color-muted);
}

@media (max-width: 640px) {
  .hk-meditation .cta-box .email-row {
    flex-direction: column;
  }

  .hk-meditation .cta-box .email-row .btn {
    width: 100%;
  }
}

/* Trust sizing */
.hk-meditation .trust p {
  font-size: 0.8125rem;
  max-width: 520px;
  margin: 0 auto 4px;
  color: var(--color-muted);
}

/* Stagger timing override */
.hk-meditation .stagger-children .animate-on-scroll:nth-child(1) {
  transition-delay: 0s;
}

.hk-meditation .stagger-children .animate-on-scroll:nth-child(2) {
  transition-delay: 0.06s;
}

.hk-meditation .stagger-children .animate-on-scroll:nth-child(3) {
  transition-delay: 0.12s;
}

.hk-meditation .stagger-children .animate-on-scroll:nth-child(4) {
  transition-delay: 0.18s;
}

.hk-meditation .stagger-children .animate-on-scroll:nth-child(5) {
  transition-delay: 0.24s;
}

.hk-meditation .stagger-children .animate-on-scroll:nth-child(6) {
  transition-delay: 0.3s;
}

.hk-meditation .stagger-children .animate-on-scroll:nth-child(7) {
  transition-delay: 0.36s;
}

.hk-meditation .stagger-children .animate-on-scroll:nth-child(8) {
  transition-delay: 0.42s;
}

.hk-meditation .stagger-children .animate-on-scroll:nth-child(9) {
  transition-delay: 0.48s;
}

/* ===============================================
   POST ARCHIVE
   =============================================== */
.hk-posts {
  font-family: var(--font-body);
  color: var(--color-body);
  background: var(--color-bg);
}

.hk-posts .section {
  padding: 72px 0;
}

.hk-posts .section-inner {
  max-width: var(--max-content);
  margin: 0 auto;
  padding: 0 24px;
}

.hk-posts .posts-header {
  text-align: center;
  max-width: var(--max-text);
  margin: 0 auto 36px;
}

.hk-posts .posts-title {
  font-family: var(--font-heading);
  color: var(--color-dark);
  font-weight: 700;
  line-height: 1.2;
  font-size: 2.25rem;
  margin-bottom: 8px;
}

.hk-posts .posts-sub {
  color: var(--color-muted);
  font-size: 1rem;
}


.hk-posts .posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.hk-posts .post-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--transition), transform var(--transition);
}

.hk-posts .post-card:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
  transform: translateY(-2px);
}

.hk-posts .post-card-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.hk-posts .post-card-img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: var(--color-warm);
}

.hk-posts .post-card-body {
  padding: 18px 18px 20px;
}

.hk-posts .post-card-cats {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 10px;
}

.hk-posts .post-card-cats a {
  display: inline-flex;
  align-items: center;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 3px 10px;
  border-radius: 4px;
  background: var(--blue-light);
  color: var(--blue);
  text-decoration: none;
}

.hk-posts .post-card-title {
  font-family: var(--font-heading);
  color: var(--color-dark);
  font-size: 1.125rem;
  line-height: 1.35;
  margin-bottom: 10px;
}

.hk-posts .post-card-title a {
  color: inherit;
  text-decoration: none;
}

.hk-posts .post-card-title a:hover {
  text-decoration: underline;
}

.hk-posts .post-card-excerpt {
  font-size: 0.95rem;
  color: var(--color-body);
  line-height: 1.6;
}

.hk-posts .posts-pagination {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}

.hk-posts .posts-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  height: 34px;
  border-radius: 6px;
  border: 1px solid var(--color-border);
  color: var(--color-body);
  text-decoration: none;
  margin: 0 4px;
  font-size: 0.875rem;
}

.hk-posts .posts-pagination .page-numbers.current {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
}

@media (max-width: 1024px) {
  .hk-posts .posts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .hk-posts .posts-grid {
    grid-template-columns: 1fr;
  }

  .hk-posts .posts-title {
    font-size: 1.875rem;
  }
}

/* ===============================================
   SINGLE POST
   =============================================== */
.hk-post {
  font-family: var(--font-body);
  color: var(--color-body);
  background: var(--color-bg);
}

.hk-post .post-header {
  text-align: center;
  max-width: var(--max-text);
  margin: 0 auto 28px;
}

.hk-post .post-title {
  font-family: var(--font-heading);
  color: var(--color-dark);
  font-weight: 700;
  line-height: 1.2;
  font-size: 2.25rem;
  margin-bottom: 10px;
}

.hk-post .post-meta {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  font-size: 0.9rem;
  color: var(--color-muted);
}

.hk-post .post-meta a {
  color: var(--color-body);
  text-decoration: none;
}

.hk-post .post-meta a:hover {
  text-decoration: underline;
}

.hk-post .post-content {
  max-width: var(--max-text);
  margin: 0 auto;
}

.hk-post .post-content>* {
  margin: 0 0 20px;
}

.hk-post .post-content>*:last-child {
  margin-bottom: 0;
}

.hk-post .post-content h2,
.hk-post .post-content h3,
.hk-post .post-content h4 {
  margin-top: 28px;
  margin-bottom: 12px;
  color: var(--color-dark);
  font-family: var(--font-heading);
}

.hk-post .post-content ul,
.hk-post .post-content ol {
  margin-top: 16px;
  padding-left: 22px;
}

.hk-post .post-content blockquote {
  margin: 20px 0;
  padding-left: 16px;
  border-left: 3px solid var(--color-border);
  color: var(--color-muted);
  font-style: italic;
}

.hk-post .post-related-title {
  text-align: center;
  font-family: var(--font-heading);
  color: var(--color-dark);
  font-size: 1.5rem;
  margin-bottom: 22px;
}

.hk-post .post-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.hk-post .post-related-card {
  display: block;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 20px 18px;
  text-decoration: none;
  color: inherit;
  transition: box-shadow var(--transition), transform var(--transition);
}

.hk-post .post-related-card:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
  transform: translateY(-2px);
}

.hk-post .post-related-meta {
  font-size: 0.8125rem;
  color: var(--color-muted);
  margin-bottom: 8px;
}

.hk-post .post-related-card h3 {
  font-family: var(--font-heading);
  color: var(--color-dark);
  font-size: 1.0625rem;
  line-height: 1.35;
  margin-bottom: 8px;
}

.hk-post .post-related-card p {
  font-size: 0.95rem;
  color: var(--color-body);
  line-height: 1.55;
}

@media (max-width: 900px) {
  .hk-post .post-related-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .hk-post .post-related-grid {
    grid-template-columns: 1fr;
  }

  .hk-post .post-title {
    font-size: 1.875rem;
  }
}

/* ===============================================
   SITE FOOTER
   =============================================== */
.hk-site-footer {
  background: var(--color-bg);
  border-top: 1px solid var(--color-border);
  color: var(--color-muted);
  font-family: var(--font-body);
  font-size: 0.875rem;
  padding: 24px 0;
}

.hk-site-footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px 24px;
  flex-wrap: wrap;
}

.hk-site-footer-left {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--color-body);
}

.hk-site-footer-logo {
  display: block;
  width: 26px;
  height: 26px;
}

.hk-site-footer-links {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hk-site-footer-links a {
  color: var(--color-body);
  text-decoration: none;
}

.hk-site-footer-links a:hover {
  text-decoration: underline;
}

@media (max-width: 640px) {
  .hk-site-footer-inner {
    justify-content: center;
  }

  .hk-site-footer-links {
    width: 100%;
    justify-content: center;
  }
}

/* Site header styling (outside .hk) */
.hk-site-header,
.hk-site-header * {
  font-family: var(--font-body) !important;
}

.hk-site-header {
  background: var(--color-bg) !important;
  border-bottom: 1px solid var(--color-border);
}

.hk-site-header .wp-block-group,
.hk-site-header .wp-block-row,
.hk-site-header .wp-block-columns,
.hk-site-header .wp-block-navigation {
  background: transparent !important;
}

.hk-site-header .wp-block-site-title,
.hk-site-header .wp-block-site-title a {
  font-family: var(--font-heading) !important;
  font-weight: 700;
  color: var(--color-dark);
  text-decoration: none;
}

.hk-site-header .wp-block-site-tagline {
  color: var(--color-muted);
}

.hk-site-header .wp-block-navigation a {
  color: var(--color-dark);
  text-decoration: none;
  font-weight: 600;
}

.hk-site-header .wp-block-navigation a:hover {
  color: var(--blue);
  text-decoration: underline;
}

.hk-site-header .wp-block-navigation__container {
  gap: 20px;
}

/* ===============================================
   FORM PAGE TWEAKS (Form1)
   =============================================== */
.hk-form {
  font-size: 1.05rem;
  line-height: 1.65;
}

.hk-form .hero .section-inner {
  padding-top: 64px;
  padding-bottom: 40px;
}

.hk-form .hero .hero-sub {
  font-size: 1.05rem;
  color: var(--color-muted);
}

.hk-form .form-intro p {
  font-size: 1rem;
}

.hk-form .form-intro .lead {
  font-weight: 500;
  color: var(--color-dark);
}

.hk-form .form-embed {
  margin-top: 28px;
}

.hk-form .gform_wrapper {
  font-size: 1rem;
}

.hk-form .gform_wrapper .gfield {
  margin-bottom: 18px;
}

.hk-form .gform_wrapper .gfield_label {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-dark);
}

.hk-form .gform_wrapper .gfield_description,
.hk-form .gform_wrapper .gform_required_legend {
  font-size: 0.9rem;
  color: var(--color-muted);
}

.hk-form .gform_wrapper .ginput_container input,
.hk-form .gform_wrapper .ginput_container select,
.hk-form .gform_wrapper .ginput_container textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 12px 14px;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  background: var(--color-white);
  color: var(--color-body);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.hk-form .gform_wrapper .ginput_container input:focus,
.hk-form .gform_wrapper .ginput_container select:focus,
.hk-form .gform_wrapper .ginput_container textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(61, 107, 224, 0.12);
}

.hk-form .gform_wrapper .gform_footer,
.hk-form .gform_wrapper .gform_page_footer {
  margin-top: 20px;
}

.hk-form .gform_wrapper input[type="submit"],
.hk-form .gform_wrapper button,
.hk-form .gform_wrapper .gform_button {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--blue);
  color: #fff;
  border: none;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}

.hk-form .gform_wrapper input[type="submit"]:hover,
.hk-form .gform_wrapper button:hover,
.hk-form .gform_wrapper .gform_button:hover {
  background: var(--blue-dark);
  box-shadow: 0 10px 22px rgba(61, 107, 224, 0.22);
  transform: translateY(-1px);
}

.hk-form .hk-form-msg {
  font-size: 0.95rem;
  margin-top: 14px;
}

@media (max-width: 768px) {
  .hk-form {
    font-size: 1rem;
  }

  .hk-form .hero .section-inner {
    padding-top: 52px;
    padding-bottom: 32px;
  }
}
