/* =========================================================
   Hostly Sales Site — Warm Editorial
   =========================================================
   Design direction: cream background, deep charcoal text,
   honey-yellow brand accent, Fraunces serif display + Manrope sans body.
   Premium small-business magazine vibe.
   ========================================================= */

:root {
  /* Palette */
  --cream:           #FAF7F2;
  --cream-warm:      #F4EFE6;
  --paper:           #FFFFFF;
  --charcoal:        #1A1410;
  --charcoal-soft:   #2A2218;
  --ink:             #3A2F22;
  --muted:           #756B5D;
  --honey:           #FCB900;
  --honey-deep:      #B87800;
  --honey-light:     #FFE8A6;
  --rose:            #FF8A8A;
  --line:            rgba(26, 20, 16, 0.12);
  --line-soft:       rgba(26, 20, 16, 0.06);

  /* Typography */
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body:    "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Layout */
  --container:    1200px;
  --container-narrow: 720px;
  --radius:       12px;
  --radius-lg:    20px;

  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(26, 20, 16, 0.06);
  --shadow-md: 0 8px 24px rgba(26, 20, 16, 0.08);
  --shadow-lg: 0 20px 60px rgba(26, 20, 16, 0.12);
  --shadow-honey: 0 12px 32px rgba(252, 185, 0, 0.25);
}

/* =========================================================
   Reset / base
   ========================================================= */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body.hostly-sales {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--charcoal);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body.hostly-sales a { color: inherit; text-decoration: none; }
body.hostly-sales img, body.hostly-sales svg { max-width: 100%; display: block; }

.hostly-sales h1, .hostly-sales h2, .hostly-sales h3, .hostly-sales h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.1;
  margin: 0;
  letter-spacing: -0.02em;
}
.hostly-sales p { margin: 0; }
.hostly-sales ul { padding: 0; list-style: none; margin: 0; }
.hostly-sales em {
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  color: var(--honey-deep);
}

/* =========================================================
   Container
   ========================================================= */
.hs-container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.hs-narrow {
  max-width: var(--container-narrow);
}

/* =========================================================
   Nav
   ========================================================= */
.hs-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 247, 242, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line-soft);
}
.hs-nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  padding-bottom: 18px;
  gap: 24px;
}
.hs-logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.02em;
}
.hs-logo-dot {
  width: 10px;
  height: 10px;
  background: var(--honey);
  border-radius: 50%;
  border: 1.5px solid var(--charcoal);
}
.hs-logo-text { color: var(--charcoal); }

.hs-nav-links {
  display: flex;
  gap: 32px;
  font-size: 15px;
  font-weight: 500;
}
.hs-nav-links a { color: var(--ink); transition: color 0.15s; }
.hs-nav-links a:hover { color: var(--honey-deep); }

.hs-nav-cta {
  background: var(--charcoal);
  color: var(--cream) !important;
  padding: 9px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: transform 0.15s, background 0.15s;
}
.hs-nav-cta:hover { background: var(--honey-deep); transform: translateY(-1px); }

@media (max-width: 768px) {
  .hs-nav-links { display: none; }
}

/* =========================================================
   Eyebrow / labels
   ========================================================= */
.hs-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--honey-deep);
  margin-bottom: 18px;
}

/* =========================================================
   Buttons
   ========================================================= */
.hs-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.005em;
  border: none;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  white-space: nowrap;
}
.hs-btn-primary {
  background: var(--charcoal);
  color: var(--cream);
  box-shadow: var(--shadow-md);
}
.hs-btn-primary:hover {
  background: var(--honey-deep);
  transform: translateY(-2px);
  box-shadow: var(--shadow-honey);
}
.hs-btn-ghost {
  background: transparent;
  color: var(--charcoal);
  border: 1.5px solid var(--charcoal);
}
.hs-btn-ghost:hover { background: var(--charcoal); color: var(--cream); }
.hs-btn-block { width: 100%; justify-content: center; }
.hs-btn-large { padding: 18px 32px; font-size: 18px; }
.hs-btn-arrow {
  font-size: 18px;
  transition: transform 0.18s ease;
}
.hs-btn:hover .hs-btn-arrow { transform: translateX(3px); }

