/* =============================================
   ViralShots Landing — Jobber-inspired
   Clean white/green, generous whitespace
   ============================================= */

/* ===== INDUSTRY BUCKET THEMING ===== */

/* Home Services — green (default) */
[data-bucket="home"],
:root {
  --hc-dark: #0f1a14;
  --hc-dark2: #152420;
  --hc-dark3: #1c3029;
  --hc-yellow: #2d8659;
  --hc-yellow-hover: #236e48;
  --hc-white: #fafcfb;
  --hc-gray: #5a6b62;
  --hc-gray-light: #8a9a91;
  --hc-gray-bg: #f4f7f5;
  --hc-gray-alt: #edf1ee;
  --hc-border: rgba(15,26,20,0.06);
  --hc-border-light: #dce5df;
  --hc-green: #2d8659;
  --hc-green-vivid: #22a85a;
  --hc-red: #c53030;
  --hc-max: 1140px;
  --hc-radius: 6px;
  --hc-radius-lg: 10px;
  --hc-font: "Figtree", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

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

body {
  font-family: var(--hc-font);
  color: var(--hc-dark);
  background: var(--hc-white);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
  font-size: 1rem;
  font-weight: 400;
  font-kerning: normal;
}

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

/* ===== SKIP LINK ===== */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  padding: 12px 24px;
  background: var(--hc-green);
  color: #fff;
  font-weight: 700;
  border-radius: 0 0 6px 6px;
  z-index: 200;
  text-decoration: none;
  transition: top 150ms;
}

.skip-link:focus {
  top: 0;
}

/* ===== FOCUS STYLES ===== */
:focus-visible {
  outline: 2px solid var(--hc-green);
  outline-offset: 2px;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
details summary:focus-visible {
  outline: 2px solid var(--hc-green);
  outline-offset: 2px;
}

.hc-btn-primary:focus-visible,
.hc-btn-secondary:focus-visible,
.hc-nav-cta:focus-visible {
  outline: 2px solid var(--hc-dark);
  outline-offset: 3px;
}

/* ===== BUTTONS ===== */

.hc-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 36px;
  border-radius: var(--hc-radius);
  background: var(--hc-green);
  color: var(--hc-white);
  font-family: var(--hc-font);
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 120ms, transform 120ms, box-shadow 120ms;
}

.hc-btn-primary:hover {
  background: var(--hc-yellow-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(45,134,89,0.3);
}

.hc-btn-lg {
  padding: 18px 44px;
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.hc-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: 6px;
  background: transparent;
  color: var(--hc-dark);
  font-family: var(--hc-font);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  border: 2px solid var(--hc-border-light);
  cursor: pointer;
  transition: border-color 120ms, background 120ms;
}

.hc-btn-secondary:hover {
  border-color: var(--hc-dark);
  background: var(--hc-gray-bg);
}

/* ===== NAV ===== */

.hc-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.97);
  border-bottom: 1px solid var(--hc-border-light);
  backdrop-filter: blur(10px);
}

.hc-nav-inner {
  max-width: var(--hc-max);
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.hc-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--hc-dark);
  flex-shrink: 0;
}

.hc-brand strong {
  font-size: 1.05rem;
  font-weight: 700;
}

.hc-logo {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: var(--hc-green);
  color: #fff;
  font-weight: 800;
  font-size: 0.8rem;
}

.hc-logo-sm {
  width: 28px;
  height: 28px;
  font-size: 0.7rem;
  border-radius: 6px;
}

.hc-nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.hc-nav-links a {
  padding: 8px 14px;
  border-radius: 6px;
  text-decoration: none;
  color: var(--hc-gray);
  font-weight: 500;
  font-size: 0.92rem;
  transition: color 100ms, background 100ms;
}

.hc-nav-links a:hover {
  color: var(--hc-dark);
  background: var(--hc-gray-bg);
}

.hc-nav-cta {
  padding: 10px 20px;
  border-radius: 6px;
  background: var(--hc-green);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.88rem;
  transition: background 120ms;
  flex-shrink: 0;
  white-space: nowrap;
}

.hc-nav-cta:hover {
  background: var(--hc-yellow-hover);
}

.hc-nav-signin {
  padding: 8px 16px;
  border-radius: 6px;
  color: var(--hc-ink, #1a1a1a);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.85rem;
  transition: background 120ms;
  flex-shrink: 0;
  white-space: nowrap;
}
.hc-nav-signin:hover {
  background: rgba(0,0,0,0.05);
}

/* ===== HERO ===== */

.hc-hero {
  background: var(--hc-white);
  color: var(--hc-dark);
  padding: 48px 24px 64px;
}

.hc-hero-inner {
  max-width: var(--hc-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  align-items: start;
}

.hc-hero-content {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-top: 32px;
}

.hc-hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 24px;
}

.hc-hero-pills span {
  padding: 5px 12px;
  border-radius: 9999px;
  background: rgba(45,134,89,0.08);
  border: 1px solid rgba(45,134,89,0.18);
  color: var(--hc-green);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.hc-pill-active {
  background: var(--hc-green) !important;
  border-color: var(--hc-green) !important;
  color: #fff !important;
}

.hc-hero-kicker {
  font-size: clamp(0.95rem, 1.6vw, 1.1rem);
  font-style: italic;
  font-weight: 500;
  color: var(--hc-gray);
  margin-bottom: 12px;
  letter-spacing: 0.01em;
  line-height: 1.5;
}

.hc-hero h1 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 900;
  line-height: 1.08;
  margin-bottom: 20px;
  letter-spacing: -0.03em;
  color: var(--hc-dark);
}

.hc-hero p {
  color: var(--hc-gray);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 48ch;
  margin-bottom: 28px;
  font-weight: 400;
}

.hc-hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.hc-hero-note {
  font-size: 0.82rem;
  color: var(--hc-gray);
  margin: 0;
}

/* ===== PHOTO INTELLIGENCE SECTION ===== */
.hc-pi-wrap {
  text-align: center;
}

.hc-pi-sub {
  max-width: 640px;
  margin: 0 auto 32px;
  color: var(--hc-gray);
  font-size: 1.05rem;
  line-height: 1.6;
}

.hc-pi-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  text-align: left;
  margin-bottom: 32px;
}

