/**
 * Hire Top Talent (HIRA) page — Elegant Light v2.1
 * All selectors prefixed with `.htt-` / `body.htt-active` for specificity
 * against globally-enqueued plugin / theme CSS.
 */

/* ============ TOKENS ============ */
body.htt-active,
.htt-page {
  --htt-bg: #f8fafc;
  --htt-bg2: #f1f5f9;
  --htt-surface: #ffffff;
  --htt-border: rgba(15, 23, 42, 0.08);
  --htt-border-soft: rgba(15, 23, 42, 0.05);

  --htt-cyan: #0070f3;
  --htt-cyan-deep: #005bb5;
  --htt-cyan-dim: rgba(0, 112, 243, 0.08);
  --htt-cyan-mid: rgba(0, 112, 243, 0.18);

  --htt-green: #10b981;
  --htt-amber: #b48600;

  --htt-text: #0f172a;
  --htt-muted: #64748b;
  --htt-muted2: #475569;

  --htt-font-display: 'Poppins', 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --htt-font-body: 'Poppins', 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --htt-font-mono: 'Inter', 'Poppins', system-ui, -apple-system, 'Segoe UI', sans-serif;

  --htt-shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.04);
  --htt-shadow-md: 0 8px 30px rgba(15, 23, 42, 0.06);
  --htt-shadow-lg: 0 20px 50px rgba(15, 23, 42, 0.08);
}

body.htt-active {
  background: var(--htt-bg);
  color: var(--htt-text);
  font-family: var(--htt-font-body);
  overflow-x: hidden;
  min-height: 100vh;
}
body.htt-active .gcc-header,
body.htt-active .gcc-footer,
body.htt-active .gcc-scroll-progress { display: none !important; }

.htt-page,
.htt-page *,
.htt-page *::before,
.htt-page *::after { box-sizing: border-box; }
.htt-page { color: var(--htt-text); }
.htt-page img { max-width: 100%; display: block; }
.htt-page .htt-accent { color: var(--htt-cyan); }
.htt-page a { color: inherit; }

/* ============ NAV ============ */
.htt-page .htt-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 16px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(248, 250, 252, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--htt-border);
}
body.has-offer-ribbon .htt-page .htt-nav { top: 44px; }
@media (max-width: 782px) {
  body.has-offer-ribbon .htt-page .htt-nav { top: 40px; }
}
body.htt-active.admin-bar .htt-page .htt-nav { top: 32px; }
body.htt-active.admin-bar.has-offer-ribbon .htt-page .htt-nav { top: 76px; }

.htt-page .htt-logo {
  display: inline-flex; align-items: center; gap: 12px;
  text-decoration: none; color: var(--htt-text);
}
.htt-page .htt-logo-mark {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--htt-cyan), var(--htt-cyan-deep));
  border-radius: 8px;
  display: grid; place-items: center;
  font-family: var(--htt-font-mono);
  font-size: 11px; font-weight: 600; color: #fff;
  box-shadow: var(--htt-shadow-sm);
}
.htt-page .htt-logo-text {
  font-family: var(--htt-font-display);
  font-size: 15px; font-weight: 700;
  letter-spacing: 0.02em;
}
.htt-page .htt-logo-text span { color: var(--htt-cyan); }

.htt-page .htt-nav-links {
  display: flex; align-items: center; gap: 32px;
  list-style: none; margin: 0; padding: 0;
}
.htt-page .htt-nav-links li { margin: 0; }
.htt-page .htt-nav-links a {
  font-family: var(--htt-font-mono);
  font-size: 12px; font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--htt-muted2);
  text-decoration: none;
  padding: 6px 0;
  border-bottom: 1.5px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.htt-page .htt-nav-links a:hover { color: var(--htt-cyan); }
.htt-page .htt-nav-links a.active,
.htt-page .htt-nav-links .current-menu-item > a {
  color: var(--htt-cyan);
  border-bottom-color: var(--htt-cyan);
}
.htt-page .htt-nav-actions { display: flex; align-items: center; gap: 12px; }

/* ============ BUTTONS ============ */
.htt-page .htt-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: 8px;
  font-family: var(--htt-font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  border: 1px solid transparent;
  line-height: 1;
  white-space: nowrap;
  transition: all 0.2s ease;
}
.htt-page .htt-btn-primary {
  background: linear-gradient(135deg, var(--htt-cyan), var(--htt-cyan-deep));
  border-color: rgba(0, 112, 243, 0.3);
  color: #fff;
  box-shadow: 0 4px 14px rgba(0, 112, 243, 0.18);
}
.htt-page .htt-btn-primary:hover {
  box-shadow: 0 8px 24px rgba(0, 112, 243, 0.28);
  transform: translateY(-1px);
}
.htt-page .htt-btn-ghost {
  background: transparent;
  color: var(--htt-muted2);
  border-color: var(--htt-border);
}
.htt-page .htt-btn-ghost:hover {
  color: var(--htt-text);
  border-color: rgba(0, 112, 243, 0.3);
  background: var(--htt-surface);
}
.htt-page .htt-btn-lg { padding: 14px 32px; font-size: 13px; border-radius: 10px; }
.htt-page .htt-btn-block { width: 100%; justify-content: center; }

/* ============ SECTION BASE ============ */
.htt-page .htt-section-title {
  font-family: var(--htt-font-display);
  font-size: clamp(32px, 4.2vw, 56px);
  font-weight: 800;
  color: var(--htt-text);
  margin: 0 0 18px;
  letter-spacing: -0.03em;
  line-height: 1.1;
}
.htt-page .htt-section-desc {
  font-size: 16px;
  line-height: 1.65;
  color: var(--htt-muted2);
  max-width: 760px;
  margin: 0 auto 48px;
  font-weight: 400;
}
.htt-page .htt-eyebrow,
.htt-page .htt-process-eyebrow,
.htt-page .htt-compare-eyebrow,
.htt-page .htt-proof-eyebrow {
  font-family: var(--htt-font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--htt-cyan);
  text-transform: uppercase;
  margin-bottom: 16px;
}

/* ============ HERO ============ */
.htt-page .htt-hero {
  position: relative;
  padding: 90px 24px 110px;
  text-align: center;
  background: radial-gradient(circle at top center, rgba(0, 112, 243, 0.06) 0%, var(--htt-bg) 60%);
}
.htt-page .htt-hero-inner { max-width: 920px; margin: 0 auto; }
.htt-page .htt-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--htt-surface);
  border: 1px solid var(--htt-border);
  padding: 6px 16px;
  border-radius: 100px;
  font-family: var(--htt-font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--htt-muted2);
  text-transform: uppercase;
  margin-bottom: 28px;
  box-shadow: var(--htt-shadow-sm);
}
.htt-page .htt-badge-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--htt-cyan);
  box-shadow: 0 0 10px rgba(0, 112, 243, 0.6);
  animation: htt-pulse 1.8s ease-in-out infinite;
}
@keyframes htt-pulse { 0%, 100% { opacity: 0.5; } 50% { opacity: 1; } }

.htt-page .htt-hero-title {
  font-family: var(--htt-font-display);
  font-size: clamp(44px, 6vw, 76px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin: 0 auto 20px;
}
.htt-page .htt-hero-sub {
  font-size: 18px;
  line-height: 1.6;
  color: var(--htt-muted2);
  max-width: 680px;
  margin: 0 auto 36px;
}
.htt-page .htt-hero-sub strong { color: var(--htt-text); font-weight: 600; }
.htt-page .htt-hero-ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.htt-page .htt-save-pills {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}
.htt-page .htt-save-pill {
  background: var(--htt-surface);
  border: 1px solid var(--htt-border);
  border-radius: 16px;
  padding: 20px 22px;
  text-align: left;
  box-shadow: var(--htt-shadow-sm);
}
.htt-page .htt-save-pill-primary {
  background: linear-gradient(135deg, rgba(0, 112, 243, 0.06), rgba(0, 112, 243, 0.02));
  border-color: rgba(0, 112, 243, 0.25);
}
.htt-page .htt-save-num {
  font-family: var(--htt-font-display);
  font-weight: 800;
  font-size: 30px;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--htt-text);
  margin-bottom: 8px;
}
.htt-page .htt-save-pill-primary .htt-save-num { color: var(--htt-cyan); }
.htt-page .htt-save-num span {
  font-family: var(--htt-font-mono);
  font-size: 12px;
  font-weight: 500;
  color: var(--htt-muted);
  margin-left: 6px;
  letter-spacing: 0.04em;
}
.htt-page .htt-save-label {
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--htt-muted2);
}