/* =========================================================
   HERO
   ========================================================= */
.hs-hero {
  position: relative;
  padding: 80px 0 100px;
  overflow: hidden;
}
.hs-grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.4;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(252, 185, 0, 0.08), transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(184, 120, 0, 0.06), transparent 40%);
}
.hs-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}
@media (max-width: 968px) {
  .hs-hero-grid { grid-template-columns: 1fr; gap: 48px; }
}

.hs-display {
  font-size: clamp(40px, 6vw, 76px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  font-weight: 600;
  font-variation-settings: "opsz" 144;
  color: var(--charcoal);
  margin-bottom: 24px;
}
.hs-display em {
  display: block;
  font-weight: 500;
  font-style: italic;
  color: var(--honey-deep);
  font-variation-settings: "opsz" 144, "SOFT" 100;
}
.hs-lede {
  font-size: 19px;
  line-height: 1.55;
  color: var(--ink);
  max-width: 560px;
  margin-bottom: 32px;
}
.hs-hero-cta {
  display: flex;
  gap: 14px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.hs-hero-marks {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  font-size: 14px;
  color: var(--muted);
  font-weight: 500;
}

/* Hero animated stage (the fake browser with the bee inside) */
.hs-hero-stage { position: relative; }
.hs-stage-card {
  background: var(--paper);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  position: relative;
  border: 1px solid var(--line);
  transform: rotate(-1deg);
  animation: hs-stage-in 0.8s 0.2s both ease-out;
}
@keyframes hs-stage-in {
  from { opacity: 0; transform: rotate(-3deg) translateY(20px); }
  to   { opacity: 1; transform: rotate(-1deg) translateY(0); }
}
.hs-stage-browser {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 16px;
  background: var(--cream-warm);
  border-bottom: 1px solid var(--line);
}
.hs-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  display: inline-block;
}
.hs-dot-r { background: #ff5f56; }
.hs-dot-y { background: #ffbd2e; }
.hs-dot-g { background: #27c93f; }
.hs-stage-url, .hs-demo-url {
  margin-left: 14px;
  font-family: ui-monospace, "SF Mono", "Cascadia Code", Menlo, monospace;
  font-size: 12px;
  color: var(--muted);
  background: var(--paper);
  padding: 4px 12px;
  border-radius: 999px;
  flex: 1;
  text-align: left;
}
.hs-stage-page {
  position: relative;
  padding: 28px 28px 80px;
  min-height: 280px;
}
.hs-stage-line {
  height: 10px;
  background: var(--cream-warm);
  border-radius: 4px;
  margin-bottom: 10px;
}
.hs-stage-line.w-50 { width: 50%; }
.hs-stage-line.w-60 { width: 60%; }
.hs-stage-line.w-70 { width: 70%; }
.hs-stage-line.w-75 { width: 75%; }
.hs-stage-line.w-80 { width: 80%; }
.hs-stage-line.w-90 { width: 90%; }
.hs-stage-block {
  height: 60px;
  background: var(--cream-warm);
  border-radius: 8px;
  margin: 16px 0;
}

/* Bee in the hero stage */
.hs-stage-bee {
  position: absolute;
  right: -10px;
  bottom: 0;
  width: 90px;
  height: 90px;
  transform: translateX(0) translateY(8px);
  animation: hs-bee-peek 6s ease-in-out infinite;
  z-index: 2;
}
.hs-stage-bee .hs-bee-svg { width: 100%; height: 100%; }
@keyframes hs-bee-peek {
  0%, 100% { transform: translateX(60px) translateY(20px); }
  20%, 70% { transform: translateX(0) translateY(8px); }
  35%, 50% { transform: translateX(0) translateY(0) rotate(-4deg); }
}
.hs-stage-bubble {
  position: absolute;
  right: 100px;
  bottom: 30px;
  background: var(--charcoal);
  color: var(--cream);
  padding: 12px 18px;
  border-radius: 16px;
  font-size: 14px;
  font-weight: 500;
  max-width: 200px;
  box-shadow: var(--shadow-md);
  opacity: 0;
  animation: hs-bubble-in 6s ease-in-out infinite;
  z-index: 3;
}
.hs-stage-bubble::after {
  content: '';
  position: absolute;
  bottom: 14px;
  right: -8px;
  width: 0;
  height: 0;
  border-left: 8px solid var(--charcoal);
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
}
@keyframes hs-bubble-in {
  0%, 25% { opacity: 0; transform: translateY(10px); }
  35%, 65% { opacity: 1; transform: translateY(0); }
  75%, 100% { opacity: 0; transform: translateY(-6px); }
}

.hs-stage-caption {
  text-align: center;
  margin-top: 16px;
  font-size: 13px;
  color: var(--muted);
  font-style: italic;
}

/* Wing flap animation */
.hs-bee-wing-l, .hs-bee-wing-r {
  transform-origin: 60px 60px;
  animation: hs-wing-flap 0.2s ease-in-out infinite alternate;
}
.hs-bee-wing-r { animation-delay: 0.1s; }
@keyframes hs-wing-flap {
  from { transform: scaleY(1) rotate(0deg); }
  to   { transform: scaleY(0.7) rotate(2deg); }
}

/* =========================================================
   Trust bar
   ========================================================= */
.hs-trust {
  padding: 36px 0;
  background: var(--cream-warm);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.hs-trust-label {
  text-align: center;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 16px;
  font-weight: 500;
  letter-spacing: 0.04em;
}
.hs-trust-row {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--charcoal);
  font-weight: 500;
}
.hs-trust-row span { white-space: nowrap; }

/* =========================================================
   Generic section
   ========================================================= */
.hs-section {
  padding: 100px 0;
  position: relative;
}
.hs-section-dark {
  background: var(--charcoal);
  color: var(--cream);
}
.hs-section-dark .hs-section-title { color: var(--cream); }
.hs-section-dark .hs-section-lede { color: rgba(250, 247, 242, 0.78); }
.hs-section-dark em { color: var(--honey); }
.hs-section-dark .hs-eyebrow { color: var(--honey); }

.hs-section-soft { background: var(--cream-warm); }

.hs-section-head { margin-bottom: 64px; max-width: 720px; }
.hs-section-head-center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.hs-section-title {
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  color: var(--charcoal);
}
.hs-section-title em {
  font-weight: 500;
  font-style: italic;
  color: var(--honey-deep);
}
.hs-section-lede {
  font-size: 20px;
  line-height: 1.5;
  color: var(--ink);
  max-width: 620px;
}
.hs-section-head-center .hs-section-lede { margin-left: auto; margin-right: auto; }

/* =========================================================
   Features grid
   ========================================================= */
.hs-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 968px) { .hs-feature-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .hs-feature-grid { grid-template-columns: 1fr; } }

.hs-feature {
  padding: 32px 28px;
  background: var(--paper);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.hs-feature:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--honey);
}
.hs-feature-icon {
  font-size: 32px;
  margin-bottom: 16px;
  filter: grayscale(0.1);
}
.hs-feature h3 {
  font-family: var(--font-display);
  font-size: 22px;
  margin-bottom: 12px;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.hs-feature p {
  font-size: 15.5px;
  line-height: 1.55;
  color: var(--ink);
}

/* =========================================================
   How it works (steps)
   ========================================================= */
.hs-steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 24px;
  align-items: stretch;
}
@media (max-width: 768px) {
  .hs-steps {
    grid-template-columns: 1fr;
  }
  .hs-step-line { display: none; }
}
.hs-step {
  background: var(--paper);
  border-radius: var(--radius);
  padding: 36px 28px;
  border: 1px solid var(--line);
  position: relative;
}
.hs-step-num {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 600;
  line-height: 1;
  color: var(--honey);
  letter-spacing: -0.04em;
  margin-bottom: 16px;
  font-variation-settings: "opsz" 144;
}
.hs-step h3 {
  font-family: var(--font-display);
  font-size: 24px;
  margin-bottom: 10px;
  font-weight: 600;
}
.hs-step p {
  font-size: 15.5px;
  line-height: 1.5;
  color: var(--ink);
}
.hs-step-line {
  align-self: center;
  width: 80px;
  border-top: 2px dashed var(--line);
}

/* =========================================================
   Demo section
   ========================================================= */
.hs-demo-wrap { max-width: 880px; margin: 0 auto; }
.hs-demo-frame {
  background: var(--paper);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  position: relative;
}
.hs-demo-browser {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 16px;
  background: var(--cream-warm);
  border-bottom: 1px solid var(--line);
}
.hs-demo-content {
  padding: 32px 32px 60px;
  min-height: 420px;
  position: relative;
}
.hs-fake-h {
  font-family: var(--font-display);
  font-size: 24px;
  margin-bottom: 14px;
  color: var(--charcoal);
}
.hs-fake-p {
  font-size: 15px;
  color: var(--ink);
  line-height: 1.6;
  margin-bottom: 20px;
}
.hs-fake-card {
  background: var(--cream-warm);
  border-radius: 8px;
  padding: 20px 24px;
}
.hs-fake-card h4 {
  font-family: var(--font-display);
  font-size: 16px;
  margin-bottom: 10px;
  font-weight: 600;
}
.hs-fake-card ul { padding-left: 0; }
.hs-fake-card li {
  font-size: 14px;
  color: var(--ink);
  padding: 4px 0 4px 18px;
  position: relative;
}
.hs-fake-card li::before {
  content: '·';
  position: absolute;
  left: 6px;
  color: var(--honey-deep);
  font-weight: bold;
}

/* Demo bee mascot (clickable) */
.hs-demo-mascot {
  position: absolute;
  right: 12px;
  bottom: 12px;
  width: 80px;
  height: 80px;
  cursor: pointer;
  z-index: 5;
  transition: transform 0.2s;
}
.hs-demo-mascot:hover { transform: scale(1.05); }
.hs-demo-mascot:focus { outline: 3px solid var(--honey); outline-offset: 4px; border-radius: 50%; }
.hs-demo-mascot .hs-bee-svg {
  width: 100%; height: 100%;
  animation: hs-bee-idle 4s ease-in-out infinite;
}
@keyframes hs-bee-idle {
  0%, 100% { transform: translateY(0) rotate(0); }
  50% { transform: translateY(-3px) rotate(-2deg); }
}

/* Speech bubble teaser */
.hs-demo-teaser {
  position: absolute;
  right: 100px;
  bottom: 60px;
  background: var(--charcoal);
  color: var(--cream);
  padding: 12px 16px 12px 18px;
  border-radius: 16px;
  font-size: 14px;
  font-weight: 500;
  max-width: 240px;
  box-shadow: var(--shadow-md);
  z-index: 4;
  animation: hs-teaser-in 0.35s ease-out;
}
.hs-demo-teaser::after {
  content: '';
  position: absolute;
  bottom: 18px;
  right: -8px;
  width: 0;
  height: 0;
  border-left: 8px solid var(--charcoal);
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
}
@keyframes hs-teaser-in {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hs-demo-teaser-close {
  background: transparent;
  border: none;
  color: var(--cream);
  font-size: 18px;
  margin-left: 8px;
  cursor: pointer;
  opacity: 0.7;
  padding: 0 2px;
}
.hs-demo-teaser-close:hover { opacity: 1; }

/* Chat panel */
.hs-demo-panel {
  position: absolute;
  right: 12px;
  bottom: 12px;
  width: 360px;
  max-height: 480px;
  background: var(--paper);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  z-index: 10;
  animation: hs-panel-in 0.3s ease-out;
}
.hs-demo-panel[hidden] { display: none !important; }
.hs-demo-teaser[hidden] { display: none !important; }
@keyframes hs-panel-in {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hs-demo-panel-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: linear-gradient(135deg, var(--honey), var(--honey-deep));
  color: var(--charcoal);
  border-bottom: 1px solid var(--line);
}
.hs-demo-avatar {
  width: 36px;
  height: 36px;
  background: var(--paper);
  border-radius: 50%;
  padding: 2px;
  flex-shrink: 0;
}
.hs-demo-panel-title { flex: 1; }
.hs-demo-panel-title strong {
  display: block;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
}
.hs-demo-online {
  font-size: 11px;
  opacity: 0.85;
}
.hs-demo-close {
  background: transparent;
  border: none;
  color: var(--charcoal);
  font-size: 22px;
  cursor: pointer;
  opacity: 0.7;
  padding: 0 6px;
}
.hs-demo-close:hover { opacity: 1; }

.hs-demo-messages {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: var(--cream);
  min-height: 160px;
  max-height: 280px;
}
.hs-demo-msg {
  max-width: 85%;
  padding: 10px 14px;
  border-radius: 14px;
  font-size: 14px;
  line-height: 1.45;
  animation: hs-msg-in 0.25s ease-out;
}
@keyframes hs-msg-in {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hs-demo-msg-assistant {
  align-self: flex-start;
  background: var(--paper);
  color: var(--charcoal);
  border-bottom-left-radius: 4px;
  box-shadow: var(--shadow-sm);
}
.hs-demo-msg-user {
  align-self: flex-end;
  background: var(--charcoal);
  color: var(--cream);
  border-bottom-right-radius: 4px;
}

.hs-demo-typing {
  padding: 4px 16px 8px;
  display: flex;
  gap: 4px;
}
.hs-demo-typing[hidden] { display: none !important; }
.hs-demo-typing span {
  width: 6px;
  height: 6px;
  background: var(--muted);
  border-radius: 50%;
  opacity: 0.3;
  animation: hs-typing 1.2s infinite;
}
.hs-demo-typing span:nth-child(2) { animation-delay: 0.15s; }
.hs-demo-typing span:nth-child(3) { animation-delay: 0.3s; }
@keyframes hs-typing {
  0%, 60%, 100% { opacity: 0.3; transform: translateY(0); }
  30% { opacity: 1; transform: translateY(-3px); }
}

.hs-demo-quick {
  display: flex;
  gap: 6px;
  padding: 6px 12px;
  flex-wrap: wrap;
}
.hs-demo-quick button {
  background: var(--paper);
  border: 1px solid var(--line);
  color: var(--charcoal);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-family: var(--font-body);
  cursor: pointer;
  transition: all 0.15s;
}
.hs-demo-quick button:hover {
  background: var(--honey);
  border-color: var(--honey-deep);
}

.hs-demo-input-row {
  display: flex;
  gap: 8px;
  padding: 12px 16px 16px;
  border-top: 1px solid var(--line);
  background: var(--paper);
}
.hs-demo-input-row input {
  flex: 1;
  border: 1px solid var(--line);
  background: var(--cream);
  border-radius: 999px;
  padding: 9px 16px;
  font-family: var(--font-body);
  font-size: 14px;
  outline: none;
  transition: border-color 0.15s;
}
.hs-demo-input-row input:focus { border-color: var(--honey); background: var(--paper); }
.hs-demo-input-row button {
  background: var(--honey);
  border: none;
  color: var(--charcoal);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
}
.hs-demo-input-row button:hover { background: var(--honey-deep); color: var(--cream); }

.hs-demo-note {
  text-align: center;
  margin-top: 24px;
  font-size: 13px;
  color: var(--muted);
  font-style: italic;
}

/* =========================================================
   Pricing
   ========================================================= */
.hs-pricing-grid {
  display: flex;
  justify-content: center;
}
.hs-price-card {
  background: var(--paper);
  color: var(--charcoal);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  width: 100%;
  max-width: 440px;
  border: 2px solid var(--honey);
  position: relative;
  box-shadow: var(--shadow-honey);
}
.hs-price-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--honey);
  color: var(--charcoal);
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 1.5px solid var(--charcoal);
}
.hs-price-name {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}
.hs-price-amount {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  margin-bottom: 8px;
}
.hs-price-dollar {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 500;
  color: var(--muted);
  margin-top: 12px;
}
.hs-price-big {
  font-family: var(--font-display);
  font-size: 96px;
  font-weight: 600;
  line-height: 1;
  color: var(--charcoal);
  letter-spacing: -0.04em;
  font-variation-settings: "opsz" 144;
}
.hs-price-period {
  font-size: 16px;
  color: var(--muted);
  font-style: italic;
  font-family: var(--font-display);
}
.hs-price-vs {
  text-align: center;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 28px;
}
.hs-price-list {
  margin-bottom: 32px;
}
.hs-price-list li {
  padding: 8px 0;
  font-size: 15px;
  color: var(--ink);
  border-bottom: 1px solid var(--line-soft);
}
.hs-price-list li:last-child { border-bottom: none; }
.hs-price-fine {
  text-align: center;
  margin-top: 16px;
  font-size: 13px;
  color: var(--muted);
}
.hs-pricing-fine {
  margin-top: 32px;
  text-align: center;
  font-size: 14px;
  color: rgba(250, 247, 242, 0.6);
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* =========================================================
   FAQ
   ========================================================= */
.hs-faq {
  border-top: 1px solid var(--line);
}
.hs-faq-item {
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
  cursor: pointer;
}
.hs-faq-item summary {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--charcoal);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  letter-spacing: -0.01em;
}
.hs-faq-item summary::-webkit-details-marker { display: none; }
.hs-faq-item summary::after {
  content: '+';
  font-size: 28px;
  color: var(--honey-deep);
  font-weight: 400;
  font-family: var(--font-body);
  transition: transform 0.25s ease;
  flex-shrink: 0;
}
.hs-faq-item[open] summary::after { transform: rotate(45deg); }
.hs-faq-body {
  padding-top: 14px;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  max-width: 640px;
}

/* =========================================================
   Final CTA
   ========================================================= */
.hs-final-cta {
  text-align: center;
  background: var(--cream-warm);
  padding: 120px 0;
}
.hs-final-h {
  font-size: clamp(40px, 6vw, 80px);
  margin-bottom: 24px;
  text-align: center;
}
.hs-final-cta-row {
  display: flex;
  justify-content: center;
  margin-top: 36px;
  margin-bottom: 16px;
}
.hs-final-fine {
  font-size: 14px;
  color: var(--muted);
}

/* =========================================================
   Footer
   ========================================================= */
.hs-footer {
  background: var(--charcoal);
  color: rgba(250, 247, 242, 0.7);
  padding: 64px 0 32px;
  font-size: 14px;
}
.hs-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
@media (max-width: 720px) {
  .hs-footer-grid { grid-template-columns: 1fr; }
}
.hs-footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 24px;
  color: var(--cream);
  margin-bottom: 14px;
}
.hs-footer-tag {
  max-width: 320px;
  line-height: 1.6;
  color: rgba(250, 247, 242, 0.6);
}
.hs-footer-heading {
  font-family: var(--font-display);
  color: var(--cream);
  margin-bottom: 16px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.hs-footer-list li { margin-bottom: 10px; }
.hs-footer-list a {
  color: rgba(250, 247, 242, 0.7);
  transition: color 0.15s;
}
.hs-footer-list a:hover { color: var(--honey); }
.hs-footer-bar {
  padding-top: 32px;
  border-top: 1px solid rgba(250, 247, 242, 0.1);
  text-align: center;
  font-size: 13px;
  color: rgba(250, 247, 242, 0.4);
}

/* =========================================================
   Mobile tweaks
   ========================================================= */
@media (max-width: 600px) {
  .hs-section { padding: 64px 0; }
  .hs-hero { padding: 48px 0 64px; }
  .hs-section-head { margin-bottom: 40px; }
  .hs-feature { padding: 24px 20px; }
  .hs-price-card { padding: 36px 24px; }
  .hs-price-big { font-size: 72px; }
  .hs-demo-panel {
    width: calc(100% - 24px);
    right: 12px;
    left: 12px;
  }
  .hs-stage-bubble {
    right: 80px;
    bottom: 24px;
    max-width: 160px;
    font-size: 13px;
  }
}

/* =========================================================
   v1.1.0 additions — testimonials, founder note, grain texture
   ========================================================= */

/* Subtle paper-grain overlay — applied via pseudo-element on body */
body.hostly-sales::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.5 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  mix-blend-mode: multiply;
}

/* Make sure interactive things sit above the grain */
.hs-nav, .hs-hero, .hs-section, .hs-footer { position: relative; z-index: 2; }

/* -------- Refined typography rhythm -------- */
.hs-display { line-height: 0.98; }
.hs-section-title { line-height: 1.02; }
.hs-lede, .hs-section-lede { line-height: 1.55; }
.hs-feature p, .hs-faq-body { line-height: 1.65; }

/* -------- Testimonials -------- */
.hs-testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}
@media (max-width: 968px) { .hs-testimonial-grid { grid-template-columns: 1fr; gap: 16px; } }

