/* ============================================================================
   TRACTION KEEPER — HOMEPAGE v1.1
   Supplement to marketing.css. Homepage-specific section styles.
   Design system: marketing.css tokens (no new tokens defined here).
   ============================================================================ */

/* ── Section spacing rhythm ──────────────────────────────────────────────── */
.hp-section {
    padding: 96px 0;
}

.hp-section--alt {
    background: var(--tk-color-surface);
    border-top: 1px solid var(--tk-color-border-subtle);
    border-bottom: 1px solid var(--tk-color-border-subtle);
}

.hp-section--navy {
    background: var(--tk-color-primary);
}

/* ── Narrow prose container (680px) ─────────────────────────────────────── */
.hp-prose {
    max-width: 680px;
    margin: 0 auto;
    padding: 0 var(--tk-space-8);
}

/* ── Section label (eyebrow text above heading) ──────────────────────────── */
.hp-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .09em;
    color: var(--tk-color-text-muted);
    margin-bottom: 14px;
}

.hp-label--light {
    color: rgba(255,255,255,.45);
}

/* ── Section headings ─────────────────────────────────────────────────────── */
.hp-h2 {
    font-size: clamp(22px, 3vw, 30px);
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -.02em;
    color: var(--tk-color-text-heading);
    margin-bottom: 28px;
}

.hp-h2--light {
    color: #fff;
}

/* ── Body prose ──────────────────────────────────────────────────────────── */
.hp-body {
    font-size: 17px;
    line-height: 1.8;
    color: var(--tk-color-text-secondary);
}

.hp-body p + p {
    margin-top: 20px;
}

.hp-body--light {
    color: rgba(255,255,255,.75);
}

/* ── Inline list styling ─────────────────────────────────────────────────── */
.hp-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.hp-list li {
    font-size: 16px;
    line-height: 1.7;
    color: var(--tk-color-text-secondary);
    padding-left: 20px;
    position: relative;
}

.hp-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: .65em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--tk-color-border);
}

/* Ruled divider list (used for diagnosis-style items) */
.hp-ruled-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
}

.hp-ruled-list li {
    font-size: 16px;
    line-height: 1.75;
    color: var(--tk-color-text-secondary);
    padding: 18px 0;
    border-top: 1px solid var(--tk-color-border-subtle);
}

.hp-ruled-list li:last-child {
    border-bottom: 1px solid var(--tk-color-border-subtle);
}

/* Numbered list (process steps) */
.hp-numbered-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
    counter-reset: process-step;
}

.hp-numbered-list li {
    counter-increment: process-step;
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 16px;
    align-items: baseline;
    padding: 20px 0;
    border-top: 1px solid var(--tk-color-border-subtle);
    font-size: 16px;
    line-height: 1.75;
    color: var(--tk-color-text-secondary);
}

.hp-numbered-list li:last-child {
    border-bottom: 1px solid var(--tk-color-border-subtle);
}

