/* ============================================================
   ClawConfig.ca — Apple-Style Landing + Configurator
   ============================================================ */

:root {
  --bg: #ffffff;
  --surface: #ffffff;
  --text: #121214;
  --muted: #50505a;
  --line: #dddddf;
  --brand: #FF4D4D;
  --brand-hover: #CC3333;
  --radius-lg: 22px;
  --radius-md: 14px;
  --container: 1200px;
  --header-height: 76px;
  --header-height-mobile: 68px;
  --banner-height: 40px;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

html,
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: "Instrument Sans", "Avenir Next", "Helvetica Neue", sans-serif;
  color: var(--text);
  background:
    radial-gradient(160% 120% at 20% -40%, #ffffff 20%, #eceff5 70%, #e8ebf1 100%);
  min-height: 100vh;
  letter-spacing: -0.01em;
  line-height: 1.5;
}

img {
  max-width: 100%;
  display: block;
}

/* Bold text in page content should always be full-contrast */
main strong {
  color: var(--text);
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(var(--container), 92vw);
  margin: 0 auto;
}

/* ---- Announcement Banner ---- */
.announce-bar {
  background: #FF4D4D;
  color: #fff;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  padding: 10px 16px;
  line-height: 1.3;
  overflow: hidden;
}

.announce-track {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6em;
  white-space: nowrap;
  width: max-content;
  margin: 0 auto;
}

.announce-sep {
  opacity: 0.6;
}

/* Hide duplicated items on desktop — they're only for the mobile loop */
.announce-dup {
  display: none;
}

/* Only scroll when the track is wider than the viewport */
@media (max-width: 780px) {
  .announce-dup {
    display: inline;
  }

  .announce-track {
    justify-content: flex-start;
    margin: 0;
    gap: 1.5em;
    animation: announce-scroll 14s linear infinite;
  }

  @keyframes announce-scroll {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-50%);
    }
  }
}

/* ---- Header ---- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 15;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  background: rgb(248 248 251 / 80%);
  border-bottom: 1px solid rgb(215 218 224 / 60%);
}

.header-inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Clash Display', sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.brand-mark {
  width: 32px;
  height: 32px;
}

.top-nav {
  display: inline-flex;
  gap: 30px;
  font-size: 1.05rem;
  font-weight: 500;
}

.top-nav a {
  color: #212127;
  transition: color 0.2s ease;
}

.top-nav a:hover {
  color: #000;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  padding: 10px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.menu-toggle span {
  width: 18px;
  height: 1.6px;
  border-radius: 2px;
  background: #19191d;
}

/* ---- Hero ---- */
.hero {
  margin: 0;
  width: 100%;
  position: relative;
  background: var(--bg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: calc(100dvh - var(--header-height) - var(--banner-height));
}

.hero-image {
  position: relative;
  width: 100%;
  object-fit: contain;
  object-position: center bottom;
  flex: 0 1 auto;
  min-height: 0;
}

.hero-overlay {
  display: none;
}

.hero-content {
  position: relative;
  flex-shrink: 0;
  text-align: center;
  color: var(--text);
  width: min(760px, calc(100% - 32px));
  padding: 28px 24px 44px;
  margin-top: -70px;
  z-index: 2;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0) 0%,
    #ffffff 14%
  );
}

.hero-content h1,
.hero-content .hero-copy,
.hero-content .cta {
  animation: hero-rise-in 0.6s ease-out both;
}

.hero-content .hero-copy {
  animation-delay: 0.1s;
}

.hero-content .cta {
  animation-delay: 0.2s;
}

.hero-content .cta.cta--secondary {
  animation: none;
}

.eyebrow {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: clamp(0.78rem, 1vw, 0.88rem);
  opacity: 0.92;
}

.typing-cursor {
  display: inline-block;
  width: 0.52ch;
  height: 1em;
  border-right: 2px solid currentColor;
  margin-left: 3px;
  vertical-align: -0.08em;
  opacity: 1;
}

.typing-enabled .typing-cursor {
  animation: cursor-blink 0.9s steps(1, end) infinite;
}

.hero-content h1 {
  margin: 10px 0 8px;
  font-size: clamp(2.4rem, 6vw, 4rem);
  line-height: 0.95;
  letter-spacing: -0.035em;
  font-weight: 700;
  text-wrap: balance;
}

.hero-title-text {
  font-family: 'Clash Display', sans-serif;
  color: var(--text);
  letter-spacing: -0.01em;
  text-shadow:
    0 2px 10px rgba(0, 0, 0, 0.08),
    0 0 30px rgba(0, 0, 0, 0.04);
}