.hs-testimonial {
  background: var(--paper);
  border-radius: var(--radius);
  padding: 32px 28px;
  margin: 0;
  border: 1px solid var(--line);
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.hs-testimonial:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.hs-testimonial::before {
  content: '"';
  position: absolute;
  top: 8px;
  left: 20px;
  font-family: var(--font-display);
  font-size: 80px;
  line-height: 1;
  color: var(--honey);
  opacity: 0.25;
  font-weight: 700;
}
.hs-testimonial blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 17px;
  line-height: 1.55;
  color: var(--charcoal);
  margin: 0 0 20px;
  position: relative;
  z-index: 1;
}
.hs-testimonial figcaption {
  font-size: 14px;
  line-height: 1.4;
}
.hs-testimonial figcaption strong {
  display: block;
  color: var(--charcoal);
  font-weight: 600;
  margin-bottom: 2px;
}
.hs-testimonial figcaption span {
  color: var(--muted);
  font-size: 13px;
}
.hs-testimonial-note {
  text-align: center;
  color: var(--muted);
  font-size: 14px;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.6;
}
.hs-testimonial-note em {
  color: var(--honey-deep);
  font-style: italic;
}

/* -------- Founder's note -------- */
.hs-founder { padding: 80px 0; }

.hs-founder-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 40px;
  align-items: start;
  background: var(--paper);
  border-radius: var(--radius-lg);
  padding: 48px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}