/* ============ PROBLEM GRID ============ */
.htt-page .htt-problem {
  padding: 100px 48px 80px;
  text-align: center;
  background: var(--htt-bg2);
  border-top: 1px solid var(--htt-border);
  border-bottom: 1px solid var(--htt-border);
}
.htt-page .htt-problem .htt-section-title { margin-bottom: 16px; }
.htt-page .htt-problem-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 40px auto 0;
}
.htt-page .htt-problem-card {
  background: var(--htt-surface);
  border: 1px solid var(--htt-border);
  border-radius: 16px;
  padding: 28px 22px;
  text-align: left;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.htt-page .htt-problem-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--htt-shadow-md);
  border-color: rgba(0, 112, 243, 0.2);
}
.htt-page .htt-icon-wrap {
  width: 44px; height: 44px;
  background: var(--htt-cyan-dim);
  border: 1px solid var(--htt-cyan-mid);
  border-radius: 10px;
  display: grid; place-items: center;
  color: var(--htt-cyan);
  margin-bottom: 18px;
}
.htt-page .htt-icon-wrap svg { width: 22px; height: 22px; }
.htt-page .htt-problem-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--htt-text);
  margin: 0 0 10px;
  letter-spacing: -0.01em;
}
.htt-page .htt-problem-card p {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--htt-muted2);
  margin: 0;
}

/* ============ PROCESS FLOW ============ */
.htt-page .htt-process {
  padding: 100px 48px;
  text-align: center;
  background: var(--htt-bg);
}
.htt-page .htt-process-flow {
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  max-width: 1280px;
  margin: 20px auto 0;
}
.htt-page .htt-step {
  flex: 1 1 180px;
  min-width: 180px;
  max-width: 220px;
  background: var(--htt-surface);
  border: 1px solid var(--htt-border);
  border-radius: 16px;
  padding: 24px 20px;
  text-align: left;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  position: relative;
  display: flex;
  flex-direction: column;
}
.htt-page .htt-step-body {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.htt-page .htt-step:hover {
  transform: translateY(-4px);
  box-shadow: var(--htt-shadow-md);
  border-color: rgba(0, 112, 243, 0.2);
}
.htt-page .htt-step-final {
  background: linear-gradient(135deg, rgba(0, 112, 243, 0.06), var(--htt-surface));
  border-color: rgba(0, 112, 243, 0.3);
}
.htt-page .htt-step-num {
  display: inline-block;
  font-family: var(--htt-font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--htt-cyan);
  background: var(--htt-cyan-dim);
  border: 1px solid var(--htt-cyan-mid);
  padding: 5px 10px;
  border-radius: 100px;
  margin-bottom: 14px;
}
.htt-page .htt-step h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--htt-text);
  margin: 0 0 8px;
  letter-spacing: -0.005em;
  line-height: 1.3;
}
.htt-page .htt-step p {
  font-size: 12.5px;
  line-height: 1.55;
  color: var(--htt-muted2);
  margin: 0 0 14px;
}
.htt-page .htt-step-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  padding: 8px 12px;
  background: var(--htt-accent, #0070F3);
  color: #fff;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: -0.005em;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
  white-space: nowrap;
  align-self: center;
}
.htt-page .htt-step-cta:hover {
  background: #0057C2;
  transform: translateX(2px);
  color: #fff;
}
.htt-page .htt-step-cta svg {
  width: 13px;
  height: 13px;
}
.htt-page .htt-step-final .htt-step-cta {
  background: var(--htt-text, #0F172A);
}
.htt-page .htt-step-final .htt-step-cta:hover {
  background: #1E293B;
}
.htt-page .htt-step-arrow {
  display: grid;
  place-items: center;
  font-size: 22px;
  color: var(--htt-cyan);
  font-family: var(--htt-font-mono);
  flex: 0 0 auto;
  opacity: 0.6;
}

/* ============ DELIVERABLES ============ */
.htt-page .htt-deliverables {
  padding: 100px 48px;
  background: var(--htt-bg2);
  border-top: 1px solid var(--htt-border);
  border-bottom: 1px solid var(--htt-border);
}
.htt-page .htt-deliv-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 64px;
  align-items: flex-start;
}
.htt-page .htt-deliv-copy .htt-section-title {
  font-size: clamp(28px, 3.6vw, 46px);
}
.htt-page .htt-deliv-copy p {
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--htt-muted2);
  margin: 0 0 28px;
}
.htt-page .htt-deliv-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.htt-page .htt-deliv-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--htt-surface);
  border: 1px solid var(--htt-border);
  border-radius: 14px;
  padding: 20px 22px;
  box-shadow: var(--htt-shadow-sm);
}
.htt-page .htt-deliv-item h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--htt-text);
  margin: 0 0 6px;
}
.htt-page .htt-deliv-item p {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--htt-muted2);
  margin: 0;
}
.htt-page .htt-check {
  flex: 0 0 28px;
  width: 28px; height: 28px;
  border-radius: 8px;
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.25);
  display: grid; place-items: center;
  color: var(--htt-green);
}
.htt-page .htt-check svg { width: 16px; height: 16px; fill: none; }

/* ============ COMPARISON TABLE ============ */
.htt-page .htt-compare {
  padding: 100px 48px;
  text-align: center;
  background: var(--htt-bg);
}
.htt-page .htt-compare-table {
  max-width: 1100px;
  margin: 48px auto 0;
  background: var(--htt-surface);
  border: 1px solid var(--htt-border);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--htt-shadow-md);
}
.htt-page .htt-compare-row {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  text-align: left;
  gap: 24px;
  padding: 18px 28px;
  border-bottom: 1px solid var(--htt-border-soft);
  font-size: 14px;
  color: var(--htt-muted2);
  align-items: center;
}
.htt-page .htt-compare-row:last-child { border-bottom: 0; }
.htt-page .htt-compare-row > div:first-child {
  font-weight: 600;
  color: var(--htt-text);
}
.htt-page .htt-compare-row .htt-compare-ours {
  color: var(--htt-cyan);
  font-weight: 600;
}
.htt-page .htt-compare-head {
  background: var(--htt-bg2);
  font-family: var(--htt-font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--htt-muted);
  padding: 14px 28px;
}
.htt-page .htt-compare-head > div:first-child { color: var(--htt-muted); }
.htt-page .htt-compare-head .htt-compare-ours { color: var(--htt-cyan); }

/* ============ PROOF / QUOTES ============ */
.htt-page .htt-proof {
  padding: 100px 48px;
  text-align: center;
  background: var(--htt-bg2);
  border-top: 1px solid var(--htt-border);
  border-bottom: 1px solid var(--htt-border);
}
.htt-page .htt-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 1200px;
  margin: 32px auto 0;
}
.htt-page .htt-quote {
  background: var(--htt-surface);
  border: 1px solid var(--htt-border);
  border-radius: 18px;
  padding: 28px;
  text-align: left;
  box-shadow: var(--htt-shadow-sm);
  margin: 0;
}
.htt-page .htt-quote p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--htt-text);
  margin: 0 0 20px;
  font-weight: 500;
}
.htt-page .htt-quote footer {
  font-family: var(--htt-font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--htt-muted);
  text-transform: uppercase;
}
.htt-page .htt-quote footer strong {
  color: var(--htt-text);
  font-weight: 600;
}

/* ============ CTA / FORM ============ */
.htt-page .htt-cta {
  padding: 110px 48px 120px;
  background: var(--htt-bg);
}
.htt-page .htt-cta-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: flex-start;
}
.htt-page .htt-cta-copy .htt-section-title {
  font-size: clamp(30px, 3.8vw, 52px);
  margin-bottom: 20px;
}
.htt-page .htt-cta-desc {
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--htt-muted2);
  margin: 0 0 28px;
}
.htt-page .htt-cta-points {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.htt-page .htt-cta-points li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--htt-muted2);
}
.htt-page .htt-bullet {
  flex: 0 0 8px;
  width: 8px; height: 8px; border-radius: 50%;
  margin-top: 7px;
  background: var(--htt-cyan);
  box-shadow: 0 0 10px rgba(0, 112, 243, 0.4);
}