.hero-copy {
  margin: 0;
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  line-height: 1.55;
  color: var(--muted);
  opacity: 1;
  font-weight: 500;
}

.cta {
  margin-top: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 170px;
  height: 56px;
  padding: 0 32px;
  border-radius: 999px;
  background: linear-gradient(160deg, #FF6B6B 0%, var(--brand) 55%, #CC3333 100%);
  color: #fff;
  font-size: 1.15rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition:
    transform 0.24s ease,
    box-shadow 0.24s ease,
    background-color 0.24s ease;
  box-shadow:
    0 16px 26px -16px rgba(255, 77, 77, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.cta:hover {
  transform: translateY(-1px);
  box-shadow:
    0 16px 28px -14px rgba(255, 77, 77, 0.6),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  background: linear-gradient(160deg, #FF8080 0%, var(--brand-hover) 55%, #B32D2D 100%);
}

/* OpenClaw-themed CTA (coral → cyan gradient) */
.cta.cta--openclaw {
  background: linear-gradient(135deg, #FF4D4D 0%, #CC3333 50%, #00E5CC 100%);
  background-size: 200% 200%;
  animation: gradientShift 6s ease infinite;
  box-shadow:
    0 16px 26px -16px rgba(255, 77, 77, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.cta.cta--openclaw:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #FF4D4D 0%, #CC3333 50%, #00E5CC 100%);
  background-size: 200% 200%;
  animation: gradientShift 6s ease infinite;
  box-shadow:
    0 18px 30px -14px rgba(255, 77, 77, 0.6),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

/* ---- How It Works Section ---- */
.how-it-works-section {
  padding: 64px 0 56px;
}

.steps-track {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  max-width: 960px;
  margin: 0 auto;
  position: relative;
}

/* Connecting line behind the markers */
.steps-track::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 66%;
  height: 2px;
  background: linear-gradient(90deg, #FF4D4D 0%, #00E5CC 100%);
  opacity: 0.25;
  border-radius: 2px;
}

.step-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 18px;
  position: relative;
}

.step-marker {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FF4D4D 0%, #CC3333 60%, #00E5CC 100%);
  background-size: 200% 200%;
  animation: gradientShift 6s ease infinite;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 16px -4px rgba(255, 77, 77, 0.4);
}

.step-marker span {
  font-weight: 700;
  font-size: 0.95rem;
  color: #fff;
  line-height: 1;
}

.step-body {
  margin-top: 20px;
}

.step-body h3 {
  margin: 0 0 6px;
  font-size: 1.12rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.step-body p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--muted);
  max-width: 260px;
  margin-left: auto;
  margin-right: auto;
}

/* ---- Explainer Section ---- */
.explainer-section {
  padding: 72px 0 56px;
}


.explainer-block {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.explainer-block h2 {
  margin: 0 0 16px;
  font-family: 'Clash Display', sans-serif;
  font-size: clamp(1.9rem, 3.8vw, 2.9rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.15;
}

/* Animated gradient wordmark matching openclaw.ai */
a.openclaw-wordmark {
  text-decoration: none;
}

.openclaw-wordmark {
  font-family: 'Clash Display', sans-serif;
  font-weight: 700;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, #f0f4ff 0%, #FF4D4D 50%, #00E5CC 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 6s ease infinite;
  /* Prevent clipping on the last glyph from background-clip: text */
  padding-right: 0.05em;
  margin-right: -0.05em;
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  letter-spacing: -0.03em;
}

.explainer-copy {
  margin: 0;
  font-size: 1.12rem;
  line-height: 1.55;
  color: var(--muted);
}

.explainer-copy + .explainer-copy {
  margin-top: 16px;
}

.explainer-image {
  margin: 24px auto;
  max-width: 360px;
}

.explainer-image img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  object-fit: contain;
}

.capability-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
  text-align: left;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.capability-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 14px;
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--muted);
}

.capability-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FF4D4D, #00E5CC);
}

.capability-list li strong {
  color: var(--text);
}

.explainer-copy strong {
  color: var(--text);
}

.connects-block {
  margin-top: 48px;
  text-align: center;
  overflow: hidden;
}

.connects-label {
  margin: 0 0 8px;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  color: var(--muted);
}

.connects-desc {
  margin: 0 auto 4px;
  max-width: 520px;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--muted);
}

/* ---- Orbit: Mascot + Integration Icons ---- */
.orbit-container {
  position: relative;
  width: 420px;
  max-width: 100%;
  height: 420px;
  margin: 24px auto 40px;
}

.orbit-mascot {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 90px;
  height: 90px;
  transform: translate(-50%, -50%);
  animation: mascot-float 4s ease-in-out infinite;
  z-index: 2;
}

.orbit-mascot svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 4px 16px rgba(255, 77, 77, 0.3));
}