@media (max-width: 720px) {
  .hs-founder-card {
    grid-template-columns: 1fr;
    padding: 32px 24px;
    gap: 20px;
  }
}

.hs-founder-portrait {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--honey);
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}
.hs-founder-portrait svg { width: 100%; height: 100%; }

.hs-founder-h {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 500;
  font-style: italic;
  line-height: 1.25;
  margin: 12px 0 20px;
  color: var(--charcoal);
  letter-spacing: -0.01em;
}
.hs-founder-h em {
  font-style: italic;
  color: var(--honey-deep);
}
.hs-founder-p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  margin-bottom: 14px;
}
.hs-founder-sig {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--charcoal);
  margin-top: 24px;
  line-height: 1.4;
}
.hs-founder-sig span {
  display: block;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  color: var(--muted);
  font-style: italic;
  margin-top: 4px;
}

/* -------- Refined hero bee animation (more natural movement) -------- */
@keyframes hs-bee-peek {
  0%    { transform: translateX(80px) translateY(20px) rotate(0); }
  12%   { transform: translateX(40px) translateY(14px) rotate(-2deg); }
  20%   { transform: translateX(8px)  translateY(6px)  rotate(-3deg); }
  35%   { transform: translateX(0)    translateY(0)    rotate(-4deg); }
  50%   { transform: translateX(0)    translateY(-2px) rotate(-3deg); }
  65%   { transform: translateX(4px)  translateY(2px)  rotate(-2deg); }
  78%   { transform: translateX(20px) translateY(8px)  rotate(0); }
  92%   { transform: translateX(60px) translateY(18px) rotate(2deg); }
  100%  { transform: translateX(80px) translateY(20px) rotate(0); }
}

