:root {
    --hs-ink: #111827;
    --hs-night: #0b1220;
    --hs-night-2: #172033;
    --hs-canvas: #f7f4ed;
    --hs-surface: #ffffff;
    --hs-surface-muted: #fbfaf7;
    --hs-border: #ddd6c8;
    --hs-border-strong: #c9bfad;
    --hs-text-muted: #667085;
    --hs-gold: #d8a23a;
    --hs-gold-strong: #a66f17;
    --hs-teal: #1f7a76;
    --hs-teal-strong: #155e5a;
    --hs-danger: #b42318;
    --hs-success: #16803c;
    --hs-focus: rgba(31, 122, 118, 0.22);
    --hs-shadow-sm: 0 10px 24px rgba(17, 24, 39, 0.08);
    --hs-shadow-md: 0 18px 48px rgba(17, 24, 39, 0.12);
    --hs-radius: 0.5rem;
    --hs-radius-sm: 0.375rem;
}

* {
    box-sizing: border-box;
}

html {
    min-height: 100%;
}

body {
    background:
        linear-gradient(180deg, rgba(247, 244, 237, 0.98), rgba(248, 250, 252, 0.98)),
        #f7f4ed;
    color: var(--hs-ink);
    font-family: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
    min-height: 100vh;
    overflow-x: hidden;
    text-rendering: optimizeLegibility;
}

a {
    color: var(--hs-teal);
}

a:hover {
    color: var(--hs-teal-strong);
}

img,
iframe {
    max-width: 100%;
}

.app-navbar {
    background: rgba(11, 18, 32, 0.96);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 16px 36px rgba(11, 18, 32, 0.18);
    min-height: 72px;
}

.app-brand {
    align-items: center;
    color: #ffffff;
    display: inline-flex;
    gap: 0.75rem;
    min-width: 0;
}

.app-brand:hover,
.app-brand:focus {
    color: #ffffff;
}

.app-brand__mark {
    align-items: center;
    background: var(--hs-gold);
    border-radius: var(--hs-radius);
    color: var(--hs-night);
    display: inline-flex;
    flex: 0 0 42px;
    font-size: 0.9rem;
    font-weight: 800;
    height: 42px;
    justify-content: center;
    width: 42px;
}

.app-brand__copy {
    display: grid;
    line-height: 1.1;
    min-width: 0;
}

.app-brand__name {
    font-size: 1rem;
    font-weight: 750;
    letter-spacing: 0;
}

.app-brand__meta {
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.75rem;
    font-weight: 600;
    margin-top: 0.15rem;
}

.app-navbar__toggle {
    border-color: rgba(255, 255, 255, 0.22);
    border-radius: var(--hs-radius);
}

.app-navbar__toggle:focus {
    box-shadow: 0 0 0 0.2rem rgba(216, 162, 58, 0.28);
}

.app-nav {
    gap: 0.25rem;
}

.app-navbar .nav-link {
    border-radius: var(--hs-radius);
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.93rem;
    font-weight: 650;
    padding: 0.55rem 0.75rem;
}

.app-navbar .nav-link:hover,
.app-navbar .nav-link:focus {
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
}

.app-userbar {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: flex-end;
}

.app-userbar__name {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.9rem;
}

.app-page-shell {
    min-height: calc(100vh - 72px);
}

.app-page-shell--admin-dashboard {
    min-height: 100vh;
}

.app-content-shell {
    padding-bottom: 3rem;
    padding-top: 2rem;
}

.app-content-shell--admin-dashboard {
    padding: 1rem;
}

.page-shell {
    min-height: calc(100vh - 72px);
}

.text-muted {
    color: var(--hs-text-muted) !important;
}

.text-white-75 {
    color: rgba(255, 255, 255, 0.78);
}

.btn {
    border-radius: var(--hs-radius);
    font-weight: 700;
    min-height: 40px;
    padding-inline: 1rem;
}

.btn-sm {
    min-height: 34px;
}

.btn-lg {
    min-height: 48px;
    padding-inline: 1.25rem;
}

.btn-primary,
.btn-brand {
    background-color: var(--hs-teal);
    border-color: var(--hs-teal);
    color: #ffffff;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-brand:hover,
.btn-brand:focus {
    background-color: var(--hs-teal-strong);
    border-color: var(--hs-teal-strong);
    color: #ffffff;
}

.btn-warning {
    background-color: var(--hs-gold);
    border-color: var(--hs-gold);
    color: var(--hs-night);
}

.btn-warning:hover,
.btn-warning:focus {
    background-color: #c8912c;
    border-color: #c8912c;
    color: var(--hs-night);
}

.btn-outline-primary {
    border-color: var(--hs-teal);
    color: var(--hs-teal);
}

.btn-outline-primary:hover,
.btn-outline-primary:focus {
    background-color: var(--hs-teal);
    border-color: var(--hs-teal);
    color: #ffffff;
}

.btn-brand-outline {
    border-color: rgba(255, 255, 255, 0.34);
    color: #ffffff;
}

.btn-brand-outline:hover,
.btn-brand-outline:focus {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.62);
    color: #ffffff;
}

.btn-outline-secondary {
    border-color: var(--hs-border-strong);
    color: var(--hs-ink);
}

.btn-outline-secondary:hover,
.btn-outline-secondary:focus {
    background-color: var(--hs-night);
    border-color: var(--hs-night);
    color: #ffffff;
}

.card,
.auth-card,
.info-tile,
.content-card,
.empty-state,
.wizard-shell,
.otp-card,
.package-card,
.source-block,
.story-reader,
.signature-pad-wrap,
.signature-preview {
    background-color: var(--hs-surface);
    border: 1px solid var(--hs-border);
    border-radius: var(--hs-radius);
    box-shadow: var(--hs-shadow-sm);
}

.card {
    overflow: hidden;
}

.auth-card {
    border: 1px solid var(--hs-border);
}

.app-page-shell--login {
    background:
        radial-gradient(circle at 18% 12%, rgba(31, 122, 118, 0.16), transparent 30%),
        radial-gradient(circle at 84% 18%, rgba(216, 162, 58, 0.16), transparent 28%),
        linear-gradient(135deg, #f4f7fb 0%, #eef3f8 52%, #f8fafc 100%);
    min-height: 100vh;
}

.app-content-shell--login {
    min-height: 100vh;
    padding: 0;
}

.admin-login-shell {
    align-items: center;
    display: grid;
    min-height: 100vh;
    padding: clamp(1.25rem, 4vw, 3rem);
}

.admin-login-panel {
    display: grid;
    gap: 1rem;
    margin-inline: auto;
    max-width: 480px;
    width: min(100%, 480px);
}

.admin-login-brand {
    align-items: center;
    display: inline-flex;
    gap: 0.75rem;
    justify-self: start;
}

.admin-login-brand__mark {
    align-items: center;
    background: var(--hs-gold);
    border-radius: 12px;
    box-shadow: 0 12px 28px rgba(166, 111, 23, 0.18);
    color: var(--hs-night);
    display: inline-flex;
    flex: 0 0 44px;
    font-size: 0.88rem;
    font-weight: 850;
    height: 44px;
    justify-content: center;
    letter-spacing: 0;
    width: 44px;
}

.admin-login-brand__copy {
    display: grid;
    line-height: 1.15;
}

.admin-login-brand__copy strong {
    color: var(--hs-night);
    font-size: 1rem;
    font-weight: 800;
}

.admin-login-brand__copy small {
    color: var(--hs-text-muted);
    font-size: 0.78rem;
    font-weight: 700;
}

.admin-login-card {
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(203, 213, 225, 0.9);
    border-radius: 16px;
    box-shadow: 0 24px 70px rgba(15, 23, 42, 0.14);
    display: grid;
    gap: 1.5rem;
    padding: clamp(1.5rem, 4vw, 2.25rem);
}

.admin-login-card__header {
    display: grid;
    gap: 0.35rem;
}

.admin-login-card__header h1 {
    color: var(--hs-night);
    font-size: 1.7rem;
    font-weight: 800;
    letter-spacing: 0;
    line-height: 1.15;
    margin: 0;
}

.admin-login-card__header p {
    color: var(--hs-text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

.admin-login-form {
    display: grid;
    gap: 1rem;
}

.admin-login-field {
    display: grid;
    gap: 0.45rem;
}

.admin-login-field label {
    color: var(--hs-night);
    font-size: 0.88rem;
    font-weight: 750;
}

.admin-login-input {
    border-color: #cbd5e1;
    border-radius: 10px;
    font-size: 1rem;
    min-height: 48px;
}

.admin-login-input:focus {
    border-color: var(--hs-teal);
    box-shadow: 0 0 0 0.2rem var(--hs-focus);
}

.admin-login-check {
    align-items: center;
    display: flex;
    gap: 0.5rem;
    margin: 0.15rem 0 0.25rem;
    min-height: 28px;
}

.admin-login-check .form-check-input {
    flex: 0 0 auto;
    margin: 0;
}

.admin-login-check .form-check-label {
    color: var(--hs-ink);
    font-size: 0.94rem;
}

.admin-login-button {
    border-radius: 10px;
    font-size: 1rem;
    min-height: 48px;
}

.form-label {
    color: var(--hs-ink);
    font-size: 0.93rem;
    font-weight: 700;
}

.form-control,
.form-select {
    background-color: #ffffff;
    border-color: var(--hs-border-strong);
    border-radius: var(--hs-radius);
    color: var(--hs-ink);
    min-height: 44px;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--hs-teal);
    box-shadow: 0 0 0 0.2rem var(--hs-focus);
}

textarea.form-control {
    min-height: 120px;
}

.form-check-input {
    border-color: var(--hs-border-strong);
}

.form-check-input:checked {
    background-color: var(--hs-teal);
    border-color: var(--hs-teal);
}

.form-check-input:focus {
    border-color: var(--hs-teal);
    box-shadow: 0 0 0 0.2rem var(--hs-focus);
}

.badge {
    border-radius: 999px;
    font-weight: 750;
    letter-spacing: 0;
    padding: 0.45rem 0.7rem;
}

.text-bg-warning {
    background-color: var(--hs-gold) !important;
    color: var(--hs-night) !important;
}

.alert {
    border-radius: var(--hs-radius);
}

.alert-danger {
    background-color: #fff1f0;
    border-color: #f5b4ae;
    color: var(--hs-danger);
}

.alert-success {
    background-color: #eefbf2;
    border-color: #a7e3ba;
    color: var(--hs-success);
}

.table {
    --bs-table-bg: #ffffff;
    --bs-table-striped-bg: #fbfaf7;
    border-color: var(--hs-border);
    color: var(--hs-ink);
    vertical-align: middle;
}

.table thead th {
    background-color: var(--hs-night);
    color: #ffffff;
    font-size: 0.83rem;
    font-weight: 750;
    text-transform: uppercase;
}

.table-responsive {
    border: 1px solid var(--hs-border);
    border-radius: var(--hs-radius);
    box-shadow: var(--hs-shadow-sm);
}

.landing-hero {
    background-image:
        linear-gradient(90deg, rgba(11, 18, 32, 0.9), rgba(11, 18, 32, 0.48)),
        url("../img/landing-biopic-hero.jpg");
    background-position: center 42%;
    background-size: cover;
    border-radius: var(--hs-radius);
    box-shadow: var(--hs-shadow-md);
    overflow: hidden;
}

.landing-hero__overlay {
    background: linear-gradient(180deg, rgba(11, 18, 32, 0.1), rgba(11, 18, 32, 0.68));
    padding: 3.5rem;
}

.landing-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
}

.min-vh-landing {
    min-height: 560px;
}

.landing-section {
    margin-bottom: 4.5rem;
}

.section-heading {
    margin-bottom: 1.5rem;
    max-width: 720px;
}

.section-heading--center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.section-heading--split {
    align-items: end;
    display: grid;
    gap: 1rem;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 440px);
    max-width: none;
}

.section-kicker {
    color: var(--hs-gold-strong);
    display: inline-flex;
    font-size: 0.78rem;
    font-weight: 800;
    margin-bottom: 0.65rem;
    text-transform: uppercase;
}

.section-kicker--light {
    color: var(--hs-gold);
}

.section-heading h2,
.landing-section h2,
.card h1,
.card h2,
.card h3 {
    color: var(--hs-ink);
}

.btn-hero-secondary {
    background-color: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.32);
    color: #ffffff;
}

.btn-hero-secondary:hover,
.btn-hero-secondary:focus {
    background-color: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.55);
    color: #ffffff;
}

.hero-proof-panel {
    backdrop-filter: blur(14px);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--hs-radius);
    box-shadow: 0 22px 52px rgba(0, 0, 0, 0.22);
    color: #ffffff;
    padding: 1.25rem;
}

.hero-proof-panel__label {
    color: var(--hs-gold);
    display: block;
    font-size: 0.78rem;
    font-weight: 800;
    margin-bottom: 0.4rem;
    text-transform: uppercase;
}

