
.str-toolkit,
.str-toolkit * { box-sizing: border-box; }

.str-toolkit {
  --str-green: #709F29;
  --str-green-dark: #2F4F2F;
  --str-green-soft: #EEF7E6;
  --str-green-pale: #F6FAF3;
  --str-white: #FFFFFF;
  --str-orange: #F59E0B;
  --str-bg: #F6FAF3;
  --str-surface: #ffffff;
  --str-surface-soft: #f9fcfa;
  --str-border: #DDE9D3;
  --str-border-strong: #C4D8B5;
  --str-text: var(--str-toolkit-text, #2F4F2F);
  --str-text-soft: #647667;
  --str-heading: #203A28;
  --str-primary: var(--str-toolkit-primary, #709F29);
  --str-primary-dark: #2F4F2F;
  --str-primary-soft: #EEF7E6;
  --str-accent: #9DCB55;
  --str-danger: #EF6B6B;
  --str-shadow: 0 22px 70px rgba(47, 79, 47, .10);
  --str-shadow-soft: 0 10px 28px rgba(47, 79, 47, .07);
  --str-radius: var(--str-toolkit-radius, 26px);
  --str-radius-md: 18px;
  --str-radius-sm: 14px;
  width: min(1320px, calc(100vw - 56px));
  max-width: none;
  margin: 0 auto 38px;
  margin-left: 50%;
  transform: translateX(-50%);
  color: var(--str-text);
  font-family: Manrope, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  letter-spacing: 0;
}

.str-toolkit p,
.str-toolkit h2,
.str-toolkit h3 { margin-top: 0; }

.str-toolkit .str-toolkit {
  width: 100%;
  max-width: 100%;
  margin: 0 0 28px;
  transform: none;
}

.str-toolkit-hero { margin-bottom: 24px; }
.str-toolkit-hero-centered {
  text-align: center;
  padding: 12px 16px 4px;
}
.str-toolkit-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 16px;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--str-primary-soft);
  color: var(--str-primary);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}
.str-toolkit-eyebrow::before {
  content: '★';
  font-size: 12px;
}
.str-toolkit h2 {
  margin-bottom: 12px;
  color: var(--str-heading);
  font-family: Manrope, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: clamp(30px, 3vw, 44px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: 0;
}
.str-toolkit-profit-layout .str-toolkit-hero-centered h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(46px, 5vw, 72px);
  font-weight: 700;
  line-height: .95;
  letter-spacing: 0;
}
.str-toolkit h3 {
  margin-bottom: 8px;
  color: var(--str-heading);
  font-size: 26px;
  font-weight: 800;
  line-height: 1.2;
}
.str-toolkit-hero p:last-child,
.str-toolkit p {
  color: var(--str-text-soft);
  font-size: 17px;
  line-height: 1.75;
}


.str-toolkit-simple-mode .str-toolkit-advanced-only { display: none !important; }
.str-toolkit-advanced-mode .str-toolkit-simple-only { display: none !important; }

.str-toolkit-card,
.str-toolkit-cta,
.str-toolkit-stat,
.str-toolkit-tool-card,
.str-toolkit-tool-panel,
.str-toolkit-insight,
.str-toolkit-generated,
.str-toolkit-free-summary,
.str-toolkit-premium-lock,
.str-toolkit-table-wrap,
.str-toolkit-result-board,
.str-toolkit-message,
.str-toolkit-tip-card,
.str-toolkit-note-box,
.str-toolkit-health-card,
.str-toolkit-highlight-card {
  background: var(--str-surface);
  border: 1px solid var(--str-border);
  border-radius: var(--str-radius-md);
  box-shadow: var(--str-shadow-soft);
}