.hc-pi-step {
  padding: 24px;
  border: 1px solid var(--hc-border-light);
  border-radius: var(--hc-radius);
  background: var(--hc-white);
}

.hc-pi-step strong {
  display: block;
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.hc-pi-step p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--hc-gray);
}

.hc-pi-highlight {
  padding: 24px 32px;
  background: linear-gradient(135deg, #f0fdf4, #ecfdf5);
  border: 2px solid #86efac;
  border-radius: var(--hc-radius-lg);
  display: inline-block;
  margin-bottom: 24px;
}

.hc-pi-highlight-label {
  margin: 0 0 4px;
  font-size: 0.85rem;
  color: #166534;
  font-weight: 600;
}

.hc-pi-highlight-text {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 800;
  color: #166534;
}

/* ===== SCROLL HINT ===== */
.hc-scroll-hint {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 24px;
  color: var(--hc-gray);
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  opacity: 0;
  animation: hc-hint-in 600ms var(--ease-out-expo) 4s forwards;
  transition: color 150ms;
}

.hc-scroll-hint:hover {
  color: var(--hc-green);
}

@keyframes hc-hint-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ===== HERO MOBILE PROOF STRIP ===== */
.hc-hero-proof-mobile {
  display: none;
}

/* ===== REVEAL SLIDER ===== */
.hc-reveal-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 12px;
  overflow: hidden;
  cursor: col-resize;
  -webkit-user-select: none;
  user-select: none;
  touch-action: none;
}

.hc-reveal-after,
.hc-reveal-before {
  position: absolute;
  inset: 0;
}

.hc-reveal-after img,
.hc-reveal-before img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hc-reveal-before {
  width: 50%;
  overflow: hidden;
  z-index: 2;
}

.hc-reveal-before img {
  width: 200%;
  max-width: none;
}

.hc-reveal-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.hc-reveal-handle-line {
  flex: 1;
  width: 3px;
  background: #fff;
  box-shadow: 0 0 6px rgba(0,0,0,0.3);
}

.hc-reveal-handle-grip {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.25);
  display: grid;
  place-items: center;
  color: var(--hc-green);
  flex-shrink: 0;
}

.hc-reveal-label {
  position: absolute;
  top: 8px;
  padding: 3px 10px;
  background: rgba(0,0,0,0.55);
  color: #fff;
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-radius: 4px;
  z-index: 4;
  pointer-events: none;
}

.hc-reveal-label-before { left: 8px; }
.hc-reveal-label-after { right: 8px; }

/* ===== DISPLACED OUTPUT THUMBNAILS ===== */
.hc-hero-proof-outputs-fancy {
  display: none;
}


/* ===== HERO VISUAL — STORY ===== */

.hc-hero-visual {
  position: relative;
  min-height: 400px;
}

.ha-story {
  width: 100%;
  height: 100%;
}

/* Tradesman — absolutely positioned, immune to sibling layout changes */
.ha-tradesman {
  position: absolute;
  top: 0;
  left: 0;
  width: 62%;
  height: 380px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
  background: var(--hc-gray-bg);
  z-index: 2;
}

.ha-tradesman-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

/* Engine row — overlaps tradesman right edge for depth */
.ha-engine-row {
  position: absolute;
  top: 24px;
  right: -4%;
  width: 46%;
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 3;
}

/* Floating bubble showing the photos being sent */
.ha-phone-bubble {
  position: absolute;
  bottom: 12px;
  right: 12px;
  padding: 8px;
  border-radius: 10px;
  background: rgba(255,255,255,0.95);
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 120px;
  max-width: 120px;
  overflow: hidden;
  z-index: 3;
}

.ha-bubble-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  width: 100%;
  overflow: hidden;
}

.ha-bubble-photos img {
  width: 100%;
  height: auto;
  border-radius: 3px;
  display: block;
  aspect-ratio: 1/1;
  object-fit: cover;
}

.ha-bubble-text {
  font-size: 0.6rem;
  font-weight: 700;
  color: var(--hc-dark);
  text-align: center;
  /* no pulse animation */
}

/* Engine row — ticker + results side by side on desktop */
/* Engine row is now defined in .ha-story grid above */

/* Processing strip — single action at a time */
.ha-process-strip {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 8px;
  background: var(--hc-dark2);
  border: 1px solid var(--hc-border);
  font-size: 0.8rem;
}

.ha-process-ring {
  width: 20px;
  height: 20px;
  border: 3px solid rgba(45,134,89,0.15);
  border-top-color: var(--hc-green);
  border-radius: 50%;
  flex-shrink: 0;
  animation: ha-spin 1.2s linear infinite;
}

.ha-action {
  font-size: 0.78rem;
  font-weight: 600;
  color: #d1d5db;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-height: 1.2em;
  transition: color 150ms;
}

.ha-action-done {
  color: var(--hc-green);
  color: var(--hc-green-vivid);
}

@keyframes ha-action-flash {
  0% {
    color: #fff;
    text-shadow: 0 0 16px rgba(45,134,89,0.8);
    transform: scale(1.06);
  }
  100% {
    color: var(--hc-green);
    text-shadow: none;
    transform: scale(1);
  }
}

/* Output fan — cards reveal as ticker hits their step */
/* Output fan — one card at a time, cycling */
.ha-result-fan {
  position: relative;
  min-height: 240px;
}

.ha-result {
  position: absolute;
  inset: 0;
  border-radius: 10px;
  overflow: hidden;
  background: var(--hc-white);
  box-shadow: 0 12px 48px rgba(0,0,0,0.25), 0 0 0 1px rgba(0,0,0,0.06);
  opacity: 0;
  transition: opacity 500ms var(--ease-out-quart);
}