.htt-page .htt-form {
  background: var(--htt-surface);
  border: 1px solid var(--htt-border);
  border-radius: 20px;
  padding: 34px;
  box-shadow: var(--htt-shadow-lg);
  position: relative;
  overflow: hidden;
}
.htt-page .htt-form h3 {
  font-family: var(--htt-font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--htt-text);
  margin: 0 0 22px;
  letter-spacing: -0.01em;
}
.htt-page .htt-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 18px;
}
.htt-page .htt-field label {
  display: block;
  font-family: var(--htt-font-mono);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--htt-muted);
  text-transform: uppercase;
  margin-bottom: 6px;
}
.htt-page .htt-field input,
.htt-page .htt-field textarea {
  width: 100%;
  padding: 12px 14px;
  background: var(--htt-bg);
  border: 1.5px solid var(--htt-border);
  border-radius: 10px;
  font-family: var(--htt-font-body);
  font-size: 14px;
  color: var(--htt-text);
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}
.htt-page .htt-field input:focus,
.htt-page .htt-field textarea:focus {
  outline: none;
  border-color: var(--htt-cyan);
  background: var(--htt-surface);
  box-shadow: 0 0 0 4px rgba(0, 112, 243, 0.08);
}
.htt-page .htt-field-full { grid-column: 1 / -1; }
.htt-page .htt-field textarea { resize: vertical; min-height: 80px; }
.htt-page .htt-form-note {
  font-size: 12px;
  color: var(--htt-muted);
  margin: 12px 0 0;
  text-align: center;
}
.htt-page .htt-form-success {
  display: none;
  text-align: center;
  padding: 20px;
}
.htt-page .htt-form-success.htt-show { display: block; }
.htt-page .htt-form-success h3 {
  margin: 16px 0 8px;
  font-size: 22px;
}
.htt-page .htt-form-intro {
  font-size: 13.5px;
  color: var(--htt-muted2);
  margin: -10px 0 18px;
  line-height: 1.5;
}
.htt-page .htt-form-message {
  margin-top: 14px;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 13px;
  line-height: 1.5;
}
.htt-page .htt-form-error {
  background: #FEF2F2;
  color: #B91C1C;
  border: 1px solid #FECACA;
}
.htt-page .htt-form-info {
  background: #EFF6FF;
  color: #1D4ED8;
  border: 1px solid #BFDBFE;
}
.htt-page .htt-form-altauth {
  text-align: center;
  font-size: 13px;
  color: var(--htt-muted2);
  margin: 14px 0 0;
}
.htt-page .htt-inline-link {
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  color: var(--htt-accent, #0070F3);
  font-weight: 600;
  cursor: pointer;
}
.htt-page .htt-inline-link:hover { text-decoration: underline; }
.htt-page #httRegisterSubmit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}
.htt-page .htt-form-success p {
  color: var(--htt-muted2);
  font-size: 14px;
  margin: 0;
}

/* ============ FADE-UP ============ */
.htt-page .htt-fade {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.htt-page .htt-fade.htt-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1100px) {
  .htt-page .htt-problem-grid { grid-template-columns: repeat(2, 1fr); }
  .htt-page .htt-proof-grid { grid-template-columns: 1fr; }
  .htt-page .htt-deliv-grid { grid-template-columns: 1fr; gap: 40px; }
  .htt-page .htt-cta-inner { grid-template-columns: 1fr; }
  .htt-page .htt-step { max-width: 100%; }
  .htt-page .htt-step-arrow { transform: rotate(90deg); }
}

@media (max-width: 900px) {
  .htt-page .htt-nav { padding: 14px 24px; }
  .htt-page .htt-nav-links { display: none; }
  .htt-page .htt-nav-actions .htt-btn-ghost { display: none; }

  .htt-page .htt-hero { padding: 64px 20px 80px; }
  .htt-page .htt-save-pills { grid-template-columns: 1fr; }

  .htt-page .htt-problem { padding: 72px 24px; }
  .htt-page .htt-problem-grid { grid-template-columns: 1fr; }

  .htt-page .htt-process,
  .htt-page .htt-deliverables,
  .htt-page .htt-compare,
  .htt-page .htt-proof,
  .htt-page .htt-cta { padding: 72px 24px; }

  .htt-page .htt-compare-row {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 14px 18px;
  }
  .htt-page .htt-compare-row > div:first-child {
    font-family: var(--htt-font-mono);
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--htt-muted);
    font-weight: 600;
  }
  .htt-page .htt-compare-head { display: none; }

  .htt-page .htt-form-grid { grid-template-columns: 1fr; }
  .htt-page .htt-form { padding: 24px; }
}

/* ============ STEP CARD BUTTONS ============ */
.htt-page .htt-step-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 6px;
  margin-top: 16px;
  padding: 9px 12px;
  font-weight: 600;
  font-size: 12px;
  color: #ffffff;
  background: var(--htt-cyan);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 2px 8px rgba(0, 112, 243, 0.25);
  white-space: nowrap;
  text-align: center;
}
.htt-page .htt-step-btn:hover {
  background: var(--htt-cyan-deep);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 112, 243, 0.35);
}
.htt-page .htt-step-btn:active {
  transform: translateY(0);
}

/* Dark variant for final step */
.htt-page .htt-step-btn-dark {
  background: #1e293b;
  box-shadow: 0 2px 8px rgba(30, 41, 59, 0.25);
}
.htt-page .htt-step-btn-dark:hover {
  background: #0f172a;
  box-shadow: 0 4px 12px rgba(30, 41, 59, 0.35);
}

/* ============ DEMO MODAL ============ */
/* Overlay — !important on layout props to beat any global theme resets */
.htt-modal-overlay {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  z-index: 99999 !important;
  background: rgba(15, 23, 42, 0.6) !important;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 20px !important;
  box-sizing: border-box !important;
  margin: 0 !important;
  width: 100% !important;
  height: 100% !important;
  animation: htt-modal-fadein 0.18s ease;
}
.htt-modal-overlay[hidden] {
  display: none !important;
}
@keyframes htt-modal-fadein {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.htt-modal {
  background: #ffffff !important;
  border: 1px solid rgba(15, 23, 42, 0.1) !important;
  border-radius: 20px !important;
  padding: 40px 36px 36px !important;
  width: 100% !important;
  max-width: 580px !important;
  position: relative !important;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.2) !important;
  box-sizing: border-box !important;
  animation: htt-modal-slidein 0.22s cubic-bezier(0.34, 1.56, 0.64, 1);
  font-family: 'Poppins', 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif !important;
}
@keyframes htt-modal-slidein {
  from { transform: translateY(24px) scale(0.97); opacity: 0; }
  to   { transform: translateY(0)    scale(1);    opacity: 1; }
}

.htt-modal-close {
  position: absolute !important;
  top: 16px !important;
  right: 16px !important;
  width: 36px !important;
  height: 36px !important;
  border-radius: 50% !important;
  border: none !important;
  background: #f1f5f9 !important;
  color: #64748b !important;
  cursor: pointer !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: background 0.15s, color 0.15s;
  padding: 0 !important;
  line-height: 1 !important;
}
.htt-modal-close:hover {
  background: #e2e8f0 !important;
  color: #0f172a !important;
}

.htt-modal-icon {
  width: 56px !important;
  height: 56px !important;
  border-radius: 14px !important;
  background: rgba(0, 112, 243, 0.08) !important;
  color: #0070f3 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin-bottom: 20px !important;
}

/* Choice cards — Step 1 */
.htt-modal-choices {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 14px !important;
  margin-top: 4px !important;
}
@media (max-width: 480px) {
  .htt-modal-choices { grid-template-columns: 1fr !important; }
}