.orbit-mascot .eye-glow {
  animation: mascot-blink 3s ease-in-out infinite;
}

.orbit-mascot .antenna {
  animation: mascot-wiggle 2s ease-in-out infinite;
  transform-origin: center;
}

.orbit-mascot .claw-left {
  animation: mascot-claw-snap 4s ease-in-out infinite;
  transform-origin: right center;
}

.orbit-mascot .claw-right {
  animation: mascot-claw-snap 4s ease-in-out infinite 0.2s;
  transform-origin: left center;
}

@keyframes mascot-float {
  0%, 100% { transform: translate(-50%, -50%) translateY(0); }
  50% { transform: translate(-50%, -50%) translateY(-8px); }
}

@keyframes mascot-blink {
  0%, 90%, 100% { opacity: 1; }
  95% { opacity: 0.3; }
}

@keyframes mascot-wiggle {
  0%, 100% { transform: rotate(0); }
  25% { transform: rotate(-3deg); }
  75% { transform: rotate(3deg); }
}

@keyframes mascot-claw-snap {
  0%, 85%, 100% { transform: rotate(0); }
  90% { transform: rotate(-8deg); }
  95% { transform: rotate(0); }
}

/* Orbit rings (shared) */
.orbit-ring {
  position: absolute;
  inset: 0;
  pointer-events: none; /* let clicks pass through the ring overlay */
}

.orbit-icon-inner {
  pointer-events: auto; /* re-enable on the actual icon circles */
}

.orbit-ring--inner {
  animation: orbit-spin 36s linear infinite;
}

.orbit-ring--outer {
  animation: orbit-spin-reverse 48s linear infinite;
}

.orbit-icon {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 0;
  height: 0;
  transform: rotate(var(--a));
}