.ha-result.is-visible {
  opacity: 1;
  z-index: 2;
}

.ha-result img {
  width: 100%;
  display: block;
}

.ha-result span {
  display: block;
  padding: 10px 12px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--hc-white);
  background: var(--hc-dark);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* Keyframes */
@keyframes ha-bubble-in {
  from {
    opacity: 0;
    transform: translateY(10px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes ha-pulse-text {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

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

/* (ticker keyframe removed — now JS-driven) */

@keyframes ha-result-pop {
  0% {
    opacity: 0;
    transform: translateY(16px);
  }
  60% {
    opacity: 1;
    transform: translateY(-3px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== PROOF BAR ===== */

.hc-proof-bar {
  background: var(--hc-dark);
  padding: 0 24px;
}

.hc-proof-inner {
  max-width: var(--hc-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.hc-proof-item {
  padding: 28px 0;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.08);
}

.hc-proof-item:last-child {
  border-right: none;
}

.hc-proof-item strong {
  display: block;
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--hc-green-vivid);
  margin-bottom: 2px;
}

.hc-proof-item span {
  font-size: 0.78rem;
  color: var(--hc-gray-light);
  font-weight: 500;
}

/* ===== SECTIONS ===== */

.hc-section {
  padding: 80px 24px;
}

.hc-section-dark {
  background: linear-gradient(180deg, #0f1a14 0%, #112018 100%);
  color: var(--hc-white);
}

.hc-section-alt {
  background: var(--hc-gray-bg);
}

.hc-section h2 {
  font-weight: 900;
  letter-spacing: -0.025em;
  line-height: 1.1;
}

.hc-section-inner {
  max-width: var(--hc-max);
  margin: 0 auto;
}

.hc-label {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 9999px;
  background: rgba(45,134,89,0.08);
  color: var(--hc-green);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
  border: 1px solid rgba(45,134,89,0.15);
}

.hc-label-light {
  background: rgba(45,134,89,0.15);
  color: #fff;
  border-color: rgba(255,255,255,0.2);
}

.hc-section h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
  max-width: 24ch;
  letter-spacing: -0.01em;
}

.hc-section-sub {
  color: var(--hc-gray);
  font-size: 1rem;
  max-width: 52ch;
  margin-bottom: 40px;
}

.hc-section-dark .hc-section-sub {
  color: #d1d5db;
}

/* ===== STEPS ===== */

.hc-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.hc-step {
  padding: 28px 24px;
  border-radius: var(--hc-radius-lg);
  background: var(--hc-white);
  border: 1px solid var(--hc-border-light);
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}

.hc-step-num {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: var(--hc-green);
  color: #fff;
  font-weight: 800;
  font-size: 1.1rem;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
}

.hc-step h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.hc-step p {
  color: #6b7280;
  font-size: 0.9rem;
  line-height: 1.55;
}

/* ===== OUTPUTS SHOWCASE (horizontal scroll) ===== */

.hc-outputs-showcase {
  padding: 80px 24px;
  background: var(--hc-gray-bg);
}

.hc-outputs-showcase-inner {
  max-width: var(--hc-max);
  margin: 0 auto;
}

.hc-outputs-showcase h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 32px;
  letter-spacing: -0.01em;
  text-align: center;
}

.hc-output-scroll {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  padding-bottom: 12px;
}

.hc-output-item {
  flex: 0 1 280px;
  max-width: 320px;
  min-width: 220px;
  background: #fff;
  border-radius: var(--hc-radius-lg);
  overflow: hidden;
  border: 1px solid var(--hc-border);
  display: flex;
  flex-direction: column;
}

.hc-output-item img {
  width: 100%;
  height: auto;
  display: block;
}

.hc-output-meta {
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hc-output-meta strong {
  font-size: 0.92rem;
}

.hc-output-meta span {
  font-size: 0.82rem;
  color: var(--hc-gray);
}

/* Text-only output cards (review request, follow-up) */
.hc-output-text-card {
  background: #fff;
}

.hc-output-text-preview {
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.hc-output-text-icon {
  color: var(--hc-green);
}

.hc-output-text-preview p {
  font-size: 0.85rem;
  color: var(--hc-gray);
  line-height: 1.55;
  margin: 0;
}

.hc-outputs-cta {
  text-align: center;
  margin-top: 32px;
}

@media (max-width: 600px) {
  .hc-outputs-showcase {
    padding: 48px 16px;
  }
  .hc-output-scroll {
    justify-content: center;
  }
  .hc-output-item {
    flex: 0 1 100%;
    max-width: 400px;
  }
}

/* ===== OUTPUTS GRID ===== */

.hc-outputs-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.hc-output-card {
  padding: 24px 20px;
  border-radius: var(--hc-radius);
  background: var(--hc-dark2);
  border: 1px solid var(--hc-border);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hc-output-icon {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  padding: 10px;
  background: rgba(45,134,89,0.15);
  color: var(--hc-green);
  display: grid;
  place-items: center;
  margin-bottom: 4px;
}

.hc-output-card strong {
  font-size: 0.92rem;
}

.hc-output-card span {
  font-size: 0.72rem;
  color: var(--hc-gray);
  font-weight: 600;
}

.hc-output-card p {
  font-size: 0.82rem;
  color: var(--hc-gray);
  line-height: 1.5;
  margin: 0;
}

/* ===== TRADES GRID ===== */

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

.hc-trade-card {
  text-decoration: none;
  padding: 22px 20px;
  border-radius: var(--hc-radius);
  background: var(--hc-white);
  border: 1px solid var(--hc-border-light);
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: left;
  transition: border-color 120ms, box-shadow 120ms, transform 120ms;
}

.hc-trade-card:hover {
  border-color: var(--hc-green);
  box-shadow: 0 4px 16px rgba(45,134,89,0.12);
  transform: translateY(-2px);
}

.hc-trade-card strong {
  font-size: 1rem;
  font-weight: 800;
}

.hc-trade-card span {
  font-size: 0.82rem;
  color: #6b7280;
  font-weight: 400;
}

/* ===== IDEAL CLIENT ===== */

.hc-ideal-header {
  margin-bottom: 40px;
}

.hc-ideal-header h2 {
  max-width: 32ch;
}

.hc-ideal-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.hc-ideal-card {
  padding: 28px 24px;
  border-radius: var(--hc-radius-lg);
  background: var(--hc-white);
  border: 1px solid var(--hc-border-light);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hc-ideal-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(45,134,89,0.08);
  border: 1px solid rgba(45,134,89,0.15);
  color: var(--hc-green);
  display: grid;
  place-items: center;
  margin-bottom: 4px;
}

.hc-ideal-card h3 {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.3;
}

.hc-ideal-card p {
  font-size: 0.88rem;
  color: #6b7280;
  line-height: 1.6;
  margin: 0;
}

/* ===== COMPARE ===== */

.hc-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 40px;
}

.hc-compare-col {
  padding: 28px 24px;
  border-radius: var(--hc-radius-lg);
}

.hc-compare-bad {
  background: #fef2f2;
  border: 1px solid #fecaca;
}

.hc-compare-good {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
}

.hc-compare-col h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.hc-compare-bad h3 { color: var(--hc-red); }
.hc-compare-good h3 { color: var(--hc-green); }

.hc-compare-col ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hc-compare-col li {
  padding-left: 24px;
  position: relative;
  font-size: 0.9rem;
  color: #374151;
  line-height: 1.45;
}

.hc-compare-bad li::before {
  content: "\2717";
  position: absolute;
  left: 0;
  color: #dc2626;
  font-weight: 700;
  font-size: 1.05em;
}

.hc-compare-good li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: #16a34a;
  font-weight: 700;
  font-size: 1.05em;
}

/* ===== VALUE MATRIX ===== */

.hc-matrix-sub {
  color: var(--hc-gray);
  max-width: 58ch;
  margin: 0 auto 32px;
  text-align: center;
  font-size: 1.05rem;
  line-height: 1.6;
}

.hc-value-matrix {
  background: var(--hc-white);
  border: 1px solid var(--hc-border-light);
  border-radius: var(--hc-radius-lg);
  overflow: hidden;
  box-shadow: 0 16px 48px -24px rgba(15, 26, 20, 0.15);
  max-width: 960px;
  margin: 0 auto;
}

.hc-vm-header {
  display: grid;
  grid-template-columns: 1fr 1.4fr 1.4fr;
  background: var(--hc-dark);
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
}

.hc-vm-header > div {
  padding: 14px 18px;
}

.hc-vm-vs-h {
  color: var(--hc-green-vivid);
}

.hc-vm-row {
  display: grid;
  grid-template-columns: 1fr 1.4fr 1.4fr;
  border-top: 1px solid var(--hc-border-light);
}

.hc-vm-row > div {
  padding: 16px 18px;
  font-size: 0.92rem;
  line-height: 1.5;
}

.hc-vm-measure {
  font-weight: 700;
  color: var(--hc-dark);
  display: flex;
  align-items: center;
}

.hc-vm-manual {
  color: var(--hc-gray);
}

.hc-vm-vs {
  background: #eaf6ef;
  color: var(--hc-dark);
}

.hc-vm-badge {
  display: inline-block;
  font-weight: 800;
  font-size: 0.82rem;
  border-radius: 999px;
  padding: 3px 10px;
  margin-left: 8px;
  white-space: nowrap;
  vertical-align: middle;
}

.hc-vm-good {
  background: var(--hc-green);
  color: #fff;
}

.hc-vm-bad {
  background: #f7eae6;
  color: #c2492f;
}

.hc-vm-row-total {
  border-top: 2px solid var(--hc-dark);
  background: var(--hc-gray-bg);
}

.hc-vm-verdict-bad {
  color: #c2492f;
  font-size: 1.05rem;
}

.hc-vm-verdict-good {
  color: var(--hc-green);
  font-size: 1.05rem;
}

.hc-matrix-kicker {
  margin-top: 28px;
  text-align: center;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--hc-dark);
  line-height: 1.4;
  max-width: 40ch;
  margin-left: auto;
  margin-right: auto;
}

.hc-matrix-kicker strong {
  color: var(--hc-green);
}

@media (max-width: 700px) {
  .hc-vm-header {
    display: none;
  }

  .hc-value-matrix {
    background: transparent;
    border: none;
    box-shadow: none;
  }

  .hc-vm-row {
    display: block;
    background: var(--hc-white);
    border: 1px solid var(--hc-border-light);
    border-radius: var(--hc-radius-lg);
    margin-bottom: 12px;
    overflow: hidden;
  }

  .hc-vm-measure {
    border-bottom: 1px solid var(--hc-border-light);
    font-size: 0.95rem;
  }

  .hc-vm-manual::before {
    content: "Manually";
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--hc-gray-light);
    margin-bottom: 4px;
  }

  .hc-vm-vs::before {
    content: "ViralShots";
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--hc-green);
    margin-bottom: 4px;
  }
}

/* ===== PRICING ===== */

.hc-pricing-wrap {
  text-align: center;
}

.hc-pricing-wrap h2 {
  max-width: none;
  margin-left: auto;
  margin-right: auto;
}

.hc-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1060px;
  margin: 40px auto 0;
  text-align: left;
}

.hc-price-card {
  padding: 32px 28px;
  border-radius: var(--hc-radius-lg);
  background: var(--hc-white);
  border: 1px solid var(--hc-border-light);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hc-price-featured {
  border-color: var(--hc-green);
  border-width: 2px;
  box-shadow: 0 12px 40px rgba(45,134,89,0.15);
  position: relative;
  transform: scale(1.03);
}

/* .hc-price-annual removed — annual is now hc-price-featured */

.hc-price-save {
  display: inline-block;
  background: #22a85a;
  color: #fff;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-left: 6px;
  vertical-align: middle;
}

.hc-price-monthly-eq {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--hc-green);
  margin-top: -10px;
}

.hc-price-tag {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--hc-gray);
}

.hc-price-featured .hc-price-tag {
  color: var(--hc-green);
}

.hc-price-amount {
  display: flex;
  align-items: baseline;
  gap: 2px;
}

.hc-price-amount strong {
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1;
}

.hc-price-amount span {
  font-size: 1rem;
  color: var(--hc-gray);
  font-weight: 500;
}

.hc-price-card p {
  font-size: 0.9rem;
  color: #6b7280;
  line-height: 1.5;
}

.hc-price-card ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.hc-price-card li {
  padding-left: 24px;
  position: relative;
  font-size: 0.88rem;
  color: #374151;
}

.hc-price-card li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--hc-green);
  font-weight: 700;
}