.htt-modal-choice {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  text-align: center !important;
  gap: 10px !important;
  padding: 28px 20px !important;
  border: 1.5px solid rgba(15, 23, 42, 0.14) !important;
  border-radius: 16px !important;
  background: #ffffff !important;
  cursor: pointer !important;
  transition: border-color 0.18s, box-shadow 0.18s, background 0.18s;
  font-family: 'Poppins', 'Inter', system-ui, sans-serif !important;
}
.htt-modal-choice:hover {
  border-color: rgba(15, 23, 42, 0.28) !important;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.08) !important;
}
.htt-modal-choice--primary {
  background: #0070f3 !important;
  border-color: #0070f3 !important;
  color: #ffffff !important;
}
.htt-modal-choice--primary:hover {
  background: #005bb5 !important;
  border-color: #005bb5 !important;
  box-shadow: 0 6px 20px rgba(0, 112, 243, 0.35) !important;
}

.htt-choice-icon {
  width: 52px !important;
  height: 52px !important;
  border-radius: 50% !important;
  background: rgba(15, 23, 42, 0.06) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-shrink: 0 !important;
}
.htt-modal-choice--primary .htt-choice-icon {
  background: rgba(255, 255, 255, 0.2) !important;
}

.htt-choice-title {
  font-size: 0.97rem !important;
  font-weight: 700 !important;
  color: #0f172a !important;
  display: block !important;
  line-height: 1.25 !important;
}
.htt-modal-choice--primary .htt-choice-title {
  color: #ffffff !important;
}

.htt-choice-desc {
  font-size: 0.82rem !important;
  color: #64748b !important;
  line-height: 1.5 !important;
  display: block !important;
}
.htt-modal-choice--primary .htt-choice-desc {
  color: rgba(255, 255, 255, 0.85) !important;
}

/* Back button — Step 2 */
.htt-modal-back {
  display: inline-flex !important;
  align-items: center !important;
  gap: 5px !important;
  background: none !important;
  border: none !important;
  padding: 0 !important;
  font-size: 0.85rem !important;
  font-weight: 500 !important;
  color: #64748b !important;
  cursor: pointer !important;
  margin-bottom: 20px !important;
  font-family: 'Poppins', 'Inter', system-ui, sans-serif !important;
  transition: color 0.15s;
}
.htt-modal-back:hover {
  color: #0f172a !important;
}

/* Email input with icon */
.htt-modal-input-wrap {
  position: relative !important;
}
.htt-modal-input-icon {
  position: absolute !important;
  left: 14px !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  color: #94a3b8 !important;
  pointer-events: none !important;
}
.htt-modal-input-wrap .htt-modal-input {
  padding-left: 40px !important;
}

.htt-modal-title {
  font-family: 'Poppins', 'Inter', system-ui, -apple-system, sans-serif !important;
  font-size: 1.35rem !important;
  font-weight: 700 !important;
  color: #0f172a !important;
  margin: 0 0 6px !important;
  line-height: 1.25 !important;
}

.htt-modal-subtitle {
  font-size: 0.95rem !important;
  color: #64748b !important;
  margin: 0 0 28px !important;
  line-height: 1.5 !important;
}

.htt-modal-body {
  display: flex !important;
  flex-direction: column !important;
  gap: 14px !important;
}

.htt-modal-field {
  display: flex !important;
  flex-direction: column !important;
  gap: 6px !important;
}

.htt-modal-label {
  font-size: 0.85rem !important;
  font-weight: 600 !important;
  color: #0f172a !important;
  display: block !important;
}

.htt-modal-input {
  width: 100% !important;
  padding: 12px 16px !important;
  border: 1.5px solid rgba(15, 23, 42, 0.15) !important;
  border-radius: 10px !important;
  font-size: 0.95rem !important;
  font-family: 'Poppins', 'Inter', system-ui, -apple-system, sans-serif !important;
  color: #0f172a !important;
  background: #f8fafc !important;
  transition: border-color 0.18s, box-shadow 0.18s;
  box-sizing: border-box !important;
  outline: none !important;
  -webkit-appearance: none;
}
.htt-modal-input:focus {
  border-color: #0070f3 !important;
  box-shadow: 0 0 0 3px rgba(0, 112, 243, 0.1) !important;
}
.htt-modal-input::placeholder {
  color: #94a3b8 !important;
}

.htt-modal-field-error {
  font-size: 0.8rem !important;
  color: #dc2626 !important;
  min-height: 1.1em !important;
  display: block !important;
}

.htt-modal-submit {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  width: 100% !important;
  padding: 13px 20px !important;
  font-size: 0.95rem !important;
  font-weight: 700 !important;
  font-family: 'Poppins', 'Inter', system-ui, -apple-system, sans-serif !important;
  color: #ffffff !important;
  background: #0070f3 !important;
  border: none !important;
  border-radius: 10px !important;
  cursor: pointer !important;
  transition: background 0.18s, transform 0.15s, box-shadow 0.18s;
  box-shadow: 0 4px 14px rgba(0, 112, 243, 0.3) !important;
  text-decoration: none !important;
  line-height: 1 !important;
  box-sizing: border-box !important;
  white-space: nowrap !important;
}
.htt-modal-submit:hover:not(:disabled) {
  background: #005bb5 !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 6px 18px rgba(0, 112, 243, 0.38) !important;
  color: #ffffff !important;
}
.htt-modal-submit:disabled {
  background: #cbd5e1 !important;
  color: #94a3b8 !important;
  cursor: not-allowed !important;
  box-shadow: none !important;
  transform: none !important;
}

.htt-modal-btn-spinner {
  display: inline-flex !important;
  animation: htt-spin 0.8s linear infinite;
}
.htt-modal-btn-spinner[hidden] {
  display: none !important;
}
@keyframes htt-spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.htt-modal-disclaimer {
  font-size: 0.78rem !important;
  color: #64748b !important;
  text-align: center !important;
  margin: 0 !important;
  line-height: 1.5 !important;
}

/* =================================================================
   ============  HTT v3 · Moodboard-Aligned Apple Polish  ===========
   Navy authority · Signal blue · Gold human · Hairline depth
   ================================================================= */

body.htt-active.htt-v3,
.htt-v3 {
  --htt-navy: #0D1B2A;
  --htt-navy-mid: #1A2F4A;
  --htt-blue: #2563EB;
  --htt-blue-mid: #3B82F6;
  --htt-blue-soft: #60A5FA;
  --htt-blue-pale: #DBEAFE;
  --htt-blue-pale-2: #EFF6FF;
  --htt-gold: #B48600;
  --htt-gold-soft: #F5C85A;
  --htt-success: #059669;
  --htt-danger: #DC2626;
  --htt-surface-1: #FFFFFF;
  --htt-surface-2: #F8FAFC;
  --htt-surface-3: #F1F5F9;
  --htt-text-1: #0F172A;
  --htt-text-2: #334155;
  --htt-text-3: #64748B;
  --htt-border-1: rgba(15, 23, 42, 0.08);
  --htt-border-2: rgba(15, 23, 42, 0.12);
  --htt-font-serif: 'Instrument Serif', 'Playfair Display', Georgia, serif;
  --htt-ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* Tabular numerics globally for numeric figures */
.htt-v3 .htt-save-num,
.htt-v3 .htt-save-fig,
.htt-v3 .htt-hero-title-italic,
.htt-v3 .htt-problem-num,
.htt-v3 .htt-step-num,
.htt-v3 .htt-problem-stat {
  font-variant-numeric: tabular-nums;
}

/* h2/em — moodboard signature: serif italic accent in gold or blue */
.htt-v3 .htt-section-title em,
.htt-v3 .htt-proof-title em {
  font-family: var(--htt-font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--htt-gold);
  letter-spacing: 0;
}

/* ============ HERO v3 ============ */
.htt-v3 .htt-hero {
  position: relative;
  padding: 110px 24px 120px;
  background: linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 50%, #FFFFFF 100%);
  overflow: hidden;
}
.htt-v3 .htt-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 980px;
}

/* Ambient layer */
.htt-v3 .htt-hero-ambient {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.htt-v3 .htt-hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.htt-v3 .htt-hero-orb-1 {
  width: 720px; height: 720px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.12) 0%, transparent 65%);
  top: -200px; right: -150px;
  animation: httDrift1 22s ease-in-out infinite;
}
.htt-v3 .htt-hero-orb-2 {
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(245, 200, 90, 0.07) 0%, transparent 70%);
  bottom: -200px; left: -100px;
  animation: httDrift2 28s ease-in-out infinite;
}
@keyframes httDrift1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-30px, 20px) scale(1.04); }
}
@keyframes httDrift2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(40px, -30px) scale(0.98); }
}
.htt-v3 .htt-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(37, 99, 235, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37, 99, 235, 0.05) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 35%, #000 20%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 70% 70% at 50% 35%, #000 20%, transparent 100%);
  opacity: 0.45;
}