/* Inner ring icons */
.orbit-ring--inner .orbit-icon-inner {
  position: absolute;
  width: 42px;
  height: 42px;
  left: -21px;
  top: -130px; /* inner orbit radius */
  background: #fff;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  cursor: pointer;
  transition: opacity 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

/* Invisible larger hit area around every icon */
.orbit-icon-inner::before {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: 50%;
}

.orbit-ring--inner .orbit-icon-inner > svg {
  width: 22px;
  height: 22px;
  animation: orbit-counter-spin 36s linear infinite;
}

/* Outer ring icons (smaller, more muted) */
.orbit-ring--outer .orbit-icon-inner {
  position: absolute;
  width: 36px;
  height: 36px;
  left: -18px;
  top: -205px; /* outer orbit radius */
  background: #fff;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.06);
  opacity: 0.75;
  cursor: pointer;
  transition: opacity 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.orbit-ring--outer .orbit-icon-inner > svg {
  width: 18px;
  height: 18px;
  animation: orbit-counter-spin-reverse 48s linear infinite;
}

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

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

@keyframes orbit-counter-spin {
  from { transform: rotate(calc(-1 * var(--a))); }
  to   { transform: rotate(calc(-1 * var(--a) - 360deg)); }
}

@keyframes orbit-counter-spin-reverse {
  from { transform: rotate(calc(-1 * var(--a))); }
  to   { transform: rotate(calc(-1 * var(--a) + 360deg)); }
}

/* Paused state: added via JS on icon hover */
.orbit-container.is-paused .orbit-ring--inner,
.orbit-container.is-paused .orbit-ring--outer {
  animation-play-state: paused;
}

.orbit-container.is-paused .orbit-ring--inner .orbit-icon-inner > svg,
.orbit-container.is-paused .orbit-ring--outer .orbit-icon-inner > svg {
  animation-play-state: paused;
}

.orbit-container.is-paused .orbit-mascot {
  animation-play-state: paused;
}

/* Dim non-hovered icons when paused */
.orbit-container.is-paused .orbit-icon-inner {
  opacity: 0.35;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.orbit-container.is-paused .orbit-icon-inner.is-active {
  opacity: 1;
  transform: scale(1.18);
  box-shadow: 0 4px 20px rgba(255, 77, 77, 0.25);
  z-index: 5;
}

/* Tooltip */
.orbit-tooltip {
  position: fixed;
  width: 240px;
  padding: 14px 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  z-index: 20;
  text-align: left;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease;
}

.orbit-tooltip.is-visible {
  opacity: 1;
}

.orbit-tooltip-name {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 4px;
  color: var(--text);
}

.orbit-tooltip-text {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--muted);
}

.agent-def {
  max-width: 660px;
  margin: 48px auto 0;
  text-align: center;
  padding: 28px 32px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}

.agent-def h3 {
  margin: 0 0 10px;
  font-size: 1.28rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.agent-def p {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.5;
  color: var(--muted);
}

.agent-def strong {
  color: var(--text);
}

/* ---- Shared Section Titles ---- */
.section-title {
  text-align: center;
  margin: 0 0 8px;
  font-family: 'Clash Display', sans-serif;
  font-size: clamp(1.9rem, 3.8vw, 2.9rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.15;
}

.section-subtitle {
  text-align: center;
  margin: 0 0 40px;
  font-size: 1.08rem;
  color: var(--muted);
  line-height: 1.4;
}

/* ============================================================
   CONFIGURATOR
   ============================================================ */
.configurator-section {
  padding: 72px 0 80px;
  border-top: 1px solid rgb(204 207 213 / 65%);
  background: rgb(242 244 248 / 65%);
  backdrop-filter: blur(6px);
}

.configurator {
  max-width: 740px;
  margin: 0 auto;
}

.config-group {
  border: none;
  padding: 0;
  margin: 0 0 40px;
}

.config-group-title {
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 6px;
  padding: 0;
}

.config-group-note {
  margin: 0 0 16px;
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.4;
}

/* Option Cards (radio) */
.option-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 14px;
}

.option-card {
  position: relative;
  cursor: pointer;
  display: flex;
  flex-direction: column;
}

.option-card .option-card-inner {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.option-card input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.option-card-inner {
  padding: 20px 22px;
  border-radius: var(--radius-md);
  border: 2px solid var(--line);
  background: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.option-card input[type="radio"]:checked + .option-card-inner {
  border-color: var(--brand);
  box-shadow: 0 0 0 1px var(--brand), 0 4px 16px -6px rgba(255, 77, 77, 0.24);
}

.option-card:hover .option-card-inner {
  border-color: #b0b0b6;
}

.option-card input[type="radio"]:checked + .option-card-inner:hover {
  border-color: var(--brand);
}

.option-card--disabled {
  opacity: 0.4;
  pointer-events: none;
  cursor: default;
}

.option-card--disabled .option-card-inner {
  border-color: var(--line);
  box-shadow: none;
  background: #f7f7f8;
}

.option-card-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 6px;
}

.option-name {
  font-weight: 600;
  font-size: 1.08rem;
  letter-spacing: -0.01em;
}

.option-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: var(--brand);
  color: #fff;
  padding: 2px 8px;
  border-radius: 6px;
  vertical-align: middle;
  margin-left: 6px;
}

.option-price {
  font-weight: 700;
  font-size: 1.08rem;
  white-space: nowrap;
  color: var(--text);
}

.option-price small {
  font-weight: 500;
  font-size: 0.78rem;
  color: var(--muted);
}

.option-desc {
  margin: 0;
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.4;
}

/* Stepper */
.stepper-row {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 14px;
  border-radius: var(--radius-md);
}

.stepper {
  display: inline-flex;
  align-items: center;
  gap: 0;
  border: 2px solid var(--line);
  border-radius: 12px;
  background: #fff;
  overflow: hidden;
}

.stepper-btn {
  width: 44px;
  height: 44px;
  border: none;
  background: transparent;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s ease;
  user-select: none;
  -webkit-user-select: none;
}

.stepper-btn:hover {
  background: rgb(0 0 0 / 5%);
}

.stepper-btn:active {
  background: rgb(0 0 0 / 10%);
}

.stepper-value {
  min-width: 40px;
  text-align: center;
  font-size: 1.15rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
  padding: 0 4px;
  line-height: 44px;
}

.stepper-label {
  font-size: 1rem;
  color: var(--muted);
  font-weight: 500;
}

/* Hardware qty row */
.hw-qty-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-top: 16px;
  padding: 16px 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.hw-qty-label {
  font-size: 0.98rem;
  font-weight: 500;
  color: var(--muted);
}

.hw-qty-row[hidden] {
  display: none;
}

.hw-qty-row .stepper {
  flex-shrink: 0;
}

.hw-qty-hint {
  display: block;
  font-size: 0.82rem;
  color: var(--brand);
  line-height: 1.5;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transform: translateY(-4px);
  transition: max-height 0.35s ease, opacity 0.3s ease, transform 0.3s ease, margin-top 0.35s ease;
  margin-top: 0;
}

.hw-qty-hint.is-visible {
  max-height: 60px;
  opacity: 1;
  transform: translateY(0);
  margin-top: 10px;
}

/* Pulse highlight on agent stepper when Mac mini limit is hit */
.pulse-highlight {
  animation: pulseGlow 1.2s ease;
}

@keyframes pulseGlow {
  0%   { box-shadow: 0 0 0 0 rgba(255, 77, 77, 0.5); }
  40%  { box-shadow: 0 0 0 8px rgba(255, 77, 77, 0.15); }
  100% { box-shadow: 0 0 0 0 rgba(255, 77, 77, 0); }
}

/* Total Bar */
.total-bar {
  margin-top: 8px;
  padding: 28px 32px;
  background: #fff;
  border: 2px solid var(--line);
  border-radius: var(--radius-lg);
  text-align: center;
}

.total-summary {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 16px;
}

.summary-line {
  font-size: 0.94rem;
  color: var(--muted);
}

.total-row {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 12px;
}

.total-label {
  font-size: 1.08rem;
  font-weight: 500;
  color: var(--muted);
}

.total-amount {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text);
  font-variant-numeric: tabular-nums;
}

.total-amount small {
  font-size: 1rem;
  font-weight: 500;
  color: var(--muted);
}

.total-cta {
  margin-top: 20px;
}

/* ---- Why Section ---- */
.why-section {
  padding: 72px 0 64px;
}

.why-copy {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  font-size: 1.12rem;
  line-height: 1.6;
  color: var(--muted);
}

.why-copy + .why-copy {
  margin-top: 16px;
}

.why-copy--bold {
  margin-top: 16px;
  font-weight: 700;
  color: var(--text);
}

/* ---- Timeline / Steps ---- */
.steps-section {
  padding: 72px 0;
  border-top: 1px solid rgb(204 207 213 / 65%);
  background: rgb(242 244 248 / 65%);
}

.timeline {
  list-style: none;
  padding: 0;
  margin: 40px auto 0;
  max-width: 560px;
  position: relative;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--line);
}

.timeline-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  position: relative;
  padding-bottom: 32px;
}