.hp-numbered-list li::before {
    content: counter(process-step);
    font-size: 13px;
    font-weight: 700;
    color: var(--tk-color-text-muted);
    background: var(--tk-color-primary-bg);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

/* ── Pull quote ───────────────────────────────────────────────────────────── */
.hp-pull-quote {
    margin: 32px 0;
    padding: 24px 28px;
    background: var(--tk-color-primary-bg);
    border-left: 4px solid var(--tk-color-primary-light);
    border-radius: 0 var(--radius) var(--radius) 0;
    font-size: 17px;
    line-height: 1.75;
    color: var(--tk-color-text-heading);
    font-weight: 500;
}

/* ── Hero ─────────────────────────────────────────────────────────────────── */
.hp-hero {
    background: var(--tk-color-primary);
    padding: 96px 0 104px;
}

.hp-hero-inner {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 var(--tk-space-8);
}

.hp-hero-heading {
    font-size: clamp(32px, 4.5vw, 52px);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -.03em;
    color: #fff;
    margin-bottom: 32px;
}

.hp-hero-lead {
    font-size: clamp(17px, 2vw, 20px);
    line-height: 1.7;
    color: rgba(255,255,255,.82);
    margin-bottom: 20px;
}

.hp-hero-subtext {
    font-size: 16px;
    line-height: 1.75;
    color: rgba(255,255,255,.65);
    margin-bottom: 0;
}

.hp-hero-subtext + .hp-hero-subtext {
    margin-top: 8px;
}

.hp-hero-cta {
    margin-top: 44px;
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* Secondary hero button — on navy */
.btn-ghost-light {
    background: transparent;
    color: rgba(255,255,255,.82);
    border: 2px solid rgba(255,255,255,.3);
    font-family: var(--tk-font-sans);
    font-size: 14px;
    font-weight: 600;
    padding: 13px 26px;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all .2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    line-height: 1;
}

.btn-ghost-light:hover {
    background: rgba(255,255,255,.1);
    border-color: rgba(255,255,255,.6);
    color: #fff;
}

.btn-ghost-light:focus-visible {
    outline: 3px solid rgba(255,255,255,.6);
    outline-offset: 3px;
}

/* ── Problem section (You Have More Marketing Options...) ─────────────────── */
.hp-problem {
    background: var(--tk-color-bg);
    padding: 96px 0;
}

.hp-problem-question {
    margin-top: 36px;
    font-size: 19px;
    font-weight: 600;
    line-height: 1.6;
    color: var(--tk-color-text-heading);
    padding: 28px 32px;
    background: var(--tk-color-surface);
    border: 1px solid var(--tk-color-border-subtle);
    border-radius: var(--radius);
}

/* ── Activity vs Learning ─────────────────────────────────────────────────── */
.hp-activity {
    background: var(--tk-color-surface);
    padding: 96px 0;
    border-top: 1px solid var(--tk-color-border-subtle);
    border-bottom: 1px solid var(--tk-color-border-subtle);
}

.hp-activity-lists {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    margin-top: 36px;
}

.hp-activity-list-label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--tk-color-text-muted);
    margin-bottom: 14px;
}

.hp-activity-summary {
    margin-top: 36px;
    padding: 24px 0 0;
    font-size: 16px;
    line-height: 1.75;
    color: var(--tk-color-text-secondary);
    border-top: 1px solid var(--tk-color-border-subtle);
}

.hp-activity-summary p + p {
    margin-top: 12px;
}

/* ── Process (numbered steps) ─────────────────────────────────────────────── */
.hp-process {
    background: var(--tk-color-bg);
    padding: 96px 0;
}

.hp-process-prose {
    max-width: 680px;
    margin: 0 auto;
    padding: 0 var(--tk-space-8);
}

.hp-process-closing {
    margin-top: 36px;
    font-size: 16px;
    line-height: 1.75;
    color: var(--tk-color-text-secondary);
}

.hp-process-closing p + p {
    margin-top: 12px;
}

/* ── Product Introduction ─────────────────────────────────────────────────── */
.hp-product-intro {
    background: var(--tk-color-surface);
    padding: 96px 0;
    border-top: 1px solid var(--tk-color-border-subtle);
    border-bottom: 1px solid var(--tk-color-border-subtle);
}

.hp-product-intro-body {
    font-size: 17px;
    line-height: 1.85;
    color: var(--tk-color-text-secondary);
}

.hp-product-intro-body p + p {
    margin-top: 18px;
}

.hp-product-intro-callout {
    margin-top: 32px;
    font-size: 17px;
    font-weight: 500;
    line-height: 1.7;
    color: var(--tk-color-text-heading);
    padding: 26px 28px;
    border-left: 4px solid var(--tk-color-primary-light);
    background: var(--tk-color-primary-bg);
    border-radius: 0 var(--radius) var(--radius) 0;
}

/* ── Workflow (Visual Centerpiece) ────────────────────────────────────────── */
.hp-workflow {
    background: var(--tk-color-primary);
    padding: 96px 0 104px;
}

.hp-workflow-header {
    max-width: 680px;
    margin: 0 auto 64px;
    padding: 0 var(--tk-space-8);
}

.hp-workflow-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.hp-workflow-card {
    background: rgba(255,255,255,.97);
    padding: 36px 36px 36px 32px;
    border-left: 4px solid transparent;
    transition: border-color .2s;
}

.hp-workflow-card:hover {
    border-left-color: var(--tk-color-primary-light);
}

.hp-workflow-card-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--tk-color-text-muted);
    margin-bottom: 6px;
}

.hp-workflow-card-name {
    font-size: 20px;
    font-weight: 700;
    color: var(--tk-color-text-heading);
    letter-spacing: -.015em;
    margin-bottom: 18px;
    line-height: 1.2;
}