/* Badge */
.htt-v3 .htt-badge {
  background: var(--htt-surface-1);
  border: 1px solid var(--htt-border-1);
  padding: 7px 16px 7px 14px;
  border-radius: 999px;
  font-family: var(--htt-font-mono);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--htt-blue);
  text-transform: uppercase;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.8) inset,
    0 4px 12px rgba(15, 23, 42, 0.04);
  margin-bottom: 28px;
}
.htt-v3 .htt-badge-dot {
  background: var(--htt-blue);
  box-shadow: 0 0 12px rgba(37, 99, 235, 0.6);
}

/* Hero title with italic accent */
.htt-v3 .htt-hero-title {
  font-size: clamp(46px, 6.5vw, 82px);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.04;
  color: var(--htt-text-1);
  margin: 0 auto 22px;
}
.htt-v3 .htt-hero-title-italic {
  font-family: var(--htt-font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--htt-gold);
  letter-spacing: 0;
  display: inline-block;
  position: relative;
  background: linear-gradient(90deg, #B48600 0%, #F5C85A 50%, #B48600 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.htt-v3 .htt-hero-title-italic-suffix {
  font-family: var(--htt-font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--htt-gold);
  background: linear-gradient(90deg, #B48600 0%, #F5C85A 50%, #B48600 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.htt-v3 .htt-hero-sub {
  font-size: 18px;
  line-height: 1.65;
  color: var(--htt-text-2);
  max-width: 680px;
  margin: 0 auto 40px;
  font-weight: 400;
}
.htt-v3 .htt-hero-sub strong { color: var(--htt-text-1); font-weight: 600; }

/* Hero CTAs */
.htt-v3 .htt-hero-ctas { margin-bottom: 64px; }
.htt-v3 .htt-btn {
  font-family: var(--htt-font-mono);
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: all 0.25s var(--htt-ease);
  position: relative;
  overflow: hidden;
}
.htt-v3 .htt-btn-primary {
  background: linear-gradient(135deg, var(--htt-blue), #1D4ED8);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.18) inset,
    0 8px 20px -4px rgba(37, 99, 235, 0.35);
}
.htt-v3 .htt-btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.22) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.7s var(--htt-ease);
}
.htt-v3 .htt-btn-primary:hover::before { transform: translateX(100%); }
.htt-v3 .htt-btn-primary:hover {
  transform: translateY(-1px);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.2) inset,
    0 12px 28px -4px rgba(37, 99, 235, 0.45);
}

/* Hero decision panel */
.htt-v3 .htt-hero-panel {
  max-width: 1080px;
  margin: 0 auto;
  background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(248,250,252,0.96));
  border: 1px solid var(--htt-border-1);
  border-radius: 22px;
  padding: 22px 22px 18px;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.8) inset,
    0 30px 60px -20px rgba(15, 23, 42, 0.10),
    0 12px 24px -10px rgba(15, 23, 42, 0.04);
  text-align: left;
}
.htt-v3 .htt-hero-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
  padding: 0 6px;
}
.htt-v3 .htt-hero-panel-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--htt-font-mono);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--htt-text-2);
}
.htt-v3 .htt-hero-panel-tag-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--htt-blue);
  box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.5);
  animation: httPulse 1.8s ease-out infinite;
}
@keyframes httPulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.55); }
  70% { box-shadow: 0 0 0 12px rgba(37, 99, 235, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 99, 235, 0); }
}
.htt-v3 .htt-hero-panel-meta {
  font-family: var(--htt-font-mono);
  font-size: 10.5px;
  color: var(--htt-text-3);
  letter-spacing: 0.08em;
}

/* Save pills redesigned */
.htt-v3 .htt-save-pills {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--htt-border-1);
  border: 1px solid var(--htt-border-1);
  border-radius: 16px;
  overflow: hidden;
  max-width: none;
  box-shadow: 0 8px 24px -10px rgba(15, 23, 42, 0.05);
}
.htt-v3 .htt-save-pill {
  background: var(--htt-surface-1);
  border: 0;
  border-radius: 0;
  padding: 24px 26px 22px;
  text-align: left;
  box-shadow: none;
  position: relative;
  transition: background 0.3s var(--htt-ease);
}
.htt-v3 .htt-save-pill:hover { background: #FAFBFC; }
.htt-v3 .htt-save-pill-primary {
  background: linear-gradient(180deg, rgba(37, 99, 235, 0.06) 0%, rgba(96, 165, 250, 0.02) 100%);
}
.htt-v3 .htt-save-pill-primary:hover {
  background: linear-gradient(180deg, rgba(37, 99, 235, 0.09) 0%, rgba(96, 165, 250, 0.03) 100%);
}
.htt-v3 .htt-save-pill::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 0; height: 2px;
  background: linear-gradient(90deg, var(--htt-blue), transparent);
  transition: width 0.6s var(--htt-ease);
}
.htt-v3 .htt-save-pill:hover::after { width: 100%; }
.htt-v3 .htt-save-pill-primary::after {
  background: linear-gradient(90deg, var(--htt-gold-soft), var(--htt-gold), transparent);
}

.htt-v3 .htt-save-pill-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.htt-v3 .htt-save-pill-tag {
  font-family: var(--htt-font-mono);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--htt-text-3);
  padding: 3px 8px;
  background: var(--htt-surface-3);
  border: 1px solid var(--htt-border-1);
  border-radius: 999px;
}
.htt-v3 .htt-save-pill-tag-primary {
  color: var(--htt-blue);
  background: var(--htt-blue-pale-2);
  border-color: rgba(37, 99, 235, 0.22);
}
.htt-v3 .htt-save-pill-trend {
  font-family: var(--htt-font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 3px 8px;
  border-radius: 999px;
}
.htt-v3 .htt-trend-down {
  color: var(--htt-success);
  background: rgba(5, 150, 105, 0.08);
  border: 1px solid rgba(5, 150, 105, 0.22);
}
.htt-v3 .htt-trend-up {
  color: var(--htt-blue);
  background: var(--htt-blue-pale-2);
  border: 1px solid rgba(37, 99, 235, 0.22);
}

.htt-v3 .htt-save-num {
  display: flex;
  align-items: baseline;
  gap: 2px;
  font-family: var(--htt-font-display);
  font-weight: 800;
  font-size: 36px;
  letter-spacing: -0.035em;
  line-height: 1;
  color: var(--htt-text-1);
  margin-bottom: 10px;
}
.htt-v3 .htt-save-pill-primary .htt-save-num {
  background: linear-gradient(180deg, var(--htt-blue) 0%, #1D4ED8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.htt-v3 .htt-save-symbol {
  font-size: 22px;
  font-weight: 700;
  margin-right: 1px;
  color: var(--htt-text-3);
  -webkit-text-fill-color: var(--htt-text-3);
}
.htt-v3 .htt-save-pill-primary .htt-save-symbol {
  color: var(--htt-blue);
  -webkit-text-fill-color: var(--htt-blue);
}
.htt-v3 .htt-save-fig { font-feature-settings: 'tnum'; }
.htt-v3 .htt-save-suffix {
  font-family: var(--htt-font-mono);
  font-size: 11.5px;
  font-weight: 500;
  color: var(--htt-text-3);
  margin-left: 6px;
  letter-spacing: 0.04em;
  -webkit-text-fill-color: var(--htt-text-3);
}
.htt-v3 .htt-save-label {
  font-family: var(--htt-font-mono);
  font-size: 12px;
  line-height: 1.55;
  color: var(--htt-text-2);
}

/* ============ PROBLEM v3 ============ */
.htt-v3 .htt-problem {
  background: var(--htt-surface-2);
  text-align: left;
}
.htt-v3 .htt-problem-head {
  max-width: 1200px;
  margin: 0 auto 40px;
  text-align: left;
}
.htt-v3 .htt-problem-head .htt-section-title { margin-bottom: 14px; text-align: left; }
.htt-v3 .htt-problem-head .htt-section-desc { margin: 0; text-align: left; max-width: 760px; }

.htt-v3 .htt-eyebrow,
.htt-v3 .htt-process-eyebrow,
.htt-v3 .htt-compare-eyebrow,
.htt-v3 .htt-proof-eyebrow {
  font-family: var(--htt-font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--htt-blue);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: var(--htt-blue-pale-2);
  border: 1px solid rgba(37, 99, 235, 0.18);
  border-radius: 999px;
  margin-bottom: 18px;
  position: relative;
  overflow: hidden;
}
.htt-v3 .htt-eyebrow::before,
.htt-v3 .htt-process-eyebrow::before,
.htt-v3 .htt-compare-eyebrow::before,
.htt-v3 .htt-proof-eyebrow::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(96, 165, 250, 0.22), transparent);
  transform: translateX(-100%);
  animation: httShimmer 6s ease-in-out infinite;
}
@keyframes httShimmer {
  0%, 60%, 100% { transform: translateX(-100%); }
  70% { transform: translateX(100%); }
}