.timeline-step:last-child {
  padding-bottom: 0;
}

.step-number {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  font-weight: 700;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.timeline-step h3 {
  margin: 0 0 4px;
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.timeline-step p {
  margin: 0;
  font-size: 0.98rem;
  color: var(--muted);
  line-height: 1.45;
}

.steps-note {
  text-align: center;
  margin: 32px 0 0;
  font-size: 0.95rem;
  color: var(--muted);
}

/* ---- Managed Care ---- */
.care-section {
  padding: 72px 0 64px;
}

.care-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.care-card {
  padding: 32px 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: #fff;
  text-align: center;
}

.care-card--featured {
  border-color: var(--brand);
  box-shadow: 0 0 0 1px var(--brand), 0 8px 24px -8px rgba(255, 77, 77, 0.18);
  position: relative;
}

.care-card h3 {
  margin: 0 0 8px;
  font-size: 1.2rem;
  font-weight: 600;
}

.care-price {
  margin: 0 0 18px;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.care-price small {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--muted);
}

.care-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.care-card li {
  padding: 8px 0;
  border-top: 1px solid rgb(0 0 0 / 6%);
  font-size: 0.95rem;
  color: var(--muted);
}

.care-card li:last-child {
  padding-bottom: 0;
}

.care-footnote {
  text-align: center;
  margin: 28px 0 0;
  font-size: 0.98rem;
  color: var(--muted);
}

.care-footnote a {
  color: var(--brand);
  font-weight: 600;
}

.care-footnote a:hover {
  text-decoration: underline;
}

/* ---- Security ---- */
.security-section {
  padding: 72px 0 64px;
  border-top: 1px solid rgb(204 207 213 / 65%);
  background: rgb(242 244 248 / 65%);
}

.security-intro {
  max-width: 640px;
  margin: 16px auto 28px;
  text-align: center;
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.5;
}

.security-list {
  max-width: 640px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

.security-list li {
  padding: 12px 0;
  border-bottom: 1px solid rgb(0 0 0 / 6%);
  font-size: 0.98rem;
  line-height: 1.5;
  color: var(--muted);
}

.security-list li:first-child {
  border-top: 1px solid rgb(0 0 0 / 6%);
}

.security-list strong {
  color: var(--text);
}

/* ---- FAQ ---- */
.faq-section {
  padding: 72px 0 80px;
}

.faq-list {
  max-width: 680px;
  margin: 32px auto 0;
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item:first-child {
  border-top: 1px solid var(--line);
}

.faq-item summary {
  padding: 18px 0;
  font-size: 1.08rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  transition: color 0.15s ease;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--muted);
  flex-shrink: 0;
  transition: transform 0.3s ease, color 0.15s ease;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
  color: var(--brand);
}

.faq-item summary:hover {
  color: var(--brand);
}

.faq-item .faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s ease, opacity 0.3s ease;
  opacity: 0;
}

.faq-item[open] .faq-answer {
  grid-template-rows: 1fr;
  opacity: 1;
}

.faq-item .faq-answer-inner {
  overflow: hidden;
}

.faq-item p {
  margin: 0;
  padding: 0 0 18px;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--muted);
}

/* ---- Footer ---- */
.site-footer {
  padding: 20px 0 30px;
}

.footer-inner {
  border-top: 1px solid var(--line);
  padding-top: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-nav {
  display: inline-flex;
  gap: 20px;
  color: #323238;
  font-size: 1rem;
}

.footer-inner p {
  margin: 0;
  color: #2d2d33;
  font-size: 0.92rem;
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-rise-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes cursor-blink {
  0%,
  49% {
    opacity: 1;
  }
  50%,
  100% {
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}

/* ============================================================
   RESPONSIVE — TABLET (< 1180px)
   ============================================================ */
@media (max-width: 1180px) {
  .top-nav {
    gap: 18px;
    font-size: 0.98rem;
  }

  .brand {
    font-size: 1.42rem;
  }

  .care-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
  }
}

/* ============================================================
   RESPONSIVE — MOBILE (< 780px)
   ============================================================ */
@media (max-width: 780px) {
  .announce-bar {
    font-size: 0.8rem;
    padding: 8px 12px;
  }

  .header-inner {
    min-height: var(--header-height-mobile);
  }

  .brand {
    font-size: 1.3rem;
    gap: 8px;
  }

  .brand-mark {
    width: 26px;
    height: 26px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .top-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 4vw;
    left: 4vw;
    display: none;
    flex-direction: column;
    gap: 4px;
    padding: 10px;
    border-radius: var(--radius-md);
    border: 1px solid var(--line);
    background: rgb(255 255 255 / 96%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow:
      0 20px 40px -10px rgb(12 15 24 / 18%),
      0 0 0 0.5px rgb(0 0 0 / 6%);
  }

  .top-nav.is-open {
    display: flex;
  }

  .top-nav a {
    padding: 12px 14px;
    border-radius: 10px;
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--text);
    transition: background 0.15s ease;
  }

  .top-nav a:hover,
  .top-nav a:active {
    background: rgb(0 0 0 / 4%);
  }

  /* Hero: mobile adjustments */
  .hero {
    height: auto;
  }

  .hero-image {
    max-width: 100%;
    flex: 0 0 auto;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    object-position: center 60%;
  }

  .hero-content {
    width: 100%;
    margin-top: -60px;
    background: linear-gradient(
      180deg,
      rgba(246, 246, 248, 0) 0%,
      #f6f6f8 12%
    );
  }

  .hero-content h1 {
    font-size: clamp(2.2rem, 11vw, 3.2rem);
    letter-spacing: -0.04em;
  }

  .cta {
    margin-top: 20px;
    min-width: 160px;
    height: 50px;
    font-size: 1.05rem;
  }

  /* How It Works */
  .how-it-works-section {
    padding: 48px 0 40px;
  }

  .steps-track {
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
    max-width: 360px;
    margin: 0 auto;
  }

  .steps-track::before {
    width: 2px;
    height: calc(100% - 40px);
    top: 20px;
    left: 20px;
    transform: none;
  }

  .step-item {
    flex-direction: row;
    text-align: left;
    align-items: flex-start;
    gap: 18px;
    padding: 0;
  }

  .step-body {
    margin-top: 0;
    padding-top: 6px;
  }

  .step-body p {
    margin-left: 0;
  }

  /* Explainer */
  .explainer-section {
    padding: 48px 0 40px;
  }

  .explainer-block h2 {
    font-size: 1.8rem;
  }

  .explainer-image {
    max-width: 260px;
  }

  .orbit-container {
    width: 320px;
    height: 320px;
  }

  .orbit-mascot {
    width: 66px;
    height: 66px;
  }

  .orbit-ring--inner .orbit-icon-inner {
    width: 34px;
    height: 34px;
    left: -17px;
    top: -100px;
  }

  .orbit-ring--inner .orbit-icon-inner > svg {
    width: 17px;
    height: 17px;
  }

  .orbit-ring--outer .orbit-icon-inner {
    width: 28px;
    height: 28px;
    left: -14px;
    top: -155px;
  }

  .orbit-ring--outer .orbit-icon-inner > svg {
    width: 14px;
    height: 14px;
  }

  .orbit-tooltip {
    width: 200px;
    padding: 10px 12px;
  }

  .agent-def {
    padding: 22px 20px;
  }

  /* Configurator */
  .configurator-section {
    padding: 48px 0 56px;
  }

  .option-cards {
    grid-template-columns: 1fr;
  }

  .total-bar {
    padding: 22px 20px;
  }

  .total-amount {
    font-size: 1.6rem;
  }

  /* Steps */
  .steps-section {
    padding: 48px 0;
  }

  /* Managed Care */
  .care-section {
    padding: 48px 0;
  }

  .care-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }

  /* Security */
  .security-section {
    padding: 48px 0;
  }

  /* FAQ */
  .faq-section {
    padding: 48px 0 56px;
  }

  /* Footer */
  .site-footer {
    padding: 10px 0 34px;
  }

  .footer-inner {
    align-items: center;
    flex-direction: column;
    gap: 14px;
    text-align: center;
  }

  .footer-nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 18px;
    font-size: 0.95rem;
  }

  .footer-inner p {
    font-size: 0.85rem;
    color: var(--muted);
  }
}

/* ============================================================
   RESPONSIVE — SMALL PHONES (< 400px)
   ============================================================ */
@media (max-width: 400px) {
  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-copy {
    font-size: 1rem;
  }

  .option-card-inner {
    padding: 16px;
  }

  .option-card-header {
    flex-direction: column;
    gap: 4px;
  }

  .hw-qty-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .billing-fields {
    grid-template-columns: 1fr !important;
  }
}

/* ============================================================
   Billing Location + Tax + Checkout overlay
   ============================================================ */

.billing-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.billing-fields .field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.billing-fields .field#province-field {
  overflow: hidden;
  transition: opacity 0.3s ease, transform 0.3s ease, max-height 0.3s ease;
  opacity: 1;
  transform: translateX(0);
  max-height: 80px;
}