.str-toolkit-profit-layout { padding-top: 8px; }
.str-toolkit-calc-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(390px, .82fr);
  gap: 26px;
  align-items: start;
  min-width: 0;
}
.str-toolkit-calc-main,
.str-toolkit-calc-side,
.str-toolkit-calc-frame,
.str-toolkit-result-board { min-width: 0; }
.str-toolkit-calc-frame {
  padding: 24px;
  border-radius: 30px;
}
.str-toolkit-calc-side { position: sticky; top: 18px; }
.str-toolkit-result-board { padding: 24px; border-radius: 30px; background: linear-gradient(180deg, #ffffff 0%, #fbfdf7 100%); }
.str-toolkit-result-board-head { margin-bottom: 16px; }
.str-toolkit-result-board-kicker {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--str-primary);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}
.str-toolkit-result-board-head h3 {
  margin-bottom: 0;
  font-size: 28px;
}

.str-toolkit-mode-switch {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 8px;
  margin-bottom: 18px;
  border: 1px solid var(--str-border);
  border-radius: 22px;
  background: #fbfdfc;
}
.str-toolkit-mode-button {
  min-height: 56px;
  padding: 14px 18px;
  border: 1px solid transparent;
  border-radius: 18px;
  background: transparent;
  color: var(--str-text-soft);
  font: inherit;
  font-size: 18px;
  font-weight: 800;
  cursor: pointer;
  transition: all .18s ease;
}
.str-toolkit-mode-button.is-active {
  background: var(--str-primary-soft);
  border-color: rgba(112, 159, 41, .30);
  color: var(--str-primary-dark);
  box-shadow: inset 0 0 0 1px rgba(112,159,41,.16);
}
.str-toolkit-mode-button:hover {
  background: #f5fbf7;
  color: var(--str-primary-dark);
}

.str-toolkit-form-section {
  margin-bottom: 16px;
  padding: 18px;
  border: 1px solid var(--str-border);
  border-radius: 22px;
  background: linear-gradient(180deg, #ffffff 0%, #fcfefd 100%);
}
.str-toolkit-section-heading { margin-bottom: 14px; }
.str-toolkit-section-heading h3 {
  margin-bottom: 6px;
  font-size: 19px;
}
.str-toolkit-section-heading p {
  margin-bottom: 0;
  font-size: 14px;
}

.str-toolkit-fields-grid {
  display: grid;
  gap: 14px;
  min-width: 0;
}
.str-toolkit-fields-grid + .str-toolkit-fields-grid { margin-top: 14px; }
.str-toolkit-fields-grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.str-toolkit-fields-grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.str-toolkit-field { display: block; }
.str-toolkit-field,
.str-toolkit-input-wrap,
.str-toolkit-input,
.str-toolkit-textarea,
.str-toolkit-output { min-width: 0; }
.str-toolkit-field > span:first-child {
  display: block;
  margin-bottom: 8px;
  color: var(--str-heading);
  font-size: 14px;
  font-weight: 700;
}
.str-toolkit-field small {
  display: block;
  margin-top: 8px;
  color: var(--str-text-soft);
  font-size: 12px;
  line-height: 1.45;
}
.str-toolkit-input-wrap {
  position: relative;
  display: block;
}
.str-toolkit-input-wrap em {
  position: absolute;
  top: 50%;
  right: 14px;
  transform: translateY(-50%);
  color: var(--str-text-soft);
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  pointer-events: none;
}
.str-toolkit-input-wrap .str-toolkit-input {
  padding-right: 58px;
}
.str-toolkit-input,
.str-toolkit-textarea,
.str-toolkit-output,
.str-toolkit select.str-toolkit-input {
  width: 100%;
  min-height: 54px;
  padding: 15px 16px;
  border: 1px solid var(--str-border) !important;
  border-radius: 15px !important;
  background: #fff !important;
  color: var(--str-text) !important;
  font: inherit !important;
  font-size: 16px;
  line-height: 1.2 !important;
  box-shadow: none !important;
  appearance: none;
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}
.str-toolkit-input:focus,
.str-toolkit-textarea:focus,
.str-toolkit-output:focus,
.str-toolkit select.str-toolkit-input:focus {
  outline: none;
  border-color: rgba(112, 159, 41, .55) !important;
  box-shadow: 0 0 0 4px rgba(112,159,41,.12) !important;
  transform: translateY(-1px);
}
.str-toolkit-textarea,
.str-toolkit-output { min-height: 180px; resize: vertical; }

.str-toolkit-tip-card,
.str-toolkit-note-box,
.str-toolkit-health-card {
  padding: 18px;
  background: #f5fbf7;
}
.str-toolkit-tip-card strong,
.str-toolkit-note-box strong,
.str-toolkit-health-card strong {
  display: block;
  margin-bottom: 6px;
  color: var(--str-primary-dark);
  font-size: 15px;
}
.str-toolkit-tip-card p,
.str-toolkit-note-box p,
.str-toolkit-health-card p { margin-bottom: 0; font-size: 14px; }
.str-toolkit-tip-card-soft { background: #f8fcfa; }
.str-toolkit-note-box-inline { max-width: 420px; }
.str-toolkit-form-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 4px;
}

.str-toolkit .str-toolkit-button,
.str-toolkit input[type="submit"].str-toolkit-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 58px;
  padding: 15px 24px;
  border: 0;
  border-radius: 16px;
  background: linear-gradient(180deg, var(--str-primary) 0%, var(--str-primary-dark) 100%);
  color: #ffffff !important;
  font: inherit;
  font-size: 16px;
  font-weight: 800;
  text-decoration: none !important;
  box-shadow: 0 14px 30px rgba(47, 79, 47, .20);
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, opacity .18s ease;
}
.str-toolkit-button::after {
  content: '›';
  font-size: 22px;
  line-height: 1;
}
.str-toolkit .str-toolkit-button:hover,
.str-toolkit input[type="submit"].str-toolkit-button:hover { transform: translateY(-1px); box-shadow: 0 18px 36px rgba(47, 79, 47, .24); color: #ffffff !important; }
.str-toolkit-button-secondary,
.str-toolkit-print,
.str-toolkit-reset,
.str-toolkit-copy,
.str-toolkit-copy-result {
  background: #ffffff !important;
  color: var(--str-heading) !important;
  border: 1px solid var(--str-border) !important;
  box-shadow: none !important;
}
.str-toolkit-button-secondary::after,
.str-toolkit-print::after,
.str-toolkit-reset::after,
.str-toolkit-copy::after,
.str-toolkit-copy-result::after { content: ''; display:none; }
.str-toolkit .str-toolkit-button-rounded { border-radius: 999px; }
.str-toolkit .str-toolkit-button-sharp { border-radius: 8px; }
.str-toolkit .str-toolkit-button-secondary:hover,
.str-toolkit .str-toolkit-print:hover,
.str-toolkit .str-toolkit-reset:hover,
.str-toolkit .str-toolkit-copy:hover,
.str-toolkit .str-toolkit-copy-result:hover {
  background: #f5fbf7 !important;
  color: var(--str-heading) !important;
  border-color: var(--str-border-strong) !important;
  box-shadow: none !important;
}
.str-toolkit-calculate { min-width: 220px; }

.str-toolkit-result-placeholder { display: block; }
.str-toolkit-result-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 16px;
}
.str-toolkit-result-cards-compact .str-toolkit-stat { min-height: 110px; }
.str-toolkit-result-cards-four { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.str-toolkit-stat {
  min-height: 118px;
  padding: 18px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfdfa 100%);
}
.str-toolkit-stat span {
  display: block;
  margin-bottom: 10px;
  color: var(--str-text-soft);
  font-size: 13px;
  font-weight: 700;
}
.str-toolkit-stat strong {
  display: block;
  color: var(--str-primary-dark);
  font-size: 24px;
  font-weight: 800;
  line-height: 1.15;
}
.str-toolkit-stat-revenue strong { color: var(--str-primary-dark); }
.str-toolkit-stat-cost strong { color: var(--str-danger); }
.str-toolkit-highlight-card {
  padding: 20px;
  margin-bottom: 16px;
  border-radius: 18px;
  background: linear-gradient(180deg, #709F29 0%, #2F4F2F 100%);
  color: #fff;
}
.str-toolkit-highlight-card-live {
  min-height: 112px;
  background: linear-gradient(180deg, #709F29 0%, #2F4F2F 100%);
  box-shadow: 0 18px 38px rgba(47, 79, 47, .24);
}
.str-toolkit-highlight-card span,
.str-toolkit-highlight-card small { display:block; color: rgba(255,255,255,.82); }
.str-toolkit-highlight-card span { margin-bottom: 6px; font-size: 13px; font-weight: 700; }
.str-toolkit-highlight-card strong { display:block; font-size: 34px; line-height: 1.08; margin-bottom: 6px; }
.str-toolkit-highlight-card small { font-size: 14px; line-height: 1.55; }
.str-toolkit-highlight-card-live small {
  display: inline-flex;
  width: fit-content;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.14);
  color: #ffffff;
  font-weight: 800;
}
.str-toolkit-health-card { margin-bottom: 14px; border-color: rgba(112,159,41,.24); }
.str-toolkit-health-card-live {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 16px;
  background: linear-gradient(180deg, #f6fbf8 0%, #eef9f3 100%);
}
.str-toolkit-health-icon {
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(180deg, var(--str-primary) 0%, var(--str-primary-dark) 100%);
  color: #ffffff;
  font-size: 22px;
  font-weight: 900;
}

.str-toolkit-result { margin-top: 0; }
.str-toolkit-result[hidden],
.str-toolkit-generated[hidden],
.str-toolkit-result-placeholder[hidden] { display:none !important; }
.str-toolkit-score {
  display: grid;
  gap: 6px;
  padding: 18px;
  margin-bottom: 16px;
  border-radius: 18px;
  background: #eef9f3;
  border: 1px solid rgba(112,159,41,.24);
}
.str-toolkit-score strong { color: var(--str-primary-dark); font-size: 18px; }
.str-toolkit-score span { color: var(--str-text-soft); }
.str-toolkit-insight,
.str-toolkit-generated,
.str-toolkit-result-email,
.str-toolkit-free-summary,
.str-toolkit-premium-lock,
.str-toolkit-table-wrap { padding: 18px; margin-top: 16px; overflow-x: auto; }
.str-toolkit-free-summary strong { display:block; margin: 6px 0; color: var(--str-heading); }
.str-toolkit-premium-lock {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 16px;
  align-items: center;
  background: #fbfffc;
}
.str-toolkit-lock-icon {
  width: 48px; height: 48px; border-radius: 14px; display:grid; place-items:center;
  background: var(--str-primary-soft); color: var(--str-primary-dark); font-size: 22px; font-weight: 800;
}
.str-toolkit-premium-lock h3 { font-size: 22px; margin: 0 0 4px; }
.str-toolkit-access-badge {
  display:inline-flex; align-items:center; justify-content:center; padding: 6px 10px; border-radius:999px; font-size:11px; font-weight:800; letter-spacing:0; text-transform:uppercase;
}
.str-toolkit-access-badge-free { background:#eaf8f1; color:var(--str-primary-dark); }
.str-toolkit-access-badge-premium { background:#e8f6ee; color:var(--str-primary-dark); }

.str-toolkit-scenario-table { width:100%; border-collapse:collapse; min-width: 760px; }
.str-toolkit-scenario-block h3 {
  margin-bottom: 14px;
  font-size: 18px;
}
.str-toolkit-scenario-block .str-toolkit-scenario-table { min-width: 560px; }
.str-toolkit-scenario-table th,
.str-toolkit-scenario-table td { padding: 13px 14px; border-bottom:1px solid var(--str-border); text-align:left; font-size:14px; }
.str-toolkit-scenario-table th { background:#f5faf7; color:var(--str-heading); font-weight:800; }
.str-toolkit-scenario-table tr:last-child td { border-bottom:0; }
.str-toolkit-scenario-table .is-base-scenario td {
  background: #f4fbf7;
  border-top: 1px solid rgba(112,159,41,.44);
  border-bottom: 1px solid rgba(112,159,41,.44);
  color: var(--str-primary-dark);
  font-weight: 800;
}
.str-toolkit-scenario-table .is-base-scenario td:first-child {
  border-left: 1px solid rgba(112,159,41,.44);
  border-radius: 12px 0 0 12px;
}
.str-toolkit-scenario-table .is-base-scenario td:last-child {
  border-right: 1px solid rgba(112,159,41,.44);
  border-radius: 0 12px 12px 0;
}

.str-toolkit-cta {
  display:grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, auto);
  align-items:center;
  gap:18px;
  padding: 18px;
  margin-top: 18px;
  background: #f7fcf9;
}
.str-toolkit-cta h3 { font-size: 21px; margin-bottom: 5px; }
.str-toolkit-cta p { margin-bottom:0; font-size:14px; }
.str-toolkit-cta-action { display:grid; gap:10px; justify-items:stretch; }
.str-toolkit-cta-benefits { text-align:center; color: var(--str-primary-dark) !important; font-size: 12px !important; font-weight: 700; }
.str-toolkit-result-board .str-toolkit-cta {
  grid-template-columns: 1fr;
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
}
.str-toolkit-result-board .str-toolkit-cta-copy { display: none; }
.str-toolkit-result-board .str-toolkit-cta .str-toolkit-button { width: 100%; }
.str-toolkit-disclaimer { margin-top: 14px; font-size: 12px; color: var(--str-text-soft); }

.str-toolkit-grid,
.str-toolkit-grid-two,
.str-toolkit-grid-three {
  display:grid;
  gap:18px;
}
.str-toolkit-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.str-toolkit-grid-two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.str-toolkit-grid-three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.str-toolkit-card { padding: 20px; }

.str-toolkit-hub-hero {
  display:grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 20px;
  padding: 24px;
  margin-bottom: 22px;
  border: 1px solid var(--str-border);
  border-radius: 28px;
  background: linear-gradient(180deg, #ffffff 0%, #f9fdfb 100%);
}
.str-toolkit-hub-side {
  display:flex;
  flex-direction:column;
  justify-content:center;
  gap:8px;
  padding: 20px;
  border-radius: 22px;
  background: #f1fbf5;
  color: var(--str-primary-dark);
  font-size: 15px;
}
.str-toolkit-hub-side strong { font-size: 18px; }
.str-toolkit-tool-grid {
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 22px;
}
.str-toolkit-tool-card {
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap:8px;
  padding: 22px;
  border: 1px solid var(--str-border);
  background: var(--str-surface);
  color: var(--str-text);
  font: inherit;
  text-align:left;
  cursor:pointer;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.str-toolkit-tool-card:hover,
.str-toolkit-tool-card.is-active {
  transform: translateY(-2px);
  border-color: rgba(112,159,41,.38);
  box-shadow: var(--str-shadow);
}
.str-toolkit-tool-icon {
  width: 44px; height: 44px; border-radius: 14px; display:grid; place-items:center; background: var(--str-primary-soft); color: var(--str-primary-dark); font-weight:800;
}
.str-toolkit-tool-card.is-active {
  background: linear-gradient(180deg, #ffffff 0%, #f6fbf8 100%);
  border-color: rgba(112,159,41,.56);
  box-shadow: 0 16px 42px rgba(47, 79, 47, .13);
}
.str-toolkit-tool-meta { color: var(--str-primary); font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: 0; }
.str-toolkit-tool-card strong { color: var(--str-heading); font-size: 19px; }
.str-toolkit-tool-desc { color: var(--str-text-soft); line-height: 1.6; }
.str-toolkit-tool-open { margin-top: auto; color: var(--str-primary-dark); font-weight: 800; }
.str-toolkit-tool-panel { padding: 22px; border-radius: 28px; }

.str-toolkit-list { list-style:none; margin:0; padding:0; }
.str-toolkit-list li { border-bottom:1px solid var(--str-border); padding: 12px 0; }
.str-toolkit-list li:last-child { border-bottom:0; }
.str-toolkit-list label,
.str-toolkit-checkbox { display:flex; gap:10px; align-items:flex-start; color: var(--str-text); }
.str-toolkit-list input,
.str-toolkit-checkbox input { margin-top: 3px; accent-color: var(--str-primary); }
.str-toolkit-list input:checked + span { text-decoration: line-through; color: var(--str-text-soft); }
.str-toolkit-actions { display:flex; flex-wrap:wrap; gap: 12px; margin-top: 18px; }

.str-toolkit-message { padding: 14px 16px; font-size: 14px; line-height: 1.6; }
.str-toolkit-message-success { border-color: rgba(112,159,41,.24); background:#eef7e6; color:var(--str-primary-dark); }
.str-toolkit-message-error { border-color: rgba(239,107,107,.22); background:#fff2f2; color:#b04545; }

.str-toolkit-illustration {
  display: block;
  width: 100%;
  max-width: 560px;
  height: auto;
  border-radius: 24px;
}

.str-toolkit-hero__image {
  display: flex;
  align-items: center;
  justify-content: center;
}

.str-toolkit-hero__image img {
  width: 100%;
  max-width: 620px;
  height: auto;
}

.str-toolkit-landing,
.str-toolkit-pricing,
.str-toolkit-tools-overview {
  padding: 10px 0 28px;
}

.str-toolkit-landing-hero,
.str-toolkit-split-section,
.str-toolkit-premium-section,
.str-toolkit-lead-inline {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .9fr);
  gap: 36px;
  align-items: center;
  margin-bottom: 34px;
  padding: 34px;
  border: 1px solid var(--str-border);
  border-radius: 32px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfdf7 100%);
  box-shadow: var(--str-shadow-soft);
}

.str-toolkit-landing-hero {
  min-height: 520px;
  background:
    radial-gradient(circle at 100% 0%, rgba(112,159,41,.13), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, #f8fbf2 100%);
}

.str-toolkit-landing-copy h2 {
  max-width: 760px;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(50px, 5vw, 78px);
  font-weight: 700;
  line-height: .96;
}

.str-toolkit-landing-copy p {
  max-width: 700px;
  font-size: 19px;
}

.str-toolkit-landing-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.str-toolkit-section {
  margin-bottom: 34px;
}

.str-toolkit-section-intro {
  max-width: 760px;
  margin-bottom: 22px;
}

.str-toolkit-section-intro h2 {
  font-size: clamp(34px, 3vw, 52px);
}

.str-toolkit-feature-grid,
.str-toolkit-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.str-toolkit-pricing-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.str-toolkit-feature-card,
.str-toolkit-price-card,
.str-toolkit-upgrade-box,
.str-toolkit-account-card {
  background: #fff;
  border: 1px solid var(--str-border);
  border-radius: 24px;
  box-shadow: var(--str-shadow-soft);
}

.str-toolkit-feature-card,
.str-toolkit-price-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 0;
  padding: 20px;
  overflow: hidden;
}

.str-toolkit-feature-image {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: contain;
  display: block;
  border-radius: 20px;
  background: #f8fbf2;
}

.str-toolkit-feature-card h3,
.str-toolkit-price-card h3 {
  margin: 0;
  font-size: 24px;
}

.str-toolkit-feature-card p,
.str-toolkit-price-card p {
  margin: 0;
  font-size: 15px;
}

.str-toolkit-split-section-reverse > div {
  order: 2;
}

.str-toolkit-split-section-reverse > img {
  order: 1;
}

.str-toolkit-premium-section {
  background:
    radial-gradient(circle at 12% 0%, rgba(245,158,11,.14), transparent 26%),
    linear-gradient(180deg, #ffffff 0%, #fbfbf3 100%);
}

.str-toolkit-upgrade-note {
  display: inline-flex;
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  background: #eef7e6;
  color: var(--str-primary-dark) !important;
  font-size: 13px !important;
  font-weight: 800;
}

.str-toolkit-lead-inline {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 480px);
}

.str-toolkit-lead-inline .str-toolkit-form,
.str-toolkit-lead-card .str-toolkit-form {
  display: grid;
  gap: 14px;
}

.str-toolkit-hp {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.str-toolkit-plan-list {
  display: grid;
  gap: 10px;
  margin: 4px 0 12px;
  padding: 0;
  list-style: none;
}

.str-toolkit-plan-list li {
  position: relative;
  padding-left: 24px;
  color: var(--str-text);
  font-size: 14px;
  line-height: 1.5;
}

.str-toolkit-plan-list li::before {
  content: '';
  position: absolute;
  top: .55em;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--str-primary);
}

.str-toolkit-price-card.is-featured {
  border-color: rgba(112,159,41,.55);
  background: linear-gradient(180deg, #ffffff 0%, #f6faf3 100%);
  box-shadow: 0 22px 54px rgba(47,79,47,.13);
}

.str-toolkit-button-disabled {
  pointer-events: none;
  opacity: .72;
}

.str-toolkit-upgrade-shell {
  margin-top: 18px;
}

.str-toolkit-upgrade-box {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 360px);
  gap: 24px;
  align-items: center;
  padding: 26px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfbf3 100%);
}

.str-toolkit-upgrade-copy h2 {
  margin-top: 12px;
  font-size: clamp(30px, 3vw, 46px);
}

.str-toolkit-upgrade-media img {
  max-width: 360px;
}

.str-toolkit-advanced-teaser .str-toolkit-button {
  margin-top: 4px;
}

.str-toolkit-mode-button[disabled] {
  cursor: not-allowed;
  opacity: .62;
}

.str-toolkit-account-card {
  padding: 24px;
}

@media (max-width: 1180px) {
  .str-toolkit-calc-shell,
  .str-toolkit-hub-hero,
  .str-toolkit-landing-hero,
  .str-toolkit-split-section,
  .str-toolkit-premium-section,
  .str-toolkit-lead-inline,
  .str-toolkit-upgrade-box { grid-template-columns: 1fr; }
  .str-toolkit-calc-side { position: static; }
  .str-toolkit-result-cards-four { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .str-toolkit-split-section-reverse > div,
  .str-toolkit-split-section-reverse > img { order: initial; }
  .str-toolkit-pricing-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 940px) {
  .str-toolkit-grid,
  .str-toolkit-grid-two,
  .str-toolkit-grid-three,
  .str-toolkit-feature-grid,
  .str-toolkit-pricing-grid,
  .str-toolkit-tool-grid,
  .str-toolkit-fields-grid-3,
  .str-toolkit-fields-grid-2,
  .str-toolkit-result-cards,
  .str-toolkit-premium-lock,
  .str-toolkit-cta { grid-template-columns: 1fr; }
  .str-toolkit-premium-lock,
  .str-toolkit-cta,
  .str-toolkit-form-actions { display:flex; flex-direction:column; align-items:stretch; }
  .str-toolkit-note-box-inline { max-width:none; }
}

@media (max-width: 720px) {
  .str-toolkit {
    width: 100%;
    max-width: calc(100vw - 24px);
    margin-bottom: 28px;
    overflow-x: clip;
  }
  .str-toolkit-landing-hero,
  .str-toolkit-split-section,
  .str-toolkit-premium-section,
  .str-toolkit-lead-inline { padding: 18px; border-radius: 24px; }
  .str-toolkit-landing-hero { min-height: auto; }
  .str-toolkit-landing-copy h2 { font-size: 44px; }
  .str-toolkit-calc-shell,
  .str-toolkit-calc-main,
  .str-toolkit-calc-side,
  .str-toolkit-calc-frame,
  .str-toolkit-result-board,
  .str-toolkit-form-section,
  .str-toolkit-mode-switch,
  .str-toolkit-fields-grid,
  .str-toolkit-field,
  .str-toolkit-input-wrap {
    width: 100%;
    max-width: 100%;
  }
  .str-toolkit h2 { font-size: 38px; }
  .str-toolkit-profit-layout .str-toolkit-hero-centered h2 { font-size: 42px; }
  .str-toolkit-card,
  .str-toolkit-calc-frame,
  .str-toolkit-result-board,
  .str-toolkit-tool-panel,
  .str-toolkit-hub-hero { padding: 16px; border-radius: 22px; }
  .str-toolkit-mode-switch { grid-template-columns: 1fr; }
  .str-toolkit .str-toolkit-button,
  .str-toolkit input[type="submit"].str-toolkit-button { width: 100%; }
  .str-toolkit-result-cards-four { grid-template-columns: 1fr; }
  .str-toolkit-health-card-live { align-items: flex-start; }
}

.hpt-platform,
.hpt-platform * {
  box-sizing: border-box;
}

.hpt-platform {
  --hpt-green: #709F29;
  --hpt-green-dark: #2F4F2F;
  --hpt-green-soft: #F6FAF3;
  --hpt-green-soft-2: #EEF7E8;
  --hpt-gold: #D6A93A;
  --hpt-text: #162016;
  --hpt-muted: #667266;
  --hpt-border: rgba(112, 159, 41, 0.22);
  --hpt-white: #ffffff;
  width: min(1320px, calc(100vw - 48px));
  max-width: 1320px;
  margin: 0 auto 40px;
  color: var(--hpt-text);
  font-family: Manrope, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  letter-spacing: 0;
  overflow: visible;
}

.hpt-platform img {
  max-width: 100%;
  height: auto;
  display: block;
}

.hpt-platform .str-toolkit {
  width: 100%;
  max-width: 100%;
  margin: 0 0 24px;
  transform: none;
}

.hpt-platform .str-toolkit h2 {
  font-size: clamp(28px, 3vw, 42px);
}

.hpt-platform .str-toolkit-profit-layout .str-toolkit-hero-centered h2 {
  font-size: clamp(34px, 4vw, 56px);
}

.hpt-topbar {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 22px;
  padding: 22px 24px;
  border: 1px solid var(--hpt-border);
  border-radius: 28px;
  background: linear-gradient(135deg, #ffffff 0%, #f8fbf2 100%);
  box-shadow: 0 18px 50px rgba(47, 79, 47, 0.08);
}

.hpt-topbar h2,
.hpt-panel h2,
.hpt-card h2 {
  margin: 6px 0 0;
  color: var(--hpt-text);
  font-family: Manrope, system-ui, sans-serif;
  font-size: clamp(30px, 3vw, 46px);
  line-height: 1.05;
  font-weight: 800;
}

.hpt-kicker {
  display: inline-flex;
  color: var(--hpt-green-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hpt-topbar__meta,
.hpt-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.hpt-shell {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr) 280px;
  gap: 24px;
  align-items: start;
}

.hpt-main,
.hpt-panel,
.hpt-card,
.hpt-sidebar,
.hpt-aside {
  min-width: 0;
}

.hpt-sidebar {
  display: grid;
  gap: 10px;
  position: sticky;
  top: 24px;
  padding: 12px;
  border: 1px solid var(--hpt-border);
  border-radius: 26px;
  background: #ffffff;
  box-shadow: 0 18px 50px rgba(47, 79, 47, 0.08);
}

.hpt-nav-item {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  width: 100%;
  min-height: 48px;
  padding: 8px 10px;
  border: 1px solid transparent;
  border-radius: 16px;
  background: transparent;
  color: var(--hpt-text) !important;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.hpt-nav-item:hover,
.hpt-nav-item.is-active {
  background: var(--hpt-green-soft);
  border-color: var(--hpt-border);
}

.hpt-nav-item__icon {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background: var(--hpt-green-soft-2);
  color: var(--hpt-green-dark);
  font-weight: 900;
}

.hpt-nav-item__text {
  overflow: hidden;
  color: var(--hpt-text);
  font-size: 14px;
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hpt-panel[hidden] {
  display: none !important;
}

.hpt-panel {
  display: grid;
  gap: 20px;
}

.hpt-card {
  min-width: 0;
  padding: 24px;
  border: 1px solid var(--hpt-border);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 18px 50px rgba(47, 79, 47, 0.08);
}

.hpt-card p,
.hpt-panel p {
  color: var(--hpt-muted);
  font-size: 15px;
  line-height: 1.7;
}

.hpt-hero-card,
.hpt-panel-head,
.hpt-premium-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 380px);
  gap: 24px;
  align-items: center;
  background:
    radial-gradient(circle at 100% 0%, rgba(112, 159, 41, .13), transparent 30%),
    linear-gradient(135deg, #ffffff 0%, #f8fbf2 100%);
}

.hpt-hero-card h2 {
  font-size: clamp(36px, 5vw, 64px);
}

.hpt-hero-image {
  max-width: 420px;
  justify-self: center;
}

.hpt-panel-image {
  max-width: 320px;
  justify-self: center;
}

.hpt-grid-4,
.hpt-grid-3,
.hpt-grid-2 {
  display: grid;
  gap: 16px;
}

.hpt-grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.hpt-grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.hpt-grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.hpt-stat {
  display: grid;
  gap: 8px;
  padding: 18px;
}

.hpt-stat span {
  color: var(--hpt-muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.hpt-stat strong {
  color: var(--hpt-green-dark);
  font-size: 26px;
  font-weight: 900;
  line-height: 1.1;
}

.hpt-section-head {
  margin-top: 4px;
}

.hpt-section-head h3,
.hpt-tool-card h3,
.hpt-card h3 {
  margin: 0 0 8px;
  color: var(--hpt-text);
  font-size: 22px;
  font-weight: 850;
  line-height: 1.15;
}

.hpt-tool-card {
  display: grid;
  gap: 14px;
  min-width: 0;
  padding: 16px;
  border: 1px solid var(--hpt-border);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(47, 79, 47, 0.06);
}

.hpt-tool-card__image {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: contain;
  border-radius: 18px;
  background: var(--hpt-green-soft);
}

.hpt-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 24px;
  width: fit-content;
  padding: 0 9px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
}

.hpt-badge--free {
  background: #eaf6df;
  color: #4f7f1f;
}

.hpt-badge--premium {
  background: #fff3d1;
  color: #9a6a00;
}

.hpt-badge--soon {
  background: #eef1ee;
  color: #667266;
}

.hpt-btn-primary,
.hpt-platform button.hpt-btn-primary,
.hpt-platform a.hpt-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border: none !important;
  border-radius: 999px;
  background: linear-gradient(135deg, #709F29, #4F7F1F) !important;
  color: #fff !important;
  font: inherit;
  font-weight: 800;
  text-decoration: none !important;
  cursor: pointer;
  box-shadow: 0 14px 34px rgba(112, 159, 41, 0.28);
}

.hpt-btn-secondary,
.hpt-platform button.hpt-btn-secondary,
.hpt-platform a.hpt-btn-secondary,
.hpt-platform span.hpt-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border: 1px solid var(--hpt-border) !important;
  border-radius: 999px;
  background: #fff !important;
  color: var(--hpt-text) !important;
  font: inherit;
  font-weight: 800;
  text-decoration: none !important;
  cursor: pointer;
  box-shadow: none;
}

.hpt-btn-primary:hover,
.hpt-btn-secondary:hover {
  transform: translateY(-1px);
}

.hpt-soft-notice {
  padding: 14px 16px;
  border: 1px solid rgba(214, 169, 58, .35);
  border-radius: 18px;
  background: #fff8df;
  color: #7a5600;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.55;
}

.hpt-upgrade-card {
  display: grid;
  gap: 16px;
  padding: 18px;
  border: 1px solid rgba(214, 169, 58, .32);
  border-radius: 24px;
  background: linear-gradient(135deg, #fffef8 0%, #fff7dd 100%);
  box-shadow: 0 18px 50px rgba(47, 79, 47, 0.08);
}

.hpt-upgrade-image {
  max-width: 210px;
  justify-self: center;
}

.hpt-aside {
  display: grid;
  gap: 16px;
  position: sticky;
  top: 24px;
}

.hpt-plan-box h3 {
  margin: 8px 0;
  color: var(--hpt-green-dark);
  font-size: 28px;
}

.hpt-embedded-tool,
.hpt-secondary-tools,
.hpt-pricing {
  min-width: 0;
}

.hpt-price-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.hpt-price-card.is-featured {
  border-color: rgba(112,159,41,.45);
  background: linear-gradient(180deg, #ffffff 0%, #f6faf3 100%);
}

.hpt-price-card h3 {
  color: var(--hpt-green-dark);
  font-size: 30px;
}

.hpt-price-card ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hpt-price-card li {
  position: relative;
  padding-left: 22px;
  color: var(--hpt-muted);
  font-size: 14px;
  line-height: 1.5;
}

.hpt-price-card li::before {
  content: '';
  position: absolute;
  top: .6em;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--hpt-green);
}

.hpt-platform input,
.hpt-platform select,
.hpt-platform textarea,
.hpt-platform button {
  max-width: 100%;
}

@media (max-width: 1180px) {
  .hpt-shell {
    grid-template-columns: 220px minmax(0, 1fr);
  }

  .hpt-aside {
    display: none;
  }

  .hpt-grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hpt-grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .hpt-platform {
    width: 100%;
    padding-left: 14px;
    padding-right: 14px;
  }

  .hpt-topbar,
  .hpt-hero-card,
  .hpt-panel-head,
  .hpt-premium-hero {
    grid-template-columns: 1fr;
  }

  .hpt-topbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .hpt-shell {
    grid-template-columns: 1fr;
  }

  .hpt-sidebar {
    display: flex;
    gap: 10px;
    position: static;
    overflow-x: auto;
    padding-bottom: 10px;
    scrollbar-width: thin;
  }

  .hpt-sidebar button {
    flex: 0 0 auto;
    width: auto;
    white-space: nowrap;
  }

  .hpt-nav-item {
    grid-template-columns: 30px auto auto;
  }

  .hpt-grid-4,
  .hpt-grid-3,
  .hpt-grid-2 {
    grid-template-columns: 1fr;
  }

  .hpt-card {
    padding: 18px;
    border-radius: 20px;
  }

  .hpt-hero-card h2 {
    font-size: 38px;
  }

  .hpt-platform .str-toolkit-calc-shell,
  .hpt-platform .str-toolkit-grid,
  .hpt-platform .str-toolkit-grid-two,
  .hpt-platform .str-toolkit-grid-three,
  .hpt-platform .str-toolkit-fields-grid,
  .hpt-platform .str-toolkit-result-cards {
    grid-template-columns: 1fr !important;
  }
}

/* HostPanel Toolkit dashboard shell. This block intentionally comes last. */
.hpt-platform {
  --hpt-green: #709F29;
  --hpt-green-strong: #5E951C;
  --hpt-green-dark: #2F4F2F;
  --hpt-green-deep: #14391F;
  --hpt-green-soft: #F6FAF3;
  --hpt-green-soft-2: #EEF7E8;
  --hpt-gold: #D6A93A;
  --hpt-text: #151F16;
  --hpt-muted: #5F6D5E;
  --hpt-soft-muted: #889384;
  --hpt-border: #DFEAD8;
  --hpt-white: #FFFFFF;
  width: min(1510px, calc(100vw - 28px));
  max-width: 1510px;
  margin: 0 auto 44px;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(112, 159, 41, 0.18);
  border-radius: 26px;
  background: #F8FAF5;
  box-shadow: 0 30px 80px rgba(36, 58, 35, 0.08);
  color: var(--hpt-text);
}

.hpt-platform,
.hpt-platform * {
  letter-spacing: 0;
}

.hpt-platform p,
.hpt-platform h2,
.hpt-platform h3,
.hpt-platform h4,
.hpt-platform button,
.hpt-platform a,
.hpt-platform span,
.hpt-platform input,
.hpt-platform select,
.hpt-platform textarea {
  font-family: Manrope, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.hpt-shell {
  display: grid;
  grid-template-columns: 264px minmax(0, 1fr);
  gap: 0;
  min-height: 880px;
  background: #F8FAF5;
}

.hpt-sidebar-shell {
  display: flex;
  flex-direction: column;
  gap: 28px;
  min-width: 0;
  padding: 32px 14px 18px;
  border-right: 1px solid #EDF2E8;
  background: rgba(255, 255, 255, 0.92);
}

.hpt-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 18px 10px;
  color: var(--hpt-text);
}

.hpt-brand__mark {
  position: relative;
  display: inline-block;
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  border: 3px solid var(--hpt-green-strong);
  border-radius: 10px;
}

.hpt-brand__mark::before {
  content: "";
  position: absolute;
  left: 5px;
  top: -9px;
  width: 18px;
  height: 18px;
  border-left: 3px solid var(--hpt-green-strong);
  border-top: 3px solid var(--hpt-green-strong);
  border-radius: 4px 0 0;
  background: #fff;
  transform: rotate(45deg);
}

.hpt-brand strong {
  display: block;
  color: var(--hpt-text);
  font-size: 25px;
  font-weight: 900;
  line-height: 1;
}

.hpt-brand em {
  display: block;
  margin-top: 4px;
  color: var(--hpt-green-strong);
  font-size: 15px;
  font-style: normal;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.hpt-sidebar {
  display: grid;
  gap: 10px;
  position: static;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.hpt-platform .hpt-nav-item {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  width: 100%;
  min-height: 52px;
  padding: 0 12px;
  border: 0 !important;
  border-radius: 8px;
  background: transparent !important;
  color: var(--hpt-text) !important;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
  text-align: left;
  box-shadow: none !important;
}

.hpt-platform .hpt-nav-item:hover,
.hpt-platform .hpt-nav-item.is-active {
  background: #EEF6E4 !important;
  color: var(--hpt-green-strong) !important;
}

.hpt-nav-item__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  color: inherit;
  font-size: 19px;
  line-height: 1;
}

.hpt-nav-item__text {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hpt-nav-item .hpt-badge {
  min-height: 22px;
  padding: 0 8px;
  font-size: 10px;
}

.hpt-sidebar-upgrade {
  display: grid;
  gap: 12px;
  margin-top: auto;
  padding: 22px 18px;
  border: 1px solid var(--hpt-border);
  border-radius: 12px;
  background: linear-gradient(140deg, #FBFEF7 0%, #EEF7E4 100%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.82);
}

.hpt-sidebar-upgrade h3 {
  margin: 0;
  color: var(--hpt-green-dark);
  font-size: 16px;
  font-weight: 900;
  line-height: 1.35;
}

.hpt-sidebar-upgrade p {
  margin: 0;
  color: var(--hpt-muted);
  font-size: 13px;
  line-height: 1.55;
}

.hpt-workspace {
  min-width: 0;
  padding: 26px 26px 30px;
}

.hpt-userbar {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 14px;
  min-height: 40px;
  margin-bottom: 22px;
}

.hpt-icon-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 0 !important;
  border-radius: 999px;
  background: transparent !important;
  color: #141A14 !important;
  font-size: 20px;
  font-weight: 800;
  box-shadow: none !important;
}

.hpt-icon-button--dot::after {
  content: "";
  position: absolute;
  top: 5px;
  right: 5px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--hpt-green-strong);
}

.hpt-userchip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  color: var(--hpt-text);
  font-size: 14px;
  font-weight: 700;
}

.hpt-userchip__avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: linear-gradient(135deg, #D7E8C7, #B8D891);
  color: var(--hpt-green-dark);
  font-weight: 900;
}

.hpt-content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 276px;
  gap: 20px;
  align-items: start;
}

.hpt-main {
  display: grid;
  min-width: 0;
  gap: 20px;
}

.hpt-panel[hidden] {
  display: none !important;
}

.hpt-panel.is-active {
  display: grid;
  gap: 20px;
  min-width: 0;
}

.hpt-card {
  border: 1px solid var(--hpt-border) !important;
  border-radius: 16px;
  background: rgba(255,255,255,0.95);
  box-shadow: 0 18px 44px rgba(36, 58, 35, 0.06);
}

.hpt-hero-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  gap: 24px;
  min-height: 296px;
  padding: 32px 28px;
  overflow: hidden;
  background: linear-gradient(105deg, #FFFFFF 0%, #FFFFFF 52%, #F0F7E9 100%);
}

.hpt-hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 620px;
}

.hpt-hero-card h2,
.hpt-panel h2,
.hpt-card h2 {
  margin: 0;
  color: var(--hpt-text);
  font-size: clamp(30px, 3vw, 43px);
  font-weight: 900;
  line-height: 1.08;
}

.hpt-hero-card p {
  max-width: 600px;
  margin: 18px 0 0;
  color: var(--hpt-text);
  font-size: 15px;
  line-height: 1.75;
}

.hpt-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 38px;
}

.hpt-btn-primary,
.hpt-platform button.hpt-btn-primary,
.hpt-platform a.hpt-btn-primary {
  min-height: 46px;
  padding: 0 22px;
  border: 0 !important;
  border-radius: 8px;
  background: linear-gradient(180deg, #79AF2B 0%, #5E951C 100%) !important;
  color: #FFFFFF !important;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.2;
  box-shadow: 0 14px 30px rgba(112, 159, 41, 0.24);
}

.hpt-btn-primary span {
  margin-left: 9px;
}

.hpt-btn-secondary,
.hpt-platform button.hpt-btn-secondary,
.hpt-platform a.hpt-btn-secondary,
.hpt-platform span.hpt-btn-secondary {
  min-height: 46px;
  padding: 0 22px;
  border: 1px solid #D6E1CE !important;
  border-radius: 8px;
  background: #FFFFFF !important;
  color: var(--hpt-text) !important;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.2;
  box-shadow: 0 10px 24px rgba(36, 58, 35, 0.05);
}

.hpt-btn-primary:hover,
.hpt-btn-primary:focus,
.hpt-btn-secondary:hover,
.hpt-btn-secondary:focus {
  color: inherit;
  filter: brightness(0.98);
  transform: translateY(-1px);
}

.hpt-btn-primary:hover,
.hpt-btn-primary:focus {
  color: #FFFFFF !important;
}

.hpt-btn-secondary:hover,
.hpt-btn-secondary:focus {
  color: var(--hpt-text) !important;
}

.hpt-btn-full {
  width: 100%;
}

.hpt-btn-white,
.hpt-platform button.hpt-btn-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 22px;
  border: 0 !important;
  border-radius: 8px;
  background: #FFFFFF !important;
  color: var(--hpt-green-dark) !important;
  font-size: 14px;
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(0,0,0,0.18);
}

.hpt-hero-visual {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  min-width: 0;
  min-height: 232px;
}

.hpt-hero-image {
  width: min(430px, 100%);
  max-height: 270px;
  object-fit: contain;
  object-position: right bottom;
}

.hpt-profit-card {
  position: absolute;
  right: -4px;
  bottom: -2px;
  width: min(256px, 68%);
  padding: 18px;
  border: 1px solid rgba(112,159,41,0.20);
  border-radius: 14px;
  background: rgba(255,255,255,0.91);
  box-shadow: 0 18px 34px rgba(36, 58, 35, 0.12);
  backdrop-filter: blur(7px);
}

.hpt-profit-card span,
.hpt-profit-card em {
  display: block;
  color: var(--hpt-muted);
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
}

.hpt-profit-card strong {
  display: inline-block;
  margin-top: 8px;
  color: #0F1810;
  font-size: 26px;
  font-weight: 950;
  line-height: 1;
}

.hpt-profit-card em {
  display: inline-flex;
  margin-left: 12px;
  padding: 6px 9px;
  border-radius: 999px;
  background: #EDF8E3;
  color: var(--hpt-green-strong);
}

.hpt-profit-card i {
  display: block;
  width: 100%;
  height: 36px;
  margin-top: 12px;
  border-radius: 12px;
  background:
    linear-gradient(145deg, transparent 0 12%, rgba(112,159,41,0.22) 12% 16%, transparent 16% 30%, rgba(112,159,41,0.38) 30% 34%, transparent 34% 52%, rgba(112,159,41,0.55) 52% 57%, transparent 57% 74%, rgba(112,159,41,0.78) 74% 79%, transparent 79%),
    linear-gradient(180deg, #F7FDED 0%, #FFFFFF 100%);
}

.hpt-grid-4.hpt-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.hpt-stat {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  min-width: 0;
  padding: 20px 18px;
}

.hpt-stat__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #F0F7E9;
  color: var(--hpt-green-strong);
  font-size: 27px;
  font-weight: 900;
}

.hpt-stat span:not(.hpt-stat__icon) {
  display: block;
  color: var(--hpt-text);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
}

.hpt-stat strong {
  display: block;
  margin-top: 4px;
  color: var(--hpt-text);
  font-size: 25px;
  font-weight: 950;
  line-height: 1;
}

.hpt-stat em {
  display: block;
  margin-top: 7px;
  color: var(--hpt-muted);
  font-size: 12px;
  font-style: normal;
  line-height: 1.2;
}

.hpt-quick-card {
  padding: 20px 14px 14px;
}

.hpt-section-head {
  margin: 0 6px 16px;
}

.hpt-section-head h3,
.hpt-recent-card h3,
.hpt-tip-card h3,
.hpt-plan-box h3,
.hpt-premium-tile h3 {
  margin: 0;
  color: var(--hpt-text);
  font-size: 20px;
  font-weight: 950;
  line-height: 1.18;
}

.hpt-section-head p,
.hpt-tip-card p,
.hpt-plan-box p,
.hpt-premium-tile p {
  margin: 8px 0 0;
  color: var(--hpt-muted);
  font-size: 13px;
  line-height: 1.55;
}

.hpt-quick-tools {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.hpt-mini-tool {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 18px 14px 14px;
  border: 1px solid var(--hpt-border);
  border-radius: 14px;
  background: #FFFFFF;
  text-align: center;
}

.hpt-mini-tool__image {
  width: 100%;
  height: 112px;
  margin: 0 auto 12px;
  object-fit: contain;
  border-radius: 12px;
  background: #F7FBF2;
}

.hpt-mini-tool h3 {
  margin: 0;
  color: var(--hpt-text);
  font-size: 15px;
  font-weight: 950;
  line-height: 1.25;
}

.hpt-mini-tool p {
  flex: 1;
  margin: 10px 0 16px;
  color: var(--hpt-text);
  font-size: 12px;
  line-height: 1.55;
}

.hpt-mini-tool .hpt-btn-secondary {
  width: 100%;
  min-height: 40px;
  padding: 0 10px;
  border-color: #D9E8C6 !important;
  background: #FAFDF5 !important;
  color: #4F7F1F !important;
  font-size: 12px;
  white-space: normal;
}

.hpt-lock {
  position: absolute;
  top: 12px;
  right: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: #16391F;
  color: #F7D96D;
  font-size: 14px;
  font-weight: 900;
  box-shadow: 0 8px 18px rgba(20,57,31,.24);
}

.hpt-overview-bottom {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.85fr);
  gap: 20px;
}

.hpt-recent-card,
.hpt-tip-card {
  padding: 20px;
}

.hpt-recent-row {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(100px, .55fr) minmax(90px, .45fr) auto;
  gap: 16px;
  align-items: center;
  margin-top: 16px;
  min-width: 0;
}

.hpt-recent-row div {
  min-width: 0;
}

.hpt-recent-row strong,
.hpt-recent-row span {
  display: block;
}

.hpt-recent-row strong {
  color: var(--hpt-text);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.3;
}

.hpt-recent-row span {
  margin-top: 5px;
  color: var(--hpt-muted);
  font-size: 12px;
  line-height: 1.3;
}

.hpt-recent-row .hpt-btn-secondary {
  min-height: 42px;
  padding: 0 18px;
  color: #4F7F1F !important;
  background: #F1F7EA !important;
}

.hpt-tip-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 72px;
  gap: 16px;
  align-items: center;
  background: linear-gradient(135deg, #FFFFFF 0%, #F3F9EE 100%);
}

.hpt-tip-card > span {
  display: block;
  width: 70px;
  height: 70px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 50% 40%, #FFEFA5 0 20%, transparent 21%),
    radial-gradient(circle at 50% 48%, #FFDB55 0 34%, transparent 35%),
    linear-gradient(#FFFFFF, #FFFFFF);
  box-shadow: inset 0 -8px 0 rgba(214,169,58,.15);
}

.hpt-aside {
  display: grid;
  gap: 20px;
  position: sticky;
  top: 20px;
  min-width: 0;
}

.hpt-plan-box {
  padding: 26px 22px;
}

.hpt-plan-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.hpt-plan-box h3 {
  color: var(--hpt-text);
  font-size: 18px;
}

.hpt-plan-box h4 {
  margin: 18px 0 0;
  color: var(--hpt-text);
  font-size: 16px;
  font-weight: 950;
}

.hpt-plan-list {
  display: grid;
  gap: 14px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.hpt-plan-list li {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr) 18px;
  gap: 10px;
  align-items: center;
  color: var(--hpt-text);
  font-size: 13px;
  line-height: 1.35;
}

.hpt-plan-list li span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: #84B852;
  color: #FFFFFF;
  font-size: 11px;
  font-weight: 900;
}

.hpt-plan-list li b {
  color: #B5BDB3;
  font-size: 14px;
}

.hpt-plan-list li.is-locked {
  color: #9DA69B;
}

.hpt-plan-list li.is-locked span {
  background: #F2F4EF;
  color: #D7DDD3;
}

.hpt-plan-divider {
  height: 1px;
  margin: 22px 0;
  background: #E6ECE2;
}

.hpt-premium-tile {
  position: relative;
  min-height: 268px;
  overflow: hidden;
  padding: 28px 22px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  background: linear-gradient(135deg, #173F21 0%, #0E2818 100%);
  color: #FFFFFF;
  box-shadow: 0 18px 45px rgba(20, 57, 31, 0.20);
}

.hpt-premium-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.09), transparent 45%);
  pointer-events: none;
}

.hpt-premium-tile > div {
  position: relative;
  z-index: 2;
  max-width: 190px;
}

.hpt-premium-tile span {
  display: inline-flex;
  margin-bottom: 24px;
  color: #F7D96D;
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

.hpt-premium-tile h3 {
  color: #FFFFFF;
  font-size: 24px;
}

.hpt-premium-tile p {
  color: rgba(255,255,255,.88);
  font-size: 13px;
}

.hpt-premium-tile .hpt-btn-white {
  margin-top: 22px;
}

.hpt-premium-tile__image {
  position: absolute;
  right: -28px;
  bottom: -34px;
  z-index: 1;
  width: 150px;
  opacity: 0.94;
  filter: drop-shadow(0 18px 18px rgba(0,0,0,.28));
}

.hpt-panel-head,
.hpt-premium-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
  gap: 22px;
  align-items: center;
  padding: 24px;
  overflow: hidden;
}

.hpt-panel-head h2,
.hpt-premium-hero h2,
.hpt-account-card h2 {
  margin-top: 8px;
}

.hpt-panel-head p,
.hpt-premium-hero p,
.hpt-account-card p {
  max-width: 690px;
  margin: 12px 0 0;
  color: var(--hpt-muted);
  font-size: 14px;
  line-height: 1.65;
}

.hpt-panel-image {
  justify-self: end;
  width: min(330px, 100%);
  max-height: 250px;
  object-fit: contain;
}

.hpt-embedded-tool .str-toolkit {
  margin: 0;
}

.hpt-embedded-tool .str-toolkit-profit-layout {
  max-width: 100%;
}

@media (max-width: 1280px) {
  .hpt-platform {
    width: min(1180px, calc(100vw - 20px));
  }

  .hpt-shell {
    grid-template-columns: 236px minmax(0, 1fr);
  }

  .hpt-content-grid {
    grid-template-columns: 1fr;
  }

  .hpt-aside {
    position: static;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hpt-premium-tile {
    min-height: 100%;
  }

  .hpt-grid-4.hpt-stats,
  .hpt-quick-tools {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .hpt-platform {
    width: calc(100vw - 16px);
    border-radius: 20px;
  }

  .hpt-shell {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .hpt-sidebar-shell {
    gap: 16px;
    padding: 18px;
    border-right: 0;
    border-bottom: 1px solid #EDF2E8;
  }

  .hpt-brand {
    padding: 0;
  }

  .hpt-sidebar {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: thin;
  }

  .hpt-platform .hpt-nav-item {
    flex: 0 0 190px;
    width: 190px;
  }

  .hpt-sidebar-upgrade {
    display: none;
  }

  .hpt-workspace {
    padding: 16px;
  }

  .hpt-userbar {
    margin-bottom: 16px;
  }

  .hpt-hero-card,
  .hpt-panel-head,
  .hpt-premium-hero {
    grid-template-columns: 1fr;
  }

  .hpt-hero-visual {
    min-height: 230px;
    justify-content: center;
  }

  .hpt-hero-image {
    width: min(420px, 100%);
    object-position: center bottom;
  }

  .hpt-profit-card {
    right: 50%;
    bottom: 0;
    width: min(300px, 92%);
    transform: translateX(50%);
  }

  .hpt-overview-bottom,
  .hpt-aside {
    grid-template-columns: 1fr;
  }

  .hpt-recent-row {
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .hpt-recent-row .hpt-btn-secondary {
    width: 100%;
  }
}

@media (max-width: 620px) {
  .hpt-platform {
    width: calc(100vw - 10px);
    border-radius: 16px;
  }

  .hpt-sidebar-shell {
    padding: 14px;
  }

  .hpt-workspace {
    padding: 12px;
  }

  .hpt-userbar {
    justify-content: space-between;
    gap: 8px;
  }

  .hpt-userchip span:last-child {
    max-width: 120px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .hpt-hero-card {
    min-height: 0;
    padding: 24px 18px;
  }

  .hpt-hero-card h2,
  .hpt-panel h2,
  .hpt-card h2 {
    font-size: 28px;
  }

  .hpt-hero-card p {
    font-size: 14px;
  }

  .hpt-actions {
    gap: 10px;
    margin-top: 24px;
  }

  .hpt-actions .hpt-btn-primary,
  .hpt-actions .hpt-btn-secondary,
  .hpt-sidebar-upgrade .hpt-btn-primary {
    width: 100%;
  }

  .hpt-grid-4.hpt-stats,
  .hpt-quick-tools,
  .hpt-grid-3,
  .hpt-grid-2 {
    grid-template-columns: 1fr;
  }

  .hpt-stat {
    grid-template-columns: 44px minmax(0, 1fr);
    padding: 16px;
  }

  .hpt-stat__icon {
    width: 44px;
    height: 44px;
  }

  .hpt-mini-tool__image {
    height: 150px;
  }

  .hpt-tip-card {
    grid-template-columns: 1fr;
  }

  .hpt-tip-card > span {
    justify-self: start;
  }

  .hpt-plan-box,
  .hpt-premium-tile,
  .hpt-panel-head,
  .hpt-premium-hero {
    padding: 18px;
  }
}

.hpt-auth-platform {
  padding: 26px;
  overflow: visible;
}

.hpt-auth-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 460px);
  gap: 26px;
  align-items: stretch;
  border: 1px solid var(--hpt-border);
  border-radius: 22px;
  background: linear-gradient(135deg, #FFFFFF 0%, #F4FAEF 100%);
  box-shadow: 0 24px 70px rgba(36,58,35,.10);
  overflow: hidden;
}

.hpt-auth-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 44px;
  min-width: 0;
}

.hpt-auth-brand {
  padding: 0;
  margin-bottom: 28px;
}

.hpt-auth-copy h2 {
  margin: 0;
  color: var(--hpt-text);
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 950;
  line-height: 1.05;
}

.hpt-auth-copy p {
  max-width: 640px;
  margin: 18px 0 0;
  color: var(--hpt-muted);
  font-size: 16px;
  line-height: 1.7;
}

.hpt-auth-image {
  width: min(480px, 100%);
  margin-top: 28px;
  object-fit: contain;
}

.hpt-auth-panel {
  display: grid;
  align-content: center;
  gap: 16px;
  padding: 34px;
  border-left: 1px solid var(--hpt-border);
  background: rgba(255,255,255,.88);
}

.hpt-auth-tabs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  padding: 6px;
  border: 1px solid var(--hpt-border);
  border-radius: 12px;
  background: #F5FAF0;
}

.hpt-auth-tabs button {
  min-height: 42px;
  border: 0 !important;
  border-radius: 9px;
  background: transparent !important;
  color: var(--hpt-muted) !important;
  font-size: 14px;
  font-weight: 900;
  box-shadow: none !important;
}

.hpt-auth-tabs button.is-active {
  background: #FFFFFF !important;
  color: var(--hpt-green-strong) !important;
  box-shadow: 0 8px 20px rgba(36,58,35,.08) !important;
}

.hpt-auth-form {
  display: none;
  gap: 13px;
}

.hpt-auth-form.is-active {
  display: grid;
}

.hpt-auth-form label,
.hpt-account-form label {
  display: grid;
  gap: 7px;
  color: var(--hpt-text);
  font-size: 13px;
  font-weight: 900;
}

.hpt-auth-form input,
.hpt-auth-form select,
.hpt-account-form select {
  width: 100%;
  min-height: 44px;
  padding: 0 13px;
  border: 1px solid #D8E4CF;
  border-radius: 10px;
  background: #FFFFFF;
  color: var(--hpt-text);
  font: inherit;
  box-shadow: inset 0 1px 0 rgba(0,0,0,.02);
}

.hpt-auth-check {
  display: flex !important;
  grid-template-columns: none !important;
  flex-direction: row;
  align-items: flex-start;
  gap: 10px !important;
  color: var(--hpt-muted);
  font-weight: 700 !important;
  line-height: 1.45;
}

.hpt-auth-check input {
  width: auto;
  min-height: 0;
  margin-top: 3px;
}

.hpt-auth-link {
  justify-self: center;
  color: var(--hpt-green-strong);
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
}

.hpt-social-login {
  display: grid;
  gap: 10px;
  padding-top: 4px;
}

.hpt-social-login > span {
  color: var(--hpt-muted);
  font-size: 12px;
  font-weight: 900;
  text-align: center;
}

.hpt-auth-notice {
  margin: 0;
  padding: 12px 14px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.45;
}

.hpt-auth-notice.is-error {
  border: 1px solid #F2BBBB;
  background: #FFF1F1;
  color: #9D2929;
}

.hpt-auth-notice.is-success {
  border: 1px solid #CBE5B7;
  background: #F2FAEA;
  color: var(--hpt-green-dark);
}

.hpt-honeypot {
  position: absolute !important;
  left: -9999px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.hpt-onboarding {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 22px;
  margin: 0 0 18px;
  padding: 22px;
  background: linear-gradient(135deg, #FFFFFF 0%, #F2FAEA 100%);
}

.hpt-onboarding h2 {
  margin: 10px 0 0;
}

.hpt-onboarding-form {
  display: grid;
  gap: 16px;
}

.hpt-onboarding fieldset {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  border: 0;
}

.hpt-onboarding legend {
  flex: 0 0 100%;
  color: var(--hpt-text);
  font-size: 13px;
  font-weight: 950;
}

.hpt-onboarding label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 11px;
  border: 1px solid var(--hpt-border);
  border-radius: 999px;
  background: #FFFFFF;
  color: var(--hpt-text);
  font-size: 13px;
  font-weight: 800;
}

.hpt-empty-state {
  display: grid;
  gap: 14px;
  margin-top: 14px;
}

.hpt-empty-state p {
  margin: 0;
  color: var(--hpt-muted);
  font-size: 13px;
  line-height: 1.55;
}

.hpt-row-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.hpt-row-actions form {
  margin: 0;
}

.hpt-row-actions .hpt-btn-secondary {
  min-height: 38px;
  padding: 0 12px;
}

.hpt-activity-card {
  padding: 20px;
}

.hpt-activity-card h3 {
  margin: 0 0 12px;
  color: var(--hpt-text);
  font-size: 20px;
  font-weight: 950;
}

.hpt-activity-card p {
  margin: 0;
  color: var(--hpt-muted);
  font-size: 13px;
}

.hpt-activity-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hpt-activity-card li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid #EDF2E8;
}

.hpt-activity-card li:last-child {
  border-bottom: 0;
}

.hpt-activity-card strong {
  color: var(--hpt-text);
  font-size: 13px;
  font-weight: 900;
}

.hpt-activity-card span {
  color: var(--hpt-muted);
  font-size: 12px;
  white-space: nowrap;
}

.hpt-account-card {
  padding: 24px;
}

.hpt-account-grid {
  margin-top: 18px;
}

.hpt-account-item {
  display: grid;
  gap: 6px;
  min-width: 0;
  padding: 16px;
  border: 1px solid var(--hpt-border);
  border-radius: 12px;
  background: #FFFFFF;
}

.hpt-account-item span {
  color: var(--hpt-muted);
  font-size: 12px;
  font-weight: 900;
}

.hpt-account-item strong {
  overflow-wrap: anywhere;
  color: var(--hpt-text);
  font-size: 17px;
  font-weight: 950;
}

.hpt-account-form {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  align-items: end;
  margin-top: 18px;
  padding: 16px;
  border: 1px solid var(--hpt-border);
  border-radius: 14px;
  background: #F8FCF4;
}

@media (max-width: 980px) {
  .hpt-auth-card,
  .hpt-onboarding,
  .hpt-account-form {
    grid-template-columns: 1fr;
  }

  .hpt-auth-panel {
    border-left: 0;
    border-top: 1px solid var(--hpt-border);
  }
}

@media (max-width: 620px) {
  .hpt-auth-platform {
    padding: 10px;
  }

  .hpt-auth-copy,
  .hpt-auth-panel {
    padding: 20px;
  }

  .hpt-auth-copy h2 {
    font-size: 30px;
  }

  .hpt-row-actions,
  .hpt-row-actions form,
  .hpt-row-actions .hpt-btn-secondary {
    width: 100%;
  }
}

.hpt-finance-platform {
  --hpt-green: #709F29;
  --hpt-green-dark: #163D1F;
  --hpt-green-soft: #F6FAF3;
  --hpt-border: #DDE9D2;
  --hpt-text: #111B15;
  --hpt-muted: #60705F;
  --hpt-card-shadow: 0 18px 48px rgba(22, 61, 31, 0.08);
}

.hpt-finance-platform .hpt-shell {
  background:
    radial-gradient(circle at top right, rgba(112, 159, 41, 0.11), transparent 34%),
    #FBFDF8;
}

.hpt-finance-hero {
  overflow: hidden;
  min-height: 294px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.98) 0%, rgba(246,250,243,0.94) 100%),
    #FFFFFF;
}

.hpt-finance-hero .hpt-hero-copy {
  position: relative;
  z-index: 2;
}

.hpt-finance-hero .hpt-hero-copy h2 {
  max-width: 720px;
  color: #0E1711;
  font-size: clamp(31px, 3.2vw, 50px);
  letter-spacing: 0;
}

.hpt-finance-hero .hpt-hero-copy p {
  max-width: 720px;
  color: #344338;
  font-size: 16px;
}

.hpt-finance-platform .hpt-hero-visual {
  position: relative;
  min-height: 260px;
}

.hpt-finance-platform .hpt-hero-image {
  width: min(430px, 100%);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 22px 42px rgba(22, 61, 31, 0.14));
}

.hpt-finance-platform .hpt-profit-card {
  position: absolute;
  right: 18px;
  bottom: 14px;
  display: grid;
  gap: 7px;
  width: min(250px, 76%);
  padding: 18px;
  border: 1px solid rgba(112,159,41,0.22);
  border-radius: 20px;
  background: rgba(255,255,255,0.88);
  box-shadow: 0 18px 36px rgba(22, 61, 31, 0.12);
  backdrop-filter: blur(10px);
}

.hpt-finance-platform .hpt-profit-card span,
.hpt-finance-platform .hpt-profit-card em {
  color: var(--hpt-muted);
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
}

.hpt-finance-platform .hpt-profit-card strong {
  color: var(--hpt-text);
  font-size: 28px;
  font-weight: 950;
  line-height: 1;
}

.hpt-finance-platform .hpt-profit-card i {
  display: block;
  height: 34px;
  border-radius: 999px;
  background:
    linear-gradient(135deg, transparent 0 18%, rgba(112,159,41,0.22) 18% 27%, transparent 27% 40%, rgba(112,159,41,0.32) 40% 52%, transparent 52%),
    linear-gradient(90deg, rgba(112,159,41,0.18), rgba(112,159,41,0.02));
}

.hpt-finance-metrics {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
  margin: 18px 0;
}

.hpt-finance-metric {
  display: grid;
  gap: 12px;
  min-width: 0;
  padding: 18px;
  border: 1px solid var(--hpt-border);
  box-shadow: var(--hpt-card-shadow);
}

.hpt-finance-metric span {
  min-height: 34px;
  color: var(--hpt-muted);
  font-size: 12px;
  font-weight: 950;
  line-height: 1.3;
}

.hpt-finance-metric strong {
  color: var(--hpt-green-dark);
  font-size: clamp(18px, 1.6vw, 25px);
  font-weight: 950;
  line-height: 1.05;
  overflow-wrap: anywhere;
}

.hpt-finance-metric.is-profit {
  border-color: rgba(112,159,41,0.5);
  background: linear-gradient(135deg, #163D1F 0%, #709F29 100%);
}

.hpt-finance-metric.is-profit span,
.hpt-finance-metric.is-profit strong {
  color: #FFFFFF;
}

.hpt-finance-platform .hpt-quick-tools {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.hpt-finance-platform .hpt-tool-card {
  min-height: 100%;
  border-radius: 18px;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.hpt-finance-platform .hpt-tool-card:hover {
  transform: translateY(-2px);
  border-color: rgba(112,159,41,0.55);
  box-shadow: 0 22px 46px rgba(22,61,31,0.12);
}

.hpt-finance-platform .hpt-tool-card__image {
  height: 150px;
  aspect-ratio: auto;
  padding: 8px;
  object-fit: contain;
  background: linear-gradient(135deg, #F8FCF3 0%, #EEF8E5 100%);
}

.hpt-finance-platform .hpt-tool-card p {
  margin: 0;
  color: var(--hpt-muted);
  font-size: 13px;
  line-height: 1.5;
}

.hpt-finance-platform .hpt-embedded-tool {
  padding: 18px;
  overflow: hidden;
}

.hpt-cost-tool,
.hpt-calendar-tool {
  display: grid;
  gap: 18px;
  padding: 22px;
}

.hpt-cost-grid,
.hpt-calendar-toolbar {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.hpt-cost-grid label,
.hpt-calendar-toolbar label {
  display: grid;
  gap: 7px;
  min-width: 0;
  margin: 0;
  color: var(--hpt-text);
  font-size: 12px;
  font-weight: 950;
}

.hpt-cost-grid input,
.hpt-calendar-toolbar input,
.hpt-calendar-toolbar select {
  width: 100%;
  min-height: 46px;
  padding: 10px 12px;
  border: 1px solid var(--hpt-border);
  border-radius: 12px;
  background: #FFFFFF;
  color: var(--hpt-text);
  font: 800 14px/1.2 Manrope, system-ui, sans-serif;
  box-shadow: inset 0 1px 2px rgba(22,61,31,0.04);
}

.hpt-cost-grid input:focus,
.hpt-calendar-toolbar input:focus,
.hpt-calendar-toolbar select:focus {
  outline: 3px solid rgba(112,159,41,0.17);
  border-color: var(--hpt-green);
}

.hpt-cost-output,
.hpt-calendar-output {
  min-height: 84px;
}

.hpt-output-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.hpt-output-grid > div {
  display: grid;
  gap: 8px;
  min-width: 0;
  padding: 16px;
  border: 1px solid var(--hpt-border);
  border-radius: 14px;
  background: #FFFFFF;
}

.hpt-output-grid span {
  color: var(--hpt-muted);
  font-size: 12px;
  font-weight: 950;
}

.hpt-output-grid strong {
  color: var(--hpt-green-dark);
  font-size: 21px;
  font-weight: 950;
  line-height: 1.08;
  overflow-wrap: anywhere;
}

.hpt-output-grid .is-highlight,
.hpt-output-grid .is-profit {
  border-color: rgba(112,159,41,0.45);
  background: linear-gradient(135deg, #163D1F 0%, #709F29 100%);
}

.hpt-output-grid .is-highlight span,
.hpt-output-grid .is-highlight strong,
.hpt-output-grid .is-profit span,
.hpt-output-grid .is-profit strong {
  color: #FFFFFF;
}

.hpt-cost-advice {
  margin-top: 12px;
  padding: 16px;
  border: 1px solid rgba(112,159,41,0.24);
  border-radius: 16px;
  background: #F7FCF1;
}

.hpt-cost-advice strong {
  display: block;
  color: var(--hpt-green-dark);
  font-size: 14px;
  font-weight: 950;
}

.hpt-cost-advice p {
  margin: 6px 0 0;
  color: var(--hpt-muted);
  font-size: 13px;
  line-height: 1.55;
}

.hpt-calendar-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hpt-calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 8px;
  padding: 14px;
  border: 1px solid var(--hpt-border);
  border-radius: 18px;
  background: #FBFDF8;
}

.hpt-calendar-day {
  display: grid !important;
  gap: 4px;
  min-width: 0;
  min-height: 78px;
  padding: 10px !important;
  border: 1px solid #DDE9D2 !important;
  border-radius: 13px !important;
  background: #FFFFFF !important;
  color: var(--hpt-text) !important;
  text-align: left !important;
  box-shadow: none !important;
  cursor: pointer;
}

.hpt-calendar-day span {
  color: var(--hpt-text);
  font-size: 13px;
  font-weight: 950;
}

.hpt-calendar-day strong {
  color: var(--hpt-green-dark);
  font-size: 12px;
  font-weight: 950;
  line-height: 1.2;
  overflow-wrap: anywhere;
}

.hpt-calendar-day em {
  min-height: 14px;
  color: var(--hpt-muted);
  font-size: 11px;
  font-style: normal;
  font-weight: 900;
}

.hpt-calendar-day.is-selected {
  outline: 3px solid rgba(112,159,41,0.2);
  border-color: var(--hpt-green) !important;
}

.hpt-calendar-day.season-high {
  background: #E7F5D9 !important;
  border-color: #A8CF7B !important;
}

.hpt-calendar-day.season-standard {
  background: #F4FAEE !important;
  border-color: #CFE3BA !important;
}

.hpt-calendar-day.season-special {
  background: #FFF5D6 !important;
  border-color: #F2C764 !important;
}

.hpt-calendar-day.season-low {
  background: #F0F2F0 !important;
  border-color: #D6DDD6 !important;
}

.hpt-calendar-day.season-risk {
  background: #FFF0E6 !important;
  border-color: #F5B47C !important;
}

.hpt-report-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.hpt-report-list span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid var(--hpt-border);
  border-radius: 999px;
  background: #F8FCF3;
  color: var(--hpt-green-dark);
  font-size: 13px;
  font-weight: 900;
}

.hpt-scenario-summary ul {
  display: grid;
  gap: 10px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.hpt-scenario-summary li {
  padding: 12px 14px;
  border: 1px solid var(--hpt-border);
  border-radius: 12px;
  background: #F8FCF3;
  color: var(--hpt-text);
  font-size: 13px;
  font-weight: 900;
}

.hpt-season-grid,
.hpt-scenario-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.hpt-season-card,
.hpt-scenario-card {
  display: grid;
  gap: 10px;
}

.hpt-season-card span,
.hpt-scenario-card span {
  color: var(--hpt-muted);
  font-size: 12px;
  font-weight: 950;
}

.hpt-season-card strong,
.hpt-scenario-card strong {
  color: var(--hpt-green-dark);
  font-size: 30px;
  font-weight: 950;
  line-height: 1;
}

.hpt-season-card p,
.hpt-scenario-card p {
  margin: 0;
  color: var(--hpt-muted);
  font-size: 13px;
  line-height: 1.55;
}

.hpt-season-card.is-high,
.hpt-scenario-card.is-winner {
  border-color: rgba(112,159,41,0.48);
  background: linear-gradient(135deg, #F8FCF3 0%, #EAF6DD 100%);
}

.hpt-season-card.is-standard {
  background: #FFFFFF;
}

.hpt-season-card.is-low {
  background: #F5F7F4;
}

.hpt-reservations-promo {
  background:
    linear-gradient(135deg, rgba(255,255,255,0.95), rgba(246,250,243,0.98)),
    #FFFFFF;
}

@media (max-width: 1400px) {
  .hpt-finance-metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 1180px) {
  .hpt-finance-platform .hpt-quick-tools,
  .hpt-cost-grid,
  .hpt-calendar-toolbar,
  .hpt-output-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .hpt-finance-metrics,
  .hpt-finance-platform .hpt-quick-tools,
  .hpt-cost-grid,
  .hpt-calendar-toolbar,
  .hpt-output-grid {
    grid-template-columns: 1fr;
  }

  .hpt-finance-platform .hpt-profit-card {
    position: static;
    width: 100%;
    margin-top: 12px;
  }

  .hpt-finance-platform .hpt-hero-visual {
    min-height: auto;
  }

  .hpt-calendar-actions .hpt-btn-secondary,
  .hpt-cost-tool .hpt-btn-primary {
    width: 100%;
  }

  .hpt-calendar-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 430px) {
  .hpt-calendar-grid {
    grid-template-columns: 1fr;
  }

  .hpt-cost-tool,
  .hpt-calendar-tool,
  .hpt-finance-platform .hpt-embedded-tool {
    padding: 14px;
  }
}

.hpt-platform.hpt-finance-platform {
  width: 100% !important;
  max-width: min(1480px, calc(100vw - 32px)) !important;
  margin: 0 auto !important;
  text-align: left;
}

.hpt-finance-platform .hpt-shell {
  grid-template-columns: 260px minmax(0, 1fr) !important;
  max-width: 100%;
  margin: 0 auto;
}

.hpt-finance-platform .hpt-content-grid {
  grid-template-columns: minmax(0, 1fr) 280px;
}

.hpt-finance-platform .hpt-main {
  max-width: 100%;
  margin: 0 auto;
}

.hpt-finance-platform .hpt-panel {
  width: 100%;
}

.hpt-calculator-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.hpt-calculator-card {
  display: grid;
  gap: 18px;
  align-content: start;
  overflow: hidden;
}

.hpt-calculator-card__head {
  display: grid;
  gap: 8px;
}

.hpt-calculator-card__head h3 {
  margin: 0;
  color: var(--hpt-text);
  font-size: 24px;
  font-weight: 950;
  line-height: 1.15;
}

.hpt-calculator-card__head p {
  margin: 0;
  color: var(--hpt-muted);
  font-size: 14px;
  line-height: 1.55;
}

.hpt-calculator-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.hpt-calculator-fields label {
  display: grid;
  gap: 7px;
  min-width: 0;
  margin: 0;
  color: var(--hpt-text);
  font-size: 12px;
  font-weight: 950;
}

.hpt-calculator-fields input {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid var(--hpt-border);
  border-radius: 12px;
  background: #FFFFFF;
  color: var(--hpt-text);
  font: 800 14px/1.2 Manrope, system-ui, sans-serif;
}

.hpt-calculator-fields input:focus {
  outline: 3px solid rgba(112,159,41,0.17);
  border-color: var(--hpt-green);
}

.hpt-calculator-card .hpt-calc-button {
  width: 100%;
}

.hpt-calc-result {
  display: none;
}

.hpt-calc-result.is-visible {
  display: grid;
  gap: 12px;
}

.hpt-scenario-mini-table {
  overflow-x: auto;
  border: 1px solid var(--hpt-border);
  border-radius: 16px;
  background: #FFFFFF;
}

.hpt-scenario-mini-table table {
  width: 100%;
  min-width: 520px;
  border-collapse: collapse;
}

.hpt-scenario-mini-table th,
.hpt-scenario-mini-table td {
  padding: 12px;
  border-bottom: 1px solid #EAF1E3;
  color: var(--hpt-text);
  font-size: 13px;
  text-align: left;
}

.hpt-scenario-mini-table th {
  color: var(--hpt-green-dark);
  font-weight: 950;
}

.hpt-scenario-mini-table tr:last-child td {
  border-bottom: 0;
}

.hpt-overview-bottom {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, .65fr);
  gap: 18px;
  align-items: stretch;
}

.hpt-tip-card {
  display: grid;
  grid-template-columns: 1fr;
  align-content: center;
  gap: 10px;
}

.hpt-tip-card p {
  max-width: 100%;
  margin: 0;
  overflow-wrap: anywhere;
}

.hpt-reservations-promo {
  max-width: 100%;
}

@media (max-width: 1280px) {
  .hpt-finance-platform .hpt-shell {
    grid-template-columns: 236px minmax(0, 1fr) !important;
  }

  .hpt-finance-platform .hpt-content-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 980px) {
  .hpt-platform.hpt-finance-platform {
    max-width: calc(100vw - 16px) !important;
  }

  .hpt-finance-platform .hpt-shell {
    grid-template-columns: 1fr !important;
  }

  .hpt-calculator-grid,
  .hpt-overview-bottom,
  .hpt-season-grid,
  .hpt-scenario-cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .hpt-platform.hpt-finance-platform {
    max-width: calc(100vw - 10px) !important;
  }

  .hpt-calculator-fields {
    grid-template-columns: 1fr;
  }

  .hpt-panel-head .hpt-panel-image {
    max-height: 190px;
  }
}

/* Rezmora responsive polish patch - 2026-07-17
   Keeps the original dashboard UI, but makes it wider, safer inside narrow WP themes,
   and prevents cards/images/buttons from breaking when the page is zoomed or resized. */
.hpt-platform.hpt-finance-platform {
  width: min(1600px, calc(100vw - 36px)) !important;
  max-width: min(1600px, calc(100vw - 36px)) !important;
  margin-top: 0 !important;
  margin-right: auto !important;
  margin-bottom: 44px !important;
  margin-left: 50% !important;
  transform: translateX(-50%) !important;
  overflow: hidden !important;
}

.hpt-finance-platform .hpt-shell {
  grid-template-columns: 280px minmax(0, 1fr) !important;
}

.hpt-finance-platform .hpt-workspace {
  min-width: 0;
  padding: clamp(18px, 2vw, 34px);
}

.hpt-finance-platform .hpt-content-grid {
  grid-template-columns: minmax(0, 1fr) minmax(300px, 340px);
  gap: clamp(18px, 1.8vw, 28px);
}

.hpt-finance-platform .hpt-main,
.hpt-finance-platform .hpt-panel,
.hpt-finance-platform .hpt-card,
.hpt-finance-platform .hpt-embedded-tool,
.hpt-finance-platform .hpt-panel-head > div,
.hpt-finance-platform .hpt-hero-copy {
  min-width: 0;
}

.hpt-finance-platform .hpt-hero-card,
.hpt-finance-platform .hpt-panel-head,
.hpt-finance-platform .hpt-premium-hero {
  grid-template-columns: minmax(360px, 1fr) minmax(220px, 34%);
  gap: clamp(20px, 2vw, 34px);
}

.hpt-finance-platform .hpt-hero-card h2,
.hpt-finance-platform .hpt-panel h2,
.hpt-finance-platform .hpt-card h2 {
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

.hpt-finance-platform .hpt-panel-head p,
.hpt-finance-platform .hpt-premium-hero p,
.hpt-finance-platform .hpt-hero-card p {
  max-width: 760px;
  overflow-wrap: normal;
  word-break: normal;
}

.hpt-finance-platform .hpt-panel-image {
  justify-self: center;
  width: min(300px, 100%);
  max-height: 230px;
  object-fit: contain;
  object-position: center;
}

.hpt-finance-platform .hpt-hero-image {
  width: min(470px, 100%);
  max-height: 310px;
}

.hpt-finance-platform .hpt-actions,
.hpt-finance-platform .hpt-calendar-actions,
.hpt-finance-platform .hpt-row-actions {
  align-items: stretch;
}

.hpt-finance-platform .hpt-btn-primary,
.hpt-finance-platform .hpt-btn-secondary,
.hpt-finance-platform .hpt-btn-white,
.hpt-finance-platform button.hpt-btn-primary,
.hpt-finance-platform button.hpt-btn-secondary,
.hpt-finance-platform button.hpt-btn-white,
.hpt-finance-platform a.hpt-btn-primary,
.hpt-finance-platform a.hpt-btn-secondary {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  white-space: normal;
  text-align: center;
  line-height: 1.15;
}

.hpt-finance-platform .hpt-premium-tile {
  min-height: 250px;
  overflow: hidden !important;
  isolation: isolate;
}

.hpt-finance-platform .hpt-premium-tile > div {
  max-width: min(210px, calc(100% - 112px));
}

.hpt-finance-platform .hpt-premium-tile__image {
  right: -6px;
  bottom: -8px;
  width: min(138px, 44%);
  height: 112px;
  max-width: 46%;
  object-fit: cover;
  object-position: center;
  border-radius: 16px 0 18px 0;
  clip-path: inset(0 round 16px 0 18px 0);
}

.hpt-finance-platform .hpt-aside {
  min-width: 0;
}

.hpt-finance-platform .hpt-plan-box,
.hpt-finance-platform .hpt-premium-tile {
  min-width: 0;
}

@media (max-width: 1320px) {
  .hpt-platform.hpt-finance-platform {
    width: min(1280px, calc(100vw - 28px)) !important;
    max-width: min(1280px, calc(100vw - 28px)) !important;
  }

  .hpt-finance-platform .hpt-shell {
    grid-template-columns: 250px minmax(0, 1fr) !important;
  }

  .hpt-finance-platform .hpt-content-grid {
    grid-template-columns: 1fr;
  }

  .hpt-finance-platform .hpt-aside {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1120px) {
  .hpt-finance-platform .hpt-hero-card,
  .hpt-finance-platform .hpt-panel-head,
  .hpt-finance-platform .hpt-premium-hero {
    grid-template-columns: 1fr;
  }

  .hpt-finance-platform .hpt-panel-head .hpt-panel-image,
  .hpt-finance-platform .hpt-premium-hero .hpt-panel-image {
    justify-self: start;
    width: min(280px, 100%);
    max-height: 210px;
  }
}

@media (max-width: 980px) {
  .hpt-platform.hpt-finance-platform {
    width: calc(100vw - 16px) !important;
    max-width: calc(100vw - 16px) !important;
    margin-left: 50% !important;
    transform: translateX(-50%) !important;
  }

  .hpt-finance-platform .hpt-shell {
    grid-template-columns: 1fr !important;
  }

  .hpt-finance-platform .hpt-aside {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .hpt-platform.hpt-finance-platform {
    width: calc(100vw - 10px) !important;
    max-width: calc(100vw - 10px) !important;
    border-radius: 16px;
  }

  .hpt-finance-platform .hpt-workspace {
    padding: 12px;
  }

  .hpt-finance-platform .hpt-hero-card,
  .hpt-finance-platform .hpt-panel-head,
  .hpt-finance-platform .hpt-premium-hero {
    padding: 18px;
  }

  .hpt-finance-platform .hpt-hero-card h2,
  .hpt-finance-platform .hpt-panel h2,
  .hpt-finance-platform .hpt-card h2 {
    font-size: clamp(28px, 9vw, 38px);
  }

  .hpt-finance-platform .hpt-actions .hpt-btn-primary,
  .hpt-finance-platform .hpt-actions .hpt-btn-secondary,
  .hpt-finance-platform .hpt-calendar-actions .hpt-btn-primary,
  .hpt-finance-platform .hpt-calendar-actions .hpt-btn-secondary {
    width: 100%;
  }

  .hpt-finance-platform .hpt-premium-tile {
    min-height: 260px;
  }

  .hpt-finance-platform .hpt-premium-tile > div {
    max-width: 100%;
    padding-right: 96px;
  }

  .hpt-finance-platform .hpt-premium-tile__image {
    width: 116px;
    height: 96px;
    max-width: 38%;
  }
}


/* Rezmora Report Builder - v1 */
.hpt-finance-platform .hpt-report-builder {
  display: grid;
  grid-template-columns: minmax(320px, 420px) minmax(0, 1fr);
  gap: 22px;
  align-items: start;
}

.hpt-finance-platform .hpt-report-form {
  position: sticky;
  top: 18px;
  padding: 22px;
}

.hpt-finance-platform .hpt-report-form__head,
.hpt-finance-platform .hpt-report-preview-toolbar {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.hpt-finance-platform .hpt-report-form__head span,
.hpt-finance-platform .hpt-report-preview-toolbar span,
.hpt-finance-platform .hpt-report-status {
  color: var(--str-primary, #709f29);
  font-weight: 800;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.hpt-finance-platform .hpt-report-form__head h3,
.hpt-finance-platform .hpt-report-fieldset h4 {
  margin: 4px 0 0;
  color: #163321;
}

.hpt-finance-platform .hpt-report-status {
  padding: 7px 10px;
  border-radius: 999px;
  background: #eef7e8;
  color: #4d8a21;
  white-space: nowrap;
}

.hpt-finance-platform .hpt-report-fieldset {
  border-top: 1px solid rgba(95, 137, 55, .16);
  padding-top: 16px;
  margin-top: 16px;
}

.hpt-finance-platform .hpt-report-fields {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.hpt-finance-platform .hpt-report-fields--numbers {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.hpt-finance-platform .hpt-report-fields label {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.hpt-finance-platform .hpt-report-fields label > span {
  font-size: 12px;
  font-weight: 800;
  color: #425e4e;
}

.hpt-finance-platform .hpt-report-fields input,
.hpt-finance-platform .hpt-report-fields select,
.hpt-finance-platform .hpt-report-fields textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid rgba(95, 137, 55, .24);
  background: #fbfdf8;
  border-radius: 14px;
  padding: 10px 12px;
  font: inherit;
  color: #17342e;
  box-sizing: border-box;
}

.hpt-finance-platform .hpt-report-fields input[type="color"] {
  height: 42px;
  padding: 4px;
}

.hpt-finance-platform .hpt-report-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.hpt-finance-platform .hpt-report-actions .hpt-btn-primary,
.hpt-finance-platform .hpt-report-actions .hpt-btn-secondary {
  flex: 1 1 160px;
  justify-content: center;
  white-space: normal;
  text-align: center;
}

.hpt-finance-platform .hpt-report-help {
  font-size: 12px;
  line-height: 1.55;
  color: #647368;
  margin: 14px 0 0;
}

.hpt-finance-platform .hpt-report-preview-shell {
  padding: 20px;
  overflow: auto;
}

.hpt-finance-platform .rzm-report {
  --report-primary: #0f4a35;
  --report-primary-dark: #073626;
  --report-primary-soft: #eef7f1;
  --report-text: #10231b;
  --report-muted: #6d7b72;
  display: grid;
  gap: 22px;
  color: var(--report-text);
  font-family: Manrope, Arial, sans-serif;
}

.hpt-finance-platform .rzm-report-page {
  position: relative;
  width: min(100%, 760px);
  min-height: 980px;
  margin: 0 auto;
  padding: 34px 34px 96px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid rgba(15, 74, 53, .12);
  box-shadow: 0 24px 55px rgba(25, 60, 43, .08);
  overflow: hidden;
  box-sizing: border-box;
}

.hpt-finance-platform .rzm-report-logo-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  max-width: 220px;
  padding: 10px 14px;
  border-radius: 18px;
  margin-bottom: 36px;
}

.hpt-finance-platform .rzm-report-logo-wrap.is-light { background: rgba(255,255,255,.9); border: 1px solid rgba(15,74,53,.08); }
.hpt-finance-platform .rzm-report-logo-wrap.is-dark { background: var(--report-primary-dark); }
.hpt-finance-platform .rzm-report-logo-wrap.is-transparent { background: transparent; padding-left: 0; }

.hpt-finance-platform .rzm-report-logo-wrap img {
  display: block;
  max-width: 190px;
  max-height: 42px;
  object-fit: contain;
}

.hpt-finance-platform .rzm-report-kicker {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--report-primary-soft);
  color: var(--report-primary);
  font-size: 11px;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: .04em;
}

.hpt-finance-platform .rzm-report-cover h1,
.hpt-finance-platform .rzm-report-page h3 {
  color: var(--report-primary-dark);
}

.hpt-finance-platform .rzm-report-cover h1 {
  margin: 16px 0 10px;
  font-size: clamp(34px, 5vw, 54px);
  line-height: .96;
  letter-spacing: -.05em;
  max-width: 430px;
}

.hpt-finance-platform .rzm-report-cover p {
  margin: 0;
  color: var(--report-muted);
  font-weight: 700;
}

.hpt-finance-platform .rzm-report-cover-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 24px;
}

.hpt-finance-platform .rzm-report-cover-image {
  height: 340px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(15,74,53,.12);
  box-shadow: 0 22px 42px rgba(15,74,53,.12);
}

.hpt-finance-platform .rzm-report-cover-image img,
.hpt-finance-platform .rzm-report-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hpt-finance-platform .rzm-report-cover-metrics,
.hpt-finance-platform .rzm-metric-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.hpt-finance-platform .rzm-report-cover-metrics div,
.hpt-finance-platform .rzm-metric-card,
.hpt-finance-platform .rzm-report-card,
.hpt-finance-platform .rzm-recommendation,
.hpt-finance-platform .rzm-contact-box {
  border: 1px solid rgba(15,74,53,.12);
  background: linear-gradient(180deg, #fff, #fbfdf8);
  border-radius: 18px;
  padding: 16px;
}

.hpt-finance-platform .rzm-report-cover-metrics span,
.hpt-finance-platform .rzm-metric-card span,
.hpt-finance-platform .rzm-report-list span {
  display: block;
  color: var(--report-muted);
  font-size: 11px;
  font-weight: 800;
  margin-bottom: 6px;
}

.hpt-finance-platform .rzm-report-cover-metrics strong,
.hpt-finance-platform .rzm-metric-card strong,
.hpt-finance-platform .rzm-report-list strong {
  color: var(--report-primary-dark);
  font-size: 20px;
  letter-spacing: -.04em;
}

.hpt-finance-platform .rzm-report-page-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding-bottom: 18px;
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(15,74,53,.12);
}

.hpt-finance-platform .rzm-report-page-head strong,
.hpt-finance-platform .rzm-report-page-head span {
  display: block;
}

.hpt-finance-platform .rzm-report-page-head strong { color: var(--report-primary-dark); font-size: 16px; }
.hpt-finance-platform .rzm-report-page-head span { color: var(--report-muted); font-size: 12px; }
.hpt-finance-platform .rzm-report-page-head em { font-style: normal; color: var(--report-primary); font-weight: 900; }

.hpt-finance-platform .rzm-metric-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 0;
  margin-bottom: 22px;
}

.hpt-finance-platform .rzm-metric-card img {
  width: 36px;
  height: 36px;
  margin-bottom: 12px;
}

.hpt-finance-platform .rzm-metric-card strong { font-size: 18px; }

.hpt-finance-platform .rzm-report-section-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 18px;
}

.hpt-finance-platform .rzm-donut {
  width: 150px;
  height: 150px;
  margin: 12px auto 18px;
  border-radius: 50%;
  background: conic-gradient(var(--report-primary) 0 62%, #83c455 62% 100%);
  display: grid;
  place-items: center;
  position: relative;
}

.hpt-finance-platform .rzm-donut::after {
  content: '';
  position: absolute;
  inset: 24px;
  border-radius: 50%;
  background: #fff;
}

.hpt-finance-platform .rzm-donut span {
  position: relative;
  z-index: 2;
  font-weight: 900;
  color: var(--report-primary-dark);
  font-size: 24px;
}

.hpt-finance-platform .rzm-report-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.hpt-finance-platform .rzm-report-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid rgba(15,74,53,.08);
  padding-bottom: 8px;
}

.hpt-finance-platform .rzm-bars {
  height: 190px;
  display: flex;
  align-items: end;
  justify-content: center;
  gap: 28px;
  margin: 10px 0 18px;
}

.hpt-finance-platform .rzm-bars span {
  width: 74px;
  height: var(--h);
  min-height: 34px;
  background: linear-gradient(180deg, var(--report-primary), #82c95a);
  border-radius: 18px 18px 8px 8px;
  position: relative;
}

.hpt-finance-platform .rzm-bars span:nth-child(2) { background: #dce7dd; }
.hpt-finance-platform .rzm-bars b { position: absolute; left: 50%; bottom: -26px; transform: translateX(-50%); font-size: 11px; white-space: nowrap; }

.hpt-finance-platform .rzm-report-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  height: 145px;
  margin-top: 18px;
}

.hpt-finance-platform .rzm-report-gallery img { border-radius: 16px; border: 1px solid rgba(15,74,53,.1); }

.hpt-finance-platform .rzm-scenario-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(15,74,53,.12);
  margin-bottom: 22px;
}

.hpt-finance-platform .rzm-scenario-table th,
.hpt-finance-platform .rzm-scenario-table td {
  padding: 16px 12px;
  border-bottom: 1px solid rgba(15,74,53,.09);
  text-align: center;
  font-size: 13px;
}

.hpt-finance-platform .rzm-scenario-table th:nth-child(3) {
  background: var(--report-primary);
  color: #fff;
}

.hpt-finance-platform .rzm-scenario-table th:nth-child(2),
.hpt-finance-platform .rzm-scenario-table th:nth-child(4) {
  background: var(--report-primary-soft);
  color: var(--report-primary-dark);
}

.hpt-finance-platform .rzm-scenario-table td:first-child,
.hpt-finance-platform .rzm-scenario-table th:first-child {
  text-align: left;
  font-weight: 800;
}

.hpt-finance-platform .rzm-recommendation {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--report-primary-soft);
  margin-bottom: 18px;
}

.hpt-finance-platform .rzm-recommendation img { width: 40px; height: 40px; flex: 0 0 auto; }
.hpt-finance-platform .rzm-recommendation h3 { margin: 0 0 6px; }
.hpt-finance-platform .rzm-recommendation p { margin: 0; color: #385349; line-height: 1.55; }

.hpt-finance-platform .rzm-contact-box {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 230px;
  gap: 22px;
  background: linear-gradient(135deg, var(--report-primary-dark), var(--report-primary));
  color: #fff;
}

.hpt-finance-platform .rzm-contact-box h3,
.hpt-finance-platform .rzm-contact-box p,
.hpt-finance-platform .rzm-contact-box span,
.hpt-finance-platform .rzm-contact-box strong { color: #fff; }
.hpt-finance-platform .rzm-contact-details { display: grid; gap: 6px; font-size: 12px; }
.hpt-finance-platform .rzm-contact-details strong { font-size: 18px; }

.hpt-finance-platform .rzm-report-footer {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  min-height: 72px;
  padding: 18px 34px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  font-size: 10px;
  line-height: 1.45;
}

.hpt-finance-platform .rzm-report-footer--cover {
  background: linear-gradient(135deg, var(--report-primary-dark), var(--report-primary));
  color: #fff;
}

.hpt-finance-platform .rzm-report-footer--simple,
.hpt-finance-platform .rzm-report-footer--client {
  border-top: 1px solid rgba(15,74,53,.12);
  color: var(--report-muted);
  background: #fff;
}

.hpt-finance-platform .rzm-report-footer--client span {
  color: var(--report-primary-dark);
  font-weight: 900;
}

@media (max-width: 1180px) {
  .hpt-finance-platform .hpt-report-builder { grid-template-columns: 1fr; }
  .hpt-finance-platform .hpt-report-form { position: static; }
}

@media (max-width: 760px) {
  .hpt-finance-platform .hpt-report-fields--numbers,
  .hpt-finance-platform .rzm-report-section-grid,
  .hpt-finance-platform .rzm-contact-box { grid-template-columns: 1fr; }
  .hpt-finance-platform .rzm-metric-grid,
  .hpt-finance-platform .rzm-report-cover-metrics { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hpt-finance-platform .rzm-report-page { padding: 24px 20px 92px; min-height: auto; }
  .hpt-finance-platform .rzm-report-cover-image { height: 250px; }
}

@media print {
  body.hpt-report-print-mode * { visibility: hidden !important; }
  body.hpt-report-print-mode .rzm-report-print-root,
  body.hpt-report-print-mode .rzm-report-print-root * { visibility: visible !important; }
  body.hpt-report-print-mode .rzm-report-print-root { position: absolute; left: 0; top: 0; width: 100%; }
  body.hpt-report-print-mode .rzm-report-page { width: 210mm !important; min-height: 297mm !important; margin: 0 !important; border: 0 !important; border-radius: 0 !important; box-shadow: none !important; page-break-after: always; }
}

/* Rezmora Report Builder - v2 polish and print fixes */
.hpt-finance-platform .rzm-report {
  --report-primary-mid: #5aa382;
  --report-logo-bg: #ffffff;
}

.hpt-finance-platform .rzm-report-logo-wrap.is-custom {
  background: var(--report-logo-bg, #ffffff);
  border: 1px solid rgba(15, 74, 53, .10);
}

.hpt-finance-platform .rzm-report-logo-wrap.is-compact img {
  max-width: 145px;
  max-height: 32px;
}

.hpt-finance-platform .rzm-report-logo-wrap.is-large {
  min-height: 66px;
  max-width: 270px;
  padding: 12px 18px;
}

.hpt-finance-platform .rzm-report-logo-wrap.is-large img {
  max-width: 235px;
  max-height: 54px;
}

.hpt-finance-platform .rzm-metric-card,
.hpt-finance-platform .rzm-report-cover-metrics div,
.hpt-finance-platform .rzm-report-card,
.hpt-finance-platform .rzm-contact-box,
.hpt-finance-platform .rzm-recommendation {
  overflow-wrap: anywhere;
}

.hpt-finance-platform .rzm-metric-card img,
.hpt-finance-platform .rzm-recommendation img {
  object-fit: contain;
}

.hpt-finance-platform .rzm-donut {
  background: conic-gradient(var(--report-primary) 0 var(--rzm-margin, 62%), var(--report-primary-mid, #83c455) var(--rzm-margin, 62%) 100%);
}

.hpt-finance-platform .rzm-bars span {
  transition: height .25s ease;
}

.hpt-finance-platform .hpt-report-fields input[type="file"] {
  background: #ffffff;
  border-style: dashed;
  font-size: 12px;
}

.hpt-finance-platform .hpt-report-fields input[type="file"]::file-selector-button {
  border: 0;
  border-radius: 999px;
  background: var(--str-primary, #709f29);
  color: #fff;
  font-weight: 800;
  padding: 8px 12px;
  margin-right: 10px;
  cursor: pointer;
}

.hpt-finance-platform .rzm-scenario-table td,
.hpt-finance-platform .rzm-scenario-table th {
  vertical-align: middle;
}

@media (max-width: 520px) {
  .hpt-finance-platform .rzm-report-cover-metrics,
  .hpt-finance-platform .rzm-metric-grid,
  .hpt-finance-platform .rzm-report-gallery {
    grid-template-columns: 1fr;
  }

  .hpt-finance-platform .rzm-report-gallery {
    height: auto;
  }

  .hpt-finance-platform .rzm-report-gallery img {
    height: 180px;
  }

  .hpt-finance-platform .rzm-scenario-table {
    font-size: 12px;
  }

  .hpt-finance-platform .rzm-scenario-table th,
  .hpt-finance-platform .rzm-scenario-table td {
    padding: 10px 7px;
  }
}

@media print {
  @page { size: A4; margin: 0; }
  html, body { background: #ffffff !important; }
  .hpt-finance-platform .rzm-report,
  .rzm-report {
    gap: 0 !important;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }
  .hpt-finance-platform .rzm-report-page,
  .rzm-report-page {
    width: 210mm !important;
    min-height: 297mm !important;
    margin: 0 auto !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    page-break-after: always;
    break-after: page;
  }
  .hpt-finance-platform .rzm-report-page:last-child,
  .rzm-report-page:last-child {
    page-break-after: auto;
    break-after: auto;
  }
}


/* Rezmora Report Builder - audit fixes */
.hpt-finance-platform .hpt-report-status.is-error {
  background: #fff1f0;
  color: #a61b1b;
  border-color: rgba(166,27,27,.18);
}
.hpt-finance-platform .rzm-report-cover-image img,
.hpt-finance-platform .rzm-report-gallery img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}
.hpt-finance-platform .rzm-report-logo-wrap img {
  width: auto;
  height: auto;
  object-fit: contain;
}
@media print {
  .rzm-report-page { overflow: hidden !important; }
  .rzm-report-cover-image img, .rzm-report-gallery img { object-fit: cover !important; }
}


.hpt-report-actions .hpt-btn-secondary--server{border-color:rgba(15,74,53,.35);background:#f2f8f4;color:#0f4a35}
.hpt-report-actions .hpt-btn-secondary--server:hover{background:#e6f2e9}
.hpt-report-actions .hpt-report-download-link{text-decoration:none;display:inline-flex;align-items:center;justify-content:center}
.hpt-report-actions button[disabled]{opacity:.58;cursor:wait}


/* Rezmora report v9: fixed A4 composition, premium icons and reliable responsive preview */
.hpt-finance-platform .hpt-report-preview-shell {
  overflow: hidden;
  min-width: 0;
  padding: 18px !important;
}
.hpt-finance-platform .hpt-report-preview-toolbar {
  margin-bottom: 16px;
}
.hpt-finance-platform .rzm-report[data-hpt-report-preview] {
  width: 794px !important;
  max-width: none !important;
  margin: 0 auto;
  transform-origin: top left;
  overflow: visible;
}
.hpt-finance-platform .rzm-report[data-hpt-report-preview] .rzm-report-page {
  width: 794px !important;
  height: 1123px !important;
  min-height: 1123px !important;
  max-height: 1123px !important;
  padding: 42px 42px 92px !important;
  box-sizing: border-box !important;
  overflow: hidden !important;
}
.hpt-finance-platform .rzm-report-logo-wrap {
  width: fit-content;
  min-width: 230px;
  min-height: 72px;
  padding: 14px 22px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  box-shadow: 0 12px 30px rgba(15,74,53,.08);
}
.hpt-finance-platform .rzm-report-logo-wrap img {
  max-width: 245px !important;
  max-height: 54px !important;
}
.hpt-finance-platform .rzm-metric-grid {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0,1fr)) !important;
  gap: 14px !important;
}
.hpt-finance-platform .rzm-metric-card {
  min-width: 0;
  padding: 18px 14px !important;
  border-radius: 18px !important;
  overflow-wrap: normal !important;
  word-break: normal !important;
}
.hpt-finance-platform .rzm-metric-card img {
  width: 46px !important;
  height: 46px !important;
  padding: 9px;
  margin-bottom: 12px;
  border-radius: 14px;
  background: var(--report-primary-soft);
  border: 1px solid color-mix(in srgb, var(--report-primary) 18%, transparent);
  box-sizing: border-box;
  display: block !important;
}
.hpt-finance-platform .rzm-metric-card span,
.hpt-finance-platform .rzm-metric-card strong {
  display: block;
  white-space: normal;
  word-break: keep-all;
  overflow-wrap: normal;
  hyphens: none;
}
.hpt-finance-platform .rzm-metric-card strong { font-size: 17px !important; line-height: 1.2; }
.hpt-finance-platform .rzm-report-section-grid {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 16px !important;
}
.hpt-finance-platform .rzm-report-gallery {
  display: grid !important;
  grid-template-columns: repeat(3,1fr) !important;
  height: 145px !important;
}
.hpt-finance-platform .rzm-contact-box {
  display: grid !important;
  grid-template-columns: minmax(0,1.25fr) minmax(250px,.75fr) !important;
  gap: 26px !important;
  align-items: stretch;
  padding: 26px !important;
}
.hpt-finance-platform .rzm-contact-box > div,
.hpt-finance-platform .rzm-contact-details { min-width: 0; }
.hpt-finance-platform .rzm-contact-box h3 {
  font-size: 28px !important;
  line-height: 1.08 !important;
  max-width: 420px;
  word-break: normal !important;
  overflow-wrap: normal !important;
  hyphens: none !important;
}
.hpt-finance-platform .rzm-contact-box p,
.hpt-finance-platform .rzm-contact-details * {
  word-break: normal !important;
  overflow-wrap: anywhere;
}
.hpt-finance-platform .hpt-report-export-main {
  width: 100%;
  justify-content: center;
  min-height: 48px;
  font-size: 14px;
  box-shadow: 0 12px 24px rgba(15,74,53,.18);
}
@media (max-width: 760px) {
  .hpt-finance-platform .rzm-report[data-hpt-report-preview] .rzm-report-page {
    width: 794px !important;
    height: 1123px !important;
    min-height: 1123px !important;
    max-height: 1123px !important;
    padding: 42px 42px 92px !important;
  }
  .hpt-finance-platform .rzm-report[data-hpt-report-preview] .rzm-metric-grid { grid-template-columns: repeat(4,minmax(0,1fr)) !important; }
  .hpt-finance-platform .rzm-report[data-hpt-report-preview] .rzm-report-section-grid { grid-template-columns: 1fr 1fr !important; }
  .hpt-finance-platform .rzm-report[data-hpt-report-preview] .rzm-report-gallery { grid-template-columns: repeat(3,1fr) !important; height:145px !important; }
  .hpt-finance-platform .rzm-report[data-hpt-report-preview] .rzm-contact-box { grid-template-columns: minmax(0,1.25fr) minmax(250px,.75fr) !important; }
}
@media print {
  @page { size: A4 portrait; margin: 0; }
  html, body { width: 210mm; margin: 0 !important; padding: 0 !important; background:#fff !important; }
  .hpt-finance-platform .rzm-report,
  .rzm-report { width: 210mm !important; margin:0 !important; gap:0 !important; zoom:1 !important; }
  .hpt-finance-platform .rzm-report-page,
  .rzm-report-page {
    width: 210mm !important;
    height: 297mm !important;
    min-height: 297mm !important;
    max-height: 297mm !important;
    padding: 11mm 11mm 24mm !important;
    margin: 0 !important;
    border:0 !important;
    border-radius:0 !important;
    box-shadow:none !important;
    overflow:hidden !important;
    page-break-after: always !important;
    break-after: page !important;
    page-break-inside: avoid !important;
    box-sizing:border-box !important;
    -webkit-print-color-adjust: exact !important;
    print-color-adjust: exact !important;
  }
  .rzm-report-page:last-child { page-break-after:auto !important; break-after:auto !important; }
  .rzm-metric-grid { grid-template-columns: repeat(4,minmax(0,1fr)) !important; }
  .rzm-report-section-grid { grid-template-columns:1fr 1fr !important; }
  .rzm-report-gallery { grid-template-columns:repeat(3,1fr) !important; height:38mm !important; }
  .rzm-contact-box { grid-template-columns:minmax(0,1.25fr) minmax(62mm,.75fr) !important; }
}


/* Rezmora v10 - deterministic premium PDF UX */
.hpt-finance-platform .hpt-report-form { position: sticky; top: 18px; align-self: start; }
.hpt-finance-platform .hpt-report-form__head { padding-bottom: 18px; border-bottom: 1px solid rgba(15,74,53,.10); }
.hpt-finance-platform .hpt-report-fieldset { background: #fbfdf9; border: 1px solid rgba(15,74,53,.09); border-radius: 18px; padding: 16px; }
.hpt-finance-platform .hpt-report-fieldset + .hpt-report-fieldset { margin-top: 13px; }
.hpt-finance-platform .hpt-report-actions { position: sticky; bottom: 12px; z-index: 5; background: rgba(255,255,255,.96); box-shadow: 0 14px 38px rgba(15,74,53,.14); border: 1px solid rgba(15,74,53,.10); padding: 12px; border-radius: 18px; backdrop-filter: blur(12px); }
.hpt-finance-platform .hpt-report-export-main { min-height: 50px; font-size: 15px; box-shadow: 0 10px 24px color-mix(in srgb,var(--str-toolkit-primary) 28%,transparent); }
.hpt-finance-platform .hpt-report-export-main:disabled { opacity: .65; cursor: wait; }
.hpt-finance-platform .hpt-report-export-progress { position: relative; height: 12px; margin-top: 13px; border-radius: 999px; background: #eaf0e9; overflow: hidden; }
.hpt-finance-platform .hpt-report-export-progress[hidden] { display:none; }
.hpt-finance-platform .hpt-report-export-progress > span { display:block; height:100%; width:0; border-radius:inherit; background: linear-gradient(90deg,var(--str-toolkit-primary),#8bd23b); transition:width .25s ease; }
.hpt-finance-platform .hpt-report-export-progress > strong { position:absolute; right:8px; top:50%; transform:translateY(-50%); font-size:9px; color:#16372b; }
.hpt-finance-platform .rzm-report-page { background: linear-gradient(180deg,#fff 0%,#fdfefc 100%); }
.hpt-finance-platform .rzm-report-logo-wrap { min-width: 170px; min-height: 64px; padding: 14px 18px; box-shadow: 0 8px 24px rgba(15,74,53,.08); }
.hpt-finance-platform .rzm-report-logo-wrap img { max-width: 210px; max-height: 58px; }
.hpt-finance-platform .rzm-metric-card { box-shadow: 0 10px 28px rgba(15,74,53,.06); }
.hpt-finance-platform .rzm-metric-icon { width: 42px; height: 42px; padding: 9px; background: var(--report-primary-soft); border: 1px solid color-mix(in srgb,var(--report-primary) 16%,transparent); }
.hpt-finance-platform .rzm-contact-box { background: linear-gradient(135deg,var(--report-primary-dark),var(--report-primary)); box-shadow: 0 18px 48px color-mix(in srgb,var(--report-primary) 24%,transparent); }
@media (max-width:980px){.hpt-finance-platform .hpt-report-form{position:static}.hpt-finance-platform .hpt-report-actions{position:static}}

/* Rezmora v12 — premium fixed-layout PDF report */
.hpt-finance-platform .rzm-report {
  --report-accent:#82c341;
  font-family: Inter, Arial, Helvetica, sans-serif;
  color:#14241d;
}
.hpt-finance-platform .rzm-report-page {
  position:relative;
  background:#fff !important;
  color:#14241d;
}
.hpt-finance-platform .rzm-cover-accent {
  position:absolute; inset:0 0 auto auto; width:230px; height:230px;
  background:var(--report-primary-soft); border-radius:0 0 0 100%; opacity:.9;
}
.hpt-finance-platform .rzm-cover-topline { position:relative; z-index:2; display:flex; justify-content:space-between; align-items:center; gap:24px; }
.hpt-finance-platform .rzm-cover-meta { text-align:right; display:flex; flex-direction:column; gap:5px; }
.hpt-finance-platform .rzm-cover-meta span { font-size:11px; text-transform:uppercase; letter-spacing:.15em; color:#718078; font-weight:800; }
.hpt-finance-platform .rzm-cover-meta strong { font-size:13px; color:var(--report-primary-dark); }
.hpt-finance-platform .rzm-report-logo-wrap { min-width:0 !important; width:auto !important; min-height:0 !important; padding:12px 18px !important; border-radius:16px !important; }
.hpt-finance-platform .rzm-report-logo-wrap img { max-width:190px !important; max-height:50px !important; }
.hpt-finance-platform .rzm-report-cover-content { margin-top:28px; display:grid !important; grid-template-columns: .9fr 1.35fr !important; gap:28px !important; align-items:stretch !important; }
.hpt-finance-platform .rzm-cover-copy { padding:22px 4px 10px 0; display:flex; flex-direction:column; align-items:flex-start; }
.hpt-finance-platform .rzm-report-kicker { display:inline-flex; padding:8px 12px; border-radius:999px; background:var(--report-primary-soft); color:var(--report-primary-dark); font-size:10px; line-height:1; font-weight:900; letter-spacing:.08em; text-transform:uppercase; }
.hpt-finance-platform .rzm-report-cover h1 { margin:18px 0 10px !important; font-size:48px !important; line-height:.98 !important; letter-spacing:-.045em; color:#102119 !important; }
.hpt-finance-platform .rzm-report-cover p { margin:0 !important; font-size:15px !important; color:#607168 !important; font-weight:650; }
.hpt-finance-platform .rzm-cover-summary { margin-top:auto; display:flex; flex-direction:column; gap:3px; padding:15px 17px; border-left:4px solid var(--report-accent); background:#f8fbf7; border-radius:0 14px 14px 0; width:100%; box-sizing:border-box; }
.hpt-finance-platform .rzm-cover-summary span { color:#6c7b73; font-size:10px; text-transform:uppercase; letter-spacing:.1em; font-weight:800; }
.hpt-finance-platform .rzm-cover-summary strong { color:var(--report-primary-dark); font-size:16px; }
.hpt-finance-platform .rzm-report-cover-image { height:390px !important; border-radius:26px !important; overflow:hidden; position:relative; box-shadow:0 22px 50px rgba(18,47,35,.16); }
.hpt-finance-platform .rzm-report-cover-image:after { content:""; position:absolute; inset:auto 0 0; height:38%; background:linear-gradient(180deg,rgba(0,0,0,0),rgba(3,20,13,.52)); }
.hpt-finance-platform .rzm-cover-image-label { position:absolute; z-index:2; left:18px; bottom:16px; color:#fff; font-size:11px; font-weight:800; letter-spacing:.04em; }
.hpt-finance-platform .rzm-report-cover-metrics { margin-top:24px !important; grid-template-columns:repeat(3,1fr) !important; gap:14px !important; }
.hpt-finance-platform .rzm-report-cover-metrics > div { position:relative; padding:17px 16px 16px 62px !important; min-height:76px; background:#fff !important; border:1px solid #e1e9e4 !important; box-shadow:0 10px 26px rgba(15,74,53,.07); border-radius:18px !important; box-sizing:border-box; }
.hpt-finance-platform .rzm-report-cover-metrics .rzm-inline-icon { position:absolute; left:15px; top:16px; }
.hpt-finance-platform .rzm-report-cover-metrics span:not(.rzm-inline-icon) { font-size:10px !important; color:#718078 !important; text-transform:uppercase; letter-spacing:.04em; }
.hpt-finance-platform .rzm-report-cover-metrics strong { margin-top:4px; font-size:19px !important; color:var(--report-primary-dark) !important; }
.hpt-finance-platform .rzm-cover-note { margin-top:18px; display:grid; grid-template-columns:90px 1fr; gap:12px; align-items:center; padding:13px 16px; background:var(--report-primary-dark); color:#fff; border-radius:15px; }
.hpt-finance-platform .rzm-cover-note strong { color:var(--report-accent); font-size:11px; text-transform:uppercase; letter-spacing:.08em; }
.hpt-finance-platform .rzm-cover-note span { font-size:11px; line-height:1.45; opacity:.92; }
.hpt-finance-platform .rzm-inline-icon { width:38px; height:38px; border-radius:12px; display:inline-flex; align-items:center; justify-content:center; background:var(--report-primary-soft); color:var(--report-primary); flex:0 0 38px; }
.hpt-finance-platform .rzm-inline-icon svg { width:21px; height:21px; fill:none; stroke:currentColor; stroke-width:1.8; stroke-linecap:round; stroke-linejoin:round; display:block; }
.hpt-finance-platform .rzm-report-page-head { padding-bottom:14px !important; border-bottom:1px solid #dfe7e2 !important; }
.hpt-finance-platform .rzm-report-page-head em { width:34px; height:34px; border-radius:50%; display:flex; align-items:center; justify-content:center; background:var(--report-primary-dark); color:#fff !important; font-size:11px; }
.hpt-finance-platform .rzm-page-title { margin:22px 0 18px; }
.hpt-finance-platform .rzm-page-title > span, .hpt-finance-platform .rzm-card-head span, .hpt-finance-platform .rzm-recommendation > div > span, .hpt-finance-platform .rzm-contact-copy > span { color:var(--report-primary); font-size:9px; font-weight:900; letter-spacing:.13em; text-transform:uppercase; }
.hpt-finance-platform .rzm-page-title h2 { margin:5px 0 4px; font-size:29px; line-height:1.05; letter-spacing:-.03em; color:#12231b; }
.hpt-finance-platform .rzm-page-title p { margin:0; color:#748179; font-size:12px; }
.hpt-finance-platform .rzm-metric-grid { gap:12px !important; }
.hpt-finance-platform .rzm-metric-card { padding:15px !important; min-height:126px; border:1px solid #dfe8e2 !important; background:#fff !important; box-shadow:0 8px 22px rgba(15,74,53,.055) !important; }
.hpt-finance-platform .rzm-metric-card .rzm-inline-icon { width:34px; height:34px; flex-basis:34px; margin-bottom:11px; }
.hpt-finance-platform .rzm-metric-card .rzm-inline-icon svg { width:19px; height:19px; }
.hpt-finance-platform .rzm-metric-card span:not(.rzm-inline-icon) { font-size:10px; color:#68776f; font-weight:750; }
.hpt-finance-platform .rzm-metric-card strong { margin-top:5px; font-size:16px !important; color:#14251d; }
.hpt-finance-platform .rzm-report-section-grid { margin-top:14px; gap:14px !important; }
.hpt-finance-platform .rzm-report-card { min-height:295px; padding:20px !important; border:1px solid #dfe7e2 !important; border-radius:20px !important; box-shadow:0 10px 28px rgba(15,74,53,.055); background:#fff !important; }
.hpt-finance-platform .rzm-card-head h3 { margin:4px 0 0 !important; font-size:23px !important; letter-spacing:-.03em; }
.hpt-finance-platform .rzm-profit-layout { display:grid; grid-template-columns:145px 1fr; gap:18px; align-items:center; margin-top:16px; }
.hpt-finance-platform .rzm-donut-svg { position:relative; width:138px; height:138px; display:flex; align-items:center; justify-content:center; flex-direction:column; }
.hpt-finance-platform .rzm-donut-svg svg { position:absolute; inset:0; width:100%; height:100%; transform:rotate(-90deg); }
.hpt-finance-platform .rzm-donut-track, .hpt-finance-platform .rzm-donut-progress { fill:none; stroke-width:13; }
.hpt-finance-platform .rzm-donut-track { stroke:#e8eee9; }
.hpt-finance-platform .rzm-donut-progress { stroke:var(--report-primary); stroke-linecap:round; stroke-dasharray:0 289; }
.hpt-finance-platform .rzm-donut-svg strong { font-size:23px; color:var(--report-primary-dark); z-index:1; }
.hpt-finance-platform .rzm-donut-svg > span { font-size:10px; color:#7b8780; z-index:1; }
.hpt-finance-platform .rzm-report-list { margin:0 !important; }
.hpt-finance-platform .rzm-report-list li { padding:10px 0 !important; }
.hpt-finance-platform .rzm-report-list li span { font-size:10px; }
.hpt-finance-platform .rzm-report-list li strong { font-size:14px; }
.hpt-finance-platform .rzm-bars { height:165px !important; margin:18px 0 10px !important; display:flex !important; align-items:flex-end !important; justify-content:center !important; gap:42px !important; }
.hpt-finance-platform .rzm-bars > span { height:150px !important; width:66px !important; display:flex !important; flex-direction:column !important; justify-content:flex-end !important; align-items:center !important; position:relative !important; background:none !important; }
.hpt-finance-platform .rzm-bars > span i { display:block; width:58px; height:var(--h); min-height:20px; border-radius:14px 14px 5px 5px; background:var(--report-primary); }
.hpt-finance-platform .rzm-bars > span:last-child i { background:#dbe5de; }
.hpt-finance-platform .rzm-bars b { position:static !important; margin-top:8px; font-size:10px; color:#34483e; white-space:nowrap; }
.hpt-finance-platform .rzm-rent-card > p { margin:8px 0 0 !important; font-size:10px !important; line-height:1.45; color:#63736a; }
.hpt-finance-platform .rzm-insight-banner { margin-top:14px; padding:14px 16px; border-radius:16px; display:flex; gap:12px; align-items:flex-start; background:var(--report-primary-soft); border:1px solid #d8e6dc; }
.hpt-finance-platform .rzm-insight-banner strong { font-size:12px; color:var(--report-primary-dark); }
.hpt-finance-platform .rzm-insight-banner p { margin:3px 0 0; font-size:10px; line-height:1.45; color:#51645a; }
.hpt-finance-platform .rzm-report-gallery { margin-top:14px !important; height:128px !important; gap:10px !important; }
.hpt-finance-platform .rzm-report-gallery img { border-radius:16px !important; }
.hpt-finance-platform .rzm-scenario-cards { display:grid; grid-template-columns:repeat(3,1fr); gap:12px; margin-top:8px; }
.hpt-finance-platform .rzm-scenario-cards article { padding:18px 15px; border:1px solid #dfe7e2; border-radius:18px; background:#fff; box-shadow:0 8px 22px rgba(15,74,53,.05); }
.hpt-finance-platform .rzm-scenario-cards article.is-featured { background:var(--report-primary-dark); color:#fff; border-color:var(--report-primary-dark); transform:translateY(-5px); box-shadow:0 16px 34px rgba(15,74,53,.18); }
.hpt-finance-platform .rzm-scenario-cards article > span { display:inline-flex; padding:6px 9px; border-radius:999px; background:var(--report-primary-soft); color:var(--report-primary-dark); font-size:9px; font-weight:900; text-transform:uppercase; }
.hpt-finance-platform .rzm-scenario-cards article.is-featured > span { background:rgba(255,255,255,.14); color:#fff; }
.hpt-finance-platform .rzm-scenario-cards article > strong { display:block; margin-top:13px; font-size:21px; line-height:1.05; }
.hpt-finance-platform .rzm-scenario-cards article > small { display:block; margin-top:4px; color:#748078; font-size:9px; }
.hpt-finance-platform .rzm-scenario-cards article.is-featured > small { color:rgba(255,255,255,.65); }
.hpt-finance-platform .rzm-scenario-cards dl { margin:15px 0 0; }
.hpt-finance-platform .rzm-scenario-cards dl > div { display:flex; justify-content:space-between; gap:8px; padding:8px 0; border-top:1px solid #e5ebe7; }
.hpt-finance-platform .rzm-scenario-cards article.is-featured dl > div { border-color:rgba(255,255,255,.15); }
.hpt-finance-platform .rzm-scenario-cards dt { font-size:9px; color:#748078; }
.hpt-finance-platform .rzm-scenario-cards article.is-featured dt { color:rgba(255,255,255,.66); }
.hpt-finance-platform .rzm-scenario-cards dd { margin:0; font-size:10px; font-weight:850; }
.hpt-finance-platform .rzm-recommendation { margin-top:20px !important; padding:18px !important; display:flex !important; gap:14px !important; border-radius:18px !important; background:var(--report-primary-soft) !important; border:1px solid #d6e5da !important; }
.hpt-finance-platform .rzm-recommendation > img { display:none !important; }
.hpt-finance-platform .rzm-recommendation h3 { margin:4px 0 5px !important; font-size:22px !important; color:var(--report-primary-dark) !important; }
.hpt-finance-platform .rzm-recommendation p { margin:0 !important; font-size:10px !important; line-height:1.5; color:#52665b !important; }
.hpt-finance-platform .rzm-strengths { margin-top:13px; display:grid; grid-template-columns:repeat(3,1fr); gap:10px; }
.hpt-finance-platform .rzm-strengths > div { padding:13px; border:1px solid #e0e8e3; border-radius:16px; background:#fff; }
.hpt-finance-platform .rzm-strengths .rzm-inline-icon { width:32px; height:32px; flex-basis:32px; }
.hpt-finance-platform .rzm-strengths strong { display:block; margin-top:8px; font-size:11px; color:#183229; }
.hpt-finance-platform .rzm-strengths p { margin:4px 0 0; font-size:9px; line-height:1.4; color:#6a7971; }
.hpt-finance-platform .rzm-contact-box { margin-top:14px !important; padding:20px 22px !important; grid-template-columns:1.35fr .65fr !important; gap:24px !important; border-radius:20px !important; background:var(--report-primary-dark) !important; box-shadow:none !important; }
.hpt-finance-platform .rzm-contact-copy h3 { margin:5px 0 7px !important; color:#fff !important; font-size:24px !important; line-height:1.05 !important; }
.hpt-finance-platform .rzm-contact-copy p { margin:0 !important; color:rgba(255,255,255,.74) !important; font-size:10px !important; line-height:1.45; }
.hpt-finance-platform .rzm-contact-details { border-left:1px solid rgba(255,255,255,.18); padding-left:20px; display:flex !important; flex-direction:column !important; justify-content:center !important; gap:7px !important; color:#fff !important; }
.hpt-finance-platform .rzm-contact-details strong { font-size:15px; color:#fff !important; }
.hpt-finance-platform .rzm-contact-details span { display:block !important; color:rgba(255,255,255,.78) !important; font-size:9px !important; line-height:1.35 !important; word-break:normal !important; overflow-wrap:anywhere !important; }
.hpt-finance-platform .rzm-report-footer { left:42px !important; right:42px !important; bottom:25px !important; }
.hpt-finance-platform .rzm-report-footer--cover { background:transparent !important; color:#607168 !important; border-top:1px solid #dfe7e2; padding:12px 0 0 !important; border-radius:0 !important; }
.hpt-finance-platform .rzm-report-footer--cover strong { color:var(--report-primary-dark) !important; }
.hpt-finance-platform .rzm-report-footer--simple, .hpt-finance-platform .rzm-report-footer--client { background:transparent !important; color:#6d7a73 !important; border-top:1px solid #e1e8e3; padding:10px 0 0 !important; border-radius:0 !important; }
.hpt-finance-platform .rzm-report-footer--client strong { max-width:72%; text-align:right; font-size:8px !important; }
@media (max-width:760px){
  .hpt-finance-platform .rzm-report[data-hpt-report-preview] .rzm-report-cover-content{grid-template-columns:.9fr 1.35fr !important}
  .hpt-finance-platform .rzm-report[data-hpt-report-preview] .rzm-scenario-cards,.hpt-finance-platform .rzm-report[data-hpt-report-preview] .rzm-strengths{grid-template-columns:repeat(3,1fr)!important}
}
@media print {
  .rzm-report-cover-content{grid-template-columns:.9fr 1.35fr!important}
  .rzm-scenario-cards,.rzm-strengths{grid-template-columns:repeat(3,1fr)!important}
}


/* Rezmora 13.0 — saved PDF report history */
.hpt-report-history {
  margin-bottom: 22px;
  padding: 22px;
}
.hpt-report-history-head,
.hpt-report-history-item,
.hpt-report-history-actions {
  display: flex;
  align-items: center;
}
.hpt-report-history-head {
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(15, 74, 53, .12);
}
.hpt-report-history-head span {
  display: block;
  margin-bottom: 4px;
  color: var(--hpt-green, #709f29);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
}
.hpt-report-history-head h3 {
  margin: 0;
  font-size: 22px;
}
.hpt-report-history-head small {
  max-width: 390px;
  color: #6b766f;
  line-height: 1.5;
  text-align: right;
}
.hpt-report-history-list {
  display: grid;
  gap: 10px;
  padding-top: 14px;
}
.hpt-report-history-item {
  justify-content: space-between;
  gap: 16px;
  padding: 14px 15px;
  border: 1px solid rgba(15, 74, 53, .11);
  border-radius: 14px;
  background: #fbfdf9;
}
.hpt-report-history-item > div:first-child {
  min-width: 0;
}
.hpt-report-history-item strong,
.hpt-report-history-item span {
  display: block;
}
.hpt-report-history-item strong {
  overflow: hidden;
  color: #18382c;
  font-size: 14px;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.hpt-report-history-item span {
  margin-top: 4px;
  color: #738079;
  font-size: 12px;
}
.hpt-report-history-actions {
  flex: 0 0 auto;
  gap: 8px;
}
.hpt-report-history-actions .hpt-btn-secondary,
.hpt-report-delete {
  min-height: 38px;
  padding: 9px 13px;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 750;
  text-decoration: none;
}
.hpt-report-delete {
  border: 1px solid rgba(176, 49, 49, .18);
  background: #fff6f6;
  color: #a22b2b;
  cursor: pointer;
}
.hpt-report-delete:hover {
  border-color: rgba(176, 49, 49, .35);
  background: #ffeded;
}
.hpt-report-history-empty {
  padding: 20px;
  border: 1px dashed rgba(15, 74, 53, .18);
  border-radius: 14px;
  color: #708078;
  text-align: center;
}
@media (max-width: 720px) {
  .hpt-report-history-head,
  .hpt-report-history-item {
    align-items: flex-start;
    flex-direction: column;
  }
  .hpt-report-history-head small {
    max-width: none;
    text-align: left;
  }
  .hpt-report-history-actions {
    width: 100%;
  }
  .hpt-report-history-actions > * {
    flex: 1 1 0;
    text-align: center;
  }
}