.htt-v3 .htt-problem-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--htt-border-1);
  border: 1px solid var(--htt-border-1);
  border-radius: 16px;
  overflow: hidden;
  max-width: 1200px;
  margin: 0 auto;
  box-shadow: 0 8px 24px -10px rgba(15, 23, 42, 0.04);
}
.htt-v3 .htt-problem-card {
  background: var(--htt-surface-1);
  border: 0;
  border-radius: 0;
  padding: 30px 26px 26px;
  text-align: left;
  position: relative;
  transition: background 0.3s var(--htt-ease), transform 0.4s var(--htt-ease);
}
.htt-v3 .htt-problem-card:hover {
  background: #FAFBFC;
  transform: translateY(-2px);
  box-shadow: none;
  z-index: 1;
}
.htt-v3 .htt-problem-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 0; height: 2px;
  background: linear-gradient(90deg, var(--htt-blue), transparent);
  transition: width 0.6s var(--htt-ease);
}
.htt-v3 .htt-problem-card:hover::before { width: 100%; }
.htt-v3 .htt-problem-num {
  position: absolute;
  top: 26px;
  right: 26px;
  font-family: var(--htt-font-mono);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--htt-text-3);
}
.htt-v3 .htt-icon-wrap {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, var(--htt-blue-pale-2), rgba(96, 165, 250, 0.04));
  border: 1px solid rgba(37, 99, 235, 0.18);
  border-radius: 12px;
  margin-bottom: 18px;
  transition: transform 0.4s var(--htt-ease), box-shadow 0.4s;
}
.htt-v3 .htt-problem-card:hover .htt-icon-wrap {
  transform: scale(1.06);
  box-shadow: 0 8px 18px -4px rgba(37, 99, 235, 0.22);
}
.htt-v3 .htt-icon-wrap svg { width: 20px; height: 20px; }
.htt-v3 .htt-problem-card h3 {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--htt-text-1);
  margin: 0 0 8px;
}
.htt-v3 .htt-problem-card p {
  font-family: var(--htt-font-mono);
  font-size: 13px;
  line-height: 1.65;
  color: var(--htt-text-2);
  margin: 0 0 16px;
}
.htt-v3 .htt-problem-stat {
  display: inline-block;
  font-family: var(--htt-font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 4px 10px;
  background: var(--htt-surface-3);
  border: 1px solid var(--htt-border-1);
  border-radius: 999px;
  color: var(--htt-text-2);
}

/* ============ PROCESS PIPELINE v3 ============ */
.htt-v3 .htt-process {
  background: var(--htt-surface-1);
  text-align: left;
}
.htt-v3 .htt-process-head {
  max-width: 1180px;
  margin: 0 auto 56px;
  text-align: left;
}
.htt-v3 .htt-process-head .htt-section-title { margin-bottom: 14px; text-align: left; }
.htt-v3 .htt-process-head .htt-section-desc { margin: 0; text-align: left; max-width: 760px; }

/* Vertical pipeline */
.htt-v3 .htt-process-flow {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex-wrap: nowrap;
  align-items: stretch;
  justify-content: flex-start;
  --htt-rail-cut: 46px;
}
.htt-v3 .htt-process-rail {
  position: absolute;
  left: 52px;
  top: 28px;
  bottom: calc(28px + var(--htt-rail-cut));
  width: 2px;
  background: linear-gradient(180deg,
    transparent,
    rgba(37, 99, 235, 0.20) 8%,
    rgba(180, 134, 0, 0.22) 50%,
    rgba(37, 99, 235, 0.20) 92%,
    transparent
  );
  z-index: 0;
  overflow: hidden;
}
.htt-v3 .htt-process-rail-fill {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 0;
  background: linear-gradient(180deg,
    var(--htt-blue) 0%,
    var(--htt-blue-mid) 50%,
    var(--htt-gold-soft) 100%
  );
  transition: height 1.4s var(--htt-ease);
}
.htt-v3 .htt-process-flow.is-active .htt-process-rail-fill { height: 100%; }

.htt-v3 .htt-step {
  position: relative;
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 22px;
  align-items: flex-start;
  background: linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(248,250,252,0.9) 100%);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 18px;
  padding: 26px 28px;
  max-width: none;
  min-width: 0;
  text-align: left;
  flex: 0 0 auto;
  box-shadow: 0 6px 20px -14px rgba(15, 23, 42, 0.35), 0 1px 2px rgba(15, 23, 42, 0.04);
  transition: all 0.4s var(--htt-ease);
  z-index: 1;
}
.htt-v3 .htt-step:hover {
  border-color: rgba(37, 99, 235, 0.26);
  transform: translateY(-2px);
  box-shadow: 0 16px 36px -18px rgba(15, 23, 42, 0.45), 0 2px 8px rgba(15, 23, 42, 0.05);
}

.htt-v3 .htt-step-marker {
  position: relative;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  z-index: 2;
  box-shadow: 0 6px 16px -8px rgba(15, 23, 42, 0.35);
}
.htt-v3 .htt-step-marker-ring {
  position: absolute;
  inset: -4px;
  border: 1px solid currentColor;
  border-radius: 16px;
  opacity: 0;
  transition: opacity 0.4s;
}
.htt-v3 .htt-step:hover .htt-step-marker-ring {
  opacity: 0.4;
  animation: httPingRing 1.6s ease-out infinite;
}
@keyframes httPingRing {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.25); opacity: 0; }
}
.htt-v3 .htt-step-num {
  font-family: var(--htt-font-mono);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  background: none;
  border: 0;
  padding: 0;
  margin: 0;
  border-radius: 0;
}

/* Marker colors by step type */
.htt-v3 .htt-step-company .htt-step-marker {
  background: var(--htt-surface-3);
  color: var(--htt-text-1);
  border: 1px solid var(--htt-border-2);
}
.htt-v3 .htt-step-ai .htt-step-marker {
  background: rgba(37, 99, 235, 0.10);
  color: var(--htt-blue);
  border: 1px solid rgba(37, 99, 235, 0.25);
}
.htt-v3 .htt-step-human .htt-step-marker {
  background: rgba(245, 200, 90, 0.14);
  color: var(--htt-gold);
  border: 1px solid rgba(180, 134, 0, 0.28);
}
.htt-v3 .htt-step-final .htt-step-marker {
  background: var(--htt-navy);
  color: #fff;
  border: 1px solid var(--htt-navy-mid);
  box-shadow: 0 6px 16px -4px rgba(13, 27, 42, 0.25);
}