.billing-fields .field#province-field.field--hidden {
  opacity: 0;
  transform: translateX(-16px);
  max-height: 0;
  pointer-events: none;
}

.billing-fields label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--muted);
}

.billing-fields select {
  padding: 0.6rem 2rem 0.6rem 0.8rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  font-size: 0.95rem;
  font-family: inherit;
  background: var(--surface);
  color: var(--text);
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M2 4l4 4 4-4' fill='none' stroke='%2350505a' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  cursor: pointer;
  transition: border-color 0.15s;
}

.billing-fields select:focus {
  outline: none;
  border-color: var(--brand);
}

/* Field-level validation error */
.field--error select {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(255, 77, 77, 0.15);
  animation: fieldShake 0.35s ease;
}

.field--error label {
  color: var(--brand);
}

@keyframes fieldShake {
  0%, 100% { transform: translateX(0); }
  20%      { transform: translateX(-5px); }
  40%      { transform: translateX(5px); }
  60%      { transform: translateX(-3px); }
  80%      { transform: translateX(3px); }
}

/* Inline error message above checkout button */
.checkout-error {
  margin: 0 0 0.75rem;
  padding: 0.6rem 0.85rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--brand);
  background: rgba(255, 77, 77, 0.07);
  border: 1px solid rgba(255, 77, 77, 0.2);
  border-radius: 10px;
  text-align: center;
  line-height: 1.45;
}