.hp-workflow-card-body {
    font-size: 15px;
    line-height: 1.75;
    color: var(--tk-color-text-secondary);
}

.hp-workflow-card-body p + p {
    margin-top: 12px;
}

.hp-workflow-card-body ul {
    list-style: none;
    padding: 0;
    margin: 10px 0 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.hp-workflow-card-body ul li {
    font-size: 14px;
    line-height: 1.6;
    color: var(--tk-color-text-secondary);
    padding-left: 16px;
    position: relative;
}

.hp-workflow-card-body ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: .58em;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--tk-color-border);
}

/* Ring sub-labels within Prioritize card */
.hp-workflow-ring-entry {
    margin-top: 12px;
    padding: 10px 14px;
    border-radius: var(--radius);
    font-size: 14px;
    line-height: 1.6;
}

.hp-workflow-ring-entry--outer {
    background: var(--tk-ring-explore-bg);
    color: var(--tk-color-primary);
}

.hp-workflow-ring-entry--middle {
    background: var(--tk-ring-test-bg);
    color: var(--tk-color-primary-dark);
}

.hp-workflow-ring-entry--focus {
    background: var(--tk-ring-focus-bg);
    color: #fff;
}

.hp-workflow-ring-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .07em;
    margin-bottom: 2px;
    display: block;
    opacity: .65;
}

/* Decide options (Continue / Modify / etc.) */
.hp-decide-options {
    list-style: none;
    padding: 0;
    margin: 10px 0 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.hp-decide-options li {
    font-size: 13px;
    font-weight: 600;
    color: var(--tk-color-primary);
    background: var(--tk-color-primary-bg);
    border: 1px solid #C5D4E8;
    border-radius: 20px;
    padding: 5px 14px;
}

.hp-decide-options li::before {
    display: none;
}

.hp-workflow-closing {
    max-width: 680px;
    margin: 48px auto 0;
    padding: 0 var(--tk-space-8);
    text-align: center;
}

.hp-workflow-closing p {
    font-size: 16px;
    line-height: 1.75;
    color: rgba(255,255,255,.65);
}

.hp-workflow-closing em {
    color: rgba(255,255,255,.85);
    font-style: normal;
    font-weight: 500;
}

/* ── Transformation ───────────────────────────────────────────────────────── */
.hp-transformation {
    background: var(--tk-color-bg);
    padding: 96px 0;
}

.hp-transformation-before {
    font-size: 17px;
    line-height: 1.8;
    color: var(--tk-color-text-secondary);
    margin-top: 24px;
}

.hp-transformation-after {
    margin-top: 36px;
}

.hp-transformation-after-label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--tk-color-text-muted);
    margin-bottom: 16px;
}

.hp-transformation-closing {
    margin-top: 40px;
    font-size: 17px;
    line-height: 1.8;
    color: var(--tk-color-text-secondary);
}

.hp-transformation-closing p + p {
    margin-top: 16px;
}

/* ── Decision Integrity ───────────────────────────────────────────────────── */
.hp-integrity {
    background: var(--tk-color-surface);
    padding: 96px 0;
    border-top: 1px solid var(--tk-color-border-subtle);
    border-bottom: 1px solid var(--tk-color-border-subtle);
}

.hp-integrity-principles {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 36px;
}

.hp-integrity-principle {
    padding: 32px 0;
    border-top: 1px solid var(--tk-color-border-subtle);
}

.hp-integrity-principle:last-child {
    border-bottom: 1px solid var(--tk-color-border-subtle);
}

.hp-integrity-principle-heading {
    font-size: 17px;
    font-weight: 600;
    color: var(--tk-color-text-heading);
    margin-bottom: 10px;
    line-height: 1.35;
}

.hp-integrity-principle-body {
    font-size: 16px;
    line-height: 1.75;
    color: var(--tk-color-text-secondary);
}

.hp-integrity-principle-body p + p {
    margin-top: 10px;
}

/* ── What Traction Keeper Does Not Do ─────────────────────────────────────── */
.hp-not-do {
    background: var(--tk-color-bg);
    padding: 96px 0;
}

.hp-not-do-body {
    font-size: 17px;
    line-height: 1.8;
    color: var(--tk-color-text-secondary);
    margin-bottom: 28px;
}

.hp-not-do-body p + p {
    margin-top: 16px;
}