/* Step body */
.htt-v3 .htt-step-body {
  text-align: left;
  display: block;
}
.htt-v3 .htt-step-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--htt-font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 8px;
  border: 1px solid;
}
.htt-v3 .htt-step-tag-company {
  background: var(--htt-blue-pale-2);
  color: var(--htt-navy);
  border-color: rgba(13, 27, 42, 0.14);
}
.htt-v3 .htt-step-tag-ai {
  background: rgba(37, 99, 235, 0.08);
  color: var(--htt-blue);
  border-color: rgba(37, 99, 235, 0.22);
}
.htt-v3 .htt-step-tag-human {
  background: rgba(245, 200, 90, 0.12);
  color: var(--htt-gold);
  border-color: rgba(180, 134, 0, 0.28);
}
.htt-v3 .htt-step-tag-output {
  background: var(--htt-navy);
  color: #fff;
  border-color: var(--htt-navy-mid);
}
.htt-v3 .htt-step-final {
  background: linear-gradient(135deg, rgba(13, 27, 42, 0.03) 0%, rgba(245, 200, 90, 0.04) 100%);
  border-color: rgba(13, 27, 42, 0.14);
}
.htt-v3 .htt-step h3 {
  font-family: var(--htt-font-display);
  font-size: 18.5px;
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--htt-text-1);
  margin: 0 0 6px;
  line-height: 1.3;
}
.htt-v3 .htt-step p {
  font-family: var(--htt-font-mono);
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--htt-text-2);
  margin: 0 0 14px;
  max-width: 760px;
}
.htt-v3 .htt-step-meta {
  display: inline-block;
  font-family: var(--htt-font-mono);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--htt-text-3);
  padding: 4px 10px;
  background: var(--htt-surface-3);
  border: 1px solid var(--htt-border-1);
  border-radius: 999px;
}

/* Step buttons stay light & inline */
.htt-v3 .htt-step-btn {
  width: auto;
  margin-top: 4px;
  padding: 10px 18px;
  font-family: var(--htt-font-mono);
  font-size: 11.5px;
  letter-spacing: 0.04em;
  background: linear-gradient(135deg, var(--htt-blue), #1D4ED8);
  color: #fff;
  border-radius: 10px;
  border: 0;
  box-shadow: 0 4px 12px -2px rgba(37, 99, 235, 0.32);
  transition: all 0.25s var(--htt-ease);
}
.htt-v3 .htt-step-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px -2px rgba(37, 99, 235, 0.42);
  background: linear-gradient(135deg, #1D4ED8, var(--htt-blue));
}
.htt-v3 .htt-step-btn-dark {
  background: var(--htt-navy);
  box-shadow: 0 4px 12px -2px rgba(13, 27, 42, 0.3);
}
.htt-v3 .htt-step-btn-dark:hover {
  background: var(--htt-navy-mid);
  box-shadow: 0 8px 20px -2px rgba(13, 27, 42, 0.4);
}

/* Hide old arrows; we use the rail instead */
.htt-v3 .htt-step-arrow { display: none; }

/* ============ DELIVERABLES v3 ============ */
.htt-v3 .htt-deliverables {
  background: var(--htt-surface-2);
  border-top: 1px solid var(--htt-border-1);
  border-bottom: 1px solid var(--htt-border-1);
}
.htt-v3 .htt-deliv-grid {
  max-width: 1200px;
  gap: 64px;
}
.htt-v3 .htt-deliv-copy .htt-section-title {
  font-size: clamp(30px, 3.8vw, 50px);
}
.htt-v3 .htt-deliv-copy p {
  font-family: var(--htt-font-mono);
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--htt-text-2);
}
.htt-v3 .htt-deliv-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.htt-v3 .htt-deliv-summary {
  background: var(--htt-surface-1);
  border: 1px solid var(--htt-border-1);
  border-radius: 14px;
  padding: 4px 20px;
  margin-top: 4px;
}
.htt-v3 .htt-deliv-summary-row {
  display: grid;
  grid-template-columns: 140px 1fr;
  align-items: center;
  gap: 18px;
  padding: 14px 4px;
  border-bottom: 1px solid var(--htt-border-1);
}
.htt-v3 .htt-deliv-summary-row:last-child { border-bottom: 0; }
.htt-v3 .htt-deliv-summary-key {
  font-family: var(--htt-font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--htt-text-3);
}
.htt-v3 .htt-deliv-summary-val {
  font-family: var(--htt-font-mono);
  font-size: 13.5px;
  color: var(--htt-text-1);
  font-variant-numeric: tabular-nums;
}
.htt-v3 .htt-deliv-summary-val strong {
  font-family: var(--htt-font-display);
  font-weight: 700;
  color: var(--htt-blue);
  margin-right: 2px;
}

.htt-v3 .htt-deliv-list { gap: 14px; }
.htt-v3 .htt-deliv-group-label {
  font-family: var(--htt-font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--htt-text-3);
  margin-top: 12px;
  padding-left: 4px;
  border-left: 2px solid var(--htt-blue);
}
.htt-v3 .htt-deliv-group-label:first-child { margin-top: 0; }
.htt-v3 .htt-deliv-item {
  background: var(--htt-surface-1);
  border: 1px solid var(--htt-border-1);
  border-radius: 14px;
  padding: 18px 20px;
  transition: all 0.3s var(--htt-ease);
}
.htt-v3 .htt-deliv-item:hover {
  border-color: rgba(37, 99, 235, 0.2);
  transform: translateX(3px);
  box-shadow: 0 8px 22px -8px rgba(37, 99, 235, 0.14);
}
.htt-v3 .htt-deliv-item h4 {
  font-family: var(--htt-font-display);
  font-size: 14.5px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 0 0 4px;
}
.htt-v3 .htt-deliv-item p {
  font-family: var(--htt-font-mono);
  font-size: 12.5px;
  line-height: 1.6;
  margin: 0;
}
.htt-v3 .htt-check {
  flex: 0 0 26px;
  width: 26px; height: 26px;
  background: linear-gradient(135deg, rgba(5, 150, 105, 0.14), rgba(5, 150, 105, 0.05));
  border-color: rgba(5, 150, 105, 0.3);
  box-shadow: 0 0 0 0 rgba(5, 150, 105, 0.4);
  transition: box-shadow 0.4s var(--htt-ease);
}
.htt-v3 .htt-deliv-item:hover .htt-check {
  box-shadow: 0 0 0 4px rgba(5, 150, 105, 0.08);
}

/* ============ COMPARE v3 ============ */
.htt-v3 .htt-compare {
  background: var(--htt-surface-1);
  text-align: left;
}
.htt-v3 .htt-compare-head-wrap {
  max-width: 1100px;
  margin: 0 auto 48px;
  text-align: left;
}
.htt-v3 .htt-compare-head-wrap .htt-section-title { margin-bottom: 14px; text-align: left; }
.htt-v3 .htt-compare-head-wrap .htt-section-desc { margin: 0; text-align: left; max-width: 680px; }

.htt-v3 .htt-compare-table {
  margin: 0 auto;
  background: var(--htt-surface-1);
  border: 1px solid var(--htt-border-1);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 32px -12px rgba(15, 23, 42, 0.08);
}
.htt-v3 .htt-compare-row {
  grid-template-columns: 1.4fr 1fr 1fr;
  padding: 18px 28px;
  border-bottom: 1px solid var(--htt-border-1);
  transition: background 0.2s;
  font-family: var(--htt-font-mono);
  font-size: 13.5px;
  color: var(--htt-text-2);
}
.htt-v3 .htt-compare-row:not(.htt-compare-head):hover { background: var(--htt-surface-2); }
.htt-v3 .htt-compare-row > div:first-child {
  font-weight: 600;
  color: var(--htt-text-1);
  font-family: var(--htt-font-display);
  letter-spacing: -0.005em;
}
.htt-v3 .htt-compare-row > div:nth-child(2) {
  position: relative;
}
.htt-v3 .htt-compare-row > div:nth-child(3) {
  position: relative;
  background: linear-gradient(180deg, rgba(37, 99, 235, 0.04), transparent);
  margin: -18px -28px -18px 0;
  padding: 18px 28px;
}
.htt-v3 .htt-compare-row.htt-compare-head > div:nth-child(3) {
  margin: -14px -28px -14px 0;
  padding: 14px 28px;
}
.htt-v3 .htt-compare-head {
  background: var(--htt-surface-2);
  font-family: var(--htt-font-mono);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--htt-text-3);
  padding: 14px 28px;
}
.htt-v3 .htt-compare-head > div:first-child { color: var(--htt-text-3); font-family: var(--htt-font-mono); }
.htt-v3 .htt-compare-head .htt-compare-ours {
  color: var(--htt-blue);
  font-weight: 700;
}
.htt-v3 .htt-cell-bad {
  display: inline-block;
  color: var(--htt-text-2);
  padding: 4px 10px;
  background: rgba(220, 38, 38, 0.06);
  border: 1px solid rgba(220, 38, 38, 0.18);
  border-radius: 6px;
  font-size: 12.5px;
}
.htt-v3 .htt-cell-good {
  display: inline-block;
  color: var(--htt-success);
  font-weight: 700;
  padding: 4px 10px;
  background: rgba(5, 150, 105, 0.08);
  border: 1px solid rgba(5, 150, 105, 0.24);
  border-radius: 6px;
  font-size: 12.5px;
}