.hero-proof-panel__title {
    font-size: 1.15rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.hero-proof-panel__grid {
    display: grid;
    gap: 0.7rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.hero-proof-panel__grid div {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: var(--hs-radius);
    min-height: 86px;
    padding: 0.85rem;
}

.hero-proof-panel__grid strong,
.hero-proof-panel__grid span {
    display: block;
}

.hero-proof-panel__grid strong {
    color: var(--hs-gold);
    font-size: 0.86rem;
    margin-bottom: 0.35rem;
}

.hero-proof-panel__grid span {
    color: rgba(255, 255, 255, 0.82);
    font-weight: 700;
}

.landing-workflow {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.info-tile {
    min-height: 160px;
    padding: 1.25rem;
    position: relative;
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.info-tile:hover {
    border-color: var(--hs-gold);
    box-shadow: var(--hs-shadow-md);
    transform: translateY(-3px);
}

.info-tile__number {
    color: var(--hs-gold-strong);
    display: inline-block;
    font-weight: 800;
    margin-bottom: 1rem;
}

.content-card {
    overflow: hidden;
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.content-card:hover {
    border-color: var(--hs-border-strong);
    box-shadow: var(--hs-shadow-md);
    transform: translateY(-3px);
}

.landing-media-section {
    background: var(--hs-night);
    border-radius: var(--hs-radius);
    box-shadow: var(--hs-shadow-md);
    margin-left: calc(var(--bs-gutter-x, 1.5rem) * -0.5);
    margin-right: calc(var(--bs-gutter-x, 1.5rem) * -0.5);
    padding: 2rem;
}

.landing-media-section .section-heading h2,
.landing-media-section .section-heading p {
    color: #ffffff;
}

.landing-media-section .section-heading p {
    color: rgba(255, 255, 255, 0.72) !important;
}

.video-card {
    background-color: var(--hs-night-2);
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow: none;
    color: #ffffff;
}

.video-card__frame {
    background-color: #000000;
}

.video-card__frame iframe {
    border: 0;
}

.video-card__body {
    padding: 1.1rem;
}

.video-card h3,
.video-card p {
    color: #ffffff;
}

.video-card p {
    color: rgba(255, 255, 255, 0.72) !important;
}

.testimonial-card {
    padding: 1.35rem;
}

.testimonial-card__quote {
    color: var(--hs-gold);
    font-size: 2.2rem;
    font-weight: 800;
    height: 1.5rem;
    line-height: 1;
}

.testimonial-card__author {
    border-top: 1px solid var(--hs-border);
    display: grid;
    gap: 0.1rem;
    margin-top: 1rem;
    padding-top: 1rem;
}

.testimonial-card__author span {
    font-weight: 800;
}

.testimonial-card__author small {
    color: var(--hs-text-muted);
}

.faq-section {
    background-color: rgba(255, 255, 255, 0.48);
    border: 1px solid var(--hs-border);
    border-radius: var(--hs-radius);
    padding: 2rem;
}

.empty-state {
    color: var(--hs-text-muted);
    padding: 1.25rem;
}

.cta-band {
    background: var(--hs-night);
    border-radius: var(--hs-radius);
    box-shadow: var(--hs-shadow-md);
    padding: 3rem 1.5rem;
}

.landing-final-cta {
    position: relative;
}

.wizard-shell {
    padding: 1.25rem;
}

.customer-flow-hero {
    align-items: stretch;
    background:
        linear-gradient(135deg, rgba(11, 18, 32, 0.96), rgba(31, 122, 118, 0.82)),
        var(--hs-night);
    border-radius: var(--hs-radius);
    box-shadow: var(--hs-shadow-md);
    color: #ffffff;
    display: grid;
    gap: 1.25rem;
    grid-template-columns: minmax(0, 1fr) minmax(220px, 320px);
    padding: 2rem;
}

.customer-flow-hero h1 {
    color: #ffffff;
}

.customer-flow-hero .text-muted {
    color: rgba(255, 255, 255, 0.72) !important;
}

.customer-flow-hero__copy {
    max-width: 720px;
    min-width: 0;
}

.customer-flow-hero__meta {
    align-content: center;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--hs-radius);
    display: grid;
    gap: 0.35rem;
    padding: 1.25rem;
}

.customer-flow-hero__meta span {
    color: var(--hs-gold);
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
}

.customer-flow-hero__meta strong {
    color: #ffffff;
    font-size: 1.05rem;
}

.customer-flow-hero--compact {
    grid-template-columns: minmax(0, 1fr) minmax(200px, 280px);
}

.customer-wizard-shell {
    background: transparent;
    border: 0;
    box-shadow: none;
    padding: 0;
}

.customer-wizard,
.customer-flow-hero,
.wizard-panel {
    max-width: 100%;
}

.wizard-steps {
    display: grid;
    gap: 0.75rem;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.wizard-step {
    align-items: center;
    background-color: var(--hs-surface-muted);
    border: 1px solid var(--hs-border);
    border-radius: var(--hs-radius);
    color: var(--hs-ink);
    display: flex;
    font-weight: 750;
    gap: 0.5rem;
    justify-content: center;
    min-height: 48px;
    padding: 0.75rem;
    text-decoration: none;
}

.wizard-step strong {
    min-width: 0;
    overflow-wrap: anywhere;
}

.wizard-step:hover,
.wizard-step:focus {
    border-color: var(--hs-teal);
    color: var(--hs-teal-strong);
}

.wizard-step span {
    align-items: center;
    background-color: #efe7d8;
    border-radius: 999px;
    color: var(--hs-gold-strong);
    display: inline-flex;
    height: 26px;
    justify-content: center;
    width: 26px;
}

.wizard-step--active {
    background-color: var(--hs-night);
    border-color: var(--hs-night);
    color: #ffffff;
}

.wizard-step--active span {
    background-color: var(--hs-gold);
    color: var(--hs-night);
}

.wizard-panel {
    background-color: var(--hs-surface);
    border: 1px solid var(--hs-border);
    border-radius: var(--hs-radius);
    box-shadow: var(--hs-shadow-sm);
    overflow: hidden;
}

.wizard-panel__header {
    background:
        linear-gradient(180deg, rgba(251, 250, 247, 0.95), rgba(255, 255, 255, 0.98)),
        var(--hs-surface-muted);
    border-bottom: 1px solid var(--hs-border);
    padding: 1.25rem;
}

.wizard-panel__header span {
    color: var(--hs-gold-strong);
    display: inline-flex;
    font-size: 0.78rem;
    font-weight: 800;
    margin-bottom: 0.35rem;
    text-transform: uppercase;
}

.wizard-panel__body {
    padding: 1.25rem;
}

.story-field {
    min-height: 160px;
}

.upload-card {
    background-color: var(--hs-surface-muted);
    border: 1px solid var(--hs-border);
    border-radius: var(--hs-radius);
    height: 100%;
    padding: 1.25rem;
}

.wizard-actions {
    align-items: center;
    display: flex;
    gap: 1rem;
    justify-content: space-between;
    margin-top: 1.25rem;
}

.wizard-actions__primary {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: flex-end;
}

.otp-card,
.package-card {
    padding: 1.5rem;
}

.otp-toolbar {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: flex-end;
}

.otp-debug-panel {
    border-color: var(--hs-gold);
}

.otp-grid {
    display: grid;
    gap: 1.25rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.otp-card--channel {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
    min-height: 100%;
}

.otp-card__header {
    align-items: flex-start;
    display: flex;
    gap: 1rem;
    justify-content: space-between;
}

.otp-card__eyebrow {
    color: var(--hs-gold-strong);
    display: inline-flex;
    font-size: 0.78rem;
    font-weight: 800;
    margin-bottom: 0.45rem;
    text-transform: uppercase;
}

.otp-card__destination {
    color: var(--hs-text-muted);
    font-weight: 650;
    overflow-wrap: anywhere;
}

.otp-card__meta {
    background-color: var(--hs-surface-muted);
    border: 1px solid var(--hs-border);
    border-radius: var(--hs-radius);
    display: grid;
    gap: 0.25rem;
    padding: 0.9rem 1rem;
}

.otp-card__meta span {
    color: var(--hs-text-muted);
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
}

.otp-card__meta strong {
    color: var(--hs-ink);
    font-weight: 750;
}

.otp-card__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.otp-card__entry {
    margin-top: auto;
}

.otp-input {
    font-size: 1.25rem;
    letter-spacing: 0;
    max-width: 180px;
    text-align: center;
}

.otp-card__verify {
    align-self: flex-start;
}

.customer-package {
    max-width: 100%;
}

.customer-package-hero .customer-flow-hero__meta p {
    color: rgba(255, 255, 255, 0.72);
}

.package-flowbar {
    background-color: var(--hs-surface);
    border: 1px solid var(--hs-border);
    border-radius: var(--hs-radius);
    box-shadow: var(--hs-shadow-sm);
    display: grid;
    gap: 0.75rem;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    padding: 0.75rem;
}

.package-flowbar__step {
    align-items: center;
    background-color: var(--hs-surface-muted);
    border: 1px solid var(--hs-border);
    border-radius: var(--hs-radius-sm);
    color: var(--hs-text-muted);
    display: flex;
    gap: 0.65rem;
    min-height: 52px;
    padding: 0.75rem;
}

.package-flowbar__step span {
    align-items: center;
    background-color: #ffffff;
    border: 1px solid var(--hs-border);
    border-radius: 999px;
    color: var(--hs-gold-strong);
    display: inline-flex;
    flex: 0 0 30px;
    font-weight: 800;
    height: 30px;
    justify-content: center;
    width: 30px;
}

.package-flowbar__step strong {
    color: inherit;
    min-width: 0;
    overflow-wrap: anywhere;
}

.package-flowbar__step--done,
.package-flowbar__step--active {
    color: var(--hs-ink);
}

.package-flowbar__step--active {
    background-color: var(--hs-night);
    border-color: var(--hs-night);
    color: #ffffff;
}

.package-flowbar__step--active span {
    background-color: var(--hs-gold);
    border-color: var(--hs-gold);
    color: var(--hs-night);
}

.package-toolbar {
    align-items: center;
    display: flex;
    gap: 1rem;
    justify-content: space-between;
}

.package-layout {
    align-items: start;
    display: grid;
    gap: 1.25rem;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 340px);
}

.package-layout__plans {
    min-width: 0;
}

.package-grid {
    display: grid;
    gap: 1.25rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.package-card--selectable {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    min-height: 100%;
    overflow: hidden;
    position: relative;
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.package-card--selectable::before {
    background: linear-gradient(90deg, var(--hs-gold), var(--hs-teal));
    content: "";
    height: 4px;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
}

.package-card--selectable:hover,
.package-card--selectable:focus-within {
    border-color: var(--hs-teal);
    box-shadow: var(--hs-shadow-md);
    transform: translateY(-3px);
}

.package-card__header {
    align-items: flex-start;
    display: flex;
    gap: 1rem;
    justify-content: space-between;
}

.package-card__code {
    color: var(--hs-gold-strong);
    display: inline-flex;
    font-size: 0.78rem;
    font-weight: 800;
    margin-bottom: 0.45rem;
    text-transform: uppercase;
}

.package-card__price {
    color: var(--hs-night);
    font-size: 2rem;
    font-weight: 850;
    line-height: 1;
}

.package-card__price span {
    color: var(--hs-text-muted);
    font-size: 0.95rem;
    font-weight: 800;
    margin-right: 0.3rem;
}

.package-card__description {
    color: var(--hs-text-muted);
    margin-bottom: 0;
    min-height: 72px;
}

.package-card__promise {
    display: grid;
    gap: 0.55rem;
    margin-top: auto;
}

.package-card__promise span {
    align-items: center;
    color: var(--hs-ink);
    display: flex;
    gap: 0.55rem;
    font-weight: 650;
}

.package-card__promise span::before {
    background-color: var(--hs-teal);
    border-radius: 999px;
    content: "";
    flex: 0 0 8px;
    height: 8px;
    width: 8px;
}

.package-summary,
.package-payment-card {
    background-color: var(--hs-surface);
    border: 1px solid var(--hs-border);
    border-radius: var(--hs-radius);
    box-shadow: var(--hs-shadow-sm);
}

.package-summary {
    display: grid;
    gap: 1rem;
    padding: 1.25rem;
    position: sticky;
    top: 92px;
}

.package-summary__item {
    align-items: flex-start;
    background-color: var(--hs-surface-muted);
    border: 1px solid var(--hs-border);
    border-radius: var(--hs-radius-sm);
    display: flex;
    gap: 0.85rem;
    padding: 0.9rem;
}

.package-summary__item span {
    color: var(--hs-gold-strong);
    flex: 0 0 auto;
    font-size: 0.8rem;
    font-weight: 850;
}

.package-payment-card {
    overflow: hidden;
}

.package-payment-card__header {
    align-items: center;
    background:
        linear-gradient(180deg, rgba(251, 250, 247, 0.95), rgba(255, 255, 255, 0.98)),
        var(--hs-surface-muted);
    border-bottom: 1px solid var(--hs-border);
    display: flex;
    gap: 1rem;
    justify-content: space-between;
    padding: 1.25rem;
}

.package-payment-card__table {
    overflow-x: auto;
    padding: 0.25rem 1.25rem 1.25rem;
}

.package-payment-card__table .table {
    min-width: 920px;
}

.package-payment-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.payment-consent {
    max-width: 100%;
}

.payment-consent-hero .customer-flow-hero__meta p {
    color: rgba(255, 255, 255, 0.72);
}

.payment-consent-layout {
    align-items: start;
    display: grid;
    gap: 1.25rem;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 390px);
}

.payment-consent-card,
.payment-consent-approval {
    background-color: var(--hs-surface);
    border: 1px solid var(--hs-border);
    border-radius: var(--hs-radius);
    box-shadow: var(--hs-shadow-sm);
}

.payment-consent-card {
    overflow: hidden;
}

.payment-consent-card__header {
    background:
        linear-gradient(180deg, rgba(251, 250, 247, 0.95), rgba(255, 255, 255, 0.98)),
        var(--hs-surface-muted);
    border-bottom: 1px solid var(--hs-border);
    padding: 1.25rem;
}

.payment-consent-card__body,
.payment-consent-approval {
    padding: 1.25rem;
}

.payment-consent-summary {
    display: grid;
    gap: 0;
    grid-template-columns: minmax(140px, 0.35fr) minmax(0, 1fr);
    margin: 0;
}

.payment-consent-summary dt,
.payment-consent-summary dd {
    border-bottom: 1px solid var(--hs-border);
    margin: 0;
    min-width: 0;
    padding: 0.75rem 0;
}

.payment-consent-summary dt {
    color: var(--hs-text-muted);
    font-size: 0.82rem;
    font-weight: 800;
    text-transform: uppercase;
}

.payment-consent-summary dd {
    color: var(--hs-ink);
    font-weight: 700;
    overflow-wrap: anywhere;
}

.payment-consent-copy {
    background-color: var(--hs-surface-muted);
    border: 1px solid var(--hs-border);
    border-radius: var(--hs-radius-sm);
    margin-top: 1.25rem;
    padding: 1rem;
}

.payment-consent-copy p:last-child {
    margin-bottom: 0;
}

.payment-consent-approval {
    display: grid;
    gap: 0.75rem;
    position: sticky;
    top: 92px;
}

.payment-consent-check {
    background-color: var(--hs-surface-muted);
    border: 1px solid var(--hs-border);
    border-radius: var(--hs-radius-sm);
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    font-weight: 700;
    line-height: 1.5;
    padding: 0.9rem;
}

.payment-consent-check .form-check-input {
    flex: 0 0 auto;
    margin-top: 0.25rem;
}

.payment-consent-check .form-check-label {
    cursor: pointer;
}

.payment-consent-actions {
    display: grid;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.customer-approval,
.customer-video-status {
    max-width: 100%;
}

.customer-approval-hero .customer-flow-hero__meta p,
.customer-video-hero .customer-flow-hero__meta p {
    color: rgba(255, 255, 255, 0.72);
}

.approval-toolbar,
.video-status-toolbar {
    align-items: center;
    display: flex;
    gap: 1rem;
    justify-content: space-between;
}

.approval-layout {
    align-items: start;
    display: grid;
    gap: 1.25rem;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 380px);
}

.approval-layout__story {
    min-width: 0;
}

.approval-layout__actions {
    display: grid;
    gap: 1rem;
    min-width: 0;
    position: sticky;
    top: 92px;
}

.approval-story-card,
.approval-action-card,
.video-status-guide,
.video-status-card {
    background-color: var(--hs-surface);
    border: 1px solid var(--hs-border);
    border-radius: var(--hs-radius);
    box-shadow: var(--hs-shadow-sm);
}

.approval-story-card {
    overflow: hidden;
}

.approval-story-card__header,
.video-status-card__header {
    background:
        linear-gradient(180deg, rgba(251, 250, 247, 0.95), rgba(255, 255, 255, 0.98)),
        var(--hs-surface-muted);
    border-bottom: 1px solid var(--hs-border);
    padding: 1.25rem;
}

.approval-story-reader {
    border: 0;
    border-radius: 0;
    box-shadow: none;
    line-height: 1.7;
    padding: 1.5rem;
}

.approval-action-card {
    padding: 1.25rem;
}

.approval-action-card--approve {
    border-color: rgba(22, 128, 60, 0.28);
}

.approval-comment-box {
    min-height: 132px;
}

.approval-sign-card {
    overflow: hidden;
}

.approval-signature-pad {
    background:
        linear-gradient(180deg, rgba(251, 250, 247, 0.88), rgba(255, 255, 255, 0.94)),
        var(--hs-surface-muted);
}

.approval-signature-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.video-status-layout {
    align-items: start;
    display: grid;
    gap: 1.25rem;
    grid-template-columns: minmax(260px, 340px) minmax(0, 1fr);
}

.video-status-guide {
    display: grid;
    gap: 1rem;
    padding: 1.25rem;
    position: sticky;
    top: 92px;
}

.video-status-guide__item {
    background-color: var(--hs-surface-muted);
    border: 1px solid var(--hs-border);
    border-radius: var(--hs-radius-sm);
    padding: 0.9rem;
}

.video-status-guide__item span {
    color: var(--hs-gold-strong);
    display: block;
    font-size: 0.8rem;
    font-weight: 850;
    margin-bottom: 0.25rem;
    text-transform: uppercase;
}

.video-status-card {
    min-width: 0;
    overflow: hidden;
}

.video-status-card__table {
    overflow-x: auto;
    padding: 0.25rem 1.25rem 1.25rem;
}

.video-status-card__table .table {
    min-width: 980px;
}

.source-block {
    background-color: var(--hs-surface-muted);
    height: 100%;
    padding: 1rem;
}

.source-list dt {
    color: var(--hs-text-muted);
    font-size: 0.8rem;
    margin-top: 0.75rem;
    text-transform: uppercase;
}

.source-list dd {
    margin-bottom: 0;
    white-space: pre-wrap;
}

.rich-editor-toolbar {
    background-color: var(--hs-surface-muted);
    border: 1px solid var(--hs-border);
    border-bottom: 0;
    border-radius: var(--hs-radius) var(--hs-radius) 0 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding: 0.75rem;
}

.rich-editor-surface {
    background-color: #ffffff;
    border: 1px solid var(--hs-border);
    border-radius: 0 0 var(--hs-radius) var(--hs-radius);
    min-height: 340px;
    outline: none;
    padding: 1rem;
}

.rich-editor-surface:focus {
    border-color: var(--hs-teal);
    box-shadow: 0 0 0 0.2rem var(--hs-focus);
}

.story-reader {
    padding: 1.25rem;
}

.signature-pad-wrap {
    background-color: var(--hs-surface-muted);
    padding: 0.75rem;
}

.signature-pad {
    background-color: #ffffff;
    border: 1px dashed var(--hs-border-strong);
    border-radius: var(--hs-radius);
    display: block;
    max-width: 100%;
    touch-action: none;
    width: 100%;
}

.signature-preview {
    max-width: 360px;
    width: 100%;
}

.review-comment {
    max-width: 420px;
    white-space: pre-wrap;
}

.queue-payload {
    color: var(--hs-text-muted);
    font-family: Consolas, Monaco, monospace;
    font-size: 0.8rem;
    max-width: 420px;
    white-space: pre-wrap;
}

.accordion {
    --bs-accordion-border-color: var(--hs-border);
    --bs-accordion-border-radius: var(--hs-radius);
    --bs-accordion-inner-border-radius: var(--hs-radius);
    --bs-accordion-active-bg: #fff8e8;
    --bs-accordion-active-color: var(--hs-night);
    --bs-accordion-btn-focus-border-color: var(--hs-teal);
    --bs-accordion-btn-focus-box-shadow: 0 0 0 0.2rem var(--hs-focus);
}

.accordion-item {
    background-color: var(--hs-surface);
}

.admin-workspace {
    align-items: stretch;
    display: grid;
    gap: 1rem;
    grid-template-columns: 248px minmax(0, 1fr);
    min-height: calc(100vh - 2rem);
}

.admin-sidebar {
    background: var(--hs-night);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--hs-radius);
    box-shadow: 0 16px 34px rgba(11, 18, 32, 0.18);
    color: #ffffff;
    max-height: calc(100vh - 2rem);
    min-height: calc(100vh - 2rem);
    overflow-y: auto;
    padding: 0.85rem;
    position: sticky;
    top: 1rem;
}

.admin-sidebar__header {
    align-items: center;
    display: flex;
    gap: 0.65rem;
    justify-content: space-between;
    margin-bottom: 0.85rem;
}

.admin-sidebar__brand {
    align-items: center;
    display: flex;
    gap: 0.65rem;
    min-width: 0;
}

.admin-sidebar__mark,
.admin-menu__icon {
    align-items: center;
    border-radius: var(--hs-radius-sm);
    display: inline-flex;
    flex: 0 0 34px;
    font-weight: 800;
    height: 34px;
    justify-content: center;
    width: 34px;
}

.admin-sidebar__mark {
    background: var(--hs-gold);
    color: var(--hs-night);
}

.admin-sidebar__brand-text {
    display: grid;
    line-height: 1.15;
    min-width: 0;
}

.admin-sidebar__brand-text strong {
    color: #ffffff;
    font-size: 0.92rem;
}

.admin-sidebar__brand-text small {
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.78rem;
    font-weight: 650;
}

.admin-sidebar__toggle {
    align-items: center;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: var(--hs-radius-sm);
    color: #ffffff;
    display: inline-flex;
    flex: 0 0 34px;
    font-weight: 800;
    height: 34px;
    justify-content: center;
    width: 34px;
}

.admin-sidebar__toggle-icon {
    display: grid;
    gap: 4px;
    width: 14px;
}

.admin-sidebar__toggle-icon span {
    background-color: currentColor;
    border-radius: 999px;
    display: block;
    height: 2px;
}

.admin-sidebar__toggle:hover,
.admin-sidebar__toggle:focus {
    background: rgba(255, 255, 255, 0.14);
    outline: none;
}

.admin-menu {
    display: grid;
    gap: 0.25rem;
}

.admin-menu__link {
    align-items: center;
    border: 1px solid transparent;
    border-radius: var(--hs-radius-sm);
    color: rgba(255, 255, 255, 0.76);
    display: flex;
    gap: 0.65rem;
    min-height: 42px;
    padding: 0.3rem 0.4rem;
    text-decoration: none;
}

.admin-menu__link:hover,
.admin-menu__link:focus,
.admin-menu__link--active {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.12);
    color: #ffffff;
}

.admin-menu__icon {
    background: rgba(255, 255, 255, 0.08);
    color: var(--hs-gold);
    font-size: 0.76rem;
}

.admin-menu__text {
    font-size: 0.92rem;
    font-weight: 700;
    min-width: 0;
    overflow-wrap: anywhere;
}

.admin-sidebar__footer {
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    gap: 0.55rem;
    margin-top: 0.85rem;
    padding-top: 0.85rem;
}

.admin-sidebar__status {
    background: var(--hs-success);
    border-radius: 999px;
    display: inline-flex;
    flex: 0 0 10px;
    height: 10px;
    width: 10px;
}

.admin-main {
    display: grid;
    gap: 1rem;
    min-width: 0;
}

.admin-main__hero,
.admin-panel,
.admin-stat-card {
    background: var(--hs-surface);
    border: 1px solid var(--hs-border);
    border-radius: var(--hs-radius);
    box-shadow: var(--hs-shadow-sm);
}

.admin-main__hero {
    align-items: center;
    display: grid;
    gap: 1rem;
    grid-template-columns: minmax(0, 1fr) auto;
    padding: 1.15rem 1.25rem;
}

.admin-main__hero h1 {
    font-size: 1.55rem;
    letter-spacing: 0;
}

.admin-main__hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: flex-end;
}

.admin-stats-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.admin-stat-card {
    display: grid;
    gap: 0.35rem;
    padding: 1.15rem;
}

.admin-stat-card span {
    color: var(--hs-gold-strong);
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
}

.admin-stat-card strong {
    color: var(--hs-ink);
    font-size: 1.05rem;
}

.admin-stat-card small {
    color: var(--hs-text-muted);
    font-weight: 650;
}

.admin-dashboard-grid {
    display: grid;
    gap: 1.25rem;
    grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.75fr);
}

.admin-panel {
    padding: 1.25rem;
}

.admin-panel__header {
    margin-bottom: 1rem;
}

.admin-action-grid {
    display: grid;
    gap: 0.85rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.admin-action-card {
    background: var(--hs-surface-muted);
    border: 1px solid var(--hs-border);
    border-radius: var(--hs-radius);
    color: var(--hs-ink);
    display: grid;
    gap: 0.35rem;
    min-height: 142px;
    padding: 1rem;
    text-decoration: none;
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.admin-action-card:hover,
.admin-action-card:focus {
    border-color: var(--hs-teal);
    box-shadow: var(--hs-shadow-sm);
    color: var(--hs-ink);
    transform: translateY(-2px);
}

.admin-action-card span {
    color: var(--hs-gold-strong);
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
}

.admin-action-card strong {
    font-size: 1.02rem;
}

.admin-action-card small {
    color: var(--hs-text-muted);
    font-weight: 650;
}

.admin-timeline {
    counter-reset: admin-step;
    display: grid;
    gap: 0.85rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.admin-timeline li {
    border: 1px solid var(--hs-border);
    border-radius: var(--hs-radius);
    display: grid;
    gap: 0.25rem;
    padding: 0.9rem 0.9rem 0.9rem 3rem;
    position: relative;
}

.admin-timeline li::before {
    align-items: center;
    background: var(--hs-gold);
    border-radius: 999px;
    color: var(--hs-night);
    content: counter(admin-step);
    counter-increment: admin-step;
    display: inline-flex;
    font-size: 0.82rem;
    font-weight: 800;
    height: 28px;
    justify-content: center;
    left: 0.9rem;
    position: absolute;
    top: 0.95rem;
    width: 28px;
}

.admin-timeline strong {
    color: var(--hs-ink);
}

.admin-timeline span {
    color: var(--hs-text-muted);
    font-size: 0.92rem;
}

.admin-management-grid {
    align-items: start;
}

.admin-management-grid .card {
    height: auto;
}

.admin-management-grid .card-body {
    padding: 1rem;
}

.admin-management-grid .table {
    min-width: 0;
    width: 100%;
}

.admin-management-grid .table th,
.admin-management-grid .table td {
    max-width: 260px;
    overflow-wrap: anywhere;
    vertical-align: middle;
}

.admin-management-grid .table .btn-sm {
    margin-bottom: 0.25rem;
}

.admin-management-grid .col-lg-7 .card-body {
    overflow-x: auto;
}

.admin-management-grid .col-lg-7 .card {
    min-height: 0;
}

.admin-voucher-grid .discount-voucher-table-shell {
    overflow-x: auto;
}

.admin-voucher-grid .discount-voucher-table {
    min-width: 980px;
}

.admin-voucher-grid .discount-voucher-table th,
.admin-voucher-grid .discount-voucher-table td {
    max-width: none;
    overflow-wrap: normal;
    white-space: nowrap;
    word-break: normal;
}

.admin-voucher-grid .discount-voucher-table .data-table__actions {
    justify-content: flex-start;
    min-width: 136px;
}

.admin-voucher-grid .discount-voucher-table .action-button {
    margin-bottom: 0;
}

.admin-table-card .card-body {
    overflow-x: auto;
}

.admin-table-card .table {
    min-width: 760px;
}

.manual-video-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.75fr);
}

.manual-video-storyline {
    min-height: 360px;
}

.manual-video-images {
    display: grid;
    gap: 0.75rem;
}

.manual-video-folder {
    background: #f8fafc;
    border: 1px solid var(--hs-border);
    border-radius: var(--hs-radius-sm);
    padding: 0.85rem 1rem;
}

.manual-video-folder__label {
    color: var(--hs-text-muted);
    font-size: 0.82rem;
    font-weight: 800;
    margin-bottom: 0.3rem;
    text-transform: uppercase;
}

.manual-video-folder__url {
    display: block;
    font-weight: 700;
    overflow-wrap: anywhere;
}

.manual-video-assets-table {
    border: 1px solid var(--hs-border);
    border-radius: var(--hs-radius-sm);
}

.manual-video-assets-table .table {
    min-width: 520px;
}

.manual-video-details.is-hidden,
.manual-video-empty.is-hidden {
    display: none;
}

.manual-video-assets-table__index {
    width: 56px;
}

.manual-video-assets-table__actions {
    width: 190px;
}

.hsh-support-fab {
    align-items: center;
    background: #e8600a;
    border: 0;
    border-radius: 12px 0 0 12px;
    box-shadow: -2px 2px 14px rgba(0, 0, 0, 0.28);
    color: #fff;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    font-size: 0.72rem;
    font-weight: 700;
    gap: 7px;
    letter-spacing: 0.06em;
    padding: 16px 10px;
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 19000;
}

.hsh-support-fab:hover,
.hsh-support-fab:focus-visible {
    background: #cf5405;
    outline: none;
}

.hsh-support-fab i {
    font-size: 1.3rem;
    line-height: 1;
}

.hsh-support-fab span {
    text-transform: uppercase;
    transform: rotate(180deg);
    writing-mode: vertical-rl;
}

.hsh-support-overlay {
    align-items: center;
    background: rgba(6, 2, 0, 0.6);
    display: flex;
    inset: 0;
    justify-content: center;
    padding: 1.25rem;
    position: fixed;
    z-index: 19001;
}

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

.hsh-support-card {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 24px 60px -20px rgba(0, 0, 0, 0.55);
    color: #1d1d1f;
    max-height: calc(100vh - 2.5rem);
    overflow-y: auto;
    width: min(460px, 100%);
}

.hsh-support-card__header {
    align-items: center;
    border-bottom: 1px solid #e6e6e9;
    display: flex;
    justify-content: space-between;
    padding: 1rem 1.25rem;
}

.hsh-support-card__title {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

.hsh-support-card__close {
    background: none;
    border: 0;
    color: #6c757d;
    cursor: pointer;
    font-size: 1.5rem;
    line-height: 1;
}

.hsh-support-card__body {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    padding: 1.05rem 1.25rem;
}

.hsh-support-field label {
    color: #33353a;
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.hsh-support-field input,
.hsh-support-field textarea {
    border: 1px solid #cfd3da;
    border-radius: 8px;
    box-sizing: border-box;
    font: inherit;
    padding: 0.55rem 0.7rem;
    width: 100%;
}

.hsh-support-field textarea {
    min-height: 92px;
    resize: vertical;
}

.hsh-support-note {
    color: #6c757d;
    font-size: 0.82rem;
    margin: 0;
}

.hsh-support-msg {
    font-size: 0.85rem;
    margin: 0;
    min-height: 1em;
}

.hsh-support-msg--err {
    color: #b02a37;
}

.hsh-support-msg--ok {
    color: #0f7b3f;
}

.hsh-support-card__footer {
    border-top: 1px solid #e6e6e9;
    display: flex;
    gap: 0.5rem;
    justify-content: flex-end;
    padding: 0.9rem 1.25rem 1.1rem;
}

.hsh-support-btn {
    appearance: none;
    border: 0;
    border-radius: 8px;
    cursor: pointer;
    font: inherit;
    font-weight: 600;
    padding: 0.55rem 1.25rem;
}

.hsh-support-btn--primary {
    background: #e8600a;
    color: #fff;
}

.hsh-support-btn--primary:disabled {
    cursor: default;
    opacity: 0.6;
}

.hsh-support-btn--ghost {
    background: #f1f3f5;
    color: #33353a;
}

.manual-video-image-number {
    align-items: center;
    background: rgba(31, 132, 127, 0.1);
    border-radius: 999px;
    color: var(--hs-teal-dark);
    display: inline-flex;
    font-size: 0.78rem;
    font-weight: 800;
    height: 2rem;
    justify-content: center;
    width: 2rem;
}

.manual-video-image-card {
    align-items: center;
    background: #fff;
    border: 1px solid var(--hs-border);
    border-radius: var(--hs-radius-sm);
    display: flex;
    gap: 0.75rem;
    justify-content: space-between;
    padding: 0.75rem;
}

.manual-video-image-card:hover {
    border-color: var(--hs-teal);
}

.manual-video-image-card__meta {
    align-items: center;
    display: flex;
    gap: 0.75rem;
    min-width: 0;
}

.manual-video-image-card__index {
    align-items: center;
    background: rgba(31, 132, 127, 0.1);
    border-radius: 999px;
    color: var(--hs-teal-dark);
    display: inline-flex;
    flex: 0 0 auto;
    font-size: 0.78rem;
    font-weight: 800;
    height: 2rem;
    justify-content: center;
    width: 2rem;
}

.manual-video-image-card strong {
    display: block;
    font-weight: 800;
    line-height: 1.2;
}

.manual-video-image-card small {
    color: var(--hs-text-muted);
    display: block;
    margin-top: 0.15rem;
    overflow-wrap: anywhere;
}

.manual-video-image-card__actions {
    display: flex;
    flex: 0 0 auto;
    gap: 0.4rem;
}

.journey-timeline {
    display: grid;
    gap: 0.75rem;
}

.journey-timeline__item {
    align-items: flex-start;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: var(--hs-radius-sm);
    display: grid;
    gap: 0.8rem;
    grid-template-columns: 44px minmax(0, 1fr);
    padding: 0.85rem;
}

.journey-timeline__item--completed {
    background: #f0fdf4;
    border-color: #bbf7d0;
}

.journey-timeline__item--current {
    background: #eff6ff;
    border-color: #bfdbfe;
}

.journey-timeline__item--failed {
    background: #fef2f2;
    border-color: #fecaca;
}

.journey-timeline__item--skipped {
    background: #f8fafc;
    border-color: #cbd5e1;
}

.journey-timeline__marker {
    align-items: center;
    background: #e2e8f0;
    border-radius: 999px;
    color: #334155;
    display: inline-flex;
    font-size: 0.68rem;
    font-weight: 800;
    height: 38px;
    justify-content: center;
    letter-spacing: 0;
    line-height: 1;
    text-align: center;
    width: 38px;
}

.journey-timeline__marker--completed {
    background: #16a34a;
    color: #ffffff;
}

.journey-timeline__marker--current {
    background: #2563eb;
    color: #ffffff;
}

.journey-timeline__marker--failed {
    background: #dc2626;
    color: #ffffff;
}

.journey-timeline__marker--skipped {
    background: #64748b;
    color: #ffffff;
}

.journey-timeline__content {
    min-width: 0;
}

.journey-timeline-modal .modal-dialog {
    max-width: 880px;
}

.journey-timeline-modal .modal-header {
    align-items: flex-start;
}

.journey-timeline-modal__close {
    cursor: pointer;
    pointer-events: auto;
    position: relative;
    z-index: 2;
}

.journey-timeline-modal .section-kicker {
    display: inline-block;
    margin-bottom: 0.35rem;
}

.manual-video-modal .modal-dialog {
    max-width: 1080px;
}

.manual-video-modal .modal-header {
    align-items: flex-start;
}

.manual-video-modal .section-kicker {
    display: inline-block;
    margin-bottom: 0.35rem;
}

.admin-main .empty-state {
    box-shadow: var(--hs-shadow-sm);
}

.admin-workspace--collapsed {
    grid-template-columns: 70px minmax(0, 1fr);
}

.admin-workspace--collapsed .admin-sidebar {
    padding-inline: 0.6rem;
}

.admin-workspace--collapsed .admin-sidebar__header {
    justify-content: center;
}

.admin-workspace--collapsed .admin-sidebar__brand-text,
.admin-workspace--collapsed .admin-menu__text,
.admin-workspace--collapsed .admin-sidebar__footer {
    display: none;
}

.admin-workspace--collapsed .admin-sidebar__brand,
.admin-workspace--collapsed .admin-menu__link {
    justify-content: center;
}

.admin-workspace--collapsed .admin-sidebar__toggle {
    position: absolute;
    right: -12px;
    top: 16px;
}

.app-content-shell--admin-dashboard {
    background: #e9edf4;
    padding: 0;
}

.admin-workspace {
    gap: 0;
    grid-template-columns: 230px minmax(0, 1fr);
    min-height: 100vh;
}

.admin-sidebar {
    background: #151f2d;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    max-height: 100vh;
    min-height: 100vh;
    padding: 1rem 0.85rem;
    top: 0;
}

.admin-sidebar__header {
    margin-bottom: 1.35rem;
}

.admin-sidebar__mark {
    background: #2f80ed;
    color: #ffffff;
}

.admin-menu {
    gap: 0.35rem;
}

.admin-menu__link {
    border-radius: 0.35rem;
    min-height: 38px;
    padding: 0.35rem 0.4rem;
}

.admin-menu__link:hover,
.admin-menu__link:focus,
.admin-menu__link--active {
    background: rgba(47, 128, 237, 0.18);
    border-color: rgba(255, 255, 255, 0.08);
}

.admin-menu__icon {
    background: transparent;
    color: #ffffff;
    flex-basis: 26px;
    height: 26px;
    width: 26px;
}

@media (max-width: 991.98px) {
    .app-navbar {
        min-height: 66px;
    }

    .app-navbar .navbar-collapse {
        padding-top: 1rem;
    }

    .app-nav {
        gap: 0.35rem;
    }

    .app-userbar {
        align-items: stretch;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        justify-content: flex-start;
        margin-top: 0.75rem;
        padding-top: 0.75rem;
    }

    .section-heading--split,
    .landing-workflow {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .customer-flow-hero {
        grid-template-columns: 1fr;
    }

    .otp-grid {
        grid-template-columns: 1fr;
    }

    .package-layout {
        grid-template-columns: 1fr;
    }

    .approval-layout,
    .payment-consent-layout,
    .video-status-layout,
    .manual-video-grid {
        grid-template-columns: 1fr;
    }

    .manual-video-image-card {
        align-items: stretch;
        flex-direction: column;
    }

    .manual-video-image-card__actions {
        justify-content: flex-start;
    }

    .package-grid,
    .package-flowbar {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .package-summary,
    .approval-layout__actions,
    .payment-consent-approval,
    .video-status-guide {
        position: static;
    }

    .admin-workspace,
    .admin-workspace--collapsed {
        grid-template-columns: 1fr;
    }

    .admin-sidebar {
        max-height: none;
        min-height: auto;
        position: static;
    }

    .admin-workspace--collapsed .admin-sidebar__brand-text,
    .admin-workspace--collapsed .admin-menu__text,
    .admin-workspace--collapsed .admin-sidebar__footer {
        display: grid;
    }

    .admin-workspace--collapsed .admin-menu {
        display: none;
    }

    .admin-workspace--collapsed .admin-sidebar__footer {
        display: none;
    }

    .admin-workspace--collapsed .admin-sidebar__header {
        justify-content: space-between;
    }

    .admin-workspace--collapsed .admin-sidebar__toggle {
        position: static;
    }

    .admin-main__hero,
    .admin-dashboard-grid,
    .admin-console-grid {
        grid-template-columns: 1fr;
    }

    .admin-stats-grid,
    .admin-kpi-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hero-proof-panel {
        margin-top: 1rem;
    }
}

@media (max-width: 767.98px) {
    .app-content-shell {
        padding-bottom: 2rem;
        padding-top: 1.25rem;
    }

    .app-content-shell--admin-dashboard {
        padding: 0.75rem;
    }

    .app-brand__mark {
        flex-basis: 38px;
        height: 38px;
        width: 38px;
    }

    .app-brand__name {
        font-size: 0.95rem;
    }

    .app-brand__meta {
        font-size: 0.72rem;
    }

    .landing-hero__overlay {
        padding: 1.5rem;
    }

    .landing-hero .row {
        margin-left: 0;
        margin-right: 0;
    }

    .landing-hero .row > * {
        padding-left: 0;
        padding-right: 0;
    }

    .landing-hero h1 {
        font-size: 2.25rem;
        max-width: calc(100vw - 4.5rem);
        overflow-wrap: break-word;
    }

    .landing-hero .lead {
        font-size: 1.05rem;
        max-width: calc(100vw - 4.5rem);
        overflow-wrap: break-word;
    }

    .min-vh-landing {
        min-height: 520px;
    }

    .landing-hero__actions,
    .landing-hero__actions .btn {
        max-width: calc(100vw - 4.5rem);
        width: 100%;
    }

    .section-heading--center {
        text-align: left;
    }

    .section-heading--split,
    .landing-workflow {
        grid-template-columns: 1fr;
    }

    .customer-flow-hero {
        overflow: hidden;
        padding: 1.25rem;
    }

    .customer-wizard {
        max-width: calc(100vw - 1.5rem);
        overflow-x: hidden;
        width: calc(100vw - 1.5rem);
    }

    .customer-flow-hero,
    .customer-wizard-shell,
    .wizard-panel,
    .wizard-steps--story {
        min-width: 0;
        width: 100%;
    }

    .customer-flow-hero__copy,
    .customer-flow-hero__meta {
        max-width: min(100%, 300px);
        min-width: 0;
    }

    .customer-flow-hero h1,
    .customer-flow-hero p,
    .customer-flow-hero__meta strong {
        max-width: min(100%, 300px);
        overflow-wrap: anywhere;
    }

    .wizard-steps--story {
        grid-template-columns: 1fr;
    }

    .wizard-panel__header,
    .wizard-panel__body,
    .upload-card {
        padding: 1rem;
    }

    .wizard-actions,
    .wizard-actions__primary,
    .wizard-actions .btn {
        align-items: stretch;
        flex-direction: column;
        width: 100%;
    }

    .otp-toolbar,
    .otp-toolbar .btn,
    .otp-card__actions,
    .otp-card__actions .btn,
    .otp-card__verify,
    .otp-input {
        width: 100%;
    }

    .otp-card__header {
        flex-direction: column;
    }

    .package-toolbar,
    .package-toolbar .btn,
    .approval-toolbar,
    .approval-toolbar .btn,
    .video-status-toolbar,
    .video-status-toolbar .btn,
    .approval-signature-actions,
    .approval-signature-actions .btn,
    .package-payment-actions,
    .package-payment-actions .btn {
        align-items: stretch;
        flex-direction: column;
        width: 100%;
    }

    .package-grid,
    .package-flowbar {
        grid-template-columns: 1fr;
    }

    .package-flowbar__step,
    .package-summary__item {
        min-width: 0;
    }

    .package-card__description {
        min-height: 0;
    }

    .package-payment-card__header,
    .package-payment-card__table,
    .payment-consent-card__header,
    .payment-consent-card__body,
    .payment-consent-approval,
    .approval-story-card__header,
    .approval-story-reader,
    .approval-action-card,
    .video-status-guide,
    .video-status-card__header,
    .video-status-card__table {
        padding: 1rem;
    }

    .admin-main__hero-actions,
    .admin-main__hero-actions .btn {
        justify-content: stretch;
        width: 100%;
    }

    .admin-stats-grid,
    .admin-action-grid {
        grid-template-columns: 1fr;
    }

    .landing-media-section,
    .faq-section {
        margin-left: 0;
        margin-right: 0;
        padding: 1.25rem;
    }

    .hero-proof-panel__grid {
        grid-template-columns: 1fr;
    }

    .hero-proof-panel {
        max-width: calc(100vw - 4.5rem);
    }

    .wizard-steps {
        grid-template-columns: 1fr;
    }

    .table-responsive {
        border-radius: 0;
        margin-left: -0.75rem;
        margin-right: -0.75rem;
    }
}

/* Admin dashboard final overrides: keep this section after legacy admin styles. */
.app-content-shell--admin-dashboard {
    --admin-bg: #f3f6fb;
    --admin-surface: #ffffff;
    --admin-surface-muted: #f8fafc;
    --admin-border: #e2e8f0;
    --admin-border-strong: #cbd5e1;
    --admin-ink: #172033;
    --admin-muted: #667085;
    --admin-accent: #1f7a76;
    --admin-accent-soft: #e7f3f1;
    --admin-sidebar: #101827;
    --admin-sidebar-hover: rgba(255, 255, 255, 0.08);
    --admin-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
    --admin-radius: 0.5rem;
    background: var(--admin-bg);
    padding: 0;
}

.admin-workspace {
    display: grid;
    grid-template-columns: 232px minmax(0, 1fr);
    min-height: 100vh;
    width: 100%;
}

.admin-sidebar {
    background: var(--admin-sidebar);
    border: 0;
    border-radius: 0;
    box-shadow: none;
    max-height: 100vh;
    min-height: 100vh;
    overflow-y: auto;
    padding: 1rem 0.75rem;
    position: sticky;
    top: 0;
}

.admin-sidebar__mark {
    background: var(--admin-accent);
    color: #ffffff;
}

.admin-menu__link {
    border-radius: 0.45rem;
    min-height: 40px;
}

.admin-menu__link--active {
    box-shadow: inset 3px 0 0 var(--admin-accent);
}

.admin-menu__icon {
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.88);
    flex-basis: 32px;
    height: 32px;
    width: 32px;
}

.admin-workspace--collapsed {
    grid-template-columns: 72px minmax(0, 1fr);
}

.admin-main {
    background: var(--admin-bg);
    display: grid;
    gap: 1rem;
    min-width: 0;
    padding: 1.25rem;
}

.admin-dashboard-topbar {
    align-items: center;
    background: var(--admin-surface);
    border: 1px solid var(--admin-border);
    border-radius: var(--admin-radius);
    box-shadow: var(--admin-shadow);
    display: flex;
    gap: 1rem;
    justify-content: space-between;
    min-width: 0;
    padding: 1rem;
}

.admin-dashboard-topbar h1 {
    color: var(--admin-ink);
    font-size: 1.35rem;
    font-weight: 750;
    letter-spacing: 0;
    margin: 0;
}

.admin-dashboard-topbar__menu {
    display: none;
}

.admin-dashboard-summary {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.admin-dashboard-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.85fr);
}

.admin-dashboard-panel,
.admin-summary-card,
.admin-production-stat,
.admin-shortcut-grid a {
    background: var(--admin-surface);
    border: 1px solid var(--admin-border);
    border-radius: var(--admin-radius);
    box-shadow: var(--admin-shadow);
}

.admin-dashboard-panel {
    box-shadow: none;
    min-width: 0;
    overflow: hidden;
}

.admin-dashboard-panel--wide {
    grid-column: 1 / -1;
}

.admin-summary-card {
    color: var(--admin-ink);
    display: grid;
    gap: 0.45rem;
    min-height: 154px;
    padding: 1rem;
    text-decoration: none;
}

.admin-summary-card strong {
    color: var(--admin-ink);
    font-size: 2rem;
    font-weight: 750;
    letter-spacing: 0;
    line-height: 1;
}

.admin-summary-card:hover,
.admin-summary-card:focus,
.admin-shortcut-grid a:hover,
.admin-shortcut-grid a:focus {
    border-color: rgba(31, 122, 118, 0.35);
    box-shadow: 0 16px 32px rgba(15, 23, 42, 0.12);
    color: var(--admin-accent);
    outline: none;
    transform: translateY(-1px);
}

.admin-dashboard-panel__header {
    align-items: center;
    border-bottom: 1px solid var(--admin-border);
    display: flex;
    gap: 1rem;
    justify-content: space-between;
    padding: 1rem;
}

.admin-dashboard-panel__header h2 {
    color: var(--admin-ink);
    font-size: 1rem;
    font-weight: 750;
    letter-spacing: 0;
    margin: 0;
}

.admin-dashboard-panel__header a {
    border: 1px solid var(--admin-border);
    border-radius: 0.45rem;
    color: var(--admin-ink);
    font-size: 0.84rem;
    font-weight: 800;
    padding: 0.45rem 0.65rem;
    text-decoration: none;
    white-space: nowrap;
}

.admin-production-grid {
    display: grid;
    gap: 0.85rem;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    padding: 1rem;
}

.admin-notification-list {
    display: grid;
    list-style: none;
    margin: 0;
    padding: 0.5rem 1rem 1rem;
}

.admin-notification-list li {
    border-bottom: 1px solid var(--admin-border);
}

.admin-notification-list li:last-child {
    border-bottom: 0;
}

.admin-notification-list a {
    color: var(--admin-ink);
    display: grid;
    gap: 0.2rem;
    min-height: 58px;
    padding: 0.75rem 0;
    text-decoration: none;
}

.admin-shortcut-grid {
    display: grid;
    gap: 0.85rem;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    padding: 1rem;
}

.admin-shortcut-grid a {
    box-shadow: none;
    color: var(--admin-ink);
    display: grid;
    gap: 0.28rem;
    min-height: 104px;
    padding: 0.9rem;
    text-decoration: none;
}

.admin-sidebar-overlay {
    background: rgba(15, 23, 42, 0.48);
    border: 0;
    display: none;
    inset: 0;
    padding: 0;
    position: fixed;
    z-index: 1030;
}

body.admin-sidebar-open {
    overflow: hidden;
}

/* Admin dashboard density and hierarchy refinements */
.admin-workspace {
    grid-template-columns: 220px minmax(0, 1fr);
}

.admin-sidebar {
    padding: 0.9rem 0.65rem;
}

.admin-sidebar__header {
    margin-bottom: 1rem;
}

.admin-sidebar__mark,
.admin-menu__icon {
    flex-basis: 30px;
    height: 30px;
    width: 30px;
}

.admin-menu {
    gap: 0.18rem;
}

.admin-menu__link {
    min-height: 38px;
    padding: 0.28rem 0.38rem;
}

.admin-menu__text {
    font-size: 0.84rem;
}

.admin-main--dashboard {
    align-content: start;
    gap: 1.25rem;
    padding: 1.5rem clamp(1.25rem, 3vw, 2.5rem) 2rem;
}

.admin-dashboard-topbar {
    background: transparent;
    border: 0;
    border-bottom: 1px solid var(--admin-border);
    border-radius: 0;
    box-shadow: none;
    margin: -1.5rem calc(clamp(1.25rem, 3vw, 2.5rem) * -1) 0;
    min-height: 72px;
    padding: 0 clamp(1.25rem, 3vw, 2.5rem);
}

.admin-dashboard-topbar h1 {
    font-size: 1.45rem;
}

.admin-dashboard-topbar__actions {
    gap: 0.35rem;
}

.admin-icon-button--text {
    background: transparent;
    border-color: transparent;
    color: var(--admin-accent);
    font-size: 0.86rem;
    min-width: auto;
    padding: 0 0.45rem;
}

.admin-dashboard-summary {
    gap: 1rem;
}

.admin-summary-card {
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.06);
    gap: 0.35rem;
    min-height: 132px;
    padding: 1.1rem;
}

.admin-summary-card__label {
    color: var(--admin-ink);
    font-size: 0.92rem;
}

.admin-summary-card strong {
    font-size: 2rem;
}

.admin-summary-card small {
    font-size: 0.84rem;
    line-height: 1.35;
}

.admin-summary-card__action {
    font-size: 0.8rem;
}

.admin-dashboard-grid {
    align-items: start;
    grid-template-columns: minmax(0, 1.55fr) minmax(280px, 0.75fr);
}

.admin-dashboard-panel {
    border-color: #dbe4ef;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.05);
}

.admin-dashboard-panel__header {
    padding: 0.95rem 1rem;
}

.admin-dashboard-panel__header h2 {
    font-size: 1.08rem;
}

.admin-dashboard-panel__header a {
    background: var(--admin-surface);
    min-height: 38px;
}

.admin-production-grid {
    gap: 0.75rem;
    padding: 1rem;
}

.admin-production-stat {
    box-shadow: none;
    min-height: 100px;
    padding: 0.85rem;
}

.admin-production-stat span,
.admin-production-stat strong,
.admin-production-stat small {
    display: block;
}

.admin-production-stat span {
    color: var(--admin-ink);
    font-size: 0.82rem;
    font-weight: 800;
    text-transform: none;
}

.admin-production-stat strong {
    font-size: 1.45rem;
    margin: 0.15rem 0 0.35rem;
}

.admin-production-stat small {
    font-size: 0.78rem;
    line-height: 1.35;
}

.admin-notification-list {
    padding: 0.35rem 1rem 0.8rem;
}

.admin-notification-list a {
    min-height: 56px;
    padding: 0.7rem 0;
}

.admin-notification-list strong {
    font-size: 0.9rem;
}

.admin-shortcut-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
}

.admin-shortcut-grid a {
    min-height: 86px;
    padding: 0.8rem;
}

.admin-shortcut-grid strong {
    font-size: 0.88rem;
}

.admin-shortcut-grid span {
    font-size: 0.78rem;
    line-height: 1.35;
}

/* Admin design system utilities: shared tokens and opt-in classes for admin pages. */
:root {
    --admin-space-xs: 4px;
    --admin-space-sm: 8px;
    --admin-space-md: 16px;
    --admin-space-lg: 24px;
    --admin-space-xl: 32px;
    --admin-radius-card: 12px;
    --admin-radius-button: 8px;
    --admin-radius-input: 8px;
    --admin-page-title-size: 1.35rem;
    --admin-section-title-size: 1rem;
    --admin-body-size: 0.92rem;
    --admin-table-header-size: 0.76rem;
    --admin-table-cell-size: 0.875rem;
}

.page-container {
    display: grid;
    gap: var(--admin-space-lg);
    min-width: 0;
}

.page-header {
    align-items: center;
    background: var(--admin-surface, #ffffff);
    border: 1px solid var(--admin-border, #e2e8f0);
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.05);
    display: flex;
    gap: var(--admin-space-md);
    justify-content: space-between;
    min-width: 0;
    padding: 0.95rem 1.15rem;
}

.page-header__content {
    display: grid;
    gap: 0.2rem;
    min-width: 0;
}

.page-header .section-kicker {
    font-size: 0.72rem;
    letter-spacing: 0.02em;
    line-height: 1.2;
    margin-bottom: 0;
}

.page-title {
    color: var(--admin-ink, var(--hs-ink));
    font-size: var(--admin-page-title-size);
    font-weight: 800;
    letter-spacing: 0;
    line-height: 1.15;
    margin: 0;
}

.page-subtitle {
    color: var(--admin-muted, var(--hs-text-muted));
    font-size: 0.875rem;
    line-height: 1.35;
    margin: 0;
}

.page-header > .btn,
.page-header > a.btn {
    border-radius: var(--admin-radius-button);
    font-size: 0.875rem;
    min-height: 38px;
    padding: 0.45rem 0.85rem;
}

.section-card {
    background: var(--admin-surface, #ffffff);
    border: 1px solid var(--admin-border, #e2e8f0);
    border-radius: var(--admin-radius-card);
    box-shadow: var(--admin-shadow, 0 12px 28px rgba(15, 23, 42, 0.08));
    min-width: 0;
}

.section-card__body {
    display: grid;
    gap: var(--admin-space-md);
    padding: var(--admin-space-lg);
}

.section-card__header {
    align-items: end;
    display: flex;
    gap: var(--admin-space-md);
    justify-content: space-between;
    min-width: 0;
}

.section-title {
    color: var(--admin-ink, var(--hs-ink));
    font-size: var(--admin-section-title-size);
    font-weight: 750;
    letter-spacing: 0;
    line-height: 1.3;
    margin: 0;
}

.section-description {
    color: var(--admin-muted, var(--hs-text-muted));
    font-size: var(--admin-body-size);
    line-height: 1.45;
    margin: 0;
}

.form-toolbar {
    align-items: end;
    display: flex;
    flex-wrap: wrap;
    gap: var(--admin-space-sm);
    justify-content: flex-end;
    min-width: 0;
}

.form-toolbar__field {
    display: grid;
    gap: var(--admin-space-xs);
    min-width: 180px;
}

.form-toolbar label,
.form-label--admin {
    color: var(--admin-muted, var(--hs-text-muted));
    font-size: 0.76rem;
    font-weight: 750;
    letter-spacing: 0;
    line-height: 1.2;
    margin: 0;
}

.form-control--admin,
.form-select--admin {
    border-radius: var(--admin-radius-input);
    font-size: var(--admin-body-size);
    min-height: 38px;
}

.table-shell {
    border: 1px solid var(--admin-border, #e2e8f0);
    border-radius: var(--admin-radius-card);
    min-width: 0;
    overflow: auto;
}

.admin-table-scroll.table-shell,
.table-shell {
    max-width: 100%;
}

.data-table {
    border-color: var(--admin-border, #e2e8f0);
    font-size: var(--admin-table-cell-size);
    margin-bottom: 0;
    min-width: 760px;
}

.table-shell .data-table {
    border: 0;
}

.data-table thead th {
    background: var(--admin-surface-muted, #f8fafc);
    border-bottom: 1px solid var(--admin-border, #e2e8f0);
    color: var(--admin-muted, var(--hs-text-muted));
    font-size: var(--admin-table-header-size);
    font-weight: 800;
    letter-spacing: 0.02em;
    padding: 0.7rem 0.8rem;
    position: sticky;
    text-transform: uppercase;
    top: 0;
    z-index: 2;
}

.data-table tbody td {
    color: var(--admin-ink, var(--hs-ink));
    padding: 0.65rem 0.8rem;
    vertical-align: middle;
}

.data-table tbody tr:hover {
    background: var(--admin-accent-soft, #e7f3f1);
}

.data-table .badge {
    align-items: center;
    border-radius: 999px;
    display: inline-flex;
    font-size: 0.74rem;
    font-weight: 800;
    min-height: 24px;
    padding: 0.35rem 0.6rem;
    white-space: nowrap;
}

.data-table .btn-sm {
    min-height: 32px;
}

.data-table__pager td {
    background: #ffffff;
    border-top: 1px solid var(--admin-border, #e2e8f0);
    padding: 0.75rem 0.8rem;
}

.data-table__pager table {
    margin-left: auto;
}

.data-table__pager a,
.data-table__pager span {
    align-items: center;
    border: 1px solid var(--admin-border, #e2e8f0);
    border-radius: var(--admin-radius-button);
    color: var(--admin-ink, var(--hs-ink));
    display: inline-flex;
    font-size: 0.82rem;
    font-weight: 750;
    justify-content: center;
    line-height: 1;
    margin-left: 0.35rem;
    min-height: 32px;
    min-width: 32px;
    padding: 0.4rem 0.65rem;
    text-decoration: none;
}

.data-table__pager a:hover,
.data-table__pager a:focus {
    background: var(--admin-accent-soft, #e7f3f1);
    border-color: var(--admin-accent, #1f7a76);
    color: var(--admin-accent, #1f7a76);
}

.data-table__pager span {
    background: var(--admin-accent, #1f7a76);
    border-color: var(--admin-accent, #1f7a76);
    color: #ffffff;
}

.data-table__actions {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: var(--admin-space-xs);
    justify-content: flex-end;
}

.status-badge {
    align-items: center;
    border-radius: 999px;
    display: inline-flex;
    font-size: 0.74rem;
    font-weight: 800;
    line-height: 1;
    min-height: 24px;
    padding: 0.35rem 0.6rem;
    white-space: nowrap;
}

.status-badge--success {
    background: #dcfce7;
    color: #166534;
}

.status-badge--warning {
    background: #fef3c7;
    color: #92400e;
}

.status-badge--danger {
    background: #fee2e2;
    color: #991b1b;
}

.status-badge--info {
    background: #dbeafe;
    color: #1e40af;
}

.status-badge--muted {
    background: #f1f5f9;
    color: #475569;
}

.action-button {
    align-items: center;
    border-radius: var(--admin-radius-button);
    display: inline-flex;
    font-size: 0.84rem;
    font-weight: 750;
    justify-content: center;
    min-height: 36px;
    padding: 0.45rem 0.75rem;
    white-space: nowrap;
}

/* Admin sidebar polish */
.admin-sidebar {
    scrollbar-color: rgba(255, 255, 255, 0.22) transparent;
    scrollbar-width: thin;
}

.admin-sidebar__header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: var(--admin-space-md);
}

.admin-sidebar__brand {
    gap: var(--admin-space-sm);
}

.admin-sidebar__mark {
    border-radius: 10px;
    box-shadow: 0 8px 18px rgba(31, 122, 118, 0.28);
    font-size: 0.78rem;
    letter-spacing: 0;
}

.admin-sidebar__brand-text strong {
    font-size: 0.88rem;
    letter-spacing: 0;
}

.admin-sidebar__brand-text small {
    font-size: 0.72rem;
}

.admin-sidebar__toggle {
    border-radius: 8px;
    flex-basis: 32px;
    height: 32px;
    width: 32px;
}

.admin-menu {
    gap: 2px;
}

.admin-menu__link {
    border-radius: 8px;
    gap: var(--admin-space-sm);
    min-height: 40px;
    padding: 0.35rem 0.45rem;
    position: relative;
}

.admin-menu__link::before {
    background: transparent;
    border-radius: 999px;
    content: "";
    height: 22px;
    left: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
}

.admin-menu__link:hover,
.admin-menu__link:focus {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    outline: none;
}

.admin-menu__link:focus-visible,
.admin-sidebar__toggle:focus-visible {
    box-shadow: 0 0 0 3px rgba(31, 122, 118, 0.34);
}

.admin-menu__link--active,
.admin-menu__link--active:hover,
.admin-menu__link--active:focus {
    background: rgba(31, 122, 118, 0.24);
    border-color: rgba(31, 122, 118, 0.42);
    box-shadow: none;
}

.admin-menu__link--active::before {
    background: var(--admin-accent, #1f7a76);
}

.admin-menu__icon {
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.72);
    flex-basis: 30px;
    font-size: 0.68rem;
    height: 30px;
    letter-spacing: 0;
    width: 30px;
}

.admin-menu__link:hover .admin-menu__icon,
.admin-menu__link:focus .admin-menu__icon,
.admin-menu__link--active .admin-menu__icon {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.admin-menu__text {
    font-size: 0.84rem;
    font-weight: 650;
    line-height: 1.2;
}

.admin-sidebar__footer {
    border-top-color: rgba(255, 255, 255, 0.08);
    margin-top: var(--admin-space-md);
    padding-top: var(--admin-space-md);
}

.admin-workspace--collapsed .admin-sidebar {
    padding-inline: 0.7rem;
}

.admin-workspace--collapsed .admin-sidebar__header {
    padding-bottom: var(--admin-space-sm);
}

.admin-workspace--collapsed .admin-menu__link {
    justify-content: center;
    padding-inline: 0;
}

.admin-workspace--collapsed .admin-menu__link::before {
    display: none;
}

.admin-workspace--collapsed .admin-menu__link--active {
    box-shadow: inset 0 -2px 0 var(--admin-accent, #1f7a76);
}

@media (max-width: 767.98px) {
    .page-header,
    .section-card__header {
        align-items: stretch;
        flex-direction: column;
    }

    .form-toolbar,
    .form-toolbar .btn,
    .form-toolbar__field {
        width: 100%;
    }
}

/* Landing page visual polish */
body {
    background: #f4f7fb;
}

.app-navbar {
    background: #0d1424;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    box-shadow: none;
    min-height: 64px;
}

.app-brand__mark {
    flex-basis: 34px;
    font-size: 0.78rem;
    font-weight: 850;
    height: 34px;
    width: 34px;
}

.app-brand__name {
    font-size: 0.88rem;
}

.app-brand__meta {
    font-size: 0.68rem;
}

.app-navbar .nav-link {
    font-size: 0.82rem;
}

.landing-hero {
    background-image:
        linear-gradient(90deg, rgba(11, 18, 32, 0.92), rgba(11, 18, 32, 0.58)),
        url("../img/landing-biopic-hero.jpg");
    background-position: center 42%;
    background-size: cover;
    border-radius: 0.625rem;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.2);
    margin-bottom: 6rem;
}

.landing-hero__overlay {
    background: linear-gradient(180deg, rgba(11, 18, 32, 0.1), rgba(11, 18, 32, 0.5));
    padding: clamp(2rem, 5vw, 4.25rem);
}

.min-vh-landing {
    min-height: 520px;
}

.landing-section {
    margin-bottom: 6rem;
}

.section-heading {
    margin-bottom: 2.2rem;
}

.landing-hero h1 {
    letter-spacing: 0;
    line-height: 1;
    max-width: 680px;
}

.landing-hero .lead {
    font-size: 1.05rem;
    max-width: 640px;
}

.hero-proof-panel {
    background: rgba(23, 32, 51, 0.9);
    border-radius: 0.5rem;
    box-shadow: 0 22px 52px rgba(0, 0, 0, 0.28);
    padding: 1.35rem;
}

.hero-proof-panel__grid div {
    border-radius: 0.375rem;
    min-height: 76px;
}

.landing-workflow {
    gap: 1.35rem;
}

.info-tile {
    border-color: #e7edf5;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.05);
    min-height: 178px;
    padding: 1.35rem;
}

.info-tile:hover {
    border-color: #d8e0ec;
    box-shadow: 0 16px 34px rgba(15, 23, 42, 0.08);
    transform: translateY(-2px);
}

.landing-media-section {
    background: #0d1424;
    border-radius: 0;
    box-shadow: none;
    padding: 4.5rem 2rem;
}

.faq-section {
    background-color: transparent;
    border: 0;
    border-radius: 0;
    padding: 0;
}

.empty-state {
    align-items: center;
    display: grid;
    gap: 0.35rem;
    justify-items: center;
    min-height: 150px;
    text-align: center;
}

.empty-state--media {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: none;
    color: rgba(255, 255, 255, 0.72);
}

.empty-state--light {
    background: transparent;
    border-color: #dbe4f0;
    box-shadow: none;
}

.empty-state__icon {
    align-items: center;
    border: 1px solid currentColor;
    border-radius: 0.4rem;
    color: var(--hs-gold);
    display: inline-flex;
    font-size: 0.72rem;
    font-weight: 800;
    justify-content: center;
    min-height: 30px;
    min-width: 52px;
}

.empty-state strong {
    color: inherit;
    font-size: 1rem;
}

.empty-state small {
    color: inherit;
    opacity: 0.78;
}

.cta-band {
    background: #0d1424;
    border-radius: 0.625rem;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.18);
    padding: 3.75rem 1.5rem;
}

@media (max-width: 1199.98px) {
    .admin-dashboard-summary,
    .admin-production-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

    .admin-workspace {
        grid-template-columns: 208px minmax(0, 1fr);
    }
}

@media (max-width: 991.98px) {
    .landing-hero {
        margin-bottom: 4rem;
    }

    .landing-section {
        margin-bottom: 4.5rem;
    }

    .admin-workspace,
    .admin-workspace--collapsed {
        grid-template-columns: 1fr;
    }

    .admin-main--dashboard {
        padding: 1rem;
    }

    .admin-dashboard-topbar {
        margin: -1rem -1rem 0;
        min-height: 64px;
        padding: 0 1rem;
    }

    .admin-workspace--dashboard .admin-sidebar {
        bottom: 0;
        left: 0;
        max-height: none;
        min-height: 100vh;
        position: fixed;
        top: 0;
        transform: translateX(-100%);
        transition: transform 180ms ease;
        width: min(84vw, 280px);
        z-index: 1040;
    }

    .admin-workspace--dashboard.admin-workspace--mobile-open .admin-sidebar {
        transform: translateX(0);
    }

    body.admin-sidebar-open .admin-sidebar-overlay {
        display: block;
    }

    .admin-workspace--dashboard .admin-sidebar__brand-text,
    .admin-workspace--dashboard .admin-menu__text,
    .admin-workspace--dashboard .admin-sidebar__footer,
    .admin-workspace--dashboard.admin-workspace--collapsed .admin-sidebar__brand-text,
    .admin-workspace--dashboard.admin-workspace--collapsed .admin-menu__text,
    .admin-workspace--dashboard.admin-workspace--collapsed .admin-sidebar__footer {
        display: grid;
    }

    .admin-workspace--dashboard.admin-workspace--collapsed .admin-menu {
        display: grid;
    }

    .admin-workspace--dashboard .admin-sidebar__header,
    .admin-workspace--dashboard.admin-workspace--collapsed .admin-sidebar__header {
        justify-content: space-between;
    }

    .admin-workspace--dashboard .admin-menu__link,
    .admin-workspace--dashboard.admin-workspace--collapsed .admin-menu__link {
        justify-content: flex-start;
    }

    .admin-dashboard-topbar__menu {
        display: inline-grid;
        gap: 3px;
    }

    .admin-dashboard-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767.98px) {
    .landing-hero__overlay {
        padding: 1.25rem;
    }

    .min-vh-landing {
        min-height: 560px;
    }

    .landing-hero h1 {
        font-size: 2.2rem;
    }

    .hero-proof-panel {
        max-width: 100%;
    }

    .landing-media-section {
        padding: 3rem 1rem;
    }

    .cta-band {
        padding: 2.5rem 1rem;
    }

    .app-content-shell--admin-dashboard {
        padding: 0;
    }

    .admin-main {
        gap: 0.85rem;
        padding: 0.85rem;
    }

    .admin-dashboard-topbar {
        align-items: flex-start;
        padding: 0.85rem;
    }

    .admin-dashboard-topbar h1 {
        font-size: 1.12rem;
    }

    .admin-dashboard-topbar__actions {
        display: none;
    }

    .admin-dashboard-summary {
        gap: 0.75rem;
    }

    .admin-summary-card {
        min-height: 118px;
        padding: 0.95rem;
    }

    .admin-dashboard-summary,
    .admin-production-grid,
    .admin-shortcut-grid {
        grid-template-columns: 1fr;
    }

    .admin-summary-card {
        min-height: 128px;
    }

    .admin-dashboard-panel__header {
        align-items: flex-start;
        flex-direction: column;
    }

    .admin-dashboard-panel__header a {
        width: 100%;
    }
}

/* Admin responsive final overrides */
@media (max-width: 991.98px) {
    .app-content-shell--admin-dashboard {
        padding-left: 0;
        padding-right: 0;
    }

    .admin-workspace,
    .admin-workspace--collapsed {
        grid-template-columns: minmax(0, 1fr);
        min-width: 0;
    }

    .admin-workspace:not(.admin-workspace--dashboard) .admin-sidebar {
        border-radius: var(--admin-radius-card);
        max-height: none;
        min-height: auto;
        overflow: hidden;
        padding: var(--admin-space-sm);
        position: static;
        width: 100%;
    }

    .admin-workspace:not(.admin-workspace--dashboard) .admin-sidebar__header {
        margin-bottom: var(--admin-space-sm);
        padding-bottom: var(--admin-space-sm);
    }

    .admin-workspace:not(.admin-workspace--dashboard) .admin-menu {
        display: flex;
        gap: var(--admin-space-xs);
        overflow-x: auto;
        padding-bottom: 2px;
        scrollbar-width: thin;
    }

    .admin-workspace:not(.admin-workspace--dashboard) .admin-menu__link,
    .admin-workspace:not(.admin-workspace--dashboard).admin-workspace--collapsed .admin-menu__link {
        flex: 0 0 auto;
        justify-content: flex-start;
        min-height: 38px;
        padding: 0.35rem 0.55rem;
    }

    .admin-workspace:not(.admin-workspace--dashboard) .admin-sidebar__brand-text,
    .admin-workspace:not(.admin-workspace--dashboard) .admin-menu__text,
    .admin-workspace:not(.admin-workspace--dashboard).admin-workspace--collapsed .admin-sidebar__brand-text,
    .admin-workspace:not(.admin-workspace--dashboard).admin-workspace--collapsed .admin-menu__text {
        display: grid;
    }

    .admin-workspace:not(.admin-workspace--dashboard) .admin-sidebar__footer,
    .admin-workspace:not(.admin-workspace--dashboard).admin-workspace--collapsed .admin-sidebar__footer {
        display: none;
    }

    .admin-workspace:not(.admin-workspace--dashboard) .admin-sidebar__toggle,
    .admin-workspace:not(.admin-workspace--dashboard).admin-workspace--collapsed .admin-sidebar__toggle {
        position: static;
    }

    .admin-workspace:not(.admin-workspace--dashboard).admin-workspace--collapsed .admin-menu__link--active {
        box-shadow: none;
    }

    .admin-main {
        min-width: 0;
    }

    .page-header,
    .section-card__header {
        align-items: stretch;
        flex-direction: column;
    }

    .page-header > .btn,
    .page-header > a.btn {
        align-self: flex-start;
    }

    .form-toolbar {
        justify-content: flex-start;
        width: 100%;
    }

    .form-toolbar__field {
        flex: 1 1 180px;
    }

    .table-shell {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .manual-video-grid {
        grid-template-columns: minmax(0, 1fr);
    }
}

@media (max-width: 767.98px) {
    .admin-main {
        gap: var(--admin-space-md);
        padding: var(--admin-space-sm) 0;
    }

    .page-header {
        padding: 0.85rem;
    }

    .page-title {
        font-size: 1.15rem;
    }

    .page-subtitle,
    .section-description {
        font-size: 0.84rem;
    }

    .section-card__body,
    .admin-main .card-body {
        padding: var(--admin-space-md);
    }

    .form-toolbar,
    .form-toolbar .btn,
    .form-toolbar__field,
    .page-header > .btn,
    .page-header > a.btn {
        width: 100%;
    }

    .data-table {
        min-width: 680px;
    }

    .data-table thead th,
    .data-table tbody td {
        padding: 0.55rem 0.65rem;
    }

    .data-table__actions {
        justify-content: flex-start;
    }

    .admin-workspace:not(.admin-workspace--dashboard) .admin-menu__text {
        font-size: 0.8rem;
    }
}

/* Final compact admin page header override shared by all admin pages. */
.admin-workspace .admin-main > .page-header {
    align-items: center;
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    gap: var(--admin-space-md);
    height: auto;
    justify-content: space-between;
    min-height: 0;
    padding: 0.9rem 1.1rem;
}

.admin-workspace .admin-main > .page-header .page-header__content {
    gap: 0.18rem;
}

.admin-workspace .admin-main > .page-header .section-kicker {
    margin: 0;
}

.admin-workspace .admin-main > .page-header .page-title {
    font-size: 1.3rem;
}

.admin-workspace .admin-main > .page-header .page-subtitle {
    font-size: 0.86rem;
    line-height: 1.35;
}

@media (max-width: 991.98px) {
    .admin-workspace .admin-main > .page-header {
        align-items: stretch;
        flex-direction: column;
    }
}

@media (max-width: 767.98px) {
    .admin-workspace .admin-main > .page-header {
        padding: 0.8rem;
    }
}

/* Executive Slate admin system */
:root {
    --exec-bg: var(--hsh-ds-muted, #ecf3fa);
    --exec-surface: var(--hsh-ds-card, #ffffff);
    --exec-surface-soft: var(--hsh-ds-background, #fefbf6);
    --exec-slate: var(--hsh-ds-ink, #1f2d4c);
    --exec-slate-2: var(--hsh-ds-foreground, #1d2842);
    --exec-muted: var(--hsh-ds-muted-foreground, #606c81);
    --exec-border: var(--hsh-ds-border, #dee5ef);
    --exec-border-soft: var(--hsh-ds-border, #dee5ef);
    --exec-blue: var(--hsh-ds-primary, #2f508f);
    --exec-green: var(--hsh-ds-leaf, #5fb479);
    --exec-ink: var(--hsh-ds-ink, #1f2d4c);
    --exec-on-dark: var(--hsh-ds-on-strong, #ffffff);
    --exec-nav-muted: #b8c4d6;
    --exec-menu-section: #8591a6;
    --exec-hover-bg: #f7fbff;
    --exec-icon-bg: #eef4fb;
    --exec-tooltip-bg: #1a2436;
    --exec-focus-shadow: var(--hsh-ds-focus-shadow, 0 0 0 0.25rem rgba(160, 187, 215, 0.34));
    --exec-radius: 4px;
}

body {
    background: var(--exec-bg);
    color: var(--exec-ink);
    font-family: var(--hsh-ds-font-legacy, "Hanken Grotesk", "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif);
}

.app-page-shell--admin-dashboard,
.app-content-shell--admin-dashboard {
    background: var(--exec-bg);
}

.app-content-shell--admin-dashboard {
    padding: 0;
}

.admin-workspace {
    background: var(--exec-bg);
    display: grid;
    gap: 0;
    grid-template-columns: 248px minmax(0, 1fr);
    grid-template-rows: 60px minmax(0, 1fr);
    min-height: 100vh;
}

.admin-workspace--collapsed {
    grid-template-columns: 72px minmax(0, 1fr);
}

.admin-sidebar {
    background: var(--exec-slate);
    border: 0;
    border-radius: 0;
    box-shadow: none;
    grid-column: 1;
    grid-row: 1 / span 2;
    max-height: 100vh;
    min-height: 100vh;
    padding: 20px 12px;
    position: sticky;
    top: 0;
}

.admin-sidebar__header {
    margin-bottom: 22px;
}

.admin-sidebar__mark {
    background: var(--exec-blue);
    border-radius: var(--exec-radius);
    color: var(--exec-on-dark);
    flex-basis: 40px;
    font-size: 0.92rem;
    height: 40px;
    width: 40px;
}

.admin-sidebar__brand-text strong {
    color: var(--exec-on-dark);
    font-size: 1.08rem;
    font-weight: 800;
}

.admin-sidebar__brand-text small {
    color: var(--exec-nav-muted);
    font-size: 0.84rem;
    font-weight: 500;
}

.admin-sidebar__toggle {
    align-items: center;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: var(--exec-radius);
    color: var(--exec-border);
    display: inline-flex;
    flex: 0 0 32px;
    height: 32px;
    justify-content: center;
    transition: background-color 150ms ease, color 150ms ease;
    width: 32px;
}

.admin-sidebar__toggle:hover,
.admin-sidebar__toggle:focus {
    background: rgba(255, 255, 255, 0.14);
    color: var(--exec-on-dark);
}

.admin-sidebar__toggle:focus-visible,
.admin-menu__link:focus-visible,
.admin-topbar__icon:focus-visible,
.admin-summary-card:focus-visible,
.admin-shortcut-grid a:focus-visible,
.admin-workspace .btn:focus-visible,
.admin-workspace .action-button:focus-visible {
    box-shadow: var(--exec-focus-shadow);
    outline: 0;
}

.admin-menu {
    gap: 6px;
}

.admin-menu__link {
    border: 0;
    border-radius: var(--exec-radius);
    color: var(--exec-nav-muted);
    min-height: 42px;
    padding: 0 10px;
    transition: background-color 150ms ease, color 150ms ease, transform 150ms ease;
}

.admin-menu__link:hover,
.admin-menu__link:focus {
    background: rgba(255, 255, 255, 0.08);
    color: var(--exec-on-dark);
    transform: translateY(-1px);
}

.admin-menu__section-label {
    color: var(--exec-menu-section);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    margin: 14px 10px 6px;
    padding: 0 10px;
    text-transform: uppercase;
    transition: opacity 150ms ease;
}

.admin-menu__link--active {
    background: var(--exec-blue);
    color: var(--exec-on-dark);
}

.admin-menu__icon {
    background: transparent;
    color: currentColor;
    flex-basis: 24px;
    font-size: 1rem;
    height: 24px;
    width: 24px;
}

.admin-menu__icon .bi {
    display: block;
    line-height: 1;
}

.admin-menu__text {
    font-size: 0.86rem;
    font-weight: 700;
    letter-spacing: 0.01em;
}

.admin-sidebar__footer {
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    bottom: 0;
    color: var(--exec-green);
    left: 0;
    margin: 0;
    padding: 16px 18px;
    position: absolute;
    right: 0;
}

.admin-sidebar__status {
    background: transparent;
    color: var(--exec-green);
    flex-basis: auto;
    height: auto;
    width: auto;
}

.admin-sidebar__status::before {
    content: "OK";
    font-weight: 900;
}

.admin-workspace--collapsed .admin-sidebar {
    padding-left: 10px;
    padding-right: 10px;
}

.admin-workspace--collapsed .admin-sidebar__header {
    justify-content: center;
}

.admin-workspace--collapsed .admin-sidebar__brand-text,
.admin-workspace--collapsed .admin-menu__text,
.admin-workspace--collapsed .admin-sidebar__footer .admin-menu__text,
.admin-workspace--collapsed .admin-menu__section-label {
    display: none;
}

.admin-workspace--collapsed .admin-sidebar__brand,
.admin-workspace--collapsed .admin-menu__link {
    justify-content: center;
}

.admin-workspace--collapsed .admin-sidebar__toggle {
    bottom: 16px;
    position: absolute;
    right: 20px;
}

.admin-workspace--collapsed .admin-menu__link {
    padding: 0;
}

.admin-workspace--collapsed .admin-menu__icon {
    flex-basis: 28px;
    font-size: 1.05rem;
    height: 28px;
    width: 28px;
}

.admin-workspace--collapsed .admin-menu__link {
    margin-left: 6px;
    margin-right: 6px;
    position: relative;
}

.admin-workspace--collapsed .admin-menu__link:hover::after,
.admin-workspace--collapsed .admin-menu__link:focus::after {
    background: var(--exec-tooltip-bg);
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    color: var(--exec-on-dark);
    content: attr(data-label);
    font-size: 0.8rem;
    font-weight: 700;
    left: calc(100% + 10px);
    padding: 6px 10px;
    pointer-events: none;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    white-space: nowrap;
    z-index: 20;
}

.admin-topbar {
    align-items: center;
    background: var(--exec-surface);
    border-bottom: 1px solid var(--exec-border);
    display: flex;
    gap: 18px;
    grid-column: 2;
    grid-row: 1;
    min-width: 0;
    min-height: 60px;
    padding: 0 24px;
    position: sticky;
    top: 0;
    z-index: 50;
}

.admin-topbar__menu {
    display: none;
}

.admin-topbar__brand {
    color: var(--exec-ink);
    font-size: 1rem;
    font-weight: 800;
    white-space: nowrap;
}

.admin-topbar__search {
    align-items: center;
    background: var(--exec-surface-soft);
    border: 1px solid var(--exec-border-soft);
    border-radius: var(--exec-radius);
    color: var(--exec-muted);
    display: flex;
    gap: 8px;
    min-height: 36px;
    min-width: 240px;
    padding: 0 12px;
}

.admin-topbar__search input {
    background: transparent;
    border: 0;
    color: var(--exec-ink);
    font: inherit;
    min-width: 0;
    outline: 0;
    width: 100%;
}

.admin-topbar__links {
    display: flex;
    gap: 22px;
    margin-left: auto;
}

.admin-topbar__links a {
    color: var(--exec-slate);
    font-size: 0.86rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-decoration: none;
}

.admin-topbar__actions {
    align-items: center;
    display: flex;
    gap: 8px;
}

.admin-topbar__icon,
.admin-topbar__avatar {
    align-items: center;
    background: transparent;
    border: 0;
    color: var(--exec-slate);
    display: inline-flex;
    font-weight: 800;
    font-size: 1rem;
    height: 32px;
    justify-content: center;
    min-height: 44px;
    min-width: 44px;
    width: 32px;
}

.admin-topbar__icon:hover,
.admin-topbar__icon:focus {
    background: var(--exec-icon-bg);
    border-radius: var(--exec-radius);
}

.admin-topbar__avatar {
    background: var(--exec-icon-bg);
    border: 1px solid var(--exec-border);
    border-radius: 50%;
}

.admin-main,
.admin-main--dashboard {
    align-content: start;
    gap: 24px;
    grid-column: 2;
    grid-row: 2;
    padding: 24px;
}

.admin-workspace .admin-main > .page-header,
.admin-page-intro {
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    padding: 0;
}

.page-title,
.admin-dashboard-topbar h1 {
    color: var(--exec-ink);
    font-size: 2rem;
    font-weight: 900;
    line-height: 1.1;
}

.page-subtitle {
    color: var(--exec-muted);
    font-size: 1rem;
}

.section-kicker,
.admin-page-eyebrow {
    color: var(--exec-slate);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.18em;
}

.admin-summary-card,
.admin-dashboard-panel,
.admin-table-card,
.executive-card,
.admin-management-grid .card {
    background: var(--exec-surface);
    border: 1px solid var(--exec-border);
    border-radius: var(--exec-radius);
    box-shadow: none;
}

.admin-dashboard-summary {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.admin-summary-card {
    display: grid;
    gap: 10px;
    min-height: 250px;
    padding: 28px;
    position: relative;
    text-decoration: none;
    transition: background-color 150ms ease, transform 150ms ease;
}

.admin-summary-card:hover,
.admin-summary-card:focus {
    background: var(--exec-hover-bg);
    transform: translateY(-2px);
}

.admin-summary-card__icon {
    align-items: center;
    background: var(--exec-icon-bg);
    color: var(--exec-slate-2);
    display: inline-flex;
    font-size: 0.78rem;
    font-weight: 900;
    height: 48px;
    justify-content: center;
    width: 48px;
}

.admin-summary-card__action {
    color: var(--exec-blue);
    font-size: 0.9rem;
    font-weight: 800;
    position: absolute;
    right: 28px;
    top: 30px;
}

.admin-summary-card strong {
    color: var(--exec-ink);
    font-size: 3.4rem;
    font-weight: 900;
    line-height: 1;
    margin-top: 18px;
}

.admin-summary-card__label {
    color: var(--exec-ink);
    font-size: 1.12rem;
    font-weight: 800;
}

.admin-summary-card small {
    color: var(--exec-muted);
    font-size: 0.92rem;
}

.admin-dashboard-grid {
    display: grid;
    gap: 24px;
    grid-template-columns: minmax(0, 2fr) minmax(320px, 0.95fr);
}

.admin-dashboard-panel--wide {
    grid-column: 1 / -1;
}

.admin-dashboard-panel__header {
    border-bottom: 1px solid var(--exec-border);
    padding: 28px 32px;
}

.admin-dashboard-panel__header h2 {
    color: var(--exec-ink);
    font-size: 1.4rem;
    font-weight: 900;
}

.admin-dashboard-panel__header a,
.btn,
.action-button {
    border-radius: var(--exec-radius);
    transition: background-color 150ms ease, border-color 150ms ease, transform 120ms ease;
}

.admin-dashboard-panel__header a:hover,
.btn:hover,
.action-button:hover {
    transform: translateY(-1px);
}

.admin-production-grid {
    display: grid;
    gap: 32px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    padding: 38px;
}

.admin-production-stat strong {
    color: var(--exec-ink);
    font-size: 2rem;
}

.admin-production-stat::after {
    background: var(--exec-border-soft);
    content: "";
    display: block;
    height: 4px;
    margin-top: 22px;
    width: 56px;
}

.admin-production-stat:first-child::after {
    background: var(--exec-green);
}

.admin-shortcut-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    padding: 32px;
}

.admin-shortcut-grid a {
    align-content: center;
    border: 1px solid var(--exec-border);
    border-radius: var(--exec-radius);
    color: var(--exec-ink);
    display: grid;
    min-height: 132px;
    place-items: center;
    text-align: center;
}

.admin-shortcut-grid a::before {
    color: var(--exec-slate-2);
    content: "+";
    font-size: 2rem;
    font-weight: 500;
    line-height: 1;
}

.admin-shortcut-grid__ghost {
    border-style: dashed !important;
    color: var(--exec-muted) !important;
}

.section-card__header {
    align-items: end;
    gap: 24px;
}

.form-toolbar {
    align-items: end;
    gap: 12px;
}

.form-control--admin,
.form-select--admin,
.form-control,
.form-select {
    border-radius: var(--exec-radius);
}

.data-table {
    border-color: var(--exec-border);
}

.data-table thead th {
    background: var(--exec-surface);
    border-bottom: 1px solid var(--exec-ink);
    color: var(--exec-ink);
    font-size: 0.82rem;
    letter-spacing: 0;
    text-transform: none;
}

.data-table tbody td {
    border-bottom: 1px solid var(--exec-border-soft);
    color: var(--exec-ink);
}

.data-table tbody tr:hover {
    background: var(--exec-surface-soft);
}

.customer-cell,
.video-repository-cell {
    align-items: center;
    display: flex;
    gap: 12px;
}

.customer-cell__avatar {
    align-items: center;
    background: #e0ecff;
    border-radius: 50%;
    color: #1d4ed8;
    display: inline-flex;
    flex: 0 0 36px;
    font-size: 0.78rem;
    font-weight: 900;
    height: 36px;
    justify-content: center;
    width: 36px;
}

.customer-cell strong,
.video-repository-cell strong,
.table-meta strong {
    color: #000000;
    display: block;
    font-weight: 800;
}

.customer-cell small,
.video-repository-cell small,
.table-meta small {
    color: var(--exec-muted);
    display: block;
    font-size: 0.82rem;
}

.video-repository-cell img {
    background: #e2e8f0;
    border: 1px solid var(--exec-border-soft);
    height: 44px;
    object-fit: cover;
    width: 68px;
}

.status-chip {
    align-items: center;
    border-radius: var(--exec-radius);
    display: inline-flex;
    font-size: 0.78rem;
    font-weight: 800;
    min-height: 24px;
    padding: 0.25rem 0.55rem;
}

.status-chip--success {
    background: #dcfce7;
    color: #166534;
}

.status-chip--warning {
    background: #fef3c7;
    color: #92400e;
}

.status-chip--info {
    background: #dbeafe;
    color: #1d4ed8;
}

.status-chip--muted {
    background: #f1f5f9;
    color: #475569;
}

@media (max-width: 1199.98px) {
    .admin-workspace {
        grid-template-columns: 240px minmax(0, 1fr);
    }

    .admin-dashboard-summary,
    .admin-dashboard-grid,
    .admin-shortcut-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 991.98px) {
    .admin-workspace,
    .admin-workspace--collapsed {
        grid-template-columns: minmax(0, 1fr);
        grid-template-rows: 64px minmax(0, 1fr);
    }

    .admin-sidebar {
        display: none;
    }

    .admin-topbar,
    .admin-main,
    .admin-main--dashboard {
        grid-column: 1;
    }

    .admin-topbar__menu {
        background: transparent;
        border: 0;
        display: grid;
        gap: 4px;
        padding: 0;
    }

    .admin-topbar__menu span {
        background: #0f172a;
        display: block;
        height: 2px;
        width: 20px;
    }

    .admin-topbar__search,
    .admin-topbar__actions {
        display: none;
    }

    .admin-main,
    .admin-main--dashboard {
        padding: 24px;
    }
}

@media (max-width: 767.98px) {
    .admin-dashboard-summary,
    .admin-dashboard-grid,
    .admin-shortcut-grid {
        grid-template-columns: 1fr;
    }

    .admin-topbar {
        padding: 0 16px;
    }

    .page-title {
        font-size: 1.45rem;
    }
}

/* Hum Sab Hindustani redesigned landing page */
.hsh-redesign {
    --hsh-bg: #fff8ef;
    --hsh-surface: #ffffff;
    --hsh-ink: #17111d;
    --hsh-muted: #655f6e;
    --hsh-line: rgba(23, 17, 29, 0.11);
    --hsh-saffron: #f28b30;
    --hsh-saffron-strong: #d95f16;
    --hsh-teal: #0e7c7b;
    --hsh-rose: #b43f5d;
    --hsh-night: #120b16;
    --hsh-shadow: 0 22px 60px rgba(18, 11, 22, 0.13);
    color: var(--hsh-ink);
    font-family: var(--hsh-ds-font-body);
}

.hsh-redesign h1,
.hsh-redesign h2 {
    font-family: var(--hsh-ds-font-display);
    font-weight: 800;
    letter-spacing: 0;
}

.hsh-redesign h3,
.hsh-redesign p {
    letter-spacing: 0;
}

.hsh-redesign .btn {
    align-items: center;
    border-radius: 999px;
    display: inline-flex;
    font-weight: 700;
    gap: 0.5rem;
    justify-content: center;
    min-height: 48px;
    padding-left: 1.3rem;
    padding-right: 1.3rem;
}

.hsh-hero {
    background:
        radial-gradient(circle at 16% 26%, rgba(242, 139, 48, 0.22), transparent 34%),
        radial-gradient(circle at 82% 20%, rgba(14, 124, 123, 0.18), transparent 30%),
        linear-gradient(135deg, rgba(18, 11, 22, 0.97), rgba(37, 16, 25, 0.9)),
        url("../img/landing-biopic-hero.jpg") center/cover;
    border-radius: 0.75rem;
    color: #fff8ef;
    margin-bottom: 5rem;
    overflow: hidden;
    position: relative;
}

.hsh-hero::after {
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.07), transparent);
    content: "";
    height: 1px;
    left: 10%;
    position: absolute;
    right: 10%;
    top: 88px;
}

.hsh-hero__nav {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    justify-content: flex-end;
    padding: 1.2rem clamp(1.25rem, 4vw, 3.5rem) 0;
    position: relative;
    z-index: 1;
}

.hsh-hero__nav a {
    border-radius: 999px;
    color: rgba(255, 248, 239, 0.76);
    font-size: 0.86rem;
    font-weight: 700;
    padding: 0.55rem 0.85rem;
    text-decoration: none;
}

.hsh-hero__nav a:hover,
.hsh-hero__nav a:focus {
    background: rgba(255, 255, 255, 0.09);
    color: #ffffff;
}

.hsh-hero__nav .hsh-hero__nav-cta {
    background: var(--hsh-saffron);
    color: #251019;
}

.hsh-hero__grid {
    align-items: center;
    display: grid;
    gap: clamp(2rem, 4vw, 4rem);
    grid-template-columns: minmax(0, 1.12fr) minmax(310px, 0.68fr);
    min-height: 650px;
    padding: clamp(2.5rem, 6vw, 5.5rem) clamp(1.25rem, 5vw, 4.5rem);
    position: relative;
    z-index: 1;
}

.hsh-eyebrow {
    color: var(--hsh-saffron);
    display: inline-flex;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
}

.hsh-hero h1 {
    color: #fff8ef;
    font-size: clamp(3.2rem, 8vw, 7.5rem);
    line-height: 0.92;
    margin-bottom: 1.2rem;
    max-width: 760px;
}

.hsh-hero__copy > p {
    color: rgba(255, 248, 239, 0.76);
    font-size: clamp(1rem, 1.6vw, 1.22rem);
    line-height: 1.75;
    max-width: 690px;
}

.hsh-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-top: 1.7rem;
}

.hsh-hero__stats {
    display: grid;
    gap: 0.75rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 2.2rem;
    max-width: 680px;
}

.hsh-hero__stats div {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    min-height: 88px;
    padding: 1rem;
}

.hsh-hero__stats strong {
    color: #ffffff;
    display: block;
    font-size: 1.2rem;
    line-height: 1.1;
}

.hsh-hero__stats span {
    color: rgba(255, 248, 239, 0.56);
    display: block;
    font-size: 0.82rem;
    margin-top: 0.35rem;
}

.hsh-hero__feature {
    display: grid;
    gap: 1rem;
}

.hsh-video-preview,
.hsh-journey-mini {
    backdrop-filter: blur(18px);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 0.75rem;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
}

.hsh-video-preview {
    align-content: end;
    aspect-ratio: 4 / 5;
    display: grid;
    min-height: 360px;
    overflow: hidden;
    padding: 1.25rem;
    position: relative;
}

.hsh-video-preview::before {
    background:
        linear-gradient(180deg, transparent 36%, rgba(18, 11, 22, 0.88)),
        url("../img/landing-biopic-hero.jpg") center/cover;
    content: "";
    inset: 0;
    opacity: 0.72;
    position: absolute;
}

.hsh-video-preview__button {
    align-items: center;
    background: var(--hsh-saffron);
    border-radius: 50%;
    color: #211018;
    display: inline-flex;
    font-size: 1.9rem;
    height: 74px;
    justify-content: center;
    left: 50%;
    position: absolute;
    top: 45%;
    transform: translate(-50%, -50%);
    width: 74px;
}

.hsh-video-preview span,
.hsh-video-preview strong {
    display: block;
    position: relative;
    z-index: 1;
}

.hsh-video-preview span {
    color: rgba(255, 248, 239, 0.62);
    font-size: 0.86rem;
}

.hsh-video-preview strong {
    color: #ffffff;
    font-family: var(--hsh-ds-font-display);
    font-size: 1.8rem;
    line-height: 1.05;
}

.hsh-journey-mini {
    padding: 1.2rem;
}

.hsh-journey-mini span {
    color: var(--hsh-saffron);
    display: block;
    font-size: 0.78rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
}

.hsh-journey-mini ol {
    display: grid;
    gap: 0.55rem;
    list-style: decimal-leading-zero;
    margin: 0;
    padding-left: 1.45rem;
}

.hsh-journey-mini li {
    color: rgba(255, 248, 239, 0.82);
    font-weight: 700;
    padding-left: 0.2rem;
}

.hsh-section {
    margin-bottom: 5rem;
}

.hsh-section__heading {
    margin-bottom: 2rem;
    max-width: 760px;
}

.hsh-section__heading--center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.hsh-section__heading--split {
    align-items: end;
    display: grid;
    gap: 1.5rem;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 460px);
    max-width: none;
}

.hsh-section h2,
.hsh-faq h2,
.hsh-final-cta h2 {
    color: var(--hsh-ink);
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 1.02;
    margin-bottom: 0;
}

.hsh-section__heading p,
.hsh-faq p,
.hsh-final-cta p {
    color: var(--hsh-muted);
    font-size: 1rem;
    line-height: 1.75;
    margin-bottom: 0;
}

.hsh-samples {
    background: var(--hsh-bg);
    border-radius: 0.75rem;
    padding: clamp(2rem, 5vw, 4rem);
}

.hsh-filter-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    margin-bottom: 1.5rem;
}

.hsh-filter-row span {
    background: #ffffff;
    border: 1px solid rgba(23, 17, 29, 0.12);
    border-radius: 999px;
    color: var(--hsh-muted);
    font-size: 0.84rem;
    font-weight: 800;
    min-height: 36px;
    padding: 0.5rem 0.9rem;
}

.hsh-filter-row span:first-child {
    background: var(--hsh-night);
    color: #fff8ef;
}

.hsh-video-card,
.hsh-testimonial-card,
.hsh-process-grid article,
.hsh-why-grid article {
    border: 1px solid var(--hsh-line);
    border-radius: 0.75rem;
    box-shadow: 0 12px 34px rgba(18, 11, 22, 0.08);
}

.hsh-video-card {
    background: #ffffff;
    overflow: hidden;
}

.hsh-video-card__frame {
    background: var(--hsh-night);
    border-radius: 0.75rem 0.75rem 0 0;
    overflow: hidden;
}

.hsh-video-card__body {
    padding: 1.25rem;
}

.hsh-video-card h3,
.hsh-testimonial-card h3,
.hsh-process-grid h3,
.hsh-why-grid h3 {
    color: var(--hsh-ink);
    font-size: 1rem;
    font-weight: 800;
    line-height: 1.35;
    margin-bottom: 0.55rem;
}

.hsh-video-card p,
.hsh-testimonial-card p,
.hsh-process-grid p,
.hsh-why-grid p {
    color: var(--hsh-muted);
    font-size: 0.92rem;
    line-height: 1.65;
    margin-bottom: 0;
}

.hsh-process {
    background: var(--hsh-night);
    border-radius: 0.75rem;
    color: #fff8ef;
    padding: clamp(2.25rem, 5vw, 4.5rem);
}

.hsh-process .hsh-section__heading h2 {
    color: #fff8ef;
}

.hsh-process .hsh-section__heading p {
    color: rgba(255, 248, 239, 0.64);
}

.hsh-process-grid,
.hsh-why-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.hsh-process-grid article {
    background: rgba(255, 255, 255, 0.055);
    border-color: rgba(255, 255, 255, 0.11);
    min-height: 230px;
    padding: 1.3rem;
    position: relative;
}

.hsh-process-grid article span {
    color: rgba(255, 248, 239, 0.24);
    font-size: 0.78rem;
    font-weight: 900;
    position: absolute;
    right: 1.1rem;
    top: 1rem;
}

.hsh-process-grid i,
.hsh-why-grid i {
    align-items: center;
    border-radius: 0.5rem;
    display: inline-flex;
    font-size: 1.4rem;
    height: 46px;
    justify-content: center;
    margin-bottom: 1rem;
    width: 46px;
}

.hsh-process-grid i {
    background: rgba(242, 139, 48, 0.17);
    color: var(--hsh-saffron);
}

.hsh-process-grid h3 {
    color: #ffffff;
}

.hsh-process-grid p {
    color: rgba(255, 248, 239, 0.64);
}

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

.hsh-why-grid article {
    background: #ffffff;
    min-height: 236px;
    padding: 1.35rem;
}

.hsh-why-grid article:nth-child(2n) i {
    background: rgba(14, 124, 123, 0.1);
    color: var(--hsh-teal);
}

.hsh-why-grid article:nth-child(2n+1) i {
    background: rgba(180, 63, 93, 0.1);
    color: var(--hsh-rose);
}

.hsh-testimonials {
    background:
        linear-gradient(135deg, rgba(18, 11, 22, 0.98), rgba(44, 18, 27, 0.96)),
        url("../img/landing-biopic-hero.jpg") center/cover;
    border-radius: 0.75rem;
    padding: clamp(2.25rem, 5vw, 4.5rem);
}

.hsh-testimonials .hsh-section__heading h2 {
    color: #fff8ef;
}

.hsh-testimonials .hsh-section__heading p {
    color: rgba(255, 248, 239, 0.62);
}

.hsh-testimonial-card {
    background: rgba(255, 255, 255, 0.065);
    border-color: rgba(255, 255, 255, 0.11);
    color: #fff8ef;
    padding: 1.35rem;
    position: relative;
}

.hsh-testimonial-card__mark {
    color: rgba(242, 139, 48, 0.5);
    font-family: var(--hsh-ds-font-display);
    font-size: 4rem;
    left: 1rem;
    line-height: 0.8;
    position: absolute;
    top: 1rem;
}

.hsh-testimonial-card h3,
.hsh-testimonial-card p,
.hsh-testimonial-card__author {
    position: relative;
    z-index: 1;
}

.hsh-testimonial-card h3 {
    color: #ffffff;
    margin-top: 2.4rem;
}

.hsh-testimonial-card p {
    color: rgba(255, 248, 239, 0.66);
}

.hsh-testimonial-card__author {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 1rem;
    padding-top: 1rem;
}

.hsh-testimonial-card__author span {
    color: #ffffff;
    display: block;
    font-weight: 800;
}

.hsh-testimonial-card__author small {
    color: rgba(255, 248, 239, 0.52);
}

.hsh-trust {
    background: #ffffff;
    border: 1px solid var(--hsh-line);
    border-radius: 0.75rem;
    box-shadow: var(--hsh-shadow);
    display: grid;
    gap: 1px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-bottom: 5rem;
    overflow: hidden;
}

.hsh-trust div {
    align-items: center;
    background: #ffffff;
    display: flex;
    gap: 0.7rem;
    min-height: 94px;
    padding: 1.2rem;
}

.hsh-trust i {
    color: var(--hsh-teal);
    font-size: 1.35rem;
}

.hsh-trust span {
    color: var(--hsh-ink);
    font-size: 0.92rem;
    font-weight: 800;
    line-height: 1.3;
}

.hsh-faq {
    background: var(--hsh-bg);
    border-radius: 0.75rem;
    padding: clamp(2rem, 5vw, 4rem);
}

.hsh-faq .accordion-item {
    border: 1px solid rgba(23, 17, 29, 0.1);
    border-radius: 0.65rem;
    margin-bottom: 0.8rem;
    overflow: hidden;
}

.hsh-faq .accordion-button {
    color: var(--hsh-ink);
    font-weight: 800;
}

.hsh-faq .accordion-button:not(.collapsed) {
    background: #ffffff;
    color: var(--hsh-saffron-strong);
}

.hsh-final-cta {
    background:
        radial-gradient(circle at 20% 30%, rgba(242, 139, 48, 0.24), transparent 30%),
        radial-gradient(circle at 82% 24%, rgba(14, 124, 123, 0.2), transparent 28%),
        var(--hsh-night);
    border-radius: 0.75rem;
    color: #fff8ef;
    margin-bottom: 1rem;
    padding: clamp(2.25rem, 6vw, 5rem);
    text-align: center;
}

.hsh-final-cta h2 {
    color: #fff8ef;
    margin-left: auto;
    margin-right: auto;
    max-width: 780px;
}

.hsh-final-cta p {
    color: rgba(255, 248, 239, 0.68);
    margin: 1rem auto 1.5rem;
    max-width: 620px;
}

.hsh-empty-state {
    border-radius: 0.75rem;
    margin-bottom: 1.25rem;
}

.hsh-samples .hsh-empty-state {
    background: #ffffff;
    border-color: rgba(23, 17, 29, 0.12);
    color: var(--hsh-muted);
}

.hsh-samples .hsh-empty-state strong {
    color: var(--hsh-ink);
}

@media (max-width: 1199.98px) {
    .hsh-why-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 991.98px) {
    .hsh-hero__grid,
    .hsh-section__heading--split {
        grid-template-columns: 1fr;
    }

    .hsh-hero__grid {
        min-height: auto;
    }

    .hsh-hero__nav {
        justify-content: flex-start;
    }

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

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

@media (max-width: 767.98px) {
    .hsh-hero {
        margin-bottom: 3rem;
    }

    .hsh-hero::after {
        top: 132px;
    }

    .hsh-hero__nav a:not(.hsh-hero__nav-cta) {
        display: none;
    }

    .hsh-hero__grid {
        padding: 2rem 1rem 1.2rem;
    }

    .hsh-hero h1 {
        font-size: clamp(3rem, 17vw, 4.7rem);
    }

    .hsh-hero__stats,
    .hsh-process-grid,
    .hsh-why-grid,
    .hsh-trust {
        grid-template-columns: 1fr;
    }

    .hsh-video-preview {
        aspect-ratio: 16 / 10;
        min-height: 250px;
    }

    .hsh-section,
    .hsh-trust {
        margin-bottom: 3rem;
    }

    .hsh-samples,
    .hsh-process,
    .hsh-testimonials,
    .hsh-faq,
    .hsh-final-cta {
        padding: 1.35rem;
    }

    .hsh-section h2,
    .hsh-faq h2,
    .hsh-final-cta h2 {
        font-size: 2.15rem;
    }
}

/* Landing page visual-match pass for the supplied static HTML design */
.app-page-shell--landing {
    background: #0e0400;
    padding: 0;
}

.app-content-shell--landing {
    max-width: none;
    padding: 0;
}

.hsh-redesign {
    --th-body-bg: #0e0400;
    --th-body-color: #fff5e0;
    --th-hero-bg: radial-gradient(ellipse at 20% 45%, rgba(232, 96, 10, 0.17) 0%, transparent 55%),
        radial-gradient(ellipse at 82% 25%, rgba(196, 135, 10, 0.09) 0%, transparent 50%),
        #0e0400;
    --th-hero-txt: #fff5e0;
    --th-hero-muted: rgba(255, 245, 224, 0.66);
    --th-badge-bg: rgba(196, 135, 10, 0.09);
    --th-badge-border: rgba(196, 135, 10, 0.22);
    --th-badge-color: #c4870a;
    --th-cta2-color: #fff5e0;
    --th-cta2-border: rgba(255, 245, 224, 0.22);
    --th-vid-bg: linear-gradient(150deg, #1c0800, #0e0400);
    --th-vid-border: rgba(232, 96, 10, 0.16);
    --th-vid-title: #fff5e0;
    --th-vid-sub: rgba(255, 245, 224, 0.42);
    --th-stats-bg: rgba(255, 245, 224, 0.03);
    --th-stats-border: rgba(255, 245, 224, 0.07);
    --th-stats-muted: rgba(255, 245, 224, 0.45);
    --th-nav-txt: rgba(255, 245, 224, 0.78);
    --th-nav-bg: rgba(14, 4, 0, 0.65);
    --th-nav-border: rgba(255, 245, 224, 0.05);
    --th-brand-sub: rgba(255, 245, 224, 0.5);
    --th-samples-bg: #fffaf2;
    background: var(--th-body-bg);
    color: var(--th-body-color);
    min-height: 100vh;
    position: relative;
}

.hsh-redesign[data-theme="light"] {
    --th-body-bg: #ffffff;
    --th-body-color: #1c0800;
    --th-hero-bg: radial-gradient(ellipse at 20% 45%, rgba(232, 96, 10, 0.07) 0%, transparent 55%),
        radial-gradient(ellipse at 82% 25%, rgba(196, 135, 10, 0.05) 0%, transparent 50%),
        #ffffff;
    --th-hero-txt: #1c0800;
    --th-hero-muted: rgba(28, 8, 0, 0.6);
    --th-badge-bg: rgba(232, 96, 10, 0.07);
    --th-badge-border: rgba(232, 96, 10, 0.2);
    --th-badge-color: #c4470a;
    --th-cta2-color: #1c0800;
    --th-cta2-border: rgba(28, 8, 0, 0.22);
    --th-vid-bg: linear-gradient(150deg, #fff0dc, #fffaf2);
    --th-vid-border: rgba(232, 96, 10, 0.2);
    --th-vid-title: #1c0800;
    --th-vid-sub: rgba(28, 8, 0, 0.45);
    --th-stats-bg: rgba(28, 8, 0, 0.03);
    --th-stats-border: rgba(28, 8, 0, 0.08);
    --th-stats-muted: rgba(28, 8, 0, 0.5);
    --th-nav-txt: rgba(28, 8, 0, 0.7);
    --th-nav-bg: rgba(255, 255, 255, 0.88);
    --th-nav-border: rgba(28, 8, 0, 0.06);
    --th-brand-sub: rgba(28, 8, 0, 0.48);
    --th-samples-bg: #f5f0eb;
}

.hsh-redesign[data-theme="grey"] {
    --th-body-bg: #ede8e0;
    --th-body-color: #1c0800;
    --th-hero-bg: radial-gradient(ellipse at 20% 45%, rgba(232, 96, 10, 0.1) 0%, transparent 55%),
        radial-gradient(ellipse at 82% 25%, rgba(196, 135, 10, 0.06) 0%, transparent 50%),
        #ede8e0;
    --th-hero-txt: #1c0800;
    --th-hero-muted: rgba(28, 8, 0, 0.6);
    --th-badge-bg: rgba(232, 96, 10, 0.08);
    --th-badge-border: rgba(232, 96, 10, 0.2);
    --th-badge-color: #c4470a;
    --th-cta2-color: #1c0800;
    --th-cta2-border: rgba(28, 8, 0, 0.2);
    --th-vid-bg: linear-gradient(150deg, #fff5e0, #fffaf2);
    --th-vid-border: rgba(232, 96, 10, 0.18);
    --th-vid-title: #1c0800;
    --th-vid-sub: rgba(28, 8, 0, 0.42);
    --th-stats-bg: rgba(28, 8, 0, 0.04);
    --th-stats-border: rgba(28, 8, 0, 0.09);
    --th-stats-muted: rgba(28, 8, 0, 0.5);
    --th-nav-txt: rgba(28, 8, 0, 0.7);
    --th-nav-bg: rgba(237, 232, 224, 0.88);
    --th-nav-border: rgba(28, 8, 0, 0.07);
    --th-brand-sub: rgba(28, 8, 0, 0.48);
    --th-samples-bg: #ede8e0;
}

.hsh-topnav {
    align-items: center;
    backdrop-filter: blur(16px);
    background: var(--th-nav-bg);
    border-bottom: 1px solid var(--th-nav-border);
    display: flex;
    height: 68px;
    justify-content: space-between;
    left: 0;
    padding: 0 clamp(16px, 4vw, 48px);
    position: fixed;
    right: 0;
    top: 0;
    transition: background 0.4s ease, border-color 0.4s ease;
    z-index: 1000;
}

.hsh-brand-lockup {
    align-items: center;
    display: flex;
    flex-shrink: 0;
    gap: 10px;
    text-decoration: none;
}

.hsh-brand-lockup img {
    height: 40px;
    object-fit: contain;
    width: 40px;
}

.hsh-brand-lockup strong {
    background: linear-gradient(90deg, #ff6b00, #e8600a 35%, #fff5e0 60%, #138808);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: block;
    font-family: var(--hsh-ds-font-display);
    font-size: 17px;
    font-weight: 800;
    line-height: 1.1;
}

.hsh-redesign[data-theme="light"] .hsh-brand-lockup strong,
.hsh-redesign[data-theme="grey"] .hsh-brand-lockup strong {
    background: linear-gradient(90deg, #ff6b00, #e8600a 32%, #1c0800 62%, #138808);
    -webkit-background-clip: text;
    background-clip: text;
}

.hsh-brand-lockup small {
    color: var(--th-brand-sub);
    display: block;
    font-size: 8px;
    letter-spacing: 2px;
    margin-top: 1px;
    text-transform: uppercase;
}

.hsh-topnav__links,
.hsh-topnav__actions {
    align-items: center;
    display: flex;
}

.hsh-topnav__links {
    gap: 30px;
}

.hsh-topnav__links a {
    color: var(--th-nav-txt);
    font-size: 13.5px;
    font-weight: 600;
    text-decoration: none;
}

.hsh-topnav__links a:hover,
.hsh-topnav__links a:focus {
    color: #e8600a;
}

.hsh-topnav__actions {
    gap: 14px;
}

.hsh-language-button,
.hsh-build-button {
    border-radius: 22px;
    font-size: 13px;
    font-weight: 600;
    min-height: 0;
    padding: 8px 18px;
}

.hsh-language-button {
    background: rgba(255, 245, 224, 0.07);
    border: 1px solid rgba(255, 245, 224, 0.18);
    color: var(--th-body-color);
}

.hsh-build-button {
    align-items: center;
    background: #e8600a;
    color: #ffffff;
    display: inline-flex;
    justify-content: center;
    text-decoration: none;
}

.hsh-build-button:hover,
.hsh-build-button:focus {
    background: #c84d00;
    color: #ffffff;
}

.hsh-theme-switcher {
    border-radius: 28px;
    bottom: 24px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
    display: flex;
    overflow: hidden;
    position: fixed;
    right: 24px;
    z-index: 1001;
}

.hsh-theme-switcher button {
    background: #fff5e0;
    border: 0;
    color: #1c0800;
    font-size: 13.5px;
    font-weight: 800;
    min-height: 52px;
    padding: 0 18px;
}

.hsh-theme-switcher button.is-active {
    background: #e8600a;
    color: #ffffff;
}

.hsh-hero {
    align-items: center;
    background: var(--th-hero-bg);
    border-radius: 0;
    box-shadow: none;
    color: var(--th-body-color);
    display: flex;
    flex-direction: column;
    gap: 12px;
    height: 100vh;
    justify-content: center;
    margin: 0;
    min-height: 640px;
    overflow: hidden;
    padding: 72px clamp(16px, 4vw, 56px) 16px;
    position: relative;
    transition: background 0.4s ease;
}

.hsh-hero::before,
.hsh-hero::after {
    animation: hshFloat 10s ease-in-out infinite;
    background: radial-gradient(circle, rgba(232, 96, 10, 0.08), transparent 70%);
    border-radius: 50%;
    content: "";
    pointer-events: none;
    position: absolute;
}

.hsh-hero::before {
    height: 260px;
    left: 5%;
    top: 10%;
    width: 260px;
}

.hsh-hero::after {
    background: radial-gradient(circle, rgba(196, 135, 10, 0.05), transparent 70%);
    bottom: 10%;
    height: 320px;
    right: 4%;
    top: auto;
    width: 320px;
}

.hsh-brand-masthead {
    max-width: 1450px;
    position: relative;
    text-align: center;
    width: 100%;
    z-index: 1;
}

.hsh-brand-masthead h1 {
    color: #fff5e0;
    filter: drop-shadow(0 2px 20px rgba(232, 96, 10, 0.18));
    font-size: clamp(36px, 5.9vw, 92px);
    font-weight: 800;
    letter-spacing: -2px;
    line-height: 1;
    margin: 0;
    white-space: nowrap;
}

.hsh-brand-masthead h1 span:first-child {
    color: #ff6b00;
}

.hsh-brand-masthead h1 span:nth-child(2) {
    color: #ffd0ad;
}

.hsh-brand-masthead h1 span:nth-child(3) {
    color: #24ad3b;
}

.hsh-redesign[data-theme="light"] .hsh-brand-masthead h1 span:nth-child(2),
.hsh-redesign[data-theme="grey"] .hsh-brand-masthead h1 span:nth-child(2) {
    color: #1c0800;
}

.hsh-brand-masthead div {
    align-items: center;
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: 6px;
}

.hsh-brand-masthead > div span {
    border-radius: 2px;
    height: 2px;
    opacity: 0.7;
    width: 80px;
}

.hsh-brand-masthead > div span:first-child {
    background: linear-gradient(90deg, transparent, #ff6b00);
}

.hsh-brand-masthead > div span:last-child {
    background: linear-gradient(90deg, #138808, transparent);
}

.hsh-brand-masthead h1 span {
    display: inline;
}

.hsh-brand-masthead strong {
    color: rgba(255, 245, 224, 0.4);
    font-size: clamp(10px, 1.1vw, 12px);
    font-weight: 500;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    white-space: nowrap;
}

.hsh-redesign[data-theme="light"] .hsh-brand-masthead strong,
.hsh-redesign[data-theme="grey"] .hsh-brand-masthead strong {
    color: rgba(28, 8, 0, 0.42);
}

.hsh-hero__grid {
    align-items: center;
    display: flex;
    flex: 1;
    flex-wrap: wrap;
    gap: clamp(20px, 3vw, 40px);
    justify-content: center;
    max-width: 1200px;
    min-height: 0;
    padding: 0;
    position: relative;
    width: 100%;
    z-index: 1;
}

.hsh-hero__copy {
    flex: 1 1 300px;
    max-width: 520px;
    min-width: 0;
}

.hsh-pill {
    align-items: center;
    background: var(--th-badge-bg);
    border: 1px solid var(--th-badge-border);
    border-radius: 24px;
    color: #e8600a;
    display: inline-flex;
    font-size: 11.5px;
    font-weight: 600;
    gap: 8px;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
    padding: 5px 14px;
}

.hsh-pill i {
    background: #e8600a;
    border-radius: 50%;
    height: 5px;
    width: 5px;
}

.hsh-hero h2 {
    font-family: var(--hsh-ds-font-display);
    font-size: clamp(34px, 3.6vw, 60px);
    font-weight: 700;
    letter-spacing: -1px;
    line-height: 1.12;
    margin-bottom: 10px;
}

.hsh-hero h2 span {
    color: var(--th-hero-txt);
    display: block;
}

.hsh-hero h2 span:nth-child(2) {
    color: #e8600a;
}

.hsh-hero__copy > p {
    color: var(--th-hero-muted);
    font-size: clamp(13px, 1.4vw, 15px);
    line-height: 1.7;
    margin-bottom: 16px;
    max-width: 420px;
}

.hsh-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 12px;
    margin-top: 0;
}

.hsh-redesign .hsh-hero__actions .btn {
    border-radius: 28px;
    font-size: 13.5px;
    font-weight: 700;
    min-height: 54px;
    padding: 11px 22px;
}

.hsh-redesign .hsh-hero__actions .btn-warning {
    animation: hshGlow 2.5s ease-in-out infinite;
    background: #e8600a;
    border-color: #e8600a;
    color: #ffffff;
}

.hsh-redesign .hsh-hero__actions .btn-outline-light {
    background: transparent;
    border: 2px solid var(--th-cta2-border);
    color: var(--th-cta2-color);
}

.hsh-price-badge {
    align-items: center;
    background: var(--th-badge-bg);
    border: 1px solid var(--th-badge-border);
    border-radius: 10px;
    color: var(--th-badge-color);
    display: inline-flex;
    font-size: 12.5px;
    font-weight: 700;
    gap: 7px;
    padding: 6px 14px;
}

.hsh-hero__feature {
    display: block;
    flex: 1 1 260px;
    max-width: 400px;
    min-width: 0;
}

.hsh-video-preview {
    align-items: center;
    aspect-ratio: 16 / 10;
    background: var(--th-vid-bg);
    border: 1px solid var(--th-vid-border);
    border-radius: 18px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2), 0 0 60px rgba(232, 96, 10, 0.06);
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: center;
    min-height: auto;
    overflow: hidden;
    padding: 20px;
    position: relative;
    text-align: center;
}

.hsh-video-preview::before {
    animation: hshGradMove 5s linear infinite;
    background: linear-gradient(90deg, #ff6b00 0%, #ffffff 50%, #138808 100%);
    background-size: 200%;
    content: "";
    height: 3px;
    inset: 0 0 auto;
    opacity: 1;
    position: absolute;
}

.hsh-video-preview::after {
    background: linear-gradient(90deg, #ff6b00, #ffffff, #138808);
    bottom: 0;
    content: "";
    height: 2px;
    left: 0;
    opacity: 0.35;
    position: absolute;
    right: 0;
}

.hsh-video-preview__button {
    animation: hshGlow 2.8s ease-in-out infinite 1.2s;
    background: rgba(232, 96, 10, 0.12);
    border: 2px solid rgba(232, 96, 10, 0.45);
    color: #e8600a;
    font-size: 1.3rem;
    height: 56px;
    left: auto;
    position: relative;
    top: auto;
    transform: none;
    width: 56px;
}

.hsh-video-preview strong {
    color: var(--th-vid-title);
    font-family: var(--hsh-ds-font-display);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.25;
}

.hsh-video-preview span {
    color: var(--th-vid-sub);
    font-size: 11px;
    order: 3;
}

.hsh-hero__stats {
    background: var(--th-stats-bg);
    border: 1px solid var(--th-stats-border);
    border-radius: 12px;
    display: flex;
    gap: 0;
    margin-top: 10px;
    max-width: none;
    overflow: hidden;
}

.hsh-hero__stats div {
    background: transparent;
    border: 0;
    border-right: 1px solid var(--th-stats-border);
    border-radius: 0;
    flex: 1;
    min-height: 0;
    padding: 10px 6px;
    text-align: center;
}

.hsh-hero__stats div:last-child {
    border-right: 0;
}

.hsh-hero__stats strong {
    color: #e8600a;
    font-family: var(--hsh-ds-font-display);
    font-size: 19px;
    font-weight: 800;
    line-height: 1.1;
}

.hsh-hero__stats div:nth-child(2) strong {
    color: #c4870a;
}

.hsh-hero__stats div:nth-child(3) strong {
    color: #22a63a;
}

.hsh-hero__stats span {
    color: var(--th-stats-muted);
    font-size: 9.5px;
    margin-top: 1px;
}

.hsh-scroll-hint {
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: 4px;
    opacity: 0.4;
    position: relative;
    z-index: 1;
}

.hsh-scroll-hint span {
    color: rgba(255, 245, 224, 0.3);
    font-size: 9px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
}

.hsh-scroll-hint i {
    animation: hshBounce 2.2s ease-in-out infinite;
    color: rgba(255, 245, 224, 0.3);
    font-style: normal;
}

.hsh-redesign[data-theme="light"] .hsh-scroll-hint span,
.hsh-redesign[data-theme="light"] .hsh-scroll-hint i,
.hsh-redesign[data-theme="grey"] .hsh-scroll-hint span,
.hsh-redesign[data-theme="grey"] .hsh-scroll-hint i {
    color: rgba(28, 8, 0, 0.3);
}

.hsh-samples {
    background: var(--th-samples-bg);
    border-radius: 0;
    margin-bottom: 0;
}

@keyframes hshFloat {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-14px);
    }
}

@keyframes hshGlow {
    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(232, 96, 10, 0.45);
    }

    70% {
        box-shadow: 0 0 0 14px rgba(232, 96, 10, 0);
    }
}

@keyframes hshBounce {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(8px);
    }
}

@keyframes hshGradMove {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@media (max-width: 991.98px) {
    .hsh-topnav__links {
        display: none;
    }

    .hsh-brand-masthead h1 {
        white-space: normal;
    }
}

@media (max-width: 767.98px) {
    .hsh-topnav {
        height: 68px;
    }

    .hsh-brand-lockup small,
    .hsh-language-button {
        display: none;
    }

    .hsh-build-button {
        min-height: 42px;
        min-width: 132px;
        padding: 0 14px;
    }

    .hsh-theme-switcher {
        bottom: 12px;
        right: 12px;
    }

    .hsh-theme-switcher button {
        font-size: 12px;
        min-height: 42px;
        padding: 0 12px;
    }

    .hsh-hero {
        height: auto;
        min-height: 100vh;
        padding: 88px 16px 72px;
    }

    .hsh-brand-masthead h1 {
        font-size: clamp(34px, 13vw, 64px);
    }

    .hsh-brand-masthead span {
        width: 42px;
    }

    .hsh-hero__grid {
        align-items: stretch;
    }

    .hsh-hero h2 {
        font-size: clamp(36px, 14vw, 56px);
    }

    .hsh-hero__actions .btn {
        width: 100%;
    }
}

/* Landing section fixes requested from uploaded reference images */
.hsh-brand-masthead {
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    max-width: none;
    width: 100%;
}

.hsh-brand-masthead h1 {
    display: block;
    font-size: clamp(44px, 6vw, 92px);
    margin-left: auto;
    margin-right: auto;
    max-width: calc(100vw - 120px);
    text-align: center;
}

.hsh-samples {
    background: #fffaf2;
    padding: clamp(64px, 8vw, 104px) clamp(20px, 5vw, 64px);
}

.hsh-samples .hsh-section__heading {
    margin-bottom: 48px;
    max-width: none;
    text-align: center;
}

.hsh-samples .hsh-eyebrow,
.hsh-why .hsh-eyebrow {
    color: #e8600a;
    display: block;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 7px;
    margin-bottom: 24px;
    text-align: center;
}

.hsh-samples .hsh-section__heading h2,
.hsh-why .hsh-section__heading h2 {
    color: #1c0800;
    font-size: clamp(42px, 5vw, 76px);
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 28px;
    text-align: center;
}

.hsh-samples .hsh-section__heading p,
.hsh-why .hsh-section__heading p {
    color: rgba(28, 8, 0, 0.58);
    font-size: clamp(18px, 1.7vw, 26px);
    line-height: 1.55;
    margin-left: auto;
    margin-right: auto;
    max-width: 760px;
    text-align: center;
}

.hsh-filter-row {
    gap: 16px;
    justify-content: center;
    margin-bottom: 60px;
}

.hsh-filter-row span {
    background: transparent;
    border: 3px solid rgba(28, 8, 0, 0.14);
    border-radius: 999px;
    color: rgba(28, 8, 0, 0.72);
    font-size: 18px;
    font-weight: 800;
    min-height: 60px;
    padding: 14px 28px;
}

.hsh-filter-row span:first-child {
    background: #e8600a;
    border-color: #e8600a;
    color: #ffffff;
}

.hsh-sample-placeholder-grid,
.hsh-samples > .row {
    display: grid;
    gap: 34px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-left: auto;
    margin-right: auto;
    max-width: 1720px;
}

.hsh-dynamic-videos {
    display: none !important;
}

.hsh-samples > .row {
    --bs-gutter-x: 0;
    --bs-gutter-y: 0;
}

.hsh-samples > .row > [class*="col-"] {
    width: auto;
}

.hsh-sample-card,
.hsh-video-card {
    border: 0;
    border-radius: 18px;
    box-shadow: 0 2px 14px rgba(28, 8, 0, 0.07);
    min-height: 340px;
    overflow: hidden;
    position: relative;
}

.hsh-sample-card--blue {
    background: #163657;
}

.hsh-sample-card--brown {
    background: #471604;
}

.hsh-sample-card--green {
    background: #002d1d;
}

.hsh-sample-card__lang {
    background: #e8600a;
    border-radius: 8px;
    color: #ffffff;
    font-size: 15px;
    font-weight: 800;
    left: 12px;
    padding: 7px 12px;
    position: absolute;
    top: 12px;
}

.hsh-sample-card__play {
    align-items: center;
    background: #e8600a;
    border-radius: 50%;
    color: #ffffff;
    display: flex;
    font-size: 32px;
    height: 70px;
    justify-content: center;
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
}

.hsh-sample-card__duration {
    background: #05070b;
    border-radius: 7px;
    bottom: 12px;
    color: #ffffff;
    font-size: 15px;
    font-weight: 900;
    padding: 6px 10px;
    position: absolute;
    right: 12px;
}

.hsh-video-card__frame {
    background: #163657;
    border-radius: 18px;
    min-height: 340px;
}

.hsh-video-card__frame iframe {
    border: 0;
}

.hsh-video-card__body {
    background: #ffffff;
    padding: 18px 20px;
}

.hsh-why {
    background: #fff5e0;
    border-radius: 0;
    margin-bottom: 0;
    padding: clamp(64px, 8vw, 104px) clamp(20px, 5vw, 64px);
}

.hsh-why .hsh-section__heading {
    margin-bottom: 84px;
    max-width: none;
}

.hsh-why-grid {
    display: grid;
    gap: 36px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-left: auto;
    margin-right: auto;
    max-width: 1720px;
}

.hsh-why-grid article {
    background: #ffffff;
    border: 0;
    border-radius: 28px;
    box-shadow: 0 10px 40px rgba(28, 8, 0, 0.06);
    min-height: 346px;
    padding: 42px 44px;
}

.hsh-why-icon {
    align-items: center;
    background: #fff1e8;
    border-radius: 20px;
    display: inline-flex;
    font-size: 38px;
    height: 78px;
    justify-content: center;
    margin-bottom: 34px;
    width: 78px;
}

.hsh-why-grid h3 {
    color: #120500;
    font-family: var(--hsh-ds-font-display);
    font-size: clamp(24px, 2vw, 30px);
    font-weight: 800;
    line-height: 1.18;
    margin-bottom: 18px;
}

.hsh-why-grid p {
    color: rgba(28, 8, 0, 0.58);
    font-size: clamp(17px, 1.35vw, 22px);
    line-height: 1.65;
}

@media (max-width: 1199.98px) {
    .hsh-sample-placeholder-grid,
    .hsh-samples > .row,
    .hsh-why-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767.98px) {
    .hsh-brand-masthead h1 {
        max-width: calc(100vw - 32px);
    }

    .hsh-sample-placeholder-grid,
    .hsh-samples > .row,
    .hsh-why-grid {
        grid-template-columns: 1fr;
    }

    .hsh-samples .hsh-section__heading h2,
    .hsh-why .hsh-section__heading h2 {
        font-size: 2.8rem;
    }

    .hsh-filter-row span {
        font-size: 15px;
        min-height: 46px;
        padding: 10px 18px;
    }

    .hsh-why-grid article {
        min-height: auto;
        padding: 32px 28px;
    }
}

/* Landing polish pass: tighter spacing, smaller type, Bootstrap icon-only visuals */
.hsh-redesign {
    --hsh-section-max: 1580px;
}

.hsh-brand-masthead h1 {
    font-size: clamp(42px, 5.2vw, 84px);
    max-width: min(1280px, calc(100vw - 96px));
}

.hsh-hero {
    gap: 8px;
    min-height: 620px;
    padding-bottom: 12px;
}

.hsh-hero__grid {
    gap: clamp(28px, 4vw, 76px);
    max-width: 1120px;
}

.hsh-hero h2 {
    font-size: clamp(34px, 3.15vw, 52px);
}

.hsh-hero__copy > p {
    font-size: clamp(13px, 1.1vw, 15px);
    max-width: 470px;
}

.hsh-video-preview {
    max-height: 250px;
}

.hsh-price-badge .bi {
    color: #e8600a;
    font-size: 0.95rem;
}

.hsh-samples,
.hsh-why {
    padding: clamp(56px, 6.5vw, 88px) clamp(20px, 4.5vw, 64px);
}

.hsh-samples .hsh-section__heading,
.hsh-why .hsh-section__heading {
    margin-bottom: clamp(34px, 4vw, 54px);
}

.hsh-samples .hsh-eyebrow,
.hsh-why .hsh-eyebrow {
    font-size: 10.5px;
    letter-spacing: 6px;
    margin-bottom: 18px;
}

.hsh-samples .hsh-section__heading h2,
.hsh-why .hsh-section__heading h2 {
    font-size: clamp(34px, 4vw, 58px);
    margin-bottom: 18px;
}

.hsh-samples .hsh-section__heading p,
.hsh-why .hsh-section__heading p {
    font-size: clamp(16px, 1.35vw, 21px);
}

.hsh-filter-row {
    gap: 12px;
    margin-bottom: clamp(36px, 4vw, 52px);
}

.hsh-filter-row span {
    border-width: 2px;
    font-size: 16px;
    min-height: 52px;
    padding: 11px 24px;
}

.hsh-sample-placeholder-grid,
.hsh-samples > .row,
.hsh-why-grid {
    gap: clamp(22px, 2.2vw, 34px);
    max-width: var(--hsh-section-max);
}

.hsh-sample-card,
.hsh-video-card,
.hsh-video-card__frame {
    min-height: clamp(260px, 20vw, 340px);
}

.hsh-sample-card__play {
    font-size: 28px;
    height: 64px;
    width: 64px;
}

.hsh-sample-card__lang,
.hsh-sample-card__duration {
    font-size: 14px;
}

.hsh-why {
    padding-bottom: clamp(64px, 7vw, 104px);
}

.hsh-why-grid article {
    border-radius: 24px;
    min-height: 300px;
    padding: clamp(30px, 2.7vw, 42px);
}

.hsh-why-icon {
    color: #111111;
    font-size: 30px;
    height: 70px;
    margin-bottom: 28px;
    width: 70px;
}

.hsh-why-icon .bi {
    display: block;
    line-height: 1;
}

.hsh-why-grid h3 {
    font-size: clamp(22px, 1.55vw, 28px);
    margin-bottom: 16px;
}

.hsh-why-grid p {
    font-size: clamp(15px, 1.12vw, 19px);
    line-height: 1.65;
}

.hsh-process,
.hsh-testimonials,
.hsh-faq,
.hsh-final-cta {
    padding: clamp(48px, 5.5vw, 80px) clamp(20px, 4.5vw, 64px);
}

.hsh-process .hsh-section__heading h2,
.hsh-testimonials .hsh-section__heading h2,
.hsh-faq h2,
.hsh-final-cta h2 {
    font-size: clamp(32px, 3.4vw, 52px);
}

.hsh-section {
    margin-bottom: 0;
}

@media (max-width: 991.98px) {
    .hsh-brand-masthead h1 {
        max-width: calc(100vw - 40px);
    }

    .hsh-hero {
        height: auto;
        min-height: 100vh;
    }
}

/* Final landing normalization: one coherent scale for the full redesigned page */
.hsh-redesign {
    --hsh-page-max: 1460px;
    --hsh-section-pad-x: clamp(24px, 4.5vw, 72px);
    --hsh-section-pad-y: clamp(54px, 6vw, 84px);
    font-size: 15px;
}

.hsh-topnav {
    height: 68px;
    padding-left: clamp(16px, 4vw, 48px);
    padding-right: clamp(16px, 4vw, 48px);
}

.hsh-brand-lockup img {
    height: 40px;
    width: 40px;
}

.hsh-brand-lockup strong {
    font-size: 17px;
}

.hsh-brand-lockup small {
    font-size: 8px;
    letter-spacing: 2px;
}

.hsh-topnav__links {
    gap: 14px;
}

.hsh-topnav__links a {
    font-size: 13px;
    font-weight: 500;
}

.hsh-language-button,
.hsh-build-button {
    font-size: 13px;
    min-height: 0;
    padding: 8px 18px;
}

.hsh-build-button {
    min-width: 0;
}

.hsh-theme-switcher {
    bottom: 16px;
    right: 20px;
    transform: scale(0.86);
    transform-origin: bottom right;
}

.hsh-theme-switcher button {
    font-size: 13px;
    min-height: 46px;
    padding-left: 18px;
    padding-right: 18px;
}

.hsh-hero {
    min-height: 620px;
    padding-left: var(--hsh-section-pad-x);
    padding-right: var(--hsh-section-pad-x);
}

.hsh-brand-masthead h1 {
    font-size: clamp(44px, 5.25vw, 82px);
    letter-spacing: -1.5px;
    max-width: min(1220px, calc(100vw - 80px));
}

.hsh-brand-masthead strong {
    font-size: 11px;
    letter-spacing: 3px;
}

.hsh-hero__grid {
    gap: clamp(34px, 5vw, 86px);
    max-width: 1040px;
}

.hsh-hero__copy {
    max-width: 470px;
}

.hsh-pill {
    font-size: 11px;
    margin-bottom: 10px;
}

.hsh-hero h2 {
    font-size: clamp(35px, 3vw, 50px);
    line-height: 1.08;
}

.hsh-hero__copy > p {
    font-size: 14px;
    line-height: 1.7;
    max-width: 430px;
}

.hsh-redesign .hsh-hero__actions .btn {
    font-size: 13px;
    min-height: 48px;
    padding: 10px 20px;
}

.hsh-price-badge {
    font-size: 12px;
}

.hsh-hero__feature {
    max-width: 370px;
}

.hsh-video-preview {
    max-height: none;
    min-height: 226px;
}

.hsh-hero__stats strong {
    font-size: 18px;
}

.hsh-hero__stats span {
    font-size: 9px;
}

.hsh-samples,
.hsh-why,
.hsh-process,
.hsh-testimonials,
.hsh-faq,
.hsh-final-cta {
    padding: var(--hsh-section-pad-y) var(--hsh-section-pad-x);
}

.hsh-samples .hsh-section__heading,
.hsh-why .hsh-section__heading,
.hsh-process .hsh-section__heading,
.hsh-testimonials .hsh-section__heading {
    margin-bottom: clamp(30px, 3.5vw, 46px);
}

.hsh-samples .hsh-eyebrow,
.hsh-why .hsh-eyebrow,
.hsh-process .hsh-eyebrow,
.hsh-testimonials .hsh-eyebrow,
.hsh-faq .hsh-eyebrow,
.hsh-final-cta .hsh-eyebrow {
    font-size: 10px;
    letter-spacing: 5px;
    margin-bottom: 14px;
}

.hsh-samples .hsh-section__heading h2,
.hsh-why .hsh-section__heading h2,
.hsh-process .hsh-section__heading h2,
.hsh-testimonials .hsh-section__heading h2,
.hsh-faq h2,
.hsh-final-cta h2 {
    font-size: clamp(32px, 3.65vw, 54px);
    line-height: 1.08;
    margin-bottom: 14px;
}

.hsh-samples .hsh-section__heading p,
.hsh-why .hsh-section__heading p,
.hsh-process .hsh-section__heading p,
.hsh-testimonials .hsh-section__heading p,
.hsh-faq p,
.hsh-final-cta p {
    font-size: clamp(15px, 1.2vw, 19px);
    line-height: 1.6;
}

.hsh-filter-row {
    gap: 12px;
    margin-bottom: clamp(30px, 3.5vw, 44px);
}

.hsh-filter-row span {
    font-size: 15px;
    min-height: 46px;
    padding: 9px 22px;
}

.hsh-sample-placeholder-grid,
.hsh-samples > .row,
.hsh-why-grid,
.hsh-process-grid {
    gap: clamp(20px, 2vw, 30px);
    max-width: var(--hsh-page-max);
}

.hsh-sample-card,
.hsh-video-card,
.hsh-video-card__frame {
    border-radius: 16px;
    min-height: clamp(235px, 18vw, 300px);
}

.hsh-sample-card__lang {
    font-size: 13px;
    padding: 6px 11px;
}

.hsh-sample-card__play {
    font-size: 24px;
    height: 58px;
    width: 58px;
}

.hsh-sample-card__duration {
    font-size: 13px;
    padding: 5px 9px;
}

.hsh-why-grid article {
    border-radius: 22px;
    min-height: 276px;
    padding: clamp(28px, 2.4vw, 38px);
}

.hsh-why-icon {
    border-radius: 18px;
    font-size: 27px;
    height: 62px;
    margin-bottom: 24px;
    width: 62px;
}

.hsh-why-grid h3 {
    font-size: clamp(21px, 1.45vw, 26px);
    margin-bottom: 12px;
}

.hsh-why-grid p {
    font-size: clamp(14px, 1vw, 17px);
    line-height: 1.65;
}

.hsh-process-grid article {
    min-height: 205px;
    padding: 1.15rem;
}

.hsh-process-grid h3 {
    font-size: 0.95rem;
}

.hsh-process-grid p {
    font-size: 0.86rem;
}

.hsh-testimonial-card {
    padding: 1.15rem;
}

.hsh-trust {
    margin-bottom: 0;
}

.hsh-faq {
    border-radius: 0;
}

@media (max-width: 1199.98px) {
    .hsh-redesign {
        --hsh-page-max: 1060px;
    }
}

@media (max-width: 991.98px) {
    .hsh-topnav__links {
        display: none;
    }

    .hsh-hero__grid,
    .hsh-sample-placeholder-grid,
    .hsh-samples > .row,
    .hsh-why-grid,
    .hsh-process-grid {
        grid-template-columns: 1fr 1fr;
    }

    .hsh-hero__grid {
        display: grid;
    }
}

@media (max-width: 767.98px) {
    .hsh-redesign {
        --hsh-section-pad-x: 18px;
        --hsh-section-pad-y: 44px;
    }

    .hsh-topnav {
        padding-left: 16px;
        padding-right: 16px;
    }

    .hsh-brand-lockup strong {
        font-size: 14px;
    }

    .hsh-build-button {
        min-width: 128px;
    }

    .hsh-brand-masthead h1 {
        font-size: clamp(34px, 12vw, 54px);
        max-width: calc(100vw - 32px);
        white-space: normal;
    }

    .hsh-hero__grid,
    .hsh-sample-placeholder-grid,
    .hsh-samples > .row,
    .hsh-why-grid,
    .hsh-process-grid {
        grid-template-columns: 1fr;
    }

    .hsh-hero h2 {
        font-size: clamp(34px, 11vw, 46px);
    }

    .hsh-samples .hsh-section__heading h2,
    .hsh-why .hsh-section__heading h2,
    .hsh-process .hsh-section__heading h2,
    .hsh-testimonials .hsh-section__heading h2,
    .hsh-faq h2,
    .hsh-final-cta h2 {
        font-size: 2.3rem;
    }
}

/* Landing typography match: keep the WebForms page aligned with the exported DesignCode HTML */
.hsh-redesign,
.hsh-redesign button,
.hsh-redesign input,
.hsh-redesign select,
.hsh-redesign textarea {
    font-family: var(--hsh-ds-font-body);
    font-synthesis: none;
    -webkit-font-smoothing: antialiased;
    text-rendering: geometricPrecision;
}

.hsh-brand-lockup strong,
.hsh-brand-masthead h1,
.hsh-hero h2,
.hsh-section__heading h2,
.hsh-samples .hsh-section__heading h2,
.hsh-why .hsh-section__heading h2,
.hsh-process .hsh-section__heading h2,
.hsh-testimonials .hsh-section__heading h2,
.hsh-faq h2,
.hsh-final-cta h2,
.hsh-video-card__body h3,
.hsh-sample-card__title,
.hsh-why-grid h3,
.hsh-process-grid h3,
.hsh-testimonial-card blockquote,
.hsh-testimonial-avatar,
.hsh-trust strong,
.hsh-final-cta strong {
    font-family: var(--hsh-ds-font-display);
}

.hsh-brand-lockup strong {
    font-weight: 800;
    line-height: 1.1;
}

.hsh-brand-masthead h1 {
    font-weight: 800;
    letter-spacing: -2px;
    line-height: 1;
}

.hsh-hero h2 {
    font-weight: 700;
    letter-spacing: -1px;
    line-height: 1.12;
}

.hsh-section__heading h2,
.hsh-samples .hsh-section__heading h2,
.hsh-why .hsh-section__heading h2,
.hsh-process .hsh-section__heading h2,
.hsh-testimonials .hsh-section__heading h2,
.hsh-faq h2,
.hsh-final-cta h2 {
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1.05;
}

.hsh-video-card__body h3,
.hsh-sample-card__title {
    font-weight: 600;
    letter-spacing: 0;
    line-height: 1.25;
}

.hsh-why-grid h3,
.hsh-process-grid h3 {
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1.2;
}

.hsh-testimonial-card blockquote {
    font-style: italic;
    font-weight: 400;
    line-height: 1.82;
}

.hsh-topnav__links a,
.hsh-language-button,
.hsh-build-button,
.hsh-redesign .btn,
.hsh-filter-row span,
.hsh-filter-row button,
.hsh-theme-switcher button,
.hsh-pill,
.hsh-price-badge,
.hsh-sample-card__lang,
.hsh-sample-card__duration,
.hsh-hero__stats span {
    font-family: var(--hsh-ds-font-body);
}

/* Landing WebForms integration controls */
.hsh-menu-button {
    align-items: center;
    background: transparent;
    border: 0;
    color: var(--th-brand-txt);
    cursor: pointer;
    display: none;
    font-size: 28px;
    height: 44px;
    justify-content: center;
    padding: 0;
    width: 44px;
}

.hsh-mobile-menu {
    align-items: center;
    background: rgba(14, 4, 0, 0.98);
    display: none;
    flex-direction: column;
    gap: 30px;
    inset: 0;
    justify-content: center;
    position: fixed;
    z-index: 1100;
}

.hsh-mobile-menu.is-open {
    display: flex;
}

.hsh-mobile-menu a {
    color: #fff5e0;
    font-family: var(--hsh-ds-font-display);
    font-size: 30px;
    font-weight: 600;
    text-decoration: none;
}

.hsh-mobile-menu a:hover,
.hsh-mobile-menu a:focus {
    color: #e8600a;
}

.hsh-mobile-menu__close {
    align-items: center;
    background: transparent;
    border: 0;
    color: rgba(255, 245, 224, 0.75);
    cursor: pointer;
    display: flex;
    font-size: 24px;
    height: 48px;
    justify-content: center;
    position: absolute;
    right: 22px;
    top: 22px;
    width: 48px;
}

.hsh-filter-row button {
    align-items: center;
    background: transparent;
    border: 2px solid rgba(28, 8, 0, 0.15);
    border-radius: 22px;
    color: rgba(28, 8, 0, 0.65);
    cursor: pointer;
    display: inline-flex;
    font-size: 13px;
    font-weight: 600;
    justify-content: center;
    min-height: 46px;
    padding: 8px 18px;
    transition: all 0.2s ease;
}

.hsh-filter-row button.is-active,
.hsh-filter-row button:hover,
.hsh-filter-row button:focus {
    background: #e8600a;
    border-color: #e8600a;
    color: #ffffff;
}

.hsh-sample-card.is-hidden {
    display: none;
}

.hsh-validation-alert {
    background:
        linear-gradient(180deg, rgba(255, 245, 224, 0.07), rgba(255, 245, 224, 0.025)),
        rgba(28, 8, 0, 0.96);
    border: 1px solid rgba(255, 107, 0, 0.35);
    border-left: 4px solid #e8600a;
    border-radius: 14px;
    bottom: 22px;
    box-shadow: 0 22px 54px rgba(0, 0, 0, 0.38);
    color: rgba(255, 245, 224, 0.88);
    max-width: min(420px, calc(100vw - 32px));
    opacity: 0;
    padding: 16px 18px 15px;
    pointer-events: none;
    position: fixed;
    right: 22px;
    transform: translateY(12px);
    transition: opacity 0.2s ease, transform 0.2s ease;
    width: 100%;
    z-index: 3000;
}

.hsh-validation-alert.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.hsh-validation-alert__header {
    align-items: flex-start;
    display: flex;
    gap: 12px;
    padding-right: 28px;
    position: relative;
}

.hsh-validation-alert__icon {
    align-items: center;
    background: #e8600a;
    border-radius: 999px;
    color: #ffffff;
    display: inline-flex;
    flex: 0 0 auto;
    font-size: 14px;
    font-weight: 900;
    height: 24px;
    justify-content: center;
    margin-top: 1px;
    width: 24px;
}

.hsh-validation-alert strong {
    color: #fff5e0;
    display: block;
    font-size: 15px;
    font-weight: 800;
    line-height: 1.3;
}

.hsh-validation-alert p {
    color: rgba(255, 245, 224, 0.62);
    font-size: 13px;
    line-height: 1.45;
    margin: 4px 0 0;
}

.hsh-validation-alert__close {
    align-items: center;
    background: transparent;
    border: 0;
    color: rgba(255, 245, 224, 0.64);
    display: inline-flex;
    font-size: 22px;
    height: 28px;
    justify-content: center;
    line-height: 1;
    padding: 0;
    position: absolute;
    right: -4px;
    top: -4px;
    width: 28px;
}

.hsh-validation-alert__close:hover,
.hsh-validation-alert__close:focus {
    color: #fff5e0;
}

.hsh-validation-alert__list {
    color: rgba(255, 245, 224, 0.78);
    font-size: 13px;
    line-height: 1.55;
    margin: 12px 0 0 36px;
    padding: 0;
}

.hsh-validation-alert__list li + li {
    margin-top: 4px;
}

.hsh-field-invalid,
.form-control.hsh-field-invalid,
.form-select.hsh-field-invalid {
    border-color: #ff6b46 !important;
    box-shadow: 0 0 0 3px rgba(255, 107, 70, 0.16) !important;
}

@media (max-width: 767.98px) {
    .hsh-menu-button {
        display: inline-flex;
    }

    .hsh-topnav__actions .hsh-build-button {
        display: none;
    }

    .hsh-validation-alert {
        bottom: 14px;
        left: 14px;
        max-width: none;
        right: 14px;
        width: auto;
    }
}