/* Wing flap — more lifelike, varied speed */
@keyframes hs-wing-flap {
  0%, 100% { transform: scaleY(1) rotate(0); }
  25%      { transform: scaleY(0.65) rotate(3deg); }
  50%      { transform: scaleY(1) rotate(0); }
  75%      { transform: scaleY(0.65) rotate(3deg); }
}
.hs-bee-wing-l, .hs-bee-wing-r {
  transform-origin: 60px 60px;
  animation: hs-wing-flap 0.18s ease-in-out infinite;
}
.hs-bee-wing-r { animation-delay: 0.09s; }

/* =========================================================
   v1.1.1 additions — standalone page template
   (used for Privacy, Terms, Refund, 404)
   ========================================================= */
.hs-page {
  padding: 60px 0 100px;
  position: relative;
  z-index: 2;
}
.hs-page-back {
  display: inline-block;
  font-size: 14px;
  color: var(--honey-deep);
  font-weight: 500;
  margin-bottom: 24px;
  transition: opacity 0.15s;
}
.hs-page-back:hover { opacity: 0.7; }
.hs-page-header { margin-bottom: 48px; }
.hs-page-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--charcoal);
  margin-bottom: 8px;
}
.hs-page-content {
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink);
}
.hs-page-content h2 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--charcoal);
  margin: 48px 0 16px;
  padding-top: 16px;
  border-top: 1px solid var(--line-soft);
}
.hs-page-content h2:first-child { margin-top: 0; padding-top: 0; border-top: none; }
.hs-page-content h3 {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 600;
  color: var(--charcoal);
  margin: 32px 0 12px;
}
.hs-page-content p { margin: 0 0 16px; }
.hs-page-content ul, .hs-page-content ol { margin: 0 0 16px 24px; padding: 0; }
.hs-page-content li { padding: 4px 0; }
.hs-page-content a {
  color: var(--honey-deep);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.hs-page-content a:hover { opacity: 0.7; }
.hs-page-content code {
  background: var(--cream-warm);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 14px;
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
}
.hs-page-content blockquote {
  border-left: 4px solid var(--honey);
  background: var(--cream-warm);
  margin: 24px 0;
  padding: 16px 20px;
  border-radius: 0 8px 8px 0;
  font-style: italic;
  color: var(--charcoal);
}
.hs-page-content hr {
  border: none;
  border-top: 1px solid var(--line);
  margin: 40px 0;
}
.hs-page-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-size: 15px;
}
.hs-page-content th, .hs-page-content td {
  padding: 12px;
  text-align: left;
  border-bottom: 1px solid var(--line);
}
.hs-page-content th {
  font-weight: 600;
  background: var(--cream-warm);
  color: var(--charcoal);
}
.hs-page-content strong { font-weight: 600; color: var(--charcoal); }
.hs-page-content em { font-style: italic; }

/* 404 page tweaks */
.hs-404 .hs-page-header { text-align: center; padding-top: 60px; }