.checkout-error[hidden] {
  display: none;
}

/* Tax summary */
.tax-summary {
  padding: 0.35rem 0 0.2rem;
}

.tax-line {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--muted);
  padding: 0.12rem 0;
}

.tax-line--note {
  font-style: italic;
  color: #999;
}

.total-row--subtotal .total-label,
.total-row--subtotal .total-amount {
  font-size: 0.95rem;
  font-weight: 500;
}

.total-row--grand {
  border-top: 2px solid var(--line);
  padding-top: 0.75rem;
  margin-top: 0.25rem;
}

/* Checkout overlay */
.checkout-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0, 0, 0, 0.55);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  overflow-y: auto;
  padding: 2rem 1rem;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}

.checkout-overlay[hidden] {
  display: none;
}

.checkout-overlay-inner {
  background: #fff;
  border-radius: 16px;
  width: 100%;
  max-width: 550px;
  min-height: 420px;
  padding: 2.5rem 2rem 2rem;
  position: relative;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.3);
  margin: auto;
}

.checkout-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  color: #666;
  width: 2.25rem;
  height: 2.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.15s;
}

.checkout-close:hover {
  background: #f0f0f0;
}

/* ============================================================
   BOOK A CALL — Cal.com Embed Section
   ============================================================ */
.book-section {
  padding: 72px 0 80px;
  border-top: 1px solid rgb(204 207 213 / 65%);
  background: rgb(242 244 248 / 65%);
  backdrop-filter: blur(6px);
}