.hp-not-do-does {
    margin-top: 40px;
    font-size: 16px;
    line-height: 1.75;
    color: var(--tk-color-text-secondary);
}

.hp-not-do-does p {
    margin-bottom: 12px;
}

/* ── Evidence Before Confidence ───────────────────────────────────────────── */
.hp-evidence {
    background: var(--tk-color-surface);
    padding: 96px 0;
    border-top: 1px solid var(--tk-color-border-subtle);
    border-bottom: 1px solid var(--tk-color-border-subtle);
}

.hp-evidence-body {
    font-size: 17px;
    line-height: 1.85;
    color: var(--tk-color-text-secondary);
}

.hp-evidence-body p + p {
    margin-top: 20px;
}

.hp-evidence-company {
    margin-top: 40px;
    padding: 32px;
    background: var(--tk-color-bg);
    border-radius: var(--radius);
    border: 1px solid var(--tk-color-border-subtle);
}

.hp-evidence-company-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .09em;
    color: var(--tk-color-text-muted);
    margin-bottom: 14px;
}

.hp-evidence-company-text {
    font-size: 16px;
    line-height: 1.75;
    color: var(--tk-color-text-secondary);
}

.hp-evidence-company-text p + p {
    margin-top: 10px;
}

/* ── Founder Fit ──────────────────────────────────────────────────────────── */
.hp-fit {
    background: var(--tk-color-bg);
    padding: 96px 0;
}

.hp-fit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    margin-top: 40px;
}

.hp-fit-col-label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--tk-color-text-muted);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--tk-color-border-subtle);
}

.hp-fit-col-label--good {
    border-color: var(--tk-color-primary-light);
    color: var(--tk-color-primary-light);
}

.hp-fit-closing {
    margin-top: 48px;
    padding-top: 40px;
    border-top: 1px solid var(--tk-color-border-subtle);
    font-size: 16px;
    line-height: 1.75;
    color: var(--tk-color-text-secondary);
}

.hp-fit-closing p + p {
    margin-top: 12px;
}

/* ── Private Beta ─────────────────────────────────────────────────────────── */
.hp-beta {
    background: var(--tk-color-primary);
    padding: 96px 0;
}

.hp-beta-inner {
    max-width: 680px;
    margin: 0 auto;
    padding: 0 var(--tk-space-8);
}

.hp-beta-body {
    font-size: 17px;
    line-height: 1.8;
    color: rgba(255,255,255,.75);
}

.hp-beta-body p + p {
    margin-top: 18px;
}

.hp-beta-expectations {
    margin-top: 32px;
}

.hp-beta-expectations-label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: rgba(255,255,255,.45);
    margin-bottom: 14px;
}

.hp-beta-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.hp-beta-list li {
    font-size: 16px;
    line-height: 1.75;
    color: rgba(255,255,255,.75);
    padding: 14px 0;
    border-top: 1px solid rgba(255,255,255,.1);
    padding-left: 22px;
    position: relative;
}

.hp-beta-list li:last-child {
    border-bottom: 1px solid rgba(255,255,255,.1);
}

.hp-beta-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 1.1em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255,255,255,.3);
}

.hp-beta-closing {
    margin-top: 32px;
    font-size: 16px;
    line-height: 1.75;
    color: rgba(255,255,255,.65);
}

.hp-beta-closing p + p {
    margin-top: 12px;
}

/* Beta request form */
.hp-beta-form-wrap {
    margin-top: 48px;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,.12);
}

.hp-beta-form-label {
    font-size: 15px;
    font-weight: 600;
    color: rgba(255,255,255,.85);
    margin-bottom: 20px;
}