.hc-price-card .hc-btn-primary,
.hc-price-card .hc-btn-secondary {
  width: 100%;
  text-align: center;
}

.hc-price-note {
  font-size: 0.78rem;
  color: var(--hc-gray);
  text-align: center;
  margin-top: -4px;
}

.hc-founding-badge {
  margin-top: 12px;
  padding: 10px 16px;
  background: linear-gradient(135deg, #fef9e7 0%, #fdf2d0 100%);
  border: 1.5px solid #e2c44a;
  border-radius: var(--hc-radius);
  font-size: 0.85rem;
  font-weight: 600;
  color: #7a5c00;
  text-align: center;
  letter-spacing: 0.01em;
}

.hc-guarantee-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
  padding: 12px 18px;
  background: linear-gradient(135deg, #eaf6ef 0%, #d4eddf 100%);
  border: 1.5px solid var(--hc-green);
  border-radius: var(--hc-radius);
  font-size: 0.88rem;
  font-weight: 600;
  color: #1a5c35;
  text-align: left;
}

.hc-guarantee-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
}

.hc-guarantee-badge--final {
  margin-top: 1.25rem;
  justify-content: center;
  text-align: center;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== FAQ ===== */

.hc-faq-wrap {
  max-width: 680px;
  margin: 0 auto;
}

.hc-faq-wrap h2 {
  text-align: center;
  max-width: none;
  margin-bottom: 32px;
}

.hc-faq {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hc-faq-item {
  border: 1px solid var(--hc-border-light);
  border-radius: var(--hc-radius);
  background: var(--hc-white);
  overflow: hidden;
}

.hc-faq-item summary {
  padding: 18px 22px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.hc-faq-item summary::after {
  content: "+";
  font-size: 1.2rem;
  color: var(--hc-gray);
  font-weight: 400;
  transition: transform 150ms;
  flex-shrink: 0;
  margin-left: 12px;
}

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

.hc-faq-item p {
  padding: 0 22px 18px;
  color: #6b7280;
  line-height: 1.6;
  font-size: 0.9rem;
}

/* ===== FINAL CTA ===== */

.hc-final {
  background: var(--hc-green);
  color: var(--hc-white);
  padding: 100px 24px;
}

.hc-final-inner {
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.hc-final h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.hc-final p {
  color: rgba(255,255,255,0.8);
  font-size: 1.05rem;
  max-width: 44ch;
}

.hc-final .hc-btn-primary,
.hc-final .hc-btn-lg {
  background: var(--hc-white);
  color: var(--hc-green);
}

.hc-final .hc-btn-primary:hover {
  background: var(--hc-dark);
  color: var(--hc-white);
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

/* ===== FOOTER ===== */

.hc-footer {
  border-top: 1px solid var(--hc-border-light);
  padding: 28px 24px;
}

.hc-footer-inner {
  max-width: var(--hc-max);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hc-footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hc-footer-brand strong {
  font-size: 0.95rem;
  font-weight: 700;
}

.hc-footer p {
  font-size: 0.82rem;
  color: var(--hc-gray);
}

/* ===== RESPONSIVE ===== */

@media (max-width: 900px) {
  .hc-hero-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hc-hero {
    padding: 40px 20px 56px;
  }

  .ha-phone-bubble {
    max-width: 140px;
    padding: 8px;
  }

  .ha-result-fan {
    grid-template-columns: 1fr 1fr;
  }

  .ha-phone-bubble {
    max-width: 140px;
  }

  .hc-steps {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .hc-outputs-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hc-trades-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hc-compare {
    grid-template-columns: 1fr;
  }

  .hc-ideal-grid {
    grid-template-columns: 1fr;
  }

  .hc-pricing-grid {
    grid-template-columns: 1fr;
  }

  .hc-proof-inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .hc-proof-item {
    padding: 18px 0;
  }

  .hc-proof-item:nth-child(2) {
    border-right: none;
  }
}

/* ===== HAMBURGER (mobile only) ===== */
.hc-nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: none;
  border: none;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.hc-nav-hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--hc-dark);
  border-radius: 2px;
  transition: transform 200ms, opacity 200ms;
}

.hc-nav-hamburger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hc-nav-hamburger.is-open span:nth-child(2) {
  opacity: 0;
}

.hc-nav-hamburger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 600px) {
  .hc-hero-visual {
    position: static;
    min-height: auto;
  }

  .ha-tradesman {
    position: static;
    width: 100%;
    height: auto;
    aspect-ratio: 3/2;
  }

  .ha-engine-row {
    position: static;
    width: 100%;
  }

  .ha-result-fan {
    flex-direction: row;
    max-height: none;
  }

  .hc-nav-hamburger {
    display: flex;
  }

  .hc-nav-cta {
    display: none;
  }

  .hc-nav-links {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: rgba(255,255,255,0.98);
    border-bottom: 1px solid var(--hc-border-light);
    flex-direction: column;
    padding: 8px 16px 16px;
    gap: 0;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  }

  .hc-nav-links.is-open {
    display: flex;
  }

  .hc-nav-links a {
    padding: 14px 16px;
    font-size: 1rem;
    border-bottom: 1px solid var(--hc-border-light);
  }

  .hc-nav-links a:last-child {
    border-bottom: none;
  }

  .hc-nav-inner {
    position: relative;
  }

  .hc-hero h1 {
    font-size: 2rem;
    letter-spacing: -0.03em;
  }

  .hc-hero p {
    font-size: 0.92rem;
  }

  .hc-section h2 {
    font-size: 1.6rem;
  }

  .hc-hero-proof-mobile {
    display: block;
    margin-top: 20px;
  }

  .hc-hero-proof-outputs-fancy {
    display: flex;
    gap: 10px;
    margin-top: 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 4px;
    scrollbar-width: none;
  }

  .hc-hero-proof-outputs-fancy::-webkit-scrollbar {
    display: none;
  }

  .hc-proof-out-card {
    flex: 0 0 72%;
    scroll-snap-align: center;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--hc-border-light);
    background: var(--hc-white);
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  }

  .hc-proof-out-card img {
    width: 100%;
    display: block;
  }

  .hc-proof-out-card span {
    display: block;
    padding: 8px 8px;
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--hc-gray);
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.03em;
  }

  .hc-hero-pills {
    gap: 4px;
  }

  .hc-hero-pills span {
    font-size: 0.65rem;
    padding: 4px 8px;
  }

  .hc-outputs-grid {
    grid-template-columns: 1fr;
  }

  .hc-trades-grid {
    grid-template-columns: 1fr;
  }

  .hc-section {
    padding: 48px 16px;
  }

  .hc-section h2 {
    font-size: 1.5rem;
  }

  .ha-result-fan {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .ha-phone-bubble {
    max-width: 120px;
    bottom: 8px;
    right: 8px;
  }

  .ha-result-fan {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .ha-action {
    font-size: 0.7rem;
  }

  .hc-proof-inner {
    grid-template-columns: 1fr 1fr;
  }

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

  .hc-btn-primary,
  .hc-btn-secondary {
    width: 100%;
    text-align: center;
  }

  .hc-final {
    padding: 48px 16px;
  }

  .hc-desktop-only {
    display: none;
  }
}

/* =============================================
   MOTION SYSTEM
   ============================================= */

/* ===== BUCKET: BEAUTY ===== */
[data-bucket="beauty"] {
  --hc-yellow: #7c3aed;
  --hc-yellow-hover: #6d28d9;
  --hc-green: #7c3aed;
  --hc-green-vivid: #8b5cf6;
}

[data-bucket="beauty"] .hc-btn-primary:hover {
  box-shadow: 0 6px 20px rgba(124,58,237,0.3);
}

[data-bucket="beauty"] .hc-proof-item strong {
  color: #8b5cf6;
}

[data-bucket="beauty"] .hc-label {
  background: rgba(124,58,237,0.08);
  color: #7c3aed;
  border-color: rgba(124,58,237,0.15);
}

[data-bucket="beauty"] .hc-hero-pills span {
  background: rgba(124,58,237,0.08);
  border-color: rgba(124,58,237,0.18);
  color: #7c3aed;
}

[data-bucket="beauty"] .hc-pill-active {
  background: #7c3aed !important;
  border-color: #7c3aed !important;
  color: #fff !important;
}

[data-bucket="beauty"] .hc-step-num {
  background: #7c3aed;
}

[data-bucket="beauty"] .hc-final {
  background: #7c3aed;
}

[data-bucket="beauty"] .hc-final .hc-btn-primary,
[data-bucket="beauty"] .hc-final .hc-btn-lg {
  color: #7c3aed;
}

[data-bucket="beauty"] .hc-trade-card:hover {
  border-color: #7c3aed;
  box-shadow: 0 4px 16px rgba(124,58,237,0.12);
}

[data-bucket="beauty"] .hc-price-featured {
  border-color: #7c3aed;
  box-shadow: 0 12px 40px rgba(124,58,237,0.15);
}

[data-bucket="beauty"] .hc-price-featured .hc-price-tag {
  color: #7c3aed;
}

[data-bucket="beauty"] .hc-price-card li::before {
  color: #7c3aed;
}

[data-bucket="beauty"] .ha-process-ring {
  border-color: rgba(124,58,237,0.15);
  border-top-color: #7c3aed;
}

[data-bucket="beauty"] .ha-action-done {
  color: #8b5cf6;
}

[data-bucket="beauty"] .hc-reveal-handle-grip {
  color: #7c3aed;
}

[data-bucket="beauty"] .hc-logo {
  background: #7c3aed;
}

[data-bucket="beauty"] .hc-nav-cta {
  background: #7c3aed;
}

[data-bucket="beauty"] .hc-nav-cta:hover {
  background: #6d28d9;
}

[data-bucket="beauty"] .hc-compare-good {
  background: #f5f3ff;
  border-color: #ddd6fe;
}

[data-bucket="beauty"] .hc-compare-good h3 {
  color: #7c3aed;
}

[data-bucket="beauty"] .hc-compare-good li::before {
  color: #7c3aed;
}

[data-bucket="beauty"] .hc-ideal-icon {
  background: rgba(124,58,237,0.08);
  border-color: rgba(124,58,237,0.15);
  color: #7c3aed;
}

[data-bucket="beauty"] .hc-output-card:hover {
  border-color: rgba(124,58,237,0.3);
  background: rgba(124,58,237,0.06);
}

[data-bucket="beauty"] .hc-output-icon {
  background: rgba(124,58,237,0.15);
  color: #7c3aed;
}

[data-bucket="beauty"] .hc-story-badge {
  background: #7c3aed;
}

[data-bucket="beauty"] .hc-story-arrow {
  color: #7c3aed;
}

[data-bucket="beauty"] .hc-story-output-icon {
  color: #7c3aed;
}

[data-bucket="beauty"] .hc-pi-highlight {
  background: linear-gradient(135deg, #f5f3ff, #ede9fe);
  border-color: #c4b5fd;
}

[data-bucket="beauty"] .hc-pi-highlight-label,
[data-bucket="beauty"] .hc-pi-highlight-text {
  color: #5b21b6;
}

[data-bucket="beauty"] .hc-scroll-hint:hover {
  color: #7c3aed;
}

[data-bucket="beauty"] .skip-link {
  background: #7c3aed;
}

[data-bucket="beauty"] :focus-visible {
  outline-color: #7c3aed;
}

/* ===== BUCKET: FITNESS ===== */
[data-bucket="fitness"] {
  --hc-yellow: #c2410c;
  --hc-yellow-hover: #9a3412;
  --hc-green: #c2410c;
  --hc-green-vivid: #ea580c;
}

[data-bucket="fitness"] .hc-btn-primary:hover {
  box-shadow: 0 6px 20px rgba(194,65,12,0.3);
}

[data-bucket="fitness"] .hc-proof-item strong {
  color: #ea580c;
}

[data-bucket="fitness"] .hc-label {
  background: rgba(194,65,12,0.08);
  color: #c2410c;
  border-color: rgba(194,65,12,0.15);
}

[data-bucket="fitness"] .hc-hero-pills span {
  background: rgba(194,65,12,0.08);
  border-color: rgba(194,65,12,0.18);
  color: #c2410c;
}

[data-bucket="fitness"] .hc-pill-active {
  background: #c2410c !important;
  border-color: #c2410c !important;
  color: #fff !important;
}

[data-bucket="fitness"] .hc-step-num {
  background: #c2410c;
}

[data-bucket="fitness"] .hc-final {
  background: #c2410c;
}

[data-bucket="fitness"] .hc-final .hc-btn-primary,
[data-bucket="fitness"] .hc-final .hc-btn-lg {
  color: #c2410c;
}

[data-bucket="fitness"] .hc-trade-card:hover {
  border-color: #c2410c;
  box-shadow: 0 4px 16px rgba(194,65,12,0.12);
}

[data-bucket="fitness"] .hc-price-featured {
  border-color: #c2410c;
  box-shadow: 0 12px 40px rgba(194,65,12,0.15);
}

[data-bucket="fitness"] .hc-price-featured .hc-price-tag {
  color: #c2410c;
}

[data-bucket="fitness"] .hc-price-card li::before {
  color: #c2410c;
}

[data-bucket="fitness"] .ha-process-ring {
  border-color: rgba(194,65,12,0.15);
  border-top-color: #c2410c;
}

[data-bucket="fitness"] .ha-action-done {
  color: #ea580c;
}

[data-bucket="fitness"] .hc-reveal-handle-grip {
  color: #c2410c;
}

[data-bucket="fitness"] .hc-logo {
  background: #c2410c;
}

[data-bucket="fitness"] .hc-nav-cta {
  background: #c2410c;
}

[data-bucket="fitness"] .hc-nav-cta:hover {
  background: #9a3412;
}

[data-bucket="fitness"] .hc-compare-good {
  background: #fff7ed;
  border-color: #fed7aa;
}

[data-bucket="fitness"] .hc-compare-good h3 {
  color: #c2410c;
}

[data-bucket="fitness"] .hc-compare-good li::before {
  color: #c2410c;
}

[data-bucket="fitness"] .hc-ideal-icon {
  background: rgba(194,65,12,0.08);
  border-color: rgba(194,65,12,0.15);
  color: #c2410c;
}

[data-bucket="fitness"] .hc-output-card:hover {
  border-color: rgba(194,65,12,0.3);
  background: rgba(194,65,12,0.06);
}

[data-bucket="fitness"] .hc-output-icon {
  background: rgba(194,65,12,0.15);
  color: #c2410c;
}

[data-bucket="fitness"] .hc-story-badge {
  background: #c2410c;
}

[data-bucket="fitness"] .hc-story-arrow {
  color: #c2410c;
}

[data-bucket="fitness"] .hc-story-output-icon {
  color: #c2410c;
}

[data-bucket="fitness"] .hc-pi-highlight {
  background: linear-gradient(135deg, #fff7ed, #ffedd5);
  border-color: #fdba74;
}

[data-bucket="fitness"] .hc-pi-highlight-label,
[data-bucket="fitness"] .hc-pi-highlight-text {
  color: #9a3412;
}

[data-bucket="fitness"] .hc-scroll-hint:hover {
  color: #c2410c;
}

[data-bucket="fitness"] .skip-link {
  background: #c2410c;
}

[data-bucket="fitness"] :focus-visible {
  outline-color: #c2410c;
}

/* Easing tokens */
:root {
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
}

/* === SCROLL-TRIGGERED REVEALS === */
/* Content is visible by default — animation is progressive enhancement only.
   If JS fails, content is still fully readable. */
.hc-reveal {
  opacity: 1;
  transform: translateY(0);
}

/* JS adds .hc-reveal-ready to <body> after observer is set up.
   Only then do we hide elements for the reveal effect. */
.hc-reveal-ready .hc-reveal:not(.is-visible) {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 500ms var(--ease-out-expo), transform 500ms var(--ease-out-expo);
  will-change: opacity, transform;
}

.hc-reveal-ready .hc-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 500ms var(--ease-out-expo), transform 500ms var(--ease-out-expo);
}

/* Stagger children — halved delays for snappier feel */
.hc-reveal-stagger > .hc-reveal:nth-child(1) { transition-delay: 0ms; }
.hc-reveal-stagger > .hc-reveal:nth-child(2) { transition-delay: 40ms; }
.hc-reveal-stagger > .hc-reveal:nth-child(3) { transition-delay: 80ms; }
.hc-reveal-stagger > .hc-reveal:nth-child(4) { transition-delay: 120ms; }
.hc-reveal-stagger > .hc-reveal:nth-child(5) { transition-delay: 160ms; }
.hc-reveal-stagger > .hc-reveal:nth-child(6) { transition-delay: 200ms; }
.hc-reveal-stagger > .hc-reveal:nth-child(7) { transition-delay: 240ms; }
.hc-reveal-stagger > .hc-reveal:nth-child(8) { transition-delay: 280ms; }
.hc-reveal-stagger > .hc-reveal:nth-child(9) { transition-delay: 320ms; }

/* Hero content — no entrance animation, instant render */

/* === PROOF BAR COUNT-UP === */
.hc-proof-item strong {
  display: inline-block;
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 400ms var(--ease-out-quart), transform 400ms var(--ease-out-quart);
}

.hc-proof-bar.is-visible .hc-proof-item strong {
  opacity: 1;
  transform: scale(1);
}

.hc-proof-bar.is-visible .hc-proof-item:nth-child(1) strong { transition-delay: 0ms; }
.hc-proof-bar.is-visible .hc-proof-item:nth-child(2) strong { transition-delay: 100ms; }
.hc-proof-bar.is-visible .hc-proof-item:nth-child(3) strong { transition-delay: 200ms; }
.hc-proof-bar.is-visible .hc-proof-item:nth-child(4) strong { transition-delay: 300ms; }

/* === BUTTON PRESS FEEDBACK === */
.hc-btn-primary:active,
.hc-btn-secondary:active {
  transform: scale(0.97);
  transition-duration: 80ms;
}

/* === FAQ ACCORDION === */
.hc-faq-item[open] summary {
  color: var(--hc-green);
}

.hc-faq-item p {
  animation: hc-faq-open 300ms var(--ease-out-quart);
}

@keyframes hc-faq-open {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* === TRADE CARDS HOVER === */
.hc-trade-card {
  transition: transform 200ms var(--ease-out-quart), box-shadow 200ms var(--ease-out-quart), border-color 120ms;
}

.hc-trade-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

/* === OUTPUT CARDS HOVER === */
.hc-output-card {
  transition: transform 200ms var(--ease-out-quart), box-shadow 200ms var(--ease-out-quart), border-color 200ms var(--ease-out-quart), background 200ms var(--ease-out-quart);
}

.hc-output-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  border-color: rgba(45,134,89,0.3);
  background: rgba(45,134,89,0.06);
}

/* === PRICING CARD HOVER === */
.hc-price-card {
  transition: transform 250ms var(--ease-out-quart), box-shadow 250ms var(--ease-out-quart);
}

.hc-price-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

/* === IDEAL CLIENT CARDS === */
.hc-ideal-card {
  transition: transform 200ms var(--ease-out-quart);
}

.hc-ideal-card:hover {
  transform: translateY(-2px);
}

/* === REDUCED MOTION === */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .hc-reveal {
    opacity: 1 !important;
    transform: none !important;
  }

  .hc-hero-content {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }

  .hc-proof-item strong {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ===== STICKY MOBILE CTA ===== */

.hc-sticky-cta {
  display: none;
}

@media (max-width: 600px) {
  .hc-sticky-cta {
    display: none; /* shown via JS */
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 12px 16px;
    padding-bottom: max(12px, env(safe-area-inset-bottom));
    background: rgba(255,255,255,0.97);
    border-top: 1px solid var(--hc-border-light);
    z-index: 50;
    box-shadow: 0 -4px 16px rgba(0,0,0,0.06);
    transform: translateY(100%);
    transition: transform 300ms var(--ease-out-expo);
  }

  .hc-sticky-cta.is-visible {
    display: block;
    transform: translateY(0);
  }

  .hc-sticky-cta .hc-btn-primary {
    width: 100%;
    padding: 16px;
    font-size: 1rem;
  }
}

/* ===== MULTI-OUTPUT STORY SHOWCASE ===== */
.hc-story-intro {
  max-width: 640px;
  margin: 0 auto 48px;
  text-align: center;
  color: var(--hc-gray);
  font-size: 1.1rem;
  line-height: 1.6;
}

.hc-story-block {
  background: #fff;
  border: 1px solid var(--hc-border-light);
  border-radius: var(--hc-radius-lg);
  padding: 40px;
  margin-bottom: 40px;
}

.hc-story-header {
  margin-bottom: 28px;
}

.hc-story-badge {
  display: inline-block;
  background: var(--hc-green);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 4px 12px;
  border-radius: 4px;
  margin-bottom: 8px;
}

.hc-story-header h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.hc-story-header p {
  color: var(--hc-gray);
  font-size: 0.95rem;
  line-height: 1.5;
}

.hc-story-before-after {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
  justify-content: center;
}

.hc-story-photo {
  position: relative;
  flex: 1;
  max-width: 340px;
  border-radius: var(--hc-radius);
  overflow: hidden;
}

.hc-story-photo img {
  width: 100%;
  height: auto;
  display: block;
}

.hc-story-label {
  position: absolute;
  bottom: 8px;
  left: 8px;
  background: rgba(0,0,0,0.65);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 3px 10px;
  border-radius: 3px;
}

.hc-story-arrow {
  flex-shrink: 0;
  color: var(--hc-green);
}

.hc-story-outputs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

.hc-story-output {
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: var(--hc-gray-bg);
  border-radius: var(--hc-radius);
  padding: 12px;
  border: 1px solid var(--hc-border);
}

.hc-story-output img {
  width: 100%;
  height: auto;
  border-radius: 4px;
}

.hc-story-output strong {
  font-size: 0.8rem;
  font-weight: 700;
}

.hc-story-output span {
  font-size: 0.72rem;
  color: var(--hc-gray);
  line-height: 1.4;
}

.hc-story-output-text {
  padding: 16px 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  justify-content: flex-start;
}

.hc-story-output-icon {
  color: var(--hc-green);
  margin-bottom: 2px;
}

.hc-story-cta {
  text-align: center;
  padding-top: 8px;
}

@media (max-width: 768px) {
  .hc-story-block {
    padding: 24px 16px;
  }

  .hc-story-before-after {
    gap: 10px;
  }

  .hc-story-photo {
    max-width: 42%;
  }

  .hc-story-outputs {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .hc-story-outputs .hc-story-output:last-child {
    grid-column: 1 / -1;
  }

  .hc-story-header h3 {
    font-size: 1.15rem;
  }
}