.cal-embed-wrapper {
  width: 100%;
  max-width: 1000px;
  min-height: 500px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

/* ---- Secondary CTA (ghost / outlined) ---- */
.cta.cta--secondary {
  background: transparent;
  color: var(--text);
  border: 2px solid var(--line);
  box-shadow: none;
  margin-left: 12px;
}

.cta.cta--secondary:hover {
  background: rgba(0, 0, 0, 0.04);
  border-color: #b0b0b6;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

/* Stack hero CTAs on mobile */
@media (max-width: 780px) {
  .book-section {
    padding: 48px 0 56px;
  }

  .cal-embed-wrapper {
    min-height: 400px;
  }

  .hero-content .cta.cta--secondary {
    margin-left: 0;
    margin-top: 12px;
  }
}

/* ============================================================
   ARTICLE PAGES — Long-Form Typography
   ============================================================ */

/* Article page wrapper — replaces <main> content on article pages */
.article-page {
  padding: 56px 0 80px;
}

.article-header {
  max-width: 720px;
  margin: 0 auto 48px;
  text-align: center;
}

.article-header h1 {
  margin: 0 0 16px;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  text-wrap: balance;
  color: var(--text);
}

.article-meta {
  font-size: 0.92rem;
  color: var(--muted);
  font-weight: 500;
}

.article-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--muted);
  margin-bottom: 24px;
  transition: color 0.15s ease;
}

.article-back:hover {
  color: var(--brand);
}

.article-back svg {
  width: 16px;
  height: 16px;
}

/* Article body — long-form content */
.article-body {
  max-width: 680px;
  margin: 0 auto;
}

.article-body h2 {
  margin: 56px 0 16px;
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--text);
}

.article-body h2:first-child {
  margin-top: 0;
}

.article-body h3 {
  margin: 40px 0 12px;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--text);
}

.article-body p {
  margin: 0 0 20px;
  font-size: 1.08rem;
  line-height: 1.7;
  color: var(--muted);
}

.article-body p strong {
  color: var(--text);
  font-weight: 600;
}

.article-body hr {
  border: none;
  border-top: 1px solid var(--line);
  margin: 48px 0;
}

.article-body ul,
.article-body ol {
  margin: 0 0 20px;
  padding-left: 0;
  list-style: none;
}

.article-body ul li,
.article-body ol li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 10px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--muted);
}

.article-body ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FF4D4D, #00E5CC);
}

.article-body ul li strong,
.article-body ol li strong {
  color: var(--text);
}

.article-body blockquote {
  margin: 28px 0;
  padding: 16px 24px;
  border-left: 3px solid var(--brand);
  background: rgb(242 244 248 / 65%);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.article-body blockquote p {
  margin: 0;
  font-style: italic;
  color: var(--muted);
}

.article-body code {
  font-family: 'SF Mono', 'Fira Code', 'Consolas', monospace;
  font-size: 0.92em;
  background: rgb(0 0 0 / 5%);
  padding: 2px 6px;
  border-radius: 5px;
}

.article-body pre {
  margin: 24px 0;
  padding: 20px 24px;
  background: #1a1a2e;
  border-radius: var(--radius-md);
  overflow-x: auto;
}

.article-body pre code {
  background: none;
  padding: 0;
  color: #e0e0e0;
  font-size: 0.88rem;
  line-height: 1.6;
}

/* Article CTA block at end of article */
.article-cta {
  max-width: 680px;
  margin: 56px auto 0;
  padding: 36px 32px;
  text-align: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}

.article-cta p {
  margin: 0 0 20px;
  font-size: 1.08rem;
  line-height: 1.55;
  color: var(--muted);
}

.article-cta p strong {
  color: var(--text);
}

/* ---- Articles Index / Listing Page ---- */
.articles-index {
  padding: 56px 0 80px;
}

.articles-index .section-title {
  margin-bottom: 40px;
}

.articles-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.article-card {
  display: block;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
  transition: opacity 0.15s ease;
}

.article-card:first-child {
  border-top: 1px solid var(--line);
}

.article-card:hover {
  opacity: 0.75;
}

.article-card h2 {
  margin: 0 0 6px;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
}

.article-card p {
  margin: 0 0 8px;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--muted);
}

.article-card .article-meta {
  font-size: 0.85rem;
}

/* ---- Article Page Responsive ---- */
@media (max-width: 780px) {
  .article-page {
    padding: 32px 0 56px;
  }

  .article-header {
    margin-bottom: 32px;
  }

  .article-body h2 {
    margin-top: 40px;
  }

  .article-body h3 {
    margin-top: 32px;
  }

  .article-body hr {
    margin: 36px 0;
  }

  .article-cta {
    margin-top: 40px;
    padding: 28px 20px;
  }

  .articles-index {
    padding: 32px 0 56px;
  }
}