.hp-beta-form {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.hp-beta-input {
    flex: 1;
    min-width: 220px;
    padding: 13px 16px;
    border-radius: var(--radius);
    border: 1px solid rgba(255,255,255,.2);
    background: rgba(255,255,255,.08);
    color: #fff;
    font-family: var(--tk-font-sans);
    font-size: 15px;
    outline: none;
    transition: border-color .2s, background .2s;
}

.hp-beta-input::placeholder {
    color: rgba(255,255,255,.38);
}

.hp-beta-input:focus {
    border-color: rgba(255,255,255,.5);
    background: rgba(255,255,255,.12);
}

/* ── Final Invitation ─────────────────────────────────────────────────────── */
.hp-invite {
    background: var(--tk-color-bg);
    padding: 104px 0;
}

.hp-invite-inner {
    max-width: 680px;
    margin: 0 auto;
    padding: 0 var(--tk-space-8);
}

.hp-invite-vision {
    font-size: 18px;
    line-height: 1.85;
    color: var(--tk-color-text-secondary);
    margin-bottom: 32px;
}

.hp-invite-vision p + p {
    margin-top: 16px;
}

.hp-invite-vision em {
    font-style: normal;
    font-weight: 500;
    color: var(--tk-color-text-heading);
}

.hp-invite-call {
    font-size: 17px;
    line-height: 1.8;
    color: var(--tk-color-text-secondary);
    margin-bottom: 40px;
}

.hp-invite-cta {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hp-invite-cta-primary {}

.hp-invite-cta-secondary {
    font-size: 15px;
    color: var(--tk-color-text-secondary);
    line-height: 1.6;
}

.hp-invite-cta-secondary a {
    font-weight: 600;
    color: var(--tk-color-primary-light);
    border-bottom: 1px solid var(--tk-color-border);
    padding-bottom: 1px;
    transition: color .15s, border-color .15s;
}

.hp-invite-cta-secondary a:hover {
    color: var(--tk-color-primary);
    border-color: var(--tk-color-primary);
}

/* Form error message — shown via .visible class added by marketing.js */
#formErrorMsg {
    display: none;
    margin-top: 12px;
    font-size: 14px;
    color: rgba(255,120,120,.9);
    line-height: 1.5;
}

#formErrorMsg.visible {
    display: block;
}

/* ── Footer (supplemental adjustments for this page) ─────────────────────── */
.site-footer {
    background: var(--tk-color-surface);
    border-top: 1px solid var(--tk-color-border-subtle);
    padding: 56px 0 36px;
}

.footer-inner {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 48px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.footer-brand-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--tk-color-text-heading);
    margin-bottom: 8px;
}

.footer-tagline {
    font-size: 14px;
    color: var(--tk-color-text-secondary);
    line-height: 1.6;
}

.footer-tagline-sub {
    font-size: 13px;
    color: var(--tk-color-text-muted);
    margin-top: 4px;
}

.footer-nav {
    display: flex;
    gap: 4px;
    flex-direction: column;
}

.footer-nav-link {
    font-size: 14px;
    color: var(--tk-color-text-secondary);
    padding: 5px 0;
    transition: color .15s;
}

.footer-nav-link:hover {
    color: var(--tk-color-text-heading);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 24px;
    border-top: 1px solid var(--tk-color-border-subtle);
    font-size: 13px;
    color: var(--tk-color-text-muted);
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-link {
    font-size: 13px;
    color: var(--tk-color-text-muted);
    transition: color .15s;
}

.footer-bottom-link:hover {
    color: var(--tk-color-text-secondary);
}

/* ── Responsive ───────────────────────────────────────────────────────────── */
@media (max-width: 960px) {
    .hp-workflow-grid {
        grid-template-columns: 1fr;
    }

    .hp-activity-lists {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hp-fit-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 680px) {
    .hp-section,
    .hp-hero,
    .hp-problem,
    .hp-activity,
    .hp-process,
    .hp-product-intro,
    .hp-workflow,
    .hp-transformation,
    .hp-integrity,
    .hp-not-do,
    .hp-evidence,
    .hp-fit,
    .hp-beta,
    .hp-invite {
        padding: 64px 0;
    }

    .hp-workflow {
        padding-bottom: 72px;
    }

    .hp-hero-cta {
        flex-direction: column;
        align-items: flex-start;
    }

    .hp-hero-cta .btn,
    .hp-hero-cta .btn-ghost-light {
        width: 100%;
        justify-content: center;
    }

    .hp-workflow-card {
        padding: 28px 24px;
    }

    .hp-numbered-list li {
        grid-template-columns: 36px 1fr;
    }

    .nav-mobile-btn {
        display: flex;
    }

    .site-nav-links,
    .site-nav-cta {
        display: none;
    }
}

@media (max-width: 480px) {
    .hp-beta-form {
        flex-direction: column;
    }

    .hp-beta-input {
        width: 100%;
    }

    .hp-invite-cta-primary .btn {
        width: 100%;
        justify-content: center;
    }
}