/* ============ PROOF v3 ============ */
.htt-v3 .htt-proof {
  background: var(--htt-surface-2);
  text-align: left;
}
.htt-v3 .htt-proof-head {
  max-width: 1200px;
  margin: 0 auto 40px;
  text-align: left;
}
.htt-v3 .htt-proof-title {
  font-family: var(--htt-font-display);
  font-size: clamp(28px, 3.4vw, 44px);
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--htt-text-1);
  line-height: 1.18;
  margin: 0;
}
.htt-v3 .htt-proof-grid {
  margin: 0 auto;
  gap: 18px;
}
.htt-v3 .htt-quote {
  background: var(--htt-surface-1);
  border: 1px solid var(--htt-border-1);
  border-radius: 18px;
  padding: 28px 26px;
  position: relative;
  transition: all 0.3s var(--htt-ease);
}
.htt-v3 .htt-quote:hover {
  transform: translateY(-3px);
  border-color: rgba(37, 99, 235, 0.22);
  box-shadow: 0 18px 36px -12px rgba(15, 23, 42, 0.08);
}
.htt-v3 .htt-quote-mark {
  position: absolute;
  top: 12px;
  right: 22px;
  font-family: var(--htt-font-serif);
  font-style: italic;
  font-size: 56px;
  line-height: 1;
  color: rgba(37, 99, 235, 0.18);
  pointer-events: none;
}
.htt-v3 .htt-quote p {
  font-family: var(--htt-font-display);
  font-size: 15px;
  line-height: 1.65;
  color: var(--htt-text-1);
  margin: 0 0 22px;
  font-weight: 500;
  letter-spacing: -0.005em;
}
.htt-v3 .htt-quote footer {
  display: flex;
  align-items: center;
  gap: 12px;
}
.htt-v3 .htt-quote-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--htt-font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--htt-blue);
  background: linear-gradient(135deg, var(--htt-blue-pale-2), rgba(96, 165, 250, 0.04));
  border: 1px solid rgba(37, 99, 235, 0.22);
}
.htt-v3 .htt-quote-meta {
  display: flex;
  flex-direction: column;
  gap: 1px;
  font-family: var(--htt-font-mono);
  font-size: 11px;
  line-height: 1.4;
  text-transform: none;
  letter-spacing: 0.02em;
  color: var(--htt-text-3);
}
.htt-v3 .htt-quote-meta strong {
  font-size: 12px;
  font-weight: 700;
  color: var(--htt-text-1);
  letter-spacing: 0.02em;
}

/* ============ CTA v3 ============ */
.htt-v3 .htt-cta {
  background: var(--htt-surface-1);
  position: relative;
  overflow: hidden;
  padding: 120px 48px 130px;
}
.htt-v3 .htt-cta-ambient {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(60% 60% at 80% 30%, rgba(37, 99, 235, 0.07) 0%, transparent 65%),
    radial-gradient(50% 50% at 10% 80%, rgba(245, 200, 90, 0.05) 0%, transparent 70%);
}
.htt-v3 .htt-cta-inner {
  position: relative;
  z-index: 1;
  grid-template-columns: 1fr 1.05fr;
  gap: 56px;
}
.htt-v3 .htt-cta-copy .htt-section-title {
  font-size: clamp(32px, 4vw, 54px);
}
.htt-v3 .htt-cta-desc {
  font-family: var(--htt-font-mono);
  font-size: 14.5px;
  line-height: 1.7;
}
.htt-v3 .htt-cta-points li {
  font-family: var(--htt-font-mono);
  font-size: 13.5px;
}
.htt-v3 .htt-bullet {
  background: var(--htt-blue);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.10);
}

.htt-v3 .htt-form {
  background: var(--htt-surface-1);
  border: 1px solid var(--htt-border-1);
  border-radius: 22px;
  padding: 36px;
  position: relative;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.8) inset,
    0 30px 60px -20px rgba(15, 23, 42, 0.10),
    0 12px 24px -10px rgba(15, 23, 42, 0.04);
}
.htt-v3 .htt-form::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.25), rgba(96, 165, 250, 0.15) 40%, rgba(245, 200, 90, 0.20));
  filter: blur(26px);
  opacity: 0;
  transition: opacity 0.6s ease;
}
.htt-v3 .htt-form:hover::before { opacity: 0.5; }

.htt-v3 .htt-form h3 {
  font-family: var(--htt-font-display);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.htt-v3 .htt-form-intro {
  font-family: var(--htt-font-mono);
  font-size: 13px;
}
.htt-v3 .htt-field label {
  font-size: 10px;
  letter-spacing: 0.16em;
  color: var(--htt-text-3);
}
.htt-v3 .htt-field input,
.htt-v3 .htt-field textarea {
  background: var(--htt-surface-2);
  border: 1px solid var(--htt-border-1);
  border-radius: 10px;
  padding: 13px 14px;
  font-family: var(--htt-font-body);
  font-size: 14px;
  transition: all 0.2s var(--htt-ease);
}
.htt-v3 .htt-field input:focus,
.htt-v3 .htt-field textarea:focus {
  background: var(--htt-surface-1);
  border-color: var(--htt-blue);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.08);
}
.htt-v3 #httRegisterSubmit {
  margin-top: 8px;
  font-family: var(--htt-font-mono);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 14px 28px;
}

/* ============ RESPONSIVE v3 ============ */
@media (max-width: 1100px) {
  .htt-v3 .htt-problem-grid { grid-template-columns: repeat(2, 1fr); }
  .htt-v3 .htt-save-pills { grid-template-columns: 1fr; }
  .htt-v3 .htt-process-flow { gap: 12px; --htt-rail-cut: 42px; }
}

@media (max-width: 900px) {
  .htt-v3 .htt-hero { padding: 84px 22px 100px; }
  .htt-v3 .htt-hero-panel { padding: 18px 16px 14px; }
  .htt-v3 .htt-hero-panel-head { flex-direction: column; align-items: flex-start; gap: 6px; padding: 0; }
  .htt-v3 .htt-problem-grid { grid-template-columns: 1fr; }
  .htt-v3 .htt-process-rail { left: 44px; }
  .htt-v3 .htt-step { padding: 20px 22px; grid-template-columns: 48px 1fr; gap: 16px; }
  .htt-v3 .htt-step-marker { width: 44px; height: 44px; }
  .htt-v3 .htt-process-flow { --htt-rail-cut: 38px; }
  .htt-v3 .htt-deliv-summary-row { grid-template-columns: 1fr; gap: 4px; padding: 12px 4px; }
}

@media (max-width: 720px) {
  .htt-v3 .htt-save-num { font-size: 30px; }
  .htt-v3 .htt-save-symbol { font-size: 18px; }
  .htt-v3 .htt-form { padding: 26px 22px; }
}

/* Reveal-on-scroll polish (reduced-motion respected) */
.htt-v3 .htt-fade {
  transform: translateY(28px);
  transition: opacity 0.7s var(--htt-ease), transform 0.7s var(--htt-ease);
}
.htt-v3 .htt-fade.htt-visible { transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  .htt-v3 .htt-hero-orb,
  .htt-v3 .htt-hero-panel-tag-dot,
  .htt-v3 .htt-eyebrow::before,
  .htt-v3 .htt-process-eyebrow::before,
  .htt-v3 .htt-compare-eyebrow::before,
  .htt-v3 .htt-proof-eyebrow::before,
  .htt-v3 .htt-step:hover .htt-step-marker-ring,
  .htt-v3 .htt-btn-primary::before {
    animation: none !important;
  }
  .htt-v3 .htt-process-rail-fill { transition: none !important; height: 100% !important; }
  .htt-v3 .htt-fade { transform: none !important; }
}
